forked from KolibriOS/kolibrios
0be14cc928
1) Added license text to kfm.asm 2) Compilation with default system macros.inc 3) Add build.sh for Linux 4) Corrected kfm.ini git-svn-id: svn://kolibrios.org@1851 a494cfbc-eb01-0410-851d-a64ba20cac60
15 lines
235 B
Bash
Executable File
15 lines
235 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 kfm.asm kfm
|
|
kpack kfm
|
|
rm -f lang.inc
|
|
exit 0
|
|
|
|
|
|
|
|
|