mirror of
https://github.com/Stichting-MINIX-Research-Foundation/netbsd.git
synced 2025-08-07 21:19:47 -04:00
30 lines
663 B
Makefile
30 lines
663 B
Makefile
# $NetBSD: Makefile,v 1.13 2015/01/29 20:41:35 joerg Exp $
|
|
|
|
LIB= LLVMMipsMCTargetDesc
|
|
|
|
.include <bsd.init.mk>
|
|
|
|
MIPS_OBJDIR!= cd ${.CURDIR}/../libLLVMMipsCodeGen && ${PRINTOBJDIR}
|
|
CPPFLAGS+= -I${MIPS_OBJDIR} -I${LLVM_SRCDIR}/lib/Target/Mips
|
|
|
|
.PATH: ${LLVM_SRCDIR}/lib/Target/Mips/MCTargetDesc
|
|
|
|
SRCS+= MipsABIFlagsSection.cpp \
|
|
MipsABIInfo.cpp \
|
|
MipsAsmBackend.cpp \
|
|
MipsELFObjectWriter.cpp \
|
|
MipsELFStreamer.cpp \
|
|
MipsMCAsmInfo.cpp \
|
|
MipsMCCodeEmitter.cpp \
|
|
MipsMCExpr.cpp \
|
|
MipsMCTargetDesc.cpp \
|
|
MipsNaClELFStreamer.cpp \
|
|
MipsOptionRecord.cpp \
|
|
MipsTargetStreamer.cpp
|
|
|
|
.if defined(HOSTLIB)
|
|
.include <bsd.hostlib.mk>
|
|
.else
|
|
.include <bsd.lib.mk>
|
|
.endif
|