011981fd9e
experimental client is used when the fstype is "newnfs" or the "nfsv4" option is specified. It includes the addition of the option: gssname - to specify a client side initiator host based principal name which is specific to NFSv4. It also includes a change to mount.c, so that it knows about mount_newnfs, but not mount_nfs4. Reviewed by: dfr Approved by: kib (mentor)
20 lines
390 B
Makefile
20 lines
390 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_newnfs.8
|
|
|
|
MOUNT= ${.CURDIR}/../mount
|
|
UMNTALL= ${.CURDIR}/../../usr.sbin/rpc.umntall
|
|
CFLAGS+= -DNFS -I${MOUNT} -I${UMNTALL}
|
|
WARNS?= 3
|
|
|
|
LINKS= ${BINDIR}/mount_nfs ${BINDIR}/mount_newnfs
|
|
|
|
.PATH: ${MOUNT} ${UMNTALL}
|
|
|
|
.include <bsd.prog.mk>
|