Ninja buildsystem produces working bootloader

This commit is contained in:
Justin C. Miller
2019-02-02 18:24:58 -08:00
parent a1fe745a53
commit acdca19f59
6 changed files with 47 additions and 9 deletions

View File

@@ -14,9 +14,9 @@ MODULES = {
"makerd": program('src/tools/makerd', ["initrd", "kutil"], "makerd", ["native"]),
"nulldrv": program('src/drivers/nulldrv', [], "nulldrv", ["host"]),
"boot": program('src/boot', [], "boot.elf", ["boot"]),
"boot": program('src/boot', ["elf"], "boot.elf", ["host"]),
"nulldrv": program('src/drivers/nulldrv', [], "nulldrv", ["host"]),
"kernel": program('src/kernel', ["elf", "initrd", "kutil"], "popcorn.elf", ["host"]),
}