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 | |
Rafael Espindola | 96b1d4b | 2011-02-19 21:39:31 +0000 | [diff] [blame] | 16 | LINK_COMPONENTS := bitreader mc core |
Sebastian Redl | 8572813 | 2010-08-17 20:43:28 +0000 | [diff] [blame] | 17 | USEDLIBS = clang.a clangIndex.a clangFrontend.a clangDriver.a \ |
John McCall | 1951085 | 2010-08-20 18:27:03 +0000 | [diff] [blame] | 18 | clangSerialization.a clangParse.a clangSema.a clangAnalysis.a \ |
| 19 | clangAST.a clangLex.a clangBasic.a |
Steve Naroff | 5039819 | 2009-08-28 15:28:48 +0000 | [diff] [blame] | 20 | |
Daniel Dunbar | afed099 | 2010-06-08 20:34:18 +0000 | [diff] [blame] | 21 | include $(CLANG_LEVEL)/Makefile |