New BSP/CPU.

This commit is contained in:
Eric Norum
2005-01-28 19:42:09 +00:00
parent dfbfe5df15
commit ed71774a5b
6 changed files with 2467 additions and 1 deletions

View File

@@ -1,3 +1,8 @@
2005-01-28 Eric Norum <norume@aps.anl.gov>
* Makefile.am, configure.ac, mcf5282/Makefile.am,
mcf5282/include/Makefile.am, mcf5282/include/mcf5282.h: New BSP/CPU
2005-01-07 Ralf Corsepius <ralf.corsepius@rtems.org> 2005-01-07 Ralf Corsepius <ralf.corsepius@rtems.org>
* m68040/Makefile.am, mcf5206/Makefile.am, mcf5272/Makefile.am, * m68040/Makefile.am, mcf5206/Makefile.am, mcf5272/Makefile.am,

View File

@@ -4,7 +4,7 @@
ACLOCAL_AMFLAGS = -I ../../../aclocal ACLOCAL_AMFLAGS = -I ../../../aclocal
SUBDIRS = shared m68040 mcf5206 mcf5272 SUBDIRS = shared m68040 mcf5206 mcf5272 mcf5282
include $(top_srcdir)/../../../automake/subdirs.am include $(top_srcdir)/../../../automake/subdirs.am
include $(top_srcdir)/../../../automake/local.am include $(top_srcdir)/../../../automake/local.am

View File

@@ -41,6 +41,7 @@ AM_CONDITIONAL(mcpu32p, test "$RTEMS_CPU_MODEL" = "m68360" \
) )
AM_CONDITIONAL(mcf5272, test "$RTEMS_CPU_MODEL" = "mcf5272" ) AM_CONDITIONAL(mcf5272, test "$RTEMS_CPU_MODEL" = "mcf5272" )
AM_CONDITIONAL(mcf5282, test "$RTEMS_CPU_MODEL" = "mcf5282" )
# Explicitly list all Makefiles here # Explicitly list all Makefiles here
AC_CONFIG_FILES([Makefile AC_CONFIG_FILES([Makefile
@@ -48,5 +49,6 @@ shared/Makefile
m68040/Makefile m68040/Makefile
mcf5206/Makefile mcf5206/Makefile
mcf5272/Makefile mcf5272/Makefile
mcf5282/Makefile
]) ])
AC_OUTPUT AC_OUTPUT

View File

@@ -0,0 +1,37 @@
##
## $Id$
##
include $(top_srcdir)/../../../automake/compile.am
CLEANFILES =
EXTRA_PROGRAMS =
noinst_DATA =
if mcf5282
# include
include_mcf5282dir = $(includedir)/mcf5282
include_mcf5282_HEADERS = include/mcf5282.h
endif
all-local: $(PREINSTALL_FILES)
PREINSTALL_DIRS =
PREINSTALL_FILES =
if mcf5282
$(PROJECT_INCLUDE)/mcf5282/$(dirstamp):
@$(mkdir_p) $(PROJECT_INCLUDE)/mcf5282
@: > $(PROJECT_INCLUDE)/mcf5282/$(dirstamp)
PREINSTALL_DIRS += $(PROJECT_INCLUDE)/mcf5282/$(dirstamp)
$(PROJECT_INCLUDE)/mcf5282/mcf5282.h: include/mcf5282.h $(PROJECT_INCLUDE)/mcf5282/$(dirstamp)
$(INSTALL_DATA) $< $(PROJECT_INCLUDE)/mcf5282/mcf5282.h
PREINSTALL_FILES += $(PROJECT_INCLUDE)/mcf5282/mcf5282.h
endif
CLEANFILES += $(PREINSTALL_FILES)
DISTCLEANFILES = $(PREINSTALL_DIRS)
include $(top_srcdir)/../../../automake/local.am

View File

@@ -0,0 +1,23 @@
##
## Makefile.am,v 1.3 2002/03/28 00:48:01 joel Exp
##
include_mcf5282dir = $(includedir)/mcf5282
include_mcf5282_HEADERS = mcf5282.h
$(PROJECT_INCLUDE)/mcf5282:
$(mkinstalldirs) $@
$(PROJECT_INCLUDE)/mcf5282/%.h: %.h
$(INSTALL_DATA) $< $@
TMPINSTALL_FILES = $(PROJECT_INCLUDE)/mcf5282 \
$(include_mcf5282_HEADERS:%=$(PROJECT_INCLUDE)/mcf5282/%)
all-local: $(TMPINSTALL_FILES)
EXTRA_DIST = $(include_mcf5282_HEADERS)
include $(top_srcdir)/../../../../../../automake/local.am

File diff suppressed because it is too large Load Diff