aboutsummaryrefslogtreecommitdiff
path: root/unittests/Makefile
diff options
context:
space:
mode:
authorJordan Rose <jordan_rose@apple.com>2013-08-22 15:50:02 +0000
committerJordan Rose <jordan_rose@apple.com>2013-08-22 15:50:02 +0000
commite638503d0dba2c02ab5254fe40d4e5385c3bf2a9 (patch)
tree09871abcb30d55c3523da2d866f78f66e276a581 /unittests/Makefile
parent6a29f674f649197780a4c60602cd08f491022ac8 (diff)
downloadclang-e638503d0dba2c02ab5254fe40d4e5385c3bf2a9.tar.gz
Fix dependencies now that the ARC migrator depends on the static analyzer.
Thanks for pointing this out, Stephen. I think this is right now -- I attempted to try all four valid combinations with both the autoconf and CMake builds. See also LLVM changes to the configure script. git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@189027 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'unittests/Makefile')
-rw-r--r--unittests/Makefile8
1 files changed, 2 insertions, 6 deletions
diff --git a/unittests/Makefile b/unittests/Makefile
index 542863e591..d0dfe471d1 100644
--- a/unittests/Makefile
+++ b/unittests/Makefile
@@ -19,14 +19,10 @@ PARALLEL_DIRS = Basic Lex
include $(CLANG_LEVEL)/../..//Makefile.config
ifeq ($(ENABLE_CLANG_REWRITER),1)
-PARALLEL_DIRS += Format
+PARALLEL_DIRS += Format ASTMatchers AST Tooling Sema
endif
-ifeq ($(ENABLE_CLANG_REWRITER),1)
-PARALLEL_DIRS += ASTMatchers AST Tooling Sema
-endif
-
-ifeq ($(ENABLE_CLANG_STATIC_ANALYZER),1)
+ifeq ($(ENABLE_CLANG_ARCMT),1)
PARALLEL_DIRS += Frontend
endif