NetBSD/usr.sbin/puffs/rump_nfs/Makefile
pooka 1d6d3e2769 Link self-contained file systems (i.e. do not depend on other file
systems) against the kernel module on select archs.
2008-12-30 22:20:56 +00:00

27 lines
672 B
Makefile

# $NetBSD: Makefile,v 1.2 2008/12/30 22:20:56 pooka Exp $
#
.include <bsd.own.mk>
MOUNTNAME= nfs
SRCS+= getnfsargs.c
# One or the other of the following. Compile-time selection for now.
# The first one uses host sockets to provide a networking stack, the
# second one runs the real NetBSD kernel networking stack in userspace
# and uses /dev/tap to access the network.
#
.ifdef(RUMPKMOD)
LDADD+= -lrumpnet -lrumpnet_sockin
.else
LDADD+= -lrumpfs_nfs -lrumpnet -lrumpnet_sockin
.endif
#LDADD+= -lrumpfs_nfs -lrumpnet -lrumpnet_net -lrumpnet_netinet \
-lrumpnet_virtif
ISRUMP= # gives me nightmares
#CPPFLAGS+= -DINET6 # for getnfsargs?
.include <bsd.prog.mk>