Makefile revision 262151
1# $FreeBSD: stable/10/sys/modules/netmap/Makefile 262151 2014-02-18 05:01:04Z luigi $
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
8CFLAGS += -I${.CURDIR}/../../
9KMOD	= netmap
10SRCS	= device_if.h bus_if.h opt_netmap.h
11SRCS	+= netmap.c netmap.h netmap_kern.h
12SRCS	+= netmap_mem2.c netmap_mem2.h
13SRCS	+= netmap_generic.c
14SRCS	+= netmap_mbq.c netmap_mbq.h
15SRCS	+= netmap_vale.c
16SRCS	+= netmap_freebsd.c
17SRCS	+= netmap_offloadings.c
18SRCS	+= netmap_pipe.c
19
20.include <bsd.kmod.mk>
21