From fb76c5fc18078424e1392110b134c4c532aace92 Mon Sep 17 00:00:00 2001 From: Benjamin Franzke Date: Mon, 12 Nov 2012 12:18:00 +0100 Subject: doc: Add GNU Makefile --- doc/Makefile | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 doc/Makefile diff --git a/doc/Makefile b/doc/Makefile new file mode 100644 index 0000000..2fecb63 --- /dev/null +++ b/doc/Makefile @@ -0,0 +1,11 @@ +IMAGES=$(wildcard image/*.dia) + +.PHONY: all images up +all: images presentation.html + +image/%.svg: image/%.dia + @dia --export=$@ --filter=svg $< +images: ${IMAGES:.dia=.svg} + +presentation.html: presentation.asciidoc + asciidoc -b slidy presentation.asciidoc -- cgit