blob: f52efbbb481427bcce1c5b601fa8381a75cf78a1 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
# This file is released into the 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/*
|