19 lines
397 B
Makefile
19 lines
397 B
Makefile
|
# $NetBSD: Makefile,v 1.1 2011/07/05 19:37:11 joerg Exp $
|
||
|
|
||
|
LIB= LLVMMipsTargetInfo
|
||
|
|
||
|
.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/TargetInfo
|
||
|
|
||
|
SRCS+= MipsTargetInfo.cpp
|
||
|
|
||
|
.if defined(HOSTLIB)
|
||
|
.include <bsd.hostlib.mk>
|
||
|
.else
|
||
|
.include <bsd.lib.mk>
|
||
|
.endif
|