X-Git-Url: https://git.shemshak.org/~bandali/bndl.org/blobdiff_plain/2075ef5a645bf11e9247230920452c951dc53b43..60e03015d0bc853221f1f37bb40b976280dc1dfb:/Makefile diff --git a/Makefile b/Makefile index 3a96bd5..96674b5 100644 --- 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_DEST = /var/www/bndl.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