From sam@ravnborg.org Mon Aug 30 12:43:35 2004 Return-Path: X-Original-To: jbarnes@spamtin.engr.sgi.com Delivered-To: jbarnes@spamtin.engr.sgi.com Received: from cthulhu.engr.sgi.com (cthulhu.engr.sgi.com [192.26.80.2]) by spamtin.engr.sgi.com (Postfix) with ESMTP id 35D862404012 for ; Mon, 30 Aug 2004 12:54:18 -0700 (PDT) Received: from ledzep.americas.sgi.com (ledzep.americas.sgi.com [192.48.203.134]) by cthulhu.engr.sgi.com (SGI-8.12.5/8.12.5) with ESMTP id i7UJsHY96926637 for ; Mon, 30 Aug 2004 12:54:17 -0700 (PDT) Received: from mx2.sgi.com (mx2.sgi.com [192.48.168.27]) by ledzep.americas.sgi.com (8.12.9/8.12.10/SGI_generic_relay-1.2) with ESMTP id i7UJsFZU20169387 for ; Mon, 30 Aug 2004 14:54:16 -0500 (CDT) Received: from vger.kernel.org (vger.kernel.org [12.107.209.244]) by mx2.sgi.com (8.12.11/8.12.11/freebsd-nospam-3.3) with ESMTP id i7UJuOAw094517 for ; Mon, 30 Aug 2004 12:56:25 -0700 (PDT) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S268892AbUH3TnS (ORCPT ); Mon, 30 Aug 2004 15:43:18 -0400 Received: (majordomo@vger.kernel.org) by vger.kernel.org id S268847AbUH3TnR (ORCPT ); Mon, 30 Aug 2004 15:43:17 -0400 Received: from pfepa.post.tele.dk ([195.41.46.235]:521 "EHLO pfepa.post.tele.dk") by vger.kernel.org with ESMTP id S268882AbUH3Tlu (ORCPT ); Mon, 30 Aug 2004 15:41:50 -0400 Received: from mars.ravnborg.org (0x50a0757d.hrnxx9.adsl-dhcp.tele.dk [80.160.117.125]) by pfepa.post.tele.dk (Postfix) with ESMTP id 926B447FE5E for ; Mon, 30 Aug 2004 21:41:49 +0200 (CEST) Received: by mars.ravnborg.org (Postfix, from userid 1000) id B322D6AC487; Mon, 30 Aug 2004 21:43:35 +0200 (CEST) Date: Mon, 30 Aug 2004 21:43:35 +0200 From: Sam Ravnborg To: linux-kernel@vger.kernel.org Subject: kbuild: Update help text Message-ID: <20040830194335.GD18518@mars.ravnborg.org> Mail-Followup-To: linux-kernel@vger.kernel.org References: <20040830193915.GA18518@mars.ravnborg.org> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20040830193915.GA18518@mars.ravnborg.org> User-Agent: Mutt/1.5.6i Sender: linux-kernel-owner@vger.kernel.org Precedence: bulk X-Mailing-List: linux-kernel@vger.kernel.org X-Spam-Checker-Version: SpamAssassin 2.64 (2004-01-11) on spamtin.engr.sgi.com X-Spam-Level: X-Spam-Status: No, hits=-4.9 required=5.0 tests=BAYES_00 autolearn=ham version=2.64 X-UID: 54457 X-Length: 4684 # This is a BitKeeper generated diff -Nru style patch. # # ChangeSet # 2004/08/30 21:23:24+02:00 sam@mars.ravnborg.org # kbuild: Add stactic analyser tools to make help # # Added the tools that seems to be maintained. # There is a bunch that has not been touched for a while - ignore them for now. # # Signed-off-by: Sam Ravnborg # # Makefile # 2004/08/30 21:23:05+02:00 sam@mars.ravnborg.org +9 -3 # Updated help and use $(srctree) as replacement for $(src) # diff -Nru a/Makefile b/Makefile --- a/Makefile 2004-08-30 21:26:19 +02:00 +++ b/Makefile 2004-08-30 21:26:20 +02:00 @@ -963,7 +963,13 @@ @echo ' rpm - Build a kernel as an RPM package' @echo ' tags/TAGS - Generate tags file for editors' @echo ' cscope - Generate cscope index' + @echo '' + @echo 'Static analysers' + @echo ' buildcheck - List dangling references to vmlinux discarded sections' + @echo ' and init sections from non-init sections' @echo ' checkstack - Generate a list of stack hogs' + @echo ' namespacecheck - Name space analysis on compiled kernel' + @echo '' @echo 'Kernel packaging:' @$(MAKE) -f $(package-dir)/Makefile help @echo '' @@ -1123,11 +1129,11 @@ | xargs $(PERL) -w scripts/checkversion.pl buildcheck: - $(PERL) $(src)/scripts/reference_discarded.pl - $(PERL) $(src)/scripts/reference_init.pl + $(PERL) $(srctree)/scripts/reference_discarded.pl + $(PERL) $(srctree)/scripts/reference_init.pl namespacecheck: - $(PERL) $(src)/scripts/namespace.pl + $(PERL) $(srctree)/scripts/namespace.pl endif #ifeq ($(config-targets),1) endif #ifeq ($(mixed-targets),1) - To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/