Makefile 1.9 KB
Newer Older
1
# SPDX-License-Identifier: GPL-2.0
2

3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18
# Subset of W=1 warnings
subdir-ccflags-y += -Wextra -Wunused -Wno-unused-parameter
subdir-ccflags-y += -Wmissing-declarations
subdir-ccflags-y += -Wmissing-format-attribute
subdir-ccflags-y += -Wmissing-prototypes
subdir-ccflags-y += -Wold-style-definition
subdir-ccflags-y += -Wmissing-include-dirs
subdir-ccflags-y += $(call cc-option, -Wunused-but-set-variable)
subdir-ccflags-y += $(call cc-option, -Wunused-const-variable)
subdir-ccflags-y += $(call cc-option, -Wpacked-not-aligned)
subdir-ccflags-y += $(call cc-option, -Wstringop-truncation)
# The following turn off the warnings enabled by -Wextra
subdir-ccflags-y += -Wno-missing-field-initializers
subdir-ccflags-y += -Wno-sign-compare
subdir-ccflags-y += -Wno-type-limits

19
obj-$(CONFIG_BTRFS_FS) := btrfs.o
C
Christoph Hellwig 已提交
20 21

btrfs-y += super.o ctree.o extent-tree.o print-tree.o root-tree.o dir-item.o \
22
	   file-item.o inode-item.o disk-io.o \
C
Chris Mason 已提交
23
	   transaction.o inode.o file.o tree-defrag.o \
24
	   extent_map.o sysfs.o struct-funcs.o xattr.o ordered-data.o \
Y
Yan Zheng 已提交
25
	   extent_io.o volumes.o async-thread.o ioctl.o locking.o orphan.o \
N
Nick Terrell 已提交
26
	   export.o tree-log.o free-space-cache.o zlib.o lzo.o zstd.o \
27
	   compression.o delayed-ref.o relocation.o delayed-inode.o scrub.o \
28
	   reada.o backref.o ulist.o qgroup.o send.o dev-replace.o raid56.o \
29
	   uuid-tree.o props.o free-space-tree.o tree-checker.o space-info.o \
30 31
	   block-rsv.o delalloc-space.o block-group.o discard.o reflink.o \
	   subpage.o
32 33

btrfs-$(CONFIG_BTRFS_FS_POSIX_ACL) += acl.o
34
btrfs-$(CONFIG_BTRFS_FS_CHECK_INTEGRITY) += check-integrity.o
J
Josef Bacik 已提交
35
btrfs-$(CONFIG_BTRFS_FS_REF_VERIFY) += ref-verify.o
36
btrfs-$(CONFIG_BLK_DEV_ZONED) += zoned.o
37

38
btrfs-$(CONFIG_BTRFS_FS_RUN_SANITY_TESTS) += tests/free-space-tests.o \
39
	tests/extent-buffer-tests.o tests/btrfs-tests.o \
40
	tests/extent-io-tests.o tests/inode-tests.o tests/qgroup-tests.o \
L
Liu Bo 已提交
41
	tests/free-space-tree-tests.o tests/extent-map-tests.o