home *** CD-ROM | disk | FTP | other *** search
- echo off
- echo.
-
- if %1#==# goto usage
- if not exist instmscr.lis goto notfound
- if not exist instmsce.lis goto notfound
- if not exist instmsca.lis goto notfound
- if not exist protomsc.lib goto noproto
- if not exist %1\libh.lib goto nolib
- if not exist %1\llibfa.lib goto nolib
- if not exist %1\llibcr.lib goto nolib
-
-
- echo This batch file creates a protected-mode Microsoft C 6.0 library out of
- echo your normal Microsoft C 6.0 library and our protected-mode object files.
- echo ********
- echo Warning: this procedure will create LLIBCAP.LIB and several object
- echo files in the current directory.
- echo If you think this might overwrite files you wish to keep, you should
- echo stop this procedure, switch to an empty directory, and start over.
- echo ********
- echo To stop, hit control-break. To continue, press any other key.
- pause
-
- echo.
- echo Copying %1\LLIBCR.LIB to LLIBCP.LIB
- copy %1\LLIBCR.LIB LLIBCP.LIB
- echo.
- echo Removing objects from LLIBCP.LIB...
- lib llibcp @instmscr.lis
- echo.
- echo Extracting objects from PROTOMSC.LIB...
- lib protomsc @instmsce.lis
- echo.
- echo Adding objects to LLIBCP.LIB...
- lib llibcp @instmsca.lis
- echo.
- echo Building LLIBCP.LIB...
- lib llibcp +%1\LIBH.LIB +%1\LLIBFA.LIB ;
-
- echo.
- echo Cleaning up...
- del crt0p.obj
- del dospawn.obj
- del growseg.obj
- del int86.obj
- del int86x.obj
- del intdosx.obj
- del memmgr.obj
- del newseg.obj
- del signal.obj
- del spawnve.obj
- del xmm.obj
- del xmmgcs.obj
- del *.bak
- if exist llibcap.lib del llibcap.lib
- ren LLIBCP.LIB LLIBCAP.LIB
-
- echo.
- echo LLIBCAP.LIB can now be used to create protected-mode programs.
- goto done
-
- :usage
- echo Usage: INSTMSC mspath
- echo mspath = disk and directory containing the Microsoft C 6.0 libraries
- echo LIBH.LIB, LLIBFA.LIB, and LLIBCR.LIB
- echo (example: C:\C600\LIB)
- echo Note: LLIBCAP.LIB will be created in the current directory. PROTOMSC.LIB
- echo MUST be in the current directory.
- goto done
-
- :notfound
- echo Error: the files instmsce.LIS, instmscr.LIS and instmsca.LIS must
- echo be in the current directory for this procedure to work correctly.
- echo Please copy the files to this directory and try INSTMSC again.
- goto done
-
- :nolib
- echo Error: Microsoft C 6.0 libraries LIBH.LIB, LLIBFA.LIB, and LLIBCR.LIB
- echo were not found in '%1'.
- echo Please check your command and try again.
- goto done
-
- :noproto
- echo Error: PROTOMSC.LIB must be in the current directory. Please copy
- echo PROTOMSC.LIB to this directory and try INSTMSC again.
- goto done
-
- :done
- echo.