1#$FreeBSD: releng/10.2/sys/modules/ix/Makefile 283668 2015-05-28 20:56:11Z erj $
2
3.PATH:  ${.CURDIR}/../../dev/ixgbe
4
5KMOD    = if_ix
6SRCS    = device_if.h bus_if.h pci_if.h
7SRCS	+= opt_inet.h opt_inet6.h
8SRCS    += if_ix.c ix_txrx.c
9# Shared source
10SRCS    += ixgbe_common.c ixgbe_api.c ixgbe_phy.c ixgbe_mbx.c ixgbe_vf.c
11SRCS    += ixgbe_dcb.c ixgbe_dcb_82598.c ixgbe_dcb_82599.c
12SRCS    += ixgbe_82598.c ixgbe_82599.c ixgbe_x540.c ixgbe_x550.c
13CFLAGS+= -I${.CURDIR}/../../dev/ixgbe -DSMP
14
15.include <bsd.kmod.mk>
16