aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorManuel Klimek <klimek@google.com>2012-07-06 06:00:30 +0000
committerManuel Klimek <klimek@google.com>2012-07-06 06:00:30 +0000
commitc76dfb451aac08b52ab5858fbfade28c7e091e2f (patch)
tree0a1dde272e09f24b34bd610707c31930a28e18c5
parent4da216637fa1ad4bdfd31bc265edb57ca35c2c12 (diff)
Build-fix: Remove non-existent directories from Makefiles.
git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@159807 91177308-0d34-0410-b5e6-96231b3b80d8
-rw-r--r--lib/ASTMatchers/Makefile2
-rw-r--r--unittests/ASTMatchers/Makefile3
2 files changed, 1 insertions, 4 deletions
diff --git a/lib/ASTMatchers/Makefile b/lib/ASTMatchers/Makefile
index 3ee9ccb580..76d82719a1 100644
--- a/lib/ASTMatchers/Makefile
+++ b/lib/ASTMatchers/Makefile
@@ -10,6 +10,4 @@
CLANG_LEVEL := ../..
LIBRARYNAME := clangASTMatchers
-PARALLEL_DIRS = Dynamic
-
include $(CLANG_LEVEL)/Makefile
diff --git a/unittests/ASTMatchers/Makefile b/unittests/ASTMatchers/Makefile
index 2448a056da..e2b6a4558d 100644
--- a/unittests/ASTMatchers/Makefile
+++ b/unittests/ASTMatchers/Makefile
@@ -8,12 +8,11 @@
##===----------------------------------------------------------------------===##
CLANG_LEVEL = ../..
-PARALLEL_DIRS = Dynamic
TESTNAME = ASTMatchers
LINK_COMPONENTS := support mc
USEDLIBS = clangEdit.a clangTooling.a clangFrontend.a clangSerialization.a clangDriver.a \
clangRewrite.a clangParse.a clangSema.a clangAnalysis.a \
- clangAST.a clangASTMatchers.a clangLex.a clangBasic.a
+ clangAST.a clangASTMatchers.a clangLex.a clangBasic.a
include $(CLANG_LEVEL)/unittests/Makefile