From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mga03.intel.com (mga03.intel.com [134.134.136.65]) by dpdk.org (Postfix) with ESMTP id 88CE41B236 for ; Wed, 25 Oct 2017 14:51:29 +0200 (CEST) Received: from orsmga005.jf.intel.com ([10.7.209.41]) by orsmga103.jf.intel.com with ESMTP/TLS/DHE-RSA-AES256-GCM-SHA384; 25 Oct 2017 05:51:27 -0700 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.43,431,1503385200"; d="scan'208";a="164782699" Received: from fmsmsx104.amr.corp.intel.com ([10.18.124.202]) by orsmga005.jf.intel.com with ESMTP; 25 Oct 2017 05:51:27 -0700 Received: from fmsmsx125.amr.corp.intel.com (10.18.125.40) by fmsmsx104.amr.corp.intel.com (10.18.124.202) with Microsoft SMTP Server (TLS) id 14.3.319.2; Wed, 25 Oct 2017 05:51:27 -0700 Received: from fmsmsx117.amr.corp.intel.com ([169.254.3.51]) by FMSMSX125.amr.corp.intel.com ([169.254.2.126]) with mapi id 14.03.0319.002; Wed, 25 Oct 2017 05:51:27 -0700 From: "Wiles, Keith" To: Andriy Berestovskyy CC: "dev@dpdk.org" Thread-Topic: [dpdk-dev] [PATCH] pktgen-dpdk: Add support for make O=OUTPUT option Thread-Index: AQHTTYLnADSiO5/uTk++yy4SqTAMlaL0+kIA Date: Wed, 25 Oct 2017 12:51:26 +0000 Message-ID: <4E95B741-279A-49C1-B28C-412F789873B2@intel.com> References: <4e092b860fc7a5e3da2f1e0b97afde70c51c0b64.1508930205.git.aber@semihalf.com> In-Reply-To: <4e092b860fc7a5e3da2f1e0b97afde70c51c0b64.1508930205.git.aber@semihalf.com> Accept-Language: en-US Content-Language: en-US X-MS-Has-Attach: X-MS-TNEF-Correlator: x-originating-ip: [10.252.193.200] Content-Type: text/plain; charset="us-ascii" Content-ID: Content-Transfer-Encoding: quoted-printable MIME-Version: 1.0 Subject: Re: [dpdk-dev] [PATCH] pktgen-dpdk: Add support for make O=OUTPUT option X-BeenThere: dev@dpdk.org X-Mailman-Version: 2.1.15 Precedence: list List-Id: DPDK patches and discussions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 25 Oct 2017 12:51:29 -0000 Thanks > On Oct 25, 2017, at 6:17 AM, Andriy Berestovskyy wrot= e: >=20 > Add support for make O=3DOUTPUT compile time option. >=20 > Signed-off-by: Andriy Berestovskyy > --- > app/Makefile | 8 ++++---- > 1 file changed, 4 insertions(+), 4 deletions(-) >=20 > diff --git a/app/Makefile b/app/Makefile > index 9207d2b..88e8716 100644 > --- a/app/Makefile > +++ b/app/Makefile > @@ -57,10 +57,10 @@ yy :=3D $(shell $(ver_cmd) -yy) > # $(info yy=3D$(yy)) >=20 > ifeq ($(yy),17) > -COMMON_PRE :=3D $(RTE_SRCDIR)/../lib/common > -LUA_PRE :=3D $(RTE_SRCDIR)/../lib/lua/src > -CLI_PRE :=3D $(RTE_SRCDIR)/../lib/cli > -GUI_PRE :=3D $(RTE_SRCDIR)/../gui/gui > +COMMON_PRE :=3D $(RTE_OUTPUT)/../../lib/common > +LUA_PRE :=3D $(RTE_OUTPUT)/../../lib/lua/src > +CLI_PRE :=3D $(RTE_OUTPUT)/../../lib/cli > +GUI_PRE :=3D $(RTE_OUTPUT)/../../gui/gui > else > ifeq ($(yy),16) > COMMON_PRE :=3D $(RTE_SRCDIR)/../lib/common/lib/common > --=20 > 2.7.4 >=20 Regards, Keith