2012-06-27 04:39:18 +08:00
|
|
|
##===- unittests/AST/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 = AST
|
2012-08-21 07:39:06 +08:00
|
|
|
include $(CLANG_LEVEL)/../../Makefile.config
|
2013-06-15 01:17:23 +08:00
|
|
|
LINK_COMPONENTS := $(TARGETS_TO_BUILD) asmparser bitreader support mc option
|
2012-08-21 07:39:06 +08:00
|
|
|
USEDLIBS = clangTooling.a clangFrontend.a clangSerialization.a clangDriver.a \
|
2014-07-17 00:48:33 +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-06-27 04:39:18 +08:00
|
|
|
|
|
|
|
include $(CLANG_LEVEL)/unittests/Makefile
|