update se212-f19 page and files
[~bandali/bndl.org] / Makefile
1 RSYNC_PARAMS = --exclude-from='.rsync-exclude' -avzLP
2
3 LATEST=2
4 SRC := $(wildcard *.m4 | grep -v feed.m4)
5 OUTPUTS := $(patsubst %.m4,out/%.html,$(SRC))
6 STATIC := $(patsubst static/%,out/%,$(wildcard static/*))
7
8 all: $(OUTPUTS) out/atom.xml out/style.css $(STATIC)
9
10 out/%.html: %.m4 header.html footer.html ; m4 -D__latest=$(LATEST) $< > $@
11 out/atom.xml: feed.m4 ; m4 -D__latest=$(LATEST) $< > $@
12 $(STATIC): ; ln -s $(PWD)/static/$(notdir $@) $@
13
14 deploy:
15 rsync $(RSYNC_PARAMS) out/ abandali@bandali.eu.org:www/
16
17 .PHONY: deploy