From d5e454dbb1895c10576834d652e5c93273a9c950 Mon Sep 17 00:00:00 2001 From: Jan Klemkow Date: Sat, 5 Jan 2013 20:17:48 +0100 Subject: Add some Text and correct some spell errors. --- Makefile | 10 ++++++++++ 1 file changed, 10 insertions(+) (limited to 'Makefile') diff --git a/Makefile b/Makefile index bdbe539..484479d 100644 --- a/Makefile +++ b/Makefile @@ -1,7 +1,17 @@ DBLATEX_OPTS="-P latex.encoding=utf8 -P latex.output.revhistory=0 -P doc.publisher.show=0" +.PHONY: all clean + +all: document.html + +document.html: document.asciidoc + asciidoc --backend=html $< + document.tex: document.asciidoc asciidoc --backend=latex $< document.pdf: document.asciidoc a2x -f pdf --dblatex-opts=$(DBLATEX_OPTS) $< + +clean: + rm -f document.html -- cgit