forked from Imagelibrary/rtems
particular, using bsp.h, or getting information from the BSP which should properly be obtained from RTEMS is forbidden. This is necessary to strengthen the division between the BSP independent parts of RTEMS and the BSPs themselves. This started after comments and analysis by Ralf Corsepius <corsepiu@faw.uni-ulm.de>. The changes primarily eliminated the need to include bsp.h and peeking at BSP_Configuration. The use of Cpu_table in each BSP needs to be eliminated.
32 lines
487 B
Makefile
32 lines
487 B
Makefile
AUTOMAKE_OPTIONS = foreign
|
|
|
|
# add gnatnewlib once that one works. :)
|
|
SUBDIRS = . binutils gccnewlib gdb rtems
|
|
|
|
noinst_SCRIPTS = \
|
|
setup \
|
|
buildall \
|
|
mkbinutils_subpackage_version \
|
|
mkbinutilspec \
|
|
mkbspspec \
|
|
mkgccnewlibspec \
|
|
mkgnatnewlibspec \
|
|
mkgdbspec \
|
|
mkrpms \
|
|
mkspec
|
|
|
|
TEMPLATES =
|
|
|
|
noinst_DATA = \
|
|
setup.def $(TEMPLATES)
|
|
|
|
EXTRA_DIST = \
|
|
$(noinst_DATA) \
|
|
$(noinst_SCRIPTS)
|
|
|
|
CONFIGURE_DEPENDENCIES = setup.cache
|
|
setup.cache: setup.def
|
|
cp setup.def $@
|
|
|
|
DISTCLEANFILES = setup.cache
|