]> CyberLeo.Net >> Repos - FreeBSD/FreeBSD.git/blob - tools/c-index-test/Makefile
Update clang to r90226.
[FreeBSD/FreeBSD.git] / tools / c-index-test / Makefile
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 ##===----------------------------------------------------------------------===##
9 LEVEL = ../../../..
10
11 TOOLNAME = c-index-test
12 CPPFLAGS += -I$(PROJ_SRC_DIR)/../../include -I$(PROJ_OBJ_DIR)/../../include
13 CXXFLAGS = -fno-rtti
14 NO_INSTALL = 1
15
16 # No plugins, optimize startup time.
17 TOOL_NO_EXPORTS = 1
18
19 include $(LEVEL)/Makefile.config
20
21 LINK_COMPONENTS := bitreader mc
22 USEDLIBS = CIndex.a clangIndex.a clangFrontend.a clangDriver.a clangAnalysis.a \
23            clangSema.a clangAST.a clangParse.a clangLex.a clangBasic.a
24
25 include $(LLVM_SRC_ROOT)/Makefile.rules