ftp://ftp.kernel.org/pub/linux/kernel/v2.6/linux-2.6.6.tar.bz2
[linux-2.6.git] / fs / reiserfs / Makefile
1 #
2 # Makefile for the linux reiser-filesystem routines.
3 #
4
5 obj-$(CONFIG_REISERFS_FS) += reiserfs.o
6
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
11
12 # gcc -O2 (the kernel default)  is overaggressive on ppc32 when many inline
13 # functions are used.  This causes the compiler to advance the stack
14 # pointer out of the available stack space, corrupting kernel space,
15 # and causing a panic. Since this behavior only affects ppc32, this ifeq
16 # will work around it. If any other architecture displays this behavior,
17 # add it here.
18 ifeq ($(CONFIG_PPC32),y)
19 EXTRA_CFLAGS := -O1
20 endif
21
22 TAGS:
23         etags *.c
24