blob: ae49bf4d7af995503cde11cd486b9c962df1f3dd [file] [log] [blame]
Steve Naroff50398192009-08-28 15:28:48 +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 = c-index-test
12CPPFLAGS += -I$(PROJ_SRC_DIR)/../../include -I$(PROJ_OBJ_DIR)/../../include
13CXXFLAGS = -fno-rtti
14NO_INSTALL = 1
15
16# No plugins, optimize startup time.
17TOOL_NO_EXPORTS = 1
18
19include $(LEVEL)/Makefile.config
20
21LINK_COMPONENTS := bitreader mc
Daniel Dunbar521bf9c2009-12-01 09:51:01 +000022USEDLIBS = CIndex.a clangIndex.a clangFrontend.a clangDriver.a clangAnalysis.a \
23 clangSema.a clangAST.a clangParse.a clangLex.a clangBasic.a
Steve Naroff50398192009-08-28 15:28:48 +000024
25include $(LLVM_SRC_ROOT)/Makefile.rules