Makefile 3.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166
  1. # SPDX-License-Identifier: GPL-2.0
  2. #
  3. # Copyright (c) 2000-2005 Silicon Graphics, Inc.
  4. # All Rights Reserved.
  5. #
  6. ccflags-y += -I$(src) # needed for trace events
  7. ccflags-y += -I$(src)/libxfs
  8. ccflags-$(CONFIG_XFS_DEBUG) += -g
  9. obj-$(CONFIG_XFS_FS) += xfs.o
  10. # this one should be compiled first, as the tracing macros can easily blow up
  11. xfs-y += xfs_trace.o
  12. # build the libxfs code first
  13. xfs-y += $(addprefix libxfs/, \
  14. xfs_ag.o \
  15. xfs_alloc.o \
  16. xfs_alloc_btree.o \
  17. xfs_attr.o \
  18. xfs_attr_leaf.o \
  19. xfs_attr_remote.o \
  20. xfs_bit.o \
  21. xfs_bmap.o \
  22. xfs_bmap_btree.o \
  23. xfs_btree.o \
  24. xfs_da_btree.o \
  25. xfs_da_format.o \
  26. xfs_defer.o \
  27. xfs_dir2.o \
  28. xfs_dir2_block.o \
  29. xfs_dir2_data.o \
  30. xfs_dir2_leaf.o \
  31. xfs_dir2_node.o \
  32. xfs_dir2_sf.o \
  33. xfs_dquot_buf.o \
  34. xfs_ialloc.o \
  35. xfs_ialloc_btree.o \
  36. xfs_iext_tree.o \
  37. xfs_inode_fork.o \
  38. xfs_inode_buf.o \
  39. xfs_log_rlimit.o \
  40. xfs_ag_resv.o \
  41. xfs_rmap.o \
  42. xfs_rmap_btree.o \
  43. xfs_refcount.o \
  44. xfs_refcount_btree.o \
  45. xfs_sb.o \
  46. xfs_symlink_remote.o \
  47. xfs_trans_resv.o \
  48. xfs_types.o \
  49. )
  50. # xfs_rtbitmap is shared with libxfs
  51. xfs-$(CONFIG_XFS_RT) += $(addprefix libxfs/, \
  52. xfs_rtbitmap.o \
  53. )
  54. # highlevel code
  55. xfs-y += xfs_aops.o \
  56. xfs_attr_inactive.o \
  57. xfs_attr_list.o \
  58. xfs_bmap_util.o \
  59. xfs_buf.o \
  60. xfs_dir2_readdir.o \
  61. xfs_discard.o \
  62. xfs_error.o \
  63. xfs_export.o \
  64. xfs_extent_busy.o \
  65. xfs_file.o \
  66. xfs_filestream.o \
  67. xfs_fsmap.o \
  68. xfs_fsops.o \
  69. xfs_globals.o \
  70. xfs_icache.o \
  71. xfs_ioctl.o \
  72. xfs_iomap.o \
  73. xfs_iops.o \
  74. xfs_inode.o \
  75. xfs_itable.o \
  76. xfs_message.o \
  77. xfs_mount.o \
  78. xfs_mru_cache.o \
  79. xfs_reflink.o \
  80. xfs_stats.o \
  81. xfs_super.o \
  82. xfs_symlink.o \
  83. xfs_sysfs.o \
  84. xfs_trans.o \
  85. xfs_xattr.o \
  86. kmem.o
  87. # low-level transaction/log code
  88. xfs-y += xfs_log.o \
  89. xfs_log_cil.o \
  90. xfs_bmap_item.o \
  91. xfs_buf_item.o \
  92. xfs_extfree_item.o \
  93. xfs_icreate_item.o \
  94. xfs_inode_item.o \
  95. xfs_refcount_item.o \
  96. xfs_rmap_item.o \
  97. xfs_log_recover.o \
  98. xfs_trans_ail.o \
  99. xfs_trans_bmap.o \
  100. xfs_trans_buf.o \
  101. xfs_trans_extfree.o \
  102. xfs_trans_inode.o \
  103. xfs_trans_refcount.o \
  104. xfs_trans_rmap.o \
  105. # optional features
  106. xfs-$(CONFIG_XFS_QUOTA) += xfs_dquot.o \
  107. xfs_dquot_item.o \
  108. xfs_trans_dquot.o \
  109. xfs_qm_syscalls.o \
  110. xfs_qm_bhv.o \
  111. xfs_qm.o \
  112. xfs_quotaops.o
  113. # xfs_rtbitmap is shared with libxfs
  114. xfs-$(CONFIG_XFS_RT) += xfs_rtalloc.o
  115. xfs-$(CONFIG_XFS_POSIX_ACL) += xfs_acl.o
  116. xfs-$(CONFIG_SYSCTL) += xfs_sysctl.o
  117. xfs-$(CONFIG_COMPAT) += xfs_ioctl32.o
  118. xfs-$(CONFIG_EXPORTFS_BLOCK_OPS) += xfs_pnfs.o
  119. # online scrub/repair
  120. ifeq ($(CONFIG_XFS_ONLINE_SCRUB),y)
  121. # Tracepoints like to blow up, so build that before everything else
  122. xfs-y += $(addprefix scrub/, \
  123. trace.o \
  124. agheader.o \
  125. alloc.o \
  126. attr.o \
  127. bmap.o \
  128. btree.o \
  129. common.o \
  130. dabtree.o \
  131. dir.o \
  132. ialloc.o \
  133. inode.o \
  134. parent.o \
  135. refcount.o \
  136. rmap.o \
  137. scrub.o \
  138. symlink.o \
  139. )
  140. xfs-$(CONFIG_XFS_RT) += scrub/rtbitmap.o
  141. xfs-$(CONFIG_XFS_QUOTA) += scrub/quota.o
  142. # online repair
  143. ifeq ($(CONFIG_XFS_ONLINE_REPAIR),y)
  144. xfs-y += $(addprefix scrub/, \
  145. agheader_repair.o \
  146. bitmap.o \
  147. repair.o \
  148. )
  149. endif
  150. endif