home *** CD-ROM | disk | FTP | other *** search
/ Programmer 7500 / MAX_PROGRAMMERS.iso / CLIPPER / MISC / INTER34C.ZIP / IV.BAT < prev    next >
Encoding:
DOS Batch File  |  1993-03-14  |  529 b   |  20 lines

  1. @ECHO OFF
  2. REM if you are using a DOS version prior to 3.30, remove the @ above
  3. REM
  4. REM IV.BAT: wrapper to ensure the existence of the index file required
  5. REM    by INTERVUE, then invoke INTERVUE
  6. REM
  7. IF NOT "%INTERVUE%" == "" SET __DIR=%INTERVUE%\
  8. IF EXIST %__DIR%INTERRUP.SUM GOTO RUN
  9. IF EXIST %__DIR%INTERRUP.? GOTO CREATE
  10. ECHO Could not find Interrupt List files.
  11. GOTO END
  12.  
  13. :CREATE
  14. ECHO Creating index, please wait....
  15. INTPRINT -s%__DIR%INTERRUP.SUM -m -I %__DIR%INTERRUP.A NUL
  16. :RUN
  17. INTERVUE
  18. :END
  19. SET __DIR=
  20.