home *** CD-ROM | disk | FTP | other *** search
/ Gold Fish 2 / goldfish_vol2_cd1.bin / files / dev / c / cpump / cpump.orig < prev    next >
Text File  |  1994-04-04  |  961b  |  31 lines

  1. ; This script sets up the environment for any or all
  2. ; compilers available and then starts up CPump
  3. ;
  4. if exists Work:Utils             ; This is where I keep CPump
  5.    path Work:Utils add
  6. endif
  7. if exists Work:PDC/s/start       ; This sets up path and env for PDC
  8.    execute Work:PDC/s/start
  9. endif
  10. if exists Work:DICE/s/initdcc    ; Ditto for DICE
  11.    execute Work:DICE/s/initdcc
  12. endif
  13. if exists Work:LC/s/initlc       ; And for LC 
  14.    execute Work:LC/s/initlc
  15. endif
  16. if exists Work:GCC/Setup         ; Once more for GCC
  17.    execute Work:GCC/Setup
  18. endif
  19. if exists Work:Amiga_E/initec    ; And another for Amiga E (not C)
  20.    execute Work:Amiga_E/initec
  21. endif
  22. if exists Work:PDC/Indent/.indent.pro  ; This is for the Indent utility
  23.    setenv HOME Work:PDC/Indent/
  24. endif
  25. cd RAM:                          ; Or RAD:    This is the working dir
  26. ;
  27. CPump17                          ; Start up the program
  28. ;
  29. copy ENV:CPump.env ENVARC:       ; Save my preferences over a boot
  30.  
  31.