forked from KolibriOS/kolibrios
1362808317
git-svn-id: svn://kolibrios.org@1618 a494cfbc-eb01-0410-851d-a64ba20cac60
22 lines
415 B
Bash
Executable File
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
|
|
|
|
|
|
|