xref: /linux/fs/fuse/Makefile (revision 5f60d5f6bbc12e782fac78110b0ee62698f3b576)
1# SPDX-License-Identifier: GPL-2.0-only
2#
3# Makefile for the FUSE filesystem.
4#
5
6# Needed for trace events
7ccflags-y = -I$(src)
8
9obj-$(CONFIG_FUSE_FS) += fuse.o
10obj-$(CONFIG_CUSE) += cuse.o
11obj-$(CONFIG_VIRTIO_FS) += virtiofs.o
12
13fuse-y := dev.o dir.o file.o inode.o control.o xattr.o acl.o readdir.o ioctl.o
14fuse-y += iomode.o
15fuse-$(CONFIG_FUSE_DAX) += dax.o
16fuse-$(CONFIG_FUSE_PASSTHROUGH) += passthrough.o
17
18virtiofs-y := virtio_fs.o
19