diff options
Diffstat (limited to 'doc/Makefile')
-rw-r--r-- | doc/Makefile | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/doc/Makefile b/doc/Makefile index 13714e7..5c9e7f4 100644 --- a/doc/Makefile +++ b/doc/Makefile @@ -1,9 +1,13 @@ .PHONY: all clean -all: documentation.pdf +all: documentation.pdf presentation.html clean: rm -rf documentation.pdf +.SUFFIXES: .txt .html +.txt.html: + asciidoc --backend=slidy $< + include asciidoc-boilerplate/thesis.mk |