blob: 52c288514be1ff729a38f7b6d9a8e7232ea60b67 [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 \
42 xfs_dir2.o \
43 xfs_dir2_block.o \
44 xfs_dir2_data.o \
45 xfs_dir2_leaf.o \
46 xfs_dir2_node.o \
47 xfs_dir2_sf.o \
48 xfs_dquot_buf.o \
49 xfs_ialloc.o \
50 xfs_ialloc_btree.o \
51 xfs_inode_fork.o \
52 xfs_inode_buf.o \
53 xfs_log_rlimit.o \
Dave Chinner69116a12014-06-25 14:57:22 +100054 xfs_sb.o \
Dave Chinner30f712c2014-06-25 14:57:53 +100055 xfs_symlink_remote.o \
56 xfs_trans_resv.o \
57 )
58# xfs_rtbitmap is shared with libxfs
59xfs-$(CONFIG_XFS_RT) += $(addprefix libxfs/, \
60 xfs_rtbitmap.o \
Dave Chinner69116a12014-06-25 14:57:22 +100061 )
62
Christoph Hellwigc59d87c2011-08-12 16:21:35 -050063# highlevel code
64xfs-y += xfs_aops.o \
Dave Chinnerfde22272013-08-12 20:49:39 +100065 xfs_attr_inactive.o \
Dave Chinnerabec5f22013-08-12 20:49:38 +100066 xfs_attr_list.o \
Dave Chinner68988112013-08-12 20:49:42 +100067 xfs_bmap_util.o \
Christoph Hellwigc59d87c2011-08-12 16:21:35 -050068 xfs_buf.o \
Dave Chinner4a8af272013-08-12 20:49:36 +100069 xfs_dir2_readdir.o \
Christoph Hellwigc59d87c2011-08-12 16:21:35 -050070 xfs_discard.o \
71 xfs_error.o \
72 xfs_export.o \
Dave Chinnerefc27b52012-04-29 10:39:43 +000073 xfs_extent_busy.o \
Christoph Hellwigc59d87c2011-08-12 16:21:35 -050074 xfs_file.o \
75 xfs_filestream.o \
76 xfs_fsops.o \
Christoph Hellwigc59d87c2011-08-12 16:21:35 -050077 xfs_globals.o \
Dave Chinner6d8b79c2012-10-08 21:56:09 +110078 xfs_icache.o \
Christoph Hellwigc59d87c2011-08-12 16:21:35 -050079 xfs_ioctl.o \
80 xfs_iomap.o \
81 xfs_iops.o \
Dave Chinner30f712c2014-06-25 14:57:53 +100082 xfs_inode.o \
Christoph Hellwigc59d87c2011-08-12 16:21:35 -050083 xfs_itable.o \
84 xfs_message.o \
Dave Chinnerff550682013-08-12 20:49:41 +100085 xfs_mount.o \
Christoph Hellwigc59d87c2011-08-12 16:21:35 -050086 xfs_mru_cache.o \
Dave Chinner985ef4d2015-10-19 08:42:46 +110087 xfs_stats.o \
Dave Chinner19de7352013-04-03 16:11:18 +110088 xfs_super.o \
Dave Chinner1fb7e48d2013-08-12 20:49:40 +100089 xfs_symlink.o \
Brian Fostera31b1d32014-07-15 08:07:01 +100090 xfs_sysfs.o \
Dave Chinner7fd36c42013-08-12 20:49:32 +100091 xfs_trans.o \
Dave Chinner19de7352013-04-03 16:11:18 +110092 xfs_xattr.o \
Christoph Hellwigc59d87c2011-08-12 16:21:35 -050093 kmem.o \
94 uuid.o
Lachlan McIlroy269cdfa2007-11-28 18:28:09 +110095
Christoph Hellwigc59d87c2011-08-12 16:21:35 -050096# low-level transaction/log code
97xfs-y += xfs_log.o \
98 xfs_log_cil.o \
99 xfs_buf_item.o \
100 xfs_extfree_item.o \
Dave Chinner30f712c2014-06-25 14:57:53 +1000101 xfs_icreate_item.o \
Christoph Hellwigc59d87c2011-08-12 16:21:35 -0500102 xfs_inode_item.o \
Dave Chinner30f712c2014-06-25 14:57:53 +1000103 xfs_log_recover.o \
Andi Kleen58b79832007-11-27 16:53:47 +1100104 xfs_trans_ail.o \
105 xfs_trans_buf.o \
106 xfs_trans_extfree.o \
107 xfs_trans_inode.o \
Andi Kleen58b79832007-11-27 16:53:47 +1100108
Christoph Hellwigc59d87c2011-08-12 16:21:35 -0500109# optional features
110xfs-$(CONFIG_XFS_QUOTA) += xfs_dquot.o \
111 xfs_dquot_item.o \
112 xfs_trans_dquot.o \
113 xfs_qm_syscalls.o \
114 xfs_qm_bhv.o \
115 xfs_qm.o \
116 xfs_quotaops.o
Dave Chinnerc963c612013-10-15 09:17:56 +1100117
118# xfs_rtbitmap is shared with libxfs
Dave Chinner30f712c2014-06-25 14:57:53 +1000119xfs-$(CONFIG_XFS_RT) += xfs_rtalloc.o
Dave Chinnerc963c612013-10-15 09:17:56 +1100120
Christoph Hellwigc59d87c2011-08-12 16:21:35 -0500121xfs-$(CONFIG_XFS_POSIX_ACL) += xfs_acl.o
Christoph Hellwigc59d87c2011-08-12 16:21:35 -0500122xfs-$(CONFIG_SYSCTL) += xfs_sysctl.o
123xfs-$(CONFIG_COMPAT) += xfs_ioctl32.o
Benjamin Coddington15d66ac2016-07-08 09:53:20 -0400124xfs-$(CONFIG_EXPORTFS_BLOCK_OPS) += xfs_pnfs.o