home *** CD-ROM | disk | FTP | other *** search
/ Liren Large Software Subsidy 5 / 05.iso / a / a522 / 30.ddi / INSTMSC.BAT < prev    next >
Encoding:
DOS Batch File  |  1990-09-20  |  2.5 KB  |  91 lines

  1. echo off
  2. echo.
  3.  
  4. if %1#==# goto usage
  5. if not exist instmscr.lis goto notfound
  6. if not exist instmsce.lis goto notfound
  7. if not exist instmsca.lis goto notfound
  8. if not exist protomsc.lib goto noproto
  9. if not exist %1\libh.lib goto nolib
  10. if not exist %1\llibfa.lib goto nolib
  11. if not exist %1\llibcr.lib goto nolib
  12.  
  13.  
  14. echo This batch file creates a protected-mode Microsoft C 6.0 library out of
  15. echo your normal Microsoft C 6.0 library and our protected-mode object files.
  16. echo ********
  17. echo Warning:  this procedure will create LLIBCAP.LIB and several object
  18. echo files in the current directory.
  19. echo If you think this might overwrite files you wish to keep, you should
  20. echo stop this procedure, switch to an empty directory, and start over.
  21. echo ********
  22. echo To stop, hit control-break.  To continue, press any other key.
  23. pause
  24.  
  25. echo.
  26. echo Copying %1\LLIBCR.LIB to LLIBCP.LIB
  27. copy %1\LLIBCR.LIB LLIBCP.LIB
  28. echo.
  29. echo Removing objects from LLIBCP.LIB...
  30. lib llibcp @instmscr.lis
  31. echo.
  32. echo Extracting objects from PROTOMSC.LIB...
  33. lib protomsc @instmsce.lis
  34. echo.
  35. echo Adding objects to LLIBCP.LIB...
  36. lib llibcp @instmsca.lis
  37. echo.
  38. echo Building LLIBCP.LIB...
  39. lib llibcp +%1\LIBH.LIB +%1\LLIBFA.LIB ;
  40.  
  41. echo.
  42. echo Cleaning up...
  43. del crt0p.obj
  44. del dospawn.obj
  45. del growseg.obj
  46. del int86.obj
  47. del int86x.obj
  48. del intdosx.obj
  49. del memmgr.obj
  50. del newseg.obj
  51. del signal.obj
  52. del spawnve.obj
  53. del xmm.obj
  54. del xmmgcs.obj
  55. del *.bak
  56. if exist llibcap.lib del llibcap.lib
  57. ren LLIBCP.LIB LLIBCAP.LIB
  58.  
  59. echo.
  60. echo LLIBCAP.LIB can now be used to create protected-mode programs.
  61. goto done
  62.  
  63. :usage
  64. echo Usage: INSTMSC mspath
  65. echo        mspath = disk and directory containing the Microsoft C 6.0 libraries
  66. echo               LIBH.LIB, LLIBFA.LIB, and LLIBCR.LIB
  67. echo               (example:  C:\C600\LIB)
  68. echo Note:  LLIBCAP.LIB will be created in the current directory.  PROTOMSC.LIB
  69. echo        MUST be in the current directory.
  70. goto done
  71.  
  72. :notfound
  73. echo Error:  the files instmsce.LIS, instmscr.LIS and instmsca.LIS must
  74. echo         be in the current directory for this procedure to work correctly.
  75. echo         Please copy the files to this directory and try INSTMSC again.
  76. goto done
  77.  
  78. :nolib
  79. echo Error:  Microsoft C 6.0 libraries LIBH.LIB, LLIBFA.LIB, and LLIBCR.LIB
  80. echo         were not found in '%1'.
  81. echo Please check your command and try again.
  82. goto done
  83.  
  84. :noproto
  85. echo Error:  PROTOMSC.LIB must be in the current directory.  Please copy
  86. echo         PROTOMSC.LIB to this directory and try INSTMSC again.
  87. goto done
  88.  
  89. :done
  90. echo.
  91.