summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--Makefile16
1 files changed, 16 insertions, 0 deletions
diff --git a/Makefile b/Makefile
new file mode 100644
index 0000000..094f888
--- /dev/null
+++ b/Makefile
@@ -0,0 +1,16 @@
+server: theme
+ hugo version
+ hugo -D server
+
+deploy: theme
+ hugo
+ rsync -va --progress --delete --rsync-path="/usr/bin/openrsync" public/ blog@lambda.cx:/var/www/htdocs/blog.lambda.cx/
+ rm -r public
+
+theme:
+ git submodule update --init --recursive
+
+update:
+ git submodule update --remote --merge
+
+.PHONY: deploy servre theme update