2016-06-02 22:52:23 +02:00
|
|
|
########################################################################
|
|
|
|
# Copyright(c) 2011-2016 Intel Corporation All rights reserved.
|
|
|
|
#
|
|
|
|
# Redistribution and use in source and binary forms, with or without
|
|
|
|
# modification, are permitted provided that the following conditions
|
|
|
|
# are met:
|
|
|
|
# * Redistributions of source code must retain the above copyright
|
|
|
|
# notice, this list of conditions and the following disclaimer.
|
|
|
|
# * Redistributions in binary form must reproduce the above copyright
|
|
|
|
# notice, this list of conditions and the following disclaimer in
|
|
|
|
# the documentation and/or other materials provided with the
|
|
|
|
# distribution.
|
|
|
|
# * Neither the name of Intel Corporation nor the names of its
|
|
|
|
# contributors may be used to endorse or promote products derived
|
|
|
|
# from this software without specific prior written permission.
|
|
|
|
#
|
|
|
|
# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
|
|
|
|
# "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
|
|
|
|
# LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
|
|
|
|
# A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
|
|
|
|
# OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
|
|
|
|
# SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
|
|
|
|
# LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
|
|
|
|
# DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
|
|
|
|
# THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
|
|
|
|
# (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
|
|
|
|
# OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
|
|
|
########################################################################
|
|
|
|
|
2017-03-22 00:21:51 +01:00
|
|
|
lsrc += igzip/igzip.c \
|
|
|
|
igzip/hufftables_c.c \
|
|
|
|
igzip/igzip_base.c \
|
|
|
|
igzip/igzip_icf_base.c \
|
2017-03-22 22:31:25 +01:00
|
|
|
igzip/crc32_gzip_base.c \
|
2017-03-22 00:21:51 +01:00
|
|
|
igzip/flatten_ll.c \
|
|
|
|
igzip/encode_df.c
|
|
|
|
|
2017-03-22 20:02:44 +01:00
|
|
|
lsrc_base_aliases += igzip/igzip_base_aliases.c igzip/proc_heap_base.c
|
|
|
|
lsrc_x86_32 += igzip/igzip_base_aliases.c igzip/proc_heap_base.c
|
2017-03-22 00:21:51 +01:00
|
|
|
|
|
|
|
lsrc_x86_64 += \
|
2016-06-21 19:53:44 +02:00
|
|
|
igzip/igzip_body_01.asm \
|
|
|
|
igzip/igzip_body_02.asm \
|
|
|
|
igzip/igzip_body_04.asm \
|
|
|
|
igzip/igzip_finish.asm \
|
2016-10-03 23:50:52 +02:00
|
|
|
igzip/igzip_icf_body_01.asm \
|
|
|
|
igzip/igzip_icf_body_02.asm \
|
|
|
|
igzip/igzip_icf_body_04.asm \
|
|
|
|
igzip/igzip_icf_finish.asm \
|
2016-03-08 02:08:20 +01:00
|
|
|
igzip/rfc1951_lookup.asm \
|
2016-06-02 22:52:23 +02:00
|
|
|
igzip/crc32_gzip.asm igzip/detect_repeated_char.asm \
|
2017-05-25 22:51:25 +02:00
|
|
|
igzip/adler32_sse.asm \
|
2017-05-06 03:17:15 +02:00
|
|
|
igzip/adler32_avx2_4.asm \
|
2016-06-02 22:52:23 +02:00
|
|
|
igzip/igzip_multibinary.asm \
|
2016-06-06 18:23:26 +02:00
|
|
|
igzip/igzip_update_histogram_01.asm \
|
|
|
|
igzip/igzip_update_histogram_04.asm \
|
2016-07-13 00:32:48 +02:00
|
|
|
igzip/igzip_decode_block_stateless_01.asm \
|
|
|
|
igzip/igzip_decode_block_stateless_04.asm \
|
2016-10-03 23:50:52 +02:00
|
|
|
igzip/igzip_inflate_multibinary.asm \
|
|
|
|
igzip/encode_df_04.asm \
|
2017-04-11 00:05:30 +02:00
|
|
|
igzip/encode_df_06.asm \
|
2016-10-03 23:50:52 +02:00
|
|
|
igzip/proc_heap.asm
|
2016-06-02 22:52:23 +02:00
|
|
|
|
2016-07-11 10:25:18 +02:00
|
|
|
src_include += -I $(srcdir)/igzip
|
2016-08-05 20:11:25 +02:00
|
|
|
extern_hdrs += include/igzip_lib.h
|
2016-06-02 22:52:23 +02:00
|
|
|
|
|
|
|
pkginclude_HEADERS += include/types.h
|
|
|
|
|
2016-09-28 22:24:43 +02:00
|
|
|
check_tests += igzip/igzip_rand_test
|
2016-06-02 22:52:23 +02:00
|
|
|
|
|
|
|
perf_tests += igzip/igzip_perf igzip/igzip_sync_flush_perf
|
|
|
|
|
2016-06-06 18:23:26 +02:00
|
|
|
other_tests += igzip/igzip_file_perf igzip/igzip_sync_flush_file_perf igzip/igzip_stateless_file_perf igzip/igzip_hist_perf
|
2016-10-01 00:11:33 +02:00
|
|
|
other_tests += igzip/igzip_semi_dyn_file_perf
|
2016-06-02 22:52:23 +02:00
|
|
|
|
2017-03-17 18:24:47 +01:00
|
|
|
other_src += igzip/bitbuf2.asm \
|
|
|
|
igzip/data_struct2.asm \
|
2016-03-08 02:08:20 +01:00
|
|
|
igzip/inflate_data_structs.asm \
|
2017-03-17 18:24:47 +01:00
|
|
|
igzip/igzip_body.asm \
|
|
|
|
igzip/igzip_icf_body.asm \
|
|
|
|
igzip/igzip_finish.asm \
|
|
|
|
igzip/lz0a_const.asm \
|
|
|
|
igzip/options.asm \
|
|
|
|
igzip/stdmac.asm \
|
|
|
|
igzip/igzip_compare_types.asm \
|
2016-10-03 23:50:52 +02:00
|
|
|
igzip/bitbuf2.h \
|
|
|
|
igzip/repeated_char_result.h \
|
2016-06-06 18:23:26 +02:00
|
|
|
igzip/igzip_update_histogram.asm \
|
2016-06-02 22:52:23 +02:00
|
|
|
igzip/huffman.asm \
|
|
|
|
include/reg_sizes.asm \
|
|
|
|
include/multibinary.asm \
|
|
|
|
include/test.h \
|
2016-03-08 02:08:20 +01:00
|
|
|
igzip/huffman.h \
|
2016-10-03 23:50:52 +02:00
|
|
|
igzip/igzip_level_buf_structs.h \
|
2016-11-14 19:22:33 +01:00
|
|
|
igzip/igzip_decode_block_stateless.asm \
|
2016-10-03 23:50:52 +02:00
|
|
|
igzip/inflate_std_vects.h \
|
|
|
|
igzip/flatten_ll.h \
|
|
|
|
igzip/encode_df.h \
|
2017-05-01 21:44:30 +02:00
|
|
|
igzip/heap_macros.asm \
|
|
|
|
igzip/igzip_checksums.h
|
2016-06-02 22:52:23 +02:00
|
|
|
|
|
|
|
examples += igzip/igzip_example igzip/igzip_sync_flush_example
|
|
|
|
|
2016-03-08 02:08:20 +01:00
|
|
|
igzip_igzip_rand_test_LDADD = libisal.la
|
2016-06-02 22:52:23 +02:00
|
|
|
|
|
|
|
# Include tools to make custom Huffman tables based on sample data
|
|
|
|
other_tests += igzip/generate_custom_hufftables
|
|
|
|
other_src += igzip/huff_codes.h
|
|
|
|
lsrc += igzip/huff_codes.c
|
|
|
|
|
|
|
|
# Include tools and tests using the reference inflate
|
|
|
|
other_tests += igzip/igzip_inflate_perf
|
|
|
|
other_tests += igzip/igzip_inflate_test
|
2016-08-17 00:04:52 +02:00
|
|
|
other_tests += igzip/igzip_fuzz_inflate
|
2016-03-08 02:08:20 +01:00
|
|
|
lsrc += igzip/igzip_inflate.c
|
2016-06-02 22:52:23 +02:00
|
|
|
other_src += igzip/crc_inflate.h
|
|
|
|
|
|
|
|
igzip_inflate_perf: LDLIBS += -lz
|
2016-03-08 02:08:20 +01:00
|
|
|
igzip_igzip_inflate_perf_LDADD = libisal.la
|
2016-06-02 22:52:23 +02:00
|
|
|
igzip_igzip_inflate_perf_LDFLAGS = -lz
|
2017-05-12 20:09:43 +02:00
|
|
|
igzip_inflate_test: LDLIBS += -lz
|
2016-03-08 02:08:20 +01:00
|
|
|
igzip_igzip_inflate_test_LDADD = libisal.la
|
2017-05-12 20:09:43 +02:00
|
|
|
igzip_igzip_inflate_test_LDFLAGS = -lz
|
2016-07-13 00:32:48 +02:00
|
|
|
igzip_igzip_hist_perf_LDADD = libisal.la
|
2016-08-17 00:04:52 +02:00
|
|
|
igzip_fuzz_inflate: LDLIBS += -lz
|
|
|
|
igzip_igzip_fuzz_inflate_LDADD = libisal.la
|
|
|
|
igzip_igzip_fuzz_inflate_LDFLAGS = -lz
|