forked from KolibriOS/kolibrios
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
|