diff options
author | Jan Klemkow <j.klemkow@wemelug.de> | 2013-01-05 20:17:48 +0100 |
---|---|---|
committer | Jan Klemkow <j.klemkow@wemelug.de> | 2013-01-05 20:17:48 +0100 |
commit | d5e454dbb1895c10576834d652e5c93273a9c950 (patch) | |
tree | 431232ebb6bcb3c13db9a02f0fbc77afb7479325 /Makefile | |
parent | 35d377a46ede98bb51eeac52d173507ff2cf817c (diff) | |
download | sksys-d5e454dbb1895c10576834d652e5c93273a9c950.tar.gz sksys-d5e454dbb1895c10576834d652e5c93273a9c950.tar.bz2 sksys-d5e454dbb1895c10576834d652e5c93273a9c950.zip |
Add some Text and correct some spell errors.
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 10 |
1 files changed, 10 insertions, 0 deletions
@@ -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 |