2010-06-12 15:41:42 +02: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 12:05:54 +02:00
|
|
|
fasm -m 65536 midamp.asm ./bin/midamp
|
2010-06-12 15:41:42 +02:00
|
|
|
rm -f lang.inc
|
|
|
|
exit 0
|