home *** CD-ROM | disk | FTP | other *** search
/ Liren Large Software Subsidy 10 / 10.iso / l / l351 / 1.ddi / MSVC / LIB / MKALL.BAT < prev    next >
Encoding:
DOS Batch File  |  1992-05-13  |  549 b   |  33 lines

  1. @echo off
  2. if "%1" == "" goto usage
  3.  
  4. command /c mklib l e %1
  5. command /c mklib l 7 %1
  6. command /c mklib l a %1
  7.  
  8. command /c mklib s e %1
  9. command /c mklib s 7 %1
  10. command /c mklib s a %1
  11.  
  12. command /c mklib m e %1
  13. command /c mklib m 7 %1
  14. command /c mklib m a %1
  15.  
  16. command /c mklib c e %1
  17. command /c mklib c 7 %1
  18. command /c mklib c a %1
  19.  
  20. goto end
  21. :err
  22. echo *
  23. echo * Directory '%1' does not exist.
  24. echo *
  25. goto end
  26. :usage
  27. echo *
  28. echo * Usage: mkall [path]
  29. echo *
  30. echo * Make all combinations of ?LIBP?.LIB libraries.
  31. echo *
  32. :end
  33.