2003-10-09 19:48:29 +02:00
|
|
|
|
|
|
|
@echo off
|
|
|
|
|
2003-10-15 14:47:31 +02:00
|
|
|
set ERRLEV=0
|
|
|
|
|
2007-07-30 12:56:16 +02:00
|
|
|
if not defined FB_NOCLEAN (call clean_all)
|
2007-09-12 16:05:00 +02:00
|
|
|
:: We do not support debug builds of icu, so we don't pass %1
|
|
|
|
call make_icu
|
2007-02-26 16:18:41 +01:00
|
|
|
if "%ERRLEV%"=="1" goto :END
|
2007-09-10 15:55:54 +02:00
|
|
|
call make_boot %1
|
2007-02-26 16:18:41 +01:00
|
|
|
if "%ERRLEV%"=="1" goto :END
|
2007-09-10 15:55:54 +02:00
|
|
|
call make_all %1
|
2007-02-26 16:18:41 +01:00
|
|
|
if "%ERRLEV%"=="1" goto :END
|
2007-09-10 15:55:54 +02:00
|
|
|
call make_examples %1
|
2007-02-26 16:18:41 +01:00
|
|
|
if "%ERRLEV%"=="1" goto :END
|
|
|
|
pushd ..\install\arch-specific\win32
|
2007-09-11 14:07:35 +02:00
|
|
|
call BuildExecutableInstall ISX ZIP EMB %1
|
2007-02-26 16:18:41 +01:00
|
|
|
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
|