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 | |
| 13 | # No plugins, optimize startup time. |
| 14 | TOOL_NO_EXPORTS = 1 |
| 15 | |
Daniel Dunbar | 467f030 | 2009-12-02 21:47:55 +0000 | [diff] [blame] | 16 | LINK_COMPONENTS := bitreader mc core |
Daniel Dunbar | f51f20f | 2010-04-30 21:51:10 +0000 | [diff] [blame] | 17 | USEDLIBS = clang.a clangIndex.a clangFrontend.a clangDriver.a clangSema.a \ |
Daniel Dunbar | d378181 | 2009-12-02 08:44:24 +0000 | [diff] [blame] | 18 | clangAnalysis.a clangAST.a clangParse.a clangLex.a clangBasic.a |
Steve Naroff | 5039819 | 2009-08-28 15:28:48 +0000 | [diff] [blame] | 19 | |
Daniel Dunbar | afed099 | 2010-06-08 20:34:18 +0000 | [diff] [blame] | 20 | include $(CLANG_LEVEL)/Makefile |