diff options
author | Wolfgang Müller | 2019-08-04 21:52:08 +0200 |
---|---|---|
committer | Wolfgang Müller | 2019-08-04 21:52:08 +0200 |
commit | a30d926e3b2d2c7d77785355637a4e1d518abb30 (patch) | |
tree | 22b7439e339377079f28331c2a2c338f92ad78e0 /Makefile | |
parent | 6ec5a14a463bac4ea78116566003a49a0fd067a7 (diff) | |
download | site-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-- | Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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 |