home *** CD-ROM | disk | FTP | other *** search
/ ProfitPress Mega CDROM2 …eeware (MSDOS)(1992)(Eng) / ProfitPress-MegaCDROM2.B6I / PROG / PASCAL / SYST55C.ZIP / SYST55C.BAT < prev    next >
Encoding:
DOS Batch File  |  1990-11-12  |  1.1 KB  |  41 lines

  1. echo off
  2. rem
  3. rem  -- INSTALLATION PROGRAM FOR TURBO PASCAL 5.5 SYSTEM UNIT --
  4. rem     Shareware by Eagle Performance Software
  5. rem
  6. if not exist TURBO.TPL    goto NOLIB
  7. if not exist SYST55C.TPU  goto NOTPU
  8. if not exist TPUMOVER.EXE goto NOMOVER
  9. if     exist TPL-EPS.TPL  goto ALREADY
  10. if     exist TPL-BOR.TPL  goto ALREADY
  11. if     exist SYSTEM.TPU   goto CLEANUP
  12. copy turbo.tpl tpl-bor.tpl
  13. copy turbo.tpl tpl-eps.tpl
  14. tpumover tpl-eps.tpl /-system.tpu
  15. ren  syst55c.tpu system.tpu
  16. tpumover tpl-eps.tpl /+system.tpu
  17. del  system.tpu
  18. copy tpl-eps.tpl turbo.tpl
  19. echo Installation complete!  Enjoy your faster programs.
  20. echo -- Shareware by Eagle Performance Software --
  21. goto EXIT
  22.  
  23. :NOLIB
  24. echo Your TURBO.TPL library cannot be found.
  25. goto HALT
  26. :NOTPU
  27. echo Your SYST55C.TPU unit cannot be found.
  28. goto HALT
  29. :NOMOVER
  30. echo Your TPUMOVER.EXE program cannot be found.
  31. goto HALT
  32. :CLEANUP
  33. echo The SYSTEM.TPU has not been moved out of your directory.
  34. goto HALT
  35. :ALREADY
  36. echo The library already exists.
  37.  
  38. :HALT
  39. echo The installation has been halted.
  40.  
  41. :EXIT