Fix build.sh

git-svn-id: svn://kolibrios.org@3269 a494cfbc-eb01-0410-851d-a64ba20cac60
This commit is contained in:
Marat Zakiyanov (Mario79) 2013-02-24 11:02:33 +00:00
parent 2a7660964a
commit ac6e97fffd

View File

@ -1,11 +1,11 @@
#!/bin/bash
# This script does for linux the same as build.bat for DOS,
# it compiles the KoOS kernel, hopefully ;-)
# it compiles the program, hopefully ;-)
echo "lang fix en"
echo "lang fix en" > lang.inc
fasm -m 16384 kfm.asm kfm
kpack kfm
fasm -m 16384 tinypad.asm tinypad
kpack tinypad
rm -f lang.inc
exit 0