master hovercats/oakiss / pkg / catgirl / gen.lua
 1cflags{
 2	'-std=c11', '-Wall', '-Wextra', '-Wpedantic',
 3	'-Wno-maybe-uninitialized',
 4	'-D _GNU_SOURCE',
 5	'-isystem $builddir/pkg/libtls-bearssl/include',
 6	'-isystem $builddir/pkg/netbsd-curses/include',
 7}
 8
 9pkg.deps = {
10	'pkg/libtls-bearssl/headers',
11	'pkg/netbsd-curses/headers',
12}
13
14exe('catgirl', [[
15	buffer.c
16	chat.c
17	command.c
18	complete.c
19	config.c
20	edit.c
21	filter.c
22	handle.c
23	input.c
24	irc.c
25	log.c
26	ui.c
27	url.c
28	window.c
29	xdg.c
30	$builddir/pkg/libtls-bearssl/libtls.a.d
31	$builddir/pkg/netbsd-curses/libcurses.a.d
32]])
33file('bin/catgirl', '755', '$outdir/catgirl')
34man{'catgirl.1'}
35
36fetch 'git'