2010-06-12 17:41:42 +04:00
|
|
|
#!/bin/bash
|
|
|
|
# This script does for linux the same as build.bat for DOS,
|
|
|
|
# it compiles the KoOS kernel, hopefully ;-)
|
|
|
|
|
|
|
|
echo "lang fix en"
|
|
|
|
echo "lang fix en" > lang.inc
|
|
|
|
mkdir bin
|
2010-08-24 14:05:54 +04:00
|
|
|
fasm -m 65536 midamp.asm ./bin/midamp
|
2010-06-12 17:41:42 +04:00
|
|
|
rm -f lang.inc
|
|
|
|
exit 0
|