#!/bin/sh
#File chooseStarterFile 
#
system=`uname -s`
machine=`uname -m`
cd DccExecFiles
if   [ $system = 'ULTRIX' -a $machine = 'RISC' ]; then
  cp starter.dccGccMipsSkel starter.dcc
elif [ $system = 'OSF1'  -a $machine = 'alpha' ]; then
  cp starter.dccGccAlphaSkel starter.dcc
elif [ $system = 'HP-UX' -a $machine = '9000/715' ]; then
  cp starter.dccCcHP715 starter.dcc
elif [ $system = 'HP-UX' ]; then
  cp starter.dccGccHPUXSkel starter.dcc
elif [ $system = 'SunOS' ]; then
  cp starter.dccGccSunosSkel starter.dcc
elif [ $system = 'Linux' ]; then
  cp starter.dccGccLinuxSkel starter.dcc
elif [ $system = 'AIX' ]; then
  cp starter.dccXlcAix starter.dcc
elif [ ! -f starter.dcc ]; then
  echo '>>> Unsupported platform (as of now); try adapting one of the'
  echo '>>> supplied "starter.*" files, and copy it to "starter.dcc".'
fi
../adaptStarterFile
cd ..
#
#End file chooseStarterfile 
