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