forked from KolibriOS/kolibrios
762c577e6a
git-svn-id: svn://kolibrios.org@2502 a494cfbc-eb01-0410-851d-a64ba20cac60
14 lines
372 B
Batchfile
14 lines
372 B
Batchfile
@echo off
|
|
fasm start.asm start.o
|
|
gcc -c test.c
|
|
gcc -c system/kolibri.c
|
|
gcc -c system/stdlib.c
|
|
gcc -c system/string.c
|
|
gcc -c system/ctype.c
|
|
ld -nostdlib -T kolibri.ld -o test start.o kolibri.o stdlib.o string.o ctype.o test.o
|
|
objcopy test -O binary
|
|
erase start.o kolibri.o stdlib.o string.o ctype.o test.o
|
|
kpack test
|
|
copy test bin\eng\
|
|
move test bin\rus\
|
|
pause |