Home | History | Annotate | Download | only in clang-interpreter
      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 
     10 CLANG_LEVEL := ../..
     11 
     12 TOOLNAME = clang-interpreter
     13 NO_INSTALL = 1
     14 
     15 # No plugins, optimize startup time.
     16 TOOL_NO_EXPORTS = 1
     17 
     18 LINK_COMPONENTS := jit interpreter nativecodegen bitreader bitwriter irreader \
     19 	ipo linker selectiondag asmparser instrumentation objcarcopts option
     20 USEDLIBS = clangFrontend.a clangSerialization.a clangDriver.a clangCodeGen.a \
     21            clangParse.a clangSema.a clangStaticAnalyzerFrontend.a \
     22            clangStaticAnalyzerCheckers.a clangStaticAnalyzerCore.a \
     23            clangAnalysis.a clangRewriteCore.a clangRewriteFrontend.a \
     24            clangEdit.a clangAST.a clangLex.a clangBasic.a
     25 
     26 include $(CLANG_LEVEL)/Makefile
     27