Drop dependency on openssl.
[osl.git] / Makefile
index 76925a61c96b011da382e53b72ab3f8ac39f3b1b..f960d69c25ad0aa668c9db9415d08060adbe4360 100644 (file)
--- a/Makefile
+++ b/Makefile
@@ -1,5 +1,5 @@
 # where to install
-PREFIX ?:= /usr/local
+PREFIX ?= /usr/local
 libdir := $(PREFIX)/lib
 includedir := $(PREFIX)/include
 bindir := $(PREFIX)/bin
@@ -137,13 +137,13 @@ fsck.cmdline.h fsck.cmdline.c: fsck.ggo Makefile
                < $<
 
 oslfsck: $(fsck_objects)
-       $(CC) -o $@ $(fsck_objects) -lcrypto
+       $(CC) -o $@ $(fsck_objects)
 
 oslfsck.1: oslfsck
        help2man -h --detailed-help -N ./$< > $@
 
 $(realname): $(objects)
-       $(CC) $(LDFLAGS) -o $@ $(objects) -lcrypto
+       $(CC) $(LDFLAGS) -o $@ $(objects)
 
 osl_errors.h: errlist
        echo '/** public error codes of the osl library. */' > $@