From d836dc0362089a26fdbc7c8835beb0bb07fe6ac5 Mon Sep 17 00:00:00 2001 From: Benjamin Franzke Date: Mon, 4 Feb 2013 07:52:22 +0100 Subject: doc: File image path in pres and actually convert them from dia --- doc/Makefile | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) (limited to 'doc/Makefile') diff --git a/doc/Makefile b/doc/Makefile index 46040d1..356b902 100644 --- a/doc/Makefile +++ b/doc/Makefile @@ -4,6 +4,9 @@ all: images presentation.html documentation.html documentation.pdf IMAGES_PGM=$(wildcard ../src/img/*.pgm) IMAGES_PNG=$(IMAGES_PGM:.pgm=.png) +IMAGES_DIA=$(wildcard image/*.dia) +IMAGES_SVG=$(IMAGES_DIA:.dia=.svg) + .SUFFIXES: .dia .svg .dia.svg: dia --export=$@ --filter=svg $< @@ -20,9 +23,9 @@ presentation.html: presentation.txt .txt.html: asciidoc --backend html $< -images: image/film.svg $(IMAGES_PNG) +images: image/film.svg $(IMAGES_PNG) $(IMAGES_SVG) clean: - rm -f presentation.html documentation.html $(IMAGES_PNG) + rm -f presentation.html documentation.html $(IMAGES_PNG) $(IMAGES_SVG) include asciidoc-boilerplate/thesis.mk -- cgit