kolibrios-fun/programs/system/beep/build.sh
Marat Zakiyanov (Mario79) dd46cf411e Beep - Speaker beep you if the video does not work and you think that the system died.
git-svn-id: svn://kolibrios.org@2471 a494cfbc-eb01-0410-851d-a64ba20cac60
2012-03-16 10:59:52 +00:00

11 lines
239 B
Bash

#!/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 65536 beep.asm ./bin/beep
rm -f lang.inc
exit 0