Argyrios Kyrtzidis | 30b983b | 2009-06-25 18:22:52 +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 | ##===----------------------------------------------------------------------===## |
| 9 | LEVEL = ../../../.. |
| 10 | |
| 11 | TOOLNAME = index-test |
| 12 | CPPFLAGS += -I$(PROJ_SRC_DIR)/../../include -I$(PROJ_OBJ_DIR)/../../include |
| 13 | CXXFLAGS = -fno-rtti |
Daniel Dunbar | 8165ced | 2009-08-20 18:45:52 +0000 | [diff] [blame] | 14 | NO_INSTALL = 1 |
Argyrios Kyrtzidis | 30b983b | 2009-06-25 18:22:52 +0000 | [diff] [blame] | 15 | |
| 16 | # No plugins, optimize startup time. |
| 17 | TOOL_NO_EXPORTS = 1 |
| 18 | |
| 19 | include $(LEVEL)/Makefile.config |
| 20 | |
Chris Lattner | 797c3c4 | 2009-08-10 19:03:04 +0000 | [diff] [blame] | 21 | LINK_COMPONENTS := bitreader mc |
Argyrios Kyrtzidis | 7b332d9 | 2009-07-05 22:22:35 +0000 | [diff] [blame] | 22 | USEDLIBS = clangIndex.a clangFrontend.a clangSema.a clangAST.a clangLex.a clangBasic.a |
Argyrios Kyrtzidis | 30b983b | 2009-06-25 18:22:52 +0000 | [diff] [blame] | 23 | |
| 24 | include $(LLVM_SRC_ROOT)/Makefile.rules |