mirror of
https://github.com/KolibriOS/kolibrios.git
synced 2024-12-17 20:32:35 +03:00
12 lines
177 B
Bash
12 lines
177 B
Bash
![]() |
#!/bin/bash
|
||
|
# This script does for linux the same as build.bat for DOS,
|
||
|
# it compiles the KoOS kernel, hopefully ;-)
|
||
|
|
||
|
fasm -m 16384 free3d.asm free3d
|
||
|
kpack free3d
|
||
|
exit 0
|
||
|
|
||
|
|
||
|
|
||
|
|