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