avoid circular dependency
[~bandali/bndl.org] / Makefile
index 526ef66..38db53a 100644 (file)
--- a/Makefile
+++ b/Makefile
@@ -1,13 +1,36 @@
-SOURCE_DIR = $(CURDIR)/
+SRC := $(filter-out $(wildcard meta_*), $(wildcard *.m4 fsf-internship/*.m4))
+OUTPUTS := $(patsubst %.m4,out/%.html, $(SRC))
+STATIC := $(patsubst static/%,out/%, $(wildcard static/* static/.*))
 
-RSYNC_PARAMS = --exclude-from='.rsync-exclude' --delete -avzP
+all: $(OUTPUTS) out/notes.atom out/notes.rss out/style.css $(STATIC)
 
-SSH_USER = abandali@bandali.eu.org
-SSH_DEST = www/
+out/%.html: %.m4 header.html footer.html
+       @mkdir -p $(@D)
+       m4 $< > $@
+out/notes.atom: meta_feed_atom.m4 ; m4 $< > $@
+out/notes.rss: meta_feed_rss.m4 ; m4 $< > $@
+$(STATIC): ; ln -s $(PWD)/static/$(@F) $@
 
-all: deploy
+# publications bibliography
+static/publications-partial.html: static/bandali.bib static/bandali-bib-*
+static/publications-partial.html: $(filter-out static/publications-partial.html, $(wildcard static/publications-*))
+static/publications-partial.html:
+       $(MAKE) -C $(@D) $(@F)
+out/publications.html: static/publications-partial.html
+out/bandali-bib.html: static/bandali-bib-partial.html
+
+clean:
+       rm -rf out/
 
 deploy:
-       rsync $(RSYNC_PARAMS) $(SOURCE_DIR) $(SSH_USER):$(SSH_DEST)
+       rsync -avzLP out/ abandali@bndl.org:www/site/
+       ssh abandali@bndl.org mv www/site/.htaccess-www www/.htaccess
+
+watch:
+       while true; do \
+       echo $(SRC) header.html footer.html \
+       static/bandali.bib static/bandali-bib-* static/publications-* \
+       Makefile static/Makefile | \
+       tr " " "\n" | entr -d make; done
 
-.PHONY: deploy
+.PHONY: deploy watch