]> CyberLeo.Net >> Repos - FreeBSD/FreeBSD.git/blob - usr.sbin/autofs/Makefile
Add --currently-running <release> option to freebsd-update.
[FreeBSD/FreeBSD.git] / usr.sbin / autofs / Makefile
1 # $FreeBSD$
2
3 PROG=   automountd
4 SRCS=   automount.c
5 SRCS+=  automountd.c
6 SRCS+=  autounmountd.c
7 SRCS+=  common.c
8 SRCS+=  defined.c
9 SRCS+=  getmntopts.c
10 SRCS+=  log.c
11 SRCS+=  popen.c
12 SRCS+=  token.l
13
14 CFLAGS+=-I${.CURDIR}
15 CFLAGS+=-I${.CURDIR}/../../sys/fs/autofs
16
17 MAN=    automount.8 automountd.8 autounmountd.8 auto_master.5
18
19 LIBADD= util
20
21 # Needed for getmntopts.c
22 MOUNT=  ${.CURDIR}/../../sbin/mount
23 CFLAGS+=-I${MOUNT}
24
25 WARNS=  6
26
27 LINKS=  ${BINDIR}/automountd ${BINDIR}/automount
28 LINKS+= ${BINDIR}/automountd ${BINDIR}/autounmountd
29
30 .PATH:  ${MOUNT}
31
32 .include <bsd.prog.mk>