1 all: out/short.html out/short.pdf
2
3 out/short.html: short.txt
4 asciidoc -o out/short.html -f xhtml $<
5
6 out/short.pdf: short.txt
7 a2x -D out/ $<
8
9 distclean: -rm -rf out/*