kernel - Fix auto port assignment collision in network code
[dragonfly.git] / sys / dev / netif / ix / Makefile
blob4c1569efdb25fd191f2328175176a28e03402418
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
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
11 .ifndef KERNBUILDDIR
13 opt_ix.h:
14 touch ${.OBJDIR}/${.TARGET}
16 opt_ifpoll.h:
17 echo '#define IFPOLL_ENABLE 1' > ${.OBJDIR}/${.TARGET}
19 .endif
21 .include <bsd.kmod.mk>