minix/external/bsd/llvm/lib/libLLVMInstCombine/Makefile

28 lines
594 B
Makefile
Raw Normal View History

# $NetBSD: Makefile,v 1.1 2011/02/06 01:13:57 joerg Exp $
LIB= LLVMInstCombine
.include <bsd.init.mk>
.PATH: ${LLVM_SRCDIR}/lib/Transforms/InstCombine
SRCS+= InstructionCombining.cpp \
InstCombineAddSub.cpp \
InstCombineAndOrXor.cpp \
InstCombineCalls.cpp \
InstCombineCasts.cpp \
InstCombineCompares.cpp \
InstCombineLoadStoreAlloca.cpp \
InstCombineMulDivRem.cpp \
InstCombinePHI.cpp \
InstCombineSelect.cpp \
InstCombineShifts.cpp \
InstCombineSimplifyDemanded.cpp \
InstCombineVectorOps.cpp
.if defined(HOSTLIB)
.include <bsd.hostlib.mk>
.else
.include <bsd.lib.mk>
.endif