[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.2, Wed Dec 15 05:40:21 1999 UTC (24 years, 6 months ago) by ohara
Branch: MAIN
CVS Tags: RELEASE_20000124
Changes since 1.1: +1 -4 lines

Makefile does not support bconv and testclient.
ox_math cannot be compiled on FreeBSD system.

#!/bin/sh
## $OpenXM: OpenXM/src/ox_math/configure,v 1.2 1999/12/15 05:40:21 ohara Exp $

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

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

exit 0