[llvm-commits] CVS: llvm-test/MultiSource/Makefile.multisrc

Evan Cheng evan.cheng at apple.com
Tue Jun 6 17:05:30 PDT 2006



Changes in directory llvm-test/MultiSource:

Makefile.multisrc updated: 1.52 -> 1.53
---
Log message:

Clean up makefiles.

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

 Makefile.multisrc |   10 +++++-----
 1 files changed, 5 insertions(+), 5 deletions(-)


Index: llvm-test/MultiSource/Makefile.multisrc
diff -u llvm-test/MultiSource/Makefile.multisrc:1.52 llvm-test/MultiSource/Makefile.multisrc:1.53
--- llvm-test/MultiSource/Makefile.multisrc:1.52	Mon Feb 27 16:10:13 2006
+++ llvm-test/MultiSource/Makefile.multisrc	Tue Jun  6 19:05:16 2006
@@ -29,16 +29,16 @@
 .PRECIOUS: $(LObjects) $(NObjects) Output/%.linked.rll
 
 Output/%.o: %.c Output/.dir
-	-$(CC) $(CPPFLAGS) $(CFLAGS) -O2 $(TARGET_CFLAGS) -c $< -o $@
+	-$(CC) $(CPPFLAGS) $(CFLAGS) -O2 $(TARGET_FLAGS) -c $< -o $@
 
 Output/%.o: %.C Output/.dir
-	-$(CC) $(CPPFLAGS) $(CXXFLAGS) -O2 $(TARGET_CFLAGS) -c $< -o $@
+	-$(CC) $(CPPFLAGS) $(CXXFLAGS) -O2 $(TARGET_FLAGS) -c $< -o $@
 
 Output/%.o: %.cpp Output/.dir
-	-$(CC) $(CPPFLAGS) $(CXXFLAGS) -O2 $(TARGET_CFLAGS) -c $< -o $@
+	-$(CC) $(CPPFLAGS) $(CXXFLAGS) -O2 $(TARGET_FLAGS) -c $< -o $@
 
 Output/%.o: %.cc Output/.dir
-	-$(CC) $(CPPFLAGS) $(CXXFLAGS) -O2 $(TARGET_CFLAGS) -c $< -o $@
+	-$(CC) $(CPPFLAGS) $(CXXFLAGS) -O2 $(TARGET_FLAGS) -c $< -o $@
 
 bugpoint-gccas: Output/$(PROG).bugpoint-gccas
 bugpoint-gccld: Output/$(PROG).bugpoint-gccld
@@ -72,4 +72,4 @@
 endif
 
 Output/%.native: $(NObjects)
-	-$(CXX) -o $@ $(NObjects) $(LDFLAGS) $(CFLAGS)
+	-$(CXX) -o $@ $(NObjects) $(LDFLAGS) $(CFLAGS) $(TARGET_FLAGS)






More information about the llvm-commits mailing list