- Move source code from `trunk` into root directory. - Update build files and ASM include paths. - Note: Line endings standardised from `CRLF` > `LF`, so best to view diffs with whitespace changes hidden.
11 lines
191 B
Bash
11 lines
191 B
Bash
#!/bin/bash
|
|
# This script does for Linux the same as build.bat for DOS,
|
|
# it compiles the current KolibriOS applications
|
|
|
|
mkdir bin
|
|
fasm -m 16384 proc_lib.asm ./bin/proc_lib.obj
|
|
exit 0
|
|
|
|
|
|
|