1 # $NetBSD: Makefile.inc,v 1.13 2024/10/23 00:45:58 kalvisd Exp $ 2 3 USE_FORT?=yes # network server 4 .include <bsd.own.mk> 5 6 .if ${MACHINE_CPU} == "mips" 7 CPPFLAGS+= -DNOAOUT 8 .endif 9 10 LIBCOMMON != cd ${.CURDIR}/../common && ${PRINTOBJDIR} 11 CPPFLAGS+=-I${.CURDIR}/../common 12 .ifndef HOSTPROG 13 DPADD+= ${LIBCOMMON}/libcommon.a 14 LDADD+= -L${LIBCOMMON} -lcommon 15 .endif 16 17 .if exists(${.CURDIR}/../../Makefile.inc) 18 .include "${.CURDIR}/../../Makefile.inc" 19 .endif 20