mirror of
https://github.com/torvalds/linux.git
synced 2024-11-05 03:21:32 +00:00
07642381d5
These files are now empty, so delete them Signed-off-by: Matthew Wilcox <matthew.r.wilcox@intel.com> Reviewed-by: Mathieu Desnoyers <mathieu.desnoyers@efficios.com> Cc: Andreas Dilger <andreas.dilger@intel.com> Cc: Boaz Harrosh <boaz@plexistor.com> Cc: Christoph Hellwig <hch@lst.de> Cc: Dave Chinner <david@fromorbit.com> Cc: Jan Kara <jack@suse.cz> Cc: Jens Axboe <axboe@kernel.dk> Cc: Kirill A. Shutemov <kirill.shutemov@linux.intel.com> Cc: Randy Dunlap <rdunlap@infradead.org> Cc: Ross Zwisler <ross.zwisler@linux.intel.com> Cc: Theodore Ts'o <tytso@mit.edu> Signed-off-by: Andrew Morton <akpm@linux-foundation.org> Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
13 lines
343 B
Makefile
13 lines
343 B
Makefile
#
|
|
# Makefile for the linux ext2-filesystem routines.
|
|
#
|
|
|
|
obj-$(CONFIG_EXT2_FS) += ext2.o
|
|
|
|
ext2-y := balloc.o dir.o file.o ialloc.o inode.o \
|
|
ioctl.o namei.o super.o symlink.o
|
|
|
|
ext2-$(CONFIG_EXT2_FS_XATTR) += xattr.o xattr_user.o xattr_trusted.o
|
|
ext2-$(CONFIG_EXT2_FS_POSIX_ACL) += acl.o
|
|
ext2-$(CONFIG_EXT2_FS_SECURITY) += xattr_security.o
|