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