From 715a3bef377aeee898c427be99b1acf440b4a5e5 Mon Sep 17 00:00:00 2001 From: Simon Tatham Date: Wed, 10 May 2017 07:10:14 +0100 Subject: Factor LZ77 and Huffman routines out of deflate.c. The general routines for analysing a buffer into an LZ77ish stream of literals and matches, and for constructing a Huffman tree in canonical format, now live in their own source files so that they can be reused for other similar compression formats. Deflate-specific details like the exact file encoding are left in deflate.c. --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'Makefile') diff --git a/Makefile b/Makefile index a60bac7..6264624 100644 --- a/Makefile +++ b/Makefile @@ -95,7 +95,7 @@ include $(LIBCHARSET_SRCDIR)Makefile MODULES := main malloc ustring error help licence version misc tree234 MODULES += input in_afm in_pf in_sfnt keywords contents index biblio MODULES += bk_text bk_html bk_whlp bk_man bk_info bk_paper bk_ps bk_pdf -MODULES += winhelp deflate psdata wcwidth +MODULES += winhelp deflate lz77 huffman psdata wcwidth OBJECTS := $(addsuffix .o,$(MODULES)) $(LIBCHARSET_OBJS) DEPS := $(addsuffix .d,$(MODULES)) -- cgit v1.1