[llvm-commits] CVS: llvm-test/External/SPEC/Makefile.spec

Chris Lattner lattner at cs.uiuc.edu
Thu Feb 23 13:39:50 PST 2006



Changes in directory llvm-test/External/SPEC:

Makefile.spec updated: 1.49 -> 1.50
---
Log message:

Add support for .cpp files


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

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


Index: llvm-test/External/SPEC/Makefile.spec
diff -u llvm-test/External/SPEC/Makefile.spec:1.49 llvm-test/External/SPEC/Makefile.spec:1.50
--- llvm-test/External/SPEC/Makefile.spec:1.49	Sun May  8 18:39:14 2005
+++ llvm-test/External/SPEC/Makefile.spec	Thu Feb 23 15:39:38 2006
@@ -30,8 +30,10 @@
 
 PROG := $(BENCH_NAME)
 ifndef Source
-Source := $(wildcard $(SPEC_BENCH_DIR)/src/*.c $(SPEC_BENCH_DIR)/src/*.cc)
-Source += $(wildcard $(SPEC_BENCH_DIR)/src/*.f)
+Source := $(wildcard $(SPEC_BENCH_DIR)/src/*.c \
+          $(SPEC_BENCH_DIR)/src/*.cc) \
+          $(SPEC_BENCH_DIR)/src/*.cpp) \
+          $(SPEC_BENCH_DIR)/src/*.f)
 endif
 
 # Disable the default Output/%.out-* targets...






More information about the llvm-commits mailing list