1 diff -ruw fuse-2.3.0.org/kernel/Makefile.in fuse-2.3.0/kernel/Makefile.in
2 --- fuse-2.3.0.org/kernel/Makefile.in 2005-04-21 21:00:39.000000000 +0200
3 +++ fuse-2.3.0/kernel/Makefile.in 2005-08-26 09:13:41.000000000 +0200
6 $(mkdir_p) $(DESTDIR)$(fusemoduledir)
7 $(INSTALL) -m 644 $(fusemodule) $(DESTDIR)$(fusemoduledir)/$(fusemodule)
12 rm -f $(DESTDIR)$(fusemoduledir)/$(fusemodule)
17 -rm -f $(fusemodule) *.o .*.cmd *.mod.c *.ko *.s */*.o
24 -CFLAGS = -O2 -Wall -Wstrict-prototypes -fno-strict-aliasing -pipe -msoft-float
25 -CPPFLAGS = -I@kernelsrc@/include -I. -D__KERNEL__ -DMODULE -D_LOOSE_KERNEL_NAMES -DFUSE_VERSION=\"$(VERSION)\" @KERNELCPPFLAGS@
27 fuse_objs = dev.o dir.o file.o inode.o compat/parser.o
34 - $(CC) $(CFLAGS) $(CPPFLAGS) -c $< -o $@
37 - $(LD) -r -o fuse.o $(fuse_objs)
39 fuse_headers = fuse_i.h fuse_kernel.h
41 dev.o: $(fuse_headers)
43 file.o: $(fuse_headers)
44 inode.o: $(fuse_headers)
46 +EXTRA_CFLAGS += -DFUSE_VERSION=\"$(VERSION)\"
50 +obj-y := $(fuse_objs)
53 +-include $(TOPDIR)/Rules.make
56 + $(MAKE) -C @kernelsrc@ TOPDIR=@kernelsrc@ SUBDIRS=$(PWD) modules
60 EXTRA_CFLAGS += -DFUSE_VERSION=\"$(VERSION)\"