Subversion Repositories Kolibri OS

Rev

Rev 1673 | 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_ENG 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
2174 Albom 9
gcc -c system/ctype.c
10
ld -nostdlib -T kolibri.ld -o shell start.o kolibri.o stdlib.o string.o ctype.o shell.o
1673 Nasarus 11
objcopy shell -O binary
1668 Nasarus 12
erase lang.h start.o shell.o kolibri.o stdlib.o string.o
1673 Nasarus 13
kpack shell
14
move shell bin\eng\
1668 Nasarus 15
copy locale\eng\.shell bin\eng\
16
pause