| [2] | 1 | !IF "$(QMAKESPEC)" == "win32-msvc" || "$(QMAKESPEC)" == "win32-msvc.net" || "$(QMAKESPEC)" == "win32-msvc2002" || "$(QMAKESPEC)" == "win32-msvc2003" || "$(QMAKESPEC)" == "win32-msvc2005" || "$(QMAKESPEC)" == "win32-msvc2008" || "$(QMAKESPEC)" == "win32-icc"
|
|---|
| 2 |
|
|---|
| 3 | !if "$(SOURCE_PATH)" == ""
|
|---|
| 4 | SOURCE_PATH = ..
|
|---|
| 5 | !endif
|
|---|
| 6 | !if "$(BUILD_PATH)" == ""
|
|---|
| 7 | BUILD_PATH = ..
|
|---|
| 8 | !endif
|
|---|
| 9 |
|
|---|
| 10 | #
|
|---|
| 11 | # specific stuff for NMake and ICC
|
|---|
| 12 | #
|
|---|
| 13 | !if "$(QMAKESPEC)" == "win32-icc"
|
|---|
| 14 | CXX = icl
|
|---|
| 15 | LINK = link
|
|---|
| 16 | CFLAGS = /Zc:forScope
|
|---|
| 17 | !else
|
|---|
| 18 | CXX = cl
|
|---|
| 19 | LINK = link
|
|---|
| 20 | !endif
|
|---|
| 21 |
|
|---|
| 22 | #
|
|---|
| 23 | # specific stuff for VS2005
|
|---|
| 24 | #
|
|---|
| 25 | !if "$(QMAKESPEC)" == "win32-msvc2005"
|
|---|
| 26 | CFLAGS = /Zc:wchar_t-
|
|---|
| 27 | !endif
|
|---|
| 28 |
|
|---|
| 29 | CFLAGS = -c -Fo$@ \
|
|---|
| 30 | -W3 -nologo -O2 \
|
|---|
| [51] | 31 | -I. -Igenerators -Igenerators\unix -Igenerators\win32 -Igenerators\os2 -Igenerators\mac \
|
|---|
| [2] | 32 | -I$(BUILD_PATH)\include -I$(BUILD_PATH)\include\QtCore \
|
|---|
| 33 | -I$(SOURCE_PATH)\include -I$(SOURCE_PATH)\include\QtCore \
|
|---|
| 34 | -I$(BUILD_PATH)\src\corelib\global \
|
|---|
| 35 | -I$(BUILD_PATH)\include\QtScript \
|
|---|
| 36 | -I$(SOURCE_PATH)\mkspecs\$(QMAKESPEC) \
|
|---|
| 37 | -DQT_NO_TEXTCODEC -DQT_NO_UNICODETABLES -DQT_LITE_COMPONENT -DQT_NODLL -DQT_NO_STL \
|
|---|
| 38 | -DQT_NO_COMPRESS -DUNICODE -DHAVE_QCONFIG_CPP -DQT_BUILD_QMAKE -DQT_NO_THREAD \
|
|---|
| 39 | -DQT_NO_QOBJECT -DQT_NO_GEOM_VARIANT -DQT_NO_DATASTREAM -DQT_NO_PCRE -DQT_BOOTSTRAPPED \
|
|---|
| 40 | $(CFLAGS)
|
|---|
| 41 | CXXFLAGS = $(CFLAGS)
|
|---|
| 42 | LFLAGS =
|
|---|
| 43 | LIBS = ole32.lib advapi32.lib
|
|---|
| 44 | LINKQMAKE = $(LINK) $(LFLAGS) -DEBUG -OUT:qmake.exe $(OBJS) $(QTOBJS) $(LIBS)
|
|---|
| 45 | ADDCLEAN = vc60.pdb vc70.pdb qmake.pdb qmake.ilk
|
|---|
| 46 | !ELSE
|
|---|
| 47 |
|
|---|
| 48 | #
|
|---|
| 49 | # specific stuff for Borland make
|
|---|
| 50 | #
|
|---|
| 51 | !if !$d(BCB)
|
|---|
| 52 | BCB = $(MAKEDIR)\..
|
|---|
| 53 | !endif
|
|---|
| 54 | CXX = bcc32
|
|---|
| 55 | CFLAGS = -c -o$@ \
|
|---|
| 56 | -tWR -w -w-hid -w-use -O1 \
|
|---|
| 57 | -I. -Igenerators -Igenerators\unix -Igenerators\win32 -Igenerators\mac \
|
|---|
| 58 | -I$(BUILD_PATH)\include -I$(BUILD_PATH)\include\QtCore \
|
|---|
| 59 | -I$(SOURCE_PATH)\include -I$(SOURCE_PATH)\include\QtCore \
|
|---|
| 60 | -I$(BUILD_PATH)\src\corelib\global \
|
|---|
| 61 | -I$(SOURCE_PATH)\mkspecs\$(QMAKESPEC) \
|
|---|
| 62 | -DQT_NO_TEXTCODEC -DQT_NO_UNICODETABLES -DQT_LITE_COMPONENT -DQT_NODLL -DQT_NO_STL \
|
|---|
| 63 | -DQT_NO_COMPRESS -DUNICODE -DHAVE_QCONFIG_CPP -DQT_BUILD_QMAKE -DQT_NO_THREAD \
|
|---|
| 64 | -DQT_NO_QOBJECT -DQT_NO_GEOM_VARIANT
|
|---|
| 65 | CXXFLAGS = $(CFLAGS)
|
|---|
| 66 | LFLAGS = -L$(BCB)\lib -c -x -Gn -ap -Tpe c0x32.obj
|
|---|
| 67 | LIBS = import32.lib cw32i.lib
|
|---|
| 68 | LINKQMAKE = ilink32 $(LFLAGS) $(OBJS) $(QTOBJS), qmake.exe,,$(LIBS)
|
|---|
| 69 | ADDCLEAN = qmake.tds
|
|---|
| 70 | !ENDIF
|
|---|
| 71 |
|
|---|
| 72 | #qmake code
|
|---|
| 73 | OBJS = project.obj main.obj makefile.obj unixmake.obj unixmake2.obj mingw_make.obj \
|
|---|
| 74 | option.obj winmakefile.obj projectgenerator.obj property.obj meta.obj \
|
|---|
| 75 | makefiledeps.obj metamakefile.obj xmloutput.obj pbuilder_pbx.obj \
|
|---|
| 76 | borland_bmake.obj msvc_nmake.obj msvc_dsp.obj msvc_vcproj.obj \
|
|---|
| [51] | 77 | msvc_objectmodel.obj gnumake.obj
|
|---|
| [2] | 78 |
|
|---|
| 79 | !IFDEF QMAKE_OPENSOURCE_EDITION
|
|---|
| 80 | CFLAGS = $(CFLAGS) -DQMAKE_OPENSOURCE_EDITION
|
|---|
| 81 | !ENDIF
|
|---|
| 82 |
|
|---|
| 83 | #qt code
|
|---|
| 84 | QTOBJS= \
|
|---|
| 85 | qbitarray.obj \
|
|---|
| 86 | qbuffer.obj \
|
|---|
| 87 | qcryptographichash.obj \
|
|---|
| 88 | qfsfileengine.obj \
|
|---|
| 89 | qfsfileengine_iterator.obj \
|
|---|
| 90 | qbytearray.obj \
|
|---|
| 91 | qvsnprintf.obj \
|
|---|
| 92 | qbytearraymatcher.obj \
|
|---|
| 93 | qdatetime.obj \
|
|---|
| 94 | qdir.obj \
|
|---|
| 95 | qdiriterator.obj \
|
|---|
| 96 | qfile.obj \
|
|---|
| 97 | qtemporaryfile.obj \
|
|---|
| 98 | qabstractfileengine.obj \
|
|---|
| 99 | qfsfileengine_win.obj \
|
|---|
| 100 | qfsfileengine_iterator_win.obj \
|
|---|
| 101 | qfileinfo.obj \
|
|---|
| 102 | qglobal.obj \
|
|---|
| 103 | qhash.obj \
|
|---|
| 104 | qiodevice.obj \
|
|---|
| 105 | qlistdata.obj \
|
|---|
| 106 | qlinkedlist.obj \
|
|---|
| 107 | qlocale.obj \
|
|---|
| 108 | qmalloc.obj \
|
|---|
| 109 | qmap.obj \
|
|---|
| 110 | qregexp.obj \
|
|---|
| 111 | qstring.obj \
|
|---|
| 112 | qstringlist.obj \
|
|---|
| 113 | qtextstream.obj \
|
|---|
| 114 | qdatastream.obj \
|
|---|
| 115 | quuid.obj \
|
|---|
| 116 | qvector.obj \
|
|---|
| 117 | qsettings.obj \
|
|---|
| 118 | qlibraryinfo.obj \
|
|---|
| 119 | qvariant.obj \
|
|---|
| 120 | qurl.obj \
|
|---|
| 121 | qsettings_win.obj \
|
|---|
| 122 | qmetatype.obj \
|
|---|
| 123 | qnumeric.obj \
|
|---|
| 124 | qscriptasm.obj \
|
|---|
| 125 | qscriptast.obj \
|
|---|
| 126 | qscriptastvisitor.obj \
|
|---|
| 127 | qscriptcompiler.obj \
|
|---|
| 128 | qscriptecmaarray.obj \
|
|---|
| 129 | qscriptecmaboolean.obj \
|
|---|
| 130 | qscriptecmacore.obj \
|
|---|
| 131 | qscriptecmadate.obj \
|
|---|
| 132 | qscriptecmafunction.obj \
|
|---|
| 133 | qscriptecmaglobal.obj \
|
|---|
| 134 | qscriptecmamath.obj \
|
|---|
| 135 | qscriptecmanumber.obj \
|
|---|
| 136 | qscriptecmaobject.obj \
|
|---|
| 137 | qscriptecmaregexp.obj \
|
|---|
| 138 | qscriptecmastring.obj \
|
|---|
| 139 | qscriptecmaerror.obj \
|
|---|
| 140 | qscriptcontext_p.obj \
|
|---|
| 141 | qscriptengine.obj \
|
|---|
| 142 | qscriptengine_p.obj \
|
|---|
| 143 | qscriptengineagent.obj \
|
|---|
| 144 | qscriptextenumeration.obj \
|
|---|
| 145 | qscriptextvariant.obj \
|
|---|
| 146 | qscriptcontext.obj \
|
|---|
| 147 | qscriptcontextinfo.obj \
|
|---|
| 148 | qscriptfunction.obj \
|
|---|
| 149 | qscriptgrammar.obj \
|
|---|
| 150 | qscriptlexer.obj \
|
|---|
| 151 | qscriptclassdata.obj \
|
|---|
| 152 | qscriptparser.obj \
|
|---|
| 153 | qscriptprettypretty.obj \
|
|---|
| 154 | qscriptsyntaxchecker.obj \
|
|---|
| 155 | qscriptclass.obj \
|
|---|
| 156 | qscriptclasspropertyiterator.obj \
|
|---|
| 157 | qscriptstring.obj \
|
|---|
| 158 | qscriptvalue.obj \
|
|---|
| 159 | qscriptvalueimpl.obj \
|
|---|
| 160 | qscriptvalueiterator.obj \
|
|---|
| 161 | qscriptvalueiteratorimpl.obj
|
|---|
| 162 |
|
|---|
| 163 |
|
|---|
| 164 | first all: qmake.exe
|
|---|
| 165 |
|
|---|
| 166 | qmake.exe: $(OBJS) $(QTOBJS)
|
|---|
| 167 | $(LINKQMAKE)
|
|---|
| 168 | -copy qmake.exe $(BUILD_PATH)\bin\qmake.exe
|
|---|
| 169 |
|
|---|
| 170 | clean::
|
|---|
| 171 | -del qbitarray.obj
|
|---|
| 172 | -del qbuffer.obj
|
|---|
| 173 | -del qcryptographichash.obj
|
|---|
| 174 | -del qlinkedlist.obj
|
|---|
| 175 | -del qfsfileengine.obj
|
|---|
| 176 | -del qfsfileengine_iterator.obj
|
|---|
| 177 | -del qbytearray.obj
|
|---|
| 178 | -del qvsnprintf.obj
|
|---|
| 179 | -del qbytearraymatcher.obj
|
|---|
| 180 | -del qdatetime.obj
|
|---|
| 181 | -del qdir.obj
|
|---|
| 182 | -del qdiriterator.obj
|
|---|
| 183 | -del qfile.obj
|
|---|
| 184 | -del qtemporaryfile.obj
|
|---|
| 185 | -del qabstractfileengine.obj
|
|---|
| 186 | -del qfsfileengine_win.obj
|
|---|
| 187 | -del qfsfileengine_iterator_win.obj
|
|---|
| 188 | -del qfileinfo.obj
|
|---|
| 189 | -del qglobal.obj
|
|---|
| 190 | -del qhash.obj
|
|---|
| 191 | -del qiodevice.obj
|
|---|
| 192 | -del qlistdata.obj
|
|---|
| 193 | -del qlocale.obj
|
|---|
| 194 | -del qmalloc.obj
|
|---|
| 195 | -del qmap.obj
|
|---|
| 196 | -del qregexp.obj
|
|---|
| 197 | -del qstring.obj
|
|---|
| 198 | -del qstringlist.obj
|
|---|
| 199 | -del qtextstream.obj
|
|---|
| 200 | -del qdatastream.obj
|
|---|
| 201 | -del quuid.obj
|
|---|
| 202 | -del qvector.obj
|
|---|
| 203 | -del qsettings.obj
|
|---|
| 204 | -del qlibraryinfo.obj
|
|---|
| 205 | -del qvariant.obj
|
|---|
| 206 | -del qurl.obj
|
|---|
| 207 | -del qsettings_win.obj
|
|---|
| 208 | -del qmetatype.obj
|
|---|
| 209 | -del project.obj
|
|---|
| 210 | -del main.obj
|
|---|
| 211 | -del makefile.obj
|
|---|
| 212 | -del unixmake.obj
|
|---|
| 213 | -del unixmake2.obj
|
|---|
| 214 | -del mingw_make.obj
|
|---|
| 215 | -del option.obj
|
|---|
| 216 | -del winmakefile.obj
|
|---|
| 217 | -del projectgenerator.obj
|
|---|
| 218 | -del property.obj
|
|---|
| 219 | -del meta.obj
|
|---|
| 220 | -del makefiledeps.obj
|
|---|
| 221 | -del metamakefile.obj
|
|---|
| 222 | -del xmloutput.obj
|
|---|
| 223 | -del borland_bmake.obj
|
|---|
| 224 | -del msvc_nmake.obj
|
|---|
| 225 | -del msvc_dsp.obj
|
|---|
| 226 | -del msvc_vcproj.obj
|
|---|
| 227 | -del msvc_objectmodel.obj
|
|---|
| [51] | 228 | -del gnumake.obj
|
|---|
| [2] | 229 | -del pbuilder_pbx.obj
|
|---|
| 230 | -del qnumeric.obj \
|
|---|
| 231 | -del qscriptasm.obj \
|
|---|
| 232 | -del qscriptast.obj \
|
|---|
| 233 | -del qscriptastvisitor.obj \
|
|---|
| 234 | -del qscriptcompiler.obj \
|
|---|
| 235 | -del qscriptecmaarray.obj \
|
|---|
| 236 | -del qscriptecmaboolean.obj \
|
|---|
| 237 | -del qscriptecmacore.obj \
|
|---|
| 238 | -del qscriptecmadate.obj \
|
|---|
| 239 | -del qscriptecmafunction.obj \
|
|---|
| 240 | -del qscriptecmaglobal.obj \
|
|---|
| 241 | -del qscriptecmamath.obj \
|
|---|
| 242 | -del qscriptecmanumber.obj \
|
|---|
| 243 | -del qscriptecmaobject.obj \
|
|---|
| 244 | -del qscriptecmaregexp.obj \
|
|---|
| 245 | -del qscriptecmastring.obj \
|
|---|
| 246 | -del qscriptecmaerror.obj \
|
|---|
| 247 | -del qscriptcontext_p.obj \
|
|---|
| 248 | -del qscriptengine.obj \
|
|---|
| 249 | -del qscriptengine_p.obj \
|
|---|
| 250 | -del qscriptengineagent.obj \
|
|---|
| 251 | -del qscriptextenumeration.obj \
|
|---|
| 252 | -del qscriptextvariant.obj \
|
|---|
| 253 | -del qscriptcontext.obj \
|
|---|
| 254 | -del qscriptcontextinfo.obj \
|
|---|
| 255 | -del qscriptfunction.obj \
|
|---|
| 256 | -del qscriptgrammar.obj \
|
|---|
| 257 | -del qscriptlexer.obj \
|
|---|
| 258 | -del qscriptclassdata.obj \
|
|---|
| 259 | -del qscriptparser.obj \
|
|---|
| 260 | -del qscriptprettypretty.obj \
|
|---|
| 261 | -del qscriptsyntaxchecker.obj \
|
|---|
| 262 | -del qscriptclass.obj \
|
|---|
| 263 | -del qscriptclasspropertyiterator.obj \
|
|---|
| 264 | -del qscriptstring.obj \
|
|---|
| 265 | -del qscriptvalue.obj \
|
|---|
| 266 | -del qscriptvalueimpl.obj \
|
|---|
| 267 | -del qscriptvalueiterator.obj \
|
|---|
| 268 | -del qscriptvalueiteratorimpl.obj
|
|---|
| 269 | -del vc60.pdb
|
|---|
| 270 | -del vc70.pdb
|
|---|
| 271 | -del qmake.pdb
|
|---|
| 272 | -del qmake.ilk
|
|---|
| 273 | -del qmake.tds
|
|---|
| 274 |
|
|---|
| 275 | distclean:: clean
|
|---|
| 276 | -del qmake
|
|---|
| 277 |
|
|---|
| 278 | .c.obj:
|
|---|
| 279 | $(CXX) $(CFLAGS) $<
|
|---|
| 280 |
|
|---|
| 281 | .cpp.obj:
|
|---|
| 282 | $(CXX) $(CXXFLAGS) $<
|
|---|
| 283 |
|
|---|
| 284 | .cc.obj:
|
|---|
| 285 | $(CXX) $(CXXFLAGS) $<
|
|---|
| 286 |
|
|---|
| 287 | .cxx.obj:
|
|---|
| 288 | $(CXX) $(CXXFLAGS) $<
|
|---|
| 289 |
|
|---|
| 290 | qsettings_win.obj: $(SOURCE_PATH)\src\corelib\io\qsettings_win.cpp
|
|---|
| 291 | $(CXX) $(CXXFLAGS) $(SOURCE_PATH)\src\corelib\io\qsettings_win.cpp
|
|---|
| 292 |
|
|---|
| 293 | qsettings.obj: $(SOURCE_PATH)\src\corelib\io\qsettings.cpp
|
|---|
| 294 | $(CXX) $(CXXFLAGS) $(SOURCE_PATH)\src\corelib\io\qsettings.cpp
|
|---|
| 295 |
|
|---|
| 296 | qlibraryinfo.obj: $(SOURCE_PATH)\src\corelib\global\qlibraryinfo.cpp
|
|---|
| 297 | $(CXX) $(CXXFLAGS) $(SOURCE_PATH)\src\corelib\global\qlibraryinfo.cpp
|
|---|
| 298 |
|
|---|
| 299 | qnumeric.obj: $(SOURCE_PATH)\src\corelib\global\qnumeric.cpp
|
|---|
| 300 | $(CXX) $(CXXFLAGS) $(SOURCE_PATH)\src\corelib\global\qnumeric.cpp
|
|---|
| 301 |
|
|---|
| 302 | qvariant.obj: $(SOURCE_PATH)\src\corelib\kernel\qvariant.cpp
|
|---|
| 303 | $(CXX) $(CXXFLAGS) $(SOURCE_PATH)\src\corelib\kernel\qvariant.cpp
|
|---|
| 304 |
|
|---|
| 305 | qurl.obj: $(SOURCE_PATH)\src\corelib\io\qurl.cpp
|
|---|
| 306 | $(CXX) $(CXXFLAGS) $(SOURCE_PATH)\src\corelib\io\qurl.cpp
|
|---|
| 307 |
|
|---|
| 308 | qtextstream.obj: $(SOURCE_PATH)\src\corelib\io\qtextstream.cpp
|
|---|
| 309 | $(CXX) $(CXXFLAGS) $(SOURCE_PATH)\src\corelib\io\qtextstream.cpp
|
|---|
| 310 |
|
|---|
| 311 | qdatastream.obj: $(SOURCE_PATH)\src\corelib\io\qdatastream.cpp
|
|---|
| 312 | $(CXX) $(CXXFLAGS) $(SOURCE_PATH)\src\corelib\io\qdatastream.cpp
|
|---|
| 313 |
|
|---|
| 314 | qiodevice.obj: $(SOURCE_PATH)\src\corelib\io\qiodevice.cpp
|
|---|
| 315 | $(CXX) $(CXXFLAGS) $(SOURCE_PATH)\src\corelib\io\qiodevice.cpp
|
|---|
| 316 |
|
|---|
| 317 | qmalloc.obj: $(SOURCE_PATH)\src\corelib\global\qmalloc.cpp
|
|---|
| 318 | $(CXX) $(CXXFLAGS) $(SOURCE_PATH)\src\corelib\global\qmalloc.cpp
|
|---|
| 319 |
|
|---|
| 320 | qglobal.obj: $(SOURCE_PATH)\src\corelib\global\qglobal.cpp
|
|---|
| 321 | $(CXX) $(CXXFLAGS) $(SOURCE_PATH)\src\corelib\global\qglobal.cpp
|
|---|
| 322 |
|
|---|
| 323 | qhash.obj: $(SOURCE_PATH)\src\corelib\tools\qhash.cpp
|
|---|
| 324 | $(CXX) $(CXXFLAGS) $(SOURCE_PATH)\src\corelib\tools\qhash.cpp
|
|---|
| 325 |
|
|---|
| 326 | qbytearray.obj: $(SOURCE_PATH)\src\corelib\tools\qbytearray.cpp
|
|---|
| 327 | $(CXX) $(CXXFLAGS) $(SOURCE_PATH)\src\corelib\tools\qbytearray.cpp
|
|---|
| 328 |
|
|---|
| 329 | qcryptographichash.obj: $(SOURCE_PATH)\src\corelib\tools\qcryptographichash.cpp
|
|---|
| 330 | $(CXX) $(CXXFLAGS) $(SOURCE_PATH)\src\corelib\tools\qcryptographichash.cpp
|
|---|
| 331 |
|
|---|
| 332 | qvsnprintf.obj: $(SOURCE_PATH)\src\corelib\tools\qvsnprintf.cpp
|
|---|
| 333 | $(CXX) $(CXXFLAGS) $(SOURCE_PATH)\src\corelib\tools\qvsnprintf.cpp
|
|---|
| 334 |
|
|---|
| 335 | qbytearraymatcher.obj: $(SOURCE_PATH)\src\corelib\tools\qbytearraymatcher.cpp
|
|---|
| 336 | $(CXX) $(CXXFLAGS) $(SOURCE_PATH)\src\corelib\tools\qbytearraymatcher.cpp
|
|---|
| 337 |
|
|---|
| 338 | qchar.obj: $(SOURCE_PATH)\src\corelib\tools\qchar.cpp
|
|---|
| 339 | $(CXX) $(CXXFLAGS) $(SOURCE_PATH)\src\corelib\tools\qchar.cpp
|
|---|
| 340 |
|
|---|
| 341 | qstring.obj: $(SOURCE_PATH)\src\corelib\tools\qstring.cpp
|
|---|
| 342 | $(CXX) $(CXXFLAGS) $(SOURCE_PATH)\src\corelib\tools\qstring.cpp
|
|---|
| 343 |
|
|---|
| 344 | qstringmatcher.obj: $(SOURCE_PATH)\src\corelib\tools\qstringmatcher.cpp
|
|---|
| 345 | $(CXX) $(CXXFLAGS) $(SOURCE_PATH)\src\corelib\tools\qstringmatcher.cpp
|
|---|
| 346 |
|
|---|
| 347 | qlocale.obj: $(SOURCE_PATH)\src\corelib\tools\qlocale.cpp
|
|---|
| 348 | $(CXX) $(CXXFLAGS) $(SOURCE_PATH)\src\corelib\tools\qlocale.cpp
|
|---|
| 349 |
|
|---|
| 350 | quuid.obj: $(SOURCE_PATH)\src\corelib\plugin\quuid.cpp
|
|---|
| 351 | $(CXX) $(CXXFLAGS) $(SOURCE_PATH)\src\corelib\plugin\quuid.cpp
|
|---|
| 352 |
|
|---|
| 353 | qbuffer.obj: $(SOURCE_PATH)\src\corelib\io\qbuffer.cpp
|
|---|
| 354 | $(CXX) $(CXXFLAGS) $(SOURCE_PATH)\src\corelib\io\qbuffer.cpp
|
|---|
| 355 |
|
|---|
| 356 | qlistdata.obj: $(SOURCE_PATH)\src\corelib\tools\qlistdata.cpp
|
|---|
| 357 | $(CXX) $(CXXFLAGS) $(SOURCE_PATH)\src\corelib\tools\qlistdata.cpp
|
|---|
| 358 |
|
|---|
| 359 | qlinkedlist.obj: $(SOURCE_PATH)\src\corelib\tools\qlinkedlist.cpp
|
|---|
| 360 | $(CXX) $(CXXFLAGS) $(SOURCE_PATH)\src\corelib\tools\qlinkedlist.cpp
|
|---|
| 361 |
|
|---|
| 362 | qfile.obj: $(SOURCE_PATH)\src\corelib\io\qfile.cpp
|
|---|
| 363 | $(CXX) $(CXXFLAGS) $(SOURCE_PATH)\src\corelib\io\qfile.cpp
|
|---|
| 364 |
|
|---|
| 365 | qtemporaryfile.obj: $(SOURCE_PATH)\src\corelib\io\qtemporaryfile.cpp
|
|---|
| 366 | $(CXX) $(CXXFLAGS) $(SOURCE_PATH)\src\corelib\io\qtemporaryfile.cpp
|
|---|
| 367 |
|
|---|
| 368 | qfsfileengine_win.obj: $(SOURCE_PATH)\src\corelib\io\qfsfileengine_win.cpp
|
|---|
| 369 | $(CXX) $(CXXFLAGS) $(SOURCE_PATH)\src\corelib\io\qfsfileengine_win.cpp
|
|---|
| 370 |
|
|---|
| 371 | qfsfileengine_iterator_win.obj: $(SOURCE_PATH)\src\corelib\io\qfsfileengine_iterator_win.cpp
|
|---|
| 372 | $(CXX) $(CXXFLAGS) $(SOURCE_PATH)\src\corelib\io\qfsfileengine_iterator_win.cpp
|
|---|
| 373 |
|
|---|
| 374 | qfsfileengine.obj: $(SOURCE_PATH)\src\corelib\io\qfsfileengine.cpp
|
|---|
| 375 | $(CXX) $(CXXFLAGS) $(SOURCE_PATH)\src\corelib\io\qfsfileengine.cpp
|
|---|
| 376 |
|
|---|
| 377 | qfsfileengine_iterator.obj: $(SOURCE_PATH)\src\corelib\io\qfsfileengine_iterator.cpp
|
|---|
| 378 | $(CXX) $(CXXFLAGS) $(SOURCE_PATH)\src\corelib\io\qfsfileengine_iterator.cpp
|
|---|
| 379 |
|
|---|
| 380 | qabstractfileengine.obj: $(SOURCE_PATH)\src\corelib\io\qabstractfileengine.cpp
|
|---|
| 381 | $(CXX) $(CXXFLAGS) $(SOURCE_PATH)\src\corelib\io\qabstractfileengine.cpp
|
|---|
| 382 |
|
|---|
| 383 | qtextcodec.obj: $(SOURCE_PATH)\src\codecs\qtextcodec.cpp
|
|---|
| 384 | $(CXX) $(CXXFLAGS) $(SOURCE_PATH)\src\codecs\qtextcodec.cpp
|
|---|
| 385 |
|
|---|
| 386 | qregexp.obj: $(SOURCE_PATH)\src\corelib\tools\qregexp.cpp
|
|---|
| 387 | $(CXX) $(CXXFLAGS) $(SOURCE_PATH)\src\corelib\tools\qregexp.cpp
|
|---|
| 388 |
|
|---|
| 389 | qvector.obj: $(SOURCE_PATH)\src\corelib\tools\qvector.cpp
|
|---|
| 390 | $(CXX) $(CXXFLAGS) $(SOURCE_PATH)\src\corelib\tools\qvector.cpp
|
|---|
| 391 |
|
|---|
| 392 | qbitarray.obj: $(SOURCE_PATH)\src\corelib\tools\qbitarray.cpp
|
|---|
| 393 | $(CXX) $(CXXFLAGS) $(SOURCE_PATH)\src\corelib\tools\qbitarray.cpp
|
|---|
| 394 |
|
|---|
| 395 | qdir.obj: $(SOURCE_PATH)\src\corelib\io\qdir.cpp
|
|---|
| 396 | $(CXX) $(CXXFLAGS) $(SOURCE_PATH)\src\corelib\io\qdir.cpp
|
|---|
| 397 |
|
|---|
| 398 | qdiriterator.obj: $(SOURCE_PATH)\src\corelib\io\qdiriterator.cpp
|
|---|
| 399 | $(CXX) $(CXXFLAGS) $(SOURCE_PATH)\src\corelib\io\qdiriterator.cpp
|
|---|
| 400 |
|
|---|
| 401 | qmetatype.obj: $(SOURCE_PATH)\src\corelib\kernel\qmetatype.cpp
|
|---|
| 402 | $(CXX) $(CXXFLAGS) $(SOURCE_PATH)\src\corelib\kernel\qmetatype.cpp
|
|---|
| 403 |
|
|---|
| 404 | qfileinfo.obj: $(SOURCE_PATH)\src\corelib\io\qfileinfo.cpp
|
|---|
| 405 | $(CXX) $(CXXFLAGS) $(SOURCE_PATH)\src\corelib\io\qfileinfo.cpp
|
|---|
| 406 |
|
|---|
| 407 | qdatetime.obj: $(SOURCE_PATH)\src\corelib\tools\qdatetime.cpp
|
|---|
| 408 | $(CXX) $(CXXFLAGS) $(SOURCE_PATH)\src\corelib\tools\qdatetime.cpp
|
|---|
| 409 |
|
|---|
| 410 | qstringlist.obj: $(SOURCE_PATH)\src\corelib\tools\qstringlist.cpp
|
|---|
| 411 | $(CXX) $(CXXFLAGS) $(SOURCE_PATH)\src\corelib\tools\qstringlist.cpp
|
|---|
| 412 |
|
|---|
| 413 | qmap.obj: $(SOURCE_PATH)\src\corelib\tools\qmap.cpp
|
|---|
| 414 | $(CXX) $(CXXFLAGS) $(SOURCE_PATH)\src\corelib\tools\qmap.cpp
|
|---|
| 415 |
|
|---|
| 416 | qunicodetables.obj: $(SOURCE_PATH)\src\corelib\tools\qunicodetables.cpp
|
|---|
| 417 | $(CXX) $(CXXFLAGS) $(SOURCE_PATH)\src\corelib\tools\qunicodetables.cpp
|
|---|
| 418 | makefile.obj: $(SOURCE_PATH)/qmake/generators\makefile.cpp
|
|---|
| 419 | $(CXX) $(CXXFLAGS) generators\makefile.cpp
|
|---|
| 420 |
|
|---|
| 421 | unixmake.obj: $(SOURCE_PATH)/qmake/generators\unix\unixmake.cpp
|
|---|
| 422 | $(CXX) $(CXXFLAGS) generators\unix\unixmake.cpp
|
|---|
| 423 |
|
|---|
| 424 | unixmake2.obj: $(SOURCE_PATH)/qmake/generators\unix\unixmake2.cpp
|
|---|
| 425 | $(CXX) $(CXXFLAGS) generators\unix\unixmake2.cpp
|
|---|
| 426 |
|
|---|
| 427 | winmakefile.obj: $(SOURCE_PATH)/qmake/generators/win32/winmakefile.cpp
|
|---|
| 428 | $(CXX) $(CXXFLAGS) generators/win32/winmakefile.cpp
|
|---|
| 429 |
|
|---|
| 430 | borland_bmake.obj: $(SOURCE_PATH)/qmake/generators/win32/borland_bmake.cpp
|
|---|
| 431 | $(CXX) $(CXXFLAGS) generators/win32/borland_bmake.cpp
|
|---|
| 432 |
|
|---|
| 433 | mingw_make.obj: $(SOURCE_PATH)/qmake/generators/win32/mingw_make.cpp
|
|---|
| 434 | $(CXX) $(CXXFLAGS) generators/win32/mingw_make.cpp
|
|---|
| 435 |
|
|---|
| 436 | msvc_nmake.obj: $(SOURCE_PATH)/qmake/generators/win32/msvc_nmake.cpp
|
|---|
| 437 | $(CXX) $(CXXFLAGS) generators/win32/msvc_nmake.cpp
|
|---|
| 438 |
|
|---|
| 439 | msvc_dsp.obj: $(SOURCE_PATH)/qmake/generators/win32/msvc_dsp.cpp
|
|---|
| 440 | $(CXX) $(CXXFLAGS) generators/win32/msvc_dsp.cpp
|
|---|
| 441 |
|
|---|
| 442 | msvc_vcproj.obj: $(SOURCE_PATH)/qmake/generators/win32/msvc_vcproj.cpp
|
|---|
| 443 | $(CXX) $(CXXFLAGS) generators/win32/msvc_vcproj.cpp
|
|---|
| 444 |
|
|---|
| 445 | msvc_objectmodel.obj: $(SOURCE_PATH)/qmake/generators/win32/msvc_objectmodel.cpp
|
|---|
| 446 | $(CXX) $(CXXFLAGS) generators/win32/msvc_objectmodel.cpp
|
|---|
| 447 |
|
|---|
| [51] | 448 | gnumake.obj: $(SOURCE_PATH)/qmake/generators/os2/gnumake.cpp
|
|---|
| 449 | $(CXX) $(CXXFLAGS) generators/os2/gnumake.cpp
|
|---|
| 450 |
|
|---|
| [2] | 451 | md5.obj: $(SOURCE_PATH)\src\3rdparty\md5\md5.cpp
|
|---|
| 452 | $(CXX) $(CXXFLAGS) $(SOURCE_PATH)\src\3rdparty\md5\md5.cpp
|
|---|
| 453 | project.obj: $(SOURCE_PATH)/qmake/project.cpp $(SOURCE_PATH)/qmake/project.h $(SOURCE_PATH)/qmake/option.h
|
|---|
| 454 | $(CXX) $(CXXFLAGS) project.cpp
|
|---|
| 455 |
|
|---|
| 456 | meta.obj: $(SOURCE_PATH)/qmake/meta.cpp $(SOURCE_PATH)/qmake/project.h $(SOURCE_PATH)/qmake/option.h
|
|---|
| 457 | $(CXX) $(CXXFLAGS) meta.cpp
|
|---|
| 458 |
|
|---|
| 459 | main.obj: $(SOURCE_PATH)/qmake/main.cpp $(SOURCE_PATH)/qmake/project.h
|
|---|
| 460 | $(CXX) $(CXXFLAGS) main.cpp
|
|---|
| 461 |
|
|---|
| 462 | option.obj: $(SOURCE_PATH)/qmake/option.cpp $(SOURCE_PATH)/qmake/option.h
|
|---|
| 463 | $(CXX) $(CXXFLAGS) option.cpp
|
|---|
| 464 |
|
|---|
| 465 | property.obj: $(SOURCE_PATH)/qmake/property.cpp $(SOURCE_PATH)/qmake/project.h $(SOURCE_PATH)/qmake/option.h
|
|---|
| 466 | $(CXX) $(CXXFLAGS) property.cpp
|
|---|
| 467 |
|
|---|
| 468 | projectgenerator.obj: $(SOURCE_PATH)/qmake/generators/projectgenerator.cpp
|
|---|
| 469 | $(CXX) $(CXXFLAGS) generators/projectgenerator.cpp
|
|---|
| 470 |
|
|---|
| 471 | pbuilder_pbx.obj: $(SOURCE_PATH)/qmake/generators/mac/pbuilder_pbx.cpp
|
|---|
| 472 | $(CXX) $(CXXFLAGS) generators/mac/pbuilder_pbx.cpp
|
|---|
| 473 |
|
|---|
| 474 | makefiledeps.obj: $(SOURCE_PATH)/qmake/generators/makefiledeps.cpp
|
|---|
| 475 | $(CXX) $(CXXFLAGS) generators/makefiledeps.cpp
|
|---|
| 476 |
|
|---|
| 477 | metamakefile.obj: $(SOURCE_PATH)/qmake/generators/metamakefile.cpp
|
|---|
| 478 | $(CXX) $(CXXFLAGS) generators/metamakefile.cpp
|
|---|
| 479 |
|
|---|
| 480 | xmloutput.obj: $(SOURCE_PATH)/qmake/generators/xmloutput.cpp
|
|---|
| 481 | $(CXX) $(CXXFLAGS) generators/xmloutput.cpp
|
|---|
| 482 |
|
|---|
| 483 | qscriptasm.obj: $(SOURCE_PATH)\src\script\qscriptasm.cpp
|
|---|
| 484 | $(CXX) $(CXXFLAGS) $(SOURCE_PATH)\src\script\qscriptasm.cpp
|
|---|
| 485 |
|
|---|
| 486 | qscriptast.obj: $(SOURCE_PATH)\src\script\qscriptast.cpp
|
|---|
| 487 | $(CXX) $(CXXFLAGS) $(SOURCE_PATH)\src\script\qscriptast.cpp
|
|---|
| 488 |
|
|---|
| 489 | qscriptastvisitor.obj: $(SOURCE_PATH)\src\script\qscriptastvisitor.cpp
|
|---|
| 490 | $(CXX) $(CXXFLAGS) $(SOURCE_PATH)\src\script\qscriptastvisitor.cpp
|
|---|
| 491 |
|
|---|
| 492 | qscriptcompiler.obj: $(SOURCE_PATH)\src\script\qscriptcompiler.cpp
|
|---|
| 493 | $(CXX) $(CXXFLAGS) $(SOURCE_PATH)\src\script\qscriptcompiler.cpp
|
|---|
| 494 |
|
|---|
| 495 | qscriptecmaarray.obj: $(SOURCE_PATH)\src\script\qscriptecmaarray.cpp
|
|---|
| 496 | $(CXX) $(CXXFLAGS) $(SOURCE_PATH)\src\script\qscriptecmaarray.cpp
|
|---|
| 497 |
|
|---|
| 498 | qscriptecmaboolean.obj: $(SOURCE_PATH)\src\script\qscriptecmaboolean.cpp
|
|---|
| 499 | $(CXX) $(CXXFLAGS) $(SOURCE_PATH)\src\script\qscriptecmaboolean.cpp
|
|---|
| 500 |
|
|---|
| 501 | qscriptecmacore.obj: $(SOURCE_PATH)\src\script\qscriptecmacore.cpp
|
|---|
| 502 | $(CXX) $(CXXFLAGS) $(SOURCE_PATH)\src\script\qscriptecmacore.cpp
|
|---|
| 503 |
|
|---|
| 504 | qscriptecmadate.obj: $(SOURCE_PATH)\src\script\qscriptecmadate.cpp
|
|---|
| 505 | $(CXX) $(CXXFLAGS) $(SOURCE_PATH)\src\script\qscriptecmadate.cpp
|
|---|
| 506 |
|
|---|
| 507 | qscriptecmafunction.obj: $(SOURCE_PATH)\src\script\qscriptecmafunction.cpp
|
|---|
| 508 | $(CXX) $(CXXFLAGS) $(SOURCE_PATH)\src\script\qscriptecmafunction.cpp
|
|---|
| 509 |
|
|---|
| 510 | qscriptecmaglobal.obj: $(SOURCE_PATH)\src\script\qscriptecmaglobal.cpp
|
|---|
| 511 | $(CXX) $(CXXFLAGS) $(SOURCE_PATH)\src\script\qscriptecmaglobal.cpp
|
|---|
| 512 |
|
|---|
| 513 | qscriptecmamath.obj: $(SOURCE_PATH)\src\script\qscriptecmamath.cpp
|
|---|
| 514 | $(CXX) $(CXXFLAGS) $(SOURCE_PATH)\src\script\qscriptecmamath.cpp
|
|---|
| 515 |
|
|---|
| 516 | qscriptecmanumber.obj: $(SOURCE_PATH)\src\script\qscriptecmanumber.cpp
|
|---|
| 517 | $(CXX) $(CXXFLAGS) $(SOURCE_PATH)\src\script\qscriptecmanumber.cpp
|
|---|
| 518 |
|
|---|
| 519 | qscriptecmaobject.obj: $(SOURCE_PATH)\src\script\qscriptecmaobject.cpp
|
|---|
| 520 | $(CXX) $(CXXFLAGS) $(SOURCE_PATH)\src\script\qscriptecmaobject.cpp
|
|---|
| 521 |
|
|---|
| 522 | qscriptecmaregexp.obj: $(SOURCE_PATH)\src\script\qscriptecmaregexp.cpp
|
|---|
| 523 | $(CXX) $(CXXFLAGS) $(SOURCE_PATH)\src\script\qscriptecmaregexp.cpp
|
|---|
| 524 |
|
|---|
| 525 | qscriptecmastring.obj: $(SOURCE_PATH)\src\script\qscriptecmastring.cpp
|
|---|
| 526 | $(CXX) $(CXXFLAGS) $(SOURCE_PATH)\src\script\qscriptecmastring.cpp
|
|---|
| 527 |
|
|---|
| 528 | qscriptecmaerror.obj: $(SOURCE_PATH)\src\script\qscriptecmaerror.cpp
|
|---|
| 529 | $(CXX) $(CXXFLAGS) $(SOURCE_PATH)\src\script\qscriptecmaerror.cpp
|
|---|
| 530 |
|
|---|
| 531 | qscriptcontext_p.obj: $(SOURCE_PATH)\src\script\qscriptcontext_p.cpp
|
|---|
| 532 | $(CXX) $(CXXFLAGS) $(SOURCE_PATH)\src\script\qscriptcontext_p.cpp
|
|---|
| 533 |
|
|---|
| 534 | qscriptengine.obj: $(SOURCE_PATH)\src\script\qscriptengine.cpp
|
|---|
| 535 | $(CXX) $(CXXFLAGS) $(SOURCE_PATH)\src\script\qscriptengine.cpp
|
|---|
| 536 |
|
|---|
| 537 | qscriptengine_p.obj: $(SOURCE_PATH)\src\script\qscriptengine_p.cpp
|
|---|
| 538 | $(CXX) $(CXXFLAGS) $(SOURCE_PATH)\src\script\qscriptengine_p.cpp
|
|---|
| 539 |
|
|---|
| 540 | qscriptengineagent.obj: $(SOURCE_PATH)\src\script\qscriptengineagent.cpp
|
|---|
| 541 | $(CXX) $(CXXFLAGS) $(SOURCE_PATH)\src\script\qscriptengineagent.cpp
|
|---|
| 542 |
|
|---|
| 543 | qscriptextenumeration.obj: $(SOURCE_PATH)\src\script\qscriptextenumeration.cpp
|
|---|
| 544 | $(CXX) $(CXXFLAGS) $(SOURCE_PATH)\src\script\qscriptextenumeration.cpp
|
|---|
| 545 |
|
|---|
| 546 | qscriptextvariant.obj: $(SOURCE_PATH)\src\script\qscriptextvariant.cpp
|
|---|
| 547 | $(CXX) $(CXXFLAGS) $(SOURCE_PATH)\src\script\qscriptextvariant.cpp
|
|---|
| 548 |
|
|---|
| 549 | qscriptcontext.obj: $(SOURCE_PATH)\src\script\qscriptcontext.cpp
|
|---|
| 550 | $(CXX) $(CXXFLAGS) $(SOURCE_PATH)\src\script\qscriptcontext.cpp
|
|---|
| 551 |
|
|---|
| 552 | qscriptcontextinfo.obj: $(SOURCE_PATH)\src\script\qscriptcontextinfo.cpp
|
|---|
| 553 | $(CXX) $(CXXFLAGS) $(SOURCE_PATH)\src\script\qscriptcontextinfo.cpp
|
|---|
| 554 |
|
|---|
| 555 | qscriptfunction.obj: $(SOURCE_PATH)\src\script\qscriptfunction.cpp
|
|---|
| 556 | $(CXX) $(CXXFLAGS) $(SOURCE_PATH)\src\script\qscriptfunction.cpp
|
|---|
| 557 |
|
|---|
| 558 | qscriptgrammar.obj: $(SOURCE_PATH)\src\script\qscriptgrammar.cpp
|
|---|
| 559 | $(CXX) $(CXXFLAGS) $(SOURCE_PATH)\src\script\qscriptgrammar.cpp
|
|---|
| 560 |
|
|---|
| 561 | qscriptlexer.obj: $(SOURCE_PATH)\src\script\qscriptlexer.cpp
|
|---|
| 562 | $(CXX) $(CXXFLAGS) $(SOURCE_PATH)\src\script\qscriptlexer.cpp
|
|---|
| 563 |
|
|---|
| 564 | qscriptclassdata.obj: $(SOURCE_PATH)\src\script\qscriptclassdata.cpp
|
|---|
| 565 | $(CXX) $(CXXFLAGS) $(SOURCE_PATH)\src\script\qscriptclassdata.cpp
|
|---|
| 566 |
|
|---|
| 567 | qscriptparser.obj: $(SOURCE_PATH)\src\script\qscriptparser.cpp
|
|---|
| 568 | $(CXX) $(CXXFLAGS) $(SOURCE_PATH)\src\script\qscriptparser.cpp
|
|---|
| 569 |
|
|---|
| 570 | qscriptprettypretty.obj: $(SOURCE_PATH)\src\script\qscriptprettypretty.cpp
|
|---|
| 571 | $(CXX) $(CXXFLAGS) $(SOURCE_PATH)\src\script\qscriptprettypretty.cpp
|
|---|
| 572 |
|
|---|
| 573 | qscriptsyntaxchecker.obj: $(SOURCE_PATH)\src\script\qscriptsyntaxchecker.cpp
|
|---|
| 574 | $(CXX) $(CXXFLAGS) $(SOURCE_PATH)\src\script\qscriptsyntaxchecker.cpp
|
|---|
| 575 |
|
|---|
| 576 | qscriptstring.obj: $(SOURCE_PATH)\src\script\qscriptstring.cpp
|
|---|
| 577 | $(CXX) $(CXXFLAGS) $(SOURCE_PATH)\src\script\qscriptstring.cpp
|
|---|
| 578 |
|
|---|
| 579 | qscriptclass.obj: $(SOURCE_PATH)\src\script\qscriptclass.cpp
|
|---|
| 580 | $(CXX) $(CXXFLAGS) $(SOURCE_PATH)\src\script\qscriptclass.cpp
|
|---|
| 581 |
|
|---|
| 582 | qscriptclasspropertyiterator.obj: $(SOURCE_PATH)\src\script\qscriptclasspropertyiterator.cpp
|
|---|
| 583 | $(CXX) $(CXXFLAGS) $(SOURCE_PATH)\src\script\qscriptclasspropertyiterator.cpp
|
|---|
| 584 |
|
|---|
| 585 | qscriptvalue.obj: $(SOURCE_PATH)\src\script\qscriptvalue.cpp
|
|---|
| 586 | $(CXX) $(CXXFLAGS) $(SOURCE_PATH)\src\script\qscriptvalue.cpp
|
|---|
| 587 |
|
|---|
| 588 | qscriptvalueimpl.obj: $(SOURCE_PATH)\src\script\qscriptvalueimpl.cpp
|
|---|
| 589 | $(CXX) $(CXXFLAGS) $(SOURCE_PATH)\src\script\qscriptvalueimpl.cpp
|
|---|
| 590 |
|
|---|
| 591 | qscriptvalueiterator.obj: $(SOURCE_PATH)\src\script\qscriptvalueiterator.cpp
|
|---|
| 592 | $(CXX) $(CXXFLAGS) $(SOURCE_PATH)\src\script\qscriptvalueiterator.cpp
|
|---|
| 593 |
|
|---|
| 594 | qscriptvalueiteratorimpl.obj: $(SOURCE_PATH)\src\script\qscriptvalueiteratorimpl.cpp
|
|---|
| 595 | $(CXX) $(CXXFLAGS) $(SOURCE_PATH)\src\script\qscriptvalueiteratorimpl.cpp
|
|---|