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