8
0
mirror of https://github.com/FirebirdSQL/firebird.git synced 2025-01-23 22:03:03 +01:00
firebird-mirror/builds/win32/run_all.bat
paul_reeves e528997dc7 Prefix (almost) all env vars with FB.
Refactor common code (mostly into set_build_target.bat).
Ensure that all VS2005 x64 output is clearly generated into x64
directories,  and likewise for Win32 output
2007-02-26 15:18:41 +00:00

23 lines
310 B
Batchfile

@echo off
set ERRLEV=0
call clean_all
call make_icu
if "%ERRLEV%"=="1" goto :END
call make_boot
if "%ERRLEV%"=="1" goto :END
call make_all
if "%ERRLEV%"=="1" goto :END
call make_examples
if "%ERRLEV%"=="1" goto :END
pushd ..\install\arch-specific\win32
call BuildExecutableInstall ZIP
popd
goto:END
:END