kbuild: Update help text

From: Sam Ravnborg
Date: Mon Aug 30 2004 - 14:47:14 EST


# This is a BitKeeper generated diff -Nru style patch.
#
# ChangeSet
# 2004/08/30 21:23:24+02:00 sam@xxxxxxxxxxxxxxxxx
# 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 <sam@xxxxxxxxxxxx>
#
# Makefile
# 2004/08/30 21:23:05+02:00 sam@xxxxxxxxxxxxxxxxx +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@xxxxxxxxxxxxxxx
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/