NetBSD/sys/rump/net/Makefile.rumpnet
pooka a4aff0cbb8 Add a virtual ethernet interface which uses shared memory as the
bus instead of relying on the host kernel's tap and bridge.  This
is much lighterweight approach which does not consume non-pageable
kernel resources.
2009-02-28 15:28:45 +00:00

10 lines
210 B
Makefile

# $NetBSD: Makefile.rumpnet,v 1.5 2009/02/28 15:28:45 pooka Exp $
#
RUMPNETLIST= sockin shmif virtif net netinet local
.for var in ${RUMPNETLIST}
RUMPNETLIBS+=lib${var}
RUMPNETLDADD+=-lrumpnet_${var}
.endfor