8
0
mirror of https://github.com/FirebirdSQL/firebird.git synced 2025-01-23 19:23:03 +01:00
firebird-mirror/builds/win32/run_all.bat

32 lines
564 B
Batchfile

@echo off
set ERRLEV=0
call clean_all
call make_icu
:: call parse
call make_boot
if "%ERRLEV%"=="1" goto :END2
call make_all
if "%ERRLEV%"=="1" goto :END2
call make_examples
if "%ERRLEV%"=="1" goto :END2
cd ..\install\arch-specific\win32
call BuildExecutableInstall
cd ..\..\..\win32
goto:END2
::===========
: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.
@goto :END2
:END2