summaryrefslogtreecommitdiffstats
path: root/contrib/ipfilter/buildsunos
blob: b3f65788cba28bac1f40852dca291e5d2ffa06ca (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
#! /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 $?
OpenPOWER on IntegriCloud