Improve loop readability.

Split dynamic target generation across several lines to make the nested
loops more obvious. Backslashes are needed for make to be happy about
what would otherwise be detected as unfinished foreach function calls.
This commit is contained in:
Cyril Brulebois 2021-08-28 05:52:51 +02:00
parent 0f8884c39c
commit 252a694848
1 changed files with 3 additions and 1 deletions

View File

@ -30,7 +30,9 @@ define dynamic_yaml_target =
raspi_$(1)_$(2).yaml: raspi_$(1)_$(2).yaml:
./generate-recipe.py $(1) $(2) ./generate-recipe.py $(1) $(2)
endef endef
$(foreach release,$(BUILD_RELEASES),$(foreach family,$(BUILD_FAMILIES),$(eval $(call dynamic_yaml_target,$(family),$(release))))) $(foreach release,$(BUILD_RELEASES), \
$(foreach family,$(BUILD_FAMILIES), \
$(eval $(call dynamic_yaml_target,$(family),$(release)))))
%.img.sha256: %.img %.img.sha256: %.img
echo $@ echo $@