forked from Imagelibrary/rtems
New BSP/CPU.
This commit is contained in:
@@ -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,
|
||||||
|
|||||||
@@ -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
|
||||||
|
|||||||
@@ -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
|
||||||
|
|||||||
37
c/src/lib/libcpu/m68k/mcf5282/Makefile.am
Normal file
37
c/src/lib/libcpu/m68k/mcf5282/Makefile.am
Normal 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
|
||||||
23
c/src/lib/libcpu/m68k/mcf5282/include/Makefile.am
Normal file
23
c/src/lib/libcpu/m68k/mcf5282/include/Makefile.am
Normal 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
|
||||||
2399
c/src/lib/libcpu/m68k/mcf5282/include/mcf5282.h
Normal file
2399
c/src/lib/libcpu/m68k/mcf5282/include/mcf5282.h
Normal file
File diff suppressed because it is too large
Load Diff
Reference in New Issue
Block a user