Skip site navigation (1)Skip section navigation (2)
Date:      Tue, 2 Feb 2016 11:36:58 +0000 (UTC)
From:      Hans Petter Selasky <hselasky@FreeBSD.org>
To:        src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org
Subject:   svn commit: r295146 - in head/contrib/ofed/librdmacm/examples/build: cmatose mckey udaddy
Message-ID:  <201602021136.u12BawA9084088@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
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>



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201602021136.u12BawA9084088>