blob: a09b71ec45d0ff6237f96fc263fd7cdf770fdbfd (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
# $NetBSD: Makefile.inc,v 1.8 2009/04/22 15:23:05 lukem Exp $
.include <bsd.own.mk>
USE_FORT?=yes # network client/server *and* setgid
LIBCOMMON != cd ${.CURDIR}/../common_source && ${PRINTOBJDIR}
CPPFLAGS+=-I${.CURDIR}/../common_source
DPADD+= ${LIBCOMMON}/libcommon.a
LDADD+= -L${LIBCOMMON} -lcommon
.if exists(${.CURDIR}/../../Makefile.inc)
.include "${.CURDIR}/../../Makefile.inc"
.endif
|