home *** CD-ROM | disk | FTP | other *** search
/ Sunny 1,000 Collection / SUNNY1000.iso / Files / W31 / Puzzle / CBMT245.ZIP / INSTALL.BAT < prev    next >
DOS Batch File  |  1996-04-20  |  972b  |  35 lines

  1. @echo off
  2. if "%1"=="" goto usage
  3. md %1
  4. rem put copying files here
  5. echo .......copying executable CLUBMATE.EXE
  6. copy clubmate.exe %1
  7. echo .......copying binary file CLUBMATE.BIN
  8. copy clubmate.bin %1
  9. echo .......copying Windows ini file CLUBMATE.INI
  10. copy clubmate.ini %1
  11. echo .......copying Windows help file CLUBMATE.HLP
  12. copy clubmate.hlp %1
  13. echo .......copying ECO key file ECO.KEY
  14. copy eco.key %1
  15. echo .......copying registration form REGISTER.WRI
  16. copy register.wri %1
  17. echo .......copying tutorial files TUTORIAL.DOC and TUTORIAL.TXT
  18. copy tutorial.doc %1
  19. copy tutorial.txt %1
  20. echo .......copying games files
  21. copy *.gms %1
  22. echo .......copying position files
  23. copy *.pos %1
  24. echo .......copying ascii format files
  25. copy *.fmt %1
  26. echo .......copying readme files
  27. copy readme.* %1
  28. rem no need to alter the .ini file - program does it
  29. echo ClubMate installed
  30. goto exit
  31. :usage
  32. echo type install [clubmate path]
  33. echo e.g. install c:\clubmate
  34. :exit
  35.