#!/bin/sh

# This file tests for the existence of srclib.kern in the ./sources
# subdirectory.

# This file is part of the SIMATH computer algebra system.

echo ""
echo "checking for srclib.kern ..."
echo ""

if test -f sources/srclib.kern
then
	echo ""
	echo "sources/srclib.kern found ..."
	echo "compiling ..."
	echo ""
else
	echo ""
	echo "could not find sources/srclib.kern ..."
	echo "You must get sources/srclib.kern from"
	echo "        simath@math.uni-sb.de"
	echo "or from"
	echo "        mail-server@emmy.math.uni-sb.de."
	echo "PLEASE READ THE FILE INSTALLATION."
	echo ""
	exit 1
fi
