1 --- fuse-2.2.1-orig/kernel/Makefile.in 2005-01-09 13:07:00.000000000 +0100
2 +++ fuse-2.2.1-1/kernel/Makefile.in 2005-04-06 14:48:59.000000000 +0200
5 $(mkdir_p) $(DESTDIR)$(fusemoduledir)
6 $(INSTALL) -m 644 $(fusemodule) $(DESTDIR)$(fusemoduledir)/$(fusemodule)
11 rm -f $(DESTDIR)$(fusemoduledir)/$(fusemodule)
16 -rm -f $(fusemodule) *.o .*.cmd *.mod.c *.ko *.s */*.o
23 -CFLAGS = -O2 -Wall -Wstrict-prototypes -fno-strict-aliasing -pipe
24 -CPPFLAGS = -I@kernelsrc@/include -I. -D__KERNEL__ -DMODULE -D_LOOSE_KERNEL_NAMES -DFUSE_VERSION=\"$(VERSION)\" @KERNELCPPFLAGS@
26 fuse_objs = dev.o dir.o file.o inode.o compat/parser.o
33 - $(CC) $(CFLAGS) $(CPPFLAGS) -c $< -o $@
36 - $(LD) -r -o fuse.o $(fuse_objs)
38 fuse_headers = fuse_i.h fuse_kernel.h
40 dev.o: $(fuse_headers)
42 file.o: $(fuse_headers)
43 inode.o: $(fuse_headers)
45 +EXTRA_CFLAGS += -DFUSE_VERSION=\"$(VERSION)\"
49 +obj-y := $(fuse_objs)
52 +-include $(TOPDIR)/Rules.make
55 + $(MAKE) -C @kernelsrc@ TOPDIR=@kernelsrc@ SUBDIRS=$(PWD) modules
59 EXTRA_CFLAGS += -DFUSE_VERSION=\"$(VERSION)\"