2014-08-20 09:39:05 +08:00
|
|
|
##===- unittests/clang-rename/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 = ../../../..
|
|
|
|
include $(CLANG_LEVEL)/../../Makefile.config
|
|
|
|
|
|
|
|
TESTNAME = ClangRenameTests
|
|
|
|
LINK_COMPONENTS := asmparser bitreader support MC MCParser option \
|
|
|
|
TransformUtils
|
2014-10-13 19:30:27 +08:00
|
|
|
USEDLIBS = clangRename.a clangFrontend.a clangSerialization.a clangDriver.a \
|
|
|
|
clangTooling.a clangParse.a clangSema.a clangIndex.a \
|
|
|
|
clangStaticAnalyzerFrontend.a clangStaticAnalyzerCheckers.a \
|
|
|
|
clangStaticAnalyzerCore.a clangAnalysis.a clangRewriteFrontend.a \
|
|
|
|
clangRewrite.a clangEdit.a clangAST.a clangLex.a clangBasic.a
|
2014-08-20 09:39:05 +08:00
|
|
|
|
|
|
|
include $(CLANG_LEVEL)/Makefile
|
|
|
|
MAKEFILE_UNITTEST_NO_INCLUDE_COMMON := 1
|
2014-10-13 19:30:27 +08:00
|
|
|
CPP.Flags += -I$(PROJ_SRC_DIR)/../../clang-rename
|
2014-08-20 09:39:05 +08:00
|
|
|
include $(LLVM_SRC_ROOT)/unittests/Makefile.unittest
|