summaryrefslogtreecommitdiffstats
path: root/Makefile
blob: 56032a209ae8b8a61656f0f5dede595a43f56146 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
all: install-deps build upload

install-deps:
	emacs --batch --load packages.el

build:
	emacs --batch --load publish.el --funcall org-publish-all

upload:
	rsync --rsh="ssh -o StrictHostKeyChecking=no" -av public/ "notes@leika.ymhg.org:/var/www/notes"

.PHONY: all build install-deps upload