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.
This commit is contained in:
2025-05-24 20:04:47 +01:00
parent c8cc441230
commit bd56fbf35f
105 changed files with 34203 additions and 33285 deletions

View File

@@ -0,0 +1,21 @@
#!/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