home *** CD-ROM | disk | FTP | other *** search
/ Fresh Fish 5 / FreshFish_July-August1994.bin / bbs / util / acmautils.lha / AcmaUtils / Examples / make next >
Encoding:
Text File  |  1994-03-05  |  479 b   |  24 lines

  1. if not exists ram:dos2.lib
  2.   copy >NIL: c:a68k c:blink df0:dos2.lib ram:
  3.   if exists PPArc.o
  4.     copy >NIL: PPArc.o ram:
  5.   endif
  6.   resident c:filechanged
  7.   resident c:waitaccess
  8.   resident c:protect
  9. endif
  10.  
  11. waitaccess PPArc.s
  12. filechanged PPArc.s
  13. if warn
  14.   copy PPArc.s ram:
  15.   a68k ram:PPArc.s -oram:PPArc.o -iram:
  16.   delete >NIL: ram:PPArc.s
  17.   copy ram:PPArc.o ""
  18.   protect PPArc.s +a
  19. endif
  20.  
  21. blink ram:PPArc.o lib ram:dos2.lib to ram:PPArc
  22. copy ram:PPArc ""
  23. delete >NIL: ram:PPArc
  24.