From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S937773AbWLFXOb (ORCPT ); Wed, 6 Dec 2006 18:14:31 -0500 Received: (majordomo@vger.kernel.org) by vger.kernel.org id S937756AbWLFXOb (ORCPT ); Wed, 6 Dec 2006 18:14:31 -0500 Received: from nf-out-0910.google.com ([64.233.182.186]:47336 "EHLO nf-out-0910.google.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S937773AbWLFXOa (ORCPT ); Wed, 6 Dec 2006 18:14:30 -0500 DomainKey-Signature: a=rsa-sha1; q=dns; c=nofws; s=beta; d=gmail.com; h=received:from:to:subject:date:user-agent:cc:mime-version:content-disposition:message-id:content-type:content-transfer-encoding; b=hwb/UmNld1W3ofAW6/zntr0OMcECva0EtGwgK5ERIaEXlslQOpKu3BVyZRYREUHwTA/hI1DnCZfavgWk+yP+cV828zjg1Jf0HIz88XUVu7NfdquPKF0kzDBIxE8gBlxt+eoFdlc3EyQdzmaKAc4h6CSaDNoEoV+WI7sTuwii8eQ= From: Jesper Juhl To: linux-kernel@vger.kernel.org Subject: [PATCH][resend] Clean up 'make help' output for documentation targets. Date: Thu, 7 Dec 2006 00:16:26 +0100 User-Agent: KMail/1.9.4 Cc: Linus Torvalds , twaugh@redhat.com, Andrew Morton , Randy Dunlap , Jesper Juhl MIME-Version: 1.0 Content-Disposition: inline Message-Id: <200612070016.26556.jesper.juhl@gmail.com> Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit Sender: linux-kernel-owner@vger.kernel.org X-Mailing-List: linux-kernel@vger.kernel.org Here's a patch that cleans up the "make help" output a bit for the documentation targets. Currently the documentation targets are listed completely different than all the other targets : Documentation targets: Linux kernel internal documentation in different formats: xmldocs (XML DocBook), psdocs (Postscript), pdfdocs (PDF) htmldocs (HTML), mandocs (man pages, use installmandocs to install) with this patch they are more in line with the rest of the output : Documentation targets: Linux kernel internal documentation in different formats: htmldocs - HTML installmandocs - install man pages generated by mandocs mandocs - man pages pdfdocs - PDF psdocs - Postscript xmldocs - XML DocBook Signed-off-by: Jesper Juhl Acked-by: Randy Dunlap --- Documentation/DocBook/Makefile | 10 +++++++--- 1 files changed, 7 insertions(+), 3 deletions(-) diff --git a/Documentation/DocBook/Makefile b/Documentation/DocBook/Makefile index db9499a..36526a1 100644 --- a/Documentation/DocBook/Makefile +++ b/Documentation/DocBook/Makefile @@ -190,9 +190,13 @@ # Rule to convert a .c file to inline XM ### # Help targets as used by the top-level makefile dochelp: - @echo ' Linux kernel internal documentation in different formats:' - @echo ' xmldocs (XML DocBook), psdocs (Postscript), pdfdocs (PDF)' - @echo ' htmldocs (HTML), mandocs (man pages, use installmandocs to install)' + @echo ' Linux kernel internal documentation in different formats:' + @echo ' htmldocs - HTML' + @echo ' installmandocs - install man pages generated by mandocs' + @echo ' mandocs - man pages' + @echo ' pdfdocs - PDF' + @echo ' psdocs - Postscript' + @echo ' xmldocs - XML DocBook' ### # Temporary files left by various tools