./configure will use the default values for everything, and the default value for prefix may be /usr/local on your system.
In other words, typing "./configure" is the same as typing "./configure --prefix=/usr/local"
There isn't a specific time that you use one instead of the other, you would just use the --prefix argument when you want the program to be installed to somewhere other than the default location.
|