kolibrios/programs/system/mgb/trunk/build.sh
Marat Zakiyanov (Mario79) 8b2f78bb3c Kolibri Graphics Benchmark 0.4
(oldest MGB - Menuet Graphics Benchmark 0.3)
1) select path with OpenDialog,
2) use of Box_Lib and Proc_Lib,
3) support start with path for *.mgb file
4) optimization code and size of use memory

git-svn-id: svn://kolibrios.org@1621 a494cfbc-eb01-0410-851d-a64ba20cac60
2010-09-17 21:48:50 +00:00

14 lines
224 B
Bash
Executable File

#!/bin/bash
# This script does for linux the same as build.bat for DOS,
# it compiles the KoOS kernel, hopefully ;-)
echo "lang fix en"
echo "lang fix en" > lang.inc
fasm -m 16384 mgb.asm mgb
rm -f lang.inc
exit 0