2003-10-09 19:48:29 +02:00
|
|
|
|
|
|
|
@echo off
|
|
|
|
|
2003-10-15 14:47:31 +02:00
|
|
|
set ERRLEV=0
|
|
|
|
|
2003-09-09 09:51:25 +02:00
|
|
|
call clean_all
|
2006-05-28 02:54:07 +02:00
|
|
|
call make_icu
|
2007-02-26 16:18:41 +01:00
|
|
|
if "%ERRLEV%"=="1" goto :END
|
2006-05-28 02:54:07 +02:00
|
|
|
call make_boot
|
2007-02-26 16:18:41 +01:00
|
|
|
if "%ERRLEV%"=="1" goto :END
|
|
|
|
call make_all
|
|
|
|
if "%ERRLEV%"=="1" goto :END
|
2003-09-09 09:51:25 +02:00
|
|
|
call make_examples
|
2007-02-26 16:18:41 +01:00
|
|
|
if "%ERRLEV%"=="1" goto :END
|
|
|
|
pushd ..\install\arch-specific\win32
|
|
|
|
call BuildExecutableInstall ZIP
|
|
|
|
popd
|
2003-10-09 19:48:29 +02:00
|
|
|
|
2007-02-26 16:18:41 +01:00
|
|
|
goto:END
|
2003-10-15 14:47:31 +02:00
|
|
|
|
2003-10-09 19:48:29 +02:00
|
|
|
|
2007-02-26 16:18:41 +01:00
|
|
|
:END
|