master hovercats/oakiss / pkg / pax / gen.lua
 1cflags{'-std=c99', '-Wall', '-Wpedantic'}
 2
 3exe('pax', {'pax.c'})
 4file('bin/pax', '755', '$outdir/pax')
 5
 6sub('host.ninja', function()
 7	set('outdir', '$outdir/host')
 8	toolchain(config.host)
 9	exe('pax', {'pax.c'})
10end)
11
12fetch 'git'