aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChandler Carruth <chandlerc@gmail.com>2012-08-09 00:05:27 +0000
committerChandler Carruth <chandlerc@gmail.com>2012-08-09 00:05:27 +0000
commit2689a080a8618eb749780611282afbedb6c62b5b (patch)
tree986b2b4ca903d64cc572a76ae0459fb2c13231e4
parentaa58081902ad31927df02e8537d972eabe29d6df (diff)
Allow the Makefile build system to find the extra repo if it is checked
out. Unfortunately, the existing makefiles for the extra repo don't specify the correct library dependencies. Fixing that next. If you're following along, you'll get linker errors. git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@161549 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r--tools/Makefile3
1 files changed, 2 insertions, 1 deletions
diff --git a/tools/Makefile b/tools/Makefile
index 5059ade930..dad767cf45 100644
--- a/tools/Makefile
+++ b/tools/Makefile
@@ -8,8 +8,9 @@
##===----------------------------------------------------------------------===##
CLANG_LEVEL := ..
+
DIRS := driver libclang c-index-test arcmt-test c-arcmt-test diagtool \
- clang-check
+ clang-check $(patsubst %/Makefile,%,$(wildcard extra/Makefile))
include $(CLANG_LEVEL)/../../Makefile.config