mirror of
https://github.com/oasislinux/oasis.git
synced 2026-02-05 11:33:57 +01:00
22 lines
432 B
Lua
22 lines
432 B
Lua
cflags{
|
|
'-I $dir',
|
|
'-I $srcdir/include',
|
|
'-I $srcdir/lib',
|
|
}
|
|
|
|
cc('lib/mount_util.c')
|
|
|
|
exe('fusermount3', {'util/fusermount.c', 'lib/mount_util.c.o'})
|
|
file('bin/fusermount3', '4755', '$outdir/fusermount3')
|
|
man{'doc/fusermount3.1'}
|
|
|
|
lib('libfuse.a', [[lib/(
|
|
fuse.c fuse_loop.c fuse_loop_mt.c
|
|
fuse_lowlevel.c fuse_opt.c
|
|
fuse_signals.c buffer.c cuse_lowlevel.c
|
|
helper.c modules/subdir.c mount_util.c.o
|
|
mount.c
|
|
)]])
|
|
|
|
fetch 'git'
|