forked from KolibriOS/kolibrios
f3c6ba6e90
1) A small fix for OptionBox - removed unnecessary redrawing when processing mouse events. 2) Build.sh - script to compile Box_lib library under Linux git-svn-id: svn://kolibrios.org@1227 a494cfbc-eb01-0410-851d-a64ba20cac60
11 lines
189 B
Bash
Executable File
11 lines
189 B
Bash
Executable File
#!/bin/bash
|
|
# This script does for Linux the same as build.bat for DOS,
|
|
# it compiles the current KolibriOS applications
|
|
|
|
mkdir bin
|
|
fasm -m 16384 box_lib.asm ./bin/box_lib.obj
|
|
exit 0
|
|
|
|
|
|
|