[llvm-commits] CVS: llvm-test/SingleSource/Makefile.singlesrc

Chris Lattner lattner at cs.uiuc.edu
Sun May 15 12:46:58 PDT 2005



Changes in directory llvm-test/SingleSource:

Makefile.singlesrc updated: 1.27 -> 1.28
---
Log message:

don't let native builds kill a directory


---
Diffs of the changes:  (+2 -2)

 Makefile.singlesrc |    4 ++--
 1 files changed, 2 insertions(+), 2 deletions(-)


Index: llvm-test/SingleSource/Makefile.singlesrc
diff -u llvm-test/SingleSource/Makefile.singlesrc:1.27 llvm-test/SingleSource/Makefile.singlesrc:1.28
--- llvm-test/SingleSource/Makefile.singlesrc:1.27	Sun Sep  5 02:56:52 2004
+++ llvm-test/SingleSource/Makefile.singlesrc	Sun May 15 14:46:42 2005
@@ -35,6 +35,6 @@
 
 # FIXME: LIBS should be specified, not hardcoded to -lm
 Output/%.native: $(SourceDir)/%.c Output/.dir
-	$(CC) $(CFLAGS) -O2 $< -lm -o $@ $(LDFLAGS)
+	-$(CC) $(CFLAGS) -O2 $< -lm -o $@ $(LDFLAGS)
 Output/%.native: $(SourceDir)/%.cpp Output/.dir
-	$(CXX) $(CXXFLAGS) -O2 $< -lm -o $@ $(LDFLAGS)
+	-$(CXX) $(CXXFLAGS) -O2 $< -lm -o $@ $(LDFLAGS)






More information about the llvm-commits mailing list