From 1df9e4858bdc8707ab4e58a7d520e24c85614ba8 Mon Sep 17 00:00:00 2001 From: Mike Taylor Date: Wed, 15 Oct 2014 13:23:40 +0100 Subject: [PATCH] Add rule to copy CSS into destination area. --- doc/Makefile | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/doc/Makefile b/doc/Makefile index c224fa0..f65d44a 100644 --- a/doc/Makefile +++ b/doc/Makefile @@ -5,12 +5,18 @@ DOCS = index.html index.pdf \ mkws-manual.html mkws-manual.pdf \ - mkws-developer.html mkws-developer.pdf + mkws-developer.html mkws-developer.pdf \ + mkws-doc.css INSTALLED = $(DOCS:%=../tools/htdocs/%) all: $(INSTALLED) +../tools/htdocs/%: % + rm -f $@ + cp $< $@ + chmod ugo-w $@ + # For a description of pandoc's markdown format, see: # http://johnmacfarlane.net/pandoc/demo/example9/pandocs-markdown.html -- 1.7.10.4