Subversion Repositories Kolibri OS

Rev

Rev 2323 | 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_ENG 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
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\eng\
1668 Nasarus 14
copy locale\eng\.shell bin\eng\
3245 Albom 15
pause