#!/bin/sh
#
# Make the given help file
# actually just create the tar file under the appropriate name
#
cd common; tar cf ../${1}xgs.hlp *
cd ..
if test -d $1
then
	cd $1; tar uf ../${1}xgs.hlp *
	cd ..
	echo "Help file is in" ${1}xgs.hlp
	echo "Must be copied to HELPLIB"
fi
