blob: 6ee852ca88492b3db9433034956d7f1ba6e39f3d (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
|
# Makefile for myblog
.PHONY: all publish publish_no_init
all: publish
publish: publish.el
@echo "Publishing... with current Emacs configurations."
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
@rm -rvf site
@rm -rvf ~/.org-timestamps/*
|