Linux-2.6.12-rc2
[linux-2.6/linux-acpi-2.6/ibm-acpi-2.6.git] / fs / reiserfs / Makefile
blob3a59309f3ca90d9c0a96a834abb7255ecf92de2c
2 # Makefile for the linux reiser-filesystem routines.
5 obj-$(CONFIG_REISERFS_FS) += reiserfs.o
7 reiserfs-objs := bitmap.o do_balan.o namei.o inode.o file.o dir.o fix_node.o \
8 super.o prints.o objectid.o lbalance.o ibalance.o stree.o \
9 hashes.o tail_conversion.o journal.o resize.o \
10 item_ops.o ioctl.o procfs.o
12 ifeq ($(CONFIG_REISERFS_FS_XATTR),y)
13 reiserfs-objs += xattr.o xattr_user.o xattr_trusted.o
14 endif
16 ifeq ($(CONFIG_REISERFS_FS_SECURITY),y)
17 reiserfs-objs += xattr_security.o
18 endif
20 ifeq ($(CONFIG_REISERFS_FS_POSIX_ACL),y)
21 reiserfs-objs += xattr_acl.o
22 endif
24 # gcc -O2 (the kernel default) is overaggressive on ppc32 when many inline
25 # functions are used. This causes the compiler to advance the stack
26 # pointer out of the available stack space, corrupting kernel space,
27 # and causing a panic. Since this behavior only affects ppc32, this ifeq
28 # will work around it. If any other architecture displays this behavior,
29 # add it here.
30 ifeq ($(CONFIG_PPC32),y)
31 EXTRA_CFLAGS := -O1
32 endif
34 TAGS:
35 etags *.c