xref: /netbsd-src/usr.sbin/autofs/Makefile (revision b985414b8f8688f3bfa6718c583260b26b0bf1d1)
1*b985414bSchristos#	$NetBSD: Makefile,v 1.1 2018/01/09 03:31:15 christos Exp $
2*b985414bSchristos
3*b985414bSchristosWARNS=6
4*b985414bSchristosPROG=	automount
5*b985414bSchristosSRCS=	automount.c automountd.c autounmountd.c common.c \
6*b985414bSchristos	defined.c log.c popen.c token.l
7*b985414bSchristos
8*b985414bSchristosCFLAGS+=	-I${.CURDIR} -I${.CURDIR}/../../sys
9*b985414bSchristos
10*b985414bSchristosMAN=	automount.8 automountd.8 autounmountd.8 auto_master.5
11*b985414bSchristos
12*b985414bSchristosDPADD=	${LIBUTIL}
13*b985414bSchristosLDADD=	-lutil
14*b985414bSchristos
15*b985414bSchristosLINKS=	${BINDIR}/automount ${BINDIR}/automountd
16*b985414bSchristosLINKS+=	${BINDIR}/automount ${BINDIR}/autounmountd
17*b985414bSchristos
18*b985414bSchristos.include <bsd.prog.mk>
19