blob: 8e1a501599bfa2e348ebff77bf6749accdff69be (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
# $NetBSD: Makefile.inc,v 1.3 2007/05/28 12:06:34 tls Exp $
.include <bsd.own.mk>
USE_FORT?= yes # network client/server
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
|