summaryrefslogtreecommitdiff
path: root/pkg/texi2mdoc/gen.lua
blob: 458f02dcef8c674687e1340430fa0e79058cd0eb (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
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'