13 lines
223 B
Makefile
13 lines
223 B
Makefile
#
|
|
# Makefile for the FUSE filesystem.
|
|
#
|
|
|
|
obj-$(CONFIG_FUSE_FS) += fuse.o
|
|
obj-$(CONFIG_CUSE) += cuse.o
|
|
|
|
#ifeq ($(CONFIG_MTK_MET), y)
|
|
#ccflags-y += -DMET_FUSEIO_TRACE
|
|
#endif
|
|
|
|
fuse-objs := dev.o dir.o file.o inode.o control.o
|