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

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

1.1       ohara       1: #!/bin/sh
1.2     ! ohara       2: ## $OpenXM: OpenXM/src/ox_math/configure,v 1.1 1999/11/23 02:15:05 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
                     14:        ;;
                     15: SunOS)
                     16:        if [ -d /kernel ]; then
                     17:                lnx solaris
                     18:        fi
                     19:        ;;
                     20: *)
                     21:        ;;
                     22: esac
                     23:
                     24: exit 0

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