#!/bin/sh
# $Id: configure, v 0.1.9

system=`uname -s`

echo "Creating link to Makefile."
rm -f Makefile
case $system in
	Linux)
	  makext=linux;;
	FreeBSD)
	  makext=bsd;;
	*)
	  echo "  This software has not been ported to this system. Sorry."
	  exit;;
	esac

echo "  `uname -a`"
ln -s Makefile.$makext Makefile
echo "  Makefile -> Makefile.$makext"
