home *** CD-ROM | disk | FTP | other *** search
/ Liren Large Software Subsidy 7 / 07.iso / c / c222 / 1.ddi / INSTALL1.BAT < prev    next >
Encoding:
DOS Batch File  |  1991-01-24  |  3.3 KB  |  77 lines

  1. @echo off
  2. cls
  3. echo                       BLACKSTAR C LIBRARY INSTALLATION
  4. echo ************************************************************************** 
  5. echo *                                                                        *
  6. echo *   Install the Blackstar C library from drive %1 to the current drive.  *
  7. echo *                                                                        *
  8. echo *   This routine assumes that the Blackstar C library diskette is in     *
  9. echo *   drive %1 and that the library is to be installed in the current      *
  10. echo *   directory.                                                           *
  11. echo *                                                                        *
  12. echo *   If your floppy drive is not %1, then abort this installation         *
  13. echo *   (by pressing Ctrl-Break or Ctrl-C) and specify the drive on          *
  14. echo *   the command line.  For instance, to install the compiler from        *
  15. echo *   drive B:, run                                                        *
  16. echo *          b:install b:                                                  *
  17. echo *   (Be sure to supply the ':'.)                                         *
  18. echo *                                                                        *
  19. echo **************************************************************************
  20. echo 
  21. pause
  22. if "%2" == "%1" goto THESAME
  23. if not "%2" == ".\" goto DISK1OK
  24. %1ensure %1
  25. if errorlevel 2 if not errorlevel 3 echo Could not determine current drive -- continuing anyway
  26. if errorlevel 2 if not errorlevel 3 goto DISK1OK
  27. if errorlevel 0 if not errorlevel 1 goto DISK1OK
  28. :THESAME
  29. echo 
  30. echo THE TARGET DISK IS THE SAME AS THE DISTRIBUTION DISK -- HALTING INSTALLATION
  31. echo The target disk (the current drive) is the same drive as the distribution
  32. echo diskette.  You MUST run this installation program from the drive and
  33. echo directory in which you wish the compiler installed.
  34. goto FINIS
  35.  
  36. :DISK1OK
  37. if exist %1\lib\clibs.lib goto START
  38. echo  
  39. echo **********************************************************************
  40. echo *   Please place the Blackstar C library diskette in your %1 drive   *
  41. echo **********************************************************************
  42. echo The disk in drive %1 is not the Blackstar C diskette.  Please put the
  43. echo Blackstar C diskette in drive %1, and
  44. pause
  45. goto DISK1OK
  46. :START
  47. cls
  48. %1find %2 -attr- r
  49. echo  
  50. echo Copying include, batch, and miscellaneous files...
  51. echo  
  52. %1find %1readme %1demos %1inc %1source %1utils -cp %2 -t
  53. echo 
  54. echo   You may install either the x86 or the 386 libraries.
  55. %1ask   Would you like to install the x86 libraries now?
  56. if not errorlevel 1 goto no86lib
  57. echo  
  58. %1find %1lib\clibs.lib %1lib\clibm.lib %1lib\clibl.lib %1lib\clibb.lib %1lib\clibc.lib -cp %2 -t
  59. %1find %1lib\ibmlibs.lib %1lib\ibmlibm.lib %1lib\ibmlibl.lib %1lib\ibmlibb.lib %1lib\ibmlibc.lib -cp %2 -t
  60. :no86lib
  61. echo 
  62. %1ask    Would you like to install the 386 libraries now?
  63. if not errorlevel 1 goto no386lib
  64. echo  
  65. %1find %1lib\ibmlib3.lib %1lib\clib3.lib %1lib\clibg3.lib %1lib\ibmlibg3.lib -cp %2 -t
  66. echo  
  67. :no386lib
  68. if exist find.exe del find.exe
  69. if exist ensure.exe del ensure.exe
  70. if exist install.bat del install.bat
  71. if exist install1.bat del install1.bat
  72. if exist ask.com del ask.com
  73. echo 
  74. echo   Installation complete.
  75.  
  76. :FINIS
  77.