blob: bfd76038ba2c5209cc9d41e6b2cedfe6a470eb13 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
# $NetBSD: Makefile,v 1.1 2019/11/11 22:45:09 joerg Exp $
LIB= LLVMMipsDisassembler
.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/Disassembler
SRCS+= MipsDisassembler.cpp
.if defined(HOSTLIB)
.include <bsd.hostlib.mk>
.else
.include <bsd.lib.mk>
.endif
|