summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorReid Spencer <rspencer@reidspencer.com>2004-11-25 09:08:54 +0000
committerReid Spencer <rspencer@reidspencer.com>2004-11-25 09:08:54 +0000
commitdf561f4ab347736cc513ef0483d9049987ac32c9 (patch)
treeff8e0031b5be481c87b5f80adc94966a2ba6ac02 /Makefile
parentefbe40ada6e76cc265b3feab7ab57db870ce0f22 (diff)
downloadllvm-df561f4ab347736cc513ef0483d9049987ac32c9.tar.gz
llvm-df561f4ab347736cc513ef0483d9049987ac32c9.tar.bz2
llvm-df561f4ab347736cc513ef0483d9049987ac32c9.tar.xz
Add a convenience target to build all three modes: Debug, Release, Profile
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@18241 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile14
1 files changed, 13 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index cd7e52131d..d2a4fbf022 100644
--- a/Makefile
+++ b/Makefile
@@ -9,7 +9,6 @@
LEVEL = .
DIRS = lib/System lib/Support utils lib tools
-
ifneq ($(MAKECMDGOALS),tools-only)
DIRS += runtime
OPTIONAL_DIRS = examples projects
@@ -19,6 +18,19 @@ EXTRA_DIST := test llvm.spec include
include $(LEVEL)/Makefile.common
+.PHONY: debug-opt-prof
+debug-opt-prof:
+ $(Echo) Building Debug Version
+ $(Verb) $(MAKE)
+ $(Echo)
+ $(Echo) Building Optimized Version
+ $(Echo)
+ $(Verb) $(MAKE) ENABLE_OPTIMIZED=1
+ $(Echo)
+ $(Echo) Building Profiling Version
+ $(Echo)
+ $(Verb) $(MAKE) ENABLE_PROFILING=1
+
dist-hook::
$(Echo) Eliminating CVS directories from distribution
$(Verb) $(RM) -rf `find $(TopDistDir) -type d -name CVS -print`