summaryrefslogtreecommitdiffstats
path: root/make/leaf.cfg
diff options
context:
space:
mode:
Diffstat (limited to 'make/leaf.cfg')
-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)