summaryrefslogtreecommitdiff
path: root/http
diff options
context:
space:
mode:
authorJoe Carstairs <me@joeac.net>2026-06-23 09:00:43 +0100
committerJoe Carstairs <me@joeac.net>2026-06-23 09:00:49 +0100
commit405ccd1709385a12b041c33cc99a637fc3ea477a (patch)
treed62887d7f13ed4aba5e921575de26eea65fdae5e /http
parentb735c95c846bc45e458ecbb94b5324b0d656cb8f (diff)
adds composer install to http/Makefile
Diffstat (limited to 'http')
-rw-r--r--http/Makefile6
1 files changed, 5 insertions, 1 deletions
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,\