tweak date format, add .gitignore and Makefile
[~bandali/bndl.org] / Makefile
diff --git a/Makefile b/Makefile
new file mode 100644 (file)
index 0000000..35f5ebb
--- /dev/null
+++ b/Makefile
@@ -0,0 +1,21 @@
+BASE_DIR = $(CURDIR)
+OUT_DIR  = $(BASE_DIR)/site
+
+RSYNC_PARAMS = --exclude-from='.rsync-exclude' --delete -avzP
+
+SSH_USER = amin@shemshak.org
+SSH_DEST = /var/www/bandali.eu.org/
+
+all: build
+
+build:
+       haunt build
+
+watch: build
+       haunt serve --watch
+
+deploy:
+       rsync $(RSYNC_PARAMS) $(OUT_DIR) $(SSH_USER):$(SSH_DEST)
+
+clean:
+       [ ! -d $(OUT_DIR) ] || rm -rf $(OUT_DIR)