32 lines
831 B
Makefile
32 lines
831 B
Makefile
|
# $FreeBSD$
|
||
|
.PATH: ${.CURDIR}/../../ofed/drivers/infiniband/ulp/ipoib
|
||
|
.PATH: ${.CURDIR}/../../ofed/include/linux
|
||
|
|
||
|
.include <bsd.own.mk>
|
||
|
|
||
|
KMOD = ipoib
|
||
|
SRCS = device_if.h bus_if.h opt_ofed.h vnode_if.h opt_inet.h opt_inet6.h
|
||
|
SRCS += ipoib_cm.c ipoib_ib.c ipoib_main.c ipoib_multicast.c ipoib_verbs.c ipoib.h
|
||
|
SRCS+= linux_compat.c linux_radix.c linux_idr.c
|
||
|
|
||
|
CFLAGS+= -I${.CURDIR}/../../ofed/drivers/infiniband/ulp/ipoib
|
||
|
CFLAGS+= -I${.CURDIR}/../ibcore
|
||
|
CFLAGS+= -I${.CURDIR}/../../ofed/include/
|
||
|
CFLAGS+= -DINET6 -DINET -DOFED
|
||
|
|
||
|
.if !defined(KERNBUILDDIR)
|
||
|
.if ${MK_INET_SUPPORT} != "no"
|
||
|
opt_inet.h:
|
||
|
@echo "#define INET 1" > ${.TARGET}
|
||
|
.endif
|
||
|
|
||
|
.if ${MK_INET6_SUPPORT} != "no"
|
||
|
opt_inet6.h:
|
||
|
@echo "#define INET6 1" > ${.TARGET}
|
||
|
.endif
|
||
|
.endif
|
||
|
|
||
|
.include <bsd.kmod.mk>
|
||
|
|
||
|
CFLAGS+= -Wno-cast-qual -Wno-pointer-arith -fms-extensions
|