aboutsummaryrefslogtreecommitdiffstats
path: root/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile27
1 files changed, 24 insertions, 3 deletions
diff --git a/Makefile b/Makefile
index fc3411e6f071..d3634cd6fe35 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:'
@@ -1221,14 +1223,19 @@ help:
1221 @echo 'Documentation targets:' 1223 @echo 'Documentation targets:'
1222 @$(MAKE) -f $(srctree)/Documentation/DocBook/Makefile dochelp 1224 @$(MAKE) -f $(srctree)/Documentation/DocBook/Makefile dochelp
1223 @echo '' 1225 @echo ''
1224 @echo 'Architecture specific targets ($(ARCH)):' 1226 @echo 'Architecture specific targets ($(SRCARCH)):'
1225 @$(if $(archhelp),$(archhelp),\ 1227 @$(if $(archhelp),$(archhelp),\
1226 echo ' No architecture specific help defined for $(ARCH)') 1228 echo ' No architecture specific help defined for $(SRCARCH)')
1227 @echo '' 1229 @echo ''
1228 @$(if $(boards), \ 1230 @$(if $(boards), \
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