blob: f41aa8098155a7e9f32e4d34264f4be59365e3ee [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
Rafael Espindola96b1d4b2011-02-19 21:39:31 +000016LINK_COMPONENTS := bitreader mc core
Sebastian Redl85728132010-08-17 20:43:28 +000017USEDLIBS = clang.a clangIndex.a clangFrontend.a clangDriver.a \
John McCall19510852010-08-20 18:27:03 +000018 clangSerialization.a clangParse.a clangSema.a clangAnalysis.a \
19 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