mirror of
https://github.com/KolibriOS/kolibrios.git
synced 2025-09-12 13:37:45 -04:00

- Move source code from `trunk` into program root directory. - Fix build and ASM files. - Translated a few RU comments to en_US. - Note: Line endings standardised from `CRLF` > `LF`, so best to view diffs with whitespace changes hidden. (Work towards #75, point 3) Reviewed-on: https://git.kolibrios.org/KolibriOS/kolibrios/pulls/244 Reviewed-by: Gleb Zaharov <risdeveau@codrs.ru> Reviewed-by: Burer <burer@kolibrios.org> Co-authored-by: Andrew <dent.ace@gmail.com> Co-committed-by: Andrew <dent.ace@gmail.com>
15 lines
255 B
Bash
Executable File
15 lines
255 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_US"
|
|
echo "lang fix en_US" > lang.inc
|
|
mkdir bin
|
|
fasm -m 16384 rtfread.asm ./bin/rtfread
|
|
rm -f lang.inc
|
|
exit 0
|
|
|
|
|
|
|
|
|