]> git.ipfire.org Git - thirdparty/xfsprogs-dev.git/blob - libfrog/Makefile
xfs_repair: rebuild directory when non-root leafn blocks claim block 0
[thirdparty/xfsprogs-dev.git] / libfrog / Makefile
1 # SPDX-License-Identifier: GPL-2.0
2 # Copyright (c) 2017 Oracle. All Rights Reserved.
3 #
4
5 TOPDIR = ..
6 include $(TOPDIR)/include/builddefs
7
8 LTLIBRARY = libfrog.la
9 LT_CURRENT = 0
10 LT_REVISION = 0
11 LT_AGE = 0
12
13 CFILES = \
14 avl64.c \
15 convert.c \
16 crc32.c \
17 fsgeom.c \
18 list_sort.c \
19 linux.c \
20 paths.c \
21 projects.c \
22 ptvar.c \
23 radix-tree.c \
24 topology.c \
25 util.c \
26 workqueue.c
27
28 HFILES = \
29 crc32defs.h \
30 crc32table.h
31
32 LSRCFILES += gen_crc32table.c
33
34 ifeq ($(HAVE_GETMNTENT),yes)
35 LCFLAGS += -DHAVE_GETMNTENT
36 endif
37
38 LDIRT = gen_crc32table crc32table.h crc32selftest
39
40 default: crc32selftest ltdepend $(LTLIBRARY)
41
42 crc32table.h: gen_crc32table.c crc32defs.h
43 @echo " [CC] gen_crc32table"
44 $(Q) $(BUILD_CC) $(BUILD_CFLAGS) -o gen_crc32table $<
45 @echo " [GENERATE] $@"
46 $(Q) ./gen_crc32table > crc32table.h
47
48 # The selftest binary will return an error if it fails. This is made a
49 # dependency of the build process so that we refuse to build the tools on broken
50 # systems/architectures. Hence we make sure that xfsprogs will never use a
51 # busted CRC calculation at build time and hence avoid putting bad CRCs down on
52 # disk.
53 crc32selftest: gen_crc32table.c crc32table.h crc32.c crc32defs.h
54 @echo " [TEST] CRC32"
55 $(Q) $(BUILD_CC) $(BUILD_CFLAGS) -D CRC32_SELFTEST=1 crc32.c -o $@
56 $(Q) ./$@
57
58 include $(BUILDRULES)
59
60 install install-dev: default
61
62 -include .ltdep