home *** CD-ROM | disk | FTP | other *** search
/ OS/2 Shareware BBS: 5 Edit / 05-Edit.zip / pmeditor.zip / IPF.CMD < prev    next >
OS/2 REXX Batch file  |  1990-06-15  |  465b  |  12 lines

  1. @REM This is a batch file you can use to compile IPF Help files
  2. @REM It first pre-processes the help file using the Microsoft C Compiler's
  3. @REM macro pre-processor.  This output is then processed by IPFC.EXE
  4. @REM NOTE: The error line format from IPFC.EXE is not compatable with
  5. @REM the Microsoft C Compiler error line format so you can not jump to
  6. @REM errors with this version of the editor.
  7.  
  8. @ECHO OFF
  9. CL   -P %1.ipf
  10. IPFC %1.i
  11. COPY %1.hlp c:\os2\help
  12.