3 # all all main tools and the shared library
4 # static build static bnaries, requires static version of the libraries
5 # test run the full testsuite
6 # install install to default location (/usr/local)
7 # clean clean built binaries (not the documentation)
8 # clean-all clean as above, clean docs and generated files
10 # Tuning by variables (environment or make arguments):
11 # V=1 verbose, print command lines (default: quiet)
12 # C=1 run checker before compilation (default checker: sparse)
13 # D=1 debugging build, turn off optimizations
14 # D=dflags dtto, turn on additional debugging features:
15 # verbose - print file:line along with error/warning messages
16 # trace - print trace before the error/warning messages
17 # abort - call abort() on first error (dumps core)
18 # all - shortcut for all of the above
19 # asan - enable address sanitizer compiler feature
20 # ubsan - undefined behaviour sanitizer compiler feature
21 # bcheck - extended build checks
22 # W=123 build with warnings (default: off)
23 # DEBUG_CFLAGS additional compiler flags for debugging build
24 # EXTRA_CFLAGS additional compiler flags
25 # EXTRA_LDFLAGS additional linker flags
27 # Testing-specific options (see also tests/README.md):
28 # TEST=GLOB run test(s) from directories matching GLOB
29 # TEST_LOG=tty print name of a command run via the execution helpers
30 # TEST_LOG=dump dump testing log file when a test fails
33 # CHECKER static checker binary to be called (default: sparse)
34 # CHECKER_FLAGS flags to pass to CHECKER, can override CFLAGS
37 # Export all variables to sub-makes by default
41 ifneq ($(MAKEFILE_INC_INCLUDED),yes)
42 $(error Makefile.inc not generated, please configure first)
46 CSCOPE_CMD := cscope -u -b -c -q
48 include Makefile.extrawarn
53 DEBUG_CFLAGS_DEFAULT = -O0 -U_FORTIFY_SOURCE -ggdb3
54 DEBUG_CFLAGS_INTERNAL =
57 TOPDIR := $(shell pwd)
60 CFLAGS = $(SUBST_CFLAGS) \
62 -DBTRFS_FLAT_INCLUDES \
64 -fno-strict-aliasing \
67 -I$(TOPDIR)/kernel-lib \
69 $(DEBUG_CFLAGS_INTERNAL) \
72 LDFLAGS = $(SUBST_LDFLAGS) \
73 -rdynamic -L$(TOPDIR) $(EXTRA_LDFLAGS)
76 LIBBTRFS_LIBS = $(LIBS_BASE)
78 # Static compilation flags
79 STATIC_CFLAGS = $(CFLAGS) -ffunction-sections -fdata-sections
80 STATIC_LDFLAGS = -static -Wl,--gc-sections
81 STATIC_LIBS = $(STATIC_LIBS_BASE)
83 # don't use FORTIFY with sparse because glibc with FORTIFY can
84 # generate so many sparse errors that sparse stops parsing,
85 # which masks real errors that we want to see.
87 check_defs := .cc-defines.h
88 CHECKER_FLAGS := -include $(check_defs) -D__CHECKER__ \
89 -D__CHECK_ENDIAN__ -Wbitwise -Wuninitialized -Wshadow -Wundef \
92 objects = ctree.o disk-io.o kernel-lib/radix-tree.o extent-tree.o print-tree.o \
93 root-tree.o dir-item.o file-item.o inode-item.o inode-map.o \
94 extent-cache.o extent_io.o volumes.o utils.o repair.o \
95 qgroup.o raid56.o free-space-cache.o kernel-lib/list_sort.o props.o \
96 kernel-shared/ulist.o qgroup-verify.o backref.o string-table.o task-utils.o \
97 inode.o file.o find-root.o free-space-tree.o help.o send-dump.o \
99 cmds_objects = cmds-subvolume.o cmds-filesystem.o cmds-device.o cmds-scrub.o \
100 cmds-inspect.o cmds-balance.o cmds-send.o cmds-receive.o \
101 cmds-quota.o cmds-qgroup.o cmds-replace.o cmds-check.o \
102 cmds-restore.o cmds-rescue.o chunk-recover.o super-recover.o \
103 cmds-property.o cmds-fi-usage.o cmds-inspect-dump-tree.o \
104 cmds-inspect-dump-super.o cmds-inspect-tree-stats.o cmds-fi-du.o \
106 libbtrfs_objects = send-stream.o send-utils.o kernel-lib/rbtree.o btrfs-list.o \
107 kernel-lib/crc32c.o messages.o \
108 uuid-tree.o utils-lib.o rbtree-utils.o
109 libbtrfs_headers = send-stream.h send-utils.h send.h kernel-lib/rbtree.h btrfs-list.h \
110 kernel-lib/crc32c.h kernel-lib/list.h kerncompat.h \
111 kernel-lib/radix-tree.h kernel-lib/sizes.h extent-cache.h \
112 extent_io.h ioctl.h ctree.h btrfsck.h version.h
113 convert_objects = convert/main.o convert/common.o convert/source-fs.o \
114 convert/source-ext2.o
115 mkfs_objects = mkfs/main.o mkfs/common.o
117 TESTS = fsck-tests.sh convert-tests.sh
119 udev_rules = 64-btrfs-dm.rules
121 ifeq ("$(origin V)", "command line")
128 ifeq ($(BUILD_VERBOSE),1)
134 ifeq ("$(origin D)", "command line")
135 DEBUG_CFLAGS_INTERNAL = $(DEBUG_CFLAGS_DEFAULT) $(DEBUG_CFLAGS)
138 ifneq (,$(findstring verbose,$(D)))
139 DEBUG_CFLAGS_INTERNAL += -DDEBUG_VERBOSE_ERROR=1
142 ifneq (,$(findstring trace,$(D)))
143 DEBUG_CFLAGS_INTERNAL += -DDEBUG_TRACE_ON_ERROR=1
146 ifneq (,$(findstring abort,$(D)))
147 DEBUG_CFLAGS_INTERNAL += -DDEBUG_ABORT_ON_ERROR=1
150 ifneq (,$(findstring all,$(D)))
151 DEBUG_CFLAGS_INTERNAL += -DDEBUG_VERBOSE_ERROR=1
152 DEBUG_CFLAGS_INTERNAL += -DDEBUG_TRACE_ON_ERROR=1
153 DEBUG_CFLAGS_INTERNAL += -DDEBUG_ABORT_ON_ERROR=1
156 ifneq (,$(findstring asan,$(D)))
157 DEBUG_CFLAGS_INTERNAL += -fsanitize=address
160 ifneq (,$(findstring ubsan,$(D)))
161 DEBUG_CFLAGS_INTERNAL += -fsanitize=undefined
164 ifneq (,$(findstring bcheck,$(D)))
165 DEBUG_CFLAGS_INTERNAL += -DDEBUG_BUILD_CHECKS
168 MAKEOPTS = --no-print-directory Q=$(Q)
170 # build all by default
171 progs = $(progs_install) btrfsck btrfs-corrupt-block
173 # install only selected
174 progs_install = btrfs mkfs.btrfs btrfs-debug-tree \
175 btrfs-map-logical btrfs-image btrfs-zero-log \
176 btrfs-find-root btrfstune \
179 # other tools, not built by default
180 progs_extra = btrfs-fragments btrfs-calc-size btrfs-show-super
182 progs_static = $(foreach p,$(progs),$(p).static)
184 ifneq ($(DISABLE_BTRFSCONVERT),1)
185 progs_install += btrfs-convert
188 # external libs required by various binaries; for btrfs-foo,
189 # specify btrfs_foo_libs = <list of libs>; see $($(subst...)) rules below
190 btrfs_convert_cflags = -DBTRFSCONVERT_EXT2=$(BTRFSCONVERT_EXT2)
191 btrfs_fragments_libs = -lgd -lpng -ljpeg -lfreetype
192 btrfs_debug_tree_objects = cmds-inspect-dump-tree.o
193 btrfs_show_super_objects = cmds-inspect-dump-super.o
194 btrfs_calc_size_objects = cmds-inspect-tree-stats.o
196 # collect values of the variables above
197 standalone_deps = $(foreach dep,$(patsubst %,%_objects,$(subst -,_,$(filter btrfs-%, $(progs)))),$($(dep)))
200 BUILDDIRS = $(patsubst %,build-%,$(SUBDIRS))
201 INSTALLDIRS = $(patsubst %,install-%,$(SUBDIRS))
202 CLEANDIRS = $(patsubst %,clean-%,$(SUBDIRS))
204 ifneq ($(DISABLE_DOCUMENTATION),1)
205 BUILDDIRS += build-Documentation
206 INSTALLDIRS += install-Documentation
211 .PHONY: $(INSTALLDIRS)
214 .PHONY: all install clean
217 # Create all the static targets
218 static_objects = $(patsubst %.o, %.static.o, $(objects))
219 static_cmds_objects = $(patsubst %.o, %.static.o, $(cmds_objects))
220 static_libbtrfs_objects = $(patsubst %.o, %.static.o, $(libbtrfs_objects))
221 static_convert_objects = $(patsubst %.o, %.static.o, $(convert_objects))
222 static_mkfs_objects = $(patsubst %.o, %.static.o, $(mkfs_objects))
224 libs_shared = libbtrfs.so.0.1
225 libs_static = libbtrfs.a
226 libs = $(libs_shared) $(libs_static)
227 lib_links = libbtrfs.so.0 libbtrfs.so
228 headers = $(libbtrfs_headers)
230 # make C=1 to enable sparse
232 # We're trying to use sparse against glibc headers which go wild
233 # trying to use internal compiler macros to test features. We
234 # copy gcc's and give them to sparse. But not __SIZE_TYPE__
235 # 'cause sparse defines that one.
237 dummy := $(shell $(CC) -dM -E -x c - < /dev/null | \
238 grep -v __SIZE_TYPE__ > $(check_defs))
247 $(Q)$(CC) -MD -MM -MG -MF $@ -MT $(@:.o.d=.o) -MT $(@:.o.d=.static.o) -MT $@ $(CFLAGS) $<
250 # Pick from per-file variables, btrfs_*_cflags
253 @$(check_echo) " [SP] $<"
254 $(Q)$(check) $(CFLAGS) $(CHECKER_FLAGS) $<
256 $(Q)$(CC) $(CFLAGS) -c $< -o $@ $($(subst -,_,$(@:%.o=%)-cflags)) \
257 $($(subst -,_,btrfs-$(@:%/$(notdir $@)=%)-cflags))
261 $(Q)$(CC) $(STATIC_CFLAGS) -c $< -o $@ $($(subst -,_,$(@:%.static.o=%)-cflags)) \
262 $($(subst -,_,btrfs-$(@:%/$(notdir $@)=%)-cflags))
264 all: $(progs) libbtrfs $(BUILDDIRS)
265 $(SUBDIRS): $(BUILDDIRS)
267 @echo "Making all in $(patsubst build-%,%,$@)"
268 $(Q)$(MAKE) $(MAKEOPTS) -C $(patsubst build-%,%,$@)
270 test-convert: btrfs btrfs-convert
271 @echo " [TEST] convert-tests.sh"
272 $(Q)bash tests/convert-tests.sh
274 test-check: test-fsck
275 test-fsck: btrfs btrfs-image btrfs-corrupt-block mkfs.btrfs
276 @echo " [TEST] fsck-tests.sh"
277 $(Q)bash tests/fsck-tests.sh
279 test-misc: btrfs btrfs-image btrfs-corrupt-block mkfs.btrfs btrfstune fssum
280 @echo " [TEST] misc-tests.sh"
281 $(Q)bash tests/misc-tests.sh
283 test-mkfs: btrfs mkfs.btrfs
284 @echo " [TEST] mkfs-tests.sh"
285 $(Q)bash tests/mkfs-tests.sh
288 @echo " [TEST] fuzz-tests.sh"
289 $(Q)bash tests/fuzz-tests.sh
292 @echo " [TEST] cli-tests.sh"
293 $(Q)bash tests/cli-tests.sh
296 @echo "Cleaning tests"
297 $(Q)bash tests/clean-tests.sh
300 @tmpdest=`mktemp --tmpdir -d btrfs-inst.XXXXXX` && \
301 echo "Test installation to $$tmpdest" && \
302 $(MAKE) $(MAKEOPTS) DESTDIR=$$tmpdest install && \
303 $(RM) -rf -- $$tmpdest
305 test: test-fsck test-mkfs test-convert test-misc test-fuzz test-cli
308 # NOTE: For static compiles, you need to have all the required libs
309 # static equivalent available
311 static: $(progs_static)
313 version.h: version.sh version.h.in configure.ac
315 $(Q)bash ./config.status --silent $@
317 libbtrfs: $(libs_shared) $(lib_links)
319 $(libs_shared): $(libbtrfs_objects) $(lib_links) send.h
321 $(Q)$(CC) $(CFLAGS) $(libbtrfs_objects) $(LDFLAGS) $(LIBBTRFS_LIBS) \
322 -shared -Wl,-soname,libbtrfs.so.0 -o libbtrfs.so.0.1
324 $(libs_static): $(libbtrfs_objects)
326 $(Q)$(AR) cr libbtrfs.a $(libbtrfs_objects)
330 $(Q)$(LN_S) -f libbtrfs.so.0.1 $@
332 # keep intermediate files from the below implicit rules around
333 .PRECIOUS: $(addsuffix .o,$(progs))
335 # Make any btrfs-foo out of btrfs-foo.o, with appropriate libs.
336 # The $($(subst...)) bits below takes the btrfs_*_libs definitions above and
337 # turns them into a list of libraries to link against if they exist
339 # For static variants, use an extra $(subst) to get rid of the ".static"
340 # from the target name before translating to list of libs
342 btrfs-%.static: btrfs-%.static.o $(static_objects) $(patsubst %.o,%.static.o,$(standalone_deps)) $(static_libbtrfs_objects)
344 $(Q)$(CC) $(STATIC_CFLAGS) -o $@ $@.o $(static_objects) \
345 $(patsubst %.o, %.static.o, $($(subst -,_,$(subst .static,,$@)-objects))) \
346 $(static_libbtrfs_objects) $(STATIC_LDFLAGS) \
347 $($(subst -,_,$(subst .static,,$@)-libs)) $(STATIC_LIBS)
349 btrfs-%: btrfs-%.o $(objects) $(standalone_deps) $(libs_static)
351 $(Q)$(CC) $(CFLAGS) -o $@ $(objects) $@.o \
352 $($(subst -,_,$@-objects)) \
354 $(LDFLAGS) $(LIBS) $($(subst -,_,$@-libs))
356 btrfs: btrfs.o $(objects) $(cmds_objects) $(libs_static)
358 $(Q)$(CC) $(CFLAGS) -o $@ $^ $(LDFLAGS) $(LIBS) $(LIBS_COMP)
360 btrfs.static: btrfs.static.o $(static_objects) $(static_cmds_objects) $(static_libbtrfs_objects)
362 $(Q)$(CC) $(STATIC_CFLAGS) -o $@ $^ $(STATIC_LDFLAGS) $(STATIC_LIBS) $(STATIC_LIBS_COMP)
364 # For backward compatibility, 'btrfs' changes behaviour to fsck if it's named 'btrfsck'
367 $(Q)$(LN_S) -f btrfs btrfsck
369 btrfsck.static: btrfs.static
373 mkfs.btrfs: $(mkfs_objects) $(objects) $(libs_static)
375 $(Q)$(CC) $(CFLAGS) -o $@ $^ $(LDFLAGS) $(LIBS)
377 mkfs.btrfs.static: $(static_mkfs_objects) $(static_objects) $(static_libbtrfs_objects)
379 $(Q)$(CC) $(STATIC_CFLAGS) -o $@ $^ $(STATIC_LDFLAGS) $(STATIC_LIBS)
381 btrfstune: btrfstune.o $(objects) $(libs_static)
383 $(Q)$(CC) $(CFLAGS) -o $@ $^ $(LDFLAGS) $(LIBS)
385 btrfstune.static: btrfstune.static.o $(static_objects) $(static_libbtrfs_objects)
387 $(Q)$(CC) $(STATIC_CFLAGS) -o $@ $^ $(STATIC_LDFLAGS) $(STATIC_LIBS)
389 btrfs-image: image/main.o $(objects) $(libs_static)
391 $(Q)$(CC) $(CFLAGS) -o $@ $^ $(LDFLAGS) $(LIBS) $(LIBS_COMP)
393 btrfs-image.static: image/main.static.o $(static_objects) $(static_libbtrfs_objects)
395 $(Q)$(CC) $(STATIC_CFLAGS) -o $@ $^ $(STATIC_LDFLAGS) $(STATIC_LIBS) $(STATIC_LIBS_COMP)
397 btrfs-convert: $(convert_objects) $(objects) $(libs_static)
399 $(Q)$(CC) $(CFLAGS) -o $@ $^ $(LDFLAGS) $(btrfs_convert_libs) $(LIBS)
401 btrfs-convert.static: $(static_convert_objects) $(static_objects) $(static_libbtrfs_objects)
403 $(Q)$(CC) $(STATIC_CFLAGS) -o $@ $^ $(STATIC_LDFLAGS) $(btrfs_convert_libs) $(STATIC_LIBS)
405 dir-test: dir-test.o $(objects) $(libs)
407 $(Q)$(CC) $(CFLAGS) -o $@ $^ $(LDFLAGS) $(LIBS)
409 quick-test: quick-test.o $(objects) $(libs)
411 $(Q)$(CC) $(CFLAGS) -o $@ $^ $(LDFLAGS) $(LIBS)
413 ioctl-test.o: ioctl-test.c ioctl.h kerncompat.h ctree.h
415 $(Q)$(CC) $(CFLAGS) -c $< -o $@
417 ioctl-test-32.o: ioctl-test.c ioctl.h kerncompat.h ctree.h
419 $(Q)$(CC) $(CFLAGS) -m32 -c $< -o $@
421 ioctl-test-64.o: ioctl-test.c ioctl.h kerncompat.h ctree.h
423 $(Q)$(CC) $(CFLAGS) -m64 -c $< -o $@
425 ioctl-test: ioctl-test.o
427 $(Q)$(CC) $(CFLAGS) -o $@ $< $(LDFLAGS)
428 @echo " ?[PAHOLE] $@.pahole"
429 -$(Q)pahole $@ > $@.pahole
431 ioctl-test-32: ioctl-test-32.o
433 $(Q)$(CC) $(CFLAGS) -m32 -o $@ $< $(LDFLAGS)
434 @echo " ?[PAHOLE] $@.pahole"
435 -$(Q)pahole $@ > $@.pahole
437 ioctl-test-64: ioctl-test-64.o
439 $(Q)$(CC) $(CFLAGS) -m64 -o $@ $< $(LDFLAGS)
440 @echo " ?[PAHOLE] $@.pahole"
441 -$(Q)pahole $@ > $@.pahole
443 test-ioctl: ioctl-test ioctl-test-32 ioctl-test-64
444 @echo " [TEST/ioctl]"
445 $(Q)./ioctl-test > ioctl-test.log
446 $(Q)./ioctl-test-32 > ioctl-test-32.log
447 $(Q)./ioctl-test-64 > ioctl-test-64.log
449 library-test: library-test.c $(libs_shared)
450 @echo " [TEST PREP] $@"$(eval TMPD=$(shell mktemp -d))
451 $(Q)mkdir -p $(TMPD)/include/btrfs && \
452 cp $(libbtrfs_headers) $(TMPD)/include/btrfs && \
453 cd $(TMPD) && $(CC) -I$(TMPD)/include -o $@ $(addprefix $(TOPDIR)/,$^) -Wl,-rpath=$(TOPDIR) -lbtrfs
454 @echo " [TEST RUN] $@"
455 $(Q)cd $(TMPD) && ./$@
456 @echo " [TEST CLEAN] $@"
457 $(Q)$(RM) -rf -- $(TMPD)
459 library-test.static: library-test.c $(libs_static)
460 @echo " [TEST PREP] $@"$(eval TMPD=$(shell mktemp -d))
461 $(Q)mkdir -p $(TMPD)/include/btrfs && \
462 cp $(libbtrfs_headers) $(TMPD)/include/btrfs && \
463 cd $(TMPD) && $(CC) -I$(TMPD)/include -o $@ $(addprefix $(TOPDIR)/,$^) $(STATIC_LDFLAGS) $(STATIC_LIBS)
464 @echo " [TEST RUN] $@"
465 $(Q)cd $(TMPD) && ./$@
466 @echo " [TEST CLEAN] $@"
467 $(Q)$(RM) -rf -- $(TMPD)
469 fssum: tests/fssum.c tests/sha224-256.c
471 $(Q)$(CC) $(CFLAGS) -o $@ $^ $(LDFLAGS)
473 test-build: test-build-pre test-build-real
476 $(MAKE) $(MAKEOPTS) clean-all
481 $(MAKE) $(MAKEOPTS) library-test
482 -$(MAKE) $(MAKEOPTS) library-test.static
483 $(MAKE) $(MAKEOPTS) -j 8 all
484 -$(MAKE) $(MAKEOPTS) -j 8 static
485 $(MAKE) $(MAKEOPTS) -j 8 $(progs_extra)
488 $(Q)$(MAKE) $(MAKEOPTS) -C Documentation
491 @echo " [TAGS] $(TAGS_CMD)"
492 $(Q)$(TAGS_CMD) *.[ch] image/*.[ch] convert/*.[ch] mkfs/*.[ch]
495 @echo " [CSCOPE] $(CSCOPE_CMD)"
496 $(Q)ls -1 *.[ch] image/*.[ch] convert/*.[ch] mkfs/*.[ch] > cscope.files
499 clean-all: clean clean-doc clean-gen
503 $(Q)$(RM) -f -- $(progs) *.o *.o.d \
504 kernel-lib/*.o kernel-lib/*.o.d \
505 kernel-shared/*.o kernel-shared/*.o.d \
506 image/*.o image/*.o.d \
507 convert/*.o convert/*.o.d \
508 mkfs/*.o mkfs/*.o.d \
509 dir-test ioctl-test quick-test library-test library-test-static \
510 btrfs.static mkfs.btrfs.static fssum \
512 $(libs) $(lib_links) \
513 $(progs_static) $(progs_extra)
516 @echo "Cleaning Documentation"
517 $(Q)$(MAKE) $(MAKEOPTS) -C Documentation clean
520 @echo "Cleaning Generated Files"
521 $(Q)$(RM) -rf -- version.h config.status config.cache connfig.log \
522 configure.lineno config.status.lineno Makefile.inc \
523 Documentation/Makefile tags \
524 cscope.files cscope.out cscope.in.out cscope.po.out \
525 config.log config.h config.h.in~ aclocal.m4 \
526 configure autom4te.cache/ config/
529 @echo "Cleaning $(patsubst clean-%,%,$@)"
530 $(Q)$(MAKE) $(MAKEOPTS) -C $(patsubst clean-%,%,$@) clean
532 install: $(libs) $(progs_install) $(INSTALLDIRS)
533 $(INSTALL) -m755 -d $(DESTDIR)$(bindir)
534 $(INSTALL) $(progs_install) $(DESTDIR)$(bindir)
535 $(INSTALL) fsck.btrfs $(DESTDIR)$(bindir)
536 # btrfsck is a link to btrfs in the src tree, make it so for installed file as well
537 $(LN_S) -f btrfs $(DESTDIR)$(bindir)/btrfsck
538 $(INSTALL) -m755 -d $(DESTDIR)$(libdir)
539 $(INSTALL) $(libs) $(DESTDIR)$(libdir)
540 cp -a $(lib_links) $(DESTDIR)$(libdir)
541 $(INSTALL) -m755 -d $(DESTDIR)$(incdir)
542 $(INSTALL) -m644 $(headers) $(DESTDIR)$(incdir)
544 $(INSTALL) -m755 -d $(DESTDIR)$(udevruledir)
545 $(INSTALL) -m644 $(udev_rules) $(DESTDIR)$(udevruledir)
548 install-static: $(progs_static) $(INSTALLDIRS)
549 $(INSTALL) -m755 -d $(DESTDIR)$(bindir)
550 $(INSTALL) $(progs_static) $(DESTDIR)$(bindir)
551 # btrfsck is a link to btrfs in the src tree, make it so for installed file as well
552 $(LN_S) -f btrfs.static $(DESTDIR)$(bindir)/btrfsck.static
555 @echo "Making install in $(patsubst install-%,%,$@)"
556 $(Q)$(MAKE) $(MAKEOPTS) -C $(patsubst install-%,%,$@) install
559 $(Q)$(MAKE) $(MAKEOPTS) -C Documentation uninstall
560 cd $(DESTDIR)$(incdir); $(RM) -f -- $(headers)
561 $(RMDIR) -p --ignore-fail-on-non-empty -- $(DESTDIR)$(incdir)
562 cd $(DESTDIR)$(libdir); $(RM) -f -- $(lib_links) $(libs)
563 cd $(DESTDIR)$(bindir); $(RM) -f -- btrfsck fsck.btrfs $(progs_install)
565 ifneq ($(MAKECMDGOALS),clean)
566 -include $(objects:.o=.o.d) $(cmds_objects:.o=.o.d) $(subst .btrfs,, $(filter-out btrfsck.o.d, $(progs:=.o.d)))