[BACK]Return to configure CVS log [TXT][DIR] Up to [local] / OpenXM / src / ox_math

File: [local] / OpenXM / src / ox_math / Attic / configure (download)

Revision 1.1, Tue Nov 23 02:15:05 1999 UTC (24 years, 7 months ago) by ohara
Branch: MAIN

configure script.

#!/bin/sh
## $OpenXM: OpenXM/src/ox_math/configure,v 1.1 1999/11/23 02:15:05 ohara Exp $

lnx () {
	if [ -h Makefile ]; then
		rm Makefile
	fi
	ln -s Makefile.$1 Makefile
}

case `uname` in
Linux)
	lnx linux
	;;
FreeBSD)
	lnx FreeBSD
	;;
SunOS)
	if [ -d /kernel ]; then
		lnx solaris
	fi
	;;
*)
	;;
esac

exit 0