f4a2713ac8
Change-Id: Ia40e9ffdf29b5dab2f122f673ff6802a58bc690f
26 lines
602 B
Makefile
26 lines
602 B
Makefile
# $NetBSD: Makefile,v 1.6 2013/05/28 17:37:35 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
|
|
|
|
.if defined(HOSTLIB)
|
|
.include <bsd.hostlib.mk>
|
|
.else
|
|
.include <bsd.lib.mk>
|
|
.endif
|