mirror of
https://github.com/opnsense/src.git
synced 2026-02-13 15:57:05 -05:00
by dumbbell@ to be able to compile this layer as a dependency module. Clean up some Makefiles and remove the no longer used OFED define. Currently only i386 and amd64 targets are supported. MFC after: 1 month Sponsored by: Mellanox Technologies
21 lines
585 B
Makefile
21 lines
585 B
Makefile
# $FreeBSD$
|
|
.PATH: ${.CURDIR}/../../ofed/drivers/net/mlx4
|
|
.PATH: ${.CURDIR}/../../ofed/include/linux
|
|
|
|
KMOD= mlx4
|
|
SRCS= device_if.h bus_if.h vnode_if.h pci_if.h \
|
|
opt_inet.h opt_inet6.h \
|
|
alloc.c catas.c cmd.c cq.c eq.c \
|
|
fw.c icm.c intf.c main.c mcg.c mr.c \
|
|
pd.c port.c profile.c qp.c reset.c sense.c \
|
|
srq.c resource_tracker.c sys_tune.c
|
|
|
|
CFLAGS+= -I${.CURDIR}/../../ofed/drivers/net/mlx4
|
|
CFLAGS+= -I${.CURDIR}/../../ofed/include/
|
|
|
|
.include <bsd.kmod.mk>
|
|
|
|
CFLAGS+= -Wno-cast-qual -Wno-pointer-arith ${GCC_MS_EXTENSIONS}
|
|
CFLAGS+= -fms-extensions
|
|
|
|
CWARNFLAGS.mcg.c= -Wno-unused
|