fixed type in list of ignored files
[samba.git] / packaging / SGI / mkman
1 #!/bin/sh
2
3 if [ ! -d catman ]; then
4    mkdir catman
5 fi
6
7 # if you wish to make html versions of the man pages then uncomment
8 # the following section and the "rman" command below
9 #
10 # if [ ! -d html ]; then
11 #    mkdir html
12 # fi
13
14 FILES="*.?"
15
16 cd ../../docs
17 for FILE in  $FILES ; do
18    neqn $FILE | tbl | nroff -man > ../packaging/SGI/catman/`basename $FILE`
19    compress -f ../packaging/SGI/catman/`basename $FILE`
20 #    rman -f html -r "%s.%s.html"  $FILE > ../packaging/SGI/html/$FILE.html
21 done
22 cd ../packaging/SGI