[llvm-commits] CVS: llvm/test/Regression/CBackend/Makefile
Chris Lattner
lattner at cs.uiuc.edu
Thu Jan 23 10:52:03 PST 2003
Changes in directory llvm/test/Regression/CBackend:
Makefile updated: 1.5 -> 1.6
---
Log message:
Dont' stop the build
---
Diffs of the changes:
Index: llvm/test/Regression/CBackend/Makefile
diff -u llvm/test/Regression/CBackend/Makefile:1.5 llvm/test/Regression/CBackend/Makefile:1.6
--- llvm/test/Regression/CBackend/Makefile:1.5 Thu Oct 31 12:23:09 2002
+++ llvm/test/Regression/CBackend/Makefile Thu Jan 23 10:51:47 2003
@@ -15,9 +15,9 @@
Output/%.to: Output/%.c
- $(CC) -c $< -o $@ #|| \
+ $(CC) -c $< -o $@ || \
(rm -f $@; $(FAILURE) $@ )
Output/%.c: %.ll Output/.dir $(LAS) $(LDIS)
- $(LAS) < $< | $(LDIS) -c > $@ #|| \
+ $(LAS) < $< | $(LDIS) -c > $@ || \
(rm -f $@; $(FAILURE) $@ )
More information about the llvm-commits
mailing list