2012-04-04 20:07:46 +08:00
|
|
|
##===- unittests/Tooling/Makefile --------------------------*- Makefile -*-===##
|
|
|
|
#
|
|
|
|
# The LLVM Compiler Infrastructure
|
|
|
|
#
|
|
|
|
# This file is distributed under the University of Illinois Open Source
|
|
|
|
# License. See LICENSE.TXT for details.
|
|
|
|
#
|
|
|
|
##===----------------------------------------------------------------------===##
|
|
|
|
|
|
|
|
CLANG_LEVEL = ../..
|
|
|
|
TESTNAME = Tooling
|
2012-08-09 00:27:29 +08:00
|
|
|
include $(CLANG_LEVEL)/../../Makefile.config
|
|
|
|
LINK_COMPONENTS := $(TARGETS_TO_BUILD) asmparser support mc
|
2012-04-04 20:07:46 +08:00
|
|
|
USEDLIBS = clangTooling.a clangFrontend.a clangSerialization.a clangDriver.a \
|
2012-05-23 01:45:33 +08:00
|
|
|
clangParse.a clangRewrite.a clangSema.a clangAnalysis.a clangEdit.a \
|
2012-07-17 17:12:33 +08:00
|
|
|
clangAST.a clangASTMatchers.a clangLex.a clangBasic.a
|
2012-04-04 20:07:46 +08:00
|
|
|
|
|
|
|
include $(CLANG_LEVEL)/unittests/Makefile
|