svn commit: r295146 - in head/contrib/ofed/librdmacm/examples/build: cmatose mckey udaddy
Hans Petter Selasky
hselasky at FreeBSD.org
Tue Feb 2 11:36:59 UTC 2016
Author: hselasky
Date: Tue Feb 2 11:36:58 2016
New Revision: 295146
URL: https://svnweb.freebsd.org/changeset/base/295146
Log:
Use LIBADD instead of LDADD.
Sponsored by: Mellanox Technologies
Modified:
head/contrib/ofed/librdmacm/examples/build/cmatose/Makefile
head/contrib/ofed/librdmacm/examples/build/mckey/Makefile
head/contrib/ofed/librdmacm/examples/build/udaddy/Makefile
Modified: head/contrib/ofed/librdmacm/examples/build/cmatose/Makefile
==============================================================================
--- head/contrib/ofed/librdmacm/examples/build/cmatose/Makefile Tue Feb 2 10:50:32 2016 (r295145)
+++ head/contrib/ofed/librdmacm/examples/build/cmatose/Makefile Tue Feb 2 11:36:58 2016 (r295146)
@@ -5,7 +5,6 @@
PROG= cmatose
MAN=
SRCS= cmatose.c
-LDADD+= -libverbs -lrdmacm -lpthread
-LDADD+= -lmlx4
+LIBADD= ibverbs rdmacm pthread mlx4
.include <bsd.prog.mk>
Modified: head/contrib/ofed/librdmacm/examples/build/mckey/Makefile
==============================================================================
--- head/contrib/ofed/librdmacm/examples/build/mckey/Makefile Tue Feb 2 10:50:32 2016 (r295145)
+++ head/contrib/ofed/librdmacm/examples/build/mckey/Makefile Tue Feb 2 11:36:58 2016 (r295146)
@@ -5,7 +5,6 @@
PROG= mckey
MAN=
SRCS= mckey.c
-LDADD+= -libverbs -lrdmacm -lpthread
-LDADD+= -lmlx4
+LIBADD= ibverbs rdmacm pthread mlx4
.include <bsd.prog.mk>
Modified: head/contrib/ofed/librdmacm/examples/build/udaddy/Makefile
==============================================================================
--- head/contrib/ofed/librdmacm/examples/build/udaddy/Makefile Tue Feb 2 10:50:32 2016 (r295145)
+++ head/contrib/ofed/librdmacm/examples/build/udaddy/Makefile Tue Feb 2 11:36:58 2016 (r295146)
@@ -5,7 +5,6 @@
PROG= udaddy
MAN=
SRCS= udaddy.c
-LDADD+= -libverbs -lrdmacm -lpthread
-LDADD+= -lmlx4
+LIBADD= ibverbs rdmacm pthread mlx4
.include <bsd.prog.mk>
More information about the svn-src-all
mailing list