blob: b34c9eefa666af712b043c84cd47e41143dae7a4 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
|
.PHONY: build publish all
all: build
pub:
mkdir pub
pub/index.html: README.md | pub
pandoc -s README.md -o pub/index.html
build: pub/index.html
./gen_canned.sh
publish:
rsync -a --delete-after canned/ ede.dn5.dk:canned/
rsync -a --delete-after pub/ ede.dn5.dk:pub/
|