experiment with a fully <pre>-based look
[~bandali/bndl.org] / GNUmakefile
... / ...
CommitLineData
1SRC := $(filter-out $(wildcard meta_*), $(wildcard *.m4))
2OUTPUTS := $(patsubst %.m4,out/%.html, $(SRC))
3STATIC := $(patsubst static/%,out/%, $(filter-out static/GNUmakefile, $(wildcard static/* static/.*)))
4
5all: $(OUTPUTS) out/notes.atom out/notes.rss out/style.css out/GNUmakefile $(STATIC)
6
7out/%.html: %.m4 header.html footer.html
8 @mkdir -p $(@D)
9 m4 $< > $@
10out/notes.%: meta_feed_%.m4 $(SRC) header.html footer.html
11 m4 $< > $@
12 sed -i 's|href="/\([^/]\)|href="https://bndl.org/\1|' $@
13out/GNUmakefile: GNUmakefile ; ln -s $(PWD)/$< $@
14$(STATIC): ; ln -s $(PWD)/static/$(@F) $@
15
16# publications bibliography
17static/publications-partial.html: static/bandali.bib static/bandali-bib-*
18static/publications-partial.html: $(filter-out static/publications-partial.html, $(wildcard static/publications-*))
19static/publications-partial.html:
20 $(MAKE) -C $(@D) $(@F)
21out/publications.html: static/publications-partial.html
22out/bandali-bib.html: static/bandali-bib-partial.html
23
24clean:
25 rm -rf out/
26
27deploy:
28 rsync -avzLP out/ abandali@bndl.org:www/bndl.org/
29# ssh abandali@bndl.org mv www/bndl.org/.htaccess-www www/.htaccess
30
31watch:
32 while true; do \
33 echo $(SRC) header.html footer.html \
34 static/bandali.bib static/bandali-bib-* static/publications-* \
35 GNUmakefile static/GNUmakefile | \
36 tr " " "\n" | entr -d make; done
37
38.PHONY: deploy watch