diff options
-rw-r--r-- | .gitignore | 1 | ||||
-rw-r--r-- | readme.md | 2 | ||||
-rw-r--r-- | web/Makefile | 11 |
3 files changed, 10 insertions, 4 deletions
@@ -12,3 +12,4 @@ .cabal-sandbox cabal.sandbox.config .stack-work +/web/readme.md @@ -1,5 +1,3 @@ -% xmobar - a minimalistic status bar - [![Build Status](https://travis-ci.org/jaor/xmobar.svg?branch=master)](https://travis-ci.org/jaor/xmobar) # About diff --git a/web/Makefile b/web/Makefile index e0a14ab..cb08fda 100644 --- a/web/Makefile +++ b/web/Makefile @@ -1,9 +1,16 @@ -index = ../readme.md +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) + @sed -E "s/^\\[!\\[Build .+/$(title)/1" $(index.src) > $(index) index.html: releases.html $(index) $(css) pandoc -f markdown -t html -c $(css) --toc -N -s \ @@ -22,4 +29,4 @@ upload-pages: $(htmls) upload: upload-images upload-pages clean: - rm -f $(htmls) + rm -f $(htmls) $(index) |