blob: 410e6294726f2f97f52e6212f2be54591bdfbd95 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
all: images presentation.html
.SUFFIXES: .dia .svg
.dia.svg:
dia --export=$@ --filter=svg $<
# inkscape --without-gui --export-png=$@.png -h 1024 $@
presentation.html: presentation.asciidoc
asciidoc --backend slidy presentation.asciidoc
images: image/film.svg
clean:
rm -f presentation.html
|