#!/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