diff options
author | Waldemar Brodkorb <wbx@openadk.org> | 2014-03-16 22:14:34 +0100 |
---|---|---|
committer | Waldemar Brodkorb <wbx@openadk.org> | 2014-03-16 22:14:34 +0100 |
commit | 732db5d2473cb5bf2c7d3e28b67e47cecf6008a8 (patch) | |
tree | f6df5d74b1f9ed8dbaa4742779f4ab2bf942622d /docs/Makefile | |
parent | 1133719749afb61faf8974c87e41c14384b03444 (diff) | |
parent | aaa312e56871e89b97704e5ac8c686fe7966c122 (diff) |
Merge branch 'master' of git+ssh://openadk.org/git/openadk
Diffstat (limited to 'docs/Makefile')
-rw-r--r-- | docs/Makefile | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/docs/Makefile b/docs/Makefile new file mode 100644 index 000000000..1670e0041 --- /dev/null +++ b/docs/Makefile @@ -0,0 +1,24 @@ +TOPDIR=$(pwd) + +all: pdf text html + +pdf: + mkdir .pdf pdf + cp *.txt .pdf + cp images/*.png pdf + a2x -v --dblatex-opts "-P latex.output.revhistory=0" -f pdf -d book -L -D pdf .pdf/manual.txt + +text: + mkdir .text text + cp *.txt .text + cp images/*.png text + a2x -v -f text -d book -L -D text .text/manual.txt + +html: + mkdir .html html + cp *.txt .html + cp images/*.png html + a2x -v --xsltproc-opts "--stringparam toc.section.depth 2" -f xhtml -d book -L -D html .html/manual.txt + +clean: + rm -rf pdf .pdf text .text html .html |