• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1##===- 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##===----------------------------------------------------------------------===##
9CLANG_LEVEL := ../..
10
11TOOLNAME = c-index-test
12
13# If a separate install prefix was specified for internal tools, use it
14# when installing c-index-test.
15INTERNAL_TOOL = 1
16
17# No plugins, optimize startup time.
18TOOL_NO_EXPORTS = 1
19
20LINK_COMPONENTS := support mc
21USEDLIBS = clang.a clangFrontend.a clangDriver.a \
22	   clangSerialization.a clangParse.a clangSema.a \
23	   clangAnalysis.a clangEdit.a clangAST.a clangLex.a clangBasic.a
24
25include $(CLANG_LEVEL)/Makefile
26