ce8e119589
functionality where 1.2.3/24 -> 1.2.3.0/24 not 1.2.0.3/24 now that getaddrinfo(3) parses old-style incomplete dotted quads as old style addresses.
19 lines
367 B
Makefile
19 lines
367 B
Makefile
# $NetBSD: Makefile,v 1.19 2015/12/23 16:19:49 christos Exp $
|
|
# @(#)Makefile 8.3 (Berkeley) 1/25/94
|
|
|
|
USE_FORT?= yes # network server
|
|
|
|
PROG= mountd
|
|
SRCS= mountd.c ipsec.c get_net.c
|
|
MAN= exports.5 mountd.8
|
|
|
|
INETDDIR= ${.CURDIR}/../inetd
|
|
|
|
CPPFLAGS+= -I${INETDDIR} -DIPSEC
|
|
LDADD+= -lipsec -lutil
|
|
DPADD+= ${LIBIPSEC} ${LIBUTIL}
|
|
|
|
.include <bsd.prog.mk>
|
|
|
|
.PATH: ${INETDDIR}
|