4b5a7fee14
backend into shape. It now generates binaries --- no idea whether they work or not.
29 lines
422 B
Lua
29 lines
422 B
Lua
include("plat/build.lua")
|
|
|
|
build_as {
|
|
name = "as",
|
|
arch = "pdp",
|
|
}
|
|
|
|
build_cg {
|
|
name = "cg",
|
|
arch = "pdp",
|
|
}
|
|
|
|
build_top {
|
|
name = "top",
|
|
arch = "pdp"
|
|
}
|
|
|
|
return installable {
|
|
name = "tools",
|
|
map = {
|
|
["$(PLATDEP)/pdpv7/as"] = "+as",
|
|
["$(PLATDEP)/pdpv7/cg"] = "+cg",
|
|
["$(PLATDEP)/pdpv7/cv"] = "mach/pdp/cv+cv",
|
|
["$(PLATDEP)/pdpv7/top"] = "+top",
|
|
["$(PLATIND)/descr/pdpv7"] = "./descr",
|
|
"util/opt+pkg",
|
|
}
|
|
}
|