home *** CD-ROM | disk | FTP | other *** search
- @echo off
- rem sinstall.bat
- rem C-scape library source installation batch file - By Ted 11/01/90
- rem
- rem C-scape 3.2
- rem Copyright (c) 1986-1989, by Oakland Group, Inc.
- rem ALL RIGHTS RESERVED.
- rem
- rem Revision History:
- rem -----------------
- rem 12/17/90 mla added code for 3.5" disks
- rem 12/31/90 jmd added -o flag to self-extractors
- rem
-
- if %1x==x goto banner
- goto start1
- :banner
-
- echo .
- echo . INSTALLATION BATCH FILE FOR CSCAPE 3.2 SOURCE - INSTRUCTIONS:
- echo .
- echo . 1) Change to the drive and directory with the C-scape source diskette.
- echo . (Normally drive A: with the C-scape source disk in it.)
- echo .
- echo . 2) Enter the SINSTALL command with the drive and directory where you want
- echo . the C-scape source to go. (Normally C:\cscape\source)
- echo .
- echo . USAGE EXAMPLE:
- echo .
- echo . To install C-scape source files on Drive C: in directory \CSCAPE\SOURCE:
- echo . SINSTALL C:\CSCAPE\SOURCE
- echo .
-
- goto end
-
- :start1
-
- echo :
- echo . About to install C-scape source files in %1
- echo . About to install library rebuilding batch files in %1
- pause
-
- rem Execute the self-unzipping C-scape files w/ output to the destination drive.
- rem use overwrite flag (-o) to prevent complaint about field function source
- cssrc -o -d %1
- owlsrc -o -d %1
-
- goto ckcomp
- :getcomp
- echo :
- echo . Remove disk1 and insert disk2 to install the compile batch files.
- pause
-
- rem NOTE: the following library installation works for either the 1-disk
- rem set of 5 1/4" disks or the 2-disk set of 3 1/2" disks. It depends
- rem on the fact that compile.exe is not on the first disk of the 2-disk
- rem set.
-
- :ckcomp
- if NOT EXIST compile.exe goto getcomp
- compile -d %1
-
- echo :
- echo . Installed C-scape source files in %1
- echo . Installed library rebuilding batch files in %1
- echo :
-
- :end
-
-