kolibrios/programs/system/shell/compile_eng.bat
Albom de6e26f7d9 Shell: CapsLock and Shift keys
git-svn-id: svn://kolibrios.org@2174 a494cfbc-eb01-0410-851d-a64ba20cac60
2011-09-12 16:54:25 +00:00

16 lines
449 B
Batchfile

@echo off
erase shell.kex lang.h
echo #define LANG_ENG 1 > lang.h
fasm start.asm start.o
gcc -c shell.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 shell start.o kolibri.o stdlib.o string.o ctype.o shell.o
objcopy shell -O binary
erase lang.h start.o shell.o kolibri.o stdlib.o string.o
kpack shell
move shell bin\eng\
copy locale\eng\.shell bin\eng\
pause