[llvm-commits] CVS: llvm/projects/Stacker/lib/Makefile

Reid Spencer reid at x10sys.com
Fri May 13 09:18:10 PDT 2005



Changes in directory llvm/projects/Stacker/lib:

Makefile updated: 1.4 -> 1.5
---
Log message:

Don't build runtime if tools-only :)


---
Diffs of the changes:  (+4 -1)

 Makefile |    5 ++++-
 1 files changed, 4 insertions(+), 1 deletion(-)


Index: llvm/projects/Stacker/lib/Makefile
diff -u llvm/projects/Stacker/lib/Makefile:1.4 llvm/projects/Stacker/lib/Makefile:1.5
--- llvm/projects/Stacker/lib/Makefile:1.4	Sun Oct 10 19:56:41 2004
+++ llvm/projects/Stacker/lib/Makefile	Fri May 13 11:17:58 2005
@@ -5,6 +5,9 @@
 ##===----------------------------------------------------------------------===##
 
 LEVEL = ..
-DIRS = compiler runtime
+DIRS = compiler
+ifneq ($(MAKECMDGOALS),tools-only)
+DIRS += runtime 
+endif
 
 include $(LEVEL)/Makefile.common






More information about the llvm-commits mailing list