blob: 471ce912d0ee7b3591b15158b8fc5bf63e38e486 [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
Bob Wilson3e627ae2011-11-28 08:03:54 +000013# If a separate install prefix was specified for internal tools, use it
14# when installing c-index-test.
15INTERNAL_TOOL = 1
16
Steve Naroff50398192009-08-28 15:28:48 +000017# No plugins, optimize startup time.
18TOOL_NO_EXPORTS = 1
19
Peter Collingbourne4b93d662011-02-19 23:03:58 +000020LINK_COMPONENTS := support mc
Sebastian Redl85728132010-08-17 20:43:28 +000021USEDLIBS = clang.a clangIndex.a clangFrontend.a clangDriver.a \
John McCall119bf6b2011-06-16 05:29:03 +000022 clangSerialization.a clangParse.a clangSema.a \
Argyrios Kyrtzidisbb540932011-07-09 22:35:06 +000023 clangAnalysis.a clangAST.a clangLex.a clangBasic.a
Steve Naroff50398192009-08-28 15:28:48 +000024
Daniel Dunbarafed0992010-06-08 20:34:18 +000025include $(CLANG_LEVEL)/Makefile