Jeremy Farrell wrote:
 @$(CC) $(LDFLAGS) $(LIBS) $(OBJ) -o $(BIN)

needs to be

 @$(CC) $(LDFLAGS) $(OBJ) $(LIBS) -o $(BIN)

forget to include needed information.

The order of the libs may need to be reversed also
LIBS = -lssl -lcrypto

______________________________________________________________________
OpenSSL Project                                 http://www.openssl.org
User Support Mailing List                    openssl-users@openssl.org
Automated List Manager                           majord...@openssl.org

Reply via email to