1#$FreeBSD: stable/10/sys/modules/ix/Makefile 315333 2017-03-15 21:20:17Z 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 if_bypass.c if_fdir.c if_sriov.c ix_txrx.c ixgbe_osdep.c
9SRCS    += ixgbe_netmap.c
10# Shared source
11SRCS    += ixgbe_common.c ixgbe_api.c ixgbe_phy.c ixgbe_mbx.c
12SRCS    += ixgbe_dcb.c ixgbe_dcb_82598.c ixgbe_dcb_82599.c
13SRCS    += ixgbe_82598.c ixgbe_82599.c ixgbe_x540.c ixgbe_x550.c
14CFLAGS+= -I${.CURDIR}/../../dev/ixgbe -DSMP
15
16.include <bsd.kmod.mk>
17