summaryrefslogtreecommitdiff
path: root/projects
diff options
context:
space:
mode:
authorReid Spencer <rspencer@reidspencer.com>2005-05-13 16:17:58 +0000
committerReid Spencer <rspencer@reidspencer.com>2005-05-13 16:17:58 +0000
commit08f5535aaa4a6b7734995825028d6cd99c5fe643 (patch)
tree0e4d83a455093a860de667201ebd8a114daaa21a /projects
parent5fa87078212f1ce1cb7c7e447f92e271a484496a (diff)
downloadllvm-08f5535aaa4a6b7734995825028d6cd99c5fe643.tar.gz
llvm-08f5535aaa4a6b7734995825028d6cd99c5fe643.tar.bz2
llvm-08f5535aaa4a6b7734995825028d6cd99c5fe643.tar.xz
Don't build runtime if tools-only :)
git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@21938 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'projects')
-rw-r--r--projects/Stacker/lib/Makefile5
1 files changed, 4 insertions, 1 deletions
diff --git a/projects/Stacker/lib/Makefile b/projects/Stacker/lib/Makefile
index a302a85ef5..78ab25c6ec 100644
--- a/projects/Stacker/lib/Makefile
+++ b/projects/Stacker/lib/Makefile
@@ -5,6 +5,9 @@
##===----------------------------------------------------------------------===##
LEVEL = ..
-DIRS = compiler runtime
+DIRS = compiler
+ifneq ($(MAKECMDGOALS),tools-only)
+DIRS += runtime
+endif
include $(LEVEL)/Makefile.common