From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mail.kapsi.fi ([217.30.184.167]:49681 "EHLO mail.kapsi.fi" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1752361AbaIAG0a (ORCPT ); Mon, 1 Sep 2014 02:26:30 -0400 From: Mikko Rapeli Subject: [RFC PATCH v2 03/27] Makefile: propagate verbose options Date: Mon, 1 Sep 2014 09:25:54 +0300 Message-Id: <1409552778-2537-4-git-send-email-mikko.rapeli@iki.fi> In-Reply-To: <1409552778-2537-1-git-send-email-mikko.rapeli@iki.fi> References: <1408660449-4011-1-git-send-email-mikko.rapeli@iki.fi> <1409552778-2537-1-git-send-email-mikko.rapeli@iki.fi> Sender: linux-kbuild-owner@vger.kernel.org List-ID: To: linux-kernel@vger.kernel.org Cc: linux-kbuild@vger.kernel.org, mikko.rapeli@iki.fi Usefull when debugging the make scripts. Signed-off-by: Mikko Rapeli --- Makefile | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/Makefile b/Makefile index 25b85ab..df0eb14 100644 --- a/Makefile +++ b/Makefile @@ -855,13 +855,13 @@ quiet_cmd_link-vmlinux = LINK $@ # execute if the rest of the kernel build went well. vmlinux: scripts/link-vmlinux.sh $(vmlinux-deps) FORCE ifdef CONFIG_HEADERS_CHECK - $(Q)$(MAKE) -f $(srctree)/Makefile headers_check + $(Q)$(MAKE) V=$(KBUILD_VERBOSE) -f $(srctree)/Makefile headers_check endif ifdef CONFIG_SAMPLES - $(Q)$(MAKE) $(build)=samples + $(Q)$(MAKE) V=$(KBUILD_VERBOSE) $(build)=samples endif ifdef CONFIG_BUILD_DOCSRC - $(Q)$(MAKE) $(build)=Documentation + $(Q)$(MAKE) V=$(KBUILD_VERBOSE) $(build)=Documentation endif +$(call if_changed,link-vmlinux) @@ -1012,7 +1012,7 @@ headers_check_all: headers_install_all PHONY += headers_check headers_check: headers_install $(Q)$(MAKE) $(hdr-inst)=include/uapi HDRCHECK=1 - $(Q)$(MAKE) $(hdr-inst)=arch/$(hdr-arch)/include/uapi/asm $(hdr-dst) HDRCHECK=1 + $(Q)$(MAKE) V=$(KBUILD_VERBOSE) $(hdr-inst)=arch/$(hdr-arch)/include/uapi/asm $(hdr-dst) HDRCHECK=1 # --------------------------------------------------------------------------- # Modules -- 2.1.0