29 lines
466 B
Lua
29 lines
466 B
Lua
include("plat/build.lua")
|
|
|
|
build_as {
|
|
name = "as",
|
|
arch = "xr17032",
|
|
deps = { "mach/xr17032/as+astables" }
|
|
}
|
|
|
|
build_mcg {
|
|
name = "mcg",
|
|
arch = "xr17032",
|
|
}
|
|
|
|
build_top {
|
|
name = "top",
|
|
arch = "xr17032",
|
|
}
|
|
|
|
return installable {
|
|
name = "tools",
|
|
map = {
|
|
["$(PLATDEP)/mintia/as"] = "+as",
|
|
["$(PLATDEP)/mintia/mcg"] = "+mcg",
|
|
["$(PLATDEP)/mintia/top"] = "+top",
|
|
["$(PLATIND)/descr/mintia"] = "./descr",
|
|
"util/amisc+axlofflod-pkg",
|
|
"util/opt+pkg",
|
|
}
|
|
}
|