]> CyberLeo.Net >> Repos - FreeBSD/releng/10.2.git/blob - usr.sbin/autofs/Makefile
- Copy stable/10@285827 to releng/10.2 in preparation for 10.2-RC1
[FreeBSD/releng/10.2.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 DPADD=  ${LIBUTIL}
20 LDADD=  -lutil
21
22 # Needed for getmntopts.c
23 MOUNT=  ${.CURDIR}/../../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>