forked from KolibriOS/kolibrios
38098ecc9f
1) use EditBox to display and enter the path, switch by use Tab key 2) fixed sorting of files 3) Icons by Leency git-svn-id: svn://kolibrios.org@1244 a494cfbc-eb01-0410-851d-a64ba20cac60
20 lines
500 B
Bash
Executable File
20 lines
500 B
Bash
Executable File
#!/bin/bash
|
|
# This script does for Linux the same as build.bat for DOS,
|
|
# it compiles the current KolibriOS applications
|
|
|
|
echo "lang fix en"
|
|
echo "lang fix en" > lang.inc
|
|
mkdir bin
|
|
fasm -m 16384 ctrldemo.asm ./bin/ctrldemo.kex
|
|
fasm -m 16384 OpenDial.asm ./bin/OpenDial
|
|
fasm -m 16384 editbox_ex.asm ./bin/editbox_ex.kex
|
|
rm -f lang.inc
|
|
cp reload_16x16_8b.png ./bin/reload_16x16_8b.png
|
|
cp cnv_png.obj ./bin/cnv_png.obj
|
|
cp icons.ini ./bin/icons.ini
|
|
cp z_icons.png ./bin/z_icons.png
|
|
exit 0
|
|
|
|
|
|
|