]> git.ipfire.org Git - thirdparty/xfsprogs-dev.git/blame - libfrog/Makefile
libfrog: move workqueue.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 \
63153a95
DW
35crc32c.h \
36crc32cselftest.h \
973de649 37crc32defs.h \
7478c2e3 38crc32table.h \
fee68490 39fsgeom.h \
42b4c8e8 40paths.h \
59f1f2a6 41projects.h \
14051909 42ptvar.h \
8bf7924e 43radix-tree.h \
56598728
DW
44topology.h \
45workqueue.h
973de649
DW
46
47LSRCFILES += gen_crc32table.c
48
bd987fe3
DW
49ifeq ($(HAVE_GETMNTENT),yes)
50LCFLAGS += -DHAVE_GETMNTENT
51endif
52
973de649
DW
53LDIRT = gen_crc32table crc32table.h crc32selftest
54
55default: crc32selftest ltdepend $(LTLIBRARY)
56
57crc32table.h: gen_crc32table.c crc32defs.h
58 @echo " [CC] gen_crc32table"
59 $(Q) $(BUILD_CC) $(BUILD_CFLAGS) -o gen_crc32table $<
60 @echo " [GENERATE] $@"
61 $(Q) ./gen_crc32table > crc32table.h
62
63# The selftest binary will return an error if it fails. This is made a
64# dependency of the build process so that we refuse to build the tools on broken
65# systems/architectures. Hence we make sure that xfsprogs will never use a
66# busted CRC calculation at build time and hence avoid putting bad CRCs down on
67# disk.
68crc32selftest: gen_crc32table.c crc32table.h crc32.c crc32defs.h
69 @echo " [TEST] CRC32"
70 $(Q) $(BUILD_CC) $(BUILD_CFLAGS) -D CRC32_SELFTEST=1 crc32.c -o $@
71 $(Q) ./$@
5caa042b
DW
72
73include $(BUILDRULES)
74
75install install-dev: default
76
77-include .ltdep