diff options
author | darrenr <darrenr@FreeBSD.org> | 1997-02-09 22:50:16 +0000 |
---|---|---|
committer | darrenr <darrenr@FreeBSD.org> | 1997-02-09 22:50:16 +0000 |
commit | cb8d46a179f2d30ac1cd0a01eb156e1a4c08d717 (patch) | |
tree | 93c7db298b1fd70f9e27663b3fd527da063d0008 /contrib/ipfilter/buildsunos | |
download | FreeBSD-src-cb8d46a179f2d30ac1cd0a01eb156e1a4c08d717.zip FreeBSD-src-cb8d46a179f2d30ac1cd0a01eb156e1a4c08d717.tar.gz |
Import IP Filter v3.1.7 into FreeBSD tree
Diffstat (limited to 'contrib/ipfilter/buildsunos')
-rwxr-xr-x | contrib/ipfilter/buildsunos | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/contrib/ipfilter/buildsunos b/contrib/ipfilter/buildsunos new file mode 100755 index 0000000..dd2aa38 --- /dev/null +++ b/contrib/ipfilter/buildsunos @@ -0,0 +1,23 @@ +#! /bin/sh +# $Id: buildsunos,v 2.0.1.1 1997/01/09 15:14:43 darrenr Exp $ +: +rev=`uname -r | sed -e 's/^\([^\.]*\)\..*/\1/'` +cpu=`uname -m` +if [ $rev = 5 ] ; then + solrev=`uname -r | sed -e 's/^\([0-9]*\)\.\([0-9]*\)$/\2/'` + 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" DCPU=${cpu} + exit $? +fi +if [ x$solrev = x ] ; then + make ${1+"$@"} sunos$rev "ARCH=`uname -m`" + exit $? +fi +make ${1+"$@"} sunos$rev SOLARIS2="-DSOLARIS2=$solrev" DCPU=${cpu} +exit $? |