diff options
author | Matthijs Kooijman <matthijs@stdin.nl> | 2008-06-24 13:01:57 +0000 |
---|---|---|
committer | Matthijs Kooijman <matthijs@stdin.nl> | 2008-06-24 13:01:57 +0000 |
commit | 5b80c663e7662fcf24c764f0cd1b2671958689b8 (patch) | |
tree | 91730a53f22cfb754f377baaff3f1ff467e98946 /projects | |
parent | 31ce08facea459c8793bd24d64054b1b0b763356 (diff) |
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/Makefile | 4 |
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) |