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