1 # $NetBSD: Makefile,v 1.3 2009/01/18 20:42:11 he 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 ISRUMP= # gives me nightmares 24 #CPPFLAGS+= -DINET6 # for getnfsargs? 25 26 .include <bsd.prog.mk> 27