home *** CD-ROM | disk | FTP | other *** search
/ Monster Media 1994 #1 / monster.zip / monster / PROG_C / RUKC1D.ZIP / BORLAND.ZIP / INSTALLB.BAT < prev    next >
DOS Batch File  |  1994-02-27  |  1KB  |  31 lines

  1. @echo off
  2. REM use /B for mono video systems, as in INSTALL /b
  3. cls
  4. echo RUCKUS 1.0d Install for Borland C/C++ Compilers
  5. echo.
  6. echo To install RUCKUS, the library files must first be extracted and built.
  7. echo Two install runs are made: one for RUCKUS-DAC and RUCKUS-MIDI. These
  8. echo files are for large- or huge-model use only, and only needed by
  9. echo Borland C/C++ compilers when using these memory models. For medium-
  10. echo model use, the standard library files should be used.
  11. echo.
  12. echo The library files created are similar to the standard files except
  13. echo that the filename end with an L: RUCKDAC.LIB is RUCKDACL.LIB, and
  14. echo RUCKMIDI.LIB is RUCKMIDL.LIB.
  15. echo.
  16. pause
  17. instruck RUCKDACL %1
  18. if errorlevel==1 goto nogo
  19. instruck RUCKMIDL %1
  20. if errorlevel==1 goto nogo
  21. echo.
  22. echo Installation was a success. Refer to the documentation under Appendix C.
  23. echo for further installation procedures."
  24. echo.
  25. goto endit
  26. :nogo
  27. echo.
  28. echo Installation failed to complete. 
  29. :endit
  30.  
  31.