2010-03-08 17:57:35 +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-03-08 17:57:35 +00:00
|
|
|
mkdir bin
|
|
|
|
fasm -m 16384 heed.asm ./bin/heed
|
2011-01-19 20:05:36 +00:00
|
|
|
kpack ./bin/heed
|
2010-03-08 17:57:35 +00:00
|
|
|
rm -f lang.inc
|
|
|
|
exit 0
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|