2012-07-06 13:48:52 +08:00
|
|
|
##===- unittests/ASTMatchers/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 = ../..
|
|
|
|
|
2013-05-14 17:13:00 +08:00
|
|
|
PARALLEL_DIRS = Dynamic
|
|
|
|
|
2012-07-06 13:48:52 +08:00
|
|
|
TESTNAME = ASTMatchers
|
2012-08-09 00:27:29 +08:00
|
|
|
include $(CLANG_LEVEL)/../../Makefile.config
|
2015-02-25 10:44:04 +08:00
|
|
|
LINK_COMPONENTS := $(TARGETS_TO_BUILD) asmparser bitreader support mc option
|
2012-07-06 16:13:45 +08:00
|
|
|
USEDLIBS = clangTooling.a clangFrontend.a clangSerialization.a clangDriver.a \
|
2015-02-25 10:44:04 +08:00
|
|
|
clangRewrite.a clangRewriteFrontend.a \
|
2012-12-04 16:20:35 +08:00
|
|
|
clangParse.a clangSema.a clangAnalysis.a \
|
2012-12-04 16:20:41 +08:00
|
|
|
clangEdit.a clangAST.a clangASTMatchers.a clangLex.a clangBasic.a
|
2012-07-06 13:48:52 +08:00
|
|
|
|
|
|
|
include $(CLANG_LEVEL)/unittests/Makefile
|