summaryrefslogtreecommitdiff
path: root/projects
diff options
context:
space:
mode:
authorMatthijs Kooijman <matthijs@stdin.nl>2008-06-24 13:01:57 +0000
committerMatthijs Kooijman <matthijs@stdin.nl>2008-06-24 13:01:57 +0000
commit5b80c663e7662fcf24c764f0cd1b2671958689b8 (patch)
tree91730a53f22cfb754f377baaff3f1ff467e98946 /projects
parent31ce08facea459c8793bd24d64054b1b0b763356 (diff)
downloadllvm-5b80c663e7662fcf24c764f0cd1b2671958689b8.tar.gz
llvm-5b80c663e7662fcf24c764f0cd1b2671958689b8.tar.bz2
llvm-5b80c663e7662fcf24c764f0cd1b2671958689b8.tar.xz
Allow the test suite to be checked out into projects/test-suite.
We will keep the old projects/llvm-test working for existing installs. The changes to configure are made manually, since I lack autoconf-2.6. Someone might want to run AutoGen.sh to see if that changes anything. git-svn-id: https://llvm.org/svn/llvm-project/llvm/trunk@52675 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'projects')
-rw-r--r--projects/Makefile4
1 files changed, 3 insertions, 1 deletions
diff --git a/projects/Makefile b/projects/Makefile
index b6228b87f9..b966fc7f78 100644
--- a/projects/Makefile
+++ b/projects/Makefile
@@ -10,7 +10,9 @@ LEVEL=..
include $(LEVEL)/Makefile.config
-DIRS:= $(filter-out llvm-test,$(patsubst $(PROJ_SRC_DIR)/%/Makefile,%,$(wildcard $(PROJ_SRC_DIR)/*/Makefile)))
+# Compile all subdirs, except for the test suite, which lives in test-suite.
+# Before 2008.06.24 it lived in llvm-test, so exclude that as well for now.
+DIRS:= $(filter-out llvm-test test-suite,$(patsubst $(PROJ_SRC_DIR)/%/Makefile,%,$(wildcard $(PROJ_SRC_DIR)/*/Makefile)))
# Sparc cannot link shared libraries (libtool problem?)
ifeq ($(ARCH), Sparc)