#!/bin/sh

platform=`uname`

if [ "$platform" = "UnixWare" ]
then
   rm -f Prep-MySQL-UW7.out
   ./Build-MySQL-UW7 -prep 2>&1 | tee Prep-MySQL-UW7.out
fi

if [ "$platform" = "SCO_SV" ]
then
   rm -f Prep-MySQL-OSR5.out
   ./Build-MySQL-OSR5 -prep 2>&1 | tee Prep-MySQL-OSR5.out
fi
