kolibrios/programs/develop/heed/trunk/build.sh
Marat Zakiyanov (Mario79) 34d56f0e98 Hex Editor v0.15
Staper:
 1) Use Box_lib
 2) Many improvements to the design and functionality
Mario:
 1) Use OpenDialog
 2) Small code optimization.


git-svn-id: svn://kolibrios.org@1429 a494cfbc-eb01-0410-851d-a64ba20cac60
2010-03-08 17:57:35 +00:00

15 lines
243 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
mkdir bin
fasm -m 16384 heed.asm ./bin/heed
rm -f lang.inc
exit 0