blob: 06e20165d76a67025fa5289ae7cd888ebb1453a6 [file] [log] [blame]
John McCall8f0e8d22011-06-15 23:25:17 +00001##===- tools/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 = 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
Chad Rosierfa1d30d2012-08-08 16:27:29 +000019include $(CLANG_LEVEL)/../../Makefile.config
20LINK_COMPONENTS := $(TARGETS_TO_BUILD) asmparser support mc
Ted Kremenek305c6132012-09-01 05:09:24 +000021USEDLIBS = clangARCMigrate.a clangRewriteCore.a \
John McCall8f0e8d22011-06-15 23:25:17 +000022 clangFrontend.a clangDriver.a clangSerialization.a clangParse.a \
Chandler Carruthf95d4122012-06-20 09:53:52 +000023 clangSema.a clangEdit.a clangAnalysis.a clangAST.a clangLex.a \
Dmitri Gribenkoaa0cd852012-06-20 00:34:58 +000024 clangBasic.a
John McCall8f0e8d22011-06-15 23:25:17 +000025
26include $(CLANG_LEVEL)/Makefile