diff options
Diffstat (limited to 'sys/modules/ixl/Makefile')
-rwxr-xr-x | sys/modules/ixl/Makefile | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/sys/modules/ixl/Makefile b/sys/modules/ixl/Makefile new file mode 100755 index 0000000..94189d0 --- /dev/null +++ b/sys/modules/ixl/Makefile @@ -0,0 +1,20 @@ +#$FreeBSD$ + +.PATH: ${.CURDIR}/../../dev/ixl + +KMOD = if_ixl +SRCS = device_if.h bus_if.h pci_if.h opt_bdg.h +SRCS += opt_inet.h opt_inet6.h +SRCS += if_ixl.c ixl_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 + +# Add Flow Director support +# CFLAGS += -DIXL_FDIR +# Debug messages / sysctls +# CFLAGS += -DIXLE_DEBUG + +.include <bsd.kmod.mk> |