Andi Kleen | 58b7983 | 2007-11-27 16:53:47 +1100 | [diff] [blame] | 1 | # |
| 2 | # Copyright (c) 2000-2005 Silicon Graphics, Inc. |
| 3 | # All Rights Reserved. |
| 4 | # |
| 5 | # This program is free software; you can redistribute it and/or |
| 6 | # modify it under the terms of the GNU General Public License as |
| 7 | # published by the Free Software Foundation. |
| 8 | # |
| 9 | # This program is distributed in the hope that it would be useful, |
| 10 | # but WITHOUT ANY WARRANTY; without even the implied warranty of |
| 11 | # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
| 12 | # GNU General Public License for more details. |
| 13 | # |
| 14 | # You should have received a copy of the GNU General Public License |
| 15 | # along with this program; if not, write the Free Software Foundation, |
| 16 | # Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA |
| 17 | # |
| 18 | |
Christoph Hellwig | b6bede3 | 2011-08-14 17:13:00 +0000 | [diff] [blame] | 19 | ccflags-y += -I$(src) # needed for trace events |
| 20 | |
matt mooney | 0ccd234 | 2011-01-14 06:12:35 -0800 | [diff] [blame] | 21 | ccflags-$(CONFIG_XFS_DEBUG) += -g |
Andi Kleen | 58b7983 | 2007-11-27 16:53:47 +1100 | [diff] [blame] | 22 | |
Andi Kleen | 58b7983 | 2007-11-27 16:53:47 +1100 | [diff] [blame] | 23 | obj-$(CONFIG_XFS_FS) += xfs.o |
Lachlan McIlroy | 269cdfa | 2007-11-28 18:28:09 +1100 | [diff] [blame] | 24 | |
Christoph Hellwig | c59d87c | 2011-08-12 16:21:35 -0500 | [diff] [blame] | 25 | # this one should be compiled first, as the tracing macros can easily blow up |
| 26 | xfs-y += xfs_trace.o |
Christoph Hellwig | 0b1b213 | 2009-12-14 23:14:59 +0000 | [diff] [blame] | 27 | |
Christoph Hellwig | c59d87c | 2011-08-12 16:21:35 -0500 | [diff] [blame] | 28 | # highlevel code |
| 29 | xfs-y += xfs_aops.o \ |
Dave Chinner | fde2227 | 2013-08-12 20:49:39 +1000 | [diff] [blame] | 30 | xfs_attr_inactive.o \ |
Dave Chinner | abec5f2 | 2013-08-12 20:49:38 +1000 | [diff] [blame] | 31 | xfs_attr_list.o \ |
Christoph Hellwig | c59d87c | 2011-08-12 16:21:35 -0500 | [diff] [blame] | 32 | xfs_bit.o \ |
Dave Chinner | 6898811 | 2013-08-12 20:49:42 +1000 | [diff] [blame] | 33 | xfs_bmap_util.o \ |
Christoph Hellwig | c59d87c | 2011-08-12 16:21:35 -0500 | [diff] [blame] | 34 | xfs_buf.o \ |
Dave Chinner | 4a8af27 | 2013-08-12 20:49:36 +1000 | [diff] [blame] | 35 | xfs_dir2_readdir.o \ |
Christoph Hellwig | c59d87c | 2011-08-12 16:21:35 -0500 | [diff] [blame] | 36 | xfs_discard.o \ |
| 37 | xfs_error.o \ |
| 38 | xfs_export.o \ |
Dave Chinner | efc27b5 | 2012-04-29 10:39:43 +0000 | [diff] [blame] | 39 | xfs_extent_busy.o \ |
Christoph Hellwig | c59d87c | 2011-08-12 16:21:35 -0500 | [diff] [blame] | 40 | xfs_file.o \ |
| 41 | xfs_filestream.o \ |
| 42 | xfs_fsops.o \ |
Christoph Hellwig | c59d87c | 2011-08-12 16:21:35 -0500 | [diff] [blame] | 43 | xfs_globals.o \ |
Dave Chinner | 6d8b79c | 2012-10-08 21:56:09 +1100 | [diff] [blame] | 44 | xfs_icache.o \ |
Christoph Hellwig | c59d87c | 2011-08-12 16:21:35 -0500 | [diff] [blame] | 45 | xfs_ioctl.o \ |
| 46 | xfs_iomap.o \ |
| 47 | xfs_iops.o \ |
| 48 | xfs_itable.o \ |
| 49 | xfs_message.o \ |
Dave Chinner | ff55068 | 2013-08-12 20:49:41 +1000 | [diff] [blame] | 50 | xfs_mount.o \ |
Christoph Hellwig | c59d87c | 2011-08-12 16:21:35 -0500 | [diff] [blame] | 51 | xfs_mru_cache.o \ |
Dave Chinner | 19de735 | 2013-04-03 16:11:18 +1100 | [diff] [blame] | 52 | xfs_super.o \ |
Dave Chinner | 1fb7e48d | 2013-08-12 20:49:40 +1000 | [diff] [blame] | 53 | xfs_symlink.o \ |
Dave Chinner | 7fd36c4 | 2013-08-12 20:49:32 +1000 | [diff] [blame] | 54 | xfs_trans.o \ |
Dave Chinner | 19de735 | 2013-04-03 16:11:18 +1100 | [diff] [blame] | 55 | xfs_xattr.o \ |
Christoph Hellwig | c59d87c | 2011-08-12 16:21:35 -0500 | [diff] [blame] | 56 | kmem.o \ |
| 57 | uuid.o |
Lachlan McIlroy | 269cdfa | 2007-11-28 18:28:09 +1100 | [diff] [blame] | 58 | |
Christoph Hellwig | c59d87c | 2011-08-12 16:21:35 -0500 | [diff] [blame] | 59 | # code shared with libxfs |
Andi Kleen | 58b7983 | 2007-11-27 16:53:47 +1100 | [diff] [blame] | 60 | xfs-y += xfs_alloc.o \ |
| 61 | xfs_alloc_btree.o \ |
| 62 | xfs_attr.o \ |
| 63 | xfs_attr_leaf.o \ |
Dave Chinner | 95920cd | 2013-04-03 16:11:27 +1100 | [diff] [blame] | 64 | xfs_attr_remote.o \ |
Andi Kleen | 58b7983 | 2007-11-27 16:53:47 +1100 | [diff] [blame] | 65 | xfs_bmap.o \ |
| 66 | xfs_bmap_btree.o \ |
| 67 | xfs_btree.o \ |
Andi Kleen | 58b7983 | 2007-11-27 16:53:47 +1100 | [diff] [blame] | 68 | xfs_da_btree.o \ |
| 69 | xfs_dir2.o \ |
| 70 | xfs_dir2_block.o \ |
| 71 | xfs_dir2_data.o \ |
| 72 | xfs_dir2_leaf.o \ |
| 73 | xfs_dir2_node.o \ |
| 74 | xfs_dir2_sf.o \ |
Andi Kleen | 58b7983 | 2007-11-27 16:53:47 +1100 | [diff] [blame] | 75 | xfs_ialloc.o \ |
| 76 | xfs_ialloc_btree.o \ |
Dave Chinner | 3ebe7d2 | 2013-06-27 16:04:53 +1000 | [diff] [blame] | 77 | xfs_icreate_item.o \ |
Andi Kleen | 58b7983 | 2007-11-27 16:53:47 +1100 | [diff] [blame] | 78 | xfs_inode.o \ |
Dave Chinner | 5c4d97d | 2013-08-12 20:49:33 +1000 | [diff] [blame] | 79 | xfs_inode_fork.o \ |
Dave Chinner | 1fd7115 | 2013-08-12 20:49:35 +1000 | [diff] [blame] | 80 | xfs_inode_buf.o \ |
Andi Kleen | 58b7983 | 2007-11-27 16:53:47 +1100 | [diff] [blame] | 81 | xfs_log_recover.o \ |
Jie Liu | 5a96a94 | 2013-08-12 20:50:02 +1000 | [diff] [blame] | 82 | xfs_log_rlimit.o \ |
Dave Chinner | ff55068 | 2013-08-12 20:49:41 +1000 | [diff] [blame] | 83 | xfs_sb.o \ |
Dave Chinner | 1fb7e48d | 2013-08-12 20:49:40 +1000 | [diff] [blame] | 84 | xfs_symlink_remote.o \ |
Dave Chinner | 7fd36c4 | 2013-08-12 20:49:32 +1000 | [diff] [blame] | 85 | xfs_trans_resv.o |
Christoph Hellwig | c59d87c | 2011-08-12 16:21:35 -0500 | [diff] [blame] | 86 | |
| 87 | # low-level transaction/log code |
| 88 | xfs-y += xfs_log.o \ |
| 89 | xfs_log_cil.o \ |
| 90 | xfs_buf_item.o \ |
| 91 | xfs_extfree_item.o \ |
| 92 | xfs_inode_item.o \ |
Andi Kleen | 58b7983 | 2007-11-27 16:53:47 +1100 | [diff] [blame] | 93 | xfs_trans_ail.o \ |
| 94 | xfs_trans_buf.o \ |
| 95 | xfs_trans_extfree.o \ |
| 96 | xfs_trans_inode.o \ |
Andi Kleen | 58b7983 | 2007-11-27 16:53:47 +1100 | [diff] [blame] | 97 | |
Christoph Hellwig | c59d87c | 2011-08-12 16:21:35 -0500 | [diff] [blame] | 98 | # optional features |
| 99 | xfs-$(CONFIG_XFS_QUOTA) += xfs_dquot.o \ |
| 100 | xfs_dquot_item.o \ |
| 101 | xfs_trans_dquot.o \ |
| 102 | xfs_qm_syscalls.o \ |
| 103 | xfs_qm_bhv.o \ |
| 104 | xfs_qm.o \ |
| 105 | xfs_quotaops.o |
Christoph Hellwig | c59d87c | 2011-08-12 16:21:35 -0500 | [diff] [blame] | 106 | xfs-$(CONFIG_XFS_RT) += xfs_rtalloc.o |
| 107 | xfs-$(CONFIG_XFS_POSIX_ACL) += xfs_acl.o |
| 108 | xfs-$(CONFIG_PROC_FS) += xfs_stats.o |
| 109 | xfs-$(CONFIG_SYSCTL) += xfs_sysctl.o |
| 110 | xfs-$(CONFIG_COMPAT) += xfs_ioctl32.o |