1*f4a2713aSLionel Sambuc# $NetBSD: Makefile,v 1.5 2012/10/28 17:07:46 joerg Exp $ 2*f4a2713aSLionel Sambuc 3*f4a2713aSLionel SambucLIB= LLVMipo 4*f4a2713aSLionel Sambuc 5*f4a2713aSLionel Sambuc.include <bsd.init.mk> 6*f4a2713aSLionel Sambuc 7*f4a2713aSLionel Sambuc.PATH: ${LLVM_SRCDIR}/lib/Transforms/IPO 8*f4a2713aSLionel Sambuc 9*f4a2713aSLionel SambucSRCS+= ArgumentPromotion.cpp \ 10*f4a2713aSLionel Sambuc BarrierNoopPass.cpp \ 11*f4a2713aSLionel Sambuc ConstantMerge.cpp \ 12*f4a2713aSLionel Sambuc DeadArgumentElimination.cpp \ 13*f4a2713aSLionel Sambuc ExtractGV.cpp \ 14*f4a2713aSLionel Sambuc FunctionAttrs.cpp \ 15*f4a2713aSLionel Sambuc GlobalDCE.cpp \ 16*f4a2713aSLionel Sambuc GlobalOpt.cpp \ 17*f4a2713aSLionel Sambuc IPConstantPropagation.cpp \ 18*f4a2713aSLionel Sambuc IPO.cpp \ 19*f4a2713aSLionel Sambuc InlineAlways.cpp \ 20*f4a2713aSLionel Sambuc InlineSimple.cpp \ 21*f4a2713aSLionel Sambuc Inliner.cpp \ 22*f4a2713aSLionel Sambuc Internalize.cpp \ 23*f4a2713aSLionel Sambuc LoopExtractor.cpp \ 24*f4a2713aSLionel Sambuc MergeFunctions.cpp \ 25*f4a2713aSLionel Sambuc PartialInlining.cpp \ 26*f4a2713aSLionel Sambuc PassManagerBuilder.cpp \ 27*f4a2713aSLionel Sambuc PruneEH.cpp \ 28*f4a2713aSLionel Sambuc StripDeadPrototypes.cpp \ 29*f4a2713aSLionel Sambuc StripSymbols.cpp 30*f4a2713aSLionel Sambuc 31*f4a2713aSLionel Sambuc.if defined(HOSTLIB) 32*f4a2713aSLionel Sambuc.include <bsd.hostlib.mk> 33*f4a2713aSLionel Sambuc.else 34*f4a2713aSLionel Sambuc.include <bsd.lib.mk> 35*f4a2713aSLionel Sambuc.endif 36