\install\install.bat
Installation Program
This program will check to see if the installation makefile and information exist, and report an error if not.
If any parameters are given, (as in "install a:") it will report an error
echo off
check for the parameters
if not "%1"=="" goto error
see if install.inf exists
if not exist install.inf goto error
look for the install.mak
if not exist install.mak goto error
now we'll call make.exe to process install.mak, which will do more checking
make -f install.mak
goto end
report what to do if anything was wrong
:error
echo.
echo please adjust the install.inf to specify source directory and target drive
echo.
goto end
Done!
:end