1cflags{
2 '-std=c99',
3 '-pedantic',
4 '-isystem $builddir/pkg/netbsd-curses/include',
5}
6
7pkg.deps = {
8 'pkg/netbsd-curses/headers',
9}
10
11exe('yap', {
12 'ansi.c',
13 'commands.c',
14 'display.c',
15 'getcomm.c',
16 'getline.c',
17 'help.c',
18 'keys.c',
19 'machine.c',
20 'main.c',
21 'options.c',
22 'output.c',
23 'pattern.c',
24 'process.c',
25 'prompt.c',
26 'rune.c',
27 'term.c',
28 '$builddir/pkg/netbsd-curses/libterminfo.a',
29})
30
31file('bin/yap', '755', '$outdir/yap')
32
33fetch 'git'