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

Annotation of OpenXM/src/ox_math/configure, Revision 1.3

1.1       ohara       1: #!/bin/sh
1.3     ! noro        2: ## $OpenXM: OpenXM/src/ox_math/configure,v 1.2 1999/12/15 05:40:21 ohara Exp $
1.1       ohara       3:
                      4: lnx () {
                      5:        if [ -h Makefile ]; then
                      6:                rm Makefile
                      7:        fi
                      8:        ln -s Makefile.$1 Makefile
                      9: }
                     10:
                     11: case `uname` in
                     12: Linux)
                     13:        lnx linux
1.3     ! noro       14:        ;;
        !            15: OSF1)
        !            16:        lnx OSF1
1.1       ohara      17:        ;;
                     18: SunOS)
                     19:        if [ -d /kernel ]; then
                     20:                lnx solaris
                     21:        fi
                     22:        ;;
                     23: *)
                     24:        ;;
                     25: esac
                     26:
                     27: exit 0

FreeBSD-CVSweb <freebsd-cvsweb@FreeBSD.org>