2003-10-09 19:48:29 +02:00
|
|
|
|
|
|
|
@echo off
|
|
|
|
|
2003-10-15 14:47:31 +02:00
|
|
|
set ERRLEV=0
|
|
|
|
|
2003-09-09 09:51:25 +02:00
|
|
|
call clean_all
|
2006-05-28 03:12:58 +02:00
|
|
|
call make_icu
|
2003-10-19 03:25:36 +02:00
|
|
|
:: call parse
|
2006-05-28 03:12:58 +02:00
|
|
|
call make_boot
|
2003-10-15 14:47:31 +02:00
|
|
|
if "%ERRLEV%"=="1" goto :END2
|
2005-03-09 11:24:32 +01:00
|
|
|
call make_all
|
2003-10-15 14:47:31 +02:00
|
|
|
if "%ERRLEV%"=="1" goto :END2
|
2003-09-09 09:51:25 +02:00
|
|
|
call make_examples
|
2003-10-15 14:47:31 +02:00
|
|
|
if "%ERRLEV%"=="1" goto :END2
|
2003-09-09 09:51:25 +02:00
|
|
|
cd ..\install\arch-specific\win32
|
|
|
|
call BuildExecutableInstall
|
2003-10-09 19:48:29 +02:00
|
|
|
cd ..\..\..\win32
|
|
|
|
|
2003-10-15 14:47:31 +02:00
|
|
|
goto:END2
|
|
|
|
|
2003-10-09 19:48:29 +02:00
|
|
|
::===========
|
|
|
|
:HELP
|
|
|
|
@echo.
|
|
|
|
@echo Build process need the FIREBIRD environment variable set to work.
|
|
|
|
@echo FIREBIRD value should be the root directory of your Firebird installation.
|
|
|
|
@echo Example:
|
|
|
|
@echo c:\program files\firebird
|
|
|
|
@echo.
|
2003-10-09 20:06:55 +02:00
|
|
|
@goto :END2
|
2003-10-09 19:48:29 +02:00
|
|
|
|
2003-10-09 20:06:55 +02:00
|
|
|
:END2
|