X-Git-Url: https://git.shemshak.org/~bandali/bndl.org/blobdiff_plain/a77e0df0de7eb24fa8999ac23c45ee4d0f445c1f..a9bc018ee07125709a2814a194a7bfb3433907fe:/Makefile diff --git a/Makefile b/Makefile index 2dc6d78..ff5e216 100644 --- a/Makefile +++ b/Makefile @@ -1,23 +1,17 @@ -BASE_DIR = $(CURDIR) -OUT_DIR = $(BASE_DIR)/site/ +RSYNC_PARAMS = --exclude-from='.rsync-exclude' -avzLP -RSYNC_PARAMS = --exclude-from='.rsync-exclude' --delete -avzP +LATEST=2 +SRC := $(wildcard *.m4 | grep -v feed.m4) +OUTPUTS := $(patsubst %.m4,out/%.html,$(SRC)) +STATIC := $(patsubst static/%,out/%,$(wildcard static/*)) -SSH_USER = amin@shemshak.org -SSH_DEST = /var/www/bandali.eu.org/ +all: $(OUTPUTS) out/atom.xml out/style.css $(STATIC) -all: build - -build: - haunt build - -watch: build - haunt serve --watch +out/%.html: %.m4 header.html footer.html ; m4 -D__latest=$(LATEST) $< > $@ +out/atom.xml: feed.m4 ; m4 -D__latest=$(LATEST) $< > $@ +$(STATIC): ; ln -s $(PWD)/static/$(notdir $@) $@ deploy: - rsync $(RSYNC_PARAMS) $(OUT_DIR) $(SSH_USER):$(SSH_DEST) - -clean: - [ ! -d $(OUT_DIR) ] || rm -rf $(OUT_DIR) + rsync $(RSYNC_PARAMS) out/ abandali@bandali.eu.org:www/ -.PHONY: clean deploy +.PHONY: deploy