The problems is that if pro-file was changed 'qmake' trying to generate new makefile during 'make clean'.
Steps to reproduce this situation:
- qmake test.pro
- touch test.pro && make clean
Here's an minimal example of pro:
TARGET = qmake-runs-on-make-clean
TEMPLATE = app
warning(qmake runs even if it's make clean)
I want to get rid of this behaviour or at least make qmake do not proceed some parts of pro-file on 'make clean'
How can I achieve this ?