source: rtems/make/leaf.cfg @ fa3346f

4.104.114.84.95
Last change on this file since fa3346f was 65a60cd, checked in by Joel Sherrill <joel.sherrill@…>, on 10/26/99 at 14:22:55

Removed all references to HOST_ARCH including the file gcc.cfg.in. All
host programs are now compiled with automake generated rules. This was
done after discussions with Ralf Corsepius and Eric Norum.

  • Property mode set to 100644
File size: 3.3 KB
Line 
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
17MANAGER_LIST=dpmem event io msg mp part region sem signal timer rtmon ext
18
19# Convert *real* spellings in $(MANAGERS) (set
20#   in application makefile) to their "correct" name.
21# (I hate abbreviations :-)
22
23MANAGERS := $(patsubst message,            msg,   $(MANAGERS))
24MANAGERS := $(patsubst multi_processor,    mp,    $(MANAGERS))
25MANAGERS := $(patsubst partition,          part,  $(MANAGERS))
26MANAGERS := $(patsubst rate_monotonic,     rtmon, $(MANAGERS))
27MANAGERS := $(patsubst semaphore,          sem,   $(MANAGERS))
28MANAGERS := $(patsubst dual_ported_memory, dpmem, $(MANAGERS))
29MANAGERS := $(patsubst extension,          ext,   $(MANAGERS))
30
31# allow 'all' to mean all managers
32MANAGERS := $(patsubst all, $(MANAGER_LIST), $(MANAGERS))
33
34# and finally rip out duplicates
35MANAGERS := $(sort $(MANAGERS))
36
37# Pull in the desired "target" compiler
38# Programs built on the host use automake generated rules.
39# This will not change $(ARCH) -- binaries will still be place as per target
40include ${CONFIG.$(TARGET_ARCH).CC}
41ifeq (${DEPEND},$(wildcard ${DEPEND}))
42include ${DEPEND}                    # pull in dependencies if they exist
43endif
44
45#
46# Builtin targets for compilation variants
47#
48debug:
49        $(MAKE) -f $(MAKEFILE) MAKEFILE=$(MAKEFILE) "ARCH=${TARGET_ARCH}-debug" \
50      "CFLAGS_DEBUG=$(CFLAGS_DEBUG_V)" \
51      "CFLAGS_OPTIMIZE=$(CFLAGS_DEBUG_OPTIMIZE_V)" \
52      "LDFLAGS_DEBUG=$(LDFLAGS_DEBUG_V)" $(TARGET_VA)
53
54profile:
55        $(MAKE) -f $(MAKEFILE) \
56      MAKEFILE=$(MAKEFILE) "ARCH=${TARGET_ARCH}-profile" \
57      "CFLAGS_PROFILE=$(CFLAGS_PROFILE_V)" \
58      "LDFLAGS_PROFILE=$(LDFLAGS_PROFILE_V)" $(TARGET_VA)
59
60#
61# VARIANT_VA will convert our ${ARCH} back into "" or "debug" or "profile".
62#   Handy when one makefile wants to hop over into a peer's tree and
63#   build something "the same" way.
64#
65
66VARIANT-$(TARGET_ARCH)-v =
67VARIANT-$(TARGET_ARCH)-debug-v = debug
68VARIANT-$(TARGET_ARCH)-profile-v = profile
69
70VARIANT_VA = $(VARIANT-$(ARCH)-v)
71
72#
73# TARGET_VA will convert $@ (expected to be 'debug' or 'profile' etc.)
74#   into "" or "install" as appropriate.
75#   Used for variant recursion.
76#
77
78TARGET_debug_V = all
79TARGET_profile_V = all
80
81TARGET_VA = $(TARGET_$@_V)
82
83#
84# LIBSUFFIX_VA, will "index" into LIBSUFF-*-v macros and
85#   convert our ${ARCH} back into .a or _g.a or _p.a based on debug or profile.
86#   Useful for installing libraries.
87#
88
89LIBSUFFIX_$(TARGET_ARCH)_V=
90LIBSUFFIX_$(TARGET_ARCH)-debug_V=_g
91LIBSUFFIX_$(TARGET_ARCH)-profile_V=_p
92
93LIB_VARIANT=$(LIBSUFFIX_$(ARCH)_V)
94LIBSUFFIX_VA = $(LIB_VARIANT).a
95
96#
97# Builtin clean and distclean rules
98# Individual makefiles can add stuff via CLEAN_ADDITIONS and CLOBBER_ADDITIONS
99# If desperate to save something, they can override CLEAN_OS, CLEAN_CC, etc.
100#
101
102clean-am: clean-generic
103        -$(RM) -r $(CLEAN_OS) $(CLEAN_CC) $(CLEAN_DEPEND)
104        -$(RM) -r $(VARIANTS)
105
106distclean-am: distclean-generic clean-am
107        -$(RM) -r $(CLOBBER_OS) $(CLOBBER_CC) $(CLOBBER_DEPEND)
108
109preinstall-am:
110preinstall: preinstall-am
111
112distclean: distclean-am
113        -$(RM) config.status
114clean: clean-am
115
116.PHONY: distclean distclean-am
117.PHONY: clean clean-am
Note: See TracBrowser for help on using the repository browser.