mirror of
https://git.rtems.org/rtems-tools/
synced 2025-05-14 06:39:59 +08:00
26 lines
837 B
Bash
Executable File
26 lines
837 B
Bash
Executable File
#!/bin/sh
|
|
|
|
VERS="8.1.0"
|
|
DATE="2006-10-22"
|
|
|
|
# Leave the desired layout uncommented.
|
|
#LAYOUT=layout1 # Tables based layout.
|
|
LAYOUT=layout2 # CSS based layout.
|
|
|
|
ASCIIDOC_HTML="python ../../asciidoc.py --backend=xhtml11 --conf-file=${LAYOUT}.conf --attribute icons --attribute iconsdir=./images/icons --attribute=badges --attribute=revision=$VERS --attribute=date=$DATE"
|
|
|
|
$ASCIIDOC_HTML -a index-only index.txt
|
|
$ASCIIDOC_HTML -a toc -a numbered userguide.txt
|
|
$ASCIIDOC_HTML -d manpage manpage.txt
|
|
$ASCIIDOC_HTML downloads.txt
|
|
$ASCIIDOC_HTML latex-backend.txt
|
|
$ASCIIDOC_HTML README.txt
|
|
$ASCIIDOC_HTML INSTALL.txt
|
|
$ASCIIDOC_HTML CHANGELOG.txt
|
|
$ASCIIDOC_HTML README-website.txt
|
|
$ASCIIDOC_HTML support.txt
|
|
$ASCIIDOC_HTML source-highlight-filter.txt
|
|
$ASCIIDOC_HTML music-filter.txt
|
|
$ASCIIDOC_HTML a2x.1.txt
|
|
$ASCIIDOC_HTML asciimath.txt
|