2010-10-21 01:58:36 +02:00
|
|
|
@echo off
|
|
|
|
echo #define LANG_RUS 1 > lang.h
|
2008-12-14 12:55:46 +01:00
|
|
|
fasm start.asm start.o
|
2013-02-16 12:25:37 +01:00
|
|
|
gcc -c -fno-builtin shell.c
|
|
|
|
gcc -c -fno-builtin system/kolibri.c
|
|
|
|
gcc -c -fno-builtin system/stdlib.c
|
|
|
|
gcc -c -fno-builtin system/string.c
|
|
|
|
gcc -c -fno-builtin system/ctype.c
|
2011-09-12 18:54:25 +02:00
|
|
|
ld -nostdlib -T kolibri.ld -o shell start.o kolibri.o stdlib.o string.o ctype.o shell.o
|
2010-10-24 16:32:14 +02:00
|
|
|
objcopy shell -O binary
|
2012-03-23 19:53:16 +01:00
|
|
|
erase lang.h start.o shell.o kolibri.o stdlib.o string.o ctype.o
|
2010-10-24 16:32:14 +02:00
|
|
|
kpack shell
|
|
|
|
move shell bin\rus\
|
2010-10-21 01:58:36 +02:00
|
|
|
copy locale\rus\.shell bin\rus\
|
2013-02-16 12:25:37 +01:00
|
|
|
pause
|