From e01090535c060a87e25875600f949274540398a7 Mon Sep 17 00:00:00 2001 From: jao Date: Sun, 29 Nov 2020 20:19:43 +0000 Subject: Tweaks to website makefile --- doc/web/makefile | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/doc/web/makefile b/doc/web/makefile index e9596d7..801b56c 100644 --- a/doc/web/makefile +++ b/doc/web/makefile @@ -13,17 +13,20 @@ default: index.html $(index): $(index.src) @tail -n+3 $(index.src) | sed "1s/^/$(title)\n/" > $(index) -index.html: releases.html $(index) $(css) +index.html: changelog.html $(index) $(css) pandoc -f markdown -t html -c $(css) -N -s \ $(index) > index.html -releases.html: $(releases) $(css) +changelog.html: $(releases) $(css) pandoc -f markdown -t html -c $(css) -s \ - $(releases) > releases.html + $(releases) > changelog.html upload-images: rsync -zav $(images) $(remote)/doc/screenshots +upload-changes: changelog.html + scp changelog.html $(remote) + upload-pages: $(htmls) scp $(htmls) $(css) $(remote) -- cgit v1.2.3