diff options
author | Bill Wendling <isanbard@gmail.com> | 2012-09-27 00:11:09 +0000 |
---|---|---|
committer | Bill Wendling <isanbard@gmail.com> | 2012-09-27 00:11:09 +0000 |
commit | 3af41e6c5f0dcdb8f9eaeb93a19f0d3d45253ecb (patch) | |
tree | 1bc6395cb8661f444c71af11282c5434aaa8644b | |
parent | 91e407ea07e62cfa8a0a3e14d11bef29d05104f3 (diff) | |
download | llvm-3af41e6c5f0dcdb8f9eaeb93a19f0d3d45253ecb.zip llvm-3af41e6c5f0dcdb8f9eaeb93a19f0d3d45253ecb.tar.gz llvm-3af41e6c5f0dcdb8f9eaeb93a19f0d3d45253ecb.tar.bz2 |
Use a variable to stop us from building clang testing tools.
<rdar://problem/11202465>
llvm-svn: 164739
-rw-r--r-- | clang/tools/Makefile | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/clang/tools/Makefile b/clang/tools/Makefile index e7aa2fa..f271e13 100644 --- a/clang/tools/Makefile +++ b/clang/tools/Makefile @@ -14,6 +14,10 @@ include $(CLANG_LEVEL)/../../Makefile.config DIRS := driver libclang c-index-test arcmt-test c-arcmt-test diagtool \ clang-check +ifeq ($(CLANG_NO_TEST_TOOLS),YES) +DIRS := driver libclang +endif + # Recurse into the extra repository of tools if present. OPTIONAL_DIRS := extra |