Files

22 lines
593 B
Makefile
Raw Permalink Normal View History

# SPDX-License-Identifier: GPL-2.0-only
2005-09-09 13:10:26 -07:00
#
# Makefile for the FUSE filesystem.
#
2024-07-03 10:38:42 -04:00
# Needed for trace events
ccflags-y = -I$(src)
2005-09-09 13:10:26 -07:00
obj-$(CONFIG_FUSE_FS) += fuse.o
obj-$(CONFIG_CUSE) += cuse.o
obj-$(CONFIG_VIRTIO_FS) += virtiofs.o
2005-09-09 13:10:26 -07:00
fuse-y := trace.o # put trace.o first so we see ftrace errors sooner
fuse-y += dev.o dir.o file.o inode.o control.o xattr.o acl.o readdir.o ioctl.o
2024-02-01 16:26:15 +02:00
fuse-y += iomode.o
2020-08-19 18:19:47 -04:00
fuse-$(CONFIG_FUSE_DAX) += dax.o
fuse-$(CONFIG_FUSE_PASSTHROUGH) += passthrough.o backing.o
fuse-$(CONFIG_SYSCTL) += sysctl.o
fuse-$(CONFIG_FUSE_IO_URING) += dev_uring.o
2020-08-19 18:19:47 -04:00
virtiofs-y := virtio_fs.o