summaryrefslogtreecommitdiffstats
path: root/src/isa-l/igzip/Makefile.am
blob: bec359ab5cd736ed1e46858cf3dad49e36e0877f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
########################################################################
#  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.
########################################################################

lsrc        += 	igzip/igzip.c \
		igzip/hufftables_c.c \
		igzip/igzip_base.c \
		igzip/igzip_icf_base.c \
		igzip/adler32_base.c \
		igzip/flatten_ll.c \
		igzip/encode_df.c \
		igzip/igzip_icf_body.c

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
lsrc_ppc64le      += igzip/igzip_base_aliases.c igzip/proc_heap_base.c

lsrc_aarch64 +=	igzip/aarch64/igzip_inflate_multibinary_arm64.S  \
		igzip/aarch64/igzip_multibinary_arm64.S	\
		igzip/aarch64/igzip_isal_adler32_neon.S	\
		igzip/aarch64/igzip_multibinary_aarch64_dispatcher.c \
		igzip/aarch64/igzip_deflate_body_aarch64.S \
		igzip/aarch64/igzip_deflate_finish_aarch64.S \
		igzip/aarch64/isal_deflate_icf_body_hash_hist.S \
		igzip/aarch64/isal_deflate_icf_finish_hash_hist.S \
		igzip/aarch64/igzip_set_long_icf_fg.S \
		igzip/aarch64/encode_df.S \
		igzip/aarch64/isal_update_histogram.S \
		igzip/aarch64/gen_icf_map.S \
		igzip/aarch64/igzip_deflate_hash_aarch64.S \
		igzip/aarch64/igzip_decode_huffman_code_block_aarch64.S \
		igzip/proc_heap_base.c

lsrc_x86_64 +=	igzip/igzip_body.asm \
		igzip/igzip_finish.asm \
		igzip/igzip_icf_body_h1_gr_bt.asm \
		igzip/igzip_icf_finish.asm \
		igzip/rfc1951_lookup.asm \
		igzip/adler32_sse.asm \
		igzip/adler32_avx2_4.asm \
		igzip/igzip_multibinary.asm \
		igzip/igzip_update_histogram_01.asm \
		igzip/igzip_update_histogram_04.asm \
		igzip/igzip_decode_block_stateless_01.asm \
		igzip/igzip_decode_block_stateless_04.asm \
		igzip/igzip_inflate_multibinary.asm \
		igzip/encode_df_04.asm \
		igzip/encode_df_06.asm \
		igzip/proc_heap.asm \
		igzip/igzip_deflate_hash.asm \
		igzip/igzip_gen_icf_map_lh1_06.asm \
		igzip/igzip_gen_icf_map_lh1_04.asm \
		igzip/igzip_set_long_icf_fg_04.asm \
		igzip/igzip_set_long_icf_fg_06.asm

src_include += -I $(srcdir)/igzip
extern_hdrs +=	include/igzip_lib.h

check_tests +=  igzip/igzip_rand_test
check_tests +=  igzip/igzip_wrapper_hdr_test
check_tests +=  igzip/checksum32_funcs_test

other_tests +=  igzip/igzip_file_perf igzip/igzip_hist_perf
other_tests +=  igzip/igzip_perf
other_tests +=  igzip/igzip_semi_dyn_file_perf
other_tests +=  igzip/igzip_build_hash_table_perf

other_src   += 	igzip/bitbuf2.asm  \
		igzip/data_struct2.asm \
		igzip/inflate_data_structs.asm \
		igzip/igzip_body.asm \
		igzip/igzip_finish.asm \
		igzip/lz0a_const.asm \
		igzip/options.asm \
		igzip/stdmac.asm \
		igzip/igzip_compare_types.asm \
		igzip/bitbuf2.h \
		igzip/repeated_char_result.h \
		igzip/igzip_update_histogram.asm \
		igzip/huffman.asm \
		include/reg_sizes.asm \
		include/multibinary.asm \
		include/test.h \
		include/unaligned.h \
		igzip/huffman.h \
		igzip/igzip_level_buf_structs.h \
		igzip/igzip_decode_block_stateless.asm \
		igzip/inflate_std_vects.h \
		igzip/flatten_ll.h \
		igzip/encode_df.h \
		igzip/heap_macros.asm \
		igzip/igzip_wrapper.h \
		igzip/static_inflate.h \
		igzip/igzip_checksums.h

perf_tests  +=  igzip/adler32_perf

examples    += 	igzip/igzip_example igzip/igzip_sync_flush_example

igzip_igzip_rand_test_LDADD = libisal.la

# Include tools to make custom Huffman tables based on sample data
other_tests += igzip/generate_custom_hufftables
other_tests += igzip/generate_static_inflate
other_src   += igzip/huff_codes.h
lsrc        += igzip/huff_codes.c

# Include tools and tests using the reference inflate
other_tests += igzip/igzip_inflate_test
lsrc   += igzip/igzip_inflate.c
other_src   += igzip/checksum_test_ref.h

igzip_perf: LDLIBS += -lz
igzip_igzip_perf_LDADD = libisal.la
igzip_igzip_perf_LDFLAGS = -lz
igzip_inflate_test: LDLIBS += -lz
igzip_igzip_inflate_test_LDADD = libisal.la
igzip_igzip_inflate_test_LDFLAGS = -lz
igzip_igzip_hist_perf_LDADD = libisal.la