blob: cec0eee2861757ad7076755591068fe8312c32c1 [file] [log] [blame]
Argyrios Kyrtzidis30b983b2009-06-25 18:22:52 +00001##===- 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##===----------------------------------------------------------------------===##
9LEVEL = ../../../..
10
11TOOLNAME = index-test
12CPPFLAGS += -I$(PROJ_SRC_DIR)/../../include -I$(PROJ_OBJ_DIR)/../../include
13CXXFLAGS = -fno-rtti
14
15# No plugins, optimize startup time.
16TOOL_NO_EXPORTS = 1
17
18include $(LEVEL)/Makefile.config
19
20LINK_COMPONENTS := bitreader
Argyrios Kyrtzidis7b332d92009-07-05 22:22:35 +000021USEDLIBS = clangIndex.a clangFrontend.a clangSema.a clangAST.a clangLex.a clangBasic.a
Argyrios Kyrtzidis30b983b2009-06-25 18:22:52 +000022
23include $(LLVM_SRC_ROOT)/Makefile.rules