- Added automatic WINDOWS define in Makefile

diff --git a/programs/Makefile b/programs/Makefile
index 8780633..3a4f729 100644
--- a/programs/Makefile
+++ b/programs/Makefile
@@ -11,6 +11,10 @@
 CFLAGS += -g3
 endif
 
+ifdef WINDOWS
+LDFLAGS += -lws2_32
+endif
+
 APPS =	aes/aescrypt2	aes/crypt_and_hash	\
 	hash/hello			hash/generic_sum	\
 	hash/md5sum			hash/sha1sum		\