home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
POINT Software Programming
/
PPROG1.ISO
/
misc
/
inter41
/
int2whlp
/
intwin.bat
< prev
next >
Wrap
DOS Batch File
|
1994-05-31
|
1KB
|
57 lines
@echo off
echo.
echo This batch program compiles Ralf Brown's Interrupt List to a WINHELP file
echo in the current directory (defined as OutPath in INT2WHLP.CFG). INT2WHLP
echo will request the InPath directory containing the Interrupt List files.
echo.
echo 12 MB free disk space are required for the compilation (based on release 40).
echo.
echo HC31 is expected to be found on the DOS path.
echo.
echo Intermediate files are deleted after the compilation.
echo.
pause
echo.
echo The following time estimates are based on Interrupt List release 40 and
echo a 486/33MHz based computer.
echo.
echo Compiling to RTF files (appr. 80 seconds)
echo.
int2whlp
if NOT errorlevel 1 goto hc
echo.
echo Some error occured, quiting.
echo.
goto done
:hc
echo.
echo Compiling RTF files to a HLP file (appr. 33 minutes - high compression,
echo existing INTWIN.PH file)
echo.
if exist intwin.hlp del intwin.hlp
hc31 intwin
if exist intwin.hlp goto delete
echo.
echo Some error occured, intermediate files are not deleted.
echo.
goto done
:delete
echo.
echo.
echo Deleting intermediate files.
echo NOTE! All INTWIN*.RTF will be deleted.
echo.
echo Press Ctrl C to quit, or any other key to delete the files.
pause>NUL
del index.rtf>NUL
del int.rtf>NUL
del subint.rtf>NUL
del intwin*.rtf>NUL
del intwin.hpj
:done