From: Nico Weber Date: Sat, 30 Apr 2011 03:09:18 +0000 (+0000) Subject: Add lib/Tooling to the Makefile build. X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=fddbcb459fad8b3e0a06b431a7eec9ee36743716;p=clang Add lib/Tooling to the Makefile build. git-svn-id: https://llvm.org/svn/llvm-project/cfe/trunk@130581 91177308-0d34-0410-b5e6-96231b3b80d8 --- diff --git a/lib/Makefile b/lib/Makefile index bf357fc7d5..eda7017bb8 100755 --- a/lib/Makefile +++ b/lib/Makefile @@ -9,7 +9,8 @@ CLANG_LEVEL := .. PARALLEL_DIRS = Headers Basic Lex Parse AST Sema CodeGen Analysis \ - StaticAnalyzer Rewrite Serialization Frontend FrontendTool Index Driver + StaticAnalyzer Rewrite Serialization Frontend FrontendTool \ + Index Driver Tooling include $(CLANG_LEVEL)/Makefile diff --git a/lib/Tooling/Makefile b/lib/Tooling/Makefile new file mode 100644 index 0000000000..501a00c3f4 --- /dev/null +++ b/lib/Tooling/Makefile @@ -0,0 +1,15 @@ +##===- clang/lib/Tooling/Makefile ---------------------------*- Makefile -*-===## +# +# The LLVM Compiler Infrastructure +# +# This file is distributed under the University of Illinois Open Source +# License. See LICENSE.TXT for details. +# +##===----------------------------------------------------------------------===## + +CLANG_LEVEL := ../.. +LIBRARYNAME := clangTooling + +include $(CLANG_LEVEL)/Makefile + +