mirror of
https://github.com/oasislinux/oasis.git
synced 2026-02-05 11:33:57 +01:00
15 lines
310 B
Lua
15 lines
310 B
Lua
cflags{
|
|
'-Wall', '-Wextra', '-std=c99', '-pedantic',
|
|
'-I $dir',
|
|
}
|
|
|
|
exe('qbe', [[
|
|
main.c util.c parse.c cfg.c mem.c ssa.c alias.c load.c copy.c
|
|
fold.c live.c spill.c rega.c gas.c
|
|
amd64/(targ.c sysv.c isel.c emit.c)
|
|
arm64/(targ.c abi.c isel.c emit.c)
|
|
]])
|
|
file('bin/qbe', '755', '$outdir/qbe')
|
|
|
|
fetch 'git'
|