]> git.ipfire.org Git - thirdparty/xfsprogs-dev.git/blob - libfrog/Makefile
libfrog: move workqueue.h to libfrog/
[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 bitmap.c \
16 bulkstat.c \
17 convert.c \
18 crc32.c \
19 fsgeom.c \
20 list_sort.c \
21 linux.c \
22 paths.c \
23 projects.c \
24 ptvar.c \
25 radix-tree.c \
26 topology.c \
27 util.c \
28 workqueue.c
29
30 HFILES = \
31 avl64.h \
32 bulkstat.h \
33 bitmap.h \
34 convert.h \
35 crc32c.h \
36 crc32cselftest.h \
37 crc32defs.h \
38 crc32table.h \
39 fsgeom.h \
40 paths.h \
41 projects.h \
42 ptvar.h \
43 radix-tree.h \
44 topology.h \
45 workqueue.h
46
47 LSRCFILES += gen_crc32table.c
48
49 ifeq ($(HAVE_GETMNTENT),yes)
50 LCFLAGS += -DHAVE_GETMNTENT
51 endif
52
53 LDIRT = gen_crc32table crc32table.h crc32selftest
54
55 default: crc32selftest ltdepend $(LTLIBRARY)
56
57 crc32table.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.
68 crc32selftest: 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) ./$@
72
73 include $(BUILDRULES)
74
75 install install-dev: default
76
77 -include .ltdep