- Added DEFLATE compression support as per RFC3749 (requires zlib)

diff --git a/programs/Makefile b/programs/Makefile
index d28bc53..3aab43c 100644
--- a/programs/Makefile
+++ b/programs/Makefile
@@ -15,6 +15,11 @@
 LDFLAGS += -lws2_32
 endif
 
+# Zlib shared library extensions:
+ifdef ZLIB
+LDFLAGS += -lz
+endif
+
 APPS =	aes/aescrypt2	aes/crypt_and_hash	\
 	hash/hello			hash/generic_sum	\
 	hash/md5sum			hash/sha1sum		\