mirror of
https://github.com/oasislinux/oasis.git
synced 2026-05-12 21:34:47 +02:00
18 lines
364 B
Lua
18 lines
364 B
Lua
cflags{
|
|
'-D __BEGIN_DECLS=',
|
|
'-D __END_DECLS=',
|
|
'-Wall',
|
|
}
|
|
|
|
sub('host.ninja', function()
|
|
toolchain(config.host)
|
|
cflags{'-D __BEGIN_DECLS=', '-D __END_DECLS='}
|
|
set('outdir', '$outdir/host')
|
|
exe('texi2mdoc', {'main.c', 'util.c'})
|
|
end)
|
|
|
|
file('bin/texi2mdoc', '755', exe('texi2mdoc', {'main.c', 'util.c'}))
|
|
man{'texi2mdoc.1'}
|
|
|
|
fetch 'curl'
|