blob: 84c4dc2b665420b4d5ec174ef3b81a33b472bfff [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
19LINK_COMPONENTS := support mc
Douglas Gregorba8be8c2012-04-13 17:26:32 +000020USEDLIBS = clangARCMigrate.a clangRewrite.a \
John McCall8f0e8d22011-06-15 23:25:17 +000021 clangFrontend.a clangDriver.a clangSerialization.a clangParse.a \
Chandler Carruthf95d4122012-06-20 09:53:52 +000022 clangSema.a clangEdit.a clangAnalysis.a clangAST.a clangLex.a \
Dmitri Gribenkoaa0cd852012-06-20 00:34:58 +000023 clangBasic.a
John McCall8f0e8d22011-06-15 23:25:17 +000024
25include $(CLANG_LEVEL)/Makefile