f4a2713ac8
Change-Id: Ia40e9ffdf29b5dab2f122f673ff6802a58bc690f
25 lines
568 B
Makefile
25 lines
568 B
Makefile
# $NetBSD: Makefile,v 1.5 2013/09/02 14:34:56 joerg Exp $
|
|
|
|
LIB= LLVMPowerPCMCTargetDesc
|
|
|
|
.include <bsd.init.mk>
|
|
|
|
PPC_OBJDIR!= cd ${.CURDIR}/../libLLVMPowerPCCodeGen && ${PRINTOBJDIR}
|
|
CPPFLAGS+= -I${PPC_OBJDIR} -I${LLVM_SRCDIR}/lib/Target/PowerPC
|
|
|
|
.PATH: ${LLVM_SRCDIR}/lib/Target/PowerPC/MCTargetDesc
|
|
|
|
SRCS+= PPCAsmBackend.cpp \
|
|
PPCMCAsmInfo.cpp \
|
|
PPCELFObjectWriter.cpp \
|
|
PPCMCCodeEmitter.cpp \
|
|
PPCMCExpr.cpp \
|
|
PPCMCTargetDesc.cpp \
|
|
PPCMachObjectWriter.cpp \
|
|
PPCPredicates.cpp
|
|
|
|
.if defined(HOSTLIB)
|
|
.include <bsd.hostlib.mk>
|
|
.else
|
|
.include <bsd.lib.mk>
|
|
.endif
|