26 lines
367 B
Lua
26 lines
367 B
Lua
|
include("plat/build.lua")
|
||
|
|
||
|
ackfile {
|
||
|
name = "boot",
|
||
|
srcs = { "./boot.s" },
|
||
|
vars = { plat = "mintia" }
|
||
|
}
|
||
|
|
||
|
build_plat_libs {
|
||
|
name = "libs",
|
||
|
arch = "xr17032",
|
||
|
plat = "mintia",
|
||
|
}
|
||
|
|
||
|
installable {
|
||
|
name = "pkg",
|
||
|
map = {
|
||
|
"+tools",
|
||
|
"+libs",
|
||
|
"./include+pkg",
|
||
|
["$(PLATIND)/mintia/boot.o"] = "+boot",
|
||
|
["$(PLATIND)/mintia/libsys.a"] = "./libsys+lib",
|
||
|
}
|
||
|
}
|
||
|
|