Christophe Weblog Wiki Code Publications Music
make it work with org-mode 8
[swankr.git] / Makefile
1 WEBFILES=README.html BUGS.html TODO.html .htaccess
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 --load org-export.el
10
11 %.html: %.org
12         emacs --batch --visit $^ --load org-export.el
13
14 clean:
15         -rm $(WEBFILES)
16
17 .PHONY: web clean