30 lines
748 B
Batchfile
30 lines
748 B
Batchfile
@echo off
|
|
: ---------------------------------------------------------------------
|
|
: WARNING WARNING WARNING WARNING WARNING WARNING
|
|
:
|
|
: Please read the help before using this batch file as there are
|
|
: some special parameters
|
|
:
|
|
: ---------------------------------------------------------------------
|
|
SET DELDIR=%1
|
|
if %DELDIR%!==! SET DELDIR=C:\PROGRA~1\Delphi7
|
|
|
|
call MakeDelphi d7
|
|
SET DELDIR=
|
|
|
|
goto end
|
|
|
|
:help
|
|
echo MakeD7.bat - Builds the JVCL for Delphi 7
|
|
echo.
|
|
echo Usage: MakeD7 [DelphiDirectory]
|
|
echo.
|
|
echo DelphiDirectory The place where Delphi is installed.
|
|
echo Defaults to "C:\Program Files\Delphi7"
|
|
echo.
|
|
echo Any additional argument will be ignored
|
|
echo.
|
|
:end
|
|
|
|
|