summaryrefslogtreecommitdiffstats
path: root/clang-apply-replacements/tool/Makefile
blob: 916a54da261d946cda2e0b849efe98a266dd7e45 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
##===- clang-apply-replacements/tool/Makefile --------------*- Makefile -*-===##
#
#                     The LLVM Compiler Infrastructure
#
# This file is distributed under the University of Illinois Open Source
# License. See LICENSE.TXT for details.
#
##===----------------------------------------------------------------------===##

CLANG_LEVEL := ../../../..
include $(CLANG_LEVEL)/../../Makefile.config

TOOLNAME = clang-apply-replacements

# No plugins, optimize startup time.
TOOL_NO_EXPORTS = 1

SOURCES = ClangApplyReplacementsMain.cpp

LINK_COMPONENTS := $(TARGETS_TO_BUILD) asmparser bitreader ipo objcarcopts \
                   instrumentation bitwriter support mc option
USEDLIBS = clangApplyReplacements.a clangFormat.a \
	   clangTooling.a clangToolingCore.a clangFrontend.a clangCodeGen.a \
	   clangSerialization.a clangDriver.a clangRewriteFrontend.a \
	   clangRewrite.a clangParse.a clangSema.a clangAnalysis.a \
	   clangAST.a clangASTMatchers.a clangEdit.a clangLex.a clangBasic.a

include $(CLANG_LEVEL)/Makefile

CPP.Flags += -I$(PROJ_SRC_DIR)/../include