diff options
author | Miklos Szeredi <miklos@szeredi.hu> | 2004-04-19 10:24:41 +0000 |
---|---|---|
committer | Miklos Szeredi <miklos@szeredi.hu> | 2004-04-19 10:24:41 +0000 |
commit | 8ec48ec8afb7ab8ab95e15ad94d0ee90dd4a051e (patch) | |
tree | 1bd4fe1ffc699cb10664a354c324409dc3faf0db /kernel/Makefile.in | |
parent | 87f30a9b2558d68e8edd3849291c381691dadfae (diff) | |
download | libfuse-8ec48ec8afb7ab8ab95e15ad94d0ee90dd4a051e.tar.gz |
fix for 2.4 build
Diffstat (limited to 'kernel/Makefile.in')
-rw-r--r-- | kernel/Makefile.in | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/kernel/Makefile.in b/kernel/Makefile.in index 0421f54..1737dc0 100644 --- a/kernel/Makefile.in +++ b/kernel/Makefile.in @@ -27,7 +27,7 @@ uninstall: -/sbin/depmod -a clean: - -rm -f $(fusemodule) *.o .*.cmd *.mod.c *.ko *.s + -rm -f $(fusemodule) *.o .*.cmd *.mod.c *.ko *.s */*.o distclean: clean rm -f Makefile @@ -42,17 +42,17 @@ ifeq ($(majver), 2.4) CC = @CC@ LD = @LD@ -CFLAGS = -O2 -Wall -Wstrict-prototypes -fno-strict-aliasing -pipe +CFLAGS = -O2 -Wall -Wstrict-prototypes -fno-strict-aliasing -pipe CPPFLAGS = -I@kernelsrc@/include -I../include -D__KERNEL__ -DMODULE -D_LOOSE_KERNEL_NAMES -DFUSE_VERSION=\"@VERSION@\" -fuse_objs = dev.o dir.o file.o inode.o util.o +fuse_objs = dev.o dir.o file.o inode.o util.o compat/parser.o SUFFIXES = .c .o .s all-spec: fuse.o .c.o: - $(CC) $(CFLAGS) $(CPPFLAGS) -c $< + $(CC) $(CFLAGS) $(CPPFLAGS) -c $< -o $@ fuse.o: $(fuse_objs) $(LD) -r -o fuse.o $(fuse_objs) |