blob: c21b3279a287014f572678fabb230dd29ed8a711 [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##===----------------------------------------------------------------------===##
Daniel Dunbarafed0992010-06-08 20:34:18 +00009CLANG_LEVEL := ../..
Steve Naroff50398192009-08-28 15:28:48 +000010
11TOOLNAME = c-index-test
Steve Naroff50398192009-08-28 15:28:48 +000012
13# No plugins, optimize startup time.
14TOOL_NO_EXPORTS = 1
15
Peter Collingbourne4b93d662011-02-19 23:03:58 +000016LINK_COMPONENTS := support mc
Sebastian Redl85728132010-08-17 20:43:28 +000017USEDLIBS = clang.a clangIndex.a clangFrontend.a clangDriver.a \
John McCall119bf6b2011-06-16 05:29:03 +000018 clangSerialization.a clangParse.a clangSema.a \
Argyrios Kyrtzidisbb540932011-07-09 22:35:06 +000019 clangAnalysis.a clangAST.a clangLex.a clangBasic.a
Steve Naroff50398192009-08-28 15:28:48 +000020
Daniel Dunbarafed0992010-06-08 20:34:18 +000021include $(CLANG_LEVEL)/Makefile