Index: Makefile
--- Makefile.orig	2008-04-29 04:44:46 +0200
+++ Makefile	2008-05-19 20:02:19 +0200
@@ -9,11 +9,12 @@
 #
 # Don't use compiler optimizations, they seem to slow the runtime.
 #
+LDFLAGS =
 LIBS = -lssl
 OBJS = functions.o md5crack.o sha1crack.o unhash.o
 
 all: $(OBJS)
-	$(CC) $(CFLAGS) $(OBJS) $(LIBS) -o unhash
+	$(CC) $(CFLAGS) $(LDFLAGS) $(OBJS) -o unhash $(LIBS)
 
 .c:
 	$(CC) $(CFLAGS) -c $<
