[llvm-commits] CVS: llvm-test/External/Makefile
Evan Cheng
evan.cheng at apple.com
Wed Sep 20 16:43:49 PDT 2006
Changes in directory llvm-test/External:
Makefile updated: 1.23 -> 1.24
---
Log message:
Adding HMMER as an external test.
---
Diffs of the changes: (+5 -1)
Makefile | 6 +++++-
1 files changed, 5 insertions(+), 1 deletion(-)
Index: llvm-test/External/Makefile
diff -u llvm-test/External/Makefile:1.23 llvm-test/External/Makefile:1.24
--- llvm-test/External/Makefile:1.23 Fri Apr 21 03:19:02 2006
+++ llvm-test/External/Makefile Wed Sep 20 18:43:34 2006
@@ -8,7 +8,7 @@
#
# Create the list of directories to compile
#
-PARALLEL_DIRS := SPEC Povray Namd FPGrowth BoxedSim Nurbs
+PARALLEL_DIRS := SPEC Povray Namd FPGrowth BoxedSim Nurbs HMMER
ifndef USE_POVRAY
PARALLEL_DIRS := $(filter-out Povray, $(PARALLEL_DIRS))
@@ -30,6 +30,10 @@
PARALLEL_DIRS := $(filter-out Nurbs, $(PARALLEL_DIRS))
endif
+ifndef USE_HMMER
+PARALLEL_DIRS := $(filter-out HMMER, $(PARALLEL_DIRS))
+endif
+
# Sparc can't handle Namd: infinite loop, cause unknown
ifeq ($(ARCH),Sparc)
PARALLEL_DIRS := $(filter-out Namd, $(PARALLEL_DIRS))
More information about the llvm-commits
mailing list