summaryrefslogtreecommitdiffstatshomepage
path: root/Makefile
diff options
context:
space:
mode:
authorWolfgang Müller2019-08-04 21:52:08 +0200
committerWolfgang Müller2019-08-04 21:52:08 +0200
commita30d926e3b2d2c7d77785355637a4e1d518abb30 (patch)
tree22b7439e339377079f28331c2a2c338f92ad78e0 /Makefile
parent6ec5a14a463bac4ea78116566003a49a0fd067a7 (diff)
downloadsite-a30d926e3b2d2c7d77785355637a4e1d518abb30.tar.gz
Makefile: Add site as a dependency of deploy
This will make it such that the site is guaranteed to be built before deployment.
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile2
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile b/Makefile
index b141a8f..d16d842 100644
--- a/Makefile
+++ b/Makefile
@@ -24,7 +24,7 @@ atom.xml: templates/atom.xml $(POSTS_HTML)
clean:
rm -f posts/*.html index.html atom.xml style.css man.css
-deploy:
+deploy: site
@rsync -avhR $(POSTS_HTML) posts/img fonts index.html style.css man.css logo.{svg,webp} atom.xml coleridge:www/oriole.systems/
.PHONY: clean deploy site