source: rtems/c/src/make/leaf.cfg @ d54c028

4.104.114.84.95
Last change on this file since d54c028 was d54c028, checked in by Joel Sherrill <joel.sherrill@…>, on 05/09/07 at 18:43:18

2007-05-09 Joel Sherrill <joel.sherrill@…>

  • leaf.cfg: Add optional manager stub for Barrier.
  • Property mode set to 100644
File size: 1.8 KB
RevLine 
[c1c1f33]1#
2#  $Id$
3#
4# make/leaf.cfg
5#
6#   Make(1) configuration file include'd by all leaf-node Makefiles
7#
8
9#
10# list of all known managers
11# This list is used, along with $(MANAGERS) (set by app makefile)
12#   to build the list of *not wanted* drivers.
13#
14# ref: target compiler config file for usage
15#
16
[d54c028]17MANAGER_LIST=barrier dpmem event io msg mp part
18MANAGER_LIST+=region sem signal timer rtmon ext
[c1c1f33]19
20# Convert *real* spellings in $(MANAGERS) (set
21#   in application makefile) to their "correct" name.
22# (I hate abbreviations :-)
23
24MANAGERS := $(patsubst message,            msg,   $(MANAGERS))
25MANAGERS := $(patsubst multi_processor,    mp,    $(MANAGERS))
26MANAGERS := $(patsubst partition,          part,  $(MANAGERS))
27MANAGERS := $(patsubst rate_monotonic,     rtmon, $(MANAGERS))
28MANAGERS := $(patsubst semaphore,          sem,   $(MANAGERS))
29MANAGERS := $(patsubst dual_ported_memory, dpmem, $(MANAGERS))
30MANAGERS := $(patsubst extension,          ext,   $(MANAGERS))
31
32# allow 'all' to mean all managers
33MANAGERS := $(patsubst all, $(MANAGER_LIST), $(MANAGERS))
34
35# and finally rip out duplicates
36MANAGERS := $(sort $(MANAGERS))
37
[7e5a481]38# List (possibly empty) of required managers
[d54c028]39MANAGERS_REQUIRED=
[7e5a481]40
41# Create a RTEMS executable based on MANAGERS which was set in
42#  app's Makefile
43
44MANAGERS_NOT_WANTED=$(filter-out $(MANAGERS) \
45        $(MANAGERS_REQUIRED), $(MANAGER_LIST))
46
47# Start file must be one of
48#    $(PROJECT_RELEASE)/lib/start$(LIB_VARIANT).o
49#    $(PROJECT_RELEASE)/lib/asmiface$(LIB_VARIANT).o
50# It defaults to start.o, but an app can override it.
51ifeq ($(START_BASE),)
52  START_FILE=
53else
54  START_FILE=$(PROJECT_RELEASE)/lib/$(START_BASE)$(LIB_VARIANT).o
55endif
56
57# Allow user to override link commands (to build a prom image, perhaps)
58ifndef LINKCMDS
59LINKCMDS=$(PROJECT_RELEASE)/lib/linkcmds
[c1c1f33]60endif
Note: See TracBrowser for help on using the repository browser.