Subversion Repositories Kolibri OS

Rev

Rev 1673 | Go to most recent revision | Only display areas with differences | Regard whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 1673 Rev 2174
1
@echo off
1
@echo off
2
erase shell.kex lang.h
2
erase shell.kex lang.h
3
echo #define LANG_ENG 1 > lang.h
3
echo #define LANG_ENG 1 > lang.h
4
fasm start.asm start.o
4
fasm start.asm start.o
5
gcc -c shell.c
5
gcc -c shell.c
6
gcc -c system/kolibri.c
6
gcc -c system/kolibri.c
7
gcc -c system/stdlib.c
7
gcc -c system/stdlib.c
8
gcc -c system/string.c
8
gcc -c system/string.c
-
 
9
gcc -c system/ctype.c
9
ld -nostdlib -T kolibri.ld -o shell start.o kolibri.o stdlib.o string.o shell.o
10
ld -nostdlib -T kolibri.ld -o shell start.o kolibri.o stdlib.o string.o ctype.o shell.o
10
objcopy shell -O binary
11
objcopy shell -O binary
11
erase lang.h start.o shell.o kolibri.o stdlib.o string.o
12
erase lang.h start.o shell.o kolibri.o stdlib.o string.o
12
kpack shell
13
kpack shell
13
move shell bin\eng\
14
move shell bin\eng\
14
copy locale\eng\.shell bin\eng\
15
copy locale\eng\.shell bin\eng\
15
pause
16
pause