2010-09-04 23:44:44 +00:00
|
|
|
#!/bin/bash
|
|
|
|
# This script does for linux the same as build.bat for DOS,
|
|
|
|
# it compiles the KoOS kernel, hopefully ;-)
|
|
|
|
|
2024-06-03 00:34:02 +01:00
|
|
|
echo "lang fix en_US"
|
|
|
|
echo "lang fix en_US" > lang.inc
|
2010-09-04 23:44:44 +00:00
|
|
|
fasm -m 16384 mousemul.asm mousemul
|
|
|
|
rm -f lang.inc
|
|
|
|
exit 0
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|