#!/bin/csh
# make-tar-set
# creates tar set from this directory
# defines shell variable 'name' and then
# makes compressed tar set ../$name.tar.Z
# excluding $name/$name (the executable) and all 'F' exclusions (like *.o)
#
set name = $cwd:t
cd ..
tar cvfF ${name}.tar -e ${name}/${name} ${name}/
compress -vf ${name}.tar
ls -laF ${name}.tar.Z
cd ${name}
