#! /bin/sh
# file: configure             G. Moody               6 February 2002
#
# Configuration script for ecgpuwave

echo "Checking the operating system type ..."
OS=`uname`
echo "Configuring ecgpuwave for $OS."

case `uname` in
  CYGWIN*) cp -p Makefile.cygwin Makefile ;;
  *)       cp -p Makefile.unix Makefile ;;
esac

echo
echo "ecgpuwave software configuration is complete."
echo "Now run 'make', followed by 'make install'."
