Subversion Repositories Kolibri OS

Rev

Rev 1244 | 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.  
  5.         echo "lang fix en"
  6.         echo "lang fix en" > lang.inc
  7.         mkdir bin
  8.         fasm -m 16384 ctrldemo.asm ./bin/ctrldemo.kex
  9.         fasm -m 16384 editbox_ex.asm ./bin/editbox_ex.kex
  10.         rm -f lang.inc
  11.         cp reload_16x16_8b.png ./bin/reload_16x16_8b.png
  12.         exit 0
  13.  
  14.  
  15.  
  16.