aboutsummaryrefslogtreecommitdiffstats
path: root/scripts/mkmakefile
diff options
context:
space:
mode:
Diffstat (limited to 'scripts/mkmakefile')
-rw-r--r--scripts/mkmakefile8
1 files changed, 5 insertions, 3 deletions
diff --git a/scripts/mkmakefile b/scripts/mkmakefile
index 7f9d544f9b6c..ee39facee152 100644
--- a/scripts/mkmakefile
+++ b/scripts/mkmakefile
@@ -26,11 +26,13 @@ MAKEFLAGS += --no-print-directory
26 26
27.PHONY: all \$(MAKECMDGOALS) 27.PHONY: all \$(MAKECMDGOALS)
28 28
29all := \$(filter-out all Makefile,\$(MAKECMDGOALS))
30
29all: 31all:
30 \$(MAKE) -C \$(KERNELSRC) O=\$(KERNELOUTPUT) 32 \$(MAKE) -C \$(KERNELSRC) O=\$(KERNELOUTPUT) \$(all)
31 33
32Makefile:; 34Makefile:;
33 35
34\$(filter-out all Makefile,\$(MAKECMDGOALS)) %/: 36\$(all) %/: all
35 \$(MAKE) -C \$(KERNELSRC) O=\$(KERNELOUTPUT) \$@ 37 @:
36EOF 38EOF