1CONFS= auto_master 2PACKAGE=autofs 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${SRCTOP}/sys/fs/autofs 16 17MAN= automount.8 automountd.8 autounmountd.8 auto_master.5 18 19LIBADD= util 20 21# Needed for getmntopts.c 22MOUNT= ${SRCTOP}/sbin/mount 23CFLAGS+=-I${MOUNT} 24 25LINKS= ${BINDIR}/automountd ${BINDIR}/automount 26LINKS+= ${BINDIR}/automountd ${BINDIR}/autounmountd 27 28.PATH: ${MOUNT} 29 30SUBDIR= autofs 31 32.include <bsd.prog.mk> 33