blob: 26ef1958b65b5289583090b6143b2ddec03c8c90 [file] [log] [blame]
Andi Kleen58b79832007-11-27 16:53:47 +11001#
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 Hellwigb6bede32011-08-14 17:13:00 +000019ccflags-y += -I$(src) # needed for trace events
Dave Chinner69116a12014-06-25 14:57:22 +100020ccflags-y += -I$(src)/libxfs
Christoph Hellwigb6bede32011-08-14 17:13:00 +000021
matt mooney0ccd2342011-01-14 06:12:35 -080022ccflags-$(CONFIG_XFS_DEBUG) += -g
Andi Kleen58b79832007-11-27 16:53:47 +110023
Andi Kleen58b79832007-11-27 16:53:47 +110024obj-$(CONFIG_XFS_FS) += xfs.o
Lachlan McIlroy269cdfa2007-11-28 18:28:09 +110025
Christoph Hellwigc59d87c2011-08-12 16:21:35 -050026# this one should be compiled first, as the tracing macros can easily blow up
27xfs-y += xfs_trace.o
Christoph Hellwig0b1b2132009-12-14 23:14:59 +000028
Dave Chinner69116a12014-06-25 14:57:22 +100029# build the libxfs code first
30xfs-y += $(addprefix libxfs/, \
Dave Chinner30f712c2014-06-25 14:57:53 +100031 xfs_alloc.o \
32 xfs_alloc_btree.o \
33 xfs_attr.o \
34 xfs_attr_leaf.o \
35 xfs_attr_remote.o \
Dave Chinner1cfc4a92015-07-29 11:52:08 +100036 xfs_bit.o \
Dave Chinner30f712c2014-06-25 14:57:53 +100037 xfs_bmap.o \
38 xfs_bmap_btree.o \
39 xfs_btree.o \
40 xfs_da_btree.o \
41 xfs_da_format.o \
Darrick J. Wong4e0cc292016-08-03 11:12:25 +100042 xfs_defer.o \
Dave Chinner30f712c2014-06-25 14:57:53 +100043 xfs_dir2.o \
44 xfs_dir2_block.o \
45 xfs_dir2_data.o \
46 xfs_dir2_leaf.o \
47 xfs_dir2_node.o \
48 xfs_dir2_sf.o \
49 xfs_dquot_buf.o \
50 xfs_ialloc.o \
51 xfs_ialloc_btree.o \
52 xfs_inode_fork.o \
53 xfs_inode_buf.o \
54 xfs_log_rlimit.o \
Darrick J. Wong3fd129b2016-09-19 10:30:52 +100055 xfs_ag_resv.o \
Darrick J. Wong673930c2016-08-03 11:33:43 +100056 xfs_rmap.o \
Darrick J. Wong035e00a2016-08-03 11:36:07 +100057 xfs_rmap_btree.o \
Darrick J. Wongbdf28632016-10-03 09:11:19 -070058 xfs_refcount.o \
Darrick J. Wong1946b912016-10-03 09:11:18 -070059 xfs_refcount_btree.o \
Dave Chinner69116a12014-06-25 14:57:22 +100060 xfs_sb.o \
Dave Chinner30f712c2014-06-25 14:57:53 +100061 xfs_symlink_remote.o \
62 xfs_trans_resv.o \
63 )
64# xfs_rtbitmap is shared with libxfs
65xfs-$(CONFIG_XFS_RT) += $(addprefix libxfs/, \
66 xfs_rtbitmap.o \
Dave Chinner69116a12014-06-25 14:57:22 +100067 )
68
Christoph Hellwigc59d87c2011-08-12 16:21:35 -050069# highlevel code
70xfs-y += xfs_aops.o \
Dave Chinnerfde22272013-08-12 20:49:39 +100071 xfs_attr_inactive.o \
Dave Chinnerabec5f22013-08-12 20:49:38 +100072 xfs_attr_list.o \
Dave Chinner68988112013-08-12 20:49:42 +100073 xfs_bmap_util.o \
Christoph Hellwigc59d87c2011-08-12 16:21:35 -050074 xfs_buf.o \
Dave Chinner4a8af272013-08-12 20:49:36 +100075 xfs_dir2_readdir.o \
Christoph Hellwigc59d87c2011-08-12 16:21:35 -050076 xfs_discard.o \
77 xfs_error.o \
78 xfs_export.o \
Dave Chinnerefc27b52012-04-29 10:39:43 +000079 xfs_extent_busy.o \
Christoph Hellwigc59d87c2011-08-12 16:21:35 -050080 xfs_file.o \
81 xfs_filestream.o \
82 xfs_fsops.o \
Christoph Hellwigc59d87c2011-08-12 16:21:35 -050083 xfs_globals.o \
Dave Chinner6d8b79c2012-10-08 21:56:09 +110084 xfs_icache.o \
Christoph Hellwigc59d87c2011-08-12 16:21:35 -050085 xfs_ioctl.o \
86 xfs_iomap.o \
87 xfs_iops.o \
Dave Chinner30f712c2014-06-25 14:57:53 +100088 xfs_inode.o \
Christoph Hellwigc59d87c2011-08-12 16:21:35 -050089 xfs_itable.o \
90 xfs_message.o \
Dave Chinnerff550682013-08-12 20:49:41 +100091 xfs_mount.o \
Christoph Hellwigc59d87c2011-08-12 16:21:35 -050092 xfs_mru_cache.o \
Darrick J. Wong3993bae2016-10-03 09:11:32 -070093 xfs_reflink.o \
Dave Chinner985ef4d2015-10-19 08:42:46 +110094 xfs_stats.o \
Dave Chinner19de7352013-04-03 16:11:18 +110095 xfs_super.o \
Dave Chinner1fb7e48d2013-08-12 20:49:40 +100096 xfs_symlink.o \
Brian Fostera31b1d32014-07-15 08:07:01 +100097 xfs_sysfs.o \
Dave Chinner7fd36c42013-08-12 20:49:32 +100098 xfs_trans.o \
Dave Chinner19de7352013-04-03 16:11:18 +110099 xfs_xattr.o \
Christoph Hellwigc59d87c2011-08-12 16:21:35 -0500100 kmem.o \
101 uuid.o
Lachlan McIlroy269cdfa2007-11-28 18:28:09 +1100102
Christoph Hellwigc59d87c2011-08-12 16:21:35 -0500103# low-level transaction/log code
104xfs-y += xfs_log.o \
105 xfs_log_cil.o \
Darrick J. Wong6413a012016-10-03 09:11:25 -0700106 xfs_bmap_item.o \
Christoph Hellwigc59d87c2011-08-12 16:21:35 -0500107 xfs_buf_item.o \
108 xfs_extfree_item.o \
Dave Chinner30f712c2014-06-25 14:57:53 +1000109 xfs_icreate_item.o \
Christoph Hellwigc59d87c2011-08-12 16:21:35 -0500110 xfs_inode_item.o \
Darrick J. Wongbaf4bcac2016-10-03 09:11:20 -0700111 xfs_refcount_item.o \
Darrick J. Wong5880f2d72016-08-03 12:04:45 +1000112 xfs_rmap_item.o \
Dave Chinner30f712c2014-06-25 14:57:53 +1000113 xfs_log_recover.o \
Andi Kleen58b79832007-11-27 16:53:47 +1100114 xfs_trans_ail.o \
Darrick J. Wong77d61fe2016-10-03 09:11:26 -0700115 xfs_trans_bmap.o \
Andi Kleen58b79832007-11-27 16:53:47 +1100116 xfs_trans_buf.o \
117 xfs_trans_extfree.o \
118 xfs_trans_inode.o \
Darrick J. Wongf997ee22016-10-03 09:11:21 -0700119 xfs_trans_refcount.o \
Darrick J. Wong9e88b5d2016-08-03 12:09:48 +1000120 xfs_trans_rmap.o \
Andi Kleen58b79832007-11-27 16:53:47 +1100121
Christoph Hellwigc59d87c2011-08-12 16:21:35 -0500122# optional features
123xfs-$(CONFIG_XFS_QUOTA) += xfs_dquot.o \
124 xfs_dquot_item.o \
125 xfs_trans_dquot.o \
126 xfs_qm_syscalls.o \
127 xfs_qm_bhv.o \
128 xfs_qm.o \
129 xfs_quotaops.o
Dave Chinnerc963c612013-10-15 09:17:56 +1100130
131# xfs_rtbitmap is shared with libxfs
Dave Chinner30f712c2014-06-25 14:57:53 +1000132xfs-$(CONFIG_XFS_RT) += xfs_rtalloc.o
Dave Chinnerc963c612013-10-15 09:17:56 +1100133
Christoph Hellwigc59d87c2011-08-12 16:21:35 -0500134xfs-$(CONFIG_XFS_POSIX_ACL) += xfs_acl.o
Christoph Hellwigc59d87c2011-08-12 16:21:35 -0500135xfs-$(CONFIG_SYSCTL) += xfs_sysctl.o
136xfs-$(CONFIG_COMPAT) += xfs_ioctl32.o
Benjamin Coddington15d66ac2016-07-08 09:53:20 -0400137xfs-$(CONFIG_EXPORTFS_BLOCK_OPS) += xfs_pnfs.o