xref: /minix3/external/bsd/llvm/dist/clang/unittests/CodeGen/Makefile (revision 0a6a1f1d05b60e214de2f05a7310ddd1f0e590e7)
1*0a6a1f1dSLionel Sambuc##===- unittests/CodeGen/Makefile --------------------------*- Makefile -*-===##
2*0a6a1f1dSLionel Sambuc#
3*0a6a1f1dSLionel Sambuc#                     The LLVM Compiler Infrastructure
4*0a6a1f1dSLionel Sambuc#
5*0a6a1f1dSLionel Sambuc# This file is distributed under the University of Illinois Open Source
6*0a6a1f1dSLionel Sambuc# License. See LICENSE.TXT for details.
7*0a6a1f1dSLionel Sambuc#
8*0a6a1f1dSLionel Sambuc##===----------------------------------------------------------------------===##
9*0a6a1f1dSLionel Sambuc
10*0a6a1f1dSLionel SambucCLANG_LEVEL = ../..
11*0a6a1f1dSLionel SambucTESTNAME = CodeGen
12*0a6a1f1dSLionel Sambucinclude $(CLANG_LEVEL)/../../Makefile.config
13*0a6a1f1dSLionel SambucLINK_COMPONENTS := $(TARGETS_TO_BUILD) asmparser bitreader mc option \
14*0a6a1f1dSLionel Sambuc                   profiledata support
15*0a6a1f1dSLionel SambucUSEDLIBS = clangCodeGen.a clangFrontend.a clangSerialization.a \
16*0a6a1f1dSLionel Sambuc           clangDriver.a \
17*0a6a1f1dSLionel Sambuc           clangParse.a clangSema.a clangAnalysis.a \
18*0a6a1f1dSLionel Sambuc           clangEdit.a clangAST.a clangLex.a clangBasic.a
19*0a6a1f1dSLionel Sambuc
20*0a6a1f1dSLionel Sambucinclude $(CLANG_LEVEL)/unittests/Makefile
21