#!/bin/sh 

echo "You are installing SEP's GNU make rules"
echo " "
echo " "
echo "Environment variable SEPINC"
echo " "
echo "Before using the make rules, you need to set "
echo "the environment variable SEPINC to the"
echo "directory that contain the GNU make rules."
echo " "

if ( test $SEPINC -gt 0 ) then
	echo "You have an environment variable SEPINC set:"
	echo "   SEPINC is $SEPINC"
	echo " "
	echo "You may have to change all occurences of SEPINC"
	echo "in SEP's make files to an alternative name."
else
	echo "For the C-shell you can do this with the command: "
	echo " "
	echo "setenv SEPINC $cwd"
	echo " " 
	echo "If you want to use these make rules regularly"
	echo "you should add the setenv command to your startup"
	echo "file (e.g. .cshrc)."
fi 


