X-Git-Url: http://47.100.26.94:8080/?a=blobdiff_plain;f=Makefile;h=f1f4d1260148a3ed15637b0d0da477844ae0c729;hb=323ccbeededf2954ddeb3e14ff68a275ccb231ff;hp=8d478c8edc02ff4a800b17d58d2b8285ea9e2309;hpb=97a6efb026d66df8024ebbbf9450f2f721d2d7e8;p=blog.git diff --git a/Makefile b/Makefile index 8d478c8..f1f4d12 100644 --- a/Makefile +++ b/Makefile @@ -1,13 +1,18 @@ ## Makefile to export org in blog file to html emacs ?= emacs - -OUT_DIR=/Users/peli3/Private/blog/_site +OUTDIR := "" +FORCE := "no" all: - $(emacs) -Q --batch \ - -l ./blog.el \ - index.org \ - --eval '(org-publish-current-project t)' + $(emacs) -Q --script blog.el $(OUTDIR) $(FORCE) + +# used for automation on server +update: + git pull && $(emacs) -Q --script blog.el "~/www/html" "true" + +test: + $(emaca) -Q --script blog.el "test" "true" + clean: rm -rf _site/*