blob: b5d0c24b2b3cf08c8477c840518244f63e11e402 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
IMAGES!=ls image/*.dia
DELFILES!=find . \( -name '*.svg' -o -name '*.html' \)
.PHONY: all images
all: images presentation.html
.for f in ${IMAGES}
${f:S/.dia$/.svg/}:
@dia --export=$@ --filter=svg $f
.endfor
images: ${IMAGES:S/.dia$/.svg/}
presentation.html: presentation.asciidoc
asciidoc -b slidy presentation.asciidoc
clean:
rm -f ${DELFILES}
|