2015-10-06 20:53:55 +08:00
|
|
|
# btrfs-progs
|
|
|
|
#
|
|
|
|
# Basic build targets:
|
|
|
|
# all all main tools
|
|
|
|
# static build static bnaries, requires static version of the libraries
|
|
|
|
# test run the full testsuite
|
|
|
|
# install install to default location (/usr/local)
|
|
|
|
# clean clean built binaries (not the documentation)
|
2016-05-19 13:13:13 +08:00
|
|
|
# clean-all clean as above, clean docs and generated files
|
2015-10-06 20:53:55 +08:00
|
|
|
#
|
|
|
|
# Tuning by variables (environment or make arguments):
|
|
|
|
# V=1 verbose, print command lines (default: quiet)
|
|
|
|
# C=1 run checker before compilation (default checker: sparse)
|
2016-05-12 20:13:30 +08:00
|
|
|
# D=1 debugging build, turn off optimizations
|
2016-08-19 22:06:41 +08:00
|
|
|
# D=dflags dtto, turn on additional debugging features:
|
|
|
|
# verbose - print file:line along with error/warning messages
|
|
|
|
# trace - print trace before the error/warning messages
|
|
|
|
# abort - call abort() on first error (dumps core)
|
|
|
|
# all - shortcut for all of the above
|
2016-09-04 03:36:53 +08:00
|
|
|
# asan - enable address sanitizer compiler feature
|
2016-09-04 03:36:53 +08:00
|
|
|
# ubsan - undefined behaviour sanitizer compiler feature
|
2015-10-06 20:53:55 +08:00
|
|
|
# W=123 build with warnings (default: off)
|
2016-05-12 20:13:30 +08:00
|
|
|
# DEBUG_CFLAGS additional compiler flags for debugging build
|
2015-10-06 20:53:55 +08:00
|
|
|
# EXTRA_CFLAGS additional compiler flags
|
|
|
|
# EXTRA_LDFLAGS additional linker flags
|
|
|
|
#
|
2015-10-07 18:52:52 +08:00
|
|
|
# Static checkers:
|
|
|
|
# CHECKER static checker binary to be called (default: sparse)
|
|
|
|
# CHECKER_FLAGS flags to pass to CHECKER, can override CFLAGS
|
|
|
|
#
|
2015-10-06 20:53:55 +08:00
|
|
|
|
2013-06-12 07:15:17 +08:00
|
|
|
# Export all variables to sub-makes by default
|
|
|
|
export
|
|
|
|
|
2015-10-06 20:40:07 +08:00
|
|
|
include Makefile.extrawarn
|
|
|
|
|
2014-12-09 23:41:10 +08:00
|
|
|
CC = @CC@
|
|
|
|
LN_S = @LN_S@
|
|
|
|
AR = @AR@
|
2015-01-29 01:41:17 +08:00
|
|
|
RM = @RM@
|
|
|
|
RMDIR = @RMDIR@
|
2014-12-10 18:56:59 +08:00
|
|
|
INSTALL = @INSTALL@
|
2014-12-12 18:54:06 +08:00
|
|
|
DISABLE_DOCUMENTATION = @DISABLE_DOCUMENTATION@
|
2015-02-03 23:22:55 +08:00
|
|
|
DISABLE_BTRFSCONVERT = @DISABLE_BTRFSCONVERT@
|
2016-08-23 23:21:30 +08:00
|
|
|
BTRFSCONVERT_EXT2 = @BTRFSCONVERT_EXT2@
|
2014-12-10 18:56:59 +08:00
|
|
|
|
2015-09-01 00:36:16 +08:00
|
|
|
EXTRA_CFLAGS :=
|
|
|
|
EXTRA_LDFLAGS :=
|
|
|
|
|
2016-05-12 20:13:30 +08:00
|
|
|
DEBUG_CFLAGS_DEFAULT = -O0 -U_FORTIFY_SOURCE -ggdb3
|
|
|
|
DEBUG_CFLAGS_INTERNAL =
|
|
|
|
DEBUG_CFLAGS :=
|
|
|
|
|
2016-09-23 22:06:57 +08:00
|
|
|
TOPDIR := $(shell pwd)
|
|
|
|
|
2015-02-05 21:46:47 +08:00
|
|
|
# Common build flags
|
2014-12-10 18:56:59 +08:00
|
|
|
CFLAGS = @CFLAGS@ \
|
2015-02-05 21:46:47 +08:00
|
|
|
-include config.h \
|
|
|
|
-DBTRFS_FLAT_INCLUDES \
|
2014-12-10 18:56:59 +08:00
|
|
|
-D_XOPEN_SOURCE=700 \
|
2015-02-05 21:46:47 +08:00
|
|
|
-fno-strict-aliasing \
|
2016-05-12 20:13:30 +08:00
|
|
|
-fPIC \
|
2016-09-23 22:06:57 +08:00
|
|
|
-I$(TOPDIR) \
|
2016-09-23 22:09:33 +08:00
|
|
|
-I$(TOPDIR)/kernel-lib \
|
2016-05-12 20:13:30 +08:00
|
|
|
$(EXTRAWARN_CFLAGS) \
|
|
|
|
$(DEBUG_CFLAGS_INTERNAL) \
|
|
|
|
$(EXTRA_CFLAGS)
|
2014-12-10 18:56:59 +08:00
|
|
|
|
2015-02-11 08:46:24 +08:00
|
|
|
LDFLAGS = @LDFLAGS@ \
|
2015-09-01 00:36:16 +08:00
|
|
|
-rdynamic $(EXTRA_LDFLAGS)
|
2014-12-10 18:56:59 +08:00
|
|
|
|
|
|
|
LIBS = @UUID_LIBS@ @BLKID_LIBS@ @ZLIB_LIBS@ @LZO2_LIBS@ -L. -pthread
|
|
|
|
LIBBTRFS_LIBS = $(LIBS)
|
|
|
|
|
|
|
|
# Static compilation flags
|
|
|
|
STATIC_CFLAGS = $(CFLAGS) -ffunction-sections -fdata-sections
|
|
|
|
STATIC_LDFLAGS = -static -Wl,--gc-sections
|
|
|
|
STATIC_LIBS = @UUID_LIBS_STATIC@ @BLKID_LIBS_STATIC@ \
|
|
|
|
@ZLIB_LIBS_STATIC@ @LZO2_LIBS_STATIC@ -L. -pthread
|
|
|
|
|
2015-10-07 18:52:52 +08:00
|
|
|
# don't use FORTIFY with sparse because glibc with FORTIFY can
|
|
|
|
# generate so many sparse errors that sparse stops parsing,
|
|
|
|
# which masks real errors that we want to see.
|
|
|
|
CHECKER := sparse
|
2016-01-04 09:01:29 +08:00
|
|
|
check_defs := .cc-defines.h
|
2015-10-07 18:52:52 +08:00
|
|
|
CHECKER_FLAGS := -include $(check_defs) -D__CHECKER__ \
|
|
|
|
-D__CHECK_ENDIAN__ -Wbitwise -Wuninitialized -Wshadow -Wundef \
|
|
|
|
-U_FORTIFY_SOURCE
|
|
|
|
|
2016-09-23 22:09:33 +08:00
|
|
|
objects = ctree.o disk-io.o kernel-lib/radix-tree.o extent-tree.o print-tree.o \
|
2013-03-20 01:12:05 +08:00
|
|
|
root-tree.o dir-item.o file-item.o inode-item.o inode-map.o \
|
|
|
|
extent-cache.o extent_io.o volumes.o utils.o repair.o \
|
2016-09-23 22:09:33 +08:00
|
|
|
qgroup.o raid6.o free-space-cache.o kernel-lib/list_sort.o props.o \
|
2014-12-03 12:18:30 +08:00
|
|
|
ulist.o qgroup-verify.o backref.o string-table.o task-utils.o \
|
2016-02-24 20:57:12 +08:00
|
|
|
inode.o file.o find-root.o free-space-tree.o help.o
|
2012-02-04 03:00:17 +08:00
|
|
|
cmds_objects = cmds-subvolume.o cmds-filesystem.o cmds-device.o cmds-scrub.o \
|
2012-08-07 18:37:54 +08:00
|
|
|
cmds-inspect.o cmds-balance.o cmds-send.o cmds-receive.o \
|
2013-02-08 08:37:02 +08:00
|
|
|
cmds-quota.o cmds-qgroup.o cmds-replace.o cmds-check.o \
|
2013-11-12 21:41:43 +08:00
|
|
|
cmds-restore.o cmds-rescue.o chunk-recover.o super-recover.o \
|
2016-02-24 20:57:12 +08:00
|
|
|
cmds-property.o cmds-fi-usage.o cmds-inspect-dump-tree.o \
|
2016-03-11 19:49:45 +08:00
|
|
|
cmds-inspect-dump-super.o cmds-inspect-tree-stats.o cmds-fi-du.o
|
2016-09-23 22:09:33 +08:00
|
|
|
libbtrfs_objects = send-stream.o send-utils.o kernel-lib/rbtree.o btrfs-list.o \
|
|
|
|
kernel-lib/crc32c.o \
|
2014-10-31 01:33:41 +08:00
|
|
|
uuid-tree.o utils-lib.o rbtree-utils.o
|
2016-09-23 22:09:33 +08:00
|
|
|
libbtrfs_headers = send-stream.h send-utils.h send.h kernel-lib/rbtree.h btrfs-list.h \
|
|
|
|
kernel-lib/crc32c.h kernel-lib/list.h kerncompat.h \
|
|
|
|
kernel-lib/radix-tree.h extent-cache.h \
|
2013-06-03 20:31:41 +08:00
|
|
|
extent_io.h ioctl.h ctree.h btrfsck.h version.h
|
2014-05-22 01:20:27 +08:00
|
|
|
TESTS = fsck-tests.sh convert-tests.sh
|
2009-05-30 04:35:30 +08:00
|
|
|
|
2016-05-09 23:44:26 +08:00
|
|
|
udev_rules = 64-btrfs-dm.rules
|
|
|
|
|
2014-12-09 23:57:10 +08:00
|
|
|
prefix ?= @prefix@
|
2015-02-05 01:08:23 +08:00
|
|
|
exec_prefix = @exec_prefix@
|
2014-12-09 23:57:10 +08:00
|
|
|
bindir = @bindir@
|
|
|
|
libdir ?= @libdir@
|
|
|
|
incdir = @includedir@/btrfs
|
2016-05-09 23:44:26 +08:00
|
|
|
udevdir = @UDEVDIR@
|
|
|
|
udevruledir = ${udevdir}/rules.d
|
2007-06-09 21:22:37 +08:00
|
|
|
|
2013-01-25 07:32:52 +08:00
|
|
|
ifeq ("$(origin V)", "command line")
|
|
|
|
BUILD_VERBOSE = $(V)
|
|
|
|
endif
|
|
|
|
ifndef BUILD_VERBOSE
|
|
|
|
BUILD_VERBOSE = 0
|
|
|
|
endif
|
|
|
|
|
|
|
|
ifeq ($(BUILD_VERBOSE),1)
|
|
|
|
Q =
|
|
|
|
else
|
|
|
|
Q = @
|
|
|
|
endif
|
|
|
|
|
2016-05-12 20:13:30 +08:00
|
|
|
ifeq ("$(origin D)", "command line")
|
|
|
|
DEBUG_CFLAGS_INTERNAL = $(DEBUG_CFLAGS_DEFAULT) $(DEBUG_CFLAGS)
|
|
|
|
endif
|
|
|
|
|
2016-08-19 22:06:41 +08:00
|
|
|
ifneq (,$(findstring verbose,$(D)))
|
|
|
|
DEBUG_CFLAGS_INTERNAL += -DDEBUG_VERBOSE_ERROR=1
|
|
|
|
endif
|
|
|
|
|
|
|
|
ifneq (,$(findstring trace,$(D)))
|
|
|
|
DEBUG_CFLAGS_INTERNAL += -DDEBUG_TRACE_ON_ERROR=1
|
|
|
|
endif
|
|
|
|
|
|
|
|
ifneq (,$(findstring abort,$(D)))
|
|
|
|
DEBUG_CFLAGS_INTERNAL += -DDEBUG_ABORT_ON_ERROR=1
|
|
|
|
endif
|
|
|
|
|
|
|
|
ifneq (,$(findstring all,$(D)))
|
|
|
|
DEBUG_CFLAGS_INTERNAL += -DDEBUG_VERBOSE_ERROR=1
|
|
|
|
DEBUG_CFLAGS_INTERNAL += -DDEBUG_TRACE_ON_ERROR=1
|
|
|
|
DEBUG_CFLAGS_INTERNAL += -DDEBUG_ABORT_ON_ERROR=1
|
|
|
|
endif
|
|
|
|
|
2016-09-04 03:36:53 +08:00
|
|
|
ifneq (,$(findstring asan,$(D)))
|
|
|
|
DEBUG_CFLAGS_INTERNAL += -fsanitize=address
|
|
|
|
endif
|
|
|
|
|
2016-09-04 03:36:53 +08:00
|
|
|
ifneq (,$(findstring ubsan,$(D)))
|
|
|
|
DEBUG_CFLAGS_INTERNAL += -fsanitize=undefined
|
|
|
|
endif
|
|
|
|
|
2013-01-25 07:32:52 +08:00
|
|
|
MAKEOPTS = --no-print-directory Q=$(Q)
|
|
|
|
|
2015-02-05 22:46:42 +08:00
|
|
|
# build all by default
|
|
|
|
progs = $(progs_install) btrfsck btrfs-corrupt-block btrfs-calc-size
|
|
|
|
|
|
|
|
# install only selected
|
|
|
|
progs_install = btrfs mkfs.btrfs btrfs-debug-tree \
|
|
|
|
btrfs-map-logical btrfs-image btrfs-zero-log \
|
2015-01-29 02:06:47 +08:00
|
|
|
btrfs-find-root btrfstune btrfs-show-super \
|
2015-02-05 22:46:42 +08:00
|
|
|
btrfs-select-super
|
2007-06-08 10:12:21 +08:00
|
|
|
|
2015-01-29 02:06:47 +08:00
|
|
|
progs_extra = btrfs-fragments
|
2014-10-31 02:22:32 +08:00
|
|
|
|
2014-08-30 20:48:10 +08:00
|
|
|
progs_static = $(foreach p,$(progs),$(p).static)
|
|
|
|
|
2015-02-03 23:22:55 +08:00
|
|
|
ifneq ($(DISABLE_BTRFSCONVERT),1)
|
2015-02-05 22:46:42 +08:00
|
|
|
progs_install += btrfs-convert
|
2015-02-03 23:22:55 +08:00
|
|
|
endif
|
|
|
|
|
2013-04-22 06:22:37 +08:00
|
|
|
# external libs required by various binaries; for btrfs-foo,
|
|
|
|
# specify btrfs_foo_libs = <list of libs>; see $($(subst...)) rules below
|
2015-02-04 00:12:28 +08:00
|
|
|
btrfs_convert_libs = @EXT2FS_LIBS@ @COM_ERR_LIBS@
|
2016-08-23 23:21:30 +08:00
|
|
|
btrfs_convert_cflags = -DBTRFSCONVERT_EXT2=$(BTRFSCONVERT_EXT2)
|
2014-05-31 00:29:19 +08:00
|
|
|
btrfs_fragments_libs = -lgd -lpng -ljpeg -lfreetype
|
2016-02-24 20:57:12 +08:00
|
|
|
btrfs_debug_tree_objects = cmds-inspect-dump-tree.o
|
|
|
|
btrfs_show_super_objects = cmds-inspect-dump-super.o
|
2016-03-11 19:49:45 +08:00
|
|
|
btrfs_calc_size_objects = cmds-inspect-tree-stats.o
|
2013-04-22 06:22:37 +08:00
|
|
|
|
2016-03-23 01:29:24 +08:00
|
|
|
# collect values of the variables above
|
|
|
|
standalone_deps = $(foreach dep,$(patsubst %,%_objects,$(subst -,_,$(filter btrfs-%, $(progs)))),$($(dep)))
|
|
|
|
|
2014-04-04 22:36:40 +08:00
|
|
|
SUBDIRS =
|
2014-08-30 20:48:09 +08:00
|
|
|
BUILDDIRS = $(patsubst %,build-%,$(SUBDIRS))
|
|
|
|
INSTALLDIRS = $(patsubst %,install-%,$(SUBDIRS))
|
2013-06-12 07:15:17 +08:00
|
|
|
CLEANDIRS = $(patsubst %,clean-%,$(SUBDIRS))
|
|
|
|
|
2014-08-30 20:48:09 +08:00
|
|
|
ifneq ($(DISABLE_DOCUMENTATION),1)
|
|
|
|
BUILDDIRS += build-Documentation
|
|
|
|
INSTALLDIRS += install-Documentation
|
|
|
|
endif
|
|
|
|
|
2013-06-12 07:15:17 +08:00
|
|
|
.PHONY: $(SUBDIRS)
|
|
|
|
.PHONY: $(BUILDDIRS)
|
|
|
|
.PHONY: $(INSTALLDIRS)
|
|
|
|
.PHONY: $(TESTDIRS)
|
|
|
|
.PHONY: $(CLEANDIRS)
|
|
|
|
.PHONY: all install clean
|
|
|
|
|
2013-01-26 07:12:28 +08:00
|
|
|
# Create all the static targets
|
|
|
|
static_objects = $(patsubst %.o, %.static.o, $(objects))
|
|
|
|
static_cmds_objects = $(patsubst %.o, %.static.o, $(cmds_objects))
|
2013-03-20 01:12:05 +08:00
|
|
|
static_libbtrfs_objects = $(patsubst %.o, %.static.o, $(libbtrfs_objects))
|
2013-01-26 07:12:28 +08:00
|
|
|
|
2013-02-13 01:44:35 +08:00
|
|
|
libs_shared = libbtrfs.so.0.1
|
|
|
|
libs_static = libbtrfs.a
|
|
|
|
libs = $(libs_shared) $(libs_static)
|
2013-01-08 06:24:35 +08:00
|
|
|
lib_links = libbtrfs.so.0 libbtrfs.so
|
|
|
|
headers = $(libbtrfs_headers)
|
|
|
|
|
2007-06-08 10:12:21 +08:00
|
|
|
# make C=1 to enable sparse
|
|
|
|
ifdef C
|
2013-08-15 07:16:31 +08:00
|
|
|
# We're trying to use sparse against glibc headers which go wild
|
|
|
|
# trying to use internal compiler macros to test features. We
|
|
|
|
# copy gcc's and give them to sparse. But not __SIZE_TYPE__
|
|
|
|
# 'cause sparse defines that one.
|
|
|
|
#
|
|
|
|
dummy := $(shell $(CC) -dM -E -x c - < /dev/null | \
|
|
|
|
grep -v __SIZE_TYPE__ > $(check_defs))
|
2015-10-07 18:52:52 +08:00
|
|
|
check = $(CHECKER)
|
2013-08-15 07:16:31 +08:00
|
|
|
check_echo = echo
|
2007-06-08 10:12:21 +08:00
|
|
|
else
|
2013-01-25 07:32:52 +08:00
|
|
|
check = true
|
2013-08-15 07:16:31 +08:00
|
|
|
check_echo = true
|
2007-06-08 10:12:21 +08:00
|
|
|
endif
|
2007-02-28 22:40:58 +08:00
|
|
|
|
2013-07-06 16:22:31 +08:00
|
|
|
%.o.d: %.c
|
2016-09-23 22:06:57 +08:00
|
|
|
$(Q)$(CC) -MD -MM -MG -MF $@ -MT $(@:.o.d=.o) -MT $(@:.o.d=.static.o) -MT $@ $(CFLAGS) $<
|
2013-07-06 16:22:31 +08:00
|
|
|
|
2016-08-24 00:04:37 +08:00
|
|
|
#
|
|
|
|
# Pick from per-file variables, btrfs_*_cflags
|
|
|
|
#
|
2007-02-28 22:40:58 +08:00
|
|
|
.c.o:
|
2013-08-15 07:16:31 +08:00
|
|
|
@$(check_echo) " [SP] $<"
|
2015-10-07 18:52:52 +08:00
|
|
|
$(Q)$(check) $(CFLAGS) $(CHECKER_FLAGS) $<
|
2013-01-25 07:32:52 +08:00
|
|
|
@echo " [CC] $@"
|
2016-09-23 22:06:57 +08:00
|
|
|
$(Q)$(CC) $(CFLAGS) -c $< -o $@ $($(subst -,_,$(@:%.o=%)-cflags))
|
2007-02-02 22:18:22 +08:00
|
|
|
|
2013-01-26 07:12:28 +08:00
|
|
|
%.static.o: %.c
|
|
|
|
@echo " [CC] $@"
|
2016-08-24 00:04:37 +08:00
|
|
|
$(Q)$(CC) $(STATIC_CFLAGS) -c $< -o $@ $($(subst -,_,$(@:%.static.o=%)-cflags))
|
2007-04-10 21:27:30 +08:00
|
|
|
|
2014-04-04 22:36:40 +08:00
|
|
|
all: $(progs) $(BUILDDIRS)
|
2013-06-12 07:15:17 +08:00
|
|
|
$(SUBDIRS): $(BUILDDIRS)
|
|
|
|
$(BUILDDIRS):
|
|
|
|
@echo "Making all in $(patsubst build-%,%,$@)"
|
|
|
|
$(Q)$(MAKE) $(MAKEOPTS) -C $(patsubst build-%,%,$@)
|
2008-07-25 00:13:30 +08:00
|
|
|
|
2015-04-08 00:29:05 +08:00
|
|
|
test-convert: btrfs btrfs-convert
|
|
|
|
@echo " [TEST] convert-tests.sh"
|
|
|
|
$(Q)bash tests/convert-tests.sh
|
|
|
|
|
2016-10-05 01:09:23 +08:00
|
|
|
test-check: test-fsck
|
2015-04-08 00:29:05 +08:00
|
|
|
test-fsck: btrfs btrfs-image btrfs-corrupt-block btrfs-debug-tree mkfs.btrfs
|
|
|
|
@echo " [TEST] fsck-tests.sh"
|
|
|
|
$(Q)bash tests/fsck-tests.sh
|
|
|
|
|
2015-06-02 21:00:32 +08:00
|
|
|
test-misc: btrfs btrfs-image btrfs-corrupt-block btrfs-debug-tree mkfs.btrfs btrfstune
|
|
|
|
@echo " [TEST] misc-tests.sh"
|
|
|
|
$(Q)bash tests/misc-tests.sh
|
|
|
|
|
2015-10-19 23:27:55 +08:00
|
|
|
test-mkfs: btrfs mkfs.btrfs
|
|
|
|
@echo " [TEST] mkfs-tests.sh"
|
|
|
|
$(Q)bash tests/mkfs-tests.sh
|
|
|
|
|
2015-10-26 21:35:34 +08:00
|
|
|
test-fuzz: btrfs
|
|
|
|
@echo " [TEST] fuzz-tests.sh"
|
|
|
|
$(Q)bash tests/fuzz-tests.sh
|
|
|
|
|
2016-03-20 22:34:10 +08:00
|
|
|
test-cli: btrfs
|
|
|
|
@echo " [TEST] cli-tests.sh"
|
|
|
|
$(Q)bash tests/cli-tests.sh
|
|
|
|
|
2015-05-25 22:08:46 +08:00
|
|
|
test-clean:
|
|
|
|
@echo "Cleaning tests"
|
|
|
|
$(Q)bash tests/clean-tests.sh
|
|
|
|
|
2016-05-19 20:20:51 +08:00
|
|
|
test-inst: all
|
|
|
|
@tmpdest=`mktemp --tmpdir -d btrfs-inst.XXXXXX` && \
|
|
|
|
echo "Test installation to $$tmpdest" && \
|
|
|
|
$(MAKE) DESTDIR=$$tmpdest install && \
|
|
|
|
$(RM) -rf -- $$tmpdest
|
|
|
|
|
2015-10-26 21:35:34 +08:00
|
|
|
test: test-fsck test-mkfs test-convert test-misc test-fuzz
|
2013-09-10 04:41:58 +08:00
|
|
|
|
2013-01-26 07:12:28 +08:00
|
|
|
#
|
|
|
|
# NOTE: For static compiles, you need to have all the required libs
|
|
|
|
# static equivalent available
|
|
|
|
#
|
2014-08-30 20:48:10 +08:00
|
|
|
static: $(progs_static)
|
2013-01-26 07:12:28 +08:00
|
|
|
|
2014-12-10 19:30:05 +08:00
|
|
|
version.h: version.sh version.h.in configure.ac
|
|
|
|
@echo " [SH] $@"
|
|
|
|
$(Q)bash ./config.status --silent $@
|
|
|
|
|
2013-02-13 01:44:35 +08:00
|
|
|
$(libs_shared): $(libbtrfs_objects) $(lib_links) send.h
|
2013-01-08 06:24:35 +08:00
|
|
|
@echo " [LD] $@"
|
2014-12-10 18:56:59 +08:00
|
|
|
$(Q)$(CC) $(CFLAGS) $(libbtrfs_objects) $(LDFLAGS) $(LIBBTRFS_LIBS) \
|
2013-05-12 23:33:44 +08:00
|
|
|
-shared -Wl,-soname,libbtrfs.so.0 -o libbtrfs.so.0.1
|
2013-01-08 06:24:35 +08:00
|
|
|
|
2013-02-13 01:44:35 +08:00
|
|
|
$(libs_static): $(libbtrfs_objects)
|
|
|
|
@echo " [AR] $@"
|
2015-09-05 07:06:18 +08:00
|
|
|
$(Q)$(AR) cr libbtrfs.a $(libbtrfs_objects)
|
2013-02-13 01:44:35 +08:00
|
|
|
|
2013-01-08 06:24:35 +08:00
|
|
|
$(lib_links):
|
|
|
|
@echo " [LN] $@"
|
2016-02-19 10:14:34 +08:00
|
|
|
$(Q)$(LN_S) -f libbtrfs.so.0.1 $@
|
2013-01-08 06:24:35 +08:00
|
|
|
|
2013-04-22 06:22:37 +08:00
|
|
|
# keep intermediate files from the below implicit rules around
|
|
|
|
.PRECIOUS: $(addsuffix .o,$(progs))
|
|
|
|
|
|
|
|
# Make any btrfs-foo out of btrfs-foo.o, with appropriate libs.
|
|
|
|
# The $($(subst...)) bits below takes the btrfs_*_libs definitions above and
|
|
|
|
# turns them into a list of libraries to link against if they exist
|
|
|
|
#
|
|
|
|
# For static variants, use an extra $(subst) to get rid of the ".static"
|
|
|
|
# from the target name before translating to list of libs
|
|
|
|
|
2016-03-23 01:29:24 +08:00
|
|
|
btrfs-%.static: $(static_objects) btrfs-%.static.o $(static_libbtrfs_objects) $(patsubst %.o,%.static.o,$(standalone_deps))
|
2013-04-22 06:22:37 +08:00
|
|
|
@echo " [LD] $@"
|
|
|
|
$(Q)$(CC) $(STATIC_CFLAGS) -o $@ $@.o $(static_objects) \
|
2016-03-21 22:16:07 +08:00
|
|
|
$(patsubst %.o, %.static.o, $($(subst -,_,$(subst .static,,$@)-objects))) \
|
2014-08-30 20:48:10 +08:00
|
|
|
$(static_libbtrfs_objects) $(STATIC_LDFLAGS) \
|
|
|
|
$($(subst -,_,$(subst .static,,$@)-libs)) $(STATIC_LIBS)
|
2013-04-22 06:22:37 +08:00
|
|
|
|
2016-03-23 01:29:24 +08:00
|
|
|
btrfs-%: $(objects) $(libs_static) btrfs-%.o $(standalone_deps)
|
2013-04-22 06:22:37 +08:00
|
|
|
@echo " [LD] $@"
|
2016-02-24 20:57:12 +08:00
|
|
|
$(Q)$(CC) $(CFLAGS) -o $@ $(objects) $@.o \
|
|
|
|
$($(subst -,_,$@-objects)) \
|
|
|
|
$(libs_static) \
|
2014-12-10 18:56:59 +08:00
|
|
|
$(LDFLAGS) $(LIBS) $($(subst -,_,$@-libs))
|
2013-04-22 06:22:37 +08:00
|
|
|
|
2016-01-14 17:30:35 +08:00
|
|
|
btrfs: $(objects) btrfs.o $(cmds_objects) $(libs_static)
|
2013-01-25 07:32:52 +08:00
|
|
|
@echo " [LD] $@"
|
2016-01-14 17:30:35 +08:00
|
|
|
$(Q)$(CC) $(CFLAGS) -o btrfs btrfs.o $(cmds_objects) \
|
2015-02-05 01:45:54 +08:00
|
|
|
$(objects) $(libs_static) $(LDFLAGS) $(LIBS)
|
2010-03-11 22:38:52 +08:00
|
|
|
|
2016-01-15 20:31:01 +08:00
|
|
|
btrfs.static: $(static_objects) btrfs.static.o $(static_cmds_objects) $(static_libbtrfs_objects)
|
2013-01-26 07:12:28 +08:00
|
|
|
@echo " [LD] $@"
|
2016-01-15 20:31:01 +08:00
|
|
|
$(Q)$(CC) $(STATIC_CFLAGS) -o btrfs.static btrfs.static.o $(static_cmds_objects) \
|
2013-03-20 01:12:05 +08:00
|
|
|
$(static_objects) $(static_libbtrfs_objects) $(STATIC_LDFLAGS) $(STATIC_LIBS)
|
2013-01-26 07:12:28 +08:00
|
|
|
|
2013-02-13 00:39:44 +08:00
|
|
|
# For backward compatibility, 'btrfs' changes behaviour to fsck if it's named 'btrfsck'
|
|
|
|
btrfsck: btrfs
|
|
|
|
@echo " [LN] $@"
|
2014-12-10 18:56:59 +08:00
|
|
|
$(Q)$(LN_S) -f btrfs btrfsck
|
2013-02-13 00:39:44 +08:00
|
|
|
|
2014-08-30 20:48:10 +08:00
|
|
|
btrfsck.static: btrfs.static
|
|
|
|
@echo " [LN] $@"
|
2014-12-10 18:56:59 +08:00
|
|
|
$(Q)$(LN_S) -f $^ $@
|
2014-08-30 20:48:10 +08:00
|
|
|
|
2015-02-05 01:45:54 +08:00
|
|
|
mkfs.btrfs: $(objects) $(libs_static) mkfs.o
|
2013-01-25 07:32:52 +08:00
|
|
|
@echo " [LD] $@"
|
2015-02-05 01:45:54 +08:00
|
|
|
$(Q)$(CC) $(CFLAGS) -o mkfs.btrfs $(objects) $(libs_static) mkfs.o $(LDFLAGS) $(LIBS)
|
2007-02-26 23:40:21 +08:00
|
|
|
|
2013-03-20 01:12:05 +08:00
|
|
|
mkfs.btrfs.static: $(static_objects) mkfs.static.o $(static_libbtrfs_objects)
|
2013-03-12 05:17:17 +08:00
|
|
|
@echo " [LD] $@"
|
2013-03-20 01:12:05 +08:00
|
|
|
$(Q)$(CC) $(STATIC_CFLAGS) -o mkfs.btrfs.static mkfs.static.o $(static_objects) \
|
|
|
|
$(static_libbtrfs_objects) $(STATIC_LDFLAGS) $(STATIC_LIBS)
|
2013-03-12 05:17:17 +08:00
|
|
|
|
2015-02-05 01:45:54 +08:00
|
|
|
btrfstune: $(objects) $(libs_static) btrfstune.o
|
2013-01-25 07:32:52 +08:00
|
|
|
@echo " [LD] $@"
|
2015-02-05 01:45:54 +08:00
|
|
|
$(Q)$(CC) $(CFLAGS) -o btrfstune $(objects) btrfstune.o $(libs_static) $(LDFLAGS) $(LIBS)
|
2008-11-18 23:40:06 +08:00
|
|
|
|
2014-08-30 20:48:10 +08:00
|
|
|
btrfstune.static: $(static_objects) btrfstune.static.o $(static_libbtrfs_objects)
|
|
|
|
@echo " [LD] $@"
|
|
|
|
$(Q)$(CC) $(STATIC_CFLAGS) -o $@ btrfstune.static.o $(static_objects) \
|
|
|
|
$(static_libbtrfs_objects) $(STATIC_LDFLAGS) $(STATIC_LIBS)
|
|
|
|
|
2013-01-08 06:24:35 +08:00
|
|
|
dir-test: $(objects) $(libs) dir-test.o
|
2013-01-25 07:32:52 +08:00
|
|
|
@echo " [LD] $@"
|
2014-12-10 18:56:59 +08:00
|
|
|
$(Q)$(CC) $(CFLAGS) -o dir-test $(objects) $(libs) dir-test.o $(LDFLAGS) $(LIBS)
|
2007-03-02 04:16:26 +08:00
|
|
|
|
2013-01-08 06:24:35 +08:00
|
|
|
quick-test: $(objects) $(libs) quick-test.o
|
2013-01-25 07:32:52 +08:00
|
|
|
@echo " [LD] $@"
|
2014-12-10 18:56:59 +08:00
|
|
|
$(Q)$(CC) $(CFLAGS) -o quick-test $(objects) $(libs) quick-test.o $(LDFLAGS) $(LIBS)
|
2007-04-27 04:46:06 +08:00
|
|
|
|
2013-01-08 06:24:35 +08:00
|
|
|
ioctl-test: $(objects) $(libs) ioctl-test.o
|
2013-01-25 07:32:52 +08:00
|
|
|
@echo " [LD] $@"
|
2014-12-10 18:56:59 +08:00
|
|
|
$(Q)$(CC) $(CFLAGS) -o ioctl-test $(objects) $(libs) ioctl-test.o $(LDFLAGS) $(LIBS)
|
2010-03-15 23:24:20 +08:00
|
|
|
|
2013-04-07 02:30:04 +08:00
|
|
|
send-test: $(objects) $(libs) send-test.o
|
2013-01-31 06:50:25 +08:00
|
|
|
@echo " [LD] $@"
|
2014-12-10 18:56:59 +08:00
|
|
|
$(Q)$(CC) $(CFLAGS) -o send-test $(objects) $(libs) send-test.o $(LDFLAGS) $(LIBS)
|
2013-01-31 06:50:25 +08:00
|
|
|
|
2014-10-31 01:59:47 +08:00
|
|
|
library-test: $(libs_shared) library-test.o
|
|
|
|
@echo " [LD] $@"
|
|
|
|
$(Q)$(CC) $(CFLAGS) -o library-test library-test.o $(LDFLAGS) -lbtrfs
|
|
|
|
|
|
|
|
library-test.static: $(libs_static) library-test.o
|
|
|
|
@echo " [LD] $@"
|
|
|
|
$(Q)$(CC) $(CFLAGS) -o library-test-static library-test.o $(LDFLAGS) $(libs_static)
|
|
|
|
|
2015-01-29 01:16:10 +08:00
|
|
|
test-build: test-build-pre test-build-real
|
|
|
|
|
|
|
|
test-build-pre:
|
2014-10-31 02:06:31 +08:00
|
|
|
$(MAKE) clean-all
|
2015-01-29 01:16:10 +08:00
|
|
|
./autogen.sh
|
|
|
|
./configure
|
|
|
|
|
|
|
|
test-build-real:
|
2014-10-31 02:06:31 +08:00
|
|
|
$(MAKE) library-test
|
|
|
|
-$(MAKE) library-test.static
|
|
|
|
$(MAKE) -j 8 all
|
|
|
|
-$(MAKE) -j 8 static
|
2014-10-31 02:22:32 +08:00
|
|
|
$(MAKE) -j 8 $(progs_extra)
|
2014-10-31 02:06:31 +08:00
|
|
|
|
2009-01-22 02:22:49 +08:00
|
|
|
manpages:
|
2014-04-02 16:29:38 +08:00
|
|
|
$(Q)$(MAKE) $(MAKEOPTS) -C Documentation
|
2009-01-22 02:22:49 +08:00
|
|
|
|
2014-12-10 19:30:05 +08:00
|
|
|
|
|
|
|
clean-all: clean clean-doc clean-gen
|
2014-04-04 22:36:40 +08:00
|
|
|
|
2013-06-12 07:15:17 +08:00
|
|
|
clean: $(CLEANDIRS)
|
2013-01-25 07:32:52 +08:00
|
|
|
@echo "Cleaning"
|
2016-10-06 18:56:02 +08:00
|
|
|
$(Q)$(RM) -f -- $(progs) cscope.out *.o *.o.d \
|
2016-09-23 22:09:33 +08:00
|
|
|
kernel-lib/*.o kernel-lib/*.o.d \
|
2014-10-31 02:28:02 +08:00
|
|
|
dir-test ioctl-test quick-test send-test library-test library-test-static \
|
|
|
|
btrfs.static mkfs.btrfs.static \
|
2014-12-10 19:30:05 +08:00
|
|
|
$(check_defs) \
|
2014-10-31 02:22:32 +08:00
|
|
|
$(libs) $(lib_links) \
|
2014-10-31 02:28:02 +08:00
|
|
|
$(progs_static) $(progs_extra)
|
2007-01-27 05:38:42 +08:00
|
|
|
|
2014-04-04 22:36:40 +08:00
|
|
|
clean-doc:
|
|
|
|
@echo "Cleaning Documentation"
|
|
|
|
$(Q)$(MAKE) $(MAKEOPTS) -C Documentation clean
|
|
|
|
|
2014-12-10 19:30:05 +08:00
|
|
|
clean-gen:
|
|
|
|
@echo "Cleaning Generated Files"
|
2016-10-06 18:56:02 +08:00
|
|
|
$(Q)$(RM) -rf -- version.h config.status config.cache connfig.log \
|
2015-01-29 01:28:37 +08:00
|
|
|
configure.lineno config.status.lineno Makefile \
|
2015-02-03 21:49:09 +08:00
|
|
|
Documentation/Makefile \
|
2015-01-29 01:28:37 +08:00
|
|
|
config.log config.h config.h.in~ aclocal.m4 \
|
|
|
|
configure autom4te.cache/ config/
|
2014-12-10 19:30:05 +08:00
|
|
|
|
2013-06-12 07:15:17 +08:00
|
|
|
$(CLEANDIRS):
|
|
|
|
@echo "Cleaning $(patsubst clean-%,%,$@)"
|
|
|
|
$(Q)$(MAKE) $(MAKEOPTS) -C $(patsubst clean-%,%,$@) clean
|
|
|
|
|
2015-02-05 22:46:42 +08:00
|
|
|
install: $(libs) $(progs_install) $(INSTALLDIRS)
|
2007-06-09 21:22:37 +08:00
|
|
|
$(INSTALL) -m755 -d $(DESTDIR)$(bindir)
|
2015-02-05 22:46:42 +08:00
|
|
|
$(INSTALL) $(progs_install) $(DESTDIR)$(bindir)
|
2013-09-02 23:22:24 +08:00
|
|
|
$(INSTALL) fsck.btrfs $(DESTDIR)$(bindir)
|
2013-05-03 00:20:22 +08:00
|
|
|
# btrfsck is a link to btrfs in the src tree, make it so for installed file as well
|
2015-02-05 01:10:23 +08:00
|
|
|
$(LN_S) -f btrfs $(DESTDIR)$(bindir)/btrfsck
|
2013-01-08 06:24:35 +08:00
|
|
|
$(INSTALL) -m755 -d $(DESTDIR)$(libdir)
|
|
|
|
$(INSTALL) $(libs) $(DESTDIR)$(libdir)
|
|
|
|
cp -a $(lib_links) $(DESTDIR)$(libdir)
|
|
|
|
$(INSTALL) -m755 -d $(DESTDIR)$(incdir)
|
|
|
|
$(INSTALL) -m644 $(headers) $(DESTDIR)$(incdir)
|
2016-05-09 23:44:26 +08:00
|
|
|
ifneq ($(udevdir),)
|
|
|
|
$(INSTALL) -m755 -d $(DESTDIR)$(udevruledir)
|
|
|
|
$(INSTALL) -m644 $(udev_rules) $(DESTDIR)$(udevruledir)
|
|
|
|
endif
|
2007-06-09 21:22:37 +08:00
|
|
|
|
2014-08-30 20:48:10 +08:00
|
|
|
install-static: $(progs_static) $(INSTALLDIRS)
|
2016-01-21 23:59:32 +08:00
|
|
|
$(INSTALL) -m755 -d $(DESTDIR)$(bindir)
|
|
|
|
$(INSTALL) $(progs_static) $(DESTDIR)$(bindir)
|
2015-08-05 23:44:48 +08:00
|
|
|
# btrfsck is a link to btrfs in the src tree, make it so for installed file as well
|
|
|
|
$(LN_S) -f btrfs.static $(DESTDIR)$(bindir)/btrfsck.static
|
2014-08-30 20:48:10 +08:00
|
|
|
|
2013-06-12 07:15:17 +08:00
|
|
|
$(INSTALLDIRS):
|
|
|
|
@echo "Making install in $(patsubst install-%,%,$@)"
|
|
|
|
$(Q)$(MAKE) $(MAKEOPTS) -C $(patsubst install-%,%,$@) install
|
|
|
|
|
2014-07-25 21:41:57 +08:00
|
|
|
uninstall:
|
|
|
|
$(Q)$(MAKE) $(MAKEOPTS) -C Documentation uninstall
|
2016-10-06 18:56:02 +08:00
|
|
|
cd $(DESTDIR)$(incdir); $(RM) -f -- $(headers)
|
|
|
|
$(RMDIR) -p --ignore-fail-on-non-empty -- $(DESTDIR)$(incdir)
|
|
|
|
cd $(DESTDIR)$(libdir); $(RM) -f -- $(lib_links) $(libs)
|
|
|
|
cd $(DESTDIR)$(bindir); $(RM) -f -- btrfsck fsck.btrfs $(progs_install)
|
2014-07-25 21:41:57 +08:00
|
|
|
|
2013-07-06 16:22:31 +08:00
|
|
|
ifneq ($(MAKECMDGOALS),clean)
|
2015-06-16 23:01:06 +08:00
|
|
|
-include $(objects:.o=.o.d) $(cmds_objects:.o=.o.d) $(subst .btrfs,, $(filter-out btrfsck.o.d, $(progs:=.o.d)))
|
2013-07-06 16:22:31 +08:00
|
|
|
endif
|