# @(#)makevi	1.10
#
type="`uname -m`"
#
case $type in
	pdp11-70 | vax-780 | vax-750 | 370 | 3B-20* | 3B5 | c70 )
		type=`echo $type | sed -e 's/.*-//p'`
	 	src="src$type"
		;;
	*     )  echo "Sorry, vi may not work on your system"
		exit
		;;
esac

make -f vi.mk all $src
make -f vi.mk clean     
