mirror of
https://github.com/KolibriOS/kolibrios.git
synced 2025-09-09 12:03:27 -04: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
|