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
|
|
|
|
|
|
|
|
LINK_COMPONENTS := jit interpreter nativecodegen bitreader bitwriter ipo \
|
2011-10-31 01:30:44 +08:00
|
|
|
linker selectiondag asmparser instrumentation
|
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 \
|
|
|
|
clangAnalysis.a clangRewrite.a clangAST.a clangLex.a clangBasic.a
|
2010-02-25 16:49:05 +08:00
|
|
|
|
2010-06-09 04:34:18 +08:00
|
|
|
include $(CLANG_LEVEL)/Makefile
|