summaryrefslogtreecommitdiff
path: root/Makefile.rules
diff options
context:
space:
mode:
authorVincent Palatin <vpalatin@chromium.org>2012-02-02 19:51:26 +0000
committerVincent Palatin <vpalatin@chromium.org>2012-02-02 22:02:18 +0000
commit71219213f5bd3bbaa237c3cc32a0abb121412dff (patch)
tree10f8d489c578bb7574456dd9b336c35200982291 /Makefile.rules
parent40528fe87f14fd51db328972166af306c4093571 (diff)
downloadchrome-ec-71219213f5bd3bbaa237c3cc32a0abb121412dff.tar.gz
Honor V=1 build flag when building tests recursively
Allow to display the verbose command lines even when building the test programs. Signed-off-by: Vincent Palatin <vpalatin@chromium.org> BUG=None TEST="make tests" with and without V=1 Change-Id: Ib1195c7e069d7823c2eb7b2311bd5f3c6cd6c835
Diffstat (limited to 'Makefile.rules')
-rw-r--r--Makefile.rules3
1 files changed, 2 insertions, 1 deletions
diff --git a/Makefile.rules b/Makefile.rules
index 31b0e5d70a..b92e9a6efc 100644
--- a/Makefile.rules
+++ b/Makefile.rules
@@ -49,7 +49,8 @@ qemu-test-targets=$(foreach t,$(test-list),qemu-$(t))
$(test-targets): test-%:
@set -e ; \
echo " BUILD $(out)/$*" ; \
- $(MAKE) -s BOARD=$(BOARD) PROJECT=$* out=$(out)/$*
+ $(MAKE) --no-print-directory BOARD=$(BOARD) PROJECT=$* \
+ V=$(V) out=$(out)/$*
$(qemu-test-targets): qemu-%: test-%
$(call quiet,qemu,TEST )