15 lines
312 B
Makefile
15 lines
312 B
Makefile
|
#$FreeBSD$
|
||
|
|
||
|
.PATH: ${.CURDIR}/../../dev/bnxt
|
||
|
|
||
|
KMOD = if_bnxt
|
||
|
SRCS = device_if.h bus_if.h pci_if.h pci_iov_if.h ifdi_if.h
|
||
|
SRCS += opt_inet.h opt_inet6.h opt_rss.h
|
||
|
SRCS += bnxt_txrx.c if_bnxt.c
|
||
|
SRCS += bnxt_hwrm.c bnxt_hwrm.h
|
||
|
SRCS += bnxt_sysctl.c bnxt_sysctl.h
|
||
|
|
||
|
CFLAGS+= -DIFLIB
|
||
|
|
||
|
.include <bsd.kmod.mk>
|