24 lines
681 B
Bash
Executable File
24 lines
681 B
Bash
Executable File
#! /bin/sh
|
|
# $Id: buildsunos,v 2.0.2.4 1997/05/24 07:32:46 darrenr Exp $
|
|
:
|
|
rev=`uname -r | sed -e 's/^\([^\.]*\)\..*/\1/'`
|
|
cpu=`uname -m`
|
|
if [ $rev = 5 ] ; then
|
|
solrev=`uname -r | sh -c 'IFS=. read j n x; echo $n'`
|
|
mkdir -p SunOS5/${cpu}
|
|
/bin/rm -f SunOS5/${cpu}/Makefile
|
|
/bin/rm -f SunOS5/${cpu}/Makefile.ipsend
|
|
ln -s ../Makefile SunOS5/${cpu}/Makefile
|
|
ln -s ../Makefile.ipsend SunOS5/${cpu}/Makefile.ipsend
|
|
fi
|
|
if [ $cpu = i86pc ] ; then
|
|
make ${1+"$@"} sunos5x86 SOLARIS2="-DSOLARIS2=$solrev" CPU=${cpu}
|
|
exit $?
|
|
fi
|
|
if [ x$solrev = x ] ; then
|
|
make ${1+"$@"} sunos$rev "ARCH=`uname -m`"
|
|
exit $?
|
|
fi
|
|
make ${1+"$@"} sunos$rev SOLARIS2="-DSOLARIS2=$solrev" CPU=${cpu}
|
|
exit $?
|