[llvm-commits] CVS: llvm/test/Regression/CBackend/Makefile
Chris Lattner
lattner at apoc.cs.uiuc.edu
Fri Sep 20 17:32:01 PDT 2002
Changes in directory llvm/test/Regression/CBackend:
Makefile updated: 1.3 -> 1.4
---
Log message:
Build with $(CC), not gcc explicitly
---
Diffs of the changes:
Index: llvm/test/Regression/CBackend/Makefile
diff -u llvm/test/Regression/CBackend/Makefile:1.3 llvm/test/Regression/CBackend/Makefile:1.4
--- llvm/test/Regression/CBackend/Makefile:1.3 Tue Aug 20 11:33:28 2002
+++ llvm/test/Regression/CBackend/Makefile Fri Sep 20 17:32:00 2002
@@ -15,7 +15,7 @@
Output/%.to: Output/%.c
- gcc -c -W -Wall $< -o $@ || \
+ $(CC) -c -W -Wall $< -o $@ || \
(rm -f $@; $(FAILURE) $@ )
Output/%.c: %.ll Output/.dir $(LAS) $(LDIS)
More information about the llvm-commits
mailing list