summaryrefslogtreecommitdiff
path: root/pkg/qbe/gen.lua
blob: 0e3a47faee4cfd3690b3ebcab2ee48498f990443 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
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'