files
kolibrios/programs/develop/libraries/proc_lib/build.sh
Andrew 278aae4faa
All checks were successful
Build system / Check kernel codestyle (pull_request) Successful in 21s
Build system / Build (pull_request) Successful in 4m14s
develop/libraries/proc_lib: Post-SVN tidy
- 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.
2025-05-25 14:46:21 +01:00

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