home *** CD-ROM | disk | FTP | other *** search
/ Columbia Kermit / kermit.zip / b / vmsmkh.com < prev    next >
Text File  |  2020-01-01  |  1KB  |  42 lines

  1. $! VMSMAKHLP.COM - make help files for VMS Kermit-32
  2. $!
  3. $! Gary B. Stebbins - 30-Apr-1990
  4. $!
  5. $! This procedure creates the help files and library for VMS Kermit-32.
  6. $! No error checking is done.  It assumes the file VMSMIT.RNH is in the
  7. $! current directory when executed.
  8. $!
  9. $! If P1 is TRUE, attempt to copy the appropriate files to the system 
  10. $! help library.  This assumes you have the appropriate privileges. 
  11. $! No error checking is done.
  12. $!
  13. $
  14. $!
  15. $! Create the program help file
  16. $!
  17. $    runoff vmsmit.rnh /out=kermit
  18. $!
  19. $! Create the program help library
  20. $!
  21. $    library /help/create kermit kermit
  22. $!
  23. $! Create the system help file
  24. $!
  25. $    runoff vmsmit.rnh /variant=SYSTEM /out=kermit_sys
  26. $!
  27. $    Write sys$output "The Kermit-32 help files have been created."
  28. $!
  29. $    if .not. p1 then goto exit
  30. $!
  31. $! P1 is true - assume we have the correct privileges, and attempt to
  32. $! add Kermit help to the system help directory and files
  33. $!
  34. $    copy kermit.hlb sys$help:*.* /log
  35. $    library /help sys$help:helplib kermit_sys /replace/log
  36. $!
  37. $    write sys$output "The system help files have been updated."
  38. $    write sys$output "No files have been purged - you may wish to do this."
  39. $!
  40. $exit:
  41.  
  42.