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 19LIBADD= util 20 21# Needed for getmntopts.c 22MOUNT= ${.CURDIR}/../../sbin/mount 23CFLAGS+=-I${MOUNT} 24 25WARNS= 6 26 27LINKS= ${BINDIR}/automountd ${BINDIR}/automount 28LINKS+= ${BINDIR}/automountd ${BINDIR}/autounmountd 29 30.PATH: ${MOUNT} 31 32.include <bsd.prog.mk> 33