From: "Yann E. MORIN" <yann.morin.1...@free.fr> For out-of-tree builds, this use-case fails to build: $ make clean all
This is because 'all' is filtered-out in the Makefile wrapper, since the wrapper itself has a 'all' target. The 'all' target is just the usual naming for the default target in a Makefile. In fact, the first target is the default one, so we can name it whatever we want. Rename the Makefile wrapper 'all' target to avoid name-clashing. Reported-by: Ryan Barnett <rjbar...@rockwellcollins.com> Signed-off-by: "Yann E. MORIN" <yann.morin.1...@free.fr> Cc: Ryan Barnett <rjbar...@rockwellcollins.com> --- Note: this still does not allow 'make menuconfig all', but that is not even working for in-tree builds either. --- scripts/mkmakefile | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/scripts/mkmakefile b/scripts/mkmakefile index 0cc0442..28583bc 100644 --- a/scripts/mkmakefile +++ b/scripts/mkmakefile @@ -42,18 +42,18 @@ MAKEARGS += O=\$(if \$(patsubst /%,,\$(makedir)),\$(CURDIR)/)\$(patsubst %/,%,\$ MAKEFLAGS += --no-print-directory -.PHONY: all \$(MAKECMDGOALS) +.PHONY: _all \$(MAKECMDGOALS) -all := \$(filter-out all Makefile,\$(MAKECMDGOALS)) +all := \$(filter-out Makefile,\$(MAKECMDGOALS)) -all: +_all: \$(Q)\$(MAKE) \$(MAKEARGS) \$(all) Makefile:; -\$(all): all +\$(all): _all @: -%/: all +%/: _all @: EOF -- 1.8.1.2 -- To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to majord...@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/