Make 'nmake qmake' work with the stub (fast) Makefiles

Without this, if you ran 'nmake qmake' or 'jom qmake' in qtbase's
top directory, it would simply tell you that 'qmake' was up to date.
After all, there is a directory called 'qmake' there.

Change-Id: I6cdb405e8106c137ecbab27923e524b924b19c84
Reviewed-by: Marius Storm-Olsen <marius.storm-olsen@nokia.com>
bb10
Thiago Macieira 2012-07-27 15:39:49 +02:00 committed by Qt by Nokia
parent 2f587ee689
commit d9048bef20
1 changed files with 2 additions and 1 deletions

View File

@ -3810,8 +3810,9 @@ void Configure::generateMakefiles()
txt << "\t" << args.join(" ") << "\n";
txt << "\t$(MAKE) -$(MAKEFLAGS) -f " << it->target << "\n";
txt << "first: all\n";
txt << "qmake:\n";
txt << "qmake: FORCE\n";
txt << "\t" << args.join(" ") << "\n";
txt << "FORCE:\n";
}
}
}