Ignore:
Timestamp:
May 19, 2009, 1:12:24 AM (16 years ago)
Author:
Dmitry A. Kuminov
Message:

Tailored qmake/Makefile.os2-g++.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/qmake/generators/os2/gnumake.h

    r7 r10  
    4040****************************************************************************/
    4141
    42 #ifndef MINGW_MAKE_H
    43 #define MINGW_MAKE_H
     42#ifndef GNUMAKE_H
     43#define GNUMAKE_H
    4444
    4545#include "winmakefile.h"
     
    4747QT_BEGIN_NAMESPACE
    4848
    49 class MingwMakefileGenerator : public Win32MakefileGenerator
     49class GNUMakefileGenerator : public Win32MakefileGenerator
    5050{
    5151public:
    52     MingwMakefileGenerator();
    53     ~MingwMakefileGenerator();
     52    GNUMakefileGenerator();
     53    ~GNUMakefileGenerator();
    5454protected:
    5555    QString escapeDependencyPath(const QString &path) const;
     
    5757private:
    5858    bool isWindowsShell() const;
    59     void writeMingwParts(QTextStream &);
     59    void writeGNUParts(QTextStream &);
    6060    void writeIncPart(QTextStream &t);
    6161    void writeLibsPart(QTextStream &t);
     
    6969
    7070    QStringList &findDependencies(const QString &file);
    71    
     71
    7272    QString preCompHeaderOut;
    7373
     
    8080};
    8181
    82 inline MingwMakefileGenerator::~MingwMakefileGenerator()
     82inline GNUMakefileGenerator::~GNUMakefileGenerator()
    8383{ }
    8484
    8585QT_END_NAMESPACE
    8686
    87 #endif // MINGW_MAKE_H
     87#endif // GNUMAKE_H
Note: See TracChangeset for help on using the changeset viewer.