[Heikki Kultala] This patch contains the ABI changes for the TCE target.
[clang.git] / examples / clang-interpreter / Makefile
blob6e762da708d2065ccb0698bbd4d121602ae667b7
1 ##===- examples/clang-interpreter/Makefile -----------------*- Makefile -*-===##
3 # The LLVM Compiler Infrastructure
5 # This file is distributed under the University of Illinois Open Source
6 # License. See LICENSE.TXT for details.
8 ##===----------------------------------------------------------------------===##
10 CLANG_LEVEL := ../..
12 TOOLNAME = clang-interpreter
13 NO_INSTALL = 1
15 # No plugins, optimize startup time.
16 TOOL_NO_EXPORTS = 1
18 LINK_COMPONENTS := jit interpreter nativecodegen bitreader bitwriter ipo \
19 selectiondag asmparser
20 USEDLIBS = clangFrontend.a clangSerialization.a clangDriver.a clangCodeGen.a \
21 clangSema.a clangStaticAnalyzerFrontend.a clangStaticAnalyzerCheckers.a clangStaticAnalyzerCore.a clangAnalysis.a clangRewrite.a \
22 clangAST.a clangParse.a clangLex.a clangBasic.a
24 include $(CLANG_LEVEL)/Makefile