From 5c089947e7c02db864137085e902eaa0eadb3b58 Mon Sep 17 00:00:00 2001 From: Yorick Barbanneau Date: Fri, 14 Jul 2023 23:37:19 +0200 Subject: [PATCH] deploy target depends on build --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 6564be4..9e3a249 100644 --- a/Makefile +++ b/Makefile @@ -22,7 +22,7 @@ build: $(VENV_SOURCE)/dep $(VENV_CMD) && pelican -o $(P_OUTPUT) $(P_OPT) .PHONY: deploy -deploy: +deploy: build [ -d $(P_OUTPUT) ] && $(D_BIN) $(D_OPT) $(P_OUTPUT)/ $(D_DST) .PHONY: clean