summaryrefslogtreecommitdiffstats
path: root/doc/Makefile
blob: 994d93207c283b98ba46325d7b138bac77dd1e25 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
all: mapping.html mapping.pdf mapping.html


images = figure-01.png

mapping.html: $(images)

mapping.pdf: $(images)

%.html: %.rst
	rst2html $< $@

%.pdf: %.rst
	rst2pdf --footer='-###Page###-' $< -o $@

%.png: %.svg
	inkscape -z -e $@ -w 800 $<

figure-01.svg: figure-01.diag
	blockdiag -Tsvg $<