1 # $NetBSD: Makefile,v 1.1 2019/11/11 22:45:09 joerg Exp $ 2 3 LIB= LLVMMipsMCTargetDesc 4 5 .include <bsd.init.mk> 6 7 MIPS_OBJDIR!= cd ${.CURDIR}/../libLLVMMipsCodeGen && ${PRINTOBJDIR} 8 CPPFLAGS+= -I${MIPS_OBJDIR} -I${LLVM_SRCDIR}/lib/Target/Mips 9 10 .PATH: ${LLVM_SRCDIR}/lib/Target/Mips/MCTargetDesc 11 12 SRCS+= MipsABIFlagsSection.cpp \ 13 MipsABIInfo.cpp \ 14 MipsAsmBackend.cpp \ 15 MipsELFObjectWriter.cpp \ 16 MipsELFStreamer.cpp \ 17 MipsInstPrinter.cpp \ 18 MipsMCAsmInfo.cpp \ 19 MipsMCCodeEmitter.cpp \ 20 MipsMCExpr.cpp \ 21 MipsMCTargetDesc.cpp \ 22 MipsNaClELFStreamer.cpp \ 23 MipsOptionRecord.cpp \ 24 MipsTargetStreamer.cpp 25 26 .if defined(HOSTLIB) 27 .include <bsd.hostlib.mk> 28 .else 29 .include <bsd.lib.mk> 30 .endif 31