blob: 8d298b50e0b5ae3109fe2c44c96905d0984eab0d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
|
# $NetBSD: Makefile,v 1.2 2021/05/30 01:56:54 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 \
PPCELFObjectWriter.cpp \
PPCELFStreamer.cpp \
PPCInstPrinter.cpp \
PPCMCAsmInfo.cpp \
PPCMCCodeEmitter.cpp \
PPCMCExpr.cpp \
PPCMCTargetDesc.cpp \
PPCPredicates.cpp \
PPCXCOFFObjectWriter.cpp \
PPCXCOFFStreamer.cpp
.if defined(HOSTLIB)
.include <bsd.hostlib.mk>
.else
.include <bsd.lib.mk>
.endif
|