From owner-svn-src-head@FreeBSD.ORG Fri Dec 26 10:25:38 2014 Return-Path: Delivered-To: svn-src-head@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by hub.freebsd.org (Postfix) with ESMTPS id 7F8A83E4; Fri, 26 Dec 2014 10:25:38 +0000 (UTC) Received: from svn.freebsd.org (svn.freebsd.org [IPv6:2001:1900:2254:2068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 60DF564E88; Fri, 26 Dec 2014 10:25:38 +0000 (UTC) Received: from svn.freebsd.org ([127.0.1.70]) by svn.freebsd.org (8.14.9/8.14.9) with ESMTP id sBQAPcR9020635; Fri, 26 Dec 2014 10:25:38 GMT (envelope-from hselasky@FreeBSD.org) Received: (from hselasky@localhost) by svn.freebsd.org (8.14.9/8.14.9/Submit) id sBQAPZ9M020621; Fri, 26 Dec 2014 10:25:35 GMT (envelope-from hselasky@FreeBSD.org) Message-Id: <201412261025.sBQAPZ9M020621@svn.freebsd.org> X-Authentication-Warning: svn.freebsd.org: hselasky set sender to hselasky@FreeBSD.org using -f From: Hans Petter Selasky Date: Fri, 26 Dec 2014 10:25:35 +0000 (UTC) To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org Subject: svn commit: r276238 - in head/contrib/ofed/libibverbs/examples: . build build/asyncwatch build/device_list build/devinfo build/rc_pingpong build/srq_pingpong build/uc_pingpong build/ud_pingpong X-SVN-Group: head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-src-head@freebsd.org X-Mailman-Version: 2.1.18-1 Precedence: list List-Id: SVN commit messages for the src tree for head/-current List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 26 Dec 2014 10:25:38 -0000 Author: hselasky Date: Fri Dec 26 10:25:34 2014 New Revision: 276238 URL: https://svnweb.freebsd.org/changeset/base/276238 Log: Add proper Makefiles to build some infiniband example utilities. MFC after: 1 week Sponsored by: Mellanox Technologies Added: head/contrib/ofed/libibverbs/examples/build/ head/contrib/ofed/libibverbs/examples/build/Makefile (contents, props changed) head/contrib/ofed/libibverbs/examples/build/Makefile.inc (contents, props changed) head/contrib/ofed/libibverbs/examples/build/asyncwatch/ head/contrib/ofed/libibverbs/examples/build/asyncwatch/Makefile (contents, props changed) head/contrib/ofed/libibverbs/examples/build/device_list/ head/contrib/ofed/libibverbs/examples/build/device_list/Makefile (contents, props changed) head/contrib/ofed/libibverbs/examples/build/devinfo/ head/contrib/ofed/libibverbs/examples/build/devinfo/Makefile (contents, props changed) head/contrib/ofed/libibverbs/examples/build/rc_pingpong/ head/contrib/ofed/libibverbs/examples/build/rc_pingpong/Makefile (contents, props changed) head/contrib/ofed/libibverbs/examples/build/srq_pingpong/ head/contrib/ofed/libibverbs/examples/build/srq_pingpong/Makefile (contents, props changed) head/contrib/ofed/libibverbs/examples/build/uc_pingpong/ head/contrib/ofed/libibverbs/examples/build/uc_pingpong/Makefile (contents, props changed) head/contrib/ofed/libibverbs/examples/build/ud_pingpong/ head/contrib/ofed/libibverbs/examples/build/ud_pingpong/Makefile (contents, props changed) Deleted: head/contrib/ofed/libibverbs/examples/Makefile Added: head/contrib/ofed/libibverbs/examples/build/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/contrib/ofed/libibverbs/examples/build/Makefile Fri Dec 26 10:25:34 2014 (r276238) @@ -0,0 +1,4 @@ +SUBDIR= asyncwatch devinfo device_list rc_pingpong \ + srq_pingpong uc_pingpong ud_pingpong + +.include Added: head/contrib/ofed/libibverbs/examples/build/Makefile.inc ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/contrib/ofed/libibverbs/examples/build/Makefile.inc Fri Dec 26 10:25:34 2014 (r276238) @@ -0,0 +1,7 @@ +CFLAGS+= \ + -I../../../../../../sys/ofed/include \ + -I../../../../libibverbs/include \ + -I../../../../include + +LDADD+= -libverbs -lmlx4 -lmthca -pthread + Added: head/contrib/ofed/libibverbs/examples/build/asyncwatch/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/contrib/ofed/libibverbs/examples/build/asyncwatch/Makefile Fri Dec 26 10:25:34 2014 (r276238) @@ -0,0 +1,9 @@ +# +# $FreeBSD$ +# +.PATH: ${.CURDIR}/../.. +PROG= asyncwatch +MAN= +SRCS= asyncwatch.c + +.include Added: head/contrib/ofed/libibverbs/examples/build/device_list/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/contrib/ofed/libibverbs/examples/build/device_list/Makefile Fri Dec 26 10:25:34 2014 (r276238) @@ -0,0 +1,9 @@ +# +# $FreeBSD$ +# +.PATH: ${.CURDIR}/../.. +PROG= device_list +MAN= +SRCS= device_list.c + +.include Added: head/contrib/ofed/libibverbs/examples/build/devinfo/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/contrib/ofed/libibverbs/examples/build/devinfo/Makefile Fri Dec 26 10:25:34 2014 (r276238) @@ -0,0 +1,9 @@ +# +# $FreeBSD$ +# +.PATH: ${.CURDIR}/../.. +PROG= devinfo +MAN= +SRCS= devinfo.c + +.include Added: head/contrib/ofed/libibverbs/examples/build/rc_pingpong/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/contrib/ofed/libibverbs/examples/build/rc_pingpong/Makefile Fri Dec 26 10:25:34 2014 (r276238) @@ -0,0 +1,9 @@ +# +# $FreeBSD$ +# +.PATH: ${.CURDIR}/../.. +PROG= rc_pingpong +MAN= +SRCS= rc_pingpong.c pingpong.c + +.include Added: head/contrib/ofed/libibverbs/examples/build/srq_pingpong/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/contrib/ofed/libibverbs/examples/build/srq_pingpong/Makefile Fri Dec 26 10:25:34 2014 (r276238) @@ -0,0 +1,9 @@ +# +# $FreeBSD$ +# +.PATH: ${.CURDIR}/../.. +PROG= srq_pingpong +MAN= +SRCS= srq_pingpong.c pingpong.c + +.include Added: head/contrib/ofed/libibverbs/examples/build/uc_pingpong/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/contrib/ofed/libibverbs/examples/build/uc_pingpong/Makefile Fri Dec 26 10:25:34 2014 (r276238) @@ -0,0 +1,9 @@ +# +# $FreeBSD$ +# +.PATH: ${.CURDIR}/../.. +PROG= uc_pingpong +MAN= +SRCS= uc_pingpong.c pingpong.c + +.include Added: head/contrib/ofed/libibverbs/examples/build/ud_pingpong/Makefile ============================================================================== --- /dev/null 00:00:00 1970 (empty, because file is newly added) +++ head/contrib/ofed/libibverbs/examples/build/ud_pingpong/Makefile Fri Dec 26 10:25:34 2014 (r276238) @@ -0,0 +1,9 @@ +# +# $FreeBSD$ +# +.PATH: ${.CURDIR}/../.. +PROG= ud_pingpong +MAN= +SRCS= ud_pingpong.c pingpong.c + +.include