ack/plat/rpi/libsys/build.lua
David Given 25b6712e63 Rework all the ackbuilder scripts not to use wildcards, because we can't expand
them without luaposix, which isn't available (easily) on OSX or Windows.
2022-07-14 23:57:54 +02:00

35 lines
529 B
Lua

acklibrary {
name = "lib",
srcs = {
"./brk.c",
"./close.c",
"./creat.c",
"./errno.s",
"./getpid.c",
"./_hol0.s",
"./isatty.c",
"./kill.c",
"./lseek.c",
"./open.c",
"./pi_fast_mode.s",
"./pi_phys_to_user.s",
"./pi_uart.s",
"./pi_user_to_phys.s",
"./read.c",
"./select.c",
"./signal.c",
"./tcgetattr.c",
"./tcsetattr.c",
"./time.c",
"./write.c",
},
deps = {
"lang/cem/libcc.ansi/headers+headers",
"plat/rpi/include+headers",
},
vars = {
plat = "rpi"
}
}