Home | History | Annotate | Download | only in clang-format
      1 ##===- clang-format/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-format
     13 
     14 # No plugins, optimize startup time.
     15 TOOL_NO_EXPORTS = 1
     16 
     17 include $(CLANG_LEVEL)/../../Makefile.config
     18 LINK_COMPONENTS := $(TARGETS_TO_BUILD) asmparser bitreader support mc option
     19 USEDLIBS = clangFormat.a clangTooling.a clangFrontend.a clangSerialization.a \
     20 	   clangDriver.a clangParse.a clangSema.a clangAnalysis.a \
     21            clangRewriteFrontend.a clangRewriteCore.a clangEdit.a clangAST.a \
     22            clangLex.a clangBasic.a 
     23 
     24 include $(CLANG_LEVEL)/Makefile
     25