kernel/fs/fuse/Makefile
.. .. @@ -1,8 +1,14 @@ 1  +# SPDX-License-Identifier: GPL-2.0-only1 2 # 2 3 # Makefile for the FUSE filesystem. 3 4 # 4 5 5 6 obj-$(CONFIG_FUSE_FS) += fuse.o 6 7 obj-$(CONFIG_CUSE) += cuse.o 8  +obj-$(CONFIG_VIRTIO_FS) += virtiofs.o7 9 8  -fuse-objs := dev.o dir.o file.o inode.o control.o xattr.o acl.o10  +fuse-y := dev.o dir.o file.o inode.o control.o xattr.o acl.o readdir.o11  +fuse-y += passthrough.o12  +fuse-$(CONFIG_FUSE_DAX) += dax.o13  +14  +virtiofs-y := virtio_fs.o