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 \
|
2010-06-08 23:38:01 +08:00
|
|
|
selectiondag asmparser
|
2010-08-24 08:31:31 +08:00
|
|
|
USEDLIBS = clangSerialization.a clangFrontend.a clangDriver.a clangCodeGen.a \
|
|
|
|
clangSema.a clangChecker.a clangAnalysis.a clangRewrite.a \
|
|
|
|
clangAST.a clangParse.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
|