123456789101112131415161718192021222324252627282930313233343536373839404142434445 |
- #!/bin/sh
- # file: docbook/manuals
- # ====================================================================
- #
- # --------------------------------------------------------------------
- # unset LANG
- export MANWIDTH=132
- TOOLS=/usr/local/bin/cmassoc
- INDEX=toolkit.html
- STYLE=toolkit.css
- # ====================================================================
- #
- # --------------------------------------------------------------------
- if [ ! -d ${TOOLS} ]; then
- echo "You do not have Motley Tools installed. Bye!"
- exit 1
- fi
- # ====================================================================
- #
- # --------------------------------------------------------------------
- cp ../pib/piboffset.* .
- for file in ../*/*.1; do echo ${file}; ${TOOLS}/mp -s plc-utils ${file}; man ${file} > $(basename ${file}); done
- for file in ../scripts/*.sh; do cp ${file} .; done
- ${TOOLS}/purge -vr ../t.c
- ${TOOLS}/import -r . '../*.h' '../*.c' '../*.hpp' '../*.cpp'
- # ====================================================================
- #
- # --------------------------------------------------------------------
- ${TOOLS}/catalog -s ${STYLE} -gdp ${INDEX} -c 4 *.1 > manual.txt
- ${TOOLS}/catalog -s ${STYLE} -gdp ${INDEX} -c 4 *.h > header.txt
- ${TOOLS}/catalog -s ${STYLE} -gdp ${INDEX} -c 4 *.c > source.txt
- ${TOOLS}/catalog -s ${STYLE} -gdp ${INDEX} -c 4 *.hpp > hpp.txt
- ${TOOLS}/catalog -s ${STYLE} -gdp ${INDEX} -c 4 *.cpp > cpp.txt
- ${TOOLS}/catalog -s ${STYLE} -gdp ${INDEX} -c 4 *.sh > script.txt
- cat part0.txt part1.txt manual.txt part2.txt header.txt part3.txt hpp.txt part4.txt source.txt part5.txt cpp.txt part6.txt script.txt part8.txt > ${INDEX}
- rm -f manual.txt header.txt source.txt script.txt
|