Steve Naroff | 5039819 | 2009-08-28 15:28:48 +0000 | [diff] [blame] | 1 | ##===- tools/index-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 | ##===----------------------------------------------------------------------===## |
Daniel Dunbar | afed099 | 2010-06-08 20:34:18 +0000 | [diff] [blame] | 9 | CLANG_LEVEL := ../.. |
Steve Naroff | 5039819 | 2009-08-28 15:28:48 +0000 | [diff] [blame] | 10 | |
| 11 | TOOLNAME = c-index-test |
Steve Naroff | 5039819 | 2009-08-28 15:28:48 +0000 | [diff] [blame] | 12 | |
Bob Wilson | 3e627ae | 2011-11-28 08:03:54 +0000 | [diff] [blame] | 13 | # If a separate install prefix was specified for internal tools, use it |
| 14 | # when installing c-index-test. |
| 15 | INTERNAL_TOOL = 1 |
| 16 | |
Steve Naroff | 5039819 | 2009-08-28 15:28:48 +0000 | [diff] [blame] | 17 | # No plugins, optimize startup time. |
| 18 | TOOL_NO_EXPORTS = 1 |
| 19 | |
David Blaikie | 0bc35e9 | 2012-07-31 20:29:59 +0000 | [diff] [blame] | 20 | # Don't install this. It is used for tests. |
| 21 | NO_INSTALL = 1 |
| 22 | |
Peter Collingbourne | 4b93d66 | 2011-02-19 23:03:58 +0000 | [diff] [blame] | 23 | LINK_COMPONENTS := support mc |
Douglas Gregor | ba8be8c | 2012-04-13 17:26:32 +0000 | [diff] [blame] | 24 | USEDLIBS = clang.a clangFrontend.a clangDriver.a \ |
NAKAMURA Takumi | e7e9332 | 2012-07-01 00:40:17 +0000 | [diff] [blame] | 25 | clangTooling.a \ |
John McCall | 119bf6b | 2011-06-16 05:29:03 +0000 | [diff] [blame] | 26 | clangSerialization.a clangParse.a clangSema.a \ |
Chandler Carruth | f95d412 | 2012-06-20 09:53:52 +0000 | [diff] [blame] | 27 | clangAnalysis.a clangEdit.a clangAST.a clangLex.a \ |
Dmitri Gribenko | aa0cd85 | 2012-06-20 00:34:58 +0000 | [diff] [blame] | 28 | clangBasic.a |
Steve Naroff | 5039819 | 2009-08-28 15:28:48 +0000 | [diff] [blame] | 29 | |
Daniel Dunbar | afed099 | 2010-06-08 20:34:18 +0000 | [diff] [blame] | 30 | include $(CLANG_LEVEL)/Makefile |