home *** CD-ROM | disk | FTP | other *** search
/ POINT Software Programming / PPROG1.ISO / misc / inter41 / int2whlp / intwin.bat < prev    next >
DOS Batch File  |  1994-05-31  |  1KB  |  57 lines

  1. @echo off
  2.  
  3. echo.
  4. echo This batch program compiles Ralf Brown's Interrupt List to a WINHELP file
  5. echo in the current directory (defined as OutPath in INT2WHLP.CFG). INT2WHLP
  6. echo will request the InPath directory containing the Interrupt List files.
  7. echo.
  8. echo 12 MB free disk space are required for the compilation (based on release 40).
  9. echo.
  10. echo HC31 is expected to be found on the DOS path.
  11. echo.
  12. echo Intermediate files are deleted after the compilation.
  13. echo.
  14. pause
  15.  
  16. echo.
  17. echo The following time estimates are based on Interrupt List release 40 and
  18. echo a 486/33MHz based computer.
  19. echo.
  20. echo Compiling to RTF files (appr. 80 seconds)
  21. echo.
  22. int2whlp
  23. if NOT errorlevel 1 goto hc
  24. echo.
  25. echo Some error occured, quiting.
  26. echo.
  27. goto done
  28.  
  29. :hc
  30. echo.
  31. echo Compiling RTF files to a HLP file (appr. 33 minutes - high compression,
  32. echo existing INTWIN.PH file)
  33. echo.
  34. if exist intwin.hlp del intwin.hlp
  35. hc31 intwin
  36. if exist intwin.hlp goto delete
  37. echo.
  38. echo Some error occured, intermediate files are not deleted.
  39. echo.
  40. goto done
  41.  
  42. :delete
  43. echo.
  44. echo.
  45. echo Deleting intermediate files.
  46. echo NOTE! All INTWIN*.RTF will be deleted.
  47. echo.
  48. echo Press Ctrl C to quit, or any other key to delete the files.
  49. pause>NUL
  50. del index.rtf>NUL
  51. del int.rtf>NUL
  52. del subint.rtf>NUL
  53. del intwin*.rtf>NUL
  54. del intwin.hpj
  55.  
  56. :done
  57.