mirror of
https://github.com/FirebirdSQL/firebird.git
synced 2025-01-23 22:43:04 +01:00
e528997dc7
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
23 lines
310 B
Batchfile
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
|