diff options
author | Chandler Carruth <chandlerc@gmail.com> | 2012-08-09 20:47:32 +0000 |
---|---|---|
committer | Chandler Carruth <chandlerc@gmail.com> | 2012-08-09 20:47:32 +0000 |
commit | 27a6c1ed9130782f44003c3e603db0d5623a24fc (patch) | |
tree | 7986fd635101dabd667bc8e629c593dcc668b1d8 /clang-tools-extra/Makefile | |
parent | 69335414c1c620279e248358260d553e3e1de7d0 (diff) | |
download | bcm5719-llvm-27a6c1ed9130782f44003c3e603db0d5623a24fc.tar.gz bcm5719-llvm-27a6c1ed9130782f44003c3e603db0d5623a24fc.zip |
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.
llvm-svn: 161613
Diffstat (limited to 'clang-tools-extra/Makefile')
-rw-r--r-- | clang-tools-extra/Makefile | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/clang-tools-extra/Makefile b/clang-tools-extra/Makefile index 62814faf6fa..fef0376fca0 100644 --- a/clang-tools-extra/Makefile +++ b/clang-tools-extra/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 ### |