CASA/mk-ca-all
Manohar 2064132ff3
2006-02-28 11:33:16 +00:00

39 lines
786 B
Bash

#!/bin/bash
set -x
BR=`pwd`
########################################################################
############################# LINUX BUILDS #############################
########################################################################
if [ "`uname`" = "Linux" ]
then
cd shsrc/lshsrc
(mk-ca-all)
RCODE=$?
if(test $RCODE != 0)
then
exit $RCODE
fi
exit
fi
########################################################################
############################# Windows builds ###########################
########################################################################
if [ "`uname`" = "CYGWIN_NT-5.0" ] || [ "`uname`" = "Windows_NT" ] || [ "`uname`" = "CYGWIN_NT-5.1" ]
then
cd shsrc/wshsrc
(mk-ca-all)
RCODE=$?
if(test $RCODE != 0)
then
exit $RCODE
fi
exit
fi