2011-07-10 04:00:58 +08:00
|
|
|
##===- tools/c-arcmt-test/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 := ../..
|
|
|
|
|
|
|
|
TOOLNAME = c-arcmt-test
|
|
|
|
|
2015-02-24 13:14:17 +08:00
|
|
|
# No plugins, optimize startup time.
|
|
|
|
TOOL_NO_EXPORTS = 1
|
|
|
|
|
2011-07-10 04:00:58 +08:00
|
|
|
# Don't install this. It is used for tests.
|
|
|
|
NO_INSTALL = 1
|
|
|
|
|
2012-08-10 14:10:58 +08:00
|
|
|
# Include this here so we can get the configuration of the targets that have
|
|
|
|
# been configured for construction. We have to do this early so we can set up
|
|
|
|
# LINK_COMPONENTS before including Makefile.rules
|
|
|
|
include $(CLANG_LEVEL)/../../Makefile.config
|
|
|
|
|
2015-02-25 10:44:04 +08:00
|
|
|
LINK_COMPONENTS := $(TARGETS_TO_BUILD) asmparser bitreader support mc option
|
2012-09-01 15:38:58 +08:00
|
|
|
|
|
|
|
# Note that 'USEDLIBS' must include all of the core clang libraries
|
2013-01-22 12:11:33 +08:00
|
|
|
# when -static is given to linker on cygming.
|
2012-09-01 14:38:53 +08:00
|
|
|
USEDLIBS = clang.a \
|
|
|
|
clangARCMigrate.a \
|
2014-04-27 11:40:51 +08:00
|
|
|
clangIndex.a \
|
|
|
|
clangFormat.a \
|
|
|
|
clangTooling.a \
|
2014-10-30 18:31:29 +08:00
|
|
|
clangToolingCore.a \
|
2012-09-01 14:38:53 +08:00
|
|
|
clangRewriteFrontend.a \
|
2014-07-17 00:48:33 +08:00
|
|
|
clangRewrite.a \
|
2015-02-25 10:44:04 +08:00
|
|
|
clangFrontend.a clangDriver.a \
|
2013-12-12 14:37:12 +08:00
|
|
|
clangStaticAnalyzerCheckers.a clangStaticAnalyzerCore.a \
|
2012-09-01 14:38:53 +08:00
|
|
|
clangSerialization.a clangParse.a clangSema.a \
|
|
|
|
clangAnalysis.a clangEdit.a clangAST.a clangLex.a clangBasic.a
|
2011-07-10 04:00:58 +08:00
|
|
|
|
|
|
|
include $(CLANG_LEVEL)/Makefile
|