#$FreeBSD$
.PATH:  ${.CURDIR}
KMOD    = if_ixlv
KMODDIR ?= /boot/kernel
SRCS    = device_if.h bus_if.h pci_if.h
SRCS    += if_ixlv.c ixlvc.c ixl_txrx.c i40e_osdep.c
# Shared source
SRCS    += i40e_common.c  i40e_adminq.c

CFLAGS  += $(STRIP_FLAGS)
# Add INET and INET6 for the standalone code, in-kernel options control it
CFLAGS	+= -DSMP -DINET -DINET6 -DIXL_STANDALONE_BUILD

# Enable netmap(4) support
# CFLAGS += -DDEV_NETMAP

# Add RSS support if using FreeBSD11 (HEAD)
# CFLAGS += -DRSS

# Print even more debug messages
# CFLAGS += -DIXL_DEBUG


.include <bsd.kmod.mk>
