diff options
Diffstat (limited to 'doc/create_doc.sh')
-rwxr-xr-x | doc/create_doc.sh | 27 |
1 files changed, 27 insertions, 0 deletions
diff --git a/doc/create_doc.sh b/doc/create_doc.sh new file mode 100755 index 0000000..a360e2d --- /dev/null +++ b/doc/create_doc.sh @@ -0,0 +1,27 @@ +#!/bin/bash + +asciidoc -a toc2 dlt_user_manual.txt +asciidoc -a toc2 dlt_design_specification.txt +asciidoc -a toc2 dlt_cheatsheet.txt + +asciidoc -a toc2 dlt-daemon.1.txt +a2x --doctype manpage --format manpage dlt-daemon.1.txt +asciidoc -a toc2 dlt.conf.5.txt +a2x --doctype manpage --format manpage dlt.conf.5.txt +asciidoc -a toc2 dlt-convert.1.txt +a2x --doctype manpage --format manpage dlt-convert.1.txt +asciidoc -a toc2 dlt-receive.1.txt +a2x --doctype manpage --format manpage dlt-receive.1.txt +asciidoc -a toc2 dlt-system.1.txt +a2x --doctype manpage --format manpage dlt-system.1.txt +asciidoc -a toc2 dlt-system.conf.5.txt +a2x --doctype manpage --format manpage dlt-system.conf.5.txt + +asciidoc -a toc2 dlt_book.txt + +cd .. + +asciidoc -a toc2 README.txt +asciidoc -a toc2 INSTALL.txt +asciidoc -a toc2 ReleaseNotes.txt + |