Daniel Dunbar | e224628 | 2010-02-25 08:49:05 +0000 | [diff] [blame] | 1 | ##===- examples/clang-interpreter/Makefile -----------------*- Makefile -*-===## |
| 2 | # |
| 3 | # The LLVM Compiler Infrastructure |
| 4 | # |
| 5 | # This file is distributed under the University of Illinois Open Source |
| 6 | # License. See LICENSE.TXT for details. |
| 7 | # |
| 8 | ##===----------------------------------------------------------------------===## |
| 9 | |
Daniel Dunbar | afed099 | 2010-06-08 20:34:18 +0000 | [diff] [blame] | 10 | CLANG_LEVEL := ../.. |
Daniel Dunbar | e224628 | 2010-02-25 08:49:05 +0000 | [diff] [blame] | 11 | |
| 12 | TOOLNAME = clang-interpreter |
Daniel Dunbar | e224628 | 2010-02-25 08:49:05 +0000 | [diff] [blame] | 13 | NO_INSTALL = 1 |
Kovarththanan Rajaratnam | 8799299 | 2010-02-27 07:06:44 +0000 | [diff] [blame] | 14 | |
| 15 | # No plugins, optimize startup time. |
Daniel Dunbar | e224628 | 2010-02-25 08:49:05 +0000 | [diff] [blame] | 16 | TOOL_NO_EXPORTS = 1 |
| 17 | |
Daniel Dunbar | e224628 | 2010-02-25 08:49:05 +0000 | [diff] [blame] | 18 | LINK_COMPONENTS := jit interpreter nativecodegen bitreader bitwriter ipo \ |
Peter Collingbourne | 22a7dfe | 2011-10-30 17:30:44 +0000 | [diff] [blame] | 19 | linker selectiondag asmparser instrumentation |
Benjamin Kramer | f0a5d6f | 2010-08-26 15:21:38 +0000 | [diff] [blame] | 20 | USEDLIBS = clangFrontend.a clangSerialization.a clangDriver.a clangCodeGen.a \ |
Nick Lewycky | 3eada1e | 2011-06-01 00:59:36 +0000 | [diff] [blame] | 21 | clangParse.a clangSema.a clangStaticAnalyzerFrontend.a \ |
| 22 | clangStaticAnalyzerCheckers.a clangStaticAnalyzerCore.a \ |
Ted Kremenek | 305c613 | 2012-09-01 05:09:24 +0000 | [diff] [blame] | 23 | clangAnalysis.a clangRewriteCore.a clangRewriteFrontend.a \ |
NAKAMURA Takumi | 247c719 | 2012-03-21 06:25:42 +0000 | [diff] [blame] | 24 | clangEdit.a clangAST.a clangLex.a clangBasic.a |
Daniel Dunbar | e224628 | 2010-02-25 08:49:05 +0000 | [diff] [blame] | 25 | |
Daniel Dunbar | afed099 | 2010-06-08 20:34:18 +0000 | [diff] [blame] | 26 | include $(CLANG_LEVEL)/Makefile |