Nathan Scott | cde410a | 2005-09-05 11:47:01 +1000 | [diff] [blame] | 1 | # |
Nathan Scott | c9fc0d6 | 2005-09-09 11:38:09 +1000 | [diff] [blame] | 2 | # Copyright (c) 2000-2005 Silicon Graphics, Inc. All Rights Reserved. |
Nathan Scott | cde410a | 2005-09-05 11:47:01 +1000 | [diff] [blame] | 3 | # |
| 4 | # This program is free software; you can redistribute it and/or modify it |
| 5 | # under the terms of version 2 of the GNU General Public License as |
| 6 | # published by the Free Software Foundation. |
| 7 | # |
| 8 | # This program is distributed in the hope that it would be useful, but |
| 9 | # WITHOUT ANY WARRANTY; without even the implied warranty of |
| 10 | # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. |
| 11 | # |
| 12 | # Further, this software is distributed without any warranty that it is |
| 13 | # free of the rightful claim of any third person regarding infringement |
| 14 | # or the like. Any license provided herein, whether implied or |
| 15 | # otherwise, applies only to this software file. Patent licenses, if |
| 16 | # any, provided herein do not apply to combinations of this program with |
| 17 | # other software, or any other product whatsoever. |
| 18 | # |
| 19 | # You should have received a copy of the GNU General Public License along |
| 20 | # with this program; if not, write the Free Software Foundation, Inc., 59 |
| 21 | # Temple Place - Suite 330, Boston MA 02111-1307, USA. |
| 22 | # |
| 23 | # Contact information: Silicon Graphics, Inc., 1600 Amphitheatre Pkwy, |
| 24 | # Mountain View, CA 94043, or: |
| 25 | # |
| 26 | # http://www.sgi.com |
| 27 | # |
| 28 | # For further information regarding this notice, see: |
| 29 | # |
| 30 | # http://oss.sgi.com/projects/GenInfo/SGIGPLNoticeExplan/ |
| 31 | # |
| 32 | |
| 33 | EXTRA_CFLAGS += -Ifs/xfs -Ifs/xfs/linux-2.6 -funsigned-char |
| 34 | |
| 35 | XFS_LINUX := linux-2.6 |
| 36 | |
| 37 | ifeq ($(CONFIG_XFS_DEBUG),y) |
| 38 | EXTRA_CFLAGS += -g -DSTATIC="" -DDEBUG |
| 39 | EXTRA_CFLAGS += -DPAGEBUF_LOCK_TRACKING |
| 40 | endif |
| 41 | ifeq ($(CONFIG_XFS_TRACE),y) |
| 42 | EXTRA_CFLAGS += -DXFS_ALLOC_TRACE |
| 43 | EXTRA_CFLAGS += -DXFS_ATTR_TRACE |
| 44 | EXTRA_CFLAGS += -DXFS_BLI_TRACE |
| 45 | EXTRA_CFLAGS += -DXFS_BMAP_TRACE |
| 46 | EXTRA_CFLAGS += -DXFS_BMBT_TRACE |
| 47 | EXTRA_CFLAGS += -DXFS_DIR_TRACE |
| 48 | EXTRA_CFLAGS += -DXFS_DIR2_TRACE |
| 49 | EXTRA_CFLAGS += -DXFS_DQUOT_TRACE |
| 50 | EXTRA_CFLAGS += -DXFS_ILOCK_TRACE |
| 51 | EXTRA_CFLAGS += -DXFS_LOG_TRACE |
| 52 | EXTRA_CFLAGS += -DXFS_RW_TRACE |
| 53 | EXTRA_CFLAGS += -DPAGEBUF_TRACE |
| 54 | EXTRA_CFLAGS += -DXFS_VNODE_TRACE |
| 55 | endif |
| 56 | |
| 57 | obj-$(CONFIG_XFS_FS) += xfs.o |
Nathan Scott | c9fc0d6 | 2005-09-09 11:38:09 +1000 | [diff] [blame] | 58 | |
| 59 | xfs-$(CONFIG_XFS_QUOTA) += $(addprefix quota/, \ |
| 60 | xfs_dquot.o \ |
| 61 | xfs_dquot_item.o \ |
| 62 | xfs_trans_dquot.o \ |
| 63 | xfs_qm_syscalls.o \ |
| 64 | xfs_qm_bhv.o \ |
| 65 | xfs_qm.o) |
| 66 | |
| 67 | ifeq ($(CONFIG_XFS_QUOTA),y) |
| 68 | xfs-$(CONFIG_PROC_FS) += quota/xfs_qm_stats.o |
| 69 | endif |
Nathan Scott | cde410a | 2005-09-05 11:47:01 +1000 | [diff] [blame] | 70 | |
| 71 | xfs-$(CONFIG_XFS_RT) += xfs_rtalloc.o |
| 72 | xfs-$(CONFIG_XFS_POSIX_ACL) += xfs_acl.o |
| 73 | xfs-$(CONFIG_PROC_FS) += $(XFS_LINUX)/xfs_stats.o |
| 74 | xfs-$(CONFIG_SYSCTL) += $(XFS_LINUX)/xfs_sysctl.o |
| 75 | xfs-$(CONFIG_COMPAT) += $(XFS_LINUX)/xfs_ioctl32.o |
| 76 | xfs-$(CONFIG_XFS_EXPORT) += $(XFS_LINUX)/xfs_export.o |
| 77 | |
| 78 | |
| 79 | xfs-y += xfs_alloc.o \ |
| 80 | xfs_alloc_btree.o \ |
| 81 | xfs_attr.o \ |
| 82 | xfs_attr_leaf.o \ |
| 83 | xfs_behavior.o \ |
| 84 | xfs_bit.o \ |
| 85 | xfs_bmap.o \ |
| 86 | xfs_bmap_btree.o \ |
| 87 | xfs_btree.o \ |
| 88 | xfs_buf_item.o \ |
| 89 | xfs_da_btree.o \ |
| 90 | xfs_dir.o \ |
| 91 | xfs_dir2.o \ |
| 92 | xfs_dir2_block.o \ |
| 93 | xfs_dir2_data.o \ |
| 94 | xfs_dir2_leaf.o \ |
| 95 | xfs_dir2_node.o \ |
| 96 | xfs_dir2_sf.o \ |
| 97 | xfs_dir_leaf.o \ |
| 98 | xfs_error.o \ |
| 99 | xfs_extfree_item.o \ |
| 100 | xfs_fsops.o \ |
| 101 | xfs_ialloc.o \ |
| 102 | xfs_ialloc_btree.o \ |
| 103 | xfs_iget.o \ |
| 104 | xfs_inode.o \ |
| 105 | xfs_inode_item.o \ |
| 106 | xfs_iocore.o \ |
| 107 | xfs_iomap.o \ |
| 108 | xfs_itable.o \ |
| 109 | xfs_dfrag.o \ |
| 110 | xfs_log.o \ |
| 111 | xfs_log_recover.o \ |
Nathan Scott | cde410a | 2005-09-05 11:47:01 +1000 | [diff] [blame] | 112 | xfs_mount.o \ |
| 113 | xfs_rename.o \ |
| 114 | xfs_trans.o \ |
| 115 | xfs_trans_ail.o \ |
| 116 | xfs_trans_buf.o \ |
| 117 | xfs_trans_extfree.o \ |
| 118 | xfs_trans_inode.o \ |
| 119 | xfs_trans_item.o \ |
| 120 | xfs_utils.o \ |
| 121 | xfs_vfsops.o \ |
| 122 | xfs_vnodeops.o \ |
| 123 | xfs_rw.o \ |
| 124 | xfs_dmops.o \ |
| 125 | xfs_qmops.o |
| 126 | |
| 127 | xfs-$(CONFIG_XFS_TRACE) += xfs_dir2_trace.o |
| 128 | |
| 129 | # Objects in linux/ |
| 130 | xfs-y += $(addprefix $(XFS_LINUX)/, \ |
| 131 | kmem.o \ |
| 132 | xfs_aops.o \ |
| 133 | xfs_buf.o \ |
| 134 | xfs_file.o \ |
| 135 | xfs_fs_subr.o \ |
| 136 | xfs_globals.o \ |
| 137 | xfs_ioctl.o \ |
| 138 | xfs_iops.o \ |
| 139 | xfs_lrw.o \ |
| 140 | xfs_super.o \ |
| 141 | xfs_vfs.o \ |
| 142 | xfs_vnode.o) |
| 143 | |
| 144 | # Objects in support/ |
| 145 | xfs-y += $(addprefix support/, \ |
| 146 | debug.o \ |
| 147 | move.o \ |
| 148 | uuid.o) |
| 149 | |
| 150 | xfs-$(CONFIG_XFS_TRACE) += support/ktrace.o |
| 151 | |