4294f337b0
Submitted by: erj Reviewed by: jeffrey.e.pieper@intel.com MFC after: 3 days Sponsored by: Intel Corporation Differential Revision: https://reviews.freebsd.org/D7391
18 lines
422 B
Makefile
18 lines
422 B
Makefile
#$FreeBSD$
|
|
|
|
.PATH: ${.CURDIR}/../../dev/ixl
|
|
|
|
KMOD = if_ixl
|
|
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_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
|
|
|
|
# Debug messages / sysctls
|
|
# CFLAGS += -DIXL_DEBUG
|
|
|
|
.include <bsd.kmod.mk>
|