#!/bin/csh -f
#
# maketar
#
# Prepare a tar, compressed version of the important files
# in the PELKS directory
#
# Bertrand Meyer, 2 September 1994
#

echo Tarring the files into whole_tar ...
set list = `sed -e /^--/d -e /whole_/d lib/FILELIST`

tar -cvf - $list >! whole_tar

echo Compressing into whole_tar.Z
compress whole_tar

echo Uuencoding into whole_uuencoded
uuencode whole_tar.Z whole_tar.Z >! whole_uuencoded

echo Done. The following file is ready to be e-mailed:

ls -l whole_uuencoded whole_tar.Z
