28 lines
487 B
Makefile
28 lines
487 B
Makefile
# $NetBSD: Makefile,v 1.15 2005/01/10 02:58:59 lukem 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
|
|
|
|
.if (${USE_INET6} != "no")
|
|
CPPFLAGS+= -DINET6
|
|
.endif
|
|
|
|
.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>
|