blob: ba8f6c74a7dbce0cc9625a43cac966bff6b36c05 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
# $NetBSD: Makefile.inc,v 1.12 2021/10/31 18:06:42 christos Exp $
USE_FORT?=yes # network server
.include <bsd.own.mk>
.if ${MACHINE_CPU} == "mips"
CPPFLAGS+= -DNOAOUT
.endif
LIBCOMMON != cd ${.CURDIR}/../common && ${PRINTOBJDIR}
CPPFLAGS+=-I${.CURDIR}/../common
DPADD+= ${LIBCOMMON}/libcommon.a
LDADD+= -L${LIBCOMMON} -lcommon
.if exists(${.CURDIR}/../../Makefile.inc)
.include "${.CURDIR}/../../Makefile.inc"
.endif
|