2010-03-08 18:57:35 +01:00
|
|
|
#!/bin/bash
|
|
|
|
# This script does for linux the same as build.bat for DOS,
|
|
|
|
# it compiles the KoOS kernel, hopefully ;-)
|
|
|
|
|
2024-06-03 01:34:02 +02:00
|
|
|
echo "lang fix en_US"
|
|
|
|
echo "lang fix en_US" > lang.inc
|
2010-03-08 18:57:35 +01:00
|
|
|
mkdir bin
|
|
|
|
fasm -m 16384 heed.asm ./bin/heed
|
2011-01-19 21:05:36 +01:00
|
|
|
kpack ./bin/heed
|
2010-03-08 18:57:35 +01:00
|
|
|
rm -f lang.inc
|
|
|
|
exit 0
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|