Subversion Repositories Kolibri OS

Rev

Rev 1493 | 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 KoOS kernel, hopefully ;-)
  4.  
  5.         echo "lang fix en"
  6.         echo "lang fix en" > lang.inc
  7.         mkdir bin
  8.         fasm -m 65536 midamp.asm ./bin/midamp
  9.         rm -f lang.inc
  10.         exit 0
  11.