NetBSD/sbin/mount_nfs/Makefile
gwr 10e180cc49 Back out the .PATH.c changes. The .depend problem (and others)
will be fixed using the new .NOPATH make feature instead.
1997-05-08 21:11:01 +00:00

24 lines
483 B
Makefile

# $NetBSD: Makefile,v 1.8 1997/05/08 21:11:23 gwr Exp $
# @(#)Makefile 8.2 (Berkeley) 3/27/94
PROG= mount_nfs
SRCS= mount_nfs.c getmntopts.c
MAN= mount_nfs.8
# Temporarily removed to use own getmntops.c - fvdl
#
#MOUNT= ${.CURDIR}/../mount
#CFLAGS+= -DNFS -I${MOUNT}
#.PATH: ${MOUNT}
CFLAGS+=-DNFS
.if defined(notdef) # XXX no kernel kerb NFS support!
.if defined(KERBEROS)
CFLAGS+=-DNFSKERB
DPADD+= ${LIBKRB} ${LIBDES}
LDADD+= -lkrb -ldes
.endif
.endif
.include <bsd.prog.mk>