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

John Criswell criswell at cs.uiuc.edu
Tue Feb 10 16:35:06 PST 2004


Changes in directory llvm/test/Programs/External/SPEC:

Makefile updated: 1.7 -> 1.8

---
Log message:

Allow for SPEC 2000 and SPEC 95 to be enabled independently of each other.



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

Index: llvm/test/Programs/External/SPEC/Makefile
diff -u llvm/test/Programs/External/SPEC/Makefile:1.7 llvm/test/Programs/External/SPEC/Makefile:1.8
--- llvm/test/Programs/External/SPEC/Makefile:1.7	Tue Feb 10 16:29:40 2004
+++ llvm/test/Programs/External/SPEC/Makefile	Tue Feb 10 16:34:44 2004
@@ -1,12 +1,17 @@
 LEVEL = ../../../..
-DIRS := CFP2000 CINT2000
+DIRS := CINT95 CFP2000 CINT2000
 include ${LEVEL}/Makefile.config
 
 #
-# Add SPEC95 if we've got it.
+# Remove SPEC95 and SPEC2000 per the user's configuration
 #
-ifeq ($(USE_SPEC95),1)
-DIRS += CINT95
+ifndef USE_SPEC
+DIRS := $(filter-out CFP2000/, $(DIRS))
+DIRS := $(filter-out CINT2000/, $(DIRS))
+endif
+
+ifndef USE_SPEC95
+DIRS := $(filter-out CINT95/, $(DIRS))
 endif
 
 include ${LEVEL}/test/Programs/Makefile.programs





More information about the llvm-commits mailing list