ack/util/cmisc/build.lua
George Koehler fbff3a4790 Check each format string in tabgen.c
Silence warning from clang at `if (ch2 = ...)`

Delete `|| rm %{outs}` in build.lua, because it hid the exit status of
tabgen, so if tabgen failed, the build continued and failed later.
2017-11-13 20:59:03 -05:00

26 lines
395 B
Lua

cprogram {
name = "tabgen",
srcs = { "./tabgen.c" }
}
definerule("tabgen",
{
srcs = { type="targets" },
},
function(e)
local symname = basename(filenamesof(e.srcs)[1]):gsub("%.tab$", "")
return normalrule {
name = e.name,
ins = {
"util/cmisc+tabgen",
e.srcs
},
outleaves = { symname..".c" },
commands = {
"%{ins[1]} -f%{ins[2]} > %{outs}"
}
}
end
)