From 405ccd1709385a12b041c33cc99a637fc3ea477a Mon Sep 17 00:00:00 2001 From: Joe Carstairs Date: Tue, 23 Jun 2026 09:00:43 +0100 Subject: [PATCH] adds composer install to http/Makefile --- http/Makefile | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/http/Makefile b/http/Makefile index 9097b05..bf5abd3 100644 --- a/http/Makefile +++ b/http/Makefile @@ -72,7 +72,7 @@ endef # RULES # ######### -all: bin/pp prune $(blogs) public out +all: bin/pp prune $(blogs) public out vendor bin/pp: cd pp && $(MAKE) && cp pp ../bin/pp @@ -114,9 +114,13 @@ prune_out: $(foreach blog,$(blogs),$(eval $(prune_blog_rule))) +vendor: composer.json composer.lock + composer install + .PHONY: clean clean: rm -rf \ + vendor \ out \ $(foreach blog,$(blogs), \ $(foreach ext,upphtml upphtml.args,\