]> git.ipfire.org Git - thirdparty/xfsprogs-dev.git/blob - libfrog/Makefile
libxfs: move topology declarations into separate header
[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 bulkstat.h \
32 crc32defs.h \
33 crc32table.h \
34 topology.h
35
36 LSRCFILES += gen_crc32table.c
37
38 ifeq ($(HAVE_GETMNTENT),yes)
39 LCFLAGS += -DHAVE_GETMNTENT
40 endif
41
42 LDIRT = gen_crc32table crc32table.h crc32selftest
43
44 default: crc32selftest ltdepend $(LTLIBRARY)
45
46 crc32table.h: gen_crc32table.c crc32defs.h
47 @echo " [CC] gen_crc32table"
48 $(Q) $(BUILD_CC) $(BUILD_CFLAGS) -o gen_crc32table $<
49 @echo " [GENERATE] $@"
50 $(Q) ./gen_crc32table > crc32table.h
51
52 # The selftest binary will return an error if it fails. This is made a
53 # dependency of the build process so that we refuse to build the tools on broken
54 # systems/architectures. Hence we make sure that xfsprogs will never use a
55 # busted CRC calculation at build time and hence avoid putting bad CRCs down on
56 # disk.
57 crc32selftest: gen_crc32table.c crc32table.h crc32.c crc32defs.h
58 @echo " [TEST] CRC32"
59 $(Q) $(BUILD_CC) $(BUILD_CFLAGS) -D CRC32_SELFTEST=1 crc32.c -o $@
60 $(Q) ./$@
61
62 include $(BUILDRULES)
63
64 install install-dev: default
65
66 -include .ltdep