X-Git-Url: https://git.shemshak.org/~bandali/bndl.org/blobdiff_plain/38037201dbf3f00be325989475299157654ba9da..4927af92d3b136436aa41a26369794443aa69b97:/Makefile diff --git a/Makefile b/Makefile index 35f5ebb..96674b5 100644 --- a/Makefile +++ b/Makefile @@ -1,21 +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) + rsync $(RSYNC_PARAMS) $(SOURCE_DIR) $(SSH_USER):$(SSH_DEST) -clean: - [ ! -d $(OUT_DIR) ] || rm -rf $(OUT_DIR) +.PHONY: deploy