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
 


_______________________________________________
cfe-commits mailing list
[email protected]
http://lists.cs.uiuc.edu/mailman/listinfo/cfe-commits

Reply via email to