diff options
| author | Nico Weber <nicolasweber@gmx.de> | 2011-04-30 03:03:12 +0000 |
|---|---|---|
| committer | Nico Weber <nicolasweber@gmx.de> | 2011-04-30 03:03:12 +0000 |
| commit | 1bb8e09c37bc3e93a05df463411b4e96f903b404 (patch) | |
| tree | 1b0c1eba7bf29bd8f9c22f5863900dcf49b5a850 /clang/examples | |
| parent | 347339f7909378d39798e52e1f54eee99adc008f (diff) | |
| download | bcm5719-llvm-1bb8e09c37bc3e93a05df463411b4e96f903b404.tar.gz bcm5719-llvm-1bb8e09c37bc3e93a05df463411b4e96f903b404.zip | |
Add a Makefile to examples/Tooling for people who do not use cmake.
llvm-svn: 130577
Diffstat (limited to 'clang/examples')
| -rw-r--r-- | clang/examples/Tooling/Makefile | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/clang/examples/Tooling/Makefile b/clang/examples/Tooling/Makefile new file mode 100644 index 00000000000..66e86a03f1c --- /dev/null +++ b/clang/examples/Tooling/Makefile @@ -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 + |

