qmake -help returns
-bash: qmake: command not found
but
./qmake -help returns
Usage: ./qmake [mode] [options] [files]
QMake has two modes, one mode for generating project files based on
some heuristics, ...

the './' is pretty useful

Now, I have this folder with a finance.pro file and
qmake finance.pro from that folder returns
-bash: qmake: command not found
but
./qmake /ventures/finance/finance.pro from the qt bin folder
works fine (actually it fails but for good reason since I have to make a few changes to the .pro file)

So the problem is probably with the .profile file...
Thanks!