#!/bin/sh

# cflags takes a machine type and returns the appropriate cc flags

case  $* in 
	3100)
				echo  "-O -G 0";;
	mips)
				echo "-O";;
	sequent)
				echo "-O";;
	sun3)
				echo "-O";;
	sun4)
				echo "-O";;
	*)
				echo "";;
esac
