From 76901304c49fd297bb2ef565503ea7f399aae076 Mon Sep 17 00:00:00 2001 From: Joe Carstairs Date: Thu, 18 Jun 2026 09:18:03 +0100 Subject: [PATCH] Makefile clean doesn't clean non-post files under blog,microlog --- http/Makefile | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/http/Makefile b/http/Makefile index 42d0c90..10d2a86 100644 --- a/http/Makefile +++ b/http/Makefile @@ -105,4 +105,8 @@ $(foreach blog,$(blogs),$(eval $(prune_blog_rule))) .PHONY: clean clean: - rm -rf out $(addprefix src/,$(blogs)) + rm -rf \ + out \ + $(foreach blog,$(blogs), \ + $(foreach ext,upphtml upphtml.args,\ + src/$(blog)/*$(if $(BLOG_LAYOUT_$(blog)),.$(BLOG_LAYOUT_$(blog))).$(ext)))