ack/plat/cpm/build-pkg.lua
2016-08-14 01:39:40 +02:00

25 lines
303 B
Lua

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