summaryrefslogtreecommitdiff
path: root/doc/Makefile
blob: 3f99c438f606787c712fa66faeb2fc5a3db55849 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
DIA_IMAGES!=ls image/*.dia
SVG_IMAGES=${DIA_IMAGES:S/dia$/svg/}

.PHONY: all clean

all: ${SVG_IMAGES} documentation.pdf presentation.html

clean:
	rm -rf documentation.pdf

.SUFFIXES: .txt .html
.txt.html:
	asciidoc --backend=slidy -o - $< | sed -f fix-css.sed > $@

.SUFFIXES: .dia .svg
.dia.svg:
	dia --export=$@ --filter=svg $<

include asciidoc-boilerplate/thesis.mk