aboutsummaryrefslogtreecommitdiff
path: root/kernel/Makefile.in
diff options
context:
space:
mode:
Diffstat (limited to 'kernel/Makefile.in')
-rw-r--r--kernel/Makefile.in7
1 files changed, 4 insertions, 3 deletions
diff --git a/kernel/Makefile.in b/kernel/Makefile.in
index 34d376d..a8361ac 100644
--- a/kernel/Makefile.in
+++ b/kernel/Makefile.in
@@ -7,7 +7,7 @@ majver = @majver@
VERSION = @PACKAGE_VERSION@
DISTFILES = Makefile.in configure.ac configure config.h.in ../install-sh \
- dev.c dir.c file.c inode.c fuse_i.h fuse_kernel.h
+ dev.c dir.c file.c inode.c fuse_i.h fuse_kernel.h control.c
COMPATDISTFILES = compat/parser.c compat/parser.h
fusemoduledir = @kmoduledir@/kernel/fs/fuse
@@ -59,7 +59,7 @@ LD = ld
CFLAGS = -O2 -Wall -Wstrict-prototypes -fno-strict-aliasing -pipe @KERNELCFLAGS@
CPPFLAGS = -I@kernelsrc@/include -I. -D__KERNEL__ -DMODULE -D_LOOSE_KERNEL_NAMES -DFUSE_VERSION=\"$(VERSION)\" @KERNELCPPFLAGS@
-fuse_objs = dev.o dir.o file.o inode.o compat/parser.o
+fuse_objs = dev.o dir.o file.o inode.o compat/parser.o control.o
SUFFIXES = .c .o .s
@@ -77,13 +77,14 @@ dev.o: $(fuse_headers)
dir.o: $(fuse_headers)
file.o: $(fuse_headers)
inode.o: $(fuse_headers)
+control.o: $(fuse_headers)
else
EXTRA_CFLAGS += -DFUSE_VERSION=\"$(VERSION)\"
obj-m := fuse.o
-fuse-objs := dev.o dir.o file.o inode.o
+fuse-objs := dev.o dir.o file.o inode.o control.o
all-spec:
$(MAKE) -C @kernelsrc@ SUBDIRS=$(PWD) @KERNELMAKE_PARAMS@ modules