diff options
Diffstat (limited to 'llvm/projects/Stacker')
-rw-r--r-- | llvm/projects/Stacker/lib/Makefile | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/llvm/projects/Stacker/lib/Makefile b/llvm/projects/Stacker/lib/Makefile index a302a85ef51..78ab25c6ec2 100644 --- a/llvm/projects/Stacker/lib/Makefile +++ b/llvm/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 |