[llvm-commits] CVS: llvm/test/Programs/MultiSource/Benchmarks/Makefile
John Criswell
criswell at cs.uiuc.edu
Tue Dec 2 11:11:05 PST 2003
Changes in directory llvm/test/Programs/MultiSource/Benchmarks:
Makefile updated: 1.1 -> 1.2
---
Log message:
Fixed the building of subdirectories with the new configure script.
---
Diffs of the changes: (+3 -1)
Index: llvm/test/Programs/MultiSource/Benchmarks/Makefile
diff -u llvm/test/Programs/MultiSource/Benchmarks/Makefile:1.1 llvm/test/Programs/MultiSource/Benchmarks/Makefile:1.2
--- llvm/test/Programs/MultiSource/Benchmarks/Makefile:1.1 Fri Sep 12 11:01:51 2003
+++ llvm/test/Programs/MultiSource/Benchmarks/Makefile Tue Dec 2 11:10:47 2003
@@ -1,6 +1,8 @@
# MultiSource/Benchmarks Makefile: Build all subdirectories automatically
LEVEL = ../../../..
-PARALLEL_DIRS := $(filter-out %-disabled/, $(sort $(filter-out CVS/, $(wildcard */))))
+include $(LEVEL)/Makefile.config
+
+PARALLEL_DIRS := $(basename $(shell ls $(SourceDir) | grep -v CVS | grep -v Makefile))
include $(LEVEL)/test/Programs/Makefile.programs
More information about the llvm-commits
mailing list