kolibrios/programs/other/kpack/trunk/build.sh
Marat Zakiyanov (Mario79) 08c1ac1aa8 kpack = Kolibri Packer
Disassemled and corrected specially for FASM

git-svn-id: svn://kolibrios.org@1671 a494cfbc-eb01-0410-851d-a64ba20cac60
2010-10-24 12:19:44 +00:00

14 lines
228 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 kpack.asm kpack
rm -f lang.inc
exit 0