Qmake (makes makefile)
Note: Qt does this automatically
qmake - makes makefile
- First the 'qmake' tool is invoked to generate a Makefile.
- Then the 'make' command is invoked to execute the Makefile, which builds the object files and executable program file.
How to make a makefile
qmake projectName.pro
# done!!!
make
# to build of course