New upstream version 18.0.1+dfsg1
This commit is contained in:
parent
6efda2859e
commit
a03541a0f8
763 changed files with 69366 additions and 2632 deletions
51
deps/lzma/liblzma/check/Makefile.inc
vendored
Normal file
51
deps/lzma/liblzma/check/Makefile.inc
vendored
Normal file
|
|
@ -0,0 +1,51 @@
|
|||
##
|
||||
## Author: Lasse Collin
|
||||
##
|
||||
## This file has been put into the public domain.
|
||||
## You can do whatever you want with this file.
|
||||
##
|
||||
|
||||
EXTRA_DIST += \
|
||||
check/crc32_tablegen.c \
|
||||
check/crc64_tablegen.c
|
||||
|
||||
liblzma_la_SOURCES += \
|
||||
check/check.c \
|
||||
check/check.h \
|
||||
check/crc_macros.h
|
||||
|
||||
if COND_CHECK_CRC32
|
||||
if COND_SMALL
|
||||
liblzma_la_SOURCES += check/crc32_small.c
|
||||
else
|
||||
liblzma_la_SOURCES += \
|
||||
check/crc32_table.c \
|
||||
check/crc32_table_le.h \
|
||||
check/crc32_table_be.h
|
||||
if COND_ASM_X86
|
||||
liblzma_la_SOURCES += check/crc32_x86.S
|
||||
else
|
||||
liblzma_la_SOURCES += check/crc32_fast.c
|
||||
endif
|
||||
endif
|
||||
endif
|
||||
|
||||
if COND_CHECK_CRC64
|
||||
if COND_SMALL
|
||||
liblzma_la_SOURCES += check/crc64_small.c
|
||||
else
|
||||
liblzma_la_SOURCES += \
|
||||
check/crc64_table.c \
|
||||
check/crc64_table_le.h \
|
||||
check/crc64_table_be.h
|
||||
if COND_ASM_X86
|
||||
liblzma_la_SOURCES += check/crc64_x86.S
|
||||
else
|
||||
liblzma_la_SOURCES += check/crc64_fast.c
|
||||
endif
|
||||
endif
|
||||
endif
|
||||
|
||||
if COND_CHECK_SHA256
|
||||
liblzma_la_SOURCES += check/sha256.c
|
||||
endif
|
||||
Loading…
Add table
Add a link
Reference in a new issue