Makefile revision 1.3
1# $NetBSD: Makefile,v 1.3 2009/01/18 20:42:11 he Exp $ 2# 3 4.include <bsd.own.mk> 5 6MOUNTNAME= nfs 7 8SRCS+= 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 16LDADD+= -lrumpnet -lrumpnet_sockin 17.else 18LDADD+= -lrumpfs_nfs -lrumpnet -lrumpnet_sockin 19.endif 20#LDADD+= -lrumpfs_nfs -lrumpnet -lrumpnet_net -lrumpnet_netinet \ 21 -lrumpnet_virtif 22 23ISRUMP= # gives me nightmares 24#CPPFLAGS+= -DINET6 # for getnfsargs? 25 26.include <bsd.prog.mk> 27