1*f4a2713aSLionel Sambuc# $NetBSD: Makefile,v 1.1 2011/02/06 01:13:57 joerg Exp $ 2*f4a2713aSLionel Sambuc 3*f4a2713aSLionel SambucLIB= LLVMInstCombine 4*f4a2713aSLionel Sambuc 5*f4a2713aSLionel Sambuc.include <bsd.init.mk> 6*f4a2713aSLionel Sambuc 7*f4a2713aSLionel Sambuc.PATH: ${LLVM_SRCDIR}/lib/Transforms/InstCombine 8*f4a2713aSLionel Sambuc 9*f4a2713aSLionel SambucSRCS+= InstructionCombining.cpp \ 10*f4a2713aSLionel Sambuc InstCombineAddSub.cpp \ 11*f4a2713aSLionel Sambuc InstCombineAndOrXor.cpp \ 12*f4a2713aSLionel Sambuc InstCombineCalls.cpp \ 13*f4a2713aSLionel Sambuc InstCombineCasts.cpp \ 14*f4a2713aSLionel Sambuc InstCombineCompares.cpp \ 15*f4a2713aSLionel Sambuc InstCombineLoadStoreAlloca.cpp \ 16*f4a2713aSLionel Sambuc InstCombineMulDivRem.cpp \ 17*f4a2713aSLionel Sambuc InstCombinePHI.cpp \ 18*f4a2713aSLionel Sambuc InstCombineSelect.cpp \ 19*f4a2713aSLionel Sambuc InstCombineShifts.cpp \ 20*f4a2713aSLionel Sambuc InstCombineSimplifyDemanded.cpp \ 21*f4a2713aSLionel Sambuc InstCombineVectorOps.cpp 22*f4a2713aSLionel Sambuc 23*f4a2713aSLionel Sambuc.if defined(HOSTLIB) 24*f4a2713aSLionel Sambuc.include <bsd.hostlib.mk> 25*f4a2713aSLionel Sambuc.else 26*f4a2713aSLionel Sambuc.include <bsd.lib.mk> 27*f4a2713aSLionel Sambuc.endif 28