| Kernel v2.4.1 /fs/reiserfs/Makefile |
|---|
 2.4.1
 fs
 reiserfs
 Makefile
diff -u --recursive --new-file v2.4.0/linux/fs/reiserfs/Makefile linux/fs/reiserfs/Makefile
--- v2.4.0/linux/fs/reiserfs/Makefile Wed Dec 31 16:00:00 1969
+++ linux/fs/reiserfs/Makefile Mon Jan 15 12:42:32 2001
@@ -0,0 +1,20 @@
+#
+# Makefile for the linux reiser-filesystem routines.
+#
+# Note! Dependencies are done automagically by 'make dep', which also
+# removes any old dependencies. DON'T put your own dependencies here
+# unless it's something special (ie not a .c file).
+#
+# Note 2! The CFLAGS definitions are now in the main makefile...
+
+O_TARGET := reiserfs.o
+obj-y := bitmap.o do_balan.o namei.o inode.o file.o dir.o fix_node.o super.o prints.o objectid.o \
+lbalance.o ibalance.o stree.o hashes.o buffer2.o tail_conversion.o journal.o resize.o tail_conversion.o version.o item_ops.o ioctl.+
o
+
+obj-m := $(O_TARGET)
+
+include $(TOPDIR)/Rules.make
+
+TAGS:
+ etags *.c
+
|