diff options
author | np <np@FreeBSD.org> | 2016-01-26 01:02:19 +0000 |
---|---|---|
committer | np <np@FreeBSD.org> | 2016-01-26 01:02:19 +0000 |
commit | 3d395daf1aab998d3aa712f7e2453495c5892893 (patch) | |
tree | eaebbc63889697e951da2ec4810685b00de88d58 /contrib/ofed | |
parent | cae902c905f452d793c8b0afcab464f54e96649a (diff) | |
download | FreeBSD-src-3d395daf1aab998d3aa712f7e2453495c5892893.zip FreeBSD-src-3d395daf1aab998d3aa712f7e2453495c5892893.tar.gz |
Use LIBADD instead of LDADD in rping's Makefile and add libcxgb4 (the
userspace iWARP library for cxgbe) to the list of libraries.
rping using the libcxgb4 + iw_cxgbe combo was tested with T5 hardware.
Obtained from: Chelsio Communications
Diffstat (limited to 'contrib/ofed')
-rw-r--r-- | contrib/ofed/librdmacm/examples/build/rping/Makefile | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/contrib/ofed/librdmacm/examples/build/rping/Makefile b/contrib/ofed/librdmacm/examples/build/rping/Makefile index b167a54..ee2efbd 100644 --- a/contrib/ofed/librdmacm/examples/build/rping/Makefile +++ b/contrib/ofed/librdmacm/examples/build/rping/Makefile @@ -5,7 +5,8 @@ PROG= rping MAN= SRCS= rping.c -LDADD+= -libverbs -lrdmacm -lpthread -LDADD+= -lmlx4 +LIBADD+= ibverbs rdmacm pthread +LIBADD+= mlx4 +LIBADD+= cxgb4 .include <bsd.prog.mk> |