$ CurDefault = F$ENVIRONMENT("DEFAULT") $ Vmsgen$t_system_arch_type = F$GETSYI ("ARCH_NAME") $ IF ( (Vmsgen$t_system_arch_type .EQS. "Alpha") .or. - (Vmsgen$t_system_arch_type .EQS. "IA64") .or. - (Vmsgen$t_system_arch_type .EQS. "VAX") ) $ THEN $ if (Vmsgen$t_system_arch_type .EQS. "Alpha") $ then $ write sys$output "Building on an Alpha" $ gmake :== $'CurDefault'MAKE_3_76_1_VMS_ALPHA.EXE; $ endif $ if (Vmsgen$t_system_arch_type .EQS. "IA64") $ then $ write sys$output "Building on an Itanium" $ gmake :== $'CurDefault'MAKE_1_0_VMS_IA64.EXE; $ endif $ if (Vmsgen$t_system_arch_type .EQS. "VAX") $ then $ write sys$output "Building on a VAX" $ gmake :== $ 'CurDefault'MAKE_3_76_1_VMS_VAX.EXE; $ endif $ ELSE $ write sys$output "Building on this platform is not supported." $ write sys$output " Use an Alpha, Itanium, or VAX system for this build." $ exit $ ENDIF $! $ write sys$output "--------------------------------------------------------------------------------" $ write sys$output " The setup for building the Kerberos examples is complete. " $ write sys$output " Type the following command for help using gmake in this directory:" $ write sys$output " $ gmake help" $ write sys$output "--------------------------------------------------------------------------------"