diff options
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 |