mirror of
https://github.com/freebsd/freebsd-src.git
synced 2024-12-03 10:29:15 +00:00
e9ac41698b
This is a residual of the $FreeBSD$ removal. MFC After: 3 days (though I'll just run the command on the branches) Sponsored by: Netflix
33 lines
570 B
Makefile
33 lines
570 B
Makefile
CONFS= auto_master
|
|
PACKAGE=autofs
|
|
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${SRCTOP}/sys/fs/autofs
|
|
|
|
MAN= automount.8 automountd.8 autounmountd.8 auto_master.5
|
|
|
|
LIBADD= util
|
|
|
|
# Needed for getmntopts.c
|
|
MOUNT= ${SRCTOP}/sbin/mount
|
|
CFLAGS+=-I${MOUNT}
|
|
|
|
LINKS= ${BINDIR}/automountd ${BINDIR}/automount
|
|
LINKS+= ${BINDIR}/automountd ${BINDIR}/autounmountd
|
|
|
|
.PATH: ${MOUNT}
|
|
|
|
SUBDIR= autofs
|
|
|
|
.include <bsd.prog.mk>
|