From: Andre Noll Date: Fri, 13 Aug 2010 08:47:04 +0000 (+0200) Subject: Makefile: Remove -lcrypto. X-Git-Tag: v0.1.0~1 X-Git-Url: http://git.tuebingen.mpg.de/?p=adu.git;a=commitdiff_plain;h=5bb143ffcff41d4a9a21669aea0f37fa3e144e43;ds=sidebyside Makefile: Remove -lcrypto. As libosl.0.1.1 does not depend on libssl any more, linking against libcrypto is no longer necessary. --- diff --git a/Makefile b/Makefile index c61dff7..9871673 100644 --- a/Makefile +++ b/Makefile @@ -41,7 +41,7 @@ Makefile.deps: $(wildcard *.c *.h) -include Makefile.deps adu: $(objects) - $(CC) -o $@ $(LDFLAGS) $(objects) -lcrypto -losl + $(CC) -o $@ $(LDFLAGS) $(objects) -losl cmdline.o: cmdline.c cmdline.h $(CC) -c $(CPPFLAGS) $<