#!/bin/sh
#
# make compressed tar file of AUTOPSY source
#

cd $AUTOPSYHOME
make clean
cd ..
tar cvf autopsy.tar autopsy
echo before:
ls -l autopsy.tar.Z
compress -f autopsy.tar
echo after:
ls -l autopsy.tar.Z
