2016-08-20 10:40:13 +00:00
|
|
|
include("plat/build.lua")
|
|
|
|
|
|
|
|
headermap = {}
|
|
|
|
packagemap = {}
|
|
|
|
|
|
|
|
local function addheader(h)
|
|
|
|
headermap[h] = "./"..h
|
|
|
|
packagemap["$(PLATIND)/rpi/include/"..h] = "./"..h
|
|
|
|
end
|
|
|
|
|
2018-06-22 21:43:15 +00:00
|
|
|
addheader("ack/plat.h")
|
2016-08-20 10:40:13 +00:00
|
|
|
addheader("pi.h")
|
|
|
|
addheader("sys/select.h")
|
2018-06-23 11:05:27 +00:00
|
|
|
addheader("sys/types.h")
|
2016-08-20 10:40:13 +00:00
|
|
|
addheader("termios.h")
|
|
|
|
|
|
|
|
acklibrary {
|
|
|
|
name = "headers",
|
|
|
|
hdrs = headermap
|
|
|
|
}
|
|
|
|
|
|
|
|
installable {
|
|
|
|
name = "pkg",
|
|
|
|
map = packagemap
|
|
|
|
}
|
|
|
|
|
|
|
|
|