diff options
author | Benjamin Franzke <benjaminfranzke@googlemail.com> | 2012-11-15 12:03:08 +0100 |
---|---|---|
committer | Benjamin Franzke <benjaminfranzke@googlemail.com> | 2012-11-15 12:03:08 +0100 |
commit | 387427d4bd65d02b79f736464c8747da4905aa0c (patch) | |
tree | a4a79f1c448de9b1eeacd12f437c92fb2f91ef16 /doc/Makefile | |
parent | 00340e6d2e49da2243e9e4f8aeedf3ddb97678a4 (diff) | |
download | advtime-387427d4bd65d02b79f736464c8747da4905aa0c.tar.gz advtime-387427d4bd65d02b79f736464c8747da4905aa0c.tar.bz2 advtime-387427d4bd65d02b79f736464c8747da4905aa0c.zip |
doc: Add src/image/*.png to image target
Diffstat (limited to 'doc/Makefile')
-rw-r--r-- | doc/Makefile | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/doc/Makefile b/doc/Makefile index 3688409..0a5d118 100644 --- a/doc/Makefile +++ b/doc/Makefile @@ -1,5 +1,8 @@ all: images presentation.html +IMAGES_PGM=$(wildcard ../src/img/*.pgm) +IMAGES_PNG=$(IMAGES_PGM:.pgm=.png) + .SUFFIXES: .dia .svg .SUFFIXES: .pgm .png @@ -13,7 +16,7 @@ all: images presentation.html presentation.html: presentation.asciidoc asciidoc --backend slidy presentation.asciidoc -images: image/film.svg +images: image/film.svg $(IMAGES_PNG) clean: rm -f presentation.html |