]> CyberLeo.Net >> Repos - FreeBSD/releng/10.2.git/blob - sys/modules/netmap/Makefile
- Copy stable/10@285827 to releng/10.2 in preparation for 10.2-RC1
[FreeBSD/releng/10.2.git] / sys / modules / netmap / Makefile
1 # $FreeBSD$
2 #
3 # Compile netmap as a module, useful if you want a netmap bridge
4 # or loadable drivers.
5
6 .PATH: ${.CURDIR}/../../dev/netmap
7 .PATH.h: ${.CURDIR}/../../net
8 CFLAGS += -I${.CURDIR}/../../
9 KMOD    = netmap
10 SRCS    = device_if.h bus_if.h opt_netmap.h
11 SRCS    += netmap.c netmap.h netmap_kern.h
12 SRCS    += netmap_mem2.c netmap_mem2.h
13 SRCS    += netmap_generic.c
14 SRCS    += netmap_mbq.c netmap_mbq.h
15 SRCS    += netmap_vale.c
16 SRCS    += netmap_freebsd.c
17 SRCS    += netmap_offloadings.c
18 SRCS    += netmap_pipe.c
19 SRCS    += netmap_monitor.c
20
21 .include <bsd.kmod.mk>