aboutsummaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authoraldot <aldot@69ca8d6d-28ef-0310-b511-8ec308f3f277>2006-05-04 11:38:33 +0000
committeraldot <aldot@69ca8d6d-28ef-0310-b511-8ec308f3f277>2006-05-04 11:38:33 +0000
commitf74adcd952df1a78bda8a11000ed7283338fa307 (patch)
tree673ba15680a0f72ef17c0a84940bc0430f205912 /Makefile
parent3deb55b80e36df0a009838de476e908a038c3176 (diff)
downloadbusybox-w32-f74adcd952df1a78bda8a11000ed7283338fa307.tar.gz
busybox-w32-f74adcd952df1a78bda8a11000ed7283338fa307.tar.bz2
busybox-w32-f74adcd952df1a78bda8a11000ed7283338fa307.zip
- add script to check for missing help entries of config options
Currently we have these errors: ./modutils/Config.in: No helptext for 'CONFIG_FEATURE_QUERY_MODULE_INTERFACE' ./networking/Config.in: No helptext for 'CONFIG_IPADDR' ./networking/Config.in: No helptext for 'CONFIG_IPLINK' ./networking/Config.in: No helptext for 'CONFIG_IPROUTE' ./networking/Config.in: No helptext for 'CONFIG_IPTUNNEL' ./coreutils/Config.in: No helptext for 'CONFIG_UNIX2DOS' git-svn-id: svn://busybox.net/trunk/busybox@14991 69ca8d6d-28ef-0310-b511-8ec308f3f277
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile5
1 files changed, 5 insertions, 0 deletions
diff --git a/Makefile b/Makefile
index 8c7cb41be..9e9e95755 100644
--- a/Makefile
+++ b/Makefile
@@ -133,6 +133,7 @@ help:
133 @echo 133 @echo
134 @echo 'Development:' 134 @echo 'Development:'
135 @echo ' check - run the test suite for all applets' 135 @echo ' check - run the test suite for all applets'
136 @echo ' checkhelp - check for missing help-entries in Config.in'
136 @echo ' randconfig - generate a random configuration' 137 @echo ' randconfig - generate a random configuration'
137 @echo ' release - create a distribution tarball' 138 @echo ' release - create a distribution tarball'
138 @echo ' sizes - show size of all enabled busybox symbols' 139 @echo ' sizes - show size of all enabled busybox symbols'
@@ -350,6 +351,10 @@ check test: busybox
350 bindir=$(top_builddir) srcdir=$(top_srcdir)/testsuite \ 351 bindir=$(top_builddir) srcdir=$(top_srcdir)/testsuite \
351 $(top_srcdir)/testsuite/runtest $(CHECK_VERBOSE) 352 $(top_srcdir)/testsuite/runtest $(CHECK_VERBOSE)
352 353
354.PHONY: checkhelp
355checkhelp:
356 $(Q)$(top_srcdir)/scripts/checkhelp.awk \
357 $(wildcard $(patsubst %,%/Config.in,$(SRC_DIRS) ./))
353.PHONY: sizes 358.PHONY: sizes
354sizes: busybox_unstripped 359sizes: busybox_unstripped
355 $(NM) --size-sort $(<) 360 $(NM) --size-sort $(<)