diff options
author | aldot <aldot@69ca8d6d-28ef-0310-b511-8ec308f3f277> | 2005-10-06 12:48:03 +0000 |
---|---|---|
committer | aldot <aldot@69ca8d6d-28ef-0310-b511-8ec308f3f277> | 2005-10-06 12:48:03 +0000 |
commit | 900d61a34c7b135f15146053d5c85d909bbfbfd5 (patch) | |
tree | 149d7c0dc3bc772a93d8ae96bf39a0e357452a62 /Makefile | |
parent | b3221c2ef9f670be51d5b0976a5cf4053b7b086c (diff) | |
download | busybox-w32-900d61a34c7b135f15146053d5c85d909bbfbfd5.tar.gz busybox-w32-900d61a34c7b135f15146053d5c85d909bbfbfd5.tar.bz2 busybox-w32-900d61a34c7b135f15146053d5c85d909bbfbfd5.zip |
- support make check V=1 to run the checks in verbose mode
- pass verbose from runtest to testing.sh
git-svn-id: svn://busybox.net/trunk/busybox@11787 69ca8d6d-28ef-0310-b511-8ec308f3f277
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 12 |
1 files changed, 11 insertions, 1 deletions
@@ -216,9 +216,19 @@ uninstall: busybox.links | |||
216 | install-hardlinks: $(top_srcdir)/applets/install.sh busybox busybox.links | 216 | install-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 | ||
220 | KBUILD_VERBOSE := | ||
221 | ifdef V | ||
222 | ifeq ("$(origin V)", "command line") | ||
223 | KBUILD_VERBOSE := $(V) | ||
224 | endif | ||
225 | endif | ||
226 | ifneq ($(strip $(KBUILD_VERBOSE)),) | ||
227 | CHECK_VERBOSE := -v | ||
228 | endif | ||
219 | check test: busybox | 229 | check 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 | ||
223 | sizes: | 233 | sizes: |
224 | -rm -f busybox | 234 | -rm -f busybox |