summaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authorjao <jao@gnu.org>2020-11-29 20:19:43 +0000
committerjao <jao@gnu.org>2020-11-29 20:19:43 +0000
commite01090535c060a87e25875600f949274540398a7 (patch)
tree9feb09d2302c4807943afe60dad855add346ca4c
parent16a61eb4de244766cdcd83089a52d5c1770763ad (diff)
downloadxmobar-e01090535c060a87e25875600f949274540398a7.tar.gz
xmobar-e01090535c060a87e25875600f949274540398a7.tar.bz2
Tweaks to website makefile
-rw-r--r--doc/web/makefile9
1 files 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)