diff options
author | Benjamin Franzke <benjaminfranzke@googlemail.com> | 2013-02-04 07:52:22 +0100 |
---|---|---|
committer | Benjamin Franzke <benjaminfranzke@googlemail.com> | 2013-02-04 07:52:56 +0100 |
commit | d836dc0362089a26fdbc7c8835beb0bb07fe6ac5 (patch) | |
tree | c17b30b733422a4af7dc13616e51733da7ab6177 /doc/Makefile | |
parent | c67b38a48e3d3c85867eeb7fe18bef7c0092b0db (diff) | |
download | advtime-d836dc0362089a26fdbc7c8835beb0bb07fe6ac5.tar.gz advtime-d836dc0362089a26fdbc7c8835beb0bb07fe6ac5.tar.bz2 advtime-d836dc0362089a26fdbc7c8835beb0bb07fe6ac5.zip |
doc: File image path in pres and actually convert them from dia
Diffstat (limited to 'doc/Makefile')
-rw-r--r-- | doc/Makefile | 7 |
1 files changed, 5 insertions, 2 deletions
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 |