]> CyberLeo.Net >> Repos - FreeBSD/FreeBSD.git/blob - sys/modules/netmap/Makefile
Update libdialog to 1.3-20180621
[FreeBSD/FreeBSD.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 SYSDIR?=${SRCTOP}/sys
7 .include "${SYSDIR}/conf/kern.opts.mk"
8
9 .PATH: ${SYSDIR}/dev/netmap
10 .PATH.h: ${SYSDIR}/net
11 CFLAGS += -I${SYSDIR}/ -D INET
12 KMOD    = netmap
13 SRCS    = device_if.h bus_if.h pci_if.h opt_netmap.h
14 SRCS    += netmap.c netmap.h netmap_kern.h
15 SRCS    += netmap_mem2.c netmap_mem2.h
16 SRCS    += netmap_generic.c
17 SRCS    += netmap_mbq.c netmap_mbq.h
18 SRCS    += netmap_vale.c
19 SRCS    += netmap_freebsd.c
20 SRCS    += netmap_offloadings.c
21 SRCS    += netmap_pipe.c
22 SRCS    += netmap_monitor.c
23 SRCS    += netmap_pt.c
24 SRCS    += netmap_legacy.c
25 SRCS    += if_ptnet.c
26 SRCS    += opt_inet.h opt_inet6.h
27
28 .include <bsd.kmod.mk>