9db3eed934
The is required because libpcap.so depends on the libraries when OFED is enabled. Reviewed by: bdrewery, hselasky Sponsored by: Mellanox Technologies MFC after: 2 weeks Differential revision: https://reviews.freebsd.org/D16230
26 lines
299 B
Makefile
26 lines
299 B
Makefile
# $FreeBSD$
|
|
|
|
_spath= ${SRCTOP}/contrib/ofed/libmlx5
|
|
.PATH: ${_spath}
|
|
|
|
SHLIBDIR?= /lib
|
|
LIB= mlx5
|
|
SHLIB_MAJOR= 1
|
|
MK_PROFILE= no
|
|
|
|
SRCS= \
|
|
buf.c \
|
|
cq.c \
|
|
dbrec.c \
|
|
mlx5.c \
|
|
qp.c \
|
|
srq.c \
|
|
verbs.c
|
|
|
|
LIBADD= ibverbs pthread
|
|
CFLAGS+= -I${_spath}
|
|
VERSION_MAP= ${_spath}/libmlx5.map
|
|
|
|
.include <bsd.lib.mk>
|
|
|