blob: e9ba174275a4d5c595fb20bfe1a262fd42120c0b [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
Steve Naroff50398192009-08-28 15:28:48 +000013NO_INSTALL = 1
14
15# No plugins, optimize startup time.
16TOOL_NO_EXPORTS = 1
17
18include $(LEVEL)/Makefile.config
19
Daniel Dunbar467f0302009-12-02 21:47:55 +000020LINK_COMPONENTS := bitreader mc core
Daniel Dunbard3781812009-12-02 08:44:24 +000021USEDLIBS = CIndex.a clangIndex.a clangFrontend.a clangDriver.a clangSema.a \
22 clangAnalysis.a clangAST.a clangParse.a clangLex.a clangBasic.a
Steve Naroff50398192009-08-28 15:28:48 +000023
24include $(LLVM_SRC_ROOT)/Makefile.rules