forked from KolibriOS/kolibrios
c13e52817d
git-svn-id: svn://kolibrios.org@1159 a494cfbc-eb01-0410-851d-a64ba20cac60
34 lines
424 B
Bash
34 lines
424 B
Bash
#!/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
|
|
|
|
|