blob: 2b5e91f406e2ca499cb50fe58d2ed4bf677eb903 (
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 $<
.SUFFIXES: .dia .svg
.dia.svg:
dia --export=$@ --filter=svg $<
include asciidoc-boilerplate/thesis.mk
|