convert the site back into hand-written html
[~bandali/bndl.org] / Makefile
index 2dc6d78..96674b5 100644 (file)
--- a/Makefile
+++ b/Makefile
@@ -1,23 +1,13 @@
-BASE_DIR = $(CURDIR)
-OUT_DIR  = $(BASE_DIR)/site/
+SOURCE_DIR = $(CURDIR)/
 
 RSYNC_PARAMS = --exclude-from='.rsync-exclude' --delete -avzP
 
-SSH_USER = amin@shemshak.org
+SSH_USER = amin@bandali.eu.org
 SSH_DEST = /var/www/bandali.eu.org/
 
-all: build
-
-build:
-       haunt build
-
-watch: build
-       haunt serve --watch
+all: deploy
 
 deploy:
-       rsync $(RSYNC_PARAMS) $(OUT_DIR) $(SSH_USER):$(SSH_DEST)
-
-clean:
-       [ ! -d $(OUT_DIR) ] || rm -rf $(OUT_DIR)
+       rsync $(RSYNC_PARAMS) $(SOURCE_DIR) $(SSH_USER):$(SSH_DEST)
 
-.PHONY: clean deploy
+.PHONY: deploy