home *** CD-ROM | disk | FTP | other *** search
/ Liren Large Software Subsidy 7 / 07.iso / d / d020_1_4 / 4.ddi / CLIB / DLLCW.BAT < prev    next >
Encoding:
DOS Batch File  |  1990-06-01  |  541 b   |  26 lines

  1. @echo off
  2.  
  3. REM nuke old libs
  4. if exist %1dllc%2w.lib del %1dllc%2w.lib >NUL
  5.  
  6. REM Copy Windows lib to temp lib
  7. copy %1libc%2w.lib %1tmpc%2w.lib >NUL
  8.  
  9. REM Remove exe-specific modules in Windows lib 
  10. lib %1tmpc%2w.lib @wincdll.bld >NUL
  11.  
  12. REM Create DLL lib
  13. lib %1dllc%2w.lib+%1dllcw0.lib+%1tmpc%2w.lib; >NUL
  14.  
  15. REM delete .baks
  16. del %1tmpc%2w.lib >NUL
  17. if exist %1tmpc%2w.bak del %1tmpc%2w.bak >NUL
  18. if exist %1dllc%2w.bak del %1dllc%2w.bak >NUL
  19.  
  20. REM invoke with mem model and math coprocessor:
  21. REM dllcw [s m c l] [a e]
  22.  
  23.  
  24.  
  25.  
  26.