]> git.proxmox.com Git - mirror_ubuntu-bionic-kernel.git/blame - fs/reiserfs/Makefile
Merge tag 'sound-4.15-rc5' of git://git.kernel.org/pub/scm/linux/kernel/git/tiwai...
[mirror_ubuntu-bionic-kernel.git] / fs / reiserfs / Makefile
CommitLineData
b2441318 1# SPDX-License-Identifier: GPL-2.0
1da177e4
LT
2#
3# Makefile for the linux reiser-filesystem routines.
4#
5
6obj-$(CONFIG_REISERFS_FS) += reiserfs.o
7
8reiserfs-objs := bitmap.o do_balan.o namei.o inode.o file.o dir.o fix_node.o \
9 super.o prints.o objectid.o lbalance.o ibalance.o stree.o \
10 hashes.o tail_conversion.o journal.o resize.o \
e3c96f53
AD
11 item_ops.o ioctl.o xattr.o lock.o
12
13ifeq ($(CONFIG_REISERFS_PROC_INFO),y)
14reiserfs-objs += procfs.o
15endif
1da177e4
LT
16
17ifeq ($(CONFIG_REISERFS_FS_XATTR),y)
a72bdb1c 18reiserfs-objs += xattr_user.o xattr_trusted.o
1da177e4
LT
19endif
20
21ifeq ($(CONFIG_REISERFS_FS_SECURITY),y)
22reiserfs-objs += xattr_security.o
23endif
24
25ifeq ($(CONFIG_REISERFS_FS_POSIX_ACL),y)
26reiserfs-objs += xattr_acl.o
27endif
28
29# gcc -O2 (the kernel default) is overaggressive on ppc32 when many inline
30# functions are used. This causes the compiler to advance the stack
31# pointer out of the available stack space, corrupting kernel space,
32# and causing a panic. Since this behavior only affects ppc32, this ifeq
33# will work around it. If any other architecture displays this behavior,
34# add it here.
0ccd234c 35ccflags-$(CONFIG_PPC32) := $(call cc-ifversion, -lt, 0400, -O1)
1da177e4
LT
36
37TAGS:
38 etags *.c
39