add rss feed
[~bandali/bndl.org] / Makefile
CommitLineData
505a9419 1RSYNC_PARAMS = --exclude-from='.rsync-exclude' -avzLP
38037201 2
505a9419 3LATEST=2
066f7565 4SRC := $(filter-out $(wildcard feed_*),$(wildcard *.m4))
505a9419
AB
5OUTPUTS := $(patsubst %.m4,out/%.html,$(SRC))
6STATIC := $(patsubst static/%,out/%,$(wildcard static/*))
38037201 7
066f7565 8all: $(OUTPUTS) out/notes.atom out/notes.rss out/style.css $(STATIC)
38037201 9
505a9419 10out/%.html: %.m4 header.html footer.html ; m4 -D__latest=$(LATEST) $< > $@
066f7565
AB
11out/notes.atom: feed_atom.m4 ; m4 -D__latest=$(LATEST) $< > $@
12out/notes.rss: feed_rss.m4 ; m4 -D__latest=$(LATEST) $< > $@
505a9419 13$(STATIC): ; ln -s $(PWD)/static/$(notdir $@) $@
38037201
AB
14
15deploy:
505a9419 16 rsync $(RSYNC_PARAMS) out/ abandali@bandali.eu.org:www/
e4b339cf 17
4927af92 18.PHONY: deploy