1# $FreeBSD$ 2 3PROG= automountd 4SRCS= automount.c 5SRCS+= automountd.c 6SRCS+= autounmountd.c 7SRCS+= common.c 8SRCS+= defined.c 9SRCS+= getmntopts.c 10SRCS+= log.c 11SRCS+= popen.c 12SRCS+= token.l 13 14CFLAGS+=-I${.CURDIR} 15CFLAGS+=-I${.CURDIR}/../../sys/fs/autofs 16 17MAN= automount.8 automountd.8 autounmountd.8 auto_master.5 18 19DPADD= ${LIBUTIL} 20LDADD= -lutil 21 22# Needed for getmntopts.c 23MOUNT= ${.CURDIR}/../../sbin/mount 24CFLAGS+=-I${MOUNT} 25 26WARNS= 6 27 28LINKS= ${BINDIR}/automountd ${BINDIR}/automount 29LINKS+= ${BINDIR}/automountd ${BINDIR}/autounmountd 30 31.PATH: ${MOUNT} 32 33.include <bsd.prog.mk> 34