mirror of
https://github.com/FirebirdSQL/firebird.git
synced 2025-01-23 22:03:03 +01:00
31 lines
550 B
Batchfile
31 lines
550 B
Batchfile
|
|
@echo off
|
|
|
|
set ERRLEV=0
|
|
|
|
call clean_all
|
|
call make_icu
|
|
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
|