]> CyberLeo.Net >> Repos - FreeBSD/stable/10.git/blob - usr.sbin/mountd/Makefile
Copy head (r256279) to stable/10 as part of the 10.0-RELEASE cycle.
[FreeBSD/stable/10.git] / usr.sbin / mountd / Makefile
1 #       From: @(#)Makefile      8.3 (Berkeley) 1/25/94
2 # $FreeBSD$
3
4 PROG=   mountd
5 SRCS=   mountd.c getmntopts.c
6 MAN=    exports.5 netgroup.5 mountd.8
7
8 MOUNT=  ${.CURDIR}/../../sbin/mount
9 CFLAGS+= -I${MOUNT}
10 WARNS?= 2
11
12 .PATH: ${MOUNT}
13
14 DPADD=  ${LIBUTIL}
15 LDADD=  -lutil
16
17 .include <bsd.prog.mk>