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 |
| 14 | |
| 15 | # No plugins, optimize startup time. |
| 16 | TOOL_NO_EXPORTS = 1 |
| 17 | |
| 18 | include $(LEVEL)/Makefile.config |
| 19 | |
Chris Lattner | 797c3c4 | 2009-08-10 19:03:04 +0000 | [diff] [blame^] | 20 | LINK_COMPONENTS := bitreader mc |
Argyrios Kyrtzidis | 7b332d9 | 2009-07-05 22:22:35 +0000 | [diff] [blame] | 21 | 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] | 22 | |
| 23 | include $(LLVM_SRC_ROOT)/Makefile.rules |