Add flag force publish
[blog.git] / Makefile
1 ## Makefile to export org in blog file to html
2
3 emacs ?= emacs
4 OUTDIR := ""
5 FORCE := "no"
6
7 all:
8         $(emacs) -Q --script blog.el $(OUTDIR) $(FORCE)
9
10 update:
11         git pull
12         $(emacs) -Q --script blog.el $(OUTDIR)
13
14 clean:
15         rm -rf _site/*