Hi

I want to cross-compile a QT project.
And I am accessing the same project folder from different OS over the network.
And this leads to a problem:
All OS are using the same makefile name 'Makefile' and this leads to problems as QT does not re-create that file on the next OS.


Does anyone know how I can specify the makefile name in the .pro file?


I want to get something like this:
mac {
make_name = Makefile_Mac
} else:unix {
make_name = Makefile_Linux
} else {
make_name = Makefile_Win
}


thanks,
dd