mirror of
https://github.com/oasislinux/oasis.git
synced 2026-02-01 11:34:17 +01:00
The 1.07 release means we don't have to apply a bunch of patches, and it is a smaller binary anyway.
19 lines
298 B
Lua
19 lines
298 B
Lua
cflags{
|
|
'-std=c99', '-Wall', '-Wpedantic',
|
|
'-D _POSIX_C_SOURCE=200809L',
|
|
'-I $dir',
|
|
'-I $srcdir/h',
|
|
}
|
|
|
|
exe('bin/bc', [[
|
|
bc/(
|
|
main.c bc.c scan.c execute.c load.c storage.c util.c global.c
|
|
warranty.c
|
|
)
|
|
lib/number.c
|
|
]])
|
|
file('bin/bc', '755', '$outdir/bin/bc')
|
|
man{'doc/bc.1'}
|
|
|
|
fetch 'curl'
|