summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-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,\