2016-12-06 01:13:29 +00:00
|
|
|
include("plat/build.lua")
|
|
|
|
|
|
|
|
build_as {
|
|
|
|
name = "as",
|
|
|
|
arch = "powerpc",
|
|
|
|
}
|
|
|
|
|
|
|
|
build_ncg {
|
|
|
|
name = "ncg",
|
|
|
|
arch = "powerpc",
|
|
|
|
}
|
|
|
|
|
|
|
|
build_top {
|
|
|
|
name = "top",
|
|
|
|
arch = "powerpc",
|
|
|
|
}
|
|
|
|
|
2016-10-02 18:58:05 +00:00
|
|
|
return installable {
|
|
|
|
name = "tools",
|
|
|
|
map = {
|
2016-12-06 01:13:29 +00:00
|
|
|
["$(PLATDEP)/osxppc/as"] = "+as",
|
|
|
|
["$(PLATDEP)/osxppc/ncg"] = "+ncg",
|
|
|
|
["$(PLATDEP)/osxppc/top"] = "+top",
|
2016-10-02 18:58:05 +00:00
|
|
|
["$(PLATIND)/descr/osxppc"] = "./descr",
|
|
|
|
"plat/osx/cvmach+pkg",
|
|
|
|
"util/opt+pkg",
|
|
|
|
}
|
|
|
|
}
|