mirror of
https://github.com/KolibriOS/kolibrios.git
synced 2024-12-17 20:32:35 +03:00
8 lines
176 B
Bash
8 lines
176 B
Bash
|
#!/bin/bash
|
||
|
# This script does for linux the same as build.bat for DOS,
|
||
|
# it compiles the KolibriOS application
|
||
|
|
||
|
fasm -m 16384 searchap.asm ./searchap
|
||
|
rm -f lang.inc
|
||
|
exit 0
|