Home | History | Annotate | Line # | Download | only in rump_nfs
Makefile revision 1.4
      1 #	$NetBSD: Makefile,v 1.4 2009/08/21 14:41:22 skrll Exp $
      2 #
      3 
      4 .include <bsd.own.mk>
      5 
      6 MOUNTNAME=	nfs
      7 
      8 SRCS+=		getnfsargs.c
      9 
     10 # One or the other of the following.  Compile-time selection for now.
     11 # The first one uses host sockets to provide a networking stack, the
     12 # second one runs the real NetBSD kernel networking stack in userspace
     13 # and uses /dev/tap to access the network.
     14 #
     15 .ifdef RUMPKMOD
     16 LDADD+= 	-lrumpnet -lrumpnet_sockin
     17 .else
     18 LDADD+= 	-lrumpfs_nfs -lrumpnet -lrumpnet_sockin
     19 .endif
     20 #LDADD+= 	-lrumpfs_nfs -lrumpnet -lrumpnet_net -lrumpnet_netinet	\
     21 		-lrumpnet_virtif
     22 
     23 LDFLAGS+=      -Wl,--ignore-unresolved-symbol,__start_link_set_domains
     24 LDFLAGS+=      -Wl,--ignore-unresolved-symbol,__stop_link_set_domains
     25 
     26 ISRUMP=		# gives me nightmares
     27 #CPPFLAGS+=	-DINET6 # for getnfsargs?
     28 
     29 .include <bsd.prog.mk>
     30