case $1 in
	vax)
		make -f vax/Makefile ;;

	xenix)
		make -f xenix/Makefile ;;

	pdp11)
		echo "Please specify pdp11fp or pdp11nofp" ;;

	3b2)
		make -f 3b2/Makefile ;;

	pdp11fp)
		make -f pdp11/Makefile.fp ;;

	pdp11nofp)
		make -f pdp11/Makefile.nofp ;;

	m68000)
		make -f m68000/Makefile ;;

	pyramid)
		make -f pyramid/Makefile ;;

	coherent)
		make -f coherent/Makefile ;;

	clean)
		rm -f *.o cursor.c term.c core basic ;;

	*)
	  echo "please specify one of coherent vax xenix 3b2 pdp11fp pdp11nofp m68000 pyramid" ;;
esac
