Reputation: 13
I'm trying to compile this program but when I try to execute the make
command I get an error: (I'm using Ubuntu in Spanish)
It says that it goes to directory /home, but then it says that "there is no rule to build the objective sub_all. Stop.". Then it exits the directory /home and finally stops, with the "[top] Error 2" shown.
Can anyone help point out what I am doing wrong?
Upvotes: 1
Views: 47
Reputation: 9093
You need to download the entire project, not just the rand
subdirectory.
The Makefile says:
#
# OpenSSL/fips-1.0/rand/Makefile
#
So you will have:
/home/usuario/Desktop/OpenSSL-38/
and rand
will then be at
/home/usuario/Desktop/OpenSSL-38/openssl/fips-1.0/rand/
Upvotes: 1