diff options
Diffstat (limited to 'pkg/pounce/gen.lua')
| -rw-r--r-- | pkg/pounce/gen.lua | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/pkg/pounce/gen.lua b/pkg/pounce/gen.lua new file mode 100644 index 00000000..c9ff905e --- /dev/null +++ b/pkg/pounce/gen.lua @@ -0,0 +1,26 @@ +cflags{ + '-std=c11', '-Wall', '-Wextra', '-Wpedantic', + '-D _GNU_SOURCE', + '-I $builddir/pkg/libressl/include', +} + +exe('pounce', { + 'bounce.c', + 'client.c', + 'config.c', + 'local.c', + 'ring.c', + 'server.c', + 'state.c', + '$builddir/pkg/libressl/libtls.a.d', +}) +file('bin/pounce', '755', '$outdir/pounce') +man{'pounce.1'} + +exe('calico', { + 'dispatch.c', +}) +file('bin/calico', '755', '$outdir/calico') +man{'calico.1'} + +fetch 'git' |
