Changeset 81


Ignore:
Timestamp:
Apr 15, 2006, 4:57:34 PM (19 years ago)
Author:
dmik
Message:

Fixed: when generating a makefile for a subdirs template, this makefile was internally referred to as $(MAKEFILE) (Makefile by default) instead of the output name specified on the command line.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • TabularUnified trunk/qmake/generators/win32/winmakefile.cpp

    r2 r81  
    103103        t << " \\\n\t\t" << it.current()->target;
    104104    t << endl << endl;
    105     t << "all: $(MAKEFILE) $(SUBTARGETS)" << endl << endl;
     105    t << "all: " << Option::fixPathToTargetOS( fileFixify( Option::output.name() ) )
     106                 << " $(SUBTARGETS)" << endl << endl;
    106107
    107108    for( it.toFirst(); it.current(); ++it) {
Note: See TracChangeset for help on using the changeset viewer.