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