Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1751633AbbBPXGI (ORCPT ); Mon, 16 Feb 2015 18:06:08 -0500 Received: from mail.kapsi.fi ([217.30.184.167]:32840 "EHLO mail.kapsi.fi" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1750931AbbBPXGG (ORCPT ); Mon, 16 Feb 2015 18:06:06 -0500 From: Mikko Rapeli To: linux-kernel@vger.kernel.org Cc: Mikko Rapeli , Michal Marek , linux-kbuild@vger.kernel.org Subject: [PATCH 01/45] Makefile: propagate verbose options Date: Tue, 17 Feb 2015 00:05:04 +0100 Message-Id: <1424127948-22484-2-git-send-email-mikko.rapeli@iki.fi> X-Mailer: git-send-email 2.1.4 In-Reply-To: <1424127948-22484-1-git-send-email-mikko.rapeli@iki.fi> References: <1424127948-22484-1-git-send-email-mikko.rapeli@iki.fi> X-SA-Exim-Connect-IP: 2a02:8070:d1af:b300:219:d2ff:fe03:c7a9 X-SA-Exim-Mail-From: mikko.rapeli@iki.fi X-SA-Exim-Scanned: No (on mail.kapsi.fi); SAEximRunCond expanded to false Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Content-Length: 1570 Lines: 45 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 4e93284..c1b515d 100644 --- a/Makefile +++ b/Makefile @@ -912,13 +912,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) @@ -1069,7 +1069,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 # --------------------------------------------------------------------------- # Kernel selftest -- 2.1.4 -- To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/