diff options
author | Bernhard Reutner-Fischer <rep.dot.nop@gmail.com> | 2005-10-06 12:48:03 +0000 |
---|---|---|
committer | Bernhard Reutner-Fischer <rep.dot.nop@gmail.com> | 2005-10-06 12:48:03 +0000 |
commit | e34e8782a979b372c521d460511d82d87f5a3646 (patch) | |
tree | 149d7c0dc3bc772a93d8ae96bf39a0e357452a62 /Makefile | |
parent | cf95e0b2d5f5dd0b0682bd4cc5959cf32427134f (diff) | |
download | busybox-e34e8782a979b372c521d460511d82d87f5a3646.tar.gz |
- support make check V=1 to run the checks in verbose mode
- pass verbose from runtest to testing.sh
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 12 |
1 files changed, 11 insertions, 1 deletions
@@ -216,9 +216,19 @@ uninstall: busybox.links install-hardlinks: $(top_srcdir)/applets/install.sh busybox busybox.links $(SHELL) $< $(PREFIX) --hardlinks +# see if we are in verbose mode +KBUILD_VERBOSE := +ifdef V + ifeq ("$(origin V)", "command line") + KBUILD_VERBOSE := $(V) + endif +endif +ifneq ($(strip $(KBUILD_VERBOSE)),) + CHECK_VERBOSE := -v +endif check test: busybox bindir=$(top_builddir) srcdir=$(top_srcdir)/testsuite \ - $(top_srcdir)/testsuite/runtest + $(top_srcdir)/testsuite/runtest $(CHECK_VERBOSE) sizes: -rm -f busybox |