From 3ac07a63bde404eca1cc6b1e34dffba33c872a24 Mon Sep 17 00:00:00 2001 From: Mike Taylor Date: Tue, 25 Mar 2014 17:25:41 +0000 Subject: [PATCH] Add rules to install compiled markdown->html files. --- doc/Makefile | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/doc/Makefile b/doc/Makefile index 171151b..36cf736 100644 --- a/doc/Makefile +++ b/doc/Makefile @@ -4,6 +4,14 @@ DOCS = README.html README.odt README.pdf \ # Default rule when "make" is invoked without a target **default**: README.html whitepaper.html +INSTALLABLE = README.html whitepaper.html +INSTALLED = $(INSTALLABLE:%=../tools/htdocs/%) + +install: $(INSTALLED) + +uninstall: + rm -f $(INSTALLED) + all: $(DOCS) # For a description of pandoc's markdown format, see: -- 1.7.10.4