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

Reid Spencer reid at x10sys.com
Fri May 13 10:43:05 PDT 2005



Changes in directory llvm/projects/Stacker/lib:

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

The previous hack didn't work because tools-only isn't defined and isn't
a target at this level of build. There shouldn't be a problem with building
the runtime library without llvm-gcc because the Makefile.rules checks
for an empty LLVMGCC variable before building bytecode modules.


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

 Makefile |    5 +----
 1 files changed, 1 insertion(+), 4 deletions(-)


Index: llvm/projects/Stacker/lib/Makefile
diff -u llvm/projects/Stacker/lib/Makefile:1.5 llvm/projects/Stacker/lib/Makefile:1.6
--- llvm/projects/Stacker/lib/Makefile:1.5	Fri May 13 11:17:58 2005
+++ llvm/projects/Stacker/lib/Makefile	Fri May 13 12:42:54 2005
@@ -5,9 +5,6 @@
 ##===----------------------------------------------------------------------===##
 
 LEVEL = ..
-DIRS = compiler
-ifneq ($(MAKECMDGOALS),tools-only)
-DIRS += runtime 
-endif
+DIRS = compiler runtime
 
 include $(LEVEL)/Makefile.common






More information about the llvm-commits mailing list