blob: 788631f96928d2461584c96d4f5a00cae9c35370 (
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
|
# $NetBSD: Makefile,v 1.7 2014/05/30 18:28:15 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 \
X86ELFObjectWriter.cpp \
X86MCAsmInfo.cpp \
X86MCCodeEmitter.cpp \
X86MCTargetDesc.cpp \
X86MachORelocationInfo.cpp \
X86MachObjectWriter.cpp \
X86ELFRelocationInfo.cpp \
X86WinCOFFObjectWriter.cpp \
X86WinCOFFStreamer.cpp
.if defined(HOSTLIB)
.include <bsd.hostlib.mk>
.else
.include <bsd.lib.mk>
.endif
|