home *** CD-ROM | disk | FTP | other *** search
INSTALL Professional project | 1992-06-04 | 6.5 KB | 213 lines |
- @DefineProject
- @Name ="286|DOS-Extender Lite"
- @Version ="2.5"
- @Subdir ="\\LITE286"
- @OutDrive = Z
- @Requires 1000000
- @EndProject
-
- @DefineVars
- @Qstring @Space = "1 MB"
- @EndVars
-
- @Display
- @CLS
-
- This program installs @NAME
- on your computer system.
-
- You can specify the drive and directory where you want to
- install @NAME. If the directory you choose
- does not exist, it will be created for you.
-
- Each screen of this program offers a choice and a default response.
- Press the RETURN key to accept the default. Otherwise type or
- select another response and then press the RETURN key.
- If you make a mistake while typing, press the BACKSPACE key
- and retype the entry.
-
- You can press the ESC key at any time to cancel installation
- and return to the operating system.
-
- @PAUSE
- @EndDisplay
-
- @GetOutDrive
- @Suppress A
- @Suppress B
- @Cls
- Please specify the disk drive upon which you wish
- to install @NAME.
-
-
-
-
-
-
-
-
-
-
-
-
-
- @Name requires about @Space of free disk space.
-
- Use the [Up Arrow], [Down Arrow], [Pg Up], & [Pg Dn] keys to move the
- bar to the disk drive you wish to install to and then press the
- [Enter] key.
- @EndOutDrive
-
- @GetSubdir
- @CLS
- Please specify the directory name where @NAME
- will be installed. By default, the name of this directory is:
-
- @SUBDIR
-
- The program locates it below the root directory of the disk
- drive you selected. If you have no preference, choose the
- default by pressing the RETURN key.
-
- To change the directory name, backspace over the directory name
- and type a new name. Press the RETURN key when you have finished
- typing the name.
-
-
-
-
-
-
- @PROMPT = "Which subdirectory ?"
- @EndSubdir
-
- @IF (@EXISTS "@OutDrive:@SubDir\\BIN\\LITE286.EXE" == 1)
- @GetOption
- Apparently @NAME has already been installed in:
- @OutDrive:@SubDir
-
-
-
-
-
-
-
- Do you want to continue installing @NAME
- over the files in this directory?
-
- Use the [Up Arrow], [Down Arrow], [Pg Up], & [Pg Dn] keys to move the
- bar to the option you wish to select and then press the [Enter] key.
- @Option 1 = "Yes"
- @Option 2 = "No"
- @EndOption
- @Endif
-
- @Display
- @If(2 [= @Option)
- Aborting installation.
-
- @Abort
- @Endif
- @EndDisplay
-
- /* Disk Blocks Go Here */
- /* Define Disk Block Disk 1 */
- @DefineDisk
- @Label = "286|DOS-Extender Lite Disk 1"
- /* First, the regular BIN stuff */
- @File bin\cfig286.exe @Out bin\cfig286.exe
- @File bin\doscalls.dll @Out bin\doscalls.dll
- @File bin\gorun286.exe @Out bin\gorun286.exe
- @File bin\int33.dll @Out bin\int33.dll
- @File bin\kbdcalls.dll @Out bin\kbdcalls.dll
- @File bin\lite286.exe @Out bin\lite286.exe
- @File bin\moucalls.dll @Out bin\moucalls.dll
- @File bin\pharlap.386 @Out bin\pharlap.386
- @File bin\tellme.exe @Out bin\tellme.exe
- @File bin\tellprot.exe @Out bin\tellprot.exe
- @File bin\viocalls.dll @Out bin\viocalls.dll
-
- /* Now, the BORLAND bin stuff */
- @File bin\bcc286.exe @Out bin\bcc286.exe
- @File bin\kernel.dll @Out bin\kernel.dll
- @File bin\keyboard.dll @Out bin\keyboard.dll
- @File bin\user.dll @Out bin\user.dll
-
- /* And the BORLAND lib stuff */
- @File bc3\lib\c0dll.obj @Out bc3\lib\c0dll.obj
- @File bc3\lib\c0pl.obj @Out bc3\lib\c0pl.obj
- @File bc3\lib\c0pldll.obj @Out bc3\lib\c0pldll.obj
- @File bc3\lib\c0rldll.obj @Out bc3\lib\c0rldll.obj
- @File bc3\lib\dll30.def @Out bc3\lib\dll30.def
- @File bc3\lib\dll30.lib @Out bc3\lib\dll30.lib
- @File bc3\lib\emu286.lib @Out bc3\lib\emu286.lib
- @File bc3\lib\extmods.lbc @Out bc3\lib\extmods.lbc
- @File bc3\lib\fp286.lib @Out bc3\lib\fp286.lib
- @File bc3\lib\fpdmy.obj @Out bc3\lib\fpdmy.obj
- @File bc3\lib\gluebuff.asm @Out bc3\lib\gluebuff.asm
- @File bc3\lib\grph30.lib @Out bc3\lib\grph30.lib
- @File bc3\lib\insmods.lbc @Out bc3\lib\insmods.lbc
- @File bc3\lib\mkgraph.bat @Out bc3\lib\mkgraph.bat
- @File bc3\lib\mklib.bat @Out bc3\lib\mklib.bat
- @File bc3\lib\phapi.lib @Out bc3\lib\phapi.lib
- @File bc3\lib\remobjs.bat @Out bc3\lib\remobjs.bat
- @File bc3\lib\tmpl.lib @Out bc3\lib\tmpl.lib
-
- /* The Lite version of phapi.h */
- @File inc\phapi.h @Out inc\phapi.h
-
- /* Example programs */
- @File examples\big.c @Out examples\big.c
- @File examples\big.exe @Out examples\big.exe
- @File examples\dosmem.c @Out examples\dosmem.c
- @File examples\dosmem.exe @Out examples\dosmem.exe
- @File examples\fullscrn.c @Out examples\fullscrn.c
- @File examples\fullscrn.h @Out examples\fullscrn.h
- @File examples\keys.c @Out examples\keys.c
- @File examples\keys.exe @Out examples\keys.exe
- @File examples\makeall.bat @Out examples\makeall.bat
- @File examples\makefile @Out examples\makefile
- @File examples\memtest.c @Out examples\memtest.c
- @File examples\memtest.exe @Out examples\memtest.exe
- @File examples\memtest2.cpp @Out examples\memtest2.cpp
- @File examples\memtest2.exe @Out examples\memtest2.exe
- @File examples\vidtest.c @Out examples\vidtest.c
- @File examples\vidtest.exe @Out examples\vidtest.exe
- @File examples\hello.c @Out examples\hello.c
-
- /* Random things with which to clutter a disk */
- @File doc\lite286.doc @Out doc\lite286.doc
- @File doc\order.frm @Out doc\order.frm
- @File doc\intl.dlr @Out doc\intl.dlr
- @File doc\liteinfo @Out doc\liteinfo
- @File doc\license.doc @Out doc\license.doc
- @File readme.1st @Out readme.1st
- @File readme.1st @Out doc\readme.1st
-
- @EndDisk
-
-
- @Finish
-
- Congratulations! You've just installed your FREE copy of 286|DOS-Extender
- Lite, a special Borland C++ version of Phar Lap Software's award-winning
- 286|DOS-Extender SDK -- the most widely used 16-bit DOS extender available.
- This package includes everything you need to get started building multi-
- megabyte Borland C++ applications. With 286|DOS-Extender Lite, your
- programs can break the 640K DOS barrier, access up to 2 MB of memory, and
- run under DOS, DESQview and Windows.
-
- @Name has been installed in @OutDrive:@Subdir. You should
- continue with Step 2 of the installation process. Step 2 uses
- MKLIB.BAT to create BCL286.LIB. More complete instructions can be
- found in @OutDrive:@Subdir\README.1ST.
-
- Complete instrucions for using @Name can be found in
- @OutDrive:@Subdir\DOC\LITE286.DOC.
-
- Thank you for using Phar Lap's 286|DOS-Extender Lite.
-
- @EndFinish
-
- /* end-of-file */
-