1 # SPDX-License-Identifier: GPL-2.0-only 2 # 3 # Makefile for the FUSE filesystem. 4 # 5 6 # Needed for trace events 7 ccflags-y = -I$(src) 8 9 obj-$(CONFIG_FUSE_FS) += fuse.o 10 obj-$(CONFIG_CUSE) += cuse.o 11 obj-$(CONFIG_VIRTIO_FS) += virtiofs.o 12 13 fuse-y := dev.o dir.o file.o inode.o control.o xattr.o acl.o readdir.o ioctl.o 14 fuse-y += iomode.o 15 fuse-$(CONFIG_FUSE_DAX) += dax.o 16 fuse-$(CONFIG_FUSE_PASSTHROUGH) += passthrough.o 17 18 virtiofs-y := virtio_fs.o
Linux® is a registered trademark of Linus Torvalds in the United States and other countries.
TOMOYO® is a registered trademark of NTT DATA CORPORATION.