From 53a18387b4d378fec3996d940b0084ad85dca688 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Asbj=C3=B8rn=20Sloth=20T=C3=B8nnesen?= Date: Sat, 19 Apr 2025 16:40:59 +0000 Subject: initial commit MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Asbjørn Sloth Tønnesen --- Makefile | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 Makefile (limited to 'Makefile') 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/ -- cgit v1.2.1