xref: /dragonfly/sys/net/netmap/Makefile (revision abf903a5)
1# Compile netmap as a module, useful if you want a netmap bridge
2# or loadable drivers.
3
4KMOD	= netmap
5SRCS	= device_if.h bus_if.h opt_netmap.h
6SRCS	+= netmap.c
7SRCS	+= netmap_mem2.c
8SRCS	+= netmap_generic.c
9SRCS	+= netmap_mbq.c
10SRCS	+= netmap_vale.c
11SRCS	+= netmap_freebsd.c
12
13.include <bsd.kmod.mk>
14