From 79988a5e5cd7bd219a5278d44db64d49e764a747 Mon Sep 17 00:00:00 2001 From: Joe Carstairs Date: Tue, 8 Sep 2026 08:17:43 +0100 Subject: http: mkdir out before doing anything else --- http/Makefile | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/http/Makefile b/http/Makefile index 4c50da8..c3034a1 100644 --- a/http/Makefile +++ b/http/Makefile @@ -99,14 +99,17 @@ endef # RULES # ######### -all: $(blogs) public out vendor +all: out $(blogs) public build vendor $(MAKE) out # if blog posts have been pruned, outfiles must be re-calculated +out: + mkdir out + share/man/man1/pp.1: cp pp/pp.1 share/man/man1/pp.1 -.PHONY: out -out: $(out_deps) +.PHONY: build +build: $(out_deps) bin/pp: $(MAKE) --directory=pp && chmod +x pp/pp && cp pp/pp bin/pp -- cgit v1.2.3