home *** CD-ROM | disk | FTP | other *** search
- echo off
- rem
- rem -- INSTALLATION PROGRAM FOR TURBO PASCAL 5.5 SYSTEM UNIT --
- rem Shareware by Eagle Performance Software
- rem
- if not exist TURBO.TPL goto NOLIB
- if not exist SYST55C.TPU goto NOTPU
- if not exist TPUMOVER.EXE goto NOMOVER
- if exist TPL-EPS.TPL goto ALREADY
- if exist TPL-BOR.TPL goto ALREADY
- if exist SYSTEM.TPU goto CLEANUP
- copy turbo.tpl tpl-bor.tpl
- copy turbo.tpl tpl-eps.tpl
- tpumover tpl-eps.tpl /-system.tpu
- ren syst55c.tpu system.tpu
- tpumover tpl-eps.tpl /+system.tpu
- del system.tpu
- copy tpl-eps.tpl turbo.tpl
- echo Installation complete! Enjoy your faster programs.
- echo -- Shareware by Eagle Performance Software --
- goto EXIT
-
- :NOLIB
- echo Your TURBO.TPL library cannot be found.
- goto HALT
- :NOTPU
- echo Your SYST55C.TPU unit cannot be found.
- goto HALT
- :NOMOVER
- echo Your TPUMOVER.EXE program cannot be found.
- goto HALT
- :CLEANUP
- echo The SYSTEM.TPU has not been moved out of your directory.
- goto HALT
- :ALREADY
- echo The library already exists.
-
- :HALT
- echo The installation has been halted.
-
- :EXIT