source: rtems/make/custom/default.cfg @ d6c83529

4.104.114.84.95
Last change on this file since d6c83529 was d6c83529, checked in by Joel Sherrill <joel.sherrill@…>, on 11/16/99 at 15:48:11

Patch rtems-rc-19991105-1.diff.gz from Ralf Corsepius
<corsepiu@…> 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

  • Property mode set to 100644
File size: 836 bytes
Line 
1# Default target settings
2#
3# Some of these values are redefined in the target specific .cfg files.
4#
5# Created by Jiri Gaisler, 16-03-97  (who is owed a debt of gratitude
6#   for converting RTEMS to autoconf.  Thanks. --joel)
7#
8#  $Id$
9#
10
11include $(RTEMS_ROOT)/make/target.cfg
12include $(RTEMS_ROOT)/make/host.cfg
13
14include $(RTEMS_ROOT)/make/main.cfg
15include $(RTEMS_ROOT)/$(RTEMS_BSP)/make/bsp.cfg
16
17# use the inline functions instead of the macros
18# ref: src/exec/generic/Makefile
19ifeq ($(RTEMS_USE_MACROS),yes)
20INLINE=macros
21INLINE_UPCASE=
22else
23INLINE=inline
24INLINE_UPCASE=INLINE
25endif
26
27## Target compiler config file, if any
28CONFIG.CC = $(RTEMS_ROOT)/make/compilers/gcc-target-default.cfg
29
30## GCC specs extension file location
31RTEMS_BSP_SPECS = $(PROJECT_ROOT)/$(RTEMS_BSP)/lib/bsp_specs
32
33# Base name of start file
34START_BASE=start
35
Note: See TracBrowser for help on using the repository browser.