summaryrefslogtreecommitdiff
path: root/pkg/fuse/gen.lua
blob: f2319078f310828f4af99fe8c4c39ec34347236b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
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
	fuse_log.c
	mount.c
)]])

fetch 'git'