home *** CD-ROM | disk | FTP | other *** search
/ Columbia Kermit / kermit.zip / perqb / pq2mak.cmd < prev    next >
OS/2 REXX Batch file  |  2020-01-01  |  1KB  |  39 lines

  1. !
  2. !  MakeKermit:  Command file to compile and load Kermit.
  3. !
  4. !  To install Kermit-Perq, you will have to:
  5. !       1) In KermitScreen: Change the constant KermitFont to the name of
  6. !          the font file you wish to use in the terminal window.
  7. !       2) In KermitMain: Change the constants MSegFile and HLPFile so the 
  8. !          pathnames of Kermit.MSEG and Kermit.HLP in KermitMain
  9. !          refer to the directories in which these files are located.
  10. !       3) Copy the Kermit-commands .CMD-files into a suitable directory
  11. !          ( e.g. :boot )
  12. !       4) Read the comments below to decide whether this command file will
  13. !          have to be modified before running it.
  14. !
  15. ! Assume sys:boot> will always be in the searchlist!
  16. !
  17. ! The three first commands will only be required if IOUtils, UtilDefs and 
  18. ! MenuUtils is to be installed with Kermit.  Otherwise they will have to
  19. ! be reachable in the same way as the system modules.
  20. !
  21. com/norange/error IOUtils.Pas
  22. com/norange/error UtilDefs.Pas
  23. com/norange/error MenuUtils.Pas
  24. !
  25. com/norange/error KermitConnect.Pas
  26. com/norange/error KermitFile.Pas
  27. com/norange/error KermitGlobals.Pas
  28. com/norange/error KermitLineIO.Pas
  29. com/norange/error KermitMain.Pas
  30. com/norange/error KermitParameters.Pas
  31. com/norange/error KermitRead.Pas
  32. com/norange/error KermitScreen.Pas
  33. com/norange/error KermitSend.Pas
  34. !
  35. ! Change output file spec. if Kermit.RUN should be located in any other
  36. ! directory than sys:boot>
  37. !
  38. link KermitMain ~sys:boot>Kermit
  39.