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