2009-08-28 23:28:48 +08:00
|
|
|
##===- tools/index-test/Makefile ---------------------------*- Makefile -*-===##
|
|
|
|
#
|
|
|
|
# The LLVM Compiler Infrastructure
|
|
|
|
#
|
|
|
|
# This file is distributed under the University of Illinois Open Source
|
|
|
|
# License. See LICENSE.TXT for details.
|
|
|
|
#
|
|
|
|
##===----------------------------------------------------------------------===##
|
2010-06-09 04:34:18 +08:00
|
|
|
CLANG_LEVEL := ../..
|
2009-08-28 23:28:48 +08:00
|
|
|
|
|
|
|
TOOLNAME = c-index-test
|
|
|
|
|
|
|
|
# No plugins, optimize startup time.
|
|
|
|
TOOL_NO_EXPORTS = 1
|
|
|
|
|
2011-02-20 07:03:58 +08:00
|
|
|
LINK_COMPONENTS := support mc
|
2010-08-18 04:43:28 +08:00
|
|
|
USEDLIBS = clang.a clangIndex.a clangFrontend.a clangDriver.a \
|
2011-06-16 13:29:03 +08:00
|
|
|
clangSerialization.a clangParse.a clangSema.a \
|
2011-07-10 06:35:06 +08:00
|
|
|
clangAnalysis.a clangAST.a clangLex.a clangBasic.a
|
2009-08-28 23:28:48 +08:00
|
|
|
|
2010-06-09 04:34:18 +08:00
|
|
|
include $(CLANG_LEVEL)/Makefile
|