forked from KolibriOS/kolibrios
e071d66d3f
1) Use OpenDialog instead Sysxtree 2) Fix the list of directory git-svn-id: svn://kolibrios.org@1470 a494cfbc-eb01-0410-851d-a64ba20cac60
10 lines
160 B
Bash
10 lines
160 B
Bash
#!/bin/bash
|
|
# This script does for Linux the same as build.bat for DOS,
|
|
# it compiles the current KolibriOS applications
|
|
|
|
fasm -m 16384 kiv.asm kiv
|
|
exit 0
|
|
|
|
|
|
|