Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/llvm/llvm-project.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTed Kremenek <kremenek@apple.com>2012-09-01 11:44:41 +0400
committerTed Kremenek <kremenek@apple.com>2012-09-01 11:44:41 +0400
commit8f6943c2e61b10a270b089971c96b6977e3fa881 (patch)
tree7c277abfddda42333397704b229b958e131aceca /clang-tools-extra/tool-template
parent2ce4a8ff639b597407a396410728ab1f30997991 (diff)
Update Makefiles to reflect split of clangRewrite.a into two libraries.
llvm-svn: 163056
Diffstat (limited to 'clang-tools-extra/tool-template')
-rw-r--r--clang-tools-extra/tool-template/Makefile3
1 files changed, 2 insertions, 1 deletions
diff --git a/clang-tools-extra/tool-template/Makefile b/clang-tools-extra/tool-template/Makefile
index 6126d3a4b398..c99236af658f 100644
--- a/clang-tools-extra/tool-template/Makefile
+++ b/clang-tools-extra/tool-template/Makefile
@@ -18,7 +18,8 @@ TOOL_NO_EXPORTS = 1
include $(CLANG_LEVEL)/../../Makefile.config
LINK_COMPONENTS := $(TARGETS_TO_BUILD) asmparser support mc
USEDLIBS = clangTooling.a clangFrontend.a clangSerialization.a clangDriver.a \
- clangRewrite.a clangParse.a clangSema.a clangAnalysis.a \
+ clangRewriteFrontend.a clangRewriteCore.a \
+ clangParse.a clangSema.a clangAnalysis.a \
clangAST.a clangASTMatchers.a clangEdit.a clangLex.a clangBasic.a
include $(CLANG_LEVEL)/Makefile