ack/plat/linux/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

36 lines
448 B
Lua

bundle {
name = "srcs",
srcs = {
"./close.c",
"./creat.c",
"./execve.c",
"./_exit.c",
"./fork.c",
"./getpid.c",
"./gettimeofday.c",
"./_hol0.s",
"./ioctl.c",
"./isatty.c",
"./kill.c",
"./lseek.c",
"./open.c",
"./read.c",
"./sbrk.c",
"./signal.c",
"./sigprocmask.c",
"./unlink.c",
"./wait.c",
"./waitpid.c",
"./write.c",
}
}
bundle {
name = "headers",
srcs = {
"./libsys.h",
"./syscalls.h",
}
}