diff options
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/Makefile b/Makefile new file mode 100644 index 0000000..b34c9ee --- /dev/null +++ b/Makefile @@ -0,0 +1,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/ |