home *** CD-ROM | disk | FTP | other *** search
/ Gold Fish 3 / goldfish_volume_3.bin / files / text / edit / macro / gcc / gnu-startup_cd < prev    next >
Text File  |  1995-03-05  |  1KB  |  67 lines

  1. ;
  2. ;Mal sehen welche CD im Laufwerk liegt
  3. ;
  4. ;      FreshFish-May94
  5. ; oder FreshFish-Sep94
  6. ;
  7. ; wenn keine von beiden vorliegt mache ich auch keine Assign's :-))
  8. ;
  9. ; Mir liegen nur die beiden oben genanten CD's vor, aber es dürfte ja
  10. ; kein prob darstellen die CD Abfrage zu erweitern.
  11. ;
  12.  
  13. ;/// "Welche CD ?"
  14.  
  15. assign FreshFish-May94: exists >NIL:
  16. IF NOT WARN
  17.   Assign GNU: FreshFish-May94:GNU
  18. endif
  19.  
  20. assign "FreshFish-Sep94:" exists >NIL:
  21. IF NOT WARN
  22.   Assign GNU: FreshFish-Sep94:GNU
  23. endif
  24.  
  25. ;\\\
  26.  
  27. ;/// "Assign's"
  28.  
  29. Assign "GNU:" exists >NIL:
  30. IF NOT WARN
  31.  
  32. assign LOCAL: exists >NIL:
  33. if WARN
  34.   assign LOCAL: T:
  35. endif
  36.  
  37. assign BIN:     GNU:bin
  38. assign ETC:     GNU:etc
  39. assign INFO:    GNU:info
  40. assign MAN:     GNU:man
  41.  
  42. path GNU:bin  ADD
  43.  
  44. assign DEVS:    GNU:Sys/Devs    ADD
  45. assign LIBS:    GNU:Sys/Libs    ADD
  46. assign L:       GNU:Sys/L       ADD
  47. assign S:       GNU:Sys/S       ADD
  48.  
  49. assign TMP:     T:
  50.  
  51. Assign "IXPIPE:" exists >NIL:
  52. IF WARN
  53.   mount IXPIPE: from DEVS:MountList.IXPIPE
  54. endif
  55.  
  56. assign GNUemacs: GNU:lib/emacs/18.59
  57. assign S: GNU:Sys/S ADD
  58. unalias emacs
  59. setenv ESHELL GNUemacs:etc/sh
  60.  
  61. run <nil: >nil: GNU:Sys/L/fifo-handler
  62.  
  63. endif
  64.  
  65. ;\\\
  66.  
  67.