; This script sets up the environment for any or all
; compilers available and then starts up CPump
;
if exists Work:Utils             ; This is where I keep CPump
   path Work:Utils add
endif
if exists Work:PDC/s/start       ; This sets up path and env for PDC
   execute Work:PDC/s/start
endif
if exists Work:DICE/s/initdcc    ; Ditto for DICE
   execute Work:DICE/s/initdcc
endif
if exists Work:LC/s/initlc       ; And for LC 
   execute Work:LC/s/initlc
endif
if exists Work:GCC/Setup         ; Once more for GCC
   execute Work:GCC/Setup
endif
if exists Work:Amiga_E/initec    ; And another for Amiga E (not C)
   execute Work:Amiga_E/initec
endif
if exists Work:PDC/Indent/.indent.pro  ; This is for the Indent utility
   setenv HOME Work:PDC/Indent/
endif

;cd RAM:                          ; Or RAD:    This is the working dir
;
CPump17                          ; Start up the program
;
copy ENV:CPump.env ENVARC:       ; Save my preferences over a boot

