#!/bin/ksh export UNAME=`uname` if [ $UNAME = "IRIX" ] then rm Makefile echo Linking in Makefile.irix ln -s Makefile.irix Makefile elif [ $UNAME = "IRIX64" ] then rm Makefile echo Linking in Makefile.irix ln -s Makefile.irix Makefile elif [ $UNAME = "SunOS" ] then rm Makefile echo Linking in Makefile.solaris ln -s Makefile.solaris Makefile else echo echo "Error! This must be run on either an IRIX platform or a SunOS Platform." echo fi