diff options
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 5 |
1 files changed, 5 insertions, 0 deletions
@@ -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 | ||
355 | checkhelp: | ||
356 | $(Q)$(top_srcdir)/scripts/checkhelp.awk \ | ||
357 | $(wildcard $(patsubst %,%/Config.in,$(SRC_DIRS) ./)) | ||
353 | .PHONY: sizes | 358 | .PHONY: sizes |
354 | sizes: busybox_unstripped | 359 | sizes: busybox_unstripped |
355 | $(NM) --size-sort $(<) | 360 | $(NM) --size-sort $(<) |