diff options
Diffstat (limited to 'sys/modules/ixl/Makefile')
-rw-r--r-- | sys/modules/ixl/Makefile | 11 |
1 files changed, 4 insertions, 7 deletions
diff --git a/sys/modules/ixl/Makefile b/sys/modules/ixl/Makefile index 2f969a5a497f..e962c31da78d 100644 --- a/sys/modules/ixl/Makefile +++ b/sys/modules/ixl/Makefile @@ -3,18 +3,15 @@ .PATH: ${.CURDIR}/../../dev/ixl KMOD = if_ixl -SRCS = device_if.h bus_if.h pci_if.h pci_iov_if.h opt_bdg.h +SRCS = device_if.h bus_if.h pci_if.h pci_iov_if.h SRCS += opt_inet.h opt_inet6.h opt_rss.h -SRCS += if_ixl.c ixl_txrx.c i40e_osdep.c +SRCS += if_ixl.c ixl_pf_main.c ixl_pf_qmgr.c ixl_txrx.c i40e_osdep.c +SRCS += ixl_pf_iov.c # Shared source SRCS += i40e_common.c i40e_nvm.c i40e_adminq.c i40e_lan_hmc.c i40e_hmc.c -CFLAGS += -DSMP -DIXL_DEBUG_SYSCTL - -# Add Flow Director support -# CFLAGS += -DIXL_FDIR # Debug messages / sysctls -# CFLAGS += -DIXLE_DEBUG +# CFLAGS += -DIXL_DEBUG .include <bsd.kmod.mk> |