[cfe-commits] r161549 - /cfe/trunk/tools/Makefile
Chandler Carruth
chandlerc at gmail.com
Wed Aug 8 17:05:27 PDT 2012
Author: chandlerc
Date: Wed Aug 8 19:05:27 2012
New Revision: 161549
URL: http://llvm.org/viewvc/llvm-project?rev=161549&view=rev
Log:
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.
Modified:
cfe/trunk/tools/Makefile
Modified: cfe/trunk/tools/Makefile
URL: http://llvm.org/viewvc/llvm-project/cfe/trunk/tools/Makefile?rev=161549&r1=161548&r2=161549&view=diff
==============================================================================
--- cfe/trunk/tools/Makefile (original)
+++ cfe/trunk/tools/Makefile Wed Aug 8 19:05:27 2012
@@ -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
More information about the cfe-commits
mailing list