Subversion Repositories Kolibri OS

Rev

Rev 2502 | Go to most recent revision | Details | Compare with Previous | Last modification | View Log | RSS feed

Rev Author Line No. Line
1668 Nasarus 1
@echo off
2
echo #define LANG_RUS 1 > lang.h
3
fasm start.asm start.o
3245 Albom 4
gcc -c -fno-builtin shell.c
5
gcc -c -fno-builtin system/kolibri.c
6
gcc -c -fno-builtin system/stdlib.c
7
gcc -c -fno-builtin system/string.c
8
gcc -c -fno-builtin system/ctype.c
2174 Albom 9
ld -nostdlib -T kolibri.ld -o shell start.o kolibri.o stdlib.o string.o ctype.o shell.o
1673 Nasarus 10
objcopy shell -O binary
2502 Albom 11
erase lang.h start.o shell.o kolibri.o stdlib.o string.o ctype.o
1673 Nasarus 12
kpack shell
13
move shell bin\rus\
1668 Nasarus 14
copy locale\rus\.shell bin\rus\
3245 Albom 15
pause