blob: b59afdac16dab715598a7c7b4341b4651a05e66c [file] [log] [blame]
Argyrios Kyrtzidis69325d52011-07-09 20:00:58 +00001##===- tools/c-arcmt-test/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##===----------------------------------------------------------------------===##
9CLANG_LEVEL := ../..
10
11TOOLNAME = c-arcmt-test
12
13# No plugins, optimize startup time.
14TOOL_NO_EXPORTS = 1
15
16# Don't install this. It is used for tests.
17NO_INSTALL = 1
18
NAKAMURA Takumia59114b2012-08-10 06:10:58 +000019# Include this here so we can get the configuration of the targets that have
20# been configured for construction. We have to do this early so we can set up
21# LINK_COMPONENTS before including Makefile.rules
22include $(CLANG_LEVEL)/../../Makefile.config
23
24LINK_COMPONENTS := $(TARGETS_TO_BUILD) asmparser support mc
Douglas Gregorba8be8c2012-04-13 17:26:32 +000025USEDLIBS = clang.a clangARCMigrate.a clangRewrite.a \
NAKAMURA Takumi23319f32011-07-10 15:50:19 +000026 clangFrontend.a clangDriver.a \
Argyrios Kyrtzidis69325d52011-07-09 20:00:58 +000027 clangSerialization.a clangParse.a clangSema.a \
NAKAMURA Takumi74d2a9c2012-03-11 08:04:40 +000028 clangAnalysis.a clangEdit.a clangAST.a clangLex.a clangBasic.a
Argyrios Kyrtzidis69325d52011-07-09 20:00:58 +000029
30include $(CLANG_LEVEL)/Makefile