mirror of
https://github.com/KolibriOS/kolibrios.git
synced 2024-11-29 12:13:12 +03:00
12 lines
184 B
Bash
12 lines
184 B
Bash
|
#!/bin/bash
|
||
|
# This script does for linux the same as build.bat for DOS,
|
||
|
# it compiles the KoOS program, hopefully ;-)
|
||
|
|
||
|
fasm -m 16384 madmouse.asm madmouse
|
||
|
kpack madmouse
|
||
|
exit 0
|
||
|
|
||
|
|
||
|
|
||
|
|