liblzma: Fix a typo in a comment
[xz/debian.git] / src / liblzma / check / Makefile.inc
blob04cf1ffc57dff6bebc497da57224bc674b009a7f
1 ## SPDX-License-Identifier: 0BSD
2 ## Author: Lasse Collin
4 ## Note: There is no check for COND_CHECK_CRC32 because
5 ## currently crc32 is always enabled.
7 EXTRA_DIST += \
8         check/crc32_tablegen.c \
9         check/crc64_tablegen.c
11 liblzma_la_SOURCES += \
12         check/check.c \
13         check/check.h \
14         check/crc_common.h \
15         check/crc_x86_clmul.h \
16         check/crc32_arm64.h
18 if COND_SMALL
19 liblzma_la_SOURCES += check/crc32_small.c
20 else
21 liblzma_la_SOURCES += \
22         check/crc32_table.c \
23         check/crc32_table_le.h \
24         check/crc32_table_be.h
25 if COND_ASM_X86
26 liblzma_la_SOURCES += check/crc32_x86.S
27 else
28 liblzma_la_SOURCES += check/crc32_fast.c
29 endif
30 endif
32 if COND_CHECK_CRC64
33 if COND_SMALL
34 liblzma_la_SOURCES += check/crc64_small.c
35 else
36 liblzma_la_SOURCES += \
37         check/crc64_table.c \
38         check/crc64_table_le.h \
39         check/crc64_table_be.h
40 if COND_ASM_X86
41 liblzma_la_SOURCES += check/crc64_x86.S
42 else
43 liblzma_la_SOURCES += check/crc64_fast.c
44 endif
45 endif
46 endif
48 if COND_CHECK_SHA256
49 if COND_INTERNAL_SHA256
50 liblzma_la_SOURCES += check/sha256.c
51 endif
52 endif