diff options
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 12 |
1 files changed, 2 insertions, 10 deletions
@@ -1,19 +1,11 @@ -# Makefile for myblog - -.PHONY: all publish publish_no_init - -all: publish +# Makefile for site publishing. This file is under public domain. publish: publish.el - @echo "Publishing... with current Emacs configurations." + @echo "Publishing..." emacs --batch --load publish.el --funcall org-publish-all ./post-process.sh python rss.py -publish_no_init: publish.el - @echo "Publishing... with --no-init." - emacs --batch --no-init --load publish.el --funcall org-publish-all - clean: @echo "Cleaning up.." @rm -rvf *.elc |