blob: 5e5b8570c812763fb33546bfff2da92690ba5163 [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
NAKAMURA Takumic480ac82011-02-28 05:21:34 +000016# Don't install this. It is used for tests.
17NO_INSTALL = 1
18
Peter Collingbourne4b93d662011-02-19 23:03:58 +000019LINK_COMPONENTS := support mc
Sebastian Redl85728132010-08-17 20:43:28 +000020USEDLIBS = clang.a clangIndex.a clangFrontend.a clangDriver.a \
John McCall119bf6b2011-06-16 05:29:03 +000021 clangSerialization.a clangParse.a clangSema.a \
Argyrios Kyrtzidisbb540932011-07-09 22:35:06 +000022 clangAnalysis.a clangAST.a clangLex.a clangBasic.a
Steve Naroff50398192009-08-28 15:28:48 +000023
Daniel Dunbarafed0992010-06-08 20:34:18 +000024include $(CLANG_LEVEL)/Makefile