Makefile revision 1.1
1#	$NetBSD: Makefile,v 1.1 2008/10/16 09:30:57 pooka Exp $
2#
3
4MOUNTNAME=	nfs
5
6SRCS+=		getnfsargs.c
7
8# One or the other of the following.  Compile-time selection for now.
9# The first one uses host sockets to provide a networking stack, the
10# second one runs the real NetBSD kernel networking stack in userspace
11# and uses /dev/tap to access the network.
12#
13LDADD+= 	-lrumpfs_nfs -lrumpnet -lrumpnet_sockin
14#LDADD+= 	-lrumpfs_nfs -lrumpnet -lrumpnet_net -lrumpnet_netinet	\
15		-lrumpnet_virtif
16
17ISRUMP=		# gives me nightmares
18#CPPFLAGS+=	-DINET6 # for getnfsargs?
19
20.include <bsd.prog.mk>
21