[cfe-commits] r130577 - /cfe/trunk/examples/Tooling/Makefile

Nico Weber nicolasweber at gmx.de
Fri Apr 29 20:03:12 PDT 2011


Author: nico
Date: Fri Apr 29 22:03:12 2011
New Revision: 130577

URL: http://llvm.org/viewvc/llvm-project?rev=130577&view=rev
Log:
Add a Makefile to examples/Tooling for people who do not use cmake.

Added:
    cfe/trunk/examples/Tooling/Makefile

Added: cfe/trunk/examples/Tooling/Makefile
URL: http://llvm.org/viewvc/llvm-project/cfe/trunk/examples/Tooling/Makefile?rev=130577&view=auto
==============================================================================
--- cfe/trunk/examples/Tooling/Makefile (added)
+++ cfe/trunk/examples/Tooling/Makefile Fri Apr 29 22:03:12 2011
@@ -0,0 +1,24 @@
+##===- examples/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 := ../..
+
+TOOLNAME = clang-check
+NO_INSTALL = 1
+
+# No plugins, optimize startup time.
+TOOL_NO_EXPORTS = 1
+
+LINK_COMPONENTS := support mc
+USEDLIBS = clangFrontend.a clangSerialization.a clangDriver.a \
+           clangTooling.a clangSema.a clangAnalysis.a \
+           clangAST.a clangParse.a clangLex.a clangBasic.a
+
+include $(CLANG_LEVEL)/Makefile
+





More information about the cfe-commits mailing list