I have several modules that I want to install (make install step) using qmake's INSTALLS: INSTALLS = module1 module2 module3. These install from different source folders, to same destination folder tree. Till now all nice and good...
But when running "make install -j 3", sometimes, I was getting: "cp: cannot create directory ‘/my/target/folder/’: File exists
Can I define some dependency between the modules, so module2 is installed only when installing module1 is finished?