aboutsummaryrefslogtreecommitdiffstats
path: root/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile23
1 files changed, 22 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index fc3411e6f071..da76f51990d3 100644
--- a/Makefile
+++ b/Makefile
@@ -1174,8 +1174,10 @@ rpm: include/config/kernel.release FORCE
1174# Brief documentation of the typical targets used 1174# Brief documentation of the typical targets used
1175# --------------------------------------------------------------------------- 1175# ---------------------------------------------------------------------------
1176 1176
1177boards := $(wildcard $(srctree)/arch/$(ARCH)/configs/*_defconfig) 1177boards := $(wildcard $(srctree)/arch/$(SRCARCH)/configs/*_defconfig)
1178boards := $(notdir $(boards)) 1178boards := $(notdir $(boards))
1179board-dirs := $(dir $(wildcard $(srctree)/arch/$(SRCARCH)/configs/*/*_defconfig))
1180board-dirs := $(sort $(notdir $(board-dirs:/=)))
1179 1181
1180help: 1182help:
1181 @echo 'Cleaning targets:' 1183 @echo 'Cleaning targets:'
@@ -1229,6 +1231,11 @@ help:
1229 $(foreach b, $(boards), \ 1231 $(foreach b, $(boards), \
1230 printf " %-24s - Build for %s\\n" $(b) $(subst _defconfig,,$(b));) \ 1232 printf " %-24s - Build for %s\\n" $(b) $(subst _defconfig,,$(b));) \
1231 echo '') 1233 echo '')
1234 @$(if $(board-dirs), \
1235 $(foreach b, $(board-dirs), \
1236 printf " %-16s - Show %s-specific targets\\n" help-$(b) $(b);) \
1237 printf " %-16s - Show all of the above\\n" help-boards; \
1238 echo '')
1232 1239
1233 @echo ' make V=0|1 [targets] 0 => quiet build (default), 1 => verbose build' 1240 @echo ' make V=0|1 [targets] 0 => quiet build (default), 1 => verbose build'
1234 @echo ' make V=2 [targets] 2 => give reason for rebuild of target' 1241 @echo ' make V=2 [targets] 2 => give reason for rebuild of target'
@@ -1240,6 +1247,20 @@ help:
1240 @echo 'For further info see the ./README file' 1247 @echo 'For further info see the ./README file'
1241 1248
1242 1249
1250help-board-dirs := $(addprefix help-,$(board-dirs))
1251
1252help-boards: $(help-board-dirs)
1253
1254boards-per-dir = $(notdir $(wildcard $(srctree)/arch/$(SRCARCH)/configs/$*/*_defconfig))
1255
1256$(help-board-dirs): help-%:
1257 @echo 'Architecture specific targets ($(SRCARCH) $*):'
1258 @$(if $(boards-per-dir), \
1259 $(foreach b, $(boards-per-dir), \
1260 printf " %-24s - Build for %s\\n" $*/$(b) $(subst _defconfig,,$(b));) \
1261 echo '')
1262
1263
1243# Documentation targets 1264# Documentation targets
1244# --------------------------------------------------------------------------- 1265# ---------------------------------------------------------------------------
1245%docs: scripts_basic FORCE 1266%docs: scripts_basic FORCE