From: Reid Spencer Date: Sat, 4 Sep 2004 23:07:57 +0000 (+0000) Subject: Make sure llvm-test doesn't build automatically so the nightly test can X-Git-Url: http://demsky.eecs.uci.edu/git/?a=commitdiff_plain;h=d1011c2ca71b8b7ed475e3c144b5d4f558742944;p=oota-llvm.git Make sure llvm-test doesn't build automatically so the nightly test can finish its build phase without building and running all the tests. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@16172 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/projects/Makefile b/projects/Makefile index 9c7590580af..ab4c7e283d8 100644 --- a/projects/Makefile +++ b/projects/Makefile @@ -10,6 +10,6 @@ LEVEL=.. 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