f9790aeb88
- netmap.c base code - netmap_freebsd.c FreeBSD-specific code - netmap_generic.c emulate netmap over standard drivers - netmap_mbq.c simple mbuf tailq - netmap_mem2.c memory management - netmap_vale.c VALE switch simplify devce-specific code
19 lines
459 B
Makefile
19 lines
459 B
Makefile
# $FreeBSD$
|
|
#
|
|
# Compile netmap as a module, useful if you want a netmap bridge
|
|
# or loadable drivers.
|
|
|
|
.PATH: ${.CURDIR}/../../dev/netmap
|
|
.PATH.h: ${.CURDIR}/../../net
|
|
CFLAGS += -I${.CURDIR}/../../
|
|
KMOD = netmap
|
|
SRCS = device_if.h bus_if.h opt_netmap.h
|
|
SRCS += netmap.c netmap.h netmap_kern.h
|
|
SRCS += netmap_mem2.c netmap_mem2.h
|
|
SRCS += netmap_generic.c
|
|
SRCS += netmap_mbq.c netmap_mbq.h
|
|
SRCS += netmap_vale.c
|
|
SRCS += netmap_freebsd.c
|
|
|
|
.include <bsd.kmod.mk>
|