forked from Imagelibrary/rtems
<corsepiu@faw.uni-ulm.de> which does the following: This is the configuration cleanup patch: Main changes: * TARGET_ARCH removed * target.cfg.in moved to c/make/target.cfg.in (Only configured once for all BSPs of a target) * BARE_XXX variables appended to bsp.cfg.in * autogen renamed to bootstrap * removed stray variables from make/custom/*.cfg To apply: cd <source-tree> rm c/src/make/target.cfg.in cp autogen bootstrap mkdir c/make cp make/target.cfg.in c/make/target.cfg.in rm make/target.cfg.in rm autogen patch -p1 < rtems-rc-19991105-1.diff
36 lines
836 B
INI
36 lines
836 B
INI
# Default target settings
|
|
#
|
|
# Some of these values are redefined in the target specific .cfg files.
|
|
#
|
|
# Created by Jiri Gaisler, 16-03-97 (who is owed a debt of gratitude
|
|
# for converting RTEMS to autoconf. Thanks. --joel)
|
|
#
|
|
# $Id$
|
|
#
|
|
|
|
include $(RTEMS_ROOT)/make/target.cfg
|
|
include $(RTEMS_ROOT)/make/host.cfg
|
|
|
|
include $(RTEMS_ROOT)/make/main.cfg
|
|
include $(RTEMS_ROOT)/$(RTEMS_BSP)/make/bsp.cfg
|
|
|
|
# use the inline functions instead of the macros
|
|
# ref: src/exec/generic/Makefile
|
|
ifeq ($(RTEMS_USE_MACROS),yes)
|
|
INLINE=macros
|
|
INLINE_UPCASE=
|
|
else
|
|
INLINE=inline
|
|
INLINE_UPCASE=INLINE
|
|
endif
|
|
|
|
## Target compiler config file, if any
|
|
CONFIG.CC = $(RTEMS_ROOT)/make/compilers/gcc-target-default.cfg
|
|
|
|
## GCC specs extension file location
|
|
RTEMS_BSP_SPECS = $(PROJECT_ROOT)/$(RTEMS_BSP)/lib/bsp_specs
|
|
|
|
# Base name of start file
|
|
START_BASE=start
|
|
|