igzip: Rename inflate.asm and fix Makefile.am so that Makefile.unx works

Signed-off-by: Roy Oursler <roy.j.oursler@intel.com>
Reviewed-by: Greg Tucker <greg.b.tucker@intel.com>
This commit is contained in:
Roy Oursler 2016-07-12 15:32:48 -07:00 committed by Greg Tucker
parent 60d9a30f4e
commit 869712d389
6 changed files with 11 additions and 14 deletions

View File

@ -45,8 +45,8 @@ lsrc += igzip/igzip.c igzip/hufftables_c.c \
igzip/igzip_base.c \
igzip/igzip_update_histogram_01.asm \
igzip/igzip_update_histogram_04.asm \
igzip/igzip_inflate_01.asm \
igzip/igzip_inflate_04.asm \
igzip/igzip_decode_block_stateless_01.asm \
igzip/igzip_decode_block_stateless_04.asm \
igzip/igzip_inflate_multibinary.asm
src_include += -I $(srcdir)/igzip
@ -77,11 +77,10 @@ other_src += igzip/bitbuf2.asm igzip/data_struct2.asm \
include/multibinary.asm \
include/test.h \
igzip/huffman.h \
igzip/igzip_inflate.asm
igzip/igzip_decode_block_stateless.asm
examples += igzip/igzip_example igzip/igzip_sync_flush_example
igzip_rand_test:
igzip_igzip_rand_test_LDADD = libisal.la
# Include tools to make custom Huffman tables based on sample data
@ -102,7 +101,5 @@ igzip_igzip_inflate_perf_LDFLAGS = -lz
igzip_inflate_test: LDLIBS += -lz
igzip_igzip_inflate_test_LDADD = libisal.la
igzip_igzip_inflate_test_LDFLAGS = -lz
igzip_check:
igzip_igzip_check_LDADD = libisal.la
igzip_hist_perf: igzip_inflate.o
igzip_igzip_hist_perf_LDADD = igzip/igzip_inflate.lo libisal.la
igzip_igzip_hist_perf_LDADD = libisal.la

View File

@ -0,0 +1,3 @@
%define ARCH 01
%include "igzip_decode_block_stateless.asm"

View File

@ -0,0 +1,4 @@
%define ARCH 04
%define USE_HSWNI
%include "igzip_decode_block_stateless.asm"

View File

@ -1,3 +0,0 @@
%define ARCH 01
%include "igzip_inflate.asm"

View File

@ -1,4 +0,0 @@
%define ARCH 04
%define USE_HSWNI
%include "igzip_inflate.asm"