aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChandler Carruth <chandlerc@gmail.com>2012-08-09 20:47:32 +0000
committerChandler Carruth <chandlerc@gmail.com>2012-08-09 20:47:32 +0000
commitae5569067ca230a42f18e0f62bec3d82e29f2c49 (patch)
treecee910a3baeb639485b41bf31089e50c031730c6
parent08170756fe758f8d88cc95ba8b61316f72eea000 (diff)
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. git-svn-id: https://llvm.org/svn/llvm-project/clang-tools-extra/trunk@161613 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r--Makefile3
1 files changed, 2 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index 62814faf..fef0376f 100644
--- a/Makefile
+++ b/Makefile
@@ -8,10 +8,11 @@
##===----------------------------------------------------------------------===##
CLANG_LEVEL := ../..
-DIRS := remove-cstr-calls
include $(CLANG_LEVEL)/../../Makefile.config
+PARALLEL_DIRS := remove-cstr-calls
+
include $(CLANG_LEVEL)/Makefile
###