From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mga09.intel.com (mga09.intel.com [134.134.136.24]) by dpdk.org (Postfix) with ESMTP id 2C0F6B5F7 for ; Mon, 16 Feb 2015 13:56:05 +0100 (CET) Received: from orsmga003.jf.intel.com ([10.7.209.27]) by orsmga102.jf.intel.com with ESMTP; 16 Feb 2015 04:52:05 -0800 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.09,587,1418112000"; d="scan'208";a="528157460" Received: from irsmsx107.ger.corp.intel.com ([163.33.3.99]) by orsmga003.jf.intel.com with ESMTP; 16 Feb 2015 04:47:34 -0800 Received: from irsmsx103.ger.corp.intel.com ([169.254.3.247]) by IRSMSX107.ger.corp.intel.com ([169.254.10.35]) with mapi id 14.03.0195.001; Mon, 16 Feb 2015 12:55:59 +0000 From: "Mcnamara, John" To: "Iremonger, Bernard" , "dev@dpdk.org" Thread-Topic: [dpdk-dev] [PATCH v4 1/5] mk: Add 'make doc-pdf' target to convert guide docs to pdf Thread-Index: AQHQSeLaVIZof5D790a783gg8B5oDZzzORUw Date: Mon, 16 Feb 2015 12:55:58 +0000 Message-ID: References: <1421255657-19521-1-git-send-email-john.mcnamara@intel.com> <1422972678-7982-1-git-send-email-john.mcnamara@intel.com> <1422972678-7982-2-git-send-email-john.mcnamara@intel.com> <8CEF83825BEC744B83065625E567D7C2049E7F31@IRSMSX108.ger.corp.intel.com> In-Reply-To: <8CEF83825BEC744B83065625E567D7C2049E7F31@IRSMSX108.ger.corp.intel.com> Accept-Language: en-US Content-Language: en-US X-MS-Has-Attach: X-MS-TNEF-Correlator: x-originating-ip: [163.33.239.182] Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: quoted-printable MIME-Version: 1.0 Subject: Re: [dpdk-dev] [PATCH v4 1/5] mk: Add 'make doc-pdf' target to convert guide docs to pdf X-BeenThere: dev@dpdk.org X-Mailman-Version: 2.1.15 Precedence: list List-Id: patches and discussions about DPDK List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 16 Feb 2015 12:56:06 -0000 > -----Original Message----- > From: Iremonger, Bernard > Sent: Monday, February 16, 2015 12:20 PM > To: Mcnamara, John; dev@dpdk.org > Subject: RE: [dpdk-dev] [PATCH v4 1/5] mk: Add 'make doc-pdf' target to > convert guide docs to pdf >=20 > > > > .PHONY: clean > > -clean: api-html-clean guides-html-clean > > +clean: api-html-clean guides-html-clean guides-latex-clean >=20 > Hi John, >=20 > Would it be clearer to have a guides-pdf-clean target instead of guides= - > latex-clean given that there is a doc-pdf target? Hi Bernard, Thomas made the same comment on an earlier patch so clearly it isn't obviou= s where the rule comes from: http://dpdk.org/ml/archives/dev/2015-January/012099.html The eason is that it is re-using the existing clean rule. My reply is here: http://dpdk.org/ml/archives/dev/2015-February/012241.html > Sphinx creates build/doc/html and build/doc/latex directories (not /b= uild/doc/pdf) so this just reuses the existing guides-%-clean rule. John