2010-02-25 16:49:05 +08:00
|
|
|
##===- examples/clang-interpreter/Makefile -----------------*- Makefile -*-===##
|
|
|
|
#
|
|
|
|
# The LLVM Compiler Infrastructure
|
|
|
|
#
|
|
|
|
# This file is distributed under the University of Illinois Open Source
|
|
|
|
# License. See LICENSE.TXT for details.
|
|
|
|
#
|
|
|
|
##===----------------------------------------------------------------------===##
|
|
|
|
|
2010-06-09 04:34:18 +08:00
|
|
|
CLANG_LEVEL := ../..
|
2010-02-25 16:49:05 +08:00
|
|
|
|
|
|
|
TOOLNAME = clang-interpreter
|
|
|
|
NO_INSTALL = 1
|
2010-02-27 15:06:44 +08:00
|
|
|
|
|
|
|
# No plugins, optimize startup time.
|
2010-02-25 16:49:05 +08:00
|
|
|
TOOL_NO_EXPORTS = 1
|
|
|
|
|
2014-09-03 21:13:50 +08:00
|
|
|
LINK_COMPONENTS := mcjit interpreter nativecodegen bitreader bitwriter irreader \
|
2013-12-10 20:40:11 +08:00
|
|
|
ipo linker selectiondag asmparser instrumentation objcarcopts option
|
2010-08-26 23:21:38 +08:00
|
|
|
USEDLIBS = clangFrontend.a clangSerialization.a clangDriver.a clangCodeGen.a \
|
2011-06-01 08:59:36 +08:00
|
|
|
clangParse.a clangSema.a clangStaticAnalyzerFrontend.a \
|
|
|
|
clangStaticAnalyzerCheckers.a clangStaticAnalyzerCore.a \
|
2014-07-17 00:48:33 +08:00
|
|
|
clangAnalysis.a clangRewrite.a clangRewriteFrontend.a \
|
2014-09-03 21:13:50 +08:00
|
|
|
clangEdit.a clangAST.a clangLex.a clangBasic.a LLVMCore.a \
|
|
|
|
LLVMExecutionEngine.a LLVMMC.a LLVMMCJIT.a LLVMRuntimeDyld.a \
|
|
|
|
LLVMObject.a LLVMSupport.a LLVMProfileData.a
|
2010-02-25 16:49:05 +08:00
|
|
|
|
2010-06-09 04:34:18 +08:00
|
|
|
include $(CLANG_LEVEL)/Makefile
|