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

  1. rem MAKE-M.BAT
  2. rem
  3. rem
  4. rem This batch file will build TERM286.C using the Phar Lap 286 DOS
  5. rem Extender and Microsoft C.  It builds the DLL first, then the
  6. rem executable file for TERM286.EXE
  7. rem
  8. cl /G2s /Ox /AL /W4 /c real_isr.c
  9. echo ; REAL_ISR.DEF -- linker module description file  >  real_isr.def
  10. echo LIBRARY REAL_ISR                                  >> real_isr.def
  11. echo EXETYPE DOS4                                      >> real_isr.def
  12. echo DESCRIPTION 'REAL ISR FOR 8250 W/PHAR LAP 286'    >> real_isr.def
  13. echo EXPORTS                                           >> real_isr.def
  14. echo      _real_isr                                    >> real_isr.def
  15. echo      _Port                                        >> real_isr.def
  16. link /nod real_isr,real_isr.dll,,,real_isr.def
  17. implib real_isr.lib real_isr.def
  18. cl /G2s /AL /W4 /Lp /AL term286.c real_isr.lib
  19.  
  20.