ack/plat/pc86/build.lua

31 lines
376 B
Lua
Raw Normal View History

2016-07-26 21:35:30 +00:00
include("plat/build.lua")
2016-08-07 19:56:53 +00:00
include("lang/build.lua")
build_plat_tools {
name = "tools",
2016-07-26 21:35:30 +00:00
arch = "i86",
plat = "pc86",
}
ackfile {
name = "boot",
srcs = { "./boot.s" },
vars = { plat = "pc86" }
}
build_plat_libs {
name = "libs",
arch = "i86",
plat = "pc86",
}
installable {
name = "pkg",
map = {
"+tools",
"+libs",
["$(PLATIND)/pc86/boot.o"] = "+boot"
}
}