mirror of
https://git.hardenedbsd.org/hardenedbsd/HardenedBSD.git
synced 2024-11-22 03:04:34 +01:00
e9ac41698b
This is a residual of the $FreeBSD$ removal. MFC After: 3 days (though I'll just run the command on the branches) Sponsored by: Netflix
14 lines
480 B
Makefile
14 lines
480 B
Makefile
.PATH: ${SRCTOP}/sys/dev/ixgbe
|
|
|
|
KMOD = if_ixv
|
|
SRCS = device_if.h bus_if.h pci_if.h pci_iov_if.h ifdi_if.h
|
|
SRCS += opt_inet.h opt_inet6.h opt_rss.h
|
|
SRCS += if_ixv.c if_fdir.c ix_txrx.c ixgbe_osdep.c
|
|
# Shared source
|
|
SRCS += ixgbe_common.c ixgbe_api.c ixgbe_phy.c ixgbe_mbx.c ixgbe_vf.c
|
|
SRCS += ixgbe_dcb.c ixgbe_dcb_82598.c ixgbe_dcb_82599.c
|
|
SRCS += ixgbe_82598.c ixgbe_82599.c ixgbe_x540.c ixgbe_x550.c
|
|
CFLAGS+= -I${SRCTOP}/sys/dev/ixgbe
|
|
|
|
.include <bsd.kmod.mk>
|