kolibrios-fun/kernel/tags/kolibri0.7.5.0/make.sh
Evgeny Grechnikov (Diamond) 65ba162394 tag for Kolibri 0.7.5.0
git-svn-id: svn://kolibrios.org@1147 a494cfbc-eb01-0410-851d-a64ba20cac60
2009-09-03 07:12:08 +00:00

34 lines
424 B
Bash
Executable File

#!/bin/bash
# This script does for linux the same as build.bat for DOS,
# it compiles the KoOS kernel, hopefully ;-)
CLANG=$1;
usage()
{
echo "Usage: make.sh [en|ru|ge|et]"
exit 1
}
compile()
{
fasm -m 65536 kernel.asm bin/kernel.mnt
rm -f lang.inc
exit 0
}
if [ ! $CLANG ] ; then
usage
fi
for i in "en" "ru" "ge" "et"; do
if [ $i == $CLANG ] ; then
echo "lang fix $i" > lang.inc
compile
fi
done
usage