develop/libraries/box_lib: Post-SVN tidy
- Move source code from `trunk` into program 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.
This commit is contained in:
21
programs/develop/libraries/box_lib/build.sh
Executable file
21
programs/develop/libraries/box_lib/build.sh
Executable 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
|
||||
|
||||
|
||||
|
Reference in New Issue
Block a user