4b5a7fee14
backend into shape. It now generates binaries --- no idea whether they work or not.
26 lines
365 B
Lua
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",
|
|
}
|
|
}
|
|
|