#!/bin/csh -f
#
# This csh script uses the HOST environment variable
# to decide how to configure this machine after the files
# have been distributed via the remote distribution software.
# This variable is most usually set in the .cshrc file.
#
# usage: RDIST

switch( $HOST )
	case watdragon:
	case crocus:
	case dahlia:
	case trillium:
	case watmsg:
	case tiger:
	case lion:
	case rose:
	case lotus:
		./CONFIGURE dec bsd43 vax imperial bsd43
		breaksw
	case watcgl:
	case watpix:
		./CONFIGURE dec bsd43 mips imperial sysvr3
		breaksw
	case calypso:
		./CONFIGURE apollo bsd43 m68k imperial bsd43
		breaksw
	case orchid:
		./CONFIGURE sun bsd43 m68k imperial bsd43
		breaksw
	case ohm:
		./CONFIGURE sun bsd43 i386 imperial bsd43
		breaksw
	case mud:
	case watsol:
		./CONFIGURE sun bsd43 sparc imperial bsd43
		breaksw
	case physeter:
	case orcinus:
		./CONFIGURE sgi irix mips imperial sysvr3
		breaksw
	case daisy:
	case aftermath:
		./CONFIGURE mips bsd43 mips imperial bsd43vf
		breaksw
	case maytag:
		./CONFIGURE sequent bsd43 i386 imperial bsd43vf
		breaksw
	case doc:
		./CONFIGURE sequent bsd43 ns32k imperial bsd43vf
		breaksw
	case sybil:
	case sybil.cs.Buffalo.EDU:
		./CONFIGURE encore umax ns32k imperial bsd43
		breaksw
	case basser:
		./CONFIGURE mips bsd43 mips metric sysvr3
		breaksw
endsw
