mirror of
https://github.com/KolibriOS/kolibrios.git
synced 2024-11-25 10:19:36 +03:00
5b05341aae
git-svn-id: svn://kolibrios.org@2726 a494cfbc-eb01-0410-851d-a64ba20cac60
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
|
|
|
|
|
|
|
|
|