John McCall | 8f0e8d2 | 2011-06-15 23:25:17 +0000 | [diff] [blame] | 1 | ##===- 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 | ##===----------------------------------------------------------------------===## |
| 9 | CLANG_LEVEL := ../.. |
| 10 | |
| 11 | TOOLNAME = arcmt-test |
| 12 | |
| 13 | # No plugins, optimize startup time. |
| 14 | TOOL_NO_EXPORTS = 1 |
| 15 | |
| 16 | # Don't install this. It is used for tests. |
| 17 | NO_INSTALL = 1 |
| 18 | |
| 19 | LINK_COMPONENTS := support mc |
Douglas Gregor | ba8be8c | 2012-04-13 17:26:32 +0000 | [diff] [blame] | 20 | USEDLIBS = clangARCMigrate.a clangRewrite.a \ |
John McCall | 8f0e8d2 | 2011-06-15 23:25:17 +0000 | [diff] [blame] | 21 | clangFrontend.a clangDriver.a clangSerialization.a clangParse.a \ |
Chandler Carruth | f95d412 | 2012-06-20 09:53:52 +0000 | [diff] [blame] | 22 | clangSema.a clangEdit.a clangAnalysis.a clangAST.a clangLex.a \ |
Dmitri Gribenko | aa0cd85 | 2012-06-20 00:34:58 +0000 | [diff] [blame] | 23 | clangBasic.a |
John McCall | 8f0e8d2 | 2011-06-15 23:25:17 +0000 | [diff] [blame] | 24 | |
| 25 | include $(CLANG_LEVEL)/Makefile |