X-Git-Url: https://git.shemshak.org/~bandali/bndl.org/blobdiff_plain/38037201dbf3f00be325989475299157654ba9da..066f756557045139f7cafc2b5fb30034bc9e021b:/Makefile diff --git a/Makefile b/Makefile index 35f5ebb..b4e1909 100644 --- a/Makefile +++ b/Makefile @@ -1,21 +1,18 @@ -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 := $(filter-out $(wildcard feed_*),$(wildcard *.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/notes.atom out/notes.rss 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/notes.atom: feed_atom.m4 ; m4 -D__latest=$(LATEST) $< > $@ +out/notes.rss: feed_rss.m4 ; m4 -D__latest=$(LATEST) $< > $@ +$(STATIC): ; ln -s $(PWD)/static/$(notdir $@) $@ deploy: - rsync $(RSYNC_PARAMS) $(OUT_DIR) $(SSH_USER):$(SSH_DEST) + rsync $(RSYNC_PARAMS) out/ abandali@bandali.eu.org:www/ -clean: - [ ! -d $(OUT_DIR) ] || rm -rf $(OUT_DIR) +.PHONY: deploy