home *** CD-ROM | disk | FTP | other *** search
/ Fresh Fish 5 / FreshFish_July-August1994.bin / bbs / dev / cpump-1.7.lha / CPump-1.7 / CPump < prev    next >
Encoding:
Text File  |  1994-07-08  |  1022 b   |  34 lines

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