master hovercats/oakiss / pkg / flex / gen.lua
 1cflags{
 2	'-D HAVE_CONFIG_H',
 3	'-I $dir',
 4}
 5
 6exe('flex', [[src/(
 7	buf.c
 8	ccl.c
 9	dfa.c
10	ecs.c
11	filter.c
12	gen.c
13	main.c
14	misc.c
15	nfa.c
16	options.c
17	parse.c
18	regex.c
19	scan.c
20	scanflags.c
21	scanopt.c
22	skel.c
23	sym.c
24	tables.c
25	tables_shared.c
26	tblcmp.c
27	yylex.c
28)]])
29file('bin/flex', '755', '$outdir/flex')
30sym('bin/lex', 'flex')
31man{'doc/flex.1'}
32
33fetch 'curl'