#!/bin/sh
#
# Created `Mon Mar 11 10:06:04 MET 1996' By `papanik'.
# Copyright (c) 1995 By The LiDIA Group -- All Rights Reserved.
# Author --  Thomas Papanikolaou (TP)
#

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
