master hovercats/oakiss / pkg / bc / gen.lua
 1cflags{
 2	'-std=c99', '-Wall', '-Wpedantic',
 3	'-D _POSIX_C_SOURCE=200809L',
 4	'-I $dir',
 5	'-I $srcdir/h',
 6}
 7
 8exe('bin/bc', [[
 9	bc/(
10		main.c bc.c scan.c execute.c load.c storage.c util.c global.c
11		warranty.c
12	)
13	lib/number.c
14]])
15
16file('bin/bc', '755', '$outdir/bin/bc')
17
18man{'doc/bc.1'}
19
20fetch 'curl'