From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from dpdk.org (dpdk.org [92.243.14.124]) by inbox.dpdk.org (Postfix) with ESMTP id 115A5A04DB; Wed, 12 Aug 2020 18:39:10 +0200 (CEST) Received: from [92.243.14.124] (localhost [127.0.0.1]) by dpdk.org (Postfix) with ESMTP id 73C7C1C0AF; Wed, 12 Aug 2020 18:39:09 +0200 (CEST) Received: from mga02.intel.com (mga02.intel.com [134.134.136.20]) by dpdk.org (Postfix) with ESMTP id 99DB61C01F for ; Wed, 12 Aug 2020 18:39:08 +0200 (CEST) IronPort-SDR: N3Kopm2XkHewRta9e1sj0tkbMwtuHra3RM/Odb6+d2tAHUf48ECFbhxtouE3eMvLRMXnmD55vo 9EH1rzHghm6g== X-IronPort-AV: E=McAfee;i="6000,8403,9711"; a="141844889" X-IronPort-AV: E=Sophos;i="5.76,304,1592895600"; d="scan'208";a="141844889" X-Amp-Result: SKIPPED(no attachment in message) X-Amp-File-Uploaded: False Received: from orsmga004.jf.intel.com ([10.7.209.38]) by orsmga101.jf.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 12 Aug 2020 09:39:06 -0700 IronPort-SDR: hpHTepV3jU/SqB4Ko//Xy0XWueHETnxvavZQcVDeBBYByc86FEKiFBDalMifpqPEhv0p4h8KzM 1tH3P2WZpVDg== X-IronPort-AV: E=Sophos;i="5.76,305,1592895600"; d="scan'208";a="439440231" Received: from bricha3-mobl.ger.corp.intel.com ([10.255.202.43]) by orsmga004-auth.jf.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-SHA; 12 Aug 2020 09:39:04 -0700 Date: Wed, 12 Aug 2020 17:38:57 +0100 From: Bruce Richardson To: Ciara Power Cc: dev@dpdk.org, thomas@monjalon.net Message-ID: <20200812163857.GI312@bricha3-MOBL.ger.corp.intel.com> References: <20200807123009.21266-1-ciara.power@intel.com> <20200807123009.21266-2-ciara.power@intel.com> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20200807123009.21266-2-ciara.power@intel.com> Subject: Re: [dpdk-dev] [PATCH 20.11 01/19] examples: remove legacy sections of makefiles 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: , Errors-To: dev-bounces@dpdk.org Sender: "dev" On Fri, Aug 07, 2020 at 01:29:51PM +0100, Ciara Power wrote: > The example app makefiles contained sections using the legacy method of > compiling with make. These are no longer needed, and are removed, > leaving only the section that uses pkg-config for the make build. > > Signed-off-by: Ciara Power > --- > examples/bbdev_app/Makefile | 23 ++------------- > examples/bond/Makefile | 34 ++-------------------- > examples/cmdline/Makefile | 29 ++----------------- > examples/distributor/Makefile | 30 ++----------------- > examples/eventdev_pipeline/Makefile | 23 ++------------- > examples/fips_validation/Makefile | 34 ++-------------------- > examples/flow_classify/Makefile | 29 ++----------------- > examples/flow_filtering/Makefile | 23 ++------------- > examples/helloworld/Makefile | 23 ++------------- > examples/ioat/Makefile | 22 ++------------ > examples/ip_fragmentation/Makefile | 29 ++----------------- > examples/ip_pipeline/Makefile | 36 ++--------------------- > examples/ip_reassembly/Makefile | 29 ++----------------- > examples/ipsec-secgw/Makefile | 36 ++--------------------- > examples/ipv4_multicast/Makefile | 29 ++----------------- > examples/kni/Makefile | 27 ++---------------- > examples/l2fwd-cat/Makefile | 38 ++----------------------- > examples/l2fwd-crypto/Makefile | 28 ++---------------- > examples/l2fwd-event/Makefile | 22 ++------------ > examples/l2fwd-jobstats/Makefile | 23 ++------------- > examples/l2fwd-keepalive/Makefile | 23 ++------------- > examples/l2fwd/Makefile | 23 ++------------- > examples/l3fwd-acl/Makefile | 28 ++---------------- > examples/l3fwd-graph/Makefile | 23 ++------------- > examples/l3fwd-power/Makefile | 36 ++--------------------- > examples/l3fwd/Makefile | 23 ++------------- > examples/link_status_interrupt/Makefile | 22 ++------------ > examples/ntb/Makefile | 32 ++------------------- > examples/packet_ordering/Makefile | 22 ++------------ > examples/ptpclient/Makefile | 28 ++---------------- > examples/qos_meter/Makefile | 28 ++---------------- > examples/qos_sched/Makefile | 31 ++------------------ > examples/rxtx_callbacks/Makefile | 31 ++------------------ > examples/service_cores/Makefile | 28 ++---------------- > examples/skeleton/Makefile | 29 ++----------------- > examples/tep_termination/Makefile | 27 ++---------------- > examples/timer/Makefile | 28 ++---------------- > examples/vdpa/Makefile | 32 ++------------------- > examples/vhost/Makefile | 30 ++----------------- > examples/vhost_blk/Makefile | 31 ++------------------ > examples/vhost_crypto/Makefile | 31 ++------------------ > examples/vmdq/Makefile | 23 ++------------- > examples/vmdq_dcb/Makefile | 31 ++------------------ > 43 files changed, 129 insertions(+), 1078 deletions(-) > There are still references to the old build system in the examples makefiles. Running "find examples/ -name Makefile | xargs grep RTE_SDK" shows quite a few references to the old builds. /Bruce