blob: e490ea5e8f8700b487c89cd8f0ef1d737b37a65c (
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
29
30
31
|
# $NetBSD: Makefile,v 1.2 2021/05/30 01:56:55 joerg Exp $
LIB= LLVMX86MCTargetDesc
.include <bsd.init.mk>
.PATH: ${LLVM_SRCDIR}/lib/Target/X86/MCTargetDesc
X86_OBJDIR!= cd ${.CURDIR}/../libLLVMX86CodeGen && ${PRINTOBJDIR}
CPPFLAGS+= -I${X86_OBJDIR} -I${LLVM_SRCDIR}/lib/Target/X86
SRCS+= X86AsmBackend.cpp \
X86ATTInstPrinter.cpp \
X86ELFObjectWriter.cpp \
X86InstComments.cpp \
X86InstPrinterCommon.cpp \
X86IntelInstPrinter.cpp \
X86MachObjectWriter.cpp \
X86MCAsmInfo.cpp \
X86MCCodeEmitter.cpp \
X86MCTargetDesc.cpp \
X86ShuffleDecode.cpp \
X86WinCOFFObjectWriter.cpp \
X86WinCOFFStreamer.cpp \
X86WinCOFFTargetStreamer.cpp
.if defined(HOSTLIB)
.include <bsd.hostlib.mk>
.else
.include <bsd.lib.mk>
.endif
|