mirror of
https://github.com/freebsd/freebsd-src.git
synced 2024-12-04 05:58:57 +00:00
6c2f8a9091
Build mount_nfs(8) with WARNS=6. Sponsored by: The FreeBSD Foundation
19 lines
380 B
Makefile
19 lines
380 B
Makefile
# @(#)Makefile 8.2 (Berkeley) 3/27/94
|
|
#
|
|
# $FreeBSD$
|
|
|
|
PROG= mount_nfs
|
|
SRCS= mount_nfs.c getmntopts.c mounttab.c
|
|
MAN= mount_nfs.8
|
|
MLINKS= mount_nfs.8 mount_oldnfs.8
|
|
|
|
MOUNT= ${.CURDIR}/../mount
|
|
UMNTALL= ${.CURDIR}/../../usr.sbin/rpc.umntall
|
|
CFLAGS+= -DNFS -I${MOUNT} -I${UMNTALL}
|
|
|
|
LINKS= ${BINDIR}/mount_nfs ${BINDIR}/mount_oldnfs
|
|
|
|
.PATH: ${MOUNT} ${UMNTALL}
|
|
|
|
.include <bsd.prog.mk>
|