mirror of
https://salsa.debian.org/raspi-team/image-specs
synced 2026-05-30 06:38:09 +02:00
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:
4
Makefile
4
Makefile
@@ -30,7 +30,9 @@ define dynamic_yaml_target =
|
||||
raspi_$(1)_$(2).yaml:
|
||||
./generate-recipe.py $(1) $(2)
|
||||
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
|
||||
echo $@
|
||||
|
||||
Reference in New Issue
Block a user