aboutsummaryrefslogtreecommitdiffstats
path: root/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile11
1 files changed, 8 insertions, 3 deletions
diff --git a/Makefile b/Makefile
index 0ad6e8d9b0b3..679094a9b2dd 100644
--- a/Makefile
+++ b/Makefile
@@ -118,12 +118,17 @@ $(if $(KBUILD_OUTPUT),, \
118# Check that OUTPUT directory is not the same as where we have kernel src 118# Check that OUTPUT directory is not the same as where we have kernel src
119$(if $(filter-out $(KBUILD_OUTPUT),$(shell /bin/pwd)),, \ 119$(if $(filter-out $(KBUILD_OUTPUT),$(shell /bin/pwd)),, \
120 $(error Output directory (O=...) specifies kernel src dir)) 120 $(error Output directory (O=...) specifies kernel src dir))
121PHONY += $(MAKECMDGOALS)
122 121
123$(filter-out _all,$(MAKECMDGOALS)) _all: 122PHONY += $(MAKECMDGOALS) sub-make
123
124$(filter-out _all sub-make,$(MAKECMDGOALS)) _all: sub-make
125 $(Q)@:
126
127sub-make: FORCE
124 $(if $(KBUILD_VERBOSE:1=),@)$(MAKE) -C $(KBUILD_OUTPUT) \ 128 $(if $(KBUILD_VERBOSE:1=),@)$(MAKE) -C $(KBUILD_OUTPUT) \
125 KBUILD_SRC=$(CURDIR) \ 129 KBUILD_SRC=$(CURDIR) \
126 KBUILD_EXTMOD="$(KBUILD_EXTMOD)" -f $(CURDIR)/Makefile $@ 130 KBUILD_EXTMOD="$(KBUILD_EXTMOD)" -f $(CURDIR)/Makefile \
131 $(filter-out _all sub-make,$(MAKECMDGOALS))
127 132
128# Leave processing to above invocation of make 133# Leave processing to above invocation of make
129skip-makefile := 1 134skip-makefile := 1