2014-08-27 06:10:15 +08:00
|
|
|
##===- unittests/CodeGen/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 = CodeGen
|
|
|
|
include $(CLANG_LEVEL)/../../Makefile.config
|
2015-02-25 10:44:04 +08:00
|
|
|
LINK_COMPONENTS := $(TARGETS_TO_BUILD) asmparser bitreader mc option \
|
|
|
|
profiledata support
|
|
|
|
USEDLIBS = clangCodeGen.a clangFrontend.a clangSerialization.a \
|
2014-08-27 08:58:19 +08:00
|
|
|
clangDriver.a \
|
2014-08-27 06:10:15 +08:00
|
|
|
clangParse.a clangSema.a clangAnalysis.a \
|
2014-08-27 09:50:11 +08:00
|
|
|
clangEdit.a clangAST.a clangLex.a clangBasic.a
|
2014-08-27 06:10:15 +08:00
|
|
|
|
|
|
|
include $(CLANG_LEVEL)/unittests/Makefile
|