I am trying to make software install to a specific directory. I found several ways, but not sure what are the differences between them.
- ./configure --prefix=*
- make install --prefix=*
- make install DESTDIR=*
I am confused about the functions of these three. Do they achieve the same goal? Thanks.