summaryrefslogtreecommitdiff
path: root/tools/driver/Makefile
diff options
context:
space:
mode:
authorJohn McCall <rjmccall@apple.com>2010-08-20 18:27:03 +0000
committerJohn McCall <rjmccall@apple.com>2010-08-20 18:27:03 +0000
commit19510856727e0e14a3696b2a72c35163bff2a71f (patch)
treeaa4cb42590b8bf0df7ffb7115c7d74c4a68ef3f2 /tools/driver/Makefile
parent033b7b327e8cdc8cd4bafce1625ea88bc9e3f6c8 (diff)
downloadclang-19510856727e0e14a3696b2a72c35163bff2a71f.tar.gz
clang-19510856727e0e14a3696b2a72c35163bff2a71f.tar.bz2
clang-19510856727e0e14a3696b2a72c35163bff2a71f.tar.xz
Another step in the process of making the parser depend on Sema:
- move DeclSpec &c into the Sema library - move ParseAST into the Parse library Reflect this change in a thousand different includes. Reflect this change in the link orders. git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@111667 91177308-0d34-0410-b5e6-96231b3b80d8
Diffstat (limited to 'tools/driver/Makefile')
-rw-r--r--tools/driver/Makefile4
1 files changed, 2 insertions, 2 deletions
diff --git a/tools/driver/Makefile b/tools/driver/Makefile
index 8cb6360726..0fc0d6597c 100644
--- a/tools/driver/Makefile
+++ b/tools/driver/Makefile
@@ -28,8 +28,8 @@ include $(CLANG_LEVEL)/../../Makefile.config
LINK_COMPONENTS := $(TARGETS_TO_BUILD) asmparser bitreader bitwriter codegen \
ipo selectiondag
USEDLIBS = clangFrontend.a clangDriver.a clangSerialization.a clangCodeGen.a \
- clangSema.a clangChecker.a clangAnalysis.a clangIndex.a \
- clangRewrite.a clangAST.a clangParse.a clangLex.a clangBasic.a
+ clangParse.a clangSema.a clangChecker.a clangAnalysis.a \
+ clangIndex.a clangRewrite.a clangAST.a clangLex.a clangBasic.a
include $(CLANG_LEVEL)/Makefile