Expand PMF_FN_* macros.
[netbsd-mini2440.git] / usr.sbin / puffs / rump_nfs / Makefile
blobecb04d4f223e97784dd7d0c8fa92cb64aa899738
1 # $NetBSD: Makefile,v 1.4 2009/08/21 14:41:22 skrll Exp $
4 .include <bsd.own.mk>
6 MOUNTNAME= nfs
8 SRCS+= getnfsargs.c
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.
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
23 ISRUMP= # gives me nightmares
24 #CPPFLAGS+= -DINET6 # for getnfsargs?
26 .include <bsd.prog.mk>