ack/plat/linuxmips/build-pkg.lua

26 lines
376 B
Lua
Raw Normal View History

include("plat/build.lua")
ackfile {
name = "boot",
srcs = { "./boot.s" },
vars = { plat = "linuxmips" }
}
2018-09-04 22:07:07 +00:00
build_plat_libs {
name = "libs",
arch = "mips",
plat = "linuxmips",
}
installable {
name = "pkg",
map = {
"+tools",
2018-09-04 22:07:07 +00:00
"+libs",
"./include+pkg",
["$(PLATIND)/linuxmips/boot.o"] = "+boot",
2018-09-04 22:07:07 +00:00
["$(PLATIND)/linuxmips/libsys.a"] = "./libsys+lib",
}
}