ack/plat/pdpv7/build-pkg.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

26 lines
365 B
Lua

include("plat/build.lua")
ackfile {
name = "boot",
srcs = { "./boot.s" },
vars = { plat = "pdpv7" }
}
build_plat_libs {
name = "libs",
arch = "pdp",
plat = "pdpv7",
}
installable {
name = "pkg",
map = {
"+tools",
"+libs",
"./include+pkg",
["$(PLATIND)/pdpv7/boot.o"] = "+boot",
["$(PLATIND)/pdpv7/libsys.a"] = "./libsys+lib",
}
}