home *** CD-ROM | disk | FTP | other *** search
/ C!T ROM 2 / ctrom_ii_b.zip / ctrom_ii_b / DOS / GRAFISCH / RAYTRACE / CRENDER / INSTALL.BAT < prev   
DOS Batch File  |  1992-01-30  |  835b  |  31 lines

  1. @echo off
  2. echo.
  3. echo CRNDR V1.5 Installation
  4. echo.
  5. if "%1"=="320" goto inst320
  6. if "%1"=="640" goto inst640
  7. echo This is a very simple batch file that lets you comfortably install the version
  8. echo you would like to use.
  9. echo.
  10. echo To use this batch file you must specify the resolution. Call like this:
  11. echo.
  12. echo   install 320             - to make the 320x200 files the default.
  13. echo.
  14. echo       OR
  15. echo.
  16. echo   install 640             - to make the 640x480 files the default.
  17. echo.
  18. goto endinst
  19. :inst320
  20. rem I told you this is a simple batch !!
  21. CPRE.EXE -CCRNDR320.CFG TRACE.PRE
  22. copy CRNDR320.CFG CRNDR.CFG >NUL
  23. echo 320x200 files installed.
  24. goto endinst
  25. :inst640
  26. CPRE.EXE -CCRNDR640.CFG TRACE.PRE
  27. copy CRNDR640.CFG CRNDR.CFG >NUL
  28. copy TRACE640.PRE TRACE.PRE >NUL
  29. echo 640x480 files installed.
  30. :endinst
  31.