#!/bin/sh
clear
if [ -f not_unpack ]
then
	echo "*********************************************************************"
	echo "* Not Unpacked.  Please copy your distribution files to a temporary *"
	echo "* directory and type 'make unpack' first.                           *"
	echo "*********************************************************************"
	exit -1
else
	exit 0
fi
