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