[llvm-commits] CVS: llvm/test/Programs/Makefile.programs

Chris Lattner lattner at cs.uiuc.edu
Thu Jun 26 00:29:01 PDT 2003


Changes in directory llvm/test/Programs:

Makefile.programs updated: 1.60 -> 1.61

---
Log message:

Add dependency on GCCLD


---
Diffs of the changes:

Index: llvm/test/Programs/Makefile.programs
diff -u llvm/test/Programs/Makefile.programs:1.60 llvm/test/Programs/Makefile.programs:1.61
--- llvm/test/Programs/Makefile.programs:1.60	Sun Jun 22 15:21:29 2003
+++ llvm/test/Programs/Makefile.programs	Thu Jun 26 00:28:23 2003
@@ -176,10 +176,10 @@
 # Link the program to the libraries it uses, then perform postlink
 # optimization...
 $(PROGRAMS_TO_TEST:%=Output/%.llvm.bc): \
-Output/%.llvm.bc: Output/%.linked.bc
+Output/%.llvm.bc: Output/%.linked.bc $(LGCCLDPROG)
 	$(LGCCLD) $(STATS) $< -lgcc -lc $(LIBS) crtend.o -o Output/$*.llvm
 $(PROGRAMS_TO_TEST:%=Output/%.llvm): \
-Output/%.llvm: Output/%.linked.bc
+Output/%.llvm: Output/%.linked.bc $(LGCCLDPROG)
 	$(LGCCLD) $(STATS) $< -lgcc -lc $(LIBS) crtend.o -o Output/$*.llvm
 
 # Rule to get the tracing version of the llvm.bc file for tracing:





More information about the llvm-commits mailing list