Subversion Repositories Kolibri OS

Rev

Rev 1227 | Blame | Compare with Previous | Last modification | View Log | Download | RSS feed

  1. #!/bin/bash
  2. # This script does for Linux the same as build.bat for DOS,
  3. # it compiles the current KolibriOS applications
  4. OutDir=bin
  5. FileName=box_lib.obj
  6. OutFile=$OutDir/$FileName
  7.  
  8.         if [ -d "$OutDir" ]; then
  9.             if [ -e "$OutFile" ]; then
  10.                 echo " >>>> rm -f $OutFile delete old version"
  11.                 rm -f $OutFile
  12.             fi
  13.         else
  14.             echo "mkdir $OutDir"
  15.             mkdir $OutDir
  16.         fi
  17.         fasm -m 16384 box_lib.asm $OutFile
  18.         exit 0
  19.  
  20.  
  21.  
  22.