#!/bin/sh

# try to guess the target type if not specified, assuming that the
# current machine is the target

# Currently, this is only a rough guess, and could be expanded to get
# additional information


arch=`uname -m`

case $arch in
	sun4u)	# UltraSparc
		echo "sun-sparc4u"
		;;

	*)	# No idea.. go with the only thing we know...
		echo "sun-sparc4u"
		;;
esac

