home *** CD-ROM | disk | FTP | other *** search
/ The Amiga Game Guide / AmigaGameGuide_CD.iso / PC / Tools / chunker / source / makedist < prev    next >
Text File  |  1977-12-31  |  945b  |  55 lines

  1. ; Make the Chunker distribution.
  2. failat 21
  3.  
  4. ; Clean up T:
  5. Delete >NIL: T:chunker#? ALL
  6.  
  7. ; cd to main directory
  8. cd /
  9.  
  10. ; Make dir in T:
  11. Makedir T:chunker
  12.  
  13. ; Copy info file
  14. Copy /chunker.info T: QUIET DATES
  15.  
  16. ; Copy everything else
  17. Copy #? ALL T:chunker QUIET DATES
  18.  
  19. ; Keep track of where we were
  20. Assign QQFWEG: ""
  21.  
  22. ; cd to T:chunker
  23. cd T:chunker
  24.  
  25. ; Compile all documents
  26. Umentiler FILE_ID.DIZ QUIET
  27. Umentiler chunker.doc QUIET
  28. Umentiler chunker.readme QUIET
  29.  
  30. ; Make another copy of the .readme
  31. Copy chunker.readme /chunker.readme QUIET DATES
  32.  
  33. ; Delete some files...
  34. Delete History #?.lnk source/#?.o QUIET
  35.  
  36. ; Rename FILE_ID.DIZ
  37. Rename FILE_ID.DIZ /FILE_ID.DIZ
  38.  
  39. ; Goto T:
  40. cd /
  41.  
  42. ; Create archives
  43. lha -aerRxZq a T:chunker.lha T:chunker/#? T:chunker.info FILE_ID.DIZ
  44. lha2lzx chunker.lha chunker.lzx
  45.  
  46. ; cleanup
  47. delete FILE_ID.DIZ chunker chunker.info ALL QUIET
  48.  
  49. ; Back up to where we were...
  50. cd QQFWEG:
  51. cd source
  52.  
  53. ; Remove assign
  54. Assign QQFWEG: REMOVE
  55.