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
2502 Albom 1
@echo off
2
fasm start.asm start.o
3245 Albom 3
gcc -c -fno-builtin test.c
4
gcc -c -fno-builtin system/kolibri.c
5
gcc -c -fno-builtin system/stdlib.c
6
gcc -c -fno-builtin system/string.c
7
gcc -c -fno-builtin system/ctype.c
2502 Albom 8
ld -nostdlib -T kolibri.ld -o test start.o kolibri.o stdlib.o string.o ctype.o test.o
9
objcopy test -O binary
10
erase start.o kolibri.o stdlib.o string.o ctype.o test.o
11
kpack test
12
copy test bin\eng\
13
move test bin\rus\
3245 Albom 14
pause