home *** CD-ROM | disk | FTP | other *** search
- @echo off
- cls
- echo BLACKSTAR C LIBRARY INSTALLATION
- echo **************************************************************************
- echo * *
- echo * Install the Blackstar C library from drive %1 to the current drive. *
- echo * *
- echo * This routine assumes that the Blackstar C library diskette is in *
- echo * drive %1 and that the library is to be installed in the current *
- echo * directory. *
- echo * *
- echo * If your floppy drive is not %1, then abort this installation *
- echo * (by pressing Ctrl-Break or Ctrl-C) and specify the drive on *
- echo * the command line. For instance, to install the compiler from *
- echo * drive B:, run *
- echo * b:install b: *
- echo * (Be sure to supply the ':'.) *
- echo * *
- echo **************************************************************************
- echo
- pause
- if "%2" == "%1" goto THESAME
- if not "%2" == ".\" goto DISK1OK
- %1ensure %1
- if errorlevel 2 if not errorlevel 3 echo Could not determine current drive -- continuing anyway
- if errorlevel 2 if not errorlevel 3 goto DISK1OK
- if errorlevel 0 if not errorlevel 1 goto DISK1OK
- :THESAME
- echo
- echo THE TARGET DISK IS THE SAME AS THE DISTRIBUTION DISK -- HALTING INSTALLATION
- echo The target disk (the current drive) is the same drive as the distribution
- echo diskette. You MUST run this installation program from the drive and
- echo directory in which you wish the compiler installed.
- goto FINIS
-
- :DISK1OK
- if exist %1\lib\clibs.lib goto START
- echo
- echo **********************************************************************
- echo * Please place the Blackstar C library diskette in your %1 drive *
- echo **********************************************************************
- echo The disk in drive %1 is not the Blackstar C diskette. Please put the
- echo Blackstar C diskette in drive %1, and
- pause
- goto DISK1OK
- :START
- cls
- %1find %2 -attr- r
- echo
- echo Copying include, batch, and miscellaneous files...
- echo
- %1find %1readme %1demos %1inc %1source %1utils -cp %2 -t
- echo
- echo You may install either the x86 or the 386 libraries.
- %1ask Would you like to install the x86 libraries now?
- if not errorlevel 1 goto no86lib
- echo
- %1find %1lib\clibs.lib %1lib\clibm.lib %1lib\clibl.lib %1lib\clibb.lib %1lib\clibc.lib -cp %2 -t
- %1find %1lib\ibmlibs.lib %1lib\ibmlibm.lib %1lib\ibmlibl.lib %1lib\ibmlibb.lib %1lib\ibmlibc.lib -cp %2 -t
- :no86lib
- echo
- %1ask Would you like to install the 386 libraries now?
- if not errorlevel 1 goto no386lib
- echo
- %1find %1lib\ibmlib3.lib %1lib\clib3.lib %1lib\clibg3.lib %1lib\ibmlibg3.lib -cp %2 -t
- echo
- :no386lib
- if exist find.exe del find.exe
- if exist ensure.exe del ensure.exe
- if exist install.bat del install.bat
- if exist install1.bat del install1.bat
- if exist ask.com del ask.com
- echo
- echo Installation complete.
-
- :FINIS
-