d8602bb9a7
newest hardware, adds multiqueue tx interface, infrastructure cleanup to allow up to 32 MSIX vectors on newer Nehalem systems. Bug fixes, etc.
17 lines
397 B
Makefile
17 lines
397 B
Makefile
#$FreeBSD$
|
|
.PATH: ${.CURDIR}/../../dev/ixgbe
|
|
KMOD = ixgbe
|
|
SRCS = device_if.h bus_if.h pci_if.h
|
|
SRCS += ixgbe.c
|
|
# Shared source
|
|
SRCS += ixgbe_common.c ixgbe_api.c ixgbe_phy.c
|
|
SRCS += ixgbe_82599.c ixgbe_82598.c
|
|
CFLAGS+= -I${.CURDIR}/../../dev/ixgbe -DSMP
|
|
|
|
clean:
|
|
rm -f device_if.h bus_if.h pci_if.h setdef* *_StripErr
|
|
rm -f *.o *.kld *.ko
|
|
rm -f @ machine
|
|
|
|
.include <bsd.kmod.mk>
|