update url for some assets
[~bandali/bndl.org] / Makefile
1 LATEST=2
2 SRC := $(filter-out $(wildcard feed_*),$(wildcard *.m4))
3 OUTPUTS := $(patsubst %.m4,out/%.html,$(SRC))
4 STATIC := $(patsubst static/%,out/%,$(wildcard static/*))
5
6 all: $(OUTPUTS) out/notes.atom out/notes.rss out/style.css $(STATIC)
7
8 out/%.html: %.m4 header.html footer.html ; m4 -D__latest=$(LATEST) $< > $@
9 out/notes.atom: feed_atom.m4 ; m4 -D__latest=$(LATEST) $< > $@
10 out/notes.rss: feed_rss.m4 ; m4 -D__latest=$(LATEST) $< > $@
11 $(STATIC): ; ln -s $(PWD)/static/$(notdir $@) $@
12
13 deploy:
14 rsync -avzLP out/ abandali@bandali.eu.org:www/
15
16 .PHONY: deploy