ack/util/ego/share/build.lua

77 lines
1.1 KiB
Lua
Raw Normal View History

2016-08-22 20:45:32 +00:00
cprogram {
name = "makecldef",
srcs = { "./makecldef.c" }
}
normalrule {
name = "classdefs_h",
ins = {
"+makecldef",
matching(filenamesof("modules/src/em_data+lib"), "em_mnem%.h$"),
"./cldefs.src"
},
outleaves = { "classdefs.h" },
commands = {
"%{ins} > %{outs}"
}
}
normalrule {
name = "pop_push_h",
ins = {
"./pop_push.awk",
"h/em_table",
},
outleaves = { "pop_push.h" },
commands = {
"awk -f %{ins[1]} < %{ins[2]} > %{outs}"
}
}
clibrary {
name = "lib",
srcs = {
"./debug.c",
"./global.c",
"./files.c",
"./go.c",
"./map.c",
"./utils.c",
2016-08-22 20:45:32 +00:00
"./get.c",
"./put.c",
"./alloc.c",
"./lset.c",
"./cset.c",
"./parser.c",
"./stack_chg.c",
"./locals.c",
"./init_glob.c",
},
deps = {
"./alloc.h",
"./cset.h",
"./debug.h",
"./def.h",
"./files.h",
"./get.h",
"./global.h",
"./go.h",
"./init_glob.h",
"./locals.h",
"./lset.h",
"./map.h",
"./parser.h",
"./put.h",
"./stack_chg.h",
"./types.h",
"./utils.h",
2016-08-22 20:45:32 +00:00
"+classdefs_h",
"+pop_push_h",
"h+emheaders",
"modules/src/em_data+lib",
},
vars = {
["+cflags"] = {"-DDEBUG", "-DVERBOSE", "-DNOTCOMPACT"}
2016-08-22 20:45:32 +00:00
}
}