[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.3, Mon Jan 31 05:59:57 2000 UTC (24 years, 4 months ago) by noro
Branch: MAIN
Changes since 1.2: +4 -1 lines

Added support for Digital UNIX.  This modification is mainly for myself.

#!/bin/sh
## $OpenXM: OpenXM/src/ox_math/configure,v 1.3 2000/01/31 05:59:57 noro Exp $

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

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

exit 0