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