[llvm-commits] CVS: llvm/projects/Makefile
Reid Spencer
reid at x10sys.com
Sat Sep 4 16:08:07 PDT 2004
Changes in directory llvm/projects:
Makefile updated: 1.9 -> 1.10
---
Log message:
Make sure llvm-test doesn't build automatically so the nightly test can
finish its build phase without building and running all the tests.
---
Diffs of the changes: (+1 -1)
Index: llvm/projects/Makefile
diff -u llvm/projects/Makefile:1.9 llvm/projects/Makefile:1.10
--- llvm/projects/Makefile:1.9 Fri Sep 3 17:28:24 2004
+++ llvm/projects/Makefile Sat Sep 4 18:07:57 2004
@@ -10,6 +10,6 @@
include $(LEVEL)/Makefile.config
-DIRS:= $(patsubst $(SourceDir)/%/Makefile,%,$(wildcard $(SourceDir)/*/Makefile))
+DIRS:= $(filter-out llvm-test,$(patsubst $(SourceDir)/%/Makefile,%,$(wildcard $(SourceDir)/*/Makefile)))
include $(BUILD_SRC_ROOT)/Makefile.rules
More information about the llvm-commits
mailing list