home *** CD-ROM | disk | FTP | other *** search
- rem CVMFIX.BAT -- Strip C VIEW MANAGER library of conflicts with C TOOLS PLUS.
- rem
- rem Usage -- for Microsoft librarian program LIB:
- rem
- rem 1. Copy MSREMOVE to the current directory.
- rem 2. Execute the following: CVMFIX LIB {libraryname}
- rem where {libraryname} is the name of the C VIEW MANAGER
- rem library to be modified.
- rem
- rem Usage -- for Lattice Object Module Librarian OML:
- rem
- rem 1. Copy LREMOVE to the current directory.
- rem 2. Execute the following: CVMFIX OML {libraryname}
- rem where {libraryname} is the name of the C VIEW MANAGER
- rem library to be modified.
- rem
- rem In each case, examine the librarian's warning messages carefully.
- rem If you use OML, you may need to modify LREMOVE to match the case
- rem (upper or lower) of the names used in the C VIEW MANAGER library.
-
- echo off
-
- if not a%3==a goto usage
- if a%2==a goto usage
-
- if lib==%1 goto do_lib
- if LIB==%1 goto do_lib
- if oml==%1 goto do_oml
- if OML==%1 goto do_oml
-
- echo Unknown librarian specified -- aborting.
- goto exit
-
- :do_lib
- lib %2 @msremove ;
- goto report
-
- :do_oml
- oml -asis %2 d @lremove
- goto report
-
- :report
- if errorlevel 1 echo Error from librarian!
- if not errorlevel 1 echo Successful modification of %2.
- goto exit
-
- :usage
- echo usage: %0 {librarian (lib or oml)} {libraryname}
-
- :exit