Makefile revision 1.2
11.2Spooka# $NetBSD: Makefile,v 1.2 2008/12/30 22:20:56 pooka Exp $ 21.1Spooka# 31.1Spooka 41.2Spooka.include <bsd.own.mk> 51.2Spooka 61.1SpookaMOUNTNAME= nfs 71.1Spooka 81.1SpookaSRCS+= getnfsargs.c 91.1Spooka 101.1Spooka# One or the other of the following. Compile-time selection for now. 111.1Spooka# The first one uses host sockets to provide a networking stack, the 121.1Spooka# second one runs the real NetBSD kernel networking stack in userspace 131.1Spooka# and uses /dev/tap to access the network. 141.1Spooka# 151.2Spooka.ifdef(RUMPKMOD) 161.2SpookaLDADD+= -lrumpnet -lrumpnet_sockin 171.2Spooka.else 181.1SpookaLDADD+= -lrumpfs_nfs -lrumpnet -lrumpnet_sockin 191.2Spooka.endif 201.1Spooka#LDADD+= -lrumpfs_nfs -lrumpnet -lrumpnet_net -lrumpnet_netinet \ 211.1Spooka -lrumpnet_virtif 221.1Spooka 231.1SpookaISRUMP= # gives me nightmares 241.1Spooka#CPPFLAGS+= -DINET6 # for getnfsargs? 251.1Spooka 261.1Spooka.include <bsd.prog.mk> 27