add makefile to generate blog
[blog.git] / Makefile
1 ## Makefile to export org in blog file to html
2
3 emacs ?= emacs
4
5 OUT_DIR=/Users/peli3/Private/blog/_site
6
7 all:
8         $(emacs) -Q --batch \
9                 -l ./blog.el \
10                 index.org \
11                 --eval '(org-publish-current-project t)'
12 clean:
13         rm -rf _site/*