mirror of
https://github.com/KolibriOS/kolibrios.git
synced 2025-09-11 21:15:30 -04: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
|
|
|
|
|
|
|
|
|