mirror of
https://github.com/opnsense/src.git
synced 2026-02-10 06:15:40 -05:00
14 lines
312 B
Makefile
14 lines
312 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
|
|
KMOD = netmap
|
|
SRCS = device_if.h bus_if.h opt_netmap.h
|
|
SRCS += netmap.c netmap.h netmap_kern.h
|
|
|
|
netmap.o: netmap_mem2.c
|
|
|
|
.include <bsd.kmod.mk>
|