ack/plat/pdpv7/build-tools.lua
David Given 4b5a7fee14 Made the cgg and the cg code generator work; use this to beat the PDP/11
backend into shape. It now generates binaries --- no idea whether they work or
not.
2018-02-23 22:31:46 +01:00

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",
}
}