blob: b7654944b26e8fd318796dd4df4df99294e3d159 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
# Makefile for site publishing. This file is under public domain.
publish: publish.el
@echo "Publishing..."
emacs --batch --load publish.el --funcall org-publish-all
./post-process.sh
python rss.py
clean:
@echo "Cleaning up.."
@rm -rvf *.elc
@rm -rvf site
@rm -rvf ~/.org-timestamps/*
|