Steve Naroff | a1c7284 | 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 | e6c1daa | 2010-06-08 20:34:18 +0000 | [diff] [blame^] | 9 | CLANG_LEVEL := ../.. |
Steve Naroff | a1c7284 | 2009-08-28 15:28:48 +0000 | [diff] [blame] | 10 | |
| 11 | TOOLNAME = c-index-test |
| 12 | CPPFLAGS += -I$(PROJ_SRC_DIR)/../../include -I$(PROJ_OBJ_DIR)/../../include |
Steve Naroff | a1c7284 | 2009-08-28 15:28:48 +0000 | [diff] [blame] | 13 | |
| 14 | # No plugins, optimize startup time. |
| 15 | TOOL_NO_EXPORTS = 1 |
| 16 | |
Daniel Dunbar | e6c1daa | 2010-06-08 20:34:18 +0000 | [diff] [blame^] | 17 | include $(CLANG_LEVEL)/../../Makefile.config |
Steve Naroff | a1c7284 | 2009-08-28 15:28:48 +0000 | [diff] [blame] | 18 | |
Daniel Dunbar | 845a87b | 2009-12-02 21:47:55 +0000 | [diff] [blame] | 19 | LINK_COMPONENTS := bitreader mc core |
Daniel Dunbar | d5a2a07 | 2010-04-30 21:51:10 +0000 | [diff] [blame] | 20 | USEDLIBS = clang.a clangIndex.a clangFrontend.a clangDriver.a clangSema.a \ |
Daniel Dunbar | e7fe5b2 | 2009-12-02 08:44:24 +0000 | [diff] [blame] | 21 | clangAnalysis.a clangAST.a clangParse.a clangLex.a clangBasic.a |
Steve Naroff | a1c7284 | 2009-08-28 15:28:48 +0000 | [diff] [blame] | 22 | |
Daniel Dunbar | e6c1daa | 2010-06-08 20:34:18 +0000 | [diff] [blame^] | 23 | include $(CLANG_LEVEL)/Makefile |