Home | History | Annotate | Download | only in diagtool
      1 ##===- tools/diagtool/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 CLANG_LEVEL := ../..
     10 
     11 TOOLNAME = diagtool 
     12 
     13 # No plugins, optimize startup time.
     14 TOOL_NO_EXPORTS := 1
     15 
     16 # Don't install this.
     17 NO_INSTALL = 1
     18 
     19 include $(CLANG_LEVEL)/../../Makefile.config
     20 LINK_COMPONENTS := $(TARGETS_TO_BUILD) asmparser bitreader support mc option
     21 USEDLIBS = clangFrontend.a clangDriver.a clangSerialization.a clangParse.a \
     22            clangSema.a clangAnalysis.a clangEdit.a clangAST.a clangLex.a \
     23            clangBasic.a
     24 
     25 include $(CLANG_LEVEL)/Makefile
     26 
     27