forked from KolibriOS/kolibrios
c518777ac6
git-svn-id: svn://kolibrios.org@2315 a494cfbc-eb01-0410-851d-a64ba20cac60
162 lines
3.2 KiB
Batchfile
162 lines
3.2 KiB
Batchfile
@echo off
|
|
cls
|
|
set languages=en
|
|
set drivers=3c59x dec21x4x i8255x mtd80x pcnet32 r6040 rtl8029 rtl8139 rtl8169 sis900
|
|
set apps=arpcfg icmp netcfg netstat nslookup synergyc tcpserv telnet tftpc zeroconf
|
|
set libs=network
|
|
set targets=all kernel apps libs drivers clean
|
|
|
|
call :Check_Target %1
|
|
for %%a in (all kernel) do if %%a==%target% call :Check_Lang %2
|
|
call :Target_%target%
|
|
|
|
if ERRORLEVEL 0 goto Exit_OK
|
|
|
|
echo There was an error executing script.
|
|
echo For any help, please send a report.
|
|
pause
|
|
goto :eof
|
|
|
|
|
|
|
|
|
|
:Check_Lang
|
|
set res=%1
|
|
:Check_Lang_loop
|
|
for %%a in (%languages%) do if %%a==%res% set lang=%res%
|
|
if defined lang goto :eof
|
|
|
|
echo Language '%res%' is incorrect
|
|
echo Enter valid language [ %languages% ]:
|
|
|
|
set /P res=">
|
|
goto Check_Lang_loop
|
|
goto :eof
|
|
|
|
:Check_Target
|
|
set res=%1
|
|
:Check_Target_loop
|
|
for %%a in (%targets%) do if %%a==%res% set target=%res%
|
|
if defined target goto :eof
|
|
|
|
echo Target '%res%' is incorrect
|
|
echo Enter valid target [ %targets% ]:
|
|
|
|
set /P res=">
|
|
goto Check_Target_loop
|
|
goto :eof
|
|
|
|
|
|
:Target_kernel
|
|
echo *** building kernel with language '%lang%' ...
|
|
|
|
if not exist bin mkdir bin
|
|
echo lang fix %lang% > lang.inc
|
|
fasm -m 65536 kernel.asm bin\kernel.mnt
|
|
if not %errorlevel%==0 goto :Error_FasmFailed
|
|
erase lang.inc
|
|
goto :eof
|
|
|
|
|
|
:Target_all
|
|
call :Target_kernel
|
|
call :Target_apps
|
|
call :Target_libs
|
|
call :Target_drivers
|
|
goto :eof
|
|
|
|
|
|
:Target_apps
|
|
echo *** building applications ...
|
|
|
|
if not exist bin\apps mkdir bin\apps
|
|
cd applications
|
|
for %%a in (%apps%) do (
|
|
fasm -m 65536 %%a\%%a.asm ..\bin\apps\%%a
|
|
if not %errorlevel%==0 goto :Error_FasmFailed
|
|
)
|
|
cd ..
|
|
|
|
goto :eof
|
|
|
|
|
|
:Target_libs
|
|
echo *** building libraries ...
|
|
|
|
if not exist bin\lib mkdir bin\lib
|
|
cd applications\libraries
|
|
for %%a in (%libs%) do (
|
|
fasm -m 65536 %%a\%%a.asm ..\..\bin\lib\%%a.obj
|
|
if not %errorlevel%==0 goto :Error_FasmFailed
|
|
)
|
|
cd ..\..
|
|
|
|
goto :eof
|
|
|
|
|
|
:Target_drivers
|
|
echo *** building drivers ...
|
|
|
|
if not exist bin\drivers mkdir bin\drivers
|
|
cd drivers
|
|
for %%a in (%drivers%) do (
|
|
fasm -m 65536 %%a.asm ..\bin\drivers\%%a.obj
|
|
if not %errorlevel%==0 goto :Error_FasmFailed
|
|
)
|
|
cd ..
|
|
|
|
|
|
kpack >nul 2>&1
|
|
|
|
if %errorlevel%==9009 goto :Error_KpackFailed
|
|
|
|
echo *
|
|
echo ##############################################
|
|
echo *
|
|
echo Kpack KolibriOS drivers?
|
|
echo *
|
|
|
|
set /P res=[y/n]?
|
|
|
|
if "%res%"=="y" (
|
|
|
|
echo *
|
|
echo Compressing system
|
|
|
|
echo *
|
|
for %%a in (bin\drivers\*.obj) do (
|
|
echo ================== kpack %%a
|
|
kpack %%a
|
|
if not %errorlevel%==0 goto :Error_KpackFailed
|
|
)
|
|
|
|
)
|
|
goto :eof
|
|
|
|
:Target_clean
|
|
echo *** cleaning ...
|
|
rmdir /S /Q bin
|
|
goto :Exit_OK
|
|
|
|
|
|
:Error_FasmFailed
|
|
echo error: fasm execution failed
|
|
erase lang.inc >nul 2>&1
|
|
echo.
|
|
pause
|
|
exit 1
|
|
|
|
:Error_KpackFailed
|
|
echo *** NOTICE ***
|
|
echo If you want to pack all applications you may
|
|
echo place "kpack" in accessible directory or system %PATH%.
|
|
echo You can get this tool from KolibriOS distribution kit.
|
|
pause
|
|
exit 1
|
|
|
|
:Exit_OK
|
|
echo.
|
|
echo all operations have been done
|
|
pause
|
|
exit 0
|