freebsd-dev/sys/modules/ixgbe/Makefile
Jack F Vogel d8602bb9a7 Update for the Intel 10G driver, this adds support for
newest hardware, adds multiqueue tx interface, infrastructure
cleanup to allow up to 32 MSIX vectors on newer Nehalem systems.
Bug fixes, etc.
2009-06-24 18:27:07 +00:00

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>