2013-09-04 01:58:19 +08:00
|
|
|
##===- clang-apply-replacements/tool/Makefile --------------*- Makefile -*-===##
|
2013-08-22 21:07:14 +08:00
|
|
|
#
|
|
|
|
# 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
|
|
|
|
|
2013-09-04 01:58:19 +08:00
|
|
|
TOOLNAME = clang-apply-replacements
|
2013-08-22 21:07:14 +08:00
|
|
|
|
|
|
|
# No plugins, optimize startup time.
|
|
|
|
TOOL_NO_EXPORTS = 1
|
|
|
|
|
2013-09-04 01:58:19 +08:00
|
|
|
SOURCES = ClangApplyReplacementsMain.cpp
|
2013-08-22 21:07:14 +08:00
|
|
|
|
2015-02-25 10:46:37 +08:00
|
|
|
LINK_COMPONENTS := $(TARGETS_TO_BUILD) asmparser bitreader support mc mcparser option
|
2014-10-30 02:55:41 +08:00
|
|
|
USEDLIBS = clangApplyReplacements.a clangFormat.a \
|
2015-02-25 10:46:37 +08:00
|
|
|
clangTooling.a clangToolingCore.a clangFrontend.a \
|
2013-08-22 21:07:14 +08:00
|
|
|
clangSerialization.a clangDriver.a clangRewriteFrontend.a \
|
2014-07-17 00:50:17 +08:00
|
|
|
clangRewrite.a clangParse.a clangSema.a clangAnalysis.a \
|
2015-02-21 08:29:43 +08:00
|
|
|
clangAST.a clangASTMatchers.a clangEdit.a clangLex.a clangBasic.a
|
2013-08-22 21:07:14 +08:00
|
|
|
|
|
|
|
include $(CLANG_LEVEL)/Makefile
|
|
|
|
|
2013-08-30 22:33:56 +08:00
|
|
|
CPP.Flags += -I$(PROJ_SRC_DIR)/../include
|