1
0
mirror of https://github.com/KolibriOS/kolibrios.git synced 2024-12-14 10:57:08 +03:00
kolibrios/programs/system/shell/compile.bat

7 lines
187 B
Batchfile
Raw Normal View History

del shell.kex
del shell.o
fasm start.asm start.o
gcc -c shell.c
ld -nostdlib -T kolibri.ld -o shell.kex start.o kolibri.o stdlib.o string.o shell.o
objcopy shell.kex -O binary
pause