Subversion Repositories Kolibri OS

Rev

Rev 1668 | 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
erase shell.kex lang.h
3
echo #define LANG_RUS 1 > lang.h
4
fasm start.asm start.o
5
gcc -c shell.c
6
gcc -c system/kolibri.c
7
gcc -c system/stdlib.c
8
gcc -c system/string.c
1673 Nasarus 9
ld -nostdlib -T kolibri.ld -o shell start.o kolibri.o stdlib.o string.o shell.o
10
objcopy shell -O binary
1668 Nasarus 11
erase lang.h start.o shell.o kolibri.o stdlib.o string.o
1673 Nasarus 12
kpack shell
13
move shell bin\rus\
1668 Nasarus 14
copy locale\rus\.shell bin\rus\
15
pause