363d13cc2f
toolchain.
23 lines
271 B
Lua
23 lines
271 B
Lua
include("plat/build.lua")
|
|
|
|
build_plat_tools {
|
|
name = "tools",
|
|
arch = "i86",
|
|
plat = "pc86",
|
|
}
|
|
|
|
ackfile {
|
|
name = "boot",
|
|
srcs = { "./boot.s" },
|
|
vars = { plat = "pc86" }
|
|
}
|
|
|
|
installable {
|
|
name = "pkg",
|
|
map = {
|
|
"+tools",
|
|
["$(PLATIND)/pc86/boot.o"] = "+boot"
|
|
}
|
|
}
|
|
|