Return to configure CVS log | Up to [local] / OpenXM / src / ox_math |
1.1 ! ohara 1: #!/bin/sh ! 2: ## $OpenXM$ ! 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: FreeBSD) ! 16: lnx FreeBSD ! 17: ;; ! 18: SunOS) ! 19: if [ -d /kernel ]; then ! 20: lnx solaris ! 21: fi ! 22: ;; ! 23: *) ! 24: ;; ! 25: esac ! 26: ! 27: exit 0