1#!/bin/sh
2# a hack by agl (15 January 2002)
3# $1 is the directory in which the documentation will be installed
4#
5
6echo "Begin install HTML dokumentation"
7
8mkdir -p $1 $1/cpmhelp
9for dfile in `cat docfiles_html.txt` ; do
10   echo "install html file $dfile"
11   install -c -m 644 $dfile $1
12done
13
14for dfile in `cat doc_cpmhelp_html.txt` ; do
15   echo "install html file $dfile"
16   install -c -m 644 $dfile $1/cpmhelp
17done
18
19echo "End install HTML dokumentation"
20