cdcd52d41e
This is an initial commit for RDMA FreeBSD driver for Intel(R) Ethernet Controller E810, called irdma. Supporting both RoCEv2 and iWARP protocols in per-PF manner, RoCEv2 being the default. Testing has been done using krping tool, perftest, ucmatose, rping, ud_pingpong, rc_pingpong and others. Signed-off-by: Eric Joyner <erj@FreeBSD.org> Reviewed by: #manpages (pauamma_gundo.com) [documentation] MFC after: 1 week Relnotes: yes Sponsored by: Intel Corporation Differential Revision: https://reviews.freebsd.org/D34690
33 lines
572 B
Makefile
33 lines
572 B
Makefile
# $FreeBSD$
|
|
|
|
SUBDIR= \
|
|
include \
|
|
libibverbs \
|
|
libibcm \
|
|
libibumad \
|
|
librdmacm \
|
|
libibmad \
|
|
complib \
|
|
libvendor \
|
|
libcxgb4 \
|
|
libmlx4 \
|
|
libmlx5 \
|
|
libirdma \
|
|
libibnetdisc \
|
|
libopensm
|
|
|
|
SUBDIR_DEPEND_libibcm= libibverbs
|
|
SUBDIR_DEPEND_librdmacm= libibverbs
|
|
SUBDIR_DEPEND_libibmad= libibumad
|
|
SUBDIR_DEPEND_libvendor= libibumad
|
|
SUBDIR_DEPEND_libcxgb4= libibverbs
|
|
SUBDIR_DEPEND_libmlx4= libibverbs
|
|
SUBDIR_DEPEND_libmlx5= libibverbs
|
|
SUBDIR_DEPEND_libirdma= libibverbs
|
|
SUBDIR_DEPEND_libibnetdisc= libibmad libibumad complib
|
|
|
|
SUBDIR_PARALLEL=
|
|
|
|
.include <bsd.subdir.mk>
|
|
|