files
kolibrios/programs/develop/libraries/box_lib/build.sh
Andrew bd56fbf35f
All checks were successful
Build system / Check kernel codestyle (pull_request) Successful in 21s
Build system / Build (pull_request) Successful in 4m17s
develop/libraries/box_lib: Post-SVN tidy
- Move source code from `trunk` into program root directory.
- Update build files and ASM include paths. This touches *many* files.
- Note: Line endings standardised from `CRLF` > `LF`, so best to view diffs with whitespace changes hidden.
2025-05-25 11:38:47 +01:00

22 lines
415 B
Bash
Executable File

#!/bin/bash
# This script does for Linux the same as build.bat for DOS,
# it compiles the current KolibriOS applications
OutDir=bin
FileName=box_lib.obj
OutFile=$OutDir/$FileName
if [ -d "$OutDir" ]; then
if [ -e "$OutFile" ]; then
echo " >>>> rm -f $OutFile delete old version"
rm -f $OutFile
fi
else
echo "mkdir $OutDir"
mkdir $OutDir
fi
fasm -m 16384 box_lib.asm $OutFile
exit 0