X-Git-Url: https://git.shemshak.org/~bandali/bndl.org/blobdiff_plain/2075ef5a645bf11e9247230920452c951dc53b43..c867ac90ce4d41f3934f99db27f6bf9164c14f10:/Makefile diff --git a/Makefile b/Makefile deleted file mode 100644 index 3a96bd5..0000000 --- a/Makefile +++ /dev/null @@ -1,23 +0,0 @@ -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/bndl.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) - -.PHONY: clean deploy