Files
oasis-linux-mirror/pkg/pax/gen.lua
T
Michael Forney 95cf1ad5e0 Use our own pax
2025-04-28 14:21:54 -07:00

13 lines
229 B
Lua

cflags{'-std=c99', '-Wall', '-Wpedantic'}
exe('pax', {'pax.c'})
file('bin/pax', '755', '$outdir/pax')
sub('host.ninja', function()
set('outdir', '$outdir/host')
toolchain(config.host)
exe('pax', {'pax.c'})
end)
fetch 'git'