.PHONY: all images clean 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 $< .SUFFIXES: .pgm .png .pgm.png: convert $< $@ # inkscape --without-gui --export-png=$@.png -h 1024 $@ .SUFFIXES: .txt .html presentation.html: presentation.txt hs-wismar.css asciidoc --backend slidy --attribute stylesheet=$(PWD)/hs-wismar.css $< .txt.html: asciidoc --backend html $< images: image/film.svg $(IMAGES_PNG) $(IMAGES_SVG) clean: rm -f presentation.html documentation.html $(IMAGES_PNG) $(IMAGES_SVG) include asciidoc-boilerplate/thesis.mk