Files
oasis-linux-mirror/pkg/rc/gen.lua
T
hovercats 80c477fde9 rc: switch to cinap_lenrek repo
this is a port pulled from 9fronts sourcetree, and more or less
follows 9fronts changes
2026-04-19 12:08:32 -07:00

38 lines
484 B
Lua

cflags{
'-Wpedantic',
'-I $srcdir',
'-I $outdir',
([['-D PREFIX="%s"']]):format(config.prefix),
}
pkg.deps = {'$outdir/y.tab.h'}
yacc('y', 'syn.y')
exe('rc', {
'code.c',
'exec.c',
'getflags.c',
'glob.c',
'here.c',
'io.c',
'lex.c',
'pcmd.c',
'pfnc.c',
'simple.c',
'subr.c',
'trap.c',
'tree.c',
'var.c',
'havefork.c',
'unix.c',
'$outdir/y.tab.c',
})
file('bin/rc', '755', '$outdir/rc')
man{'rc.1'}
file('lib/rcmain', '644', '$srcdir/rcmain.unix')
fetch 'git'