Home | History | Annotate | Line # | Download | only in autofs
      1 #	$NetBSD: Makefile,v 1.1 2018/01/09 03:31:15 christos Exp $
      2 
      3 WARNS=6
      4 PROG=	automount
      5 SRCS=	automount.c automountd.c autounmountd.c common.c \
      6 	defined.c log.c popen.c token.l
      7 
      8 CFLAGS+=	-I${.CURDIR} -I${.CURDIR}/../../sys
      9 
     10 MAN=	automount.8 automountd.8 autounmountd.8 auto_master.5
     11 
     12 DPADD=	${LIBUTIL}
     13 LDADD=	-lutil
     14 
     15 LINKS=	${BINDIR}/automount ${BINDIR}/automountd
     16 LINKS+=	${BINDIR}/automount ${BINDIR}/autounmountd
     17 
     18 .include <bsd.prog.mk>
     19