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 605A4374 for ; Mon, 26 Jun 2017 17:38:34 +0200 (CEST) Received: from orsmga002.jf.intel.com ([10.7.209.21]) by orsmga103.jf.intel.com with ESMTP/TLS/DHE-RSA-AES256-GCM-SHA384; 26 Jun 2017 08:38:30 -0700 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.39,396,1493708400"; d="scan'208";a="103778991" Received: from irsmsx152.ger.corp.intel.com ([163.33.192.66]) by orsmga002.jf.intel.com with ESMTP; 26 Jun 2017 08:38:29 -0700 Received: from irsmsx104.ger.corp.intel.com ([169.254.5.26]) by IRSMSX152.ger.corp.intel.com ([169.254.6.83]) with mapi id 14.03.0319.002; Mon, 26 Jun 2017 16:38:29 +0100 From: "Mcnamara, John" To: "Carrillo, Erik G" , "thomas@monjalon.net" CC: "dev@dpdk.org" Thread-Topic: [dpdk-dev] [PATCH v2] doc: add new targets to "make help" output Thread-Index: AQHS3uQMlXLHhkK6gUOn3XM2SnnM2qI3ZQMg Date: Mon, 26 Jun 2017 15:38:29 +0000 Message-ID: References: <1496699017-98327-1-git-send-email-erik.g.carrillo@intel.com> <1496767364-19421-1-git-send-email-erik.g.carrillo@intel.com> In-Reply-To: <1496767364-19421-1-git-send-email-erik.g.carrillo@intel.com> Accept-Language: en-GB, en-US Content-Language: en-US X-MS-Has-Attach: X-MS-TNEF-Correlator: x-ctpclassification: CTP_IC x-titus-metadata-40: eyJDYXRlZ29yeUxhYmVscyI6IiIsIk1ldGFkYXRhIjp7Im5zIjoiaHR0cDpcL1wvd3d3LnRpdHVzLmNvbVwvbnNcL0ludGVsMyIsImlkIjoiNzY1MTE5MjUtYzNlNC00ZGY5LWJkYmUtMzYzMmNmNWExMDU4IiwicHJvcHMiOlt7Im4iOiJDVFBDbGFzc2lmaWNhdGlvbiIsInZhbHMiOlt7InZhbHVlIjoiQ1RQX0lDIn1dfV19LCJTdWJqZWN0TGFiZWxzIjpbXSwiVE1DVmVyc2lvbiI6IjE2LjUuOS4zIiwiVHJ1c3RlZExhYmVsSGFzaCI6ImxjSWdXOERzSGg4d000Nkt6VDJKdGY3SXJFMUx3dExRdXlGcDhQU2xhdGs9In0= dlp-product: dlpe-windows dlp-version: 10.0.102.7 dlp-reaction: no-action x-originating-ip: [163.33.239.180] Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: quoted-printable MIME-Version: 1.0 Subject: Re: [dpdk-dev] [PATCH v2] doc: add new targets to "make help" output 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: Mon, 26 Jun 2017 15:38:36 -0000 > -----Original Message----- > From: dev [mailto:dev-bounces@dpdk.org] On Behalf Of Gabriel Carrillo > Sent: Tuesday, June 6, 2017 5:43 PM > To: thomas@monjalon.net > Cc: dev@dpdk.org > Subject: [dpdk-dev] [PATCH v2] doc: add new targets to "make help" output >=20 > Commit aafaea3d3b70 ("devtools: add tags and cscope index generation") > introduced new make targets. This change updates the help target output t= o > reflect the additions. >=20 > Signed-off-by: Gabriel Carrillo > --- > doc/build-sdk-quick.txt | 21 +++++++++++---------- > 1 file changed, 11 insertions(+), 10 deletions(-) >=20 > diff --git a/doc/build-sdk-quick.txt b/doc/build-sdk-quick.txt index > 8d41052..8ed9d80 100644 > --- a/doc/build-sdk-quick.txt > +++ b/doc/build-sdk-quick.txt > @@ -1,16 +1,17 @@ > Basic build > make config T=3Dx86_64-native-linuxapp-gcc && make Build commands > - config get configuration from target template (T=3D) > - all same as build (default rule) > - build build in a configured directory > - clean remove files but keep configuration > - install T=3D configure, build and install a target in DESTDIR > - install install optionally staged in DESTDIR > - examples build examples for given targets (T=3D) > - examples_clean clean examples for given targets (T=3D) > - test compile tests and run basic unit tests > - test-* run specific subset of unit tests > + config get configuration from target template (T=3D) > + all same as build (default rule) > + build build in a configured directory > + clean remove files but keep configuration > + install T=3D configure, build and install a target in DESTDIR > + install install optionally staged in DESTDIR > + examples build examples for given targets (T=3D) > + examples_clean clean examples for given targets (T=3D) > + test compile tests and run basic unit tests > + test-* run specific subset of unit tests > + tags|gtags|cscope [T=3D] generate tags or cscope index > Build variables > EXTRA_CPPFLAGS preprocessor options > EXTRA_CFLAGS compiler options > -- Hi, Thanks for this. Unfortunately there is a mix of tabs and spaces used for the alignment so the output cat look funny depending on tab settings. I know that Thomas commented that the previous version was too verbose but it looked better to me. Maybe we could compromise on: tags|gtags T=3D generate tags/gtags for given targets (T=3D) cscope T=3D generate cscope database for given targets (T=3D) John