ack/plat/pc86/emu/build.lua

28 lines
413 B
Lua
Raw Normal View History

2018-06-03 15:24:21 +00:00
clibrary {
name = "x86emu",
vars = {
["+cflags"] = {"-Iplat/pc86/emu/x86emu", "-DDEBUG"}
2018-06-03 15:24:21 +00:00
},
srcs = {
"./x86emu/debug.c",
"./x86emu/decode.c",
"./x86emu/fpu.c",
"./x86emu/ops2.c",
"./x86emu/ops.c",
"./x86emu/prim_ops.c",
"./x86emu/sys.c",
}
2018-06-03 15:24:21 +00:00
}
cprogram {
name = "pc86emu",
srcs = {"./main.c"},
vars = {
["+cflags"] = {"-Iplat/pc86/emu/x86emu", "-DDEBUG"}
2018-06-03 15:24:21 +00:00
},
deps = {
"+x86emu"
}
}