blob: 5c9e7f4c3ab4f04cdbf95d33927051ab8d3b5d68 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
.PHONY: all clean
all: documentation.pdf presentation.html
clean:
rm -rf documentation.pdf
.SUFFIXES: .txt .html
.txt.html:
asciidoc --backend=slidy $<
include asciidoc-boilerplate/thesis.mk
|