Makefile: renames blog_rule macro

This commit is contained in:
2026-06-17 09:10:37 +01:00
parent 65b3169d98
commit 6cdc0ad1e6
+3 -3
View File
@@ -67,16 +67,16 @@ remove_layout_from_out_files = out_files := $$(subst $(1).upp,.,$$(out_files))
$(foreach layout,$(layouts),$(eval $(call remove_layout_from_out_files,.$(layout)))) $(foreach layout,$(layouts),$(eval $(call remove_layout_from_out_files,.$(layout))))
$(eval $(call remove_layout_from_out_files,)) $(eval $(call remove_layout_from_out_files,))
define out_rule_for_ext_and_layout = define out_rule =
out/%.$(1): src/%$(2).upp$(1) out/%.$(1): src/%$(2).upp$(1)
./bin/mkws https://joeac.net "$$$$(realpath $$<)" ./bin/mkws https://joeac.net "$$$$(realpath $$<)"
endef endef
$(foreach ext,$(sort $(out_files_ext)),\ $(foreach ext,$(sort $(out_files_ext)),\
$(eval $(call out_rule_for_ext_and_layout,$(ext),))) $(eval $(call out_rule,$(ext),)))
$(foreach layout,$(layouts),\ $(foreach layout,$(layouts),\
$(foreach ext,$(sort $(out_files_ext)),\ $(foreach ext,$(sort $(out_files_ext)),\
$(eval $(call out_rule_for_ext_and_layout,$(ext),.$(layout))))) $(eval $(call out_rule,$(ext),.$(layout)))))
.PHONY: out .PHONY: out
out: $(out_files) out: $(out_files)