12b4b5a0da
about kld filenames for network drivers that requires them to follow the pattern of if_<foo>. This also fixes the existing documentation in the manpage which says to use if_oce_load=YES in loader.conf. PR: 199095 MFC after: 1 week
16 lines
341 B
Makefile
16 lines
341 B
Makefile
#
|
|
# $FreeBSD$
|
|
#
|
|
|
|
.PATH: ${.CURDIR}/../../dev/oce
|
|
KMOD = if_oce
|
|
SRCS = oce_if.c oce_hw.c oce_mbox.c oce_util.c oce_queue.c oce_sysctl.c
|
|
SRCS += bus_if.h device_if.h pci_if.h opt_inet.h opt_inet6.h
|
|
|
|
CFLAGS+= -I${.CURDIR}/../../dev/oce -DSMP
|
|
|
|
# uncomment for lock profiling statistics
|
|
#CFLAGS += -DLOCK_PROFILING
|
|
|
|
.include <bsd.kmod.mk>
|