summaryrefslogtreecommitdiffstats
path: root/sys/modules/i40e/Makefile
blob: 7d06a6836a50f000911232871dfad6e3c94ad177 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
#$FreeBSD$

.include <src.opts.mk>

.PATH:  ${.CURDIR}/../../dev/i40e

KMOD    = if_i40e
SRCS    = device_if.h bus_if.h pci_if.h opt_bdg.h
SRCS    += if_i40e.c i40e_txrx.c i40e_osdep.c

# Shared source
SRCS    += i40e_common.c i40e_nvm.c i40e_adminq.c i40e_lan_hmc.c i40e_hmc.c

CFLAGS	+= -DSMP -DFORTVILLE_HW

# Add Flow Director support
# CFLAGS += -DI40E_FDIR
# A0 hardware support
# CFLAGS += -DFORTVILLE_A0_SUPPORT
# Debug messages / sysctls
# CFLAGS += -DI40E_DEBUG

.if !defined(KERNBUILDDIR)
.if ${MK_INET_SUPPORT} != "no"
opt_inet.h:
	@echo "#define INET 1" > ${.TARGET}
.endif

.if ${MK_INET6_SUPPORT} != "no"
opt_inet6.h:
	@echo "#define INET6 1" > ${.TARGET}
.endif
.endif

.include <bsd.kmod.mk>
OpenPOWER on IntegriCloud