1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48
|
#!/bin/sh
# This is meant to be done by hand
# when changes made. Not done during build or install.
# Just use the built pdf to install.
# Run in the libdwarf source directory.
c="n"
p="n"
if [ $# -lt 1 ]
then
echo "Usage: pdfbld.sh [-a] [-c] [-p]"
echo "where: -c formats libdwarf2.1.pdf"
echo "where: -p formats libdwarf2p.1.pdf"
echo "where: -a formats both"
exit 1
fi
for i in $*
do
case $i in
-a) c="y" ; p="y"
shift ;;
-c) c="y"
shift ;;
-p) p="y"
shift ;;
*) echo "Giving up: unknown argument use argument -a or -c or -p"
exit 1 ;;
esac
done
set -x
TROFF=/usr/bin/groff
#TROFFDEV="-T ps"
PSTOPDF=/usr/bin/ps2pdf
if [ $c = "y" ]
then
pr -t -e libdwarf2.1.mm | tbl | $TROFF -mm >libdwarf2.1.ps
$PSTOPDF libdwarf2.1.ps libdwarf2.1.pdf
fi
if [ $p = "y" ]
then
pr -t -e libdwarf2p.1.mm | tbl | $TROFF -mm >libdwarf2p.1.ps
$PSTOPDF libdwarf2p.1.ps libdwarf2p.1.pdf
fi
rm -f libdwarf2.1.ps
rm -f libdwarf2p.1.ps
|