em/emx: Sync with Intel's em 7.6.2
[dragonfly.git] / sys / dev / netif / ix / Makefile
1 KMOD    = if_ix
2 SRCS    = if_ix.c
3 SRCS    += device_if.h bus_if.h pci_if.h
4 SRCS    += opt_ix.h opt_ifpoll.h
5
6 SRCS    += ixgbe_common.c ixgbe_api.c ixgbe_phy.c ixgbe_mbx.c
7 SRCS    += ixgbe_osdep_pf.c
8 SRCS    += ixgbe_dcb.c ixgbe_dcb_82598.c ixgbe_dcb_82599.c
9 SRCS    += ixgbe_82598.c ixgbe_82599.c ixgbe_x540.c ixgbe_x550.c
10
11 .ifndef BUILDING_WITH_KERNEL
12
13 opt_ix.h:
14         touch ${.OBJDIR}/${.TARGET}
15
16 opt_ifpoll.h:
17         echo '#define IFPOLL_ENABLE 1' > ${.OBJDIR}/${.TARGET}
18
19 .endif
20
21 .include <bsd.kmod.mk>