update se212-f19 page and files
[~bandali/bndl.org] / Makefile
index 3a96bd5..ff5e216 100644 (file)
--- 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/bndl.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