[llvm-commits] CVS: llvm/test/Programs/External/Makefile
John Criswell
criswell at cs.uiuc.edu
Mon Aug 18 10:03:01 PDT 2003
Changes in directory llvm/test/Programs/External:
Makefile updated: 1.1 -> 1.2
---
Log message:
Added code that will conditionally test SPEC if USE_SPEC is defined.
---
Diffs of the changes:
Index: llvm/test/Programs/External/Makefile
diff -u llvm/test/Programs/External/Makefile:1.1 llvm/test/Programs/External/Makefile:1.2
--- llvm/test/Programs/External/Makefile:1.1 Wed May 14 18:20:52 2003
+++ llvm/test/Programs/External/Makefile Mon Aug 18 10:01:47 2003
@@ -1,3 +1,16 @@
LEVEL = ../../..
+
+#
+# Include the configuration so that we know whether or not to include SPEC
+#
+include ${LEVEL}/Makefile.config
+
+#
+# Create the list of directories to compile
+#
DIRS := $(sort $(filter-out CVS/, $(wildcard */)))
+ifndef USE_SPEC
+DIRS := $(filter-out SPEC/, $(DIRS))
+endif
+
include ${LEVEL}/test/Makefile.tests
More information about the llvm-commits
mailing list