summaryrefslogtreecommitdiffhomepage
path: root/doc/web/Makefile
diff options
context:
space:
mode:
authorjao <jao@gnu.org>2019-04-23 23:09:25 +0100
committerjao <jao@gnu.org>2019-04-23 23:12:53 +0100
commit0ff8f6a7d6c775efa35698e067b4dd6c036ee2cd (patch)
tree5e1a3000a6d3bd92cabc06041bc94f57c0fa1893 /doc/web/Makefile
parent7122b1e33a0078f93f21e77e2c0c985391d1d412 (diff)
downloadxmobar-0ff8f6a7d6c775efa35698e067b4dd6c036ee2cd.tar.gz
xmobar-0ff8f6a7d6c775efa35698e067b4dd6c036ee2cd.tar.bz2
Web makefile
Diffstat (limited to 'doc/web/Makefile')
-rw-r--r--doc/web/Makefile32
1 files changed, 0 insertions, 32 deletions
diff --git a/doc/web/Makefile b/doc/web/Makefile
deleted file mode 100644
index 411f589..0000000
--- a/doc/web/Makefile
+++ /dev/null
@@ -1,32 +0,0 @@
-index.src = ../readme.md
-index = readme.md
-releases = ../news.md
-css = xmobar.css
-images = xmobar-sawfish.png xmobar-xmonad.png
-remote = community.haskell.org:/srv/projects/xmobar/
-htmls = index.html releases.html
-title = % xmobar - a minimalistic status bar
-
-default: index.html
-
-$(index): $(index.src)
- @tail -n+3 $(index.src) | sed "1s/^/$(title)\n/" > $(index)
-
-index.html: releases.html $(index) $(css)
- pandoc -f markdown -t html -c $(css) --toc -N -s \
- $(index) > index.html
-
-releases.html: $(releases) $(css)
- pandoc -f markdown -t html -c $(css) -s \
- $(releases) > releases.html
-
-upload-images:
- rsync -zav $(images) $(remote)
-
-upload-pages: $(htmls)
- scp $(htmls) $(css) $(remote)
-
-upload: upload-images upload-pages
-
-clean:
- rm -f $(htmls) $(index)