home *** CD-ROM | disk | FTP | other *** search
/ The C Users' Group Library 1994 August / wc-cdrom-cusersgrouplibrary-1994-08.iso / listings / v_10_12 / 1012033a < prev    next >
Text File  |  1992-10-13  |  788b  |  18 lines

  1. rem MAKE-B.BAT
  2. rem
  3. rem This batch file will build TERM286.C using the Phar Lap 286 DOS
  4. rem Extender and Borland C++.  It builds the DLL first, then the
  5. rem executable file for TERM286.EXE
  6. rem
  7. bcc -c real_isr.c
  8. echo ; REAL_ISR.DEF -- linker module description file >  real_isr.def
  9. echo LIBRARY REAL_ISR                                 >> real_isr.def
  10. echo DESCRIPTION 'REAL ISR FOR 8250 W/PHAR LAP 286'   >> real_isr.def
  11. echo EXPORTS                                          >> real_isr.def
  12. echo      _real_isr                                   >> real_isr.def
  13. echo      _Port                                       >> real_isr.def
  14. tlink /nod real_isr,real_isr.dll,,,real_isr.def
  15. bcc286 -markreal real_isr.dll
  16. implib real_isr.lib real_isr.def
  17. bcc286 term286.c real_isr.lib
  18.