2012-08-25 07:29:33 +08:00
|
|
|
##===- tools/extra/remove-cstr-calls/Makefile --------------*- Makefile -*-===##
|
2012-08-07 14:17:58 +08:00
|
|
|
#
|
|
|
|
# The LLVM Compiler Infrastructure
|
|
|
|
#
|
|
|
|
# This file is distributed under the University of Illinois Open Source
|
|
|
|
# License. See LICENSE.TXT for details.
|
|
|
|
#
|
|
|
|
##===----------------------------------------------------------------------===##
|
|
|
|
|
2012-08-25 07:29:33 +08:00
|
|
|
CLANG_LEVEL := ../../..
|
2012-08-07 14:17:58 +08:00
|
|
|
|
|
|
|
TOOLNAME = remove-cstr-calls
|
|
|
|
NO_INSTALL = 1
|
|
|
|
|
|
|
|
# No plugins, optimize startup time.
|
|
|
|
TOOL_NO_EXPORTS = 1
|
|
|
|
|
2012-08-25 07:29:33 +08:00
|
|
|
include $(CLANG_LEVEL)/../../Makefile.config
|
2013-06-15 01:34:04 +08:00
|
|
|
LINK_COMPONENTS := $(TARGETS_TO_BUILD) asmparser bitreader support mc option
|
2012-08-25 07:29:33 +08:00
|
|
|
USEDLIBS = clangTooling.a clangFrontend.a clangSerialization.a clangDriver.a \
|
2014-10-30 02:55:41 +08:00
|
|
|
clangToolingCore.a clangRewriteFrontend.a clangRewrite.a \
|
|
|
|
clangParse.a clangSema.a clangAnalysis.a \
|
|
|
|
clangAST.a clangASTMatchers.a clangEdit.a clangLex.a clangBasic.a
|
2012-08-07 14:17:58 +08:00
|
|
|
|
|
|
|
include $(CLANG_LEVEL)/Makefile
|