Home | History | Annotate | Line # | Download | only in rump_nfs
Makefile revision 1.1
      1 #	$NetBSD: Makefile,v 1.1 2008/10/16 09:30:57 pooka Exp $
      2 #
      3 
      4 MOUNTNAME=	nfs
      5 
      6 SRCS+=		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 #
     13 LDADD+= 	-lrumpfs_nfs -lrumpnet -lrumpnet_sockin
     14 #LDADD+= 	-lrumpfs_nfs -lrumpnet -lrumpnet_net -lrumpnet_netinet	\
     15 		-lrumpnet_virtif
     16 
     17 ISRUMP=		# gives me nightmares
     18 #CPPFLAGS+=	-DINET6 # for getnfsargs?
     19 
     20 .include <bsd.prog.mk>
     21