#!/bin/sh

if test $1 = "sparc7" -o\
        $1 = "sparc8" -o\
        $1 = "mips" -o\
        $1 = "i386" -o\
        $1 = "i486" -o\
        $1 = "i586" ; then
  TARGET=$1
else
  TARGET="c"
fi
echo $TARGET
