home *** CD-ROM | disk | FTP | other *** search
/ Liren Large Software Subsidy 7 / 07.iso / c / c005 / 2.ddi / CVMFIX.BAT < prev    next >
Encoding:
DOS Batch File  |  1987-04-13  |  1.3 KB  |  51 lines

  1. rem CVMFIX.BAT -- Strip C VIEW MANAGER library of conflicts with C TOOLS PLUS.
  2. rem
  3. rem Usage -- for Microsoft librarian program LIB:
  4. rem
  5. rem         1.  Copy MSREMOVE to the current directory.
  6. rem         2.  Execute the following:  CVMFIX LIB {libraryname}
  7. rem         where {libraryname} is the name of the C VIEW MANAGER
  8. rem         library to be modified.
  9. rem
  10. rem Usage -- for Lattice Object Module Librarian OML:
  11. rem
  12. rem         1.  Copy LREMOVE to the current directory.
  13. rem         2.  Execute the following:  CVMFIX OML {libraryname}
  14. rem         where {libraryname} is the name of the C VIEW MANAGER
  15. rem         library to be modified.
  16. rem
  17. rem   In each case, examine the librarian's warning messages carefully.
  18. rem   If you use OML, you may need to modify LREMOVE to match the case
  19. rem   (upper or lower) of the names used in the C VIEW MANAGER library.
  20.  
  21. echo off
  22.  
  23. if not a%3==a goto usage
  24. if     a%2==a goto usage
  25.  
  26. if lib==%1 goto do_lib
  27. if LIB==%1 goto do_lib
  28. if oml==%1 goto do_oml
  29. if OML==%1 goto do_oml
  30.  
  31. echo Unknown librarian specified -- aborting.
  32. goto exit
  33.  
  34. :do_lib
  35. lib %2 @msremove ;
  36. goto report
  37.  
  38. :do_oml
  39. oml -asis %2 d @lremove
  40. goto report
  41.  
  42. :report
  43. if     errorlevel 1 echo Error from librarian!
  44. if not errorlevel 1 echo Successful modification of %2.
  45. goto exit
  46.  
  47. :usage
  48. echo usage:  %0 {librarian (lib or oml)} {libraryname}
  49.  
  50. :exit
  51.