Christophe Weblog Wiki Code Publications Music
add tags to bugs
[swankr.git] / Makefile
1 WEBFILES=README.html BUGS.html TODO.html
2
3 web: $(WEBFILES)
4
5 README.html: README
6         emacs --batch --visit README  --eval '(org-export-as-html nil)'
7
8 %.html: %.org
9         emacs --batch --visit $^ --eval '(org-export-as-html nil)'
10
11 clean:
12         -rm $(WEBFILES)
13
14 .PHONY: web clean