summaryrefslogtreecommitdiffstats
path: root/make/leaf.cfg
diff options
context:
space:
mode:
authorRalf Corsepius <ralf.corsepius@rtems.org>2003-06-06 04:39:43 +0000
committerRalf Corsepius <ralf.corsepius@rtems.org>2003-06-06 04:39:43 +0000
commit888622c431f5444b54d0fc4c85d1f194414bbc1b (patch)
tree29e998fc0aa9a0a764c6770028c36873f608402e /make/leaf.cfg
parent2003-06-06 Ralf Corsepius <corsepiu@faw.uni-ulm.de> (diff)
downloadrtems-888622c431f5444b54d0fc4c85d1f194414bbc1b.tar.bz2
2003-06-06 Ralf Corsepius <corsepiu@faw.uni-ulm.de>
PR 321: * leaf.cfg: Remove support for profile-variant. * main.cfg: Ditto. * compilers/gcc-no_bsp.cfg: Ditto. * compilers/gcc-portsw.cfg: Ditto. * compilers/gcc-target-default.cfg: Ditto.
Diffstat (limited to '')
-rw-r--r--make/leaf.cfg12
1 files changed, 3 insertions, 9 deletions
diff --git a/make/leaf.cfg b/make/leaf.cfg
index 4df4d09ace..2cab5adfef 100644
--- a/make/leaf.cfg
+++ b/make/leaf.cfg
@@ -36,13 +36,12 @@ MANAGERS := $(sort $(MANAGERS))
#
# LIBSUFFIX_VA, will "index" into LIBSUFF-*-v macros and
-# convert our ${ARCH} back into .a or _g.a or _p.a based on debug or profile.
+# convert our ${ARCH} back into .a or _g.a or _p.a based on debug.
# Useful for installing libraries.
#
LIBSUFFIX_OPTIMIZE_V=
LIBSUFFIX_DEBUG_V=_g
-LIBSUFFIX_PROFILE_V=_p
LIB_VARIANT=$(LIBSUFFIX_$(VARIANT_V)_V)
LIBSUFFIX_VA = $(LIB_VARIANT).a
@@ -61,31 +60,26 @@ ifndef AUTOMAKE
#
debug:
$(MAKE) -f $(MAKEFILE) MAKEFILE=$(MAKEFILE) VARIANT=DEBUG
-
-profile:
- $(MAKE) -f $(MAKEFILE) MAKEFILE=$(MAKEFILE) VARIANT=PROFILE
endif
#
-# VARIANT_VA will convert our ${ARCH} back into "" or "debug" or "profile".
+# VARIANT_VA will convert our ${ARCH} back into "" or "debug".
# Handy when one makefile wants to hop over into a peer's tree and
# build something "the same" way.
#
VARIANT-OPTIMIZE-v =
VARIANT-DEBUG-v = debug
-VARIANT-PROFILE-v = profile
VARIANT_VA = $(VARIANT-$(VARIANT_V)-v)
#
-# TARGET_VA will convert $@ (expected to be 'debug' or 'profile' etc.)
+# TARGET_VA will convert $@ (expected to be 'debug' etc.)
# into "" or "install" as appropriate.
# Used for variant recursion.
#
TARGET_debug_V = all
-TARGET_profile_V = all
TARGET_VA = $(TARGET_$@_V)