1 # Export all variables to sub-makes by default
7 AM_CFLAGS = -Wall -D_FILE_OFFSET_BITS=64 -DBTRFS_FLAT_INCLUDES -fPIC
9 objects = ctree.o disk-io.o radix-tree.o extent-tree.o print-tree.o \
10 root-tree.o dir-item.o file-item.o inode-item.o inode-map.o \
11 extent-cache.o extent_io.o volumes.o utils.o repair.o \
12 qgroup.o raid6.o free-space-cache.o list_sort.o
13 cmds_objects = cmds-subvolume.o cmds-filesystem.o cmds-device.o cmds-scrub.o \
14 cmds-inspect.o cmds-balance.o cmds-send.o cmds-receive.o \
15 cmds-quota.o cmds-qgroup.o cmds-replace.o cmds-check.o \
16 cmds-restore.o cmds-rescue.o chunk-recover.o super-recover.o
17 libbtrfs_objects = send-stream.o send-utils.o rbtree.o btrfs-list.o crc32c.o \
19 libbtrfs_headers = send-stream.h send-utils.h send.h rbtree.h btrfs-list.h \
20 crc32c.h list.h kerncompat.h radix-tree.h extent-cache.h \
21 extent_io.h ioctl.h ctree.h btrfsck.h
26 bindir = $(prefix)/bin
27 lib_LIBS = -luuid -lblkid -lm -lz -llzo2 -L.
28 libdir ?= $(prefix)/lib
29 incdir = $(prefix)/include/btrfs
30 LIBS = $(lib_LIBS) $(libs_static)
32 ifeq ("$(origin V)", "command line")
39 ifeq ($(BUILD_VERBOSE),1)
45 MAKEOPTS = --no-print-directory Q=$(Q)
47 progs = mkfs.btrfs btrfs-debug-tree btrfsck \
48 btrfs btrfs-map-logical btrfs-image btrfs-zero-log btrfs-convert \
49 btrfs-find-root btrfstune btrfs-show-super
51 # external libs required by various binaries; for btrfs-foo,
52 # specify btrfs_foo_libs = <list of libs>; see $($(subst...)) rules below
53 btrfs_convert_libs = -lext2fs -lcom_err
54 btrfs_image_libs = -lpthread
55 btrfs_fragment_libs = -lgd -lpng -ljpeg -lfreetype
58 BUILDDIRS = $(patsubst %,build-%,$(SUBDIRS))
59 INSTALLDIRS = $(patsubst %,install-%,$(SUBDIRS))
60 CLEANDIRS = $(patsubst %,clean-%,$(SUBDIRS))
64 .PHONY: $(INSTALLDIRS)
67 .PHONY: all install clean
69 # Create all the static targets
70 static_objects = $(patsubst %.o, %.static.o, $(objects))
71 static_cmds_objects = $(patsubst %.o, %.static.o, $(cmds_objects))
72 static_libbtrfs_objects = $(patsubst %.o, %.static.o, $(libbtrfs_objects))
74 # Define static compilation flags
75 STATIC_CFLAGS = $(CFLAGS) -ffunction-sections -fdata-sections
76 STATIC_LDFLAGS = -static -Wl,--gc-sections
77 STATIC_LIBS = $(lib_LIBS) -lpthread
79 libs_shared = libbtrfs.so.0.1
80 libs_static = libbtrfs.a
81 libs = $(libs_shared) $(libs_static)
82 lib_links = libbtrfs.so.0 libbtrfs.so
83 headers = $(libbtrfs_headers)
85 # make C=1 to enable sparse
86 check_defs := .cc-defines.h
89 # We're trying to use sparse against glibc headers which go wild
90 # trying to use internal compiler macros to test features. We
91 # copy gcc's and give them to sparse. But not __SIZE_TYPE__
92 # 'cause sparse defines that one.
94 dummy := $(shell $(CC) -dM -E -x c - < /dev/null | \
95 grep -v __SIZE_TYPE__ > $(check_defs))
96 check = sparse -include $(check_defs) -D__CHECKER__ \
97 -D__CHECK_ENDIAN__ -Wbitwise -Wuninitialized -Wshadow -Wundef
99 # don't use FORTIFY with sparse because glibc with FORTIFY can
100 # generate so many sparse errors that sparse stops parsing,
101 # which masks real errors that we want to see.
105 AM_CFLAGS += -U_FORTIFY_SOURCE -D_FORTIFY_SOURCE=2
109 $(Q)$(CC) -MM -MG -MF $@ -MT $(@:.o.d=.o) -MT $(@:.o.d=.static.o) -MT $@ $(AM_CFLAGS) $(CFLAGS) $<
112 @$(check_echo) " [SP] $<"
113 $(Q)$(check) $(AM_CFLAGS) $(CFLAGS) $<
115 $(Q)$(CC) $(AM_CFLAGS) $(CFLAGS) -c $<
119 $(Q)$(CC) $(AM_CFLAGS) $(STATIC_CFLAGS) -c $< -o $@
121 all: $(progs) manpages $(BUILDDIRS)
122 $(SUBDIRS): $(BUILDDIRS)
124 @echo "Making all in $(patsubst build-%,%,$@)"
125 $(Q)$(MAKE) $(MAKEOPTS) -C $(patsubst build-%,%,$@)
128 $(Q)for t in $(TESTS); do \
129 echo " [TEST] $$t"; \
130 bash tests/$$t || exit 1; \
134 # NOTE: For static compiles, you need to have all the required libs
135 # static equivalent available
137 static: btrfs.static mkfs.btrfs.static btrfs-find-root.static
143 $(libs_shared): $(libbtrfs_objects) $(lib_links) send.h
145 $(Q)$(CC) $(CFLAGS) $(libbtrfs_objects) $(LDFLAGS) $(lib_LIBS) \
146 -shared -Wl,-soname,libbtrfs.so.0 -o libbtrfs.so.0.1
148 $(libs_static): $(libbtrfs_objects)
150 $(Q)$(AR) cru libbtrfs.a $(libbtrfs_objects)
154 $(Q)$(LN) -sf libbtrfs.so.0.1 libbtrfs.so.0
155 $(Q)$(LN) -sf libbtrfs.so.0.1 libbtrfs.so
157 # keep intermediate files from the below implicit rules around
158 .PRECIOUS: $(addsuffix .o,$(progs))
160 # Make any btrfs-foo out of btrfs-foo.o, with appropriate libs.
161 # The $($(subst...)) bits below takes the btrfs_*_libs definitions above and
162 # turns them into a list of libraries to link against if they exist
164 # For static variants, use an extra $(subst) to get rid of the ".static"
165 # from the target name before translating to list of libs
167 btrfs-%.static: $(static_objects) btrfs-%.static.o $(static_libbtrfs_objects)
169 $(Q)$(CC) $(STATIC_CFLAGS) -o $@ $@.o $(static_objects) \
170 $(static_libbtrfs_objects) $(STATIC_LDFLAGS) $(STATIC_LIBS) \
171 $($(subst -,_,$(subst .static,,$@)-libs))
173 btrfs-%: $(objects) $(libs) btrfs-%.o
175 $(Q)$(CC) $(CFLAGS) -o $@ $(objects) $@.o $(LDFLAGS) $(LIBS) $($(subst -,_,$@-libs))
177 btrfs: $(objects) btrfs.o help.o $(cmds_objects) $(libs)
179 $(Q)$(CC) $(CFLAGS) -o btrfs btrfs.o help.o $(cmds_objects) \
180 $(objects) $(LDFLAGS) $(LIBS) -lpthread
182 btrfs.static: $(static_objects) btrfs.static.o help.static.o $(static_cmds_objects) $(static_libbtrfs_objects)
184 $(Q)$(CC) $(STATIC_CFLAGS) -o btrfs.static btrfs.static.o help.static.o $(static_cmds_objects) \
185 $(static_objects) $(static_libbtrfs_objects) $(STATIC_LDFLAGS) $(STATIC_LIBS)
187 # For backward compatibility, 'btrfs' changes behaviour to fsck if it's named 'btrfsck'
190 $(Q)$(LN) -f btrfs btrfsck
192 mkfs.btrfs: $(objects) $(libs) mkfs.o
194 $(Q)$(CC) $(CFLAGS) -o mkfs.btrfs $(objects) mkfs.o $(LDFLAGS) $(LIBS)
196 mkfs.btrfs.static: $(static_objects) mkfs.static.o $(static_libbtrfs_objects)
198 $(Q)$(CC) $(STATIC_CFLAGS) -o mkfs.btrfs.static mkfs.static.o $(static_objects) \
199 $(static_libbtrfs_objects) $(STATIC_LDFLAGS) $(STATIC_LIBS)
201 btrfstune: $(objects) $(libs) btrfstune.o
203 $(Q)$(CC) $(CFLAGS) -o btrfstune $(objects) btrfstune.o $(LDFLAGS) $(LIBS)
205 dir-test: $(objects) $(libs) dir-test.o
207 $(Q)$(CC) $(CFLAGS) -o dir-test $(objects) dir-test.o $(LDFLAGS) $(LIBS)
209 quick-test: $(objects) $(libs) quick-test.o
211 $(Q)$(CC) $(CFLAGS) -o quick-test $(objects) quick-test.o $(LDFLAGS) $(LIBS)
213 ioctl-test: $(objects) $(libs) ioctl-test.o
215 $(Q)$(CC) $(CFLAGS) -o ioctl-test $(objects) ioctl-test.o $(LDFLAGS) $(LIBS)
217 send-test: $(objects) $(libs) send-test.o
219 $(Q)$(CC) $(CFLAGS) -o send-test $(objects) send-test.o $(LDFLAGS) $(LIBS) -lpthread
222 $(Q)$(MAKE) $(MAKEOPTS) -C man
226 $(Q)rm -f $(progs) cscope.out *.o *.o.d btrfs-convert btrfs-image btrfs-select-super \
227 btrfs-zero-log btrfstune dir-test ioctl-test quick-test send-test btrfsck \
228 btrfs.static mkfs.btrfs.static btrfs-calc-size \
229 version.h $(check_defs) \
233 @echo "Cleaning $(patsubst clean-%,%,$@)"
234 $(Q)$(MAKE) $(MAKEOPTS) -C $(patsubst clean-%,%,$@) clean
236 install: $(libs) $(progs) $(INSTALLDIRS)
237 $(INSTALL) -m755 -d $(DESTDIR)$(bindir)
238 $(INSTALL) $(progs) $(DESTDIR)$(bindir)
239 # btrfsck is a link to btrfs in the src tree, make it so for installed file as well
240 $(LN) -f $(DESTDIR)$(bindir)/btrfs $(DESTDIR)$(bindir)/btrfsck
241 $(INSTALL) -m755 -d $(DESTDIR)$(libdir)
242 $(INSTALL) $(libs) $(DESTDIR)$(libdir)
243 cp -a $(lib_links) $(DESTDIR)$(libdir)
244 $(INSTALL) -m755 -d $(DESTDIR)$(incdir)
245 $(INSTALL) -m644 $(headers) $(DESTDIR)$(incdir)
248 @echo "Making install in $(patsubst install-%,%,$@)"
249 $(Q)$(MAKE) $(MAKEOPTS) -C $(patsubst install-%,%,$@) install
251 ifneq ($(MAKECMDGOALS),clean)
252 -include $(objects:.o=.o.d) $(cmd-objects:.o=.o.d) $(subst .btrfs,, $(filter-out btrfsck.o.d, $(progs:=.o.d)))