3914ddf8a7
UNIX systems, eg. MacOS X and Solaris. It uses Sun-compatible map format, has proper kernel support, and LDAP integration. There are still a few outstanding problems; they will be fixed shortly. Reviewed by: allanjude@, emaste@, kib@, wblock@ (earlier versions) Phabric: D523 MFC after: 2 weeks Relnotes: yes Sponsored by: The FreeBSD Foundation
34 lines
576 B
Makefile
34 lines
576 B
Makefile
# $FreeBSD$
|
|
|
|
PROG= automountd
|
|
SRCS= automount.c
|
|
SRCS+= automountd.c
|
|
SRCS+= autounmountd.c
|
|
SRCS+= common.c
|
|
SRCS+= defined.c
|
|
SRCS+= getmntopts.c
|
|
SRCS+= log.c
|
|
SRCS+= popen.c
|
|
SRCS+= token.l
|
|
|
|
CFLAGS+=-I${.CURDIR}
|
|
CFLAGS+=-I${.CURDIR}/../../sys/fs/autofs
|
|
|
|
MAN= automount.8 automountd.8 autounmountd.8 auto_master.5
|
|
|
|
DPADD= ${LIBUTIL}
|
|
LDADD= -lutil
|
|
|
|
# Needed for getmntopts.c
|
|
MOUNT= ${.CURDIR}/../../sbin/mount
|
|
CFLAGS+=-I${MOUNT}
|
|
|
|
WARNS= 6
|
|
|
|
LINKS= ${BINDIR}/automountd ${BINDIR}/automount
|
|
LINKS+= ${BINDIR}/automountd ${BINDIR}/autounmountd
|
|
|
|
.PATH: ${MOUNT}
|
|
|
|
.include <bsd.prog.mk>
|