mirror of
https://github.com/FirebirdSQL/firebird.git
synced 2025-01-23 05:23:03 +01:00
24 lines
420 B
Batchfile
24 lines
420 B
Batchfile
|
|
@echo off
|
|
|
|
set ERRLEV=0
|
|
|
|
if not defined FB_NOCLEAN (call clean_all)
|
|
:: We do not support debug builds of icu, so we don't pass %1
|
|
call make_icu
|
|
if "%ERRLEV%"=="1" goto :END
|
|
call make_boot %1
|
|
if "%ERRLEV%"=="1" goto :END
|
|
call make_all %1
|
|
if "%ERRLEV%"=="1" goto :END
|
|
call make_examples %1
|
|
if "%ERRLEV%"=="1" goto :END
|
|
pushd ..\install\arch-specific\win32
|
|
call BuildExecutableInstall ISX ZIP EMB %1
|
|
popd
|
|
|
|
goto:END
|
|
|
|
|
|
:END
|