blob: 4caa1512e20d0437a153bad6f7dc0439f3ce86db (
plain)
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
|
#!/bin/sh
manprefix=$2
if test -f config.dist ; then
. ./config.dist
fi
if test -z $htmlhome ; then
htmlhome=$1/$package
else
htmlhome=$1/$htmlhome
fi
man2html $manprefix $manpages $htmlhome
for lsmpage in $lsmpages ; do
echo "Creating $lsmpage.html..."
lsm2html $lsmpage >$htmlhome/$lsmpage.html
done
for txtpage in $txtpages ; do
echo "Creating $txtpage.txt"
cp $txtpage $htmlhome/$txtpage.txt
done
for htmlpage in $htmlpages ; do
echo "Copying $htmlpage"
cp -f html/$htmlpage $htmlhome/$htmlpage
done
|