Back to home page

OSCL-LXR

 
 

    


0001 # SPDX-License-Identifier: GPL-2.0
0002 #
0003 # Makefile for the linux reiser-filesystem routines.
0004 #
0005 
0006 obj-$(CONFIG_REISERFS_FS) += reiserfs.o
0007 
0008 reiserfs-objs := bitmap.o do_balan.o namei.o inode.o file.o dir.o fix_node.o \
0009                  super.o prints.o objectid.o lbalance.o ibalance.o stree.o \
0010                  hashes.o tail_conversion.o journal.o resize.o \
0011                  item_ops.o ioctl.o xattr.o lock.o
0012 
0013 ifeq ($(CONFIG_REISERFS_PROC_INFO),y)
0014 reiserfs-objs += procfs.o
0015 endif
0016 
0017 ifeq ($(CONFIG_REISERFS_FS_XATTR),y)
0018 reiserfs-objs += xattr_user.o xattr_trusted.o
0019 endif
0020 
0021 ifeq ($(CONFIG_REISERFS_FS_SECURITY),y)
0022 reiserfs-objs += xattr_security.o
0023 endif
0024 
0025 ifeq ($(CONFIG_REISERFS_FS_POSIX_ACL),y)
0026 reiserfs-objs += xattr_acl.o
0027 endif
0028 
0029 TAGS:
0030         etags *.c