head 1.1; access; symbols; locks; strict; comment @# @; 1.1 date 2008.05.19.18.06.10; author rse; state Exp; branches; next ; commitid abrReXjylJl9qB3t; desc @@ 1.1 log @new package: unhash 1.0 (MD5/SHA1 Brute-Force Cracking Utility) @ text @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 $< @