diff options
author | Reid Spencer <rspencer@reidspencer.com> | 2005-05-13 16:17:58 +0000 |
---|---|---|
committer | Reid Spencer <rspencer@reidspencer.com> | 2005-05-13 16:17:58 +0000 |
commit | 08f5535aaa4a6b7734995825028d6cd99c5fe643 (patch) | |
tree | 0e4d83a455093a860de667201ebd8a114daaa21a /projects | |
parent | 5fa87078212f1ce1cb7c7e447f92e271a484496a (diff) | |
download | external_llvm-08f5535aaa4a6b7734995825028d6cd99c5fe643.zip external_llvm-08f5535aaa4a6b7734995825028d6cd99c5fe643.tar.gz external_llvm-08f5535aaa4a6b7734995825028d6cd99c5fe643.tar.bz2 |
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/Makefile | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/projects/Stacker/lib/Makefile b/projects/Stacker/lib/Makefile index a302a85..78ab25c 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 |