aboutsummaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorBernhard Reutner-Fischer <rep.dot.nop@gmail.com>2005-10-06 12:48:03 +0000
committerBernhard Reutner-Fischer <rep.dot.nop@gmail.com>2005-10-06 12:48:03 +0000
commite34e8782a979b372c521d460511d82d87f5a3646 (patch)
tree149d7c0dc3bc772a93d8ae96bf39a0e357452a62 /Makefile
parentcf95e0b2d5f5dd0b0682bd4cc5959cf32427134f (diff)
downloadbusybox-w32-e34e8782a979b372c521d460511d82d87f5a3646.tar.gz
busybox-w32-e34e8782a979b372c521d460511d82d87f5a3646.tar.bz2
busybox-w32-e34e8782a979b372c521d460511d82d87f5a3646.zip
- 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--Makefile12
1 files changed, 11 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index 4f052ff1f..e38e3e253 100644
--- a/Makefile
+++ b/Makefile
@@ -216,9 +216,19 @@ uninstall: busybox.links
216install-hardlinks: $(top_srcdir)/applets/install.sh busybox busybox.links 216install-hardlinks: $(top_srcdir)/applets/install.sh busybox busybox.links
217 $(SHELL) $< $(PREFIX) --hardlinks 217 $(SHELL) $< $(PREFIX) --hardlinks
218 218
219# see if we are in verbose mode
220KBUILD_VERBOSE :=
221ifdef V
222 ifeq ("$(origin V)", "command line")
223 KBUILD_VERBOSE := $(V)
224 endif
225endif
226ifneq ($(strip $(KBUILD_VERBOSE)),)
227 CHECK_VERBOSE := -v
228endif
219check test: busybox 229check test: busybox
220 bindir=$(top_builddir) srcdir=$(top_srcdir)/testsuite \ 230 bindir=$(top_builddir) srcdir=$(top_srcdir)/testsuite \
221 $(top_srcdir)/testsuite/runtest 231 $(top_srcdir)/testsuite/runtest $(CHECK_VERBOSE)
222 232
223sizes: 233sizes:
224 -rm -f busybox 234 -rm -f busybox