-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathMakefile.Release
579 lines (538 loc) · 36.9 KB
/
Makefile.Release
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
#############################################################################
# Makefile for building: Skil1
# Generated by qmake (3.0) (Qt 5.3.2)
# Project: Skil1.pro
# Template: app
#############################################################################
MAKEFILE = Makefile.Release
####### Compiler, tools and options
CC = gcc
CXX = g++
DEFINES = -DUNICODE -DQT_NO_DEBUG -DQT_CORE_LIB
CFLAGS = -pipe -fno-keep-inline-dllexport -O2 -Wall -Wextra $(DEFINES)
CXXFLAGS = -pipe -fno-keep-inline-dllexport -std=c++11 -O2 -frtti -Wall -Wextra -fexceptions -mthreads $(DEFINES)
INCPATH = -I. -I"..\..\..\..\Qt\5.3\mingw482_32\include" -I"..\..\..\..\Qt\5.3\mingw482_32\include\QtCore" -I"release" -I"..\..\..\..\Qt\5.3\mingw482_32\mkspecs\win32-g++"
LINKER = g++
LFLAGS = -Wl,-s -Wl,-subsystem,console -mthreads
LIBS = -LC:/Qt/5.3/mingw482_32/lib -lQt5Core
QMAKE = C:\Qt\5.3\mingw482_32\bin\qmake.exe
IDC = idc
IDL = midl
ZIP = zip -r -9
DEF_FILE =
RES_FILE =
COPY = copy /y
SED = $(QMAKE) -install sed
COPY_FILE = $(COPY)
COPY_DIR = xcopy /s /q /y /i
DEL_FILE = del
DEL_DIR = rmdir
MOVE = move
CHK_DIR_EXISTS= if not exist
MKDIR = mkdir
INSTALL_FILE = $(COPY_FILE)
INSTALL_PROGRAM = $(COPY_FILE)
INSTALL_DIR = $(COPY_DIR)
####### Output directory
OBJECTS_DIR = release
####### Files
SOURCES = main.cpp \
consoleui.cpp \
scientistservice.cpp \
scientist.cpp \
scientistrepository.cpp \
date.cpp \
scientistsort.cpp
OBJECTS = release/main.o \
release/consoleui.o \
release/scientistservice.o \
release/scientist.o \
release/scientistrepository.o \
release/date.o \
release/scientistsort.o
DIST =
QMAKE_TARGET = Skil1
DESTDIR = release\ #avoid trailing-slash linebreak
TARGET = Skil1.exe
DESTDIR_TARGET = release\Skil1.exe
####### Implicit rules
.SUFFIXES: .cpp .cc .cxx .c
.cpp.o:
$(CXX) -c $(CXXFLAGS) $(INCPATH) -o $@ $<
.cc.o:
$(CXX) -c $(CXXFLAGS) $(INCPATH) -o $@ $<
.cxx.o:
$(CXX) -c $(CXXFLAGS) $(INCPATH) -o $@ $<
.c.o:
$(CC) -c $(CFLAGS) $(INCPATH) -o $@ $<
####### Build rules
first: all
all: Makefile.Release $(DESTDIR_TARGET)
$(DESTDIR_TARGET): $(OBJECTS)
$(LINKER) $(LFLAGS) -o $(DESTDIR_TARGET) $(OBJECTS) $(LIBS)
qmake: FORCE
@$(QMAKE) -spec win32-g++ CONFIG+=debug -o Makefile.Release Skil1.pro
qmake_all: FORCE
dist:
$(ZIP) Skil1.zip $(SOURCES) $(DIST) Skil1.pro ..\..\..\..\Qt\5.3\mingw482_32\mkspecs\features\spec_pre.prf ..\..\..\..\Qt\5.3\mingw482_32\mkspecs\qdevice.pri ..\..\..\..\Qt\5.3\mingw482_32\mkspecs\features\device_config.prf ..\..\..\..\Qt\5.3\mingw482_32\mkspecs\common\shell-win32.conf ..\..\..\..\Qt\5.3\mingw482_32\mkspecs\qconfig.pri ..\..\..\..\Qt\5.3\mingw482_32\mkspecs\modules\qt_lib_axbase.pri ..\..\..\..\Qt\5.3\mingw482_32\mkspecs\modules\qt_lib_axbase_private.pri ..\..\..\..\Qt\5.3\mingw482_32\mkspecs\modules\qt_lib_axcontainer.pri ..\..\..\..\Qt\5.3\mingw482_32\mkspecs\modules\qt_lib_axcontainer_private.pri ..\..\..\..\Qt\5.3\mingw482_32\mkspecs\modules\qt_lib_axserver.pri ..\..\..\..\Qt\5.3\mingw482_32\mkspecs\modules\qt_lib_axserver_private.pri ..\..\..\..\Qt\5.3\mingw482_32\mkspecs\modules\qt_lib_bluetooth.pri ..\..\..\..\Qt\5.3\mingw482_32\mkspecs\modules\qt_lib_bluetooth_private.pri ..\..\..\..\Qt\5.3\mingw482_32\mkspecs\modules\qt_lib_bootstrap_private.pri ..\..\..\..\Qt\5.3\mingw482_32\mkspecs\modules\qt_lib_clucene_private.pri ..\..\..\..\Qt\5.3\mingw482_32\mkspecs\modules\qt_lib_concurrent.pri ..\..\..\..\Qt\5.3\mingw482_32\mkspecs\modules\qt_lib_concurrent_private.pri ..\..\..\..\Qt\5.3\mingw482_32\mkspecs\modules\qt_lib_core.pri ..\..\..\..\Qt\5.3\mingw482_32\mkspecs\modules\qt_lib_core_private.pri ..\..\..\..\Qt\5.3\mingw482_32\mkspecs\modules\qt_lib_declarative.pri ..\..\..\..\Qt\5.3\mingw482_32\mkspecs\modules\qt_lib_declarative_private.pri ..\..\..\..\Qt\5.3\mingw482_32\mkspecs\modules\qt_lib_designer.pri ..\..\..\..\Qt\5.3\mingw482_32\mkspecs\modules\qt_lib_designer_private.pri ..\..\..\..\Qt\5.3\mingw482_32\mkspecs\modules\qt_lib_designercomponents_private.pri ..\..\..\..\Qt\5.3\mingw482_32\mkspecs\modules\qt_lib_enginio.pri ..\..\..\..\Qt\5.3\mingw482_32\mkspecs\modules\qt_lib_enginio_private.pri ..\..\..\..\Qt\5.3\mingw482_32\mkspecs\modules\qt_lib_gui.pri ..\..\..\..\Qt\5.3\mingw482_32\mkspecs\modules\qt_lib_gui_private.pri ..\..\..\..\Qt\5.3\mingw482_32\mkspecs\modules\qt_lib_help.pri ..\..\..\..\Qt\5.3\mingw482_32\mkspecs\modules\qt_lib_help_private.pri ..\..\..\..\Qt\5.3\mingw482_32\mkspecs\modules\qt_lib_multimedia.pri ..\..\..\..\Qt\5.3\mingw482_32\mkspecs\modules\qt_lib_multimedia_private.pri ..\..\..\..\Qt\5.3\mingw482_32\mkspecs\modules\qt_lib_multimediawidgets.pri ..\..\..\..\Qt\5.3\mingw482_32\mkspecs\modules\qt_lib_multimediawidgets_private.pri ..\..\..\..\Qt\5.3\mingw482_32\mkspecs\modules\qt_lib_network.pri ..\..\..\..\Qt\5.3\mingw482_32\mkspecs\modules\qt_lib_network_private.pri ..\..\..\..\Qt\5.3\mingw482_32\mkspecs\modules\qt_lib_nfc.pri ..\..\..\..\Qt\5.3\mingw482_32\mkspecs\modules\qt_lib_nfc_private.pri ..\..\..\..\Qt\5.3\mingw482_32\mkspecs\modules\qt_lib_opengl.pri ..\..\..\..\Qt\5.3\mingw482_32\mkspecs\modules\qt_lib_opengl_private.pri ..\..\..\..\Qt\5.3\mingw482_32\mkspecs\modules\qt_lib_openglextensions.pri ..\..\..\..\Qt\5.3\mingw482_32\mkspecs\modules\qt_lib_openglextensions_private.pri ..\..\..\..\Qt\5.3\mingw482_32\mkspecs\modules\qt_lib_platformsupport_private.pri ..\..\..\..\Qt\5.3\mingw482_32\mkspecs\modules\qt_lib_positioning.pri ..\..\..\..\Qt\5.3\mingw482_32\mkspecs\modules\qt_lib_positioning_private.pri ..\..\..\..\Qt\5.3\mingw482_32\mkspecs\modules\qt_lib_printsupport.pri ..\..\..\..\Qt\5.3\mingw482_32\mkspecs\modules\qt_lib_printsupport_private.pri ..\..\..\..\Qt\5.3\mingw482_32\mkspecs\modules\qt_lib_qml.pri ..\..\..\..\Qt\5.3\mingw482_32\mkspecs\modules\qt_lib_qml_private.pri ..\..\..\..\Qt\5.3\mingw482_32\mkspecs\modules\qt_lib_qmldevtools_private.pri ..\..\..\..\Qt\5.3\mingw482_32\mkspecs\modules\qt_lib_qmltest.pri ..\..\..\..\Qt\5.3\mingw482_32\mkspecs\modules\qt_lib_qmltest_private.pri ..\..\..\..\Qt\5.3\mingw482_32\mkspecs\modules\qt_lib_qtmultimediaquicktools_private.pri ..\..\..\..\Qt\5.3\mingw482_32\mkspecs\modules\qt_lib_quick.pri ..\..\..\..\Qt\5.3\mingw482_32\mkspecs\modules\qt_lib_quick_private.pri ..\..\..\..\Qt\5.3\mingw482_32\mkspecs\modules\qt_lib_quickparticles_private.pri ..\..\..\..\Qt\5.3\mingw482_32\mkspecs\modules\qt_lib_quickwidgets.pri ..\..\..\..\Qt\5.3\mingw482_32\mkspecs\modules\qt_lib_quickwidgets_private.pri ..\..\..\..\Qt\5.3\mingw482_32\mkspecs\modules\qt_lib_script.pri ..\..\..\..\Qt\5.3\mingw482_32\mkspecs\modules\qt_lib_script_private.pri ..\..\..\..\Qt\5.3\mingw482_32\mkspecs\modules\qt_lib_scripttools.pri ..\..\..\..\Qt\5.3\mingw482_32\mkspecs\modules\qt_lib_scripttools_private.pri ..\..\..\..\Qt\5.3\mingw482_32\mkspecs\modules\qt_lib_sensors.pri ..\..\..\..\Qt\5.3\mingw482_32\mkspecs\modules\qt_lib_sensors_private.pri ..\..\..\..\Qt\5.3\mingw482_32\mkspecs\modules\qt_lib_serialport.pri ..\..\..\..\Qt\5.3\mingw482_32\mkspecs\modules\qt_lib_serialport_private.pri ..\..\..\..\Qt\5.3\mingw482_32\mkspecs\modules\qt_lib_sql.pri ..\..\..\..\Qt\5.3\mingw482_32\mkspecs\modules\qt_lib_sql_private.pri ..\..\..\..\Qt\5.3\mingw482_32\mkspecs\modules\qt_lib_svg.pri ..\..\..\..\Qt\5.3\mingw482_32\mkspecs\modules\qt_lib_svg_private.pri ..\..\..\..\Qt\5.3\mingw482_32\mkspecs\modules\qt_lib_testlib.pri ..\..\..\..\Qt\5.3\mingw482_32\mkspecs\modules\qt_lib_testlib_private.pri ..\..\..\..\Qt\5.3\mingw482_32\mkspecs\modules\qt_lib_uitools.pri ..\..\..\..\Qt\5.3\mingw482_32\mkspecs\modules\qt_lib_uitools_private.pri ..\..\..\..\Qt\5.3\mingw482_32\mkspecs\modules\qt_lib_webkit.pri ..\..\..\..\Qt\5.3\mingw482_32\mkspecs\modules\qt_lib_webkit_private.pri ..\..\..\..\Qt\5.3\mingw482_32\mkspecs\modules\qt_lib_webkitwidgets.pri ..\..\..\..\Qt\5.3\mingw482_32\mkspecs\modules\qt_lib_webkitwidgets_private.pri ..\..\..\..\Qt\5.3\mingw482_32\mkspecs\modules\qt_lib_websockets.pri ..\..\..\..\Qt\5.3\mingw482_32\mkspecs\modules\qt_lib_websockets_private.pri ..\..\..\..\Qt\5.3\mingw482_32\mkspecs\modules\qt_lib_widgets.pri ..\..\..\..\Qt\5.3\mingw482_32\mkspecs\modules\qt_lib_widgets_private.pri ..\..\..\..\Qt\5.3\mingw482_32\mkspecs\modules\qt_lib_winextras.pri ..\..\..\..\Qt\5.3\mingw482_32\mkspecs\modules\qt_lib_winextras_private.pri ..\..\..\..\Qt\5.3\mingw482_32\mkspecs\modules\qt_lib_xml.pri ..\..\..\..\Qt\5.3\mingw482_32\mkspecs\modules\qt_lib_xml_private.pri ..\..\..\..\Qt\5.3\mingw482_32\mkspecs\modules\qt_lib_xmlpatterns.pri ..\..\..\..\Qt\5.3\mingw482_32\mkspecs\modules\qt_lib_xmlpatterns_private.pri ..\..\..\..\Qt\5.3\mingw482_32\mkspecs\features\qt_functions.prf ..\..\..\..\Qt\5.3\mingw482_32\mkspecs\features\qt_config.prf ..\..\..\..\Qt\5.3\mingw482_32\mkspecs\features\win32\qt_config.prf ..\..\..\..\Qt\5.3\mingw482_32\mkspecs\win32-g++\qmake.conf ..\..\..\..\Qt\5.3\mingw482_32\mkspecs\features\spec_post.prf ..\..\..\..\Qt\5.3\mingw482_32\mkspecs\features\exclusive_builds.prf ..\..\..\..\Qt\5.3\mingw482_32\mkspecs\features\default_pre.prf ..\..\..\..\Qt\5.3\mingw482_32\mkspecs\features\win32\default_pre.prf ..\..\..\..\Qt\5.3\mingw482_32\mkspecs\features\resolve_config.prf ..\..\..\..\Qt\5.3\mingw482_32\mkspecs\features\exclusive_builds_post.prf ..\..\..\..\Qt\5.3\mingw482_32\mkspecs\features\default_post.prf ..\..\..\..\Qt\5.3\mingw482_32\mkspecs\features\build_pass.prf ..\..\..\..\Qt\5.3\mingw482_32\mkspecs\features\win32\console.prf ..\..\..\..\Qt\5.3\mingw482_32\mkspecs\features\win32\rtti.prf ..\..\..\..\Qt\5.3\mingw482_32\mkspecs\features\precompile_header.prf ..\..\..\..\Qt\5.3\mingw482_32\mkspecs\features\warn_on.prf ..\..\..\..\Qt\5.3\mingw482_32\mkspecs\features\qt.prf ..\..\..\..\Qt\5.3\mingw482_32\mkspecs\features\resources.prf ..\..\..\..\Qt\5.3\mingw482_32\mkspecs\features\moc.prf ..\..\..\..\Qt\5.3\mingw482_32\mkspecs\features\testcase_targets.prf ..\..\..\..\Qt\5.3\mingw482_32\mkspecs\features\exceptions.prf ..\..\..\..\Qt\5.3\mingw482_32\mkspecs\features\yacc.prf ..\..\..\..\Qt\5.3\mingw482_32\mkspecs\features\lex.prf Skil1.pro C:/Qt/5.3/mingw482_32/lib/Qt5Core.prl NO_PCH_SOURCES RESOURCES HEADERS SOURCES OBJECTIVE_SOURCES YACCSOURCES YACCSOURCES LEXSOURCES
clean: compiler_clean
-$(DEL_FILE) release\main.o release\consoleui.o release\scientistservice.o release\scientist.o release\scientistrepository.o release\date.o release\scientistsort.o
distclean: clean
-$(DEL_FILE) $(DESTDIR_TARGET)
-$(DEL_FILE) Makefile.Release
mocclean: compiler_moc_header_clean compiler_moc_source_clean
mocables: compiler_moc_header_make_all compiler_moc_source_make_all
check: first
compiler_no_pch_compiler_make_all:
compiler_no_pch_compiler_clean:
compiler_rcc_make_all:
compiler_rcc_clean:
compiler_moc_header_make_all:
compiler_moc_header_clean:
compiler_moc_source_make_all:
compiler_moc_source_clean:
compiler_yacc_decl_make_all:
compiler_yacc_decl_clean:
compiler_yacc_impl_make_all:
compiler_yacc_impl_clean:
compiler_lex_make_all:
compiler_lex_clean:
compiler_clean:
####### Compile
release/main.o: main.cpp ../../../../Qt/5.3/mingw482_32/include/QtCore/QCoreApplication \
../../../../Qt/5.3/mingw482_32/include/QtCore/qcoreapplication.h \
../../../../Qt/5.3/mingw482_32/include/QtCore/qglobal.h \
../../../../Qt/5.3/mingw482_32/include/QtCore/qconfig.h \
../../../../Qt/5.3/mingw482_32/include/QtCore/qfeatures.h \
../../../../Qt/5.3/mingw482_32/include/QtCore/qsystemdetection.h \
../../../../Qt/5.3/mingw482_32/include/QtCore/qprocessordetection.h \
../../../../Qt/5.3/mingw482_32/include/QtCore/qcompilerdetection.h \
../../../../Qt/5.3/mingw482_32/include/QtCore/qtypeinfo.h \
../../../../Qt/5.3/mingw482_32/include/QtCore/qtypetraits.h \
../../../../Qt/5.3/mingw482_32/include/QtCore/qsysinfo.h \
../../../../Qt/5.3/mingw482_32/include/QtCore/qlogging.h \
../../../../Qt/5.3/mingw482_32/include/QtCore/qflags.h \
../../../../Qt/5.3/mingw482_32/include/QtCore/qatomic.h \
../../../../Qt/5.3/mingw482_32/include/QtCore/qbasicatomic.h \
../../../../Qt/5.3/mingw482_32/include/QtCore/qatomic_bootstrap.h \
../../../../Qt/5.3/mingw482_32/include/QtCore/qgenericatomic.h \
../../../../Qt/5.3/mingw482_32/include/QtCore/qatomic_msvc.h \
../../../../Qt/5.3/mingw482_32/include/QtCore/qatomic_armv7.h \
../../../../Qt/5.3/mingw482_32/include/QtCore/qatomic_armv6.h \
../../../../Qt/5.3/mingw482_32/include/QtCore/qatomic_armv5.h \
../../../../Qt/5.3/mingw482_32/include/QtCore/qatomic_ia64.h \
../../../../Qt/5.3/mingw482_32/include/QtCore/qatomic_mips.h \
../../../../Qt/5.3/mingw482_32/include/QtCore/qatomic_x86.h \
../../../../Qt/5.3/mingw482_32/include/QtCore/qatomic_cxx11.h \
../../../../Qt/5.3/mingw482_32/include/QtCore/qatomic_gcc.h \
../../../../Qt/5.3/mingw482_32/include/QtCore/qatomic_unix.h \
../../../../Qt/5.3/mingw482_32/include/QtCore/qglobalstatic.h \
../../../../Qt/5.3/mingw482_32/include/QtCore/qmutex.h \
../../../../Qt/5.3/mingw482_32/include/QtCore/qnumeric.h \
../../../../Qt/5.3/mingw482_32/include/QtCore/qstring.h \
../../../../Qt/5.3/mingw482_32/include/QtCore/qchar.h \
../../../../Qt/5.3/mingw482_32/include/QtCore/qbytearray.h \
../../../../Qt/5.3/mingw482_32/include/QtCore/qrefcount.h \
../../../../Qt/5.3/mingw482_32/include/QtCore/qnamespace.h \
../../../../Qt/5.3/mingw482_32/include/QtCore/qarraydata.h \
../../../../Qt/5.3/mingw482_32/include/QtCore/qstringbuilder.h \
../../../../Qt/5.3/mingw482_32/include/QtCore/qobject.h \
../../../../Qt/5.3/mingw482_32/include/QtCore/qobjectdefs.h \
../../../../Qt/5.3/mingw482_32/include/QtCore/qobjectdefs_impl.h \
../../../../Qt/5.3/mingw482_32/include/QtCore/qlist.h \
../../../../Qt/5.3/mingw482_32/include/QtCore/qalgorithms.h \
../../../../Qt/5.3/mingw482_32/include/QtCore/qiterator.h \
../../../../Qt/5.3/mingw482_32/include/QtCore/qcoreevent.h \
../../../../Qt/5.3/mingw482_32/include/QtCore/qscopedpointer.h \
../../../../Qt/5.3/mingw482_32/include/QtCore/qmetatype.h \
../../../../Qt/5.3/mingw482_32/include/QtCore/qvarlengtharray.h \
../../../../Qt/5.3/mingw482_32/include/QtCore/qcontainerfwd.h \
../../../../Qt/5.3/mingw482_32/include/QtCore/qisenum.h \
../../../../Qt/5.3/mingw482_32/include/QtCore/qobject_impl.h \
../../../../Qt/5.3/mingw482_32/include/QtCore/qeventloop.h \
consoleui.h \
scientistservice.h \
scientistrepository.h \
scientist.h \
date.h \
../../../../Qt/5.3/mingw482_32/include/QtCore/QDate \
../../../../Qt/5.3/mingw482_32/include/QtCore/qdatetime.h \
../../../../Qt/5.3/mingw482_32/include/QtCore/qsharedpointer.h \
../../../../Qt/5.3/mingw482_32/include/QtCore/qshareddata.h \
../../../../Qt/5.3/mingw482_32/include/QtCore/qsharedpointer_impl.h \
../../../../Qt/5.3/mingw482_32/include/QtCore/qhash.h \
../../../../Qt/5.3/mingw482_32/include/QtCore/qpair.h \
../../../../Qt/5.3/mingw482_32/include/QtCore/QString \
scientistsort.h \
utils.h
$(CXX) -c $(CXXFLAGS) $(INCPATH) -o release\main.o main.cpp
release/consoleui.o: consoleui.cpp consoleui.h \
scientistservice.h \
scientistrepository.h \
scientist.h \
date.h \
../../../../Qt/5.3/mingw482_32/include/QtCore/QDate \
../../../../Qt/5.3/mingw482_32/include/QtCore/qdatetime.h \
../../../../Qt/5.3/mingw482_32/include/QtCore/qstring.h \
../../../../Qt/5.3/mingw482_32/include/QtCore/qchar.h \
../../../../Qt/5.3/mingw482_32/include/QtCore/qglobal.h \
../../../../Qt/5.3/mingw482_32/include/QtCore/qconfig.h \
../../../../Qt/5.3/mingw482_32/include/QtCore/qfeatures.h \
../../../../Qt/5.3/mingw482_32/include/QtCore/qsystemdetection.h \
../../../../Qt/5.3/mingw482_32/include/QtCore/qprocessordetection.h \
../../../../Qt/5.3/mingw482_32/include/QtCore/qcompilerdetection.h \
../../../../Qt/5.3/mingw482_32/include/QtCore/qtypeinfo.h \
../../../../Qt/5.3/mingw482_32/include/QtCore/qtypetraits.h \
../../../../Qt/5.3/mingw482_32/include/QtCore/qsysinfo.h \
../../../../Qt/5.3/mingw482_32/include/QtCore/qlogging.h \
../../../../Qt/5.3/mingw482_32/include/QtCore/qflags.h \
../../../../Qt/5.3/mingw482_32/include/QtCore/qatomic.h \
../../../../Qt/5.3/mingw482_32/include/QtCore/qbasicatomic.h \
../../../../Qt/5.3/mingw482_32/include/QtCore/qatomic_bootstrap.h \
../../../../Qt/5.3/mingw482_32/include/QtCore/qgenericatomic.h \
../../../../Qt/5.3/mingw482_32/include/QtCore/qatomic_msvc.h \
../../../../Qt/5.3/mingw482_32/include/QtCore/qatomic_armv7.h \
../../../../Qt/5.3/mingw482_32/include/QtCore/qatomic_armv6.h \
../../../../Qt/5.3/mingw482_32/include/QtCore/qatomic_armv5.h \
../../../../Qt/5.3/mingw482_32/include/QtCore/qatomic_ia64.h \
../../../../Qt/5.3/mingw482_32/include/QtCore/qatomic_mips.h \
../../../../Qt/5.3/mingw482_32/include/QtCore/qatomic_x86.h \
../../../../Qt/5.3/mingw482_32/include/QtCore/qatomic_cxx11.h \
../../../../Qt/5.3/mingw482_32/include/QtCore/qatomic_gcc.h \
../../../../Qt/5.3/mingw482_32/include/QtCore/qatomic_unix.h \
../../../../Qt/5.3/mingw482_32/include/QtCore/qglobalstatic.h \
../../../../Qt/5.3/mingw482_32/include/QtCore/qmutex.h \
../../../../Qt/5.3/mingw482_32/include/QtCore/qnumeric.h \
../../../../Qt/5.3/mingw482_32/include/QtCore/qbytearray.h \
../../../../Qt/5.3/mingw482_32/include/QtCore/qrefcount.h \
../../../../Qt/5.3/mingw482_32/include/QtCore/qnamespace.h \
../../../../Qt/5.3/mingw482_32/include/QtCore/qarraydata.h \
../../../../Qt/5.3/mingw482_32/include/QtCore/qstringbuilder.h \
../../../../Qt/5.3/mingw482_32/include/QtCore/qsharedpointer.h \
../../../../Qt/5.3/mingw482_32/include/QtCore/qshareddata.h \
../../../../Qt/5.3/mingw482_32/include/QtCore/qsharedpointer_impl.h \
../../../../Qt/5.3/mingw482_32/include/QtCore/qobject.h \
../../../../Qt/5.3/mingw482_32/include/QtCore/qobjectdefs.h \
../../../../Qt/5.3/mingw482_32/include/QtCore/qobjectdefs_impl.h \
../../../../Qt/5.3/mingw482_32/include/QtCore/qlist.h \
../../../../Qt/5.3/mingw482_32/include/QtCore/qalgorithms.h \
../../../../Qt/5.3/mingw482_32/include/QtCore/qiterator.h \
../../../../Qt/5.3/mingw482_32/include/QtCore/qcoreevent.h \
../../../../Qt/5.3/mingw482_32/include/QtCore/qscopedpointer.h \
../../../../Qt/5.3/mingw482_32/include/QtCore/qmetatype.h \
../../../../Qt/5.3/mingw482_32/include/QtCore/qvarlengtharray.h \
../../../../Qt/5.3/mingw482_32/include/QtCore/qcontainerfwd.h \
../../../../Qt/5.3/mingw482_32/include/QtCore/qisenum.h \
../../../../Qt/5.3/mingw482_32/include/QtCore/qobject_impl.h \
../../../../Qt/5.3/mingw482_32/include/QtCore/qhash.h \
../../../../Qt/5.3/mingw482_32/include/QtCore/qpair.h \
../../../../Qt/5.3/mingw482_32/include/QtCore/QString \
scientistsort.h \
utils.h
$(CXX) -c $(CXXFLAGS) $(INCPATH) -o release\consoleui.o consoleui.cpp
release/scientistservice.o: scientistservice.cpp scientistservice.h \
scientistrepository.h \
scientist.h \
date.h \
../../../../Qt/5.3/mingw482_32/include/QtCore/QDate \
../../../../Qt/5.3/mingw482_32/include/QtCore/qdatetime.h \
../../../../Qt/5.3/mingw482_32/include/QtCore/qstring.h \
../../../../Qt/5.3/mingw482_32/include/QtCore/qchar.h \
../../../../Qt/5.3/mingw482_32/include/QtCore/qglobal.h \
../../../../Qt/5.3/mingw482_32/include/QtCore/qconfig.h \
../../../../Qt/5.3/mingw482_32/include/QtCore/qfeatures.h \
../../../../Qt/5.3/mingw482_32/include/QtCore/qsystemdetection.h \
../../../../Qt/5.3/mingw482_32/include/QtCore/qprocessordetection.h \
../../../../Qt/5.3/mingw482_32/include/QtCore/qcompilerdetection.h \
../../../../Qt/5.3/mingw482_32/include/QtCore/qtypeinfo.h \
../../../../Qt/5.3/mingw482_32/include/QtCore/qtypetraits.h \
../../../../Qt/5.3/mingw482_32/include/QtCore/qsysinfo.h \
../../../../Qt/5.3/mingw482_32/include/QtCore/qlogging.h \
../../../../Qt/5.3/mingw482_32/include/QtCore/qflags.h \
../../../../Qt/5.3/mingw482_32/include/QtCore/qatomic.h \
../../../../Qt/5.3/mingw482_32/include/QtCore/qbasicatomic.h \
../../../../Qt/5.3/mingw482_32/include/QtCore/qatomic_bootstrap.h \
../../../../Qt/5.3/mingw482_32/include/QtCore/qgenericatomic.h \
../../../../Qt/5.3/mingw482_32/include/QtCore/qatomic_msvc.h \
../../../../Qt/5.3/mingw482_32/include/QtCore/qatomic_armv7.h \
../../../../Qt/5.3/mingw482_32/include/QtCore/qatomic_armv6.h \
../../../../Qt/5.3/mingw482_32/include/QtCore/qatomic_armv5.h \
../../../../Qt/5.3/mingw482_32/include/QtCore/qatomic_ia64.h \
../../../../Qt/5.3/mingw482_32/include/QtCore/qatomic_mips.h \
../../../../Qt/5.3/mingw482_32/include/QtCore/qatomic_x86.h \
../../../../Qt/5.3/mingw482_32/include/QtCore/qatomic_cxx11.h \
../../../../Qt/5.3/mingw482_32/include/QtCore/qatomic_gcc.h \
../../../../Qt/5.3/mingw482_32/include/QtCore/qatomic_unix.h \
../../../../Qt/5.3/mingw482_32/include/QtCore/qglobalstatic.h \
../../../../Qt/5.3/mingw482_32/include/QtCore/qmutex.h \
../../../../Qt/5.3/mingw482_32/include/QtCore/qnumeric.h \
../../../../Qt/5.3/mingw482_32/include/QtCore/qbytearray.h \
../../../../Qt/5.3/mingw482_32/include/QtCore/qrefcount.h \
../../../../Qt/5.3/mingw482_32/include/QtCore/qnamespace.h \
../../../../Qt/5.3/mingw482_32/include/QtCore/qarraydata.h \
../../../../Qt/5.3/mingw482_32/include/QtCore/qstringbuilder.h \
../../../../Qt/5.3/mingw482_32/include/QtCore/qsharedpointer.h \
../../../../Qt/5.3/mingw482_32/include/QtCore/qshareddata.h \
../../../../Qt/5.3/mingw482_32/include/QtCore/qsharedpointer_impl.h \
../../../../Qt/5.3/mingw482_32/include/QtCore/qobject.h \
../../../../Qt/5.3/mingw482_32/include/QtCore/qobjectdefs.h \
../../../../Qt/5.3/mingw482_32/include/QtCore/qobjectdefs_impl.h \
../../../../Qt/5.3/mingw482_32/include/QtCore/qlist.h \
../../../../Qt/5.3/mingw482_32/include/QtCore/qalgorithms.h \
../../../../Qt/5.3/mingw482_32/include/QtCore/qiterator.h \
../../../../Qt/5.3/mingw482_32/include/QtCore/qcoreevent.h \
../../../../Qt/5.3/mingw482_32/include/QtCore/qscopedpointer.h \
../../../../Qt/5.3/mingw482_32/include/QtCore/qmetatype.h \
../../../../Qt/5.3/mingw482_32/include/QtCore/qvarlengtharray.h \
../../../../Qt/5.3/mingw482_32/include/QtCore/qcontainerfwd.h \
../../../../Qt/5.3/mingw482_32/include/QtCore/qisenum.h \
../../../../Qt/5.3/mingw482_32/include/QtCore/qobject_impl.h \
../../../../Qt/5.3/mingw482_32/include/QtCore/qhash.h \
../../../../Qt/5.3/mingw482_32/include/QtCore/qpair.h \
../../../../Qt/5.3/mingw482_32/include/QtCore/QString \
scientistsort.h \
utils.h
$(CXX) -c $(CXXFLAGS) $(INCPATH) -o release\scientistservice.o scientistservice.cpp
release/scientist.o: scientist.cpp scientist.h \
date.h \
../../../../Qt/5.3/mingw482_32/include/QtCore/QDate \
../../../../Qt/5.3/mingw482_32/include/QtCore/qdatetime.h \
../../../../Qt/5.3/mingw482_32/include/QtCore/qstring.h \
../../../../Qt/5.3/mingw482_32/include/QtCore/qchar.h \
../../../../Qt/5.3/mingw482_32/include/QtCore/qglobal.h \
../../../../Qt/5.3/mingw482_32/include/QtCore/qconfig.h \
../../../../Qt/5.3/mingw482_32/include/QtCore/qfeatures.h \
../../../../Qt/5.3/mingw482_32/include/QtCore/qsystemdetection.h \
../../../../Qt/5.3/mingw482_32/include/QtCore/qprocessordetection.h \
../../../../Qt/5.3/mingw482_32/include/QtCore/qcompilerdetection.h \
../../../../Qt/5.3/mingw482_32/include/QtCore/qtypeinfo.h \
../../../../Qt/5.3/mingw482_32/include/QtCore/qtypetraits.h \
../../../../Qt/5.3/mingw482_32/include/QtCore/qsysinfo.h \
../../../../Qt/5.3/mingw482_32/include/QtCore/qlogging.h \
../../../../Qt/5.3/mingw482_32/include/QtCore/qflags.h \
../../../../Qt/5.3/mingw482_32/include/QtCore/qatomic.h \
../../../../Qt/5.3/mingw482_32/include/QtCore/qbasicatomic.h \
../../../../Qt/5.3/mingw482_32/include/QtCore/qatomic_bootstrap.h \
../../../../Qt/5.3/mingw482_32/include/QtCore/qgenericatomic.h \
../../../../Qt/5.3/mingw482_32/include/QtCore/qatomic_msvc.h \
../../../../Qt/5.3/mingw482_32/include/QtCore/qatomic_armv7.h \
../../../../Qt/5.3/mingw482_32/include/QtCore/qatomic_armv6.h \
../../../../Qt/5.3/mingw482_32/include/QtCore/qatomic_armv5.h \
../../../../Qt/5.3/mingw482_32/include/QtCore/qatomic_ia64.h \
../../../../Qt/5.3/mingw482_32/include/QtCore/qatomic_mips.h \
../../../../Qt/5.3/mingw482_32/include/QtCore/qatomic_x86.h \
../../../../Qt/5.3/mingw482_32/include/QtCore/qatomic_cxx11.h \
../../../../Qt/5.3/mingw482_32/include/QtCore/qatomic_gcc.h \
../../../../Qt/5.3/mingw482_32/include/QtCore/qatomic_unix.h \
../../../../Qt/5.3/mingw482_32/include/QtCore/qglobalstatic.h \
../../../../Qt/5.3/mingw482_32/include/QtCore/qmutex.h \
../../../../Qt/5.3/mingw482_32/include/QtCore/qnumeric.h \
../../../../Qt/5.3/mingw482_32/include/QtCore/qbytearray.h \
../../../../Qt/5.3/mingw482_32/include/QtCore/qrefcount.h \
../../../../Qt/5.3/mingw482_32/include/QtCore/qnamespace.h \
../../../../Qt/5.3/mingw482_32/include/QtCore/qarraydata.h \
../../../../Qt/5.3/mingw482_32/include/QtCore/qstringbuilder.h \
../../../../Qt/5.3/mingw482_32/include/QtCore/qsharedpointer.h \
../../../../Qt/5.3/mingw482_32/include/QtCore/qshareddata.h \
../../../../Qt/5.3/mingw482_32/include/QtCore/qsharedpointer_impl.h \
../../../../Qt/5.3/mingw482_32/include/QtCore/qobject.h \
../../../../Qt/5.3/mingw482_32/include/QtCore/qobjectdefs.h \
../../../../Qt/5.3/mingw482_32/include/QtCore/qobjectdefs_impl.h \
../../../../Qt/5.3/mingw482_32/include/QtCore/qlist.h \
../../../../Qt/5.3/mingw482_32/include/QtCore/qalgorithms.h \
../../../../Qt/5.3/mingw482_32/include/QtCore/qiterator.h \
../../../../Qt/5.3/mingw482_32/include/QtCore/qcoreevent.h \
../../../../Qt/5.3/mingw482_32/include/QtCore/qscopedpointer.h \
../../../../Qt/5.3/mingw482_32/include/QtCore/qmetatype.h \
../../../../Qt/5.3/mingw482_32/include/QtCore/qvarlengtharray.h \
../../../../Qt/5.3/mingw482_32/include/QtCore/qcontainerfwd.h \
../../../../Qt/5.3/mingw482_32/include/QtCore/qisenum.h \
../../../../Qt/5.3/mingw482_32/include/QtCore/qobject_impl.h \
../../../../Qt/5.3/mingw482_32/include/QtCore/qhash.h \
../../../../Qt/5.3/mingw482_32/include/QtCore/qpair.h \
../../../../Qt/5.3/mingw482_32/include/QtCore/QString
$(CXX) -c $(CXXFLAGS) $(INCPATH) -o release\scientist.o scientist.cpp
release/scientistrepository.o: scientistrepository.cpp scientistrepository.h \
scientist.h \
date.h \
../../../../Qt/5.3/mingw482_32/include/QtCore/QDate \
../../../../Qt/5.3/mingw482_32/include/QtCore/qdatetime.h \
../../../../Qt/5.3/mingw482_32/include/QtCore/qstring.h \
../../../../Qt/5.3/mingw482_32/include/QtCore/qchar.h \
../../../../Qt/5.3/mingw482_32/include/QtCore/qglobal.h \
../../../../Qt/5.3/mingw482_32/include/QtCore/qconfig.h \
../../../../Qt/5.3/mingw482_32/include/QtCore/qfeatures.h \
../../../../Qt/5.3/mingw482_32/include/QtCore/qsystemdetection.h \
../../../../Qt/5.3/mingw482_32/include/QtCore/qprocessordetection.h \
../../../../Qt/5.3/mingw482_32/include/QtCore/qcompilerdetection.h \
../../../../Qt/5.3/mingw482_32/include/QtCore/qtypeinfo.h \
../../../../Qt/5.3/mingw482_32/include/QtCore/qtypetraits.h \
../../../../Qt/5.3/mingw482_32/include/QtCore/qsysinfo.h \
../../../../Qt/5.3/mingw482_32/include/QtCore/qlogging.h \
../../../../Qt/5.3/mingw482_32/include/QtCore/qflags.h \
../../../../Qt/5.3/mingw482_32/include/QtCore/qatomic.h \
../../../../Qt/5.3/mingw482_32/include/QtCore/qbasicatomic.h \
../../../../Qt/5.3/mingw482_32/include/QtCore/qatomic_bootstrap.h \
../../../../Qt/5.3/mingw482_32/include/QtCore/qgenericatomic.h \
../../../../Qt/5.3/mingw482_32/include/QtCore/qatomic_msvc.h \
../../../../Qt/5.3/mingw482_32/include/QtCore/qatomic_armv7.h \
../../../../Qt/5.3/mingw482_32/include/QtCore/qatomic_armv6.h \
../../../../Qt/5.3/mingw482_32/include/QtCore/qatomic_armv5.h \
../../../../Qt/5.3/mingw482_32/include/QtCore/qatomic_ia64.h \
../../../../Qt/5.3/mingw482_32/include/QtCore/qatomic_mips.h \
../../../../Qt/5.3/mingw482_32/include/QtCore/qatomic_x86.h \
../../../../Qt/5.3/mingw482_32/include/QtCore/qatomic_cxx11.h \
../../../../Qt/5.3/mingw482_32/include/QtCore/qatomic_gcc.h \
../../../../Qt/5.3/mingw482_32/include/QtCore/qatomic_unix.h \
../../../../Qt/5.3/mingw482_32/include/QtCore/qglobalstatic.h \
../../../../Qt/5.3/mingw482_32/include/QtCore/qmutex.h \
../../../../Qt/5.3/mingw482_32/include/QtCore/qnumeric.h \
../../../../Qt/5.3/mingw482_32/include/QtCore/qbytearray.h \
../../../../Qt/5.3/mingw482_32/include/QtCore/qrefcount.h \
../../../../Qt/5.3/mingw482_32/include/QtCore/qnamespace.h \
../../../../Qt/5.3/mingw482_32/include/QtCore/qarraydata.h \
../../../../Qt/5.3/mingw482_32/include/QtCore/qstringbuilder.h \
../../../../Qt/5.3/mingw482_32/include/QtCore/qsharedpointer.h \
../../../../Qt/5.3/mingw482_32/include/QtCore/qshareddata.h \
../../../../Qt/5.3/mingw482_32/include/QtCore/qsharedpointer_impl.h \
../../../../Qt/5.3/mingw482_32/include/QtCore/qobject.h \
../../../../Qt/5.3/mingw482_32/include/QtCore/qobjectdefs.h \
../../../../Qt/5.3/mingw482_32/include/QtCore/qobjectdefs_impl.h \
../../../../Qt/5.3/mingw482_32/include/QtCore/qlist.h \
../../../../Qt/5.3/mingw482_32/include/QtCore/qalgorithms.h \
../../../../Qt/5.3/mingw482_32/include/QtCore/qiterator.h \
../../../../Qt/5.3/mingw482_32/include/QtCore/qcoreevent.h \
../../../../Qt/5.3/mingw482_32/include/QtCore/qscopedpointer.h \
../../../../Qt/5.3/mingw482_32/include/QtCore/qmetatype.h \
../../../../Qt/5.3/mingw482_32/include/QtCore/qvarlengtharray.h \
../../../../Qt/5.3/mingw482_32/include/QtCore/qcontainerfwd.h \
../../../../Qt/5.3/mingw482_32/include/QtCore/qisenum.h \
../../../../Qt/5.3/mingw482_32/include/QtCore/qobject_impl.h \
../../../../Qt/5.3/mingw482_32/include/QtCore/qhash.h \
../../../../Qt/5.3/mingw482_32/include/QtCore/qpair.h \
../../../../Qt/5.3/mingw482_32/include/QtCore/QString \
scientistsort.h \
utils.h
$(CXX) -c $(CXXFLAGS) $(INCPATH) -o release\scientistrepository.o scientistrepository.cpp
release/date.o: date.cpp date.h \
../../../../Qt/5.3/mingw482_32/include/QtCore/QDate \
../../../../Qt/5.3/mingw482_32/include/QtCore/qdatetime.h \
../../../../Qt/5.3/mingw482_32/include/QtCore/qstring.h \
../../../../Qt/5.3/mingw482_32/include/QtCore/qchar.h \
../../../../Qt/5.3/mingw482_32/include/QtCore/qglobal.h \
../../../../Qt/5.3/mingw482_32/include/QtCore/qconfig.h \
../../../../Qt/5.3/mingw482_32/include/QtCore/qfeatures.h \
../../../../Qt/5.3/mingw482_32/include/QtCore/qsystemdetection.h \
../../../../Qt/5.3/mingw482_32/include/QtCore/qprocessordetection.h \
../../../../Qt/5.3/mingw482_32/include/QtCore/qcompilerdetection.h \
../../../../Qt/5.3/mingw482_32/include/QtCore/qtypeinfo.h \
../../../../Qt/5.3/mingw482_32/include/QtCore/qtypetraits.h \
../../../../Qt/5.3/mingw482_32/include/QtCore/qsysinfo.h \
../../../../Qt/5.3/mingw482_32/include/QtCore/qlogging.h \
../../../../Qt/5.3/mingw482_32/include/QtCore/qflags.h \
../../../../Qt/5.3/mingw482_32/include/QtCore/qatomic.h \
../../../../Qt/5.3/mingw482_32/include/QtCore/qbasicatomic.h \
../../../../Qt/5.3/mingw482_32/include/QtCore/qatomic_bootstrap.h \
../../../../Qt/5.3/mingw482_32/include/QtCore/qgenericatomic.h \
../../../../Qt/5.3/mingw482_32/include/QtCore/qatomic_msvc.h \
../../../../Qt/5.3/mingw482_32/include/QtCore/qatomic_armv7.h \
../../../../Qt/5.3/mingw482_32/include/QtCore/qatomic_armv6.h \
../../../../Qt/5.3/mingw482_32/include/QtCore/qatomic_armv5.h \
../../../../Qt/5.3/mingw482_32/include/QtCore/qatomic_ia64.h \
../../../../Qt/5.3/mingw482_32/include/QtCore/qatomic_mips.h \
../../../../Qt/5.3/mingw482_32/include/QtCore/qatomic_x86.h \
../../../../Qt/5.3/mingw482_32/include/QtCore/qatomic_cxx11.h \
../../../../Qt/5.3/mingw482_32/include/QtCore/qatomic_gcc.h \
../../../../Qt/5.3/mingw482_32/include/QtCore/qatomic_unix.h \
../../../../Qt/5.3/mingw482_32/include/QtCore/qglobalstatic.h \
../../../../Qt/5.3/mingw482_32/include/QtCore/qmutex.h \
../../../../Qt/5.3/mingw482_32/include/QtCore/qnumeric.h \
../../../../Qt/5.3/mingw482_32/include/QtCore/qbytearray.h \
../../../../Qt/5.3/mingw482_32/include/QtCore/qrefcount.h \
../../../../Qt/5.3/mingw482_32/include/QtCore/qnamespace.h \
../../../../Qt/5.3/mingw482_32/include/QtCore/qarraydata.h \
../../../../Qt/5.3/mingw482_32/include/QtCore/qstringbuilder.h \
../../../../Qt/5.3/mingw482_32/include/QtCore/qsharedpointer.h \
../../../../Qt/5.3/mingw482_32/include/QtCore/qshareddata.h \
../../../../Qt/5.3/mingw482_32/include/QtCore/qsharedpointer_impl.h \
../../../../Qt/5.3/mingw482_32/include/QtCore/qobject.h \
../../../../Qt/5.3/mingw482_32/include/QtCore/qobjectdefs.h \
../../../../Qt/5.3/mingw482_32/include/QtCore/qobjectdefs_impl.h \
../../../../Qt/5.3/mingw482_32/include/QtCore/qlist.h \
../../../../Qt/5.3/mingw482_32/include/QtCore/qalgorithms.h \
../../../../Qt/5.3/mingw482_32/include/QtCore/qiterator.h \
../../../../Qt/5.3/mingw482_32/include/QtCore/qcoreevent.h \
../../../../Qt/5.3/mingw482_32/include/QtCore/qscopedpointer.h \
../../../../Qt/5.3/mingw482_32/include/QtCore/qmetatype.h \
../../../../Qt/5.3/mingw482_32/include/QtCore/qvarlengtharray.h \
../../../../Qt/5.3/mingw482_32/include/QtCore/qcontainerfwd.h \
../../../../Qt/5.3/mingw482_32/include/QtCore/qisenum.h \
../../../../Qt/5.3/mingw482_32/include/QtCore/qobject_impl.h \
../../../../Qt/5.3/mingw482_32/include/QtCore/qhash.h \
../../../../Qt/5.3/mingw482_32/include/QtCore/qpair.h \
../../../../Qt/5.3/mingw482_32/include/QtCore/QString
$(CXX) -c $(CXXFLAGS) $(INCPATH) -o release\date.o date.cpp
release/scientistsort.o: scientistsort.cpp scientistsort.h \
scientist.h \
date.h \
../../../../Qt/5.3/mingw482_32/include/QtCore/QDate \
../../../../Qt/5.3/mingw482_32/include/QtCore/qdatetime.h \
../../../../Qt/5.3/mingw482_32/include/QtCore/qstring.h \
../../../../Qt/5.3/mingw482_32/include/QtCore/qchar.h \
../../../../Qt/5.3/mingw482_32/include/QtCore/qglobal.h \
../../../../Qt/5.3/mingw482_32/include/QtCore/qconfig.h \
../../../../Qt/5.3/mingw482_32/include/QtCore/qfeatures.h \
../../../../Qt/5.3/mingw482_32/include/QtCore/qsystemdetection.h \
../../../../Qt/5.3/mingw482_32/include/QtCore/qprocessordetection.h \
../../../../Qt/5.3/mingw482_32/include/QtCore/qcompilerdetection.h \
../../../../Qt/5.3/mingw482_32/include/QtCore/qtypeinfo.h \
../../../../Qt/5.3/mingw482_32/include/QtCore/qtypetraits.h \
../../../../Qt/5.3/mingw482_32/include/QtCore/qsysinfo.h \
../../../../Qt/5.3/mingw482_32/include/QtCore/qlogging.h \
../../../../Qt/5.3/mingw482_32/include/QtCore/qflags.h \
../../../../Qt/5.3/mingw482_32/include/QtCore/qatomic.h \
../../../../Qt/5.3/mingw482_32/include/QtCore/qbasicatomic.h \
../../../../Qt/5.3/mingw482_32/include/QtCore/qatomic_bootstrap.h \
../../../../Qt/5.3/mingw482_32/include/QtCore/qgenericatomic.h \
../../../../Qt/5.3/mingw482_32/include/QtCore/qatomic_msvc.h \
../../../../Qt/5.3/mingw482_32/include/QtCore/qatomic_armv7.h \
../../../../Qt/5.3/mingw482_32/include/QtCore/qatomic_armv6.h \
../../../../Qt/5.3/mingw482_32/include/QtCore/qatomic_armv5.h \
../../../../Qt/5.3/mingw482_32/include/QtCore/qatomic_ia64.h \
../../../../Qt/5.3/mingw482_32/include/QtCore/qatomic_mips.h \
../../../../Qt/5.3/mingw482_32/include/QtCore/qatomic_x86.h \
../../../../Qt/5.3/mingw482_32/include/QtCore/qatomic_cxx11.h \
../../../../Qt/5.3/mingw482_32/include/QtCore/qatomic_gcc.h \
../../../../Qt/5.3/mingw482_32/include/QtCore/qatomic_unix.h \
../../../../Qt/5.3/mingw482_32/include/QtCore/qglobalstatic.h \
../../../../Qt/5.3/mingw482_32/include/QtCore/qmutex.h \
../../../../Qt/5.3/mingw482_32/include/QtCore/qnumeric.h \
../../../../Qt/5.3/mingw482_32/include/QtCore/qbytearray.h \
../../../../Qt/5.3/mingw482_32/include/QtCore/qrefcount.h \
../../../../Qt/5.3/mingw482_32/include/QtCore/qnamespace.h \
../../../../Qt/5.3/mingw482_32/include/QtCore/qarraydata.h \
../../../../Qt/5.3/mingw482_32/include/QtCore/qstringbuilder.h \
../../../../Qt/5.3/mingw482_32/include/QtCore/qsharedpointer.h \
../../../../Qt/5.3/mingw482_32/include/QtCore/qshareddata.h \
../../../../Qt/5.3/mingw482_32/include/QtCore/qsharedpointer_impl.h \
../../../../Qt/5.3/mingw482_32/include/QtCore/qobject.h \
../../../../Qt/5.3/mingw482_32/include/QtCore/qobjectdefs.h \
../../../../Qt/5.3/mingw482_32/include/QtCore/qobjectdefs_impl.h \
../../../../Qt/5.3/mingw482_32/include/QtCore/qlist.h \
../../../../Qt/5.3/mingw482_32/include/QtCore/qalgorithms.h \
../../../../Qt/5.3/mingw482_32/include/QtCore/qiterator.h \
../../../../Qt/5.3/mingw482_32/include/QtCore/qcoreevent.h \
../../../../Qt/5.3/mingw482_32/include/QtCore/qscopedpointer.h \
../../../../Qt/5.3/mingw482_32/include/QtCore/qmetatype.h \
../../../../Qt/5.3/mingw482_32/include/QtCore/qvarlengtharray.h \
../../../../Qt/5.3/mingw482_32/include/QtCore/qcontainerfwd.h \
../../../../Qt/5.3/mingw482_32/include/QtCore/qisenum.h \
../../../../Qt/5.3/mingw482_32/include/QtCore/qobject_impl.h \
../../../../Qt/5.3/mingw482_32/include/QtCore/qhash.h \
../../../../Qt/5.3/mingw482_32/include/QtCore/qpair.h \
../../../../Qt/5.3/mingw482_32/include/QtCore/QString
$(CXX) -c $(CXXFLAGS) $(INCPATH) -o release\scientistsort.o scientistsort.cpp
####### Install
install: FORCE
uninstall: FORCE
FORCE: