[cfe-commits] [clang-tools-extra] r161613 - /clang-tools-extra/trunk/Makefile
Chandler Carruth
chandlerc at gmail.com
Thu Aug 9 13:47:32 PDT 2012
Author: chandlerc
Date: Thu Aug 9 15:47:32 2012
New Revision: 161613
URL: http://llvm.org/viewvc/llvm-project?rev=161613&view=rev
Log:
Use parallel dirs here, there shouldn't be cross-tool dependencies
anyways. Also place it after the config makefile inclusion which seems
the more canonical location.
Modified:
clang-tools-extra/trunk/Makefile
Modified: clang-tools-extra/trunk/Makefile
URL: http://llvm.org/viewvc/llvm-project/clang-tools-extra/trunk/Makefile?rev=161613&r1=161612&r2=161613&view=diff
==============================================================================
--- clang-tools-extra/trunk/Makefile (original)
+++ clang-tools-extra/trunk/Makefile Thu Aug 9 15:47:32 2012
@@ -8,10 +8,11 @@
##===----------------------------------------------------------------------===##
CLANG_LEVEL := ../..
-DIRS := remove-cstr-calls
include $(CLANG_LEVEL)/../../Makefile.config
+PARALLEL_DIRS := remove-cstr-calls
+
include $(CLANG_LEVEL)/Makefile
###
More information about the cfe-commits
mailing list