blob: 06e24053aa0aaeb3d1d11c9f72899d01fc605b61 [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
Daniel Dunbar467f0302009-12-02 21:47:55 +000021LINK_COMPONENTS := bitreader mc core
Daniel Dunbard3781812009-12-02 08:44:24 +000022USEDLIBS = CIndex.a clangIndex.a clangFrontend.a clangDriver.a clangSema.a \
23 clangAnalysis.a clangAST.a clangParse.a clangLex.a clangBasic.a
Steve Naroff50398192009-08-28 15:28:48 +000024
25include $(LLVM_SRC_ROOT)/Makefile.rules