Christophe Weblog Wiki Code Publications Music
webup Makefile target
[swankr.git] / Makefile
1 WEBFILES=README.html BUGS.html TODO.html
2
3 web: $(WEBFILES)
4
5 webup: web
6         scp $(WEBFILES) common-lisp.net:public_html/swankr/
7
8 README.html: README
9         emacs --batch --visit README  --eval '(org-export-as-html nil)'
10
11 %.html: %.org
12         emacs --batch --visit $^ --eval '(org-export-as-html nil)'
13
14 clean:
15         -rm $(WEBFILES)
16
17 .PHONY: web clean