forked from KolibriOS/kolibrios
d052c50a74
1) Program used function 68 instead 64 is now 2) Select path with OpenDialog git-svn-id: svn://kolibrios.org@1632 a494cfbc-eb01-0410-851d-a64ba20cac60
14 lines
232 B
Bash
14 lines
232 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 ru"
|
|
echo "lang fix ru" > lang.inc
|
|
fasm -m 16384 animage.asm animage
|
|
rm -f lang.inc
|
|
exit 0
|
|
|
|
|
|
|
|
|