diff options
author | jao <jao@gnu.org> | 2017-05-03 00:27:42 +0200 |
---|---|---|
committer | jao <jao@gnu.org> | 2017-05-03 00:27:42 +0200 |
commit | 987ce1d3cc511234b0ae8faa52f18a6245a8341b (patch) | |
tree | 675b817ff240f838f56a973b0957b767de755bc2 /web/Makefile | |
parent | 050dd74299e131047b008b0ec4757316d5fada77 (diff) | |
download | xmobar-987ce1d3cc511234b0ae8faa52f18a6245a8341b.tar.gz xmobar-987ce1d3cc511234b0ae8faa52f18a6245a8341b.tar.bz2 |
Avoiding travis badget in the web page
Diffstat (limited to 'web/Makefile')
-rw-r--r-- | web/Makefile | 11 |
1 files changed, 9 insertions, 2 deletions
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) |