NetBSD/sbin/mount_nfs/Makefile
christos c54d6ca813 PR/1472: David Carrel: Add option to specify the nfs port.
This was not done, I added the functionality to be able to parse
port=num in the options. While I was there, I added this for all
the other numeric options: rsize, wsize etc.
2003-04-11 17:39:09 +00:00

24 lines
444 B
Makefile

# $NetBSD: Makefile,v 1.14 2003/04/11 17:39:09 christos Exp $
# @(#)Makefile 8.2 (Berkeley) 3/27/94
.include <bsd.own.mk>
PROG= mount_nfs
SRCS= mount_nfs.c
MAN= mount_nfs.8
CPPFLAGS+= -DNFS -DINET6
.if defined(notdef) # XXX no kernel kerb NFS support!
.if defined(KERBEROS)
CPPFLAGS+=-DNFSKERB
DPADD+= ${LIBKRB} ${LIBDES} ${LIBUTIL}
LDADD+= -lkrb -ldes -lutil
.endif
.else
DPADD+= ${LIBUTIL}
LDADD+= -lutil
.endif
.include <bsd.prog.mk>