Qmake (makes makefile)

Note: Qt does this automatically

qmake - makes makefile

  1. First the 'qmake' tool is invoked to generate a Makefile.
  1. 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