diff options
author | Benjamin Franzke <benjaminfranzke@googlemail.com> | 2012-11-12 12:18:00 +0100 |
---|---|---|
committer | Benjamin Franzke <benjaminfranzke@googlemail.com> | 2012-11-12 12:18:00 +0100 |
commit | fb76c5fc18078424e1392110b134c4c532aace92 (patch) | |
tree | 9ad047267eae58d944f9c3ea26e057daa4dc8165 /doc | |
parent | 2f9261ca9f38b80b615424670de9d05d1ee6722e (diff) | |
download | wbs-fb76c5fc18078424e1392110b134c4c532aace92.tar.gz wbs-fb76c5fc18078424e1392110b134c4c532aace92.tar.bz2 wbs-fb76c5fc18078424e1392110b134c4c532aace92.zip |
doc: Add GNU Makefile
Diffstat (limited to 'doc')
-rw-r--r-- | doc/Makefile | 11 |
1 files changed, 11 insertions, 0 deletions
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 |