-
Notifications
You must be signed in to change notification settings - Fork 0
/
Makefile.Debug
998 lines (954 loc) · 93.9 KB
/
Makefile.Debug
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
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
#############################################################################
# Makefile for building: reversiQT
# Generated by qmake (3.1) (Qt 5.8.0)
# Project: reversiQT.pro
# Template: app
#############################################################################
MAKEFILE = Makefile.Debug
####### Compiler, tools and options
CC = i686-w64-mingw32.static-gcc
CXX = i686-w64-mingw32.static-g++
DEFINES = -DUNICODE -DQT_DEPRECATED_WARNINGS -DQT_QUICK_LIB -DQT_GUI_LIB -DQT_QML_LIB -DQT_NETWORK_LIB -DQT_CORE_LIB -DQT_NEEDS_QMAIN
CFLAGS = -pipe -fno-keep-inline-dllexport -g -Wall -Wextra $(DEFINES)
CXXFLAGS = -pipe -fno-keep-inline-dllexport -g -std=gnu++11 -frtti -Wall -Wextra -fexceptions -mthreads $(DEFINES)
INCPATH = -I. -I../../../prog/mxe/mxe/usr/i686-w64-mingw32.static/qt5/include -I../../../prog/mxe/mxe/usr/i686-w64-mingw32.static/qt5/include/QtQuick -I../../../prog/mxe/mxe/usr/i686-w64-mingw32.static/qt5/include/QtGui -I../../../prog/mxe/mxe/usr/i686-w64-mingw32.static/qt5/include/QtQml -I../../../prog/mxe/mxe/usr/i686-w64-mingw32.static/qt5/include/QtNetwork -I../../../prog/mxe/mxe/usr/i686-w64-mingw32.static/qt5/include/QtCore -Idebug -I../../../prog/mxe/mxe/usr/i686-w64-mingw32.static/qt5/mkspecs/win32-g++
LINKER = i686-w64-mingw32.static-g++
LFLAGS = -Wl,-subsystem,windows -mthreads
LIBS = -lopengl32 -lmingw32 -L/data/prog/mxe/mxe/usr/i686-w64-mingw32.static/qt5/lib -lqtmaind -lQt5Quickd -lQt5Guid -lQt5Qmld -lQt5Networkd -lQt5Cored -L/data/prog/mxe/mxe/usr/i686-w64-mingw32.static/qt5/qml/QtQuick.2 -lqtquick2plugind -L/data/prog/mxe/mxe/usr/i686-w64-mingw32.static/qt5/qml/QtQuick/Dialogs -ldialogplugind -L/data/prog/mxe/mxe/usr/i686-w64-mingw32.static/qt5/qml/QtQuick/Controls -lqtquickcontrolsplugind -L/data/prog/mxe/mxe/usr/i686-w64-mingw32.static/qt5/qml/Qt/labs/folderlistmodel -lqmlfolderlistmodelplugind -L/data/prog/mxe/mxe/usr/i686-w64-mingw32.static/qt5/qml/Qt/labs/settings -lqmlsettingsplugind -L/data/prog/mxe/mxe/usr/i686-w64-mingw32.static/qt5/qml/QtQuick/Dialogs/Private -ldialogsprivateplugind -L/data/prog/mxe/mxe/usr/i686-w64-mingw32.static/qt5/qml/QtQuick/PrivateWidgets -lwidgetsplugind -L/data/prog/mxe/mxe/usr/i686-w64-mingw32.static/qt5/qml/QtQuick/Window.2 -lwindowplugind -L/data/prog/mxe/mxe/usr/i686-w64-mingw32.static/qt5/qml/QtQuick/Layouts -lqquicklayoutsplugind -L/data/prog/mxe/mxe/usr/i686-w64-mingw32.static/qt5/qml/QtQuick/Controls.2 -lqtquickcontrols2plugind -L/data/prog/mxe/mxe/usr/i686-w64-mingw32.static/qt5/qml/QtQuick/Templates.2 -lqtquicktemplates2plugind -L/data/prog/mxe/mxe/usr/i686-w64-mingw32.static/qt5/plugins/platforms -lqwindowsd -L/data/prog/mxe/mxe/usr/i686-w64-mingw32.static/qt5/plugins/imageformats -lqgifd -lqicnsd -lqicod -lqjp2d -lqjpegd -lqmngd -lqtgad -lqtiffd -lqwbmpd -lqwebpd -L/data/prog/mxe/mxe/usr/i686-w64-mingw32.static/qt5/plugins/qmltooling -lqmldbg_debuggerd -lqmldbg_inspectord -lqmldbg_locald -lqmldbg_natived -lqmldbg_profilerd -lqmldbg_quickprofilerd -lqmldbg_serverd -lqmldbg_tcpd -L/data/prog/mxe/mxe/usr/i686-w64-mingw32.static/qt5/plugins/bearer -lqgenericbearerd -lqnativewifibearerd
QMAKE = /data/prog/mxe/mxe/usr/i686-w64-mingw32.static/qt5/bin/qmake
IDC = idc
IDL = midl
ZIP =
DEF_FILE =
RES_FILE =
COPY = cp -f
SED = sed
COPY_FILE = cp -f
COPY_DIR = cp -f -R
DEL_FILE = rm -f
DEL_DIR = rmdir
MOVE = mv -f
CHK_DIR_EXISTS= test -d
MKDIR = mkdir -p
INSTALL_FILE = install -m 644 -p
INSTALL_PROGRAM = install -m 755 -p
INSTALL_DIR = cp -f -R
####### Output directory
OBJECTS_DIR = debug/
####### Files
SOURCES = main.cpp \
broker.cpp \
constants.cpp \
liveboard.cpp \
game.cpp \
player.cpp /data/qtProjects/reversi/reversiQT/reversiqt_qml_plugin_import.cpp \
/data/qtProjects/reversi/reversiQT/reversiqt_plugin_import.cpp \
debug/qrc_qml.cpp \
debug/moc_broker.cpp \
debug/moc_constants.cpp
OBJECTS = debug/main.o \
debug/broker.o \
debug/constants.o \
debug/liveboard.o \
debug/game.o \
debug/player.o \
debug/reversiqt_qml_plugin_import.o \
debug/reversiqt_plugin_import.o \
debug/qrc_qml.o \
debug/moc_broker.o \
debug/moc_constants.o
DIST = Button.qml broker.h \
constants.h \
liveboard.h \
game.h \
player.h main.cpp \
broker.cpp \
constants.cpp \
liveboard.cpp \
game.cpp \
player.cpp
QMAKE_TARGET = reversiQT
DESTDIR = debug/ #avoid trailing-slash linebreak
TARGET = reversiQT.exe
DESTDIR_TARGET = debug/reversiQT.exe
####### Build rules
first: all
all: Makefile.Debug $(DESTDIR_TARGET)
$(DESTDIR_TARGET): /data/prog/mxe/mxe/usr/i686-w64-mingw32.static/qt5/lib/libQt5Quickd.a /data/prog/mxe/mxe/usr/i686-w64-mingw32.static/qt5/lib/libQt5Guid.a /data/prog/mxe/mxe/usr/i686-w64-mingw32.static/qt5/lib/libQt5Qmld.a /data/prog/mxe/mxe/usr/i686-w64-mingw32.static/qt5/lib/libQt5Networkd.a /data/prog/mxe/mxe/usr/i686-w64-mingw32.static/qt5/lib/libQt5Cored.a $(OBJECTS)
$(LINKER) $(LFLAGS) -o $(DESTDIR_TARGET) object_script.reversiQT.Debug $(LIBS)
qmake: FORCE
@$(QMAKE) -o Makefile.Debug reversiQT.pro -spec win32-g++
qmake_all: FORCE
dist:
$(ZIP) reversiQT.zip $(SOURCES) $(DIST) reversiQT.pro ../../../prog/mxe/mxe/usr/i686-w64-mingw32.static/qt5/mkspecs/features/spec_pre.prf ../../../prog/mxe/mxe/usr/i686-w64-mingw32.static/qt5/mkspecs/qdevice.pri ../../../prog/mxe/mxe/usr/i686-w64-mingw32.static/qt5/mkspecs/features/device_config.prf ../../../prog/mxe/mxe/usr/i686-w64-mingw32.static/qt5/mkspecs/common/angle.conf ../../../prog/mxe/mxe/usr/i686-w64-mingw32.static/qt5/mkspecs/qconfig.pri ../../../prog/mxe/mxe/usr/i686-w64-mingw32.static/qt5/mkspecs/modules/qt_lib_3dcore.pri ../../../prog/mxe/mxe/usr/i686-w64-mingw32.static/qt5/mkspecs/modules/qt_lib_3dcore_private.pri ../../../prog/mxe/mxe/usr/i686-w64-mingw32.static/qt5/mkspecs/modules/qt_lib_3dextras.pri ../../../prog/mxe/mxe/usr/i686-w64-mingw32.static/qt5/mkspecs/modules/qt_lib_3dextras_private.pri ../../../prog/mxe/mxe/usr/i686-w64-mingw32.static/qt5/mkspecs/modules/qt_lib_3dinput.pri ../../../prog/mxe/mxe/usr/i686-w64-mingw32.static/qt5/mkspecs/modules/qt_lib_3dinput_private.pri ../../../prog/mxe/mxe/usr/i686-w64-mingw32.static/qt5/mkspecs/modules/qt_lib_3dlogic.pri ../../../prog/mxe/mxe/usr/i686-w64-mingw32.static/qt5/mkspecs/modules/qt_lib_3dlogic_private.pri ../../../prog/mxe/mxe/usr/i686-w64-mingw32.static/qt5/mkspecs/modules/qt_lib_3dquick.pri ../../../prog/mxe/mxe/usr/i686-w64-mingw32.static/qt5/mkspecs/modules/qt_lib_3dquick_private.pri ../../../prog/mxe/mxe/usr/i686-w64-mingw32.static/qt5/mkspecs/modules/qt_lib_3dquickextras.pri ../../../prog/mxe/mxe/usr/i686-w64-mingw32.static/qt5/mkspecs/modules/qt_lib_3dquickextras_private.pri ../../../prog/mxe/mxe/usr/i686-w64-mingw32.static/qt5/mkspecs/modules/qt_lib_3dquickinput.pri ../../../prog/mxe/mxe/usr/i686-w64-mingw32.static/qt5/mkspecs/modules/qt_lib_3dquickinput_private.pri ../../../prog/mxe/mxe/usr/i686-w64-mingw32.static/qt5/mkspecs/modules/qt_lib_3dquickrender.pri ../../../prog/mxe/mxe/usr/i686-w64-mingw32.static/qt5/mkspecs/modules/qt_lib_3dquickrender_private.pri ../../../prog/mxe/mxe/usr/i686-w64-mingw32.static/qt5/mkspecs/modules/qt_lib_3drender.pri ../../../prog/mxe/mxe/usr/i686-w64-mingw32.static/qt5/mkspecs/modules/qt_lib_3drender_private.pri ../../../prog/mxe/mxe/usr/i686-w64-mingw32.static/qt5/mkspecs/modules/qt_lib_accessibility_support_private.pri ../../../prog/mxe/mxe/usr/i686-w64-mingw32.static/qt5/mkspecs/modules/qt_lib_axbase.pri ../../../prog/mxe/mxe/usr/i686-w64-mingw32.static/qt5/mkspecs/modules/qt_lib_axbase_private.pri ../../../prog/mxe/mxe/usr/i686-w64-mingw32.static/qt5/mkspecs/modules/qt_lib_axcontainer.pri ../../../prog/mxe/mxe/usr/i686-w64-mingw32.static/qt5/mkspecs/modules/qt_lib_axcontainer_private.pri ../../../prog/mxe/mxe/usr/i686-w64-mingw32.static/qt5/mkspecs/modules/qt_lib_axserver.pri ../../../prog/mxe/mxe/usr/i686-w64-mingw32.static/qt5/mkspecs/modules/qt_lib_axserver_private.pri ../../../prog/mxe/mxe/usr/i686-w64-mingw32.static/qt5/mkspecs/modules/qt_lib_bluetooth.pri ../../../prog/mxe/mxe/usr/i686-w64-mingw32.static/qt5/mkspecs/modules/qt_lib_bluetooth_private.pri ../../../prog/mxe/mxe/usr/i686-w64-mingw32.static/qt5/mkspecs/modules/qt_lib_bootstrap_private.pri ../../../prog/mxe/mxe/usr/i686-w64-mingw32.static/qt5/mkspecs/modules/qt_lib_charts.pri ../../../prog/mxe/mxe/usr/i686-w64-mingw32.static/qt5/mkspecs/modules/qt_lib_charts_private.pri ../../../prog/mxe/mxe/usr/i686-w64-mingw32.static/qt5/mkspecs/modules/qt_lib_clucene_private.pri ../../../prog/mxe/mxe/usr/i686-w64-mingw32.static/qt5/mkspecs/modules/qt_lib_concurrent.pri ../../../prog/mxe/mxe/usr/i686-w64-mingw32.static/qt5/mkspecs/modules/qt_lib_concurrent_private.pri ../../../prog/mxe/mxe/usr/i686-w64-mingw32.static/qt5/mkspecs/modules/qt_lib_core.pri ../../../prog/mxe/mxe/usr/i686-w64-mingw32.static/qt5/mkspecs/modules/qt_lib_core_private.pri ../../../prog/mxe/mxe/usr/i686-w64-mingw32.static/qt5/mkspecs/modules/qt_lib_datavisualization.pri ../../../prog/mxe/mxe/usr/i686-w64-mingw32.static/qt5/mkspecs/modules/qt_lib_datavisualization_private.pri ../../../prog/mxe/mxe/usr/i686-w64-mingw32.static/qt5/mkspecs/modules/qt_lib_dbus.pri ../../../prog/mxe/mxe/usr/i686-w64-mingw32.static/qt5/mkspecs/modules/qt_lib_dbus_private.pri ../../../prog/mxe/mxe/usr/i686-w64-mingw32.static/qt5/mkspecs/modules/qt_lib_devicediscovery_support_private.pri ../../../prog/mxe/mxe/usr/i686-w64-mingw32.static/qt5/mkspecs/modules/qt_lib_eventdispatcher_support_private.pri ../../../prog/mxe/mxe/usr/i686-w64-mingw32.static/qt5/mkspecs/modules/qt_lib_fb_support_private.pri ../../../prog/mxe/mxe/usr/i686-w64-mingw32.static/qt5/mkspecs/modules/qt_lib_fontdatabase_support_private.pri ../../../prog/mxe/mxe/usr/i686-w64-mingw32.static/qt5/mkspecs/modules/qt_lib_gamepad.pri ../../../prog/mxe/mxe/usr/i686-w64-mingw32.static/qt5/mkspecs/modules/qt_lib_gamepad_private.pri ../../../prog/mxe/mxe/usr/i686-w64-mingw32.static/qt5/mkspecs/modules/qt_lib_gui.pri ../../../prog/mxe/mxe/usr/i686-w64-mingw32.static/qt5/mkspecs/modules/qt_lib_gui_private.pri ../../../prog/mxe/mxe/usr/i686-w64-mingw32.static/qt5/mkspecs/modules/qt_lib_help.pri ../../../prog/mxe/mxe/usr/i686-w64-mingw32.static/qt5/mkspecs/modules/qt_lib_help_private.pri ../../../prog/mxe/mxe/usr/i686-w64-mingw32.static/qt5/mkspecs/modules/qt_lib_location.pri ../../../prog/mxe/mxe/usr/i686-w64-mingw32.static/qt5/mkspecs/modules/qt_lib_location_private.pri ../../../prog/mxe/mxe/usr/i686-w64-mingw32.static/qt5/mkspecs/modules/qt_lib_multimedia.pri ../../../prog/mxe/mxe/usr/i686-w64-mingw32.static/qt5/mkspecs/modules/qt_lib_multimedia_private.pri ../../../prog/mxe/mxe/usr/i686-w64-mingw32.static/qt5/mkspecs/modules/qt_lib_multimediawidgets.pri ../../../prog/mxe/mxe/usr/i686-w64-mingw32.static/qt5/mkspecs/modules/qt_lib_multimediawidgets_private.pri ../../../prog/mxe/mxe/usr/i686-w64-mingw32.static/qt5/mkspecs/modules/qt_lib_network.pri ../../../prog/mxe/mxe/usr/i686-w64-mingw32.static/qt5/mkspecs/modules/qt_lib_network_private.pri ../../../prog/mxe/mxe/usr/i686-w64-mingw32.static/qt5/mkspecs/modules/qt_lib_nfc.pri ../../../prog/mxe/mxe/usr/i686-w64-mingw32.static/qt5/mkspecs/modules/qt_lib_nfc_private.pri ../../../prog/mxe/mxe/usr/i686-w64-mingw32.static/qt5/mkspecs/modules/qt_lib_opengl.pri ../../../prog/mxe/mxe/usr/i686-w64-mingw32.static/qt5/mkspecs/modules/qt_lib_opengl_private.pri ../../../prog/mxe/mxe/usr/i686-w64-mingw32.static/qt5/mkspecs/modules/qt_lib_openglextensions.pri ../../../prog/mxe/mxe/usr/i686-w64-mingw32.static/qt5/mkspecs/modules/qt_lib_openglextensions_private.pri ../../../prog/mxe/mxe/usr/i686-w64-mingw32.static/qt5/mkspecs/modules/qt_lib_packetprotocol_private.pri ../../../prog/mxe/mxe/usr/i686-w64-mingw32.static/qt5/mkspecs/modules/qt_lib_platformcompositor_support_private.pri ../../../prog/mxe/mxe/usr/i686-w64-mingw32.static/qt5/mkspecs/modules/qt_lib_positioning.pri ../../../prog/mxe/mxe/usr/i686-w64-mingw32.static/qt5/mkspecs/modules/qt_lib_positioning_private.pri ../../../prog/mxe/mxe/usr/i686-w64-mingw32.static/qt5/mkspecs/modules/qt_lib_printsupport.pri ../../../prog/mxe/mxe/usr/i686-w64-mingw32.static/qt5/mkspecs/modules/qt_lib_printsupport_private.pri ../../../prog/mxe/mxe/usr/i686-w64-mingw32.static/qt5/mkspecs/modules/qt_lib_purchasing.pri ../../../prog/mxe/mxe/usr/i686-w64-mingw32.static/qt5/mkspecs/modules/qt_lib_purchasing_private.pri ../../../prog/mxe/mxe/usr/i686-w64-mingw32.static/qt5/mkspecs/modules/qt_lib_qml.pri ../../../prog/mxe/mxe/usr/i686-w64-mingw32.static/qt5/mkspecs/modules/qt_lib_qml_private.pri ../../../prog/mxe/mxe/usr/i686-w64-mingw32.static/qt5/mkspecs/modules/qt_lib_qmldebug_private.pri ../../../prog/mxe/mxe/usr/i686-w64-mingw32.static/qt5/mkspecs/modules/qt_lib_qmldevtools_private.pri ../../../prog/mxe/mxe/usr/i686-w64-mingw32.static/qt5/mkspecs/modules/qt_lib_qmltest.pri ../../../prog/mxe/mxe/usr/i686-w64-mingw32.static/qt5/mkspecs/modules/qt_lib_qmltest_private.pri ../../../prog/mxe/mxe/usr/i686-w64-mingw32.static/qt5/mkspecs/modules/qt_lib_qtmultimediaquicktools_private.pri ../../../prog/mxe/mxe/usr/i686-w64-mingw32.static/qt5/mkspecs/modules/qt_lib_quick.pri ../../../prog/mxe/mxe/usr/i686-w64-mingw32.static/qt5/mkspecs/modules/qt_lib_quick_private.pri ../../../prog/mxe/mxe/usr/i686-w64-mingw32.static/qt5/mkspecs/modules/qt_lib_quickcontrols2.pri ../../../prog/mxe/mxe/usr/i686-w64-mingw32.static/qt5/mkspecs/modules/qt_lib_quickcontrols2_private.pri ../../../prog/mxe/mxe/usr/i686-w64-mingw32.static/qt5/mkspecs/modules/qt_lib_quickparticles_private.pri ../../../prog/mxe/mxe/usr/i686-w64-mingw32.static/qt5/mkspecs/modules/qt_lib_quicktemplates2_private.pri ../../../prog/mxe/mxe/usr/i686-w64-mingw32.static/qt5/mkspecs/modules/qt_lib_quickwidgets.pri ../../../prog/mxe/mxe/usr/i686-w64-mingw32.static/qt5/mkspecs/modules/qt_lib_quickwidgets_private.pri ../../../prog/mxe/mxe/usr/i686-w64-mingw32.static/qt5/mkspecs/modules/qt_lib_script.pri ../../../prog/mxe/mxe/usr/i686-w64-mingw32.static/qt5/mkspecs/modules/qt_lib_script_private.pri ../../../prog/mxe/mxe/usr/i686-w64-mingw32.static/qt5/mkspecs/modules/qt_lib_scripttools.pri ../../../prog/mxe/mxe/usr/i686-w64-mingw32.static/qt5/mkspecs/modules/qt_lib_scripttools_private.pri ../../../prog/mxe/mxe/usr/i686-w64-mingw32.static/qt5/mkspecs/modules/qt_lib_scxml.pri ../../../prog/mxe/mxe/usr/i686-w64-mingw32.static/qt5/mkspecs/modules/qt_lib_scxml_private.pri ../../../prog/mxe/mxe/usr/i686-w64-mingw32.static/qt5/mkspecs/modules/qt_lib_sensors.pri ../../../prog/mxe/mxe/usr/i686-w64-mingw32.static/qt5/mkspecs/modules/qt_lib_sensors_private.pri ../../../prog/mxe/mxe/usr/i686-w64-mingw32.static/qt5/mkspecs/modules/qt_lib_serialbus.pri ../../../prog/mxe/mxe/usr/i686-w64-mingw32.static/qt5/mkspecs/modules/qt_lib_serialbus_private.pri ../../../prog/mxe/mxe/usr/i686-w64-mingw32.static/qt5/mkspecs/modules/qt_lib_serialport.pri ../../../prog/mxe/mxe/usr/i686-w64-mingw32.static/qt5/mkspecs/modules/qt_lib_serialport_private.pri ../../../prog/mxe/mxe/usr/i686-w64-mingw32.static/qt5/mkspecs/modules/qt_lib_sql.pri ../../../prog/mxe/mxe/usr/i686-w64-mingw32.static/qt5/mkspecs/modules/qt_lib_sql_private.pri ../../../prog/mxe/mxe/usr/i686-w64-mingw32.static/qt5/mkspecs/modules/qt_lib_svg.pri ../../../prog/mxe/mxe/usr/i686-w64-mingw32.static/qt5/mkspecs/modules/qt_lib_svg_private.pri ../../../prog/mxe/mxe/usr/i686-w64-mingw32.static/qt5/mkspecs/modules/qt_lib_testlib.pri ../../../prog/mxe/mxe/usr/i686-w64-mingw32.static/qt5/mkspecs/modules/qt_lib_testlib_private.pri ../../../prog/mxe/mxe/usr/i686-w64-mingw32.static/qt5/mkspecs/modules/qt_lib_theme_support_private.pri ../../../prog/mxe/mxe/usr/i686-w64-mingw32.static/qt5/mkspecs/modules/qt_lib_uiplugin.pri ../../../prog/mxe/mxe/usr/i686-w64-mingw32.static/qt5/mkspecs/modules/qt_lib_uitools.pri ../../../prog/mxe/mxe/usr/i686-w64-mingw32.static/qt5/mkspecs/modules/qt_lib_uitools_private.pri ../../../prog/mxe/mxe/usr/i686-w64-mingw32.static/qt5/mkspecs/modules/qt_lib_webchannel.pri ../../../prog/mxe/mxe/usr/i686-w64-mingw32.static/qt5/mkspecs/modules/qt_lib_webchannel_private.pri ../../../prog/mxe/mxe/usr/i686-w64-mingw32.static/qt5/mkspecs/modules/qt_lib_websockets.pri ../../../prog/mxe/mxe/usr/i686-w64-mingw32.static/qt5/mkspecs/modules/qt_lib_websockets_private.pri ../../../prog/mxe/mxe/usr/i686-w64-mingw32.static/qt5/mkspecs/modules/qt_lib_widgets.pri ../../../prog/mxe/mxe/usr/i686-w64-mingw32.static/qt5/mkspecs/modules/qt_lib_widgets_private.pri ../../../prog/mxe/mxe/usr/i686-w64-mingw32.static/qt5/mkspecs/modules/qt_lib_winextras.pri ../../../prog/mxe/mxe/usr/i686-w64-mingw32.static/qt5/mkspecs/modules/qt_lib_winextras_private.pri ../../../prog/mxe/mxe/usr/i686-w64-mingw32.static/qt5/mkspecs/modules/qt_lib_xml.pri ../../../prog/mxe/mxe/usr/i686-w64-mingw32.static/qt5/mkspecs/modules/qt_lib_xml_private.pri ../../../prog/mxe/mxe/usr/i686-w64-mingw32.static/qt5/mkspecs/modules/qt_lib_xmlpatterns.pri ../../../prog/mxe/mxe/usr/i686-w64-mingw32.static/qt5/mkspecs/modules/qt_lib_xmlpatterns_private.pri ../../../prog/mxe/mxe/usr/i686-w64-mingw32.static/qt5/mkspecs/modules/qt_lib_zlib_private.pri ../../../prog/mxe/mxe/usr/i686-w64-mingw32.static/qt5/mkspecs/modules/qt_plugin_dsengine.pri ../../../prog/mxe/mxe/usr/i686-w64-mingw32.static/qt5/mkspecs/modules/qt_plugin_gltfsceneio.pri ../../../prog/mxe/mxe/usr/i686-w64-mingw32.static/qt5/mkspecs/modules/qt_plugin_qgenericbearer.pri ../../../prog/mxe/mxe/usr/i686-w64-mingw32.static/qt5/mkspecs/modules/qt_plugin_qgif.pri ../../../prog/mxe/mxe/usr/i686-w64-mingw32.static/qt5/mkspecs/modules/qt_plugin_qicns.pri ../../../prog/mxe/mxe/usr/i686-w64-mingw32.static/qt5/mkspecs/modules/qt_plugin_qico.pri ../../../prog/mxe/mxe/usr/i686-w64-mingw32.static/qt5/mkspecs/modules/qt_plugin_qjp2.pri ../../../prog/mxe/mxe/usr/i686-w64-mingw32.static/qt5/mkspecs/modules/qt_plugin_qjpeg.pri ../../../prog/mxe/mxe/usr/i686-w64-mingw32.static/qt5/mkspecs/modules/qt_plugin_qminimal.pri ../../../prog/mxe/mxe/usr/i686-w64-mingw32.static/qt5/mkspecs/modules/qt_plugin_qmldbg_debugger.pri ../../../prog/mxe/mxe/usr/i686-w64-mingw32.static/qt5/mkspecs/modules/qt_plugin_qmldbg_inspector.pri ../../../prog/mxe/mxe/usr/i686-w64-mingw32.static/qt5/mkspecs/modules/qt_plugin_qmldbg_local.pri ../../../prog/mxe/mxe/usr/i686-w64-mingw32.static/qt5/mkspecs/modules/qt_plugin_qmldbg_native.pri ../../../prog/mxe/mxe/usr/i686-w64-mingw32.static/qt5/mkspecs/modules/qt_plugin_qmldbg_profiler.pri ../../../prog/mxe/mxe/usr/i686-w64-mingw32.static/qt5/mkspecs/modules/qt_plugin_qmldbg_quickprofiler.pri ../../../prog/mxe/mxe/usr/i686-w64-mingw32.static/qt5/mkspecs/modules/qt_plugin_qmldbg_server.pri ../../../prog/mxe/mxe/usr/i686-w64-mingw32.static/qt5/mkspecs/modules/qt_plugin_qmldbg_tcp.pri ../../../prog/mxe/mxe/usr/i686-w64-mingw32.static/qt5/mkspecs/modules/qt_plugin_qmng.pri ../../../prog/mxe/mxe/usr/i686-w64-mingw32.static/qt5/mkspecs/modules/qt_plugin_qnativewifibearer.pri ../../../prog/mxe/mxe/usr/i686-w64-mingw32.static/qt5/mkspecs/modules/qt_plugin_qoffscreen.pri ../../../prog/mxe/mxe/usr/i686-w64-mingw32.static/qt5/mkspecs/modules/qt_plugin_qsqlite.pri ../../../prog/mxe/mxe/usr/i686-w64-mingw32.static/qt5/mkspecs/modules/qt_plugin_qsqlmysql.pri ../../../prog/mxe/mxe/usr/i686-w64-mingw32.static/qt5/mkspecs/modules/qt_plugin_qsqlodbc.pri ../../../prog/mxe/mxe/usr/i686-w64-mingw32.static/qt5/mkspecs/modules/qt_plugin_qsqlpsql.pri ../../../prog/mxe/mxe/usr/i686-w64-mingw32.static/qt5/mkspecs/modules/qt_plugin_qsqltds.pri ../../../prog/mxe/mxe/usr/i686-w64-mingw32.static/qt5/mkspecs/modules/qt_plugin_qsvg.pri ../../../prog/mxe/mxe/usr/i686-w64-mingw32.static/qt5/mkspecs/modules/qt_plugin_qsvgicon.pri ../../../prog/mxe/mxe/usr/i686-w64-mingw32.static/qt5/mkspecs/modules/qt_plugin_qtaudio_windows.pri ../../../prog/mxe/mxe/usr/i686-w64-mingw32.static/qt5/mkspecs/modules/qt_plugin_qtga.pri ../../../prog/mxe/mxe/usr/i686-w64-mingw32.static/qt5/mkspecs/modules/qt_plugin_qtgeoservices_esri.pri ../../../prog/mxe/mxe/usr/i686-w64-mingw32.static/qt5/mkspecs/modules/qt_plugin_qtgeoservices_mapbox.pri ../../../prog/mxe/mxe/usr/i686-w64-mingw32.static/qt5/mkspecs/modules/qt_plugin_qtgeoservices_nokia.pri ../../../prog/mxe/mxe/usr/i686-w64-mingw32.static/qt5/mkspecs/modules/qt_plugin_qtgeoservices_osm.pri ../../../prog/mxe/mxe/usr/i686-w64-mingw32.static/qt5/mkspecs/modules/qt_plugin_qtiff.pri ../../../prog/mxe/mxe/usr/i686-w64-mingw32.static/qt5/mkspecs/modules/qt_plugin_qtmedia_audioengine.pri ../../../prog/mxe/mxe/usr/i686-w64-mingw32.static/qt5/mkspecs/modules/qt_plugin_qtmultimedia_m3u.pri ../../../prog/mxe/mxe/usr/i686-w64-mingw32.static/qt5/mkspecs/modules/qt_plugin_qtpeakcanbus.pri ../../../prog/mxe/mxe/usr/i686-w64-mingw32.static/qt5/mkspecs/modules/qt_plugin_qtposition_geoclue.pri ../../../prog/mxe/mxe/usr/i686-w64-mingw32.static/qt5/mkspecs/modules/qt_plugin_qtposition_positionpoll.pri ../../../prog/mxe/mxe/usr/i686-w64-mingw32.static/qt5/mkspecs/modules/qt_plugin_qtsensorgestures_plugin.pri ../../../prog/mxe/mxe/usr/i686-w64-mingw32.static/qt5/mkspecs/modules/qt_plugin_qtsensorgestures_shakeplugin.pri ../../../prog/mxe/mxe/usr/i686-w64-mingw32.static/qt5/mkspecs/modules/qt_plugin_qtsensors_generic.pri ../../../prog/mxe/mxe/usr/i686-w64-mingw32.static/qt5/mkspecs/modules/qt_plugin_qttinycanbus.pri ../../../prog/mxe/mxe/usr/i686-w64-mingw32.static/qt5/mkspecs/modules/qt_plugin_qtuiotouchplugin.pri ../../../prog/mxe/mxe/usr/i686-w64-mingw32.static/qt5/mkspecs/modules/qt_plugin_qtvectorcanbus.pri ../../../prog/mxe/mxe/usr/i686-w64-mingw32.static/qt5/mkspecs/modules/qt_plugin_qtvirtualkeyboardplugin.pri ../../../prog/mxe/mxe/usr/i686-w64-mingw32.static/qt5/mkspecs/modules/qt_plugin_qwbmp.pri ../../../prog/mxe/mxe/usr/i686-w64-mingw32.static/qt5/mkspecs/modules/qt_plugin_qwebp.pri ../../../prog/mxe/mxe/usr/i686-w64-mingw32.static/qt5/mkspecs/modules/qt_plugin_qwindows.pri ../../../prog/mxe/mxe/usr/i686-w64-mingw32.static/qt5/mkspecs/modules/qt_plugin_windowsprintersupport.pri ../../../prog/mxe/mxe/usr/i686-w64-mingw32.static/qt5/mkspecs/modules/qt_plugin_xinputgamepad.pri ../../../prog/mxe/mxe/usr/i686-w64-mingw32.static/qt5/mkspecs/features/qt_functions.prf ../../../prog/mxe/mxe/usr/i686-w64-mingw32.static/qt5/mkspecs/features/qt_config.prf ../../../prog/mxe/mxe/usr/i686-w64-mingw32.static/qt5/mkspecs/win32-g++/qmake.conf ../../../prog/mxe/mxe/usr/i686-w64-mingw32.static/qt5/mkspecs/features/spec_post.prf ../../../prog/mxe/mxe/usr/i686-w64-mingw32.static/qt5/mkspecs/features/exclusive_builds.prf ../../../prog/mxe/mxe/usr/i686-w64-mingw32.static/qt5/mkspecs/features/toolchain.prf ../../../prog/mxe/mxe/usr/i686-w64-mingw32.static/qt5/mkspecs/features/default_pre.prf ../../../prog/mxe/mxe/usr/i686-w64-mingw32.static/qt5/mkspecs/features/win32/default_pre.prf ../../../prog/mxe/mxe/usr/i686-w64-mingw32.static/qt5/mkspecs/features/resolve_config.prf ../../../prog/mxe/mxe/usr/i686-w64-mingw32.static/qt5/mkspecs/features/exclusive_builds_post.prf ../../../prog/mxe/mxe/usr/i686-w64-mingw32.static/qt5/mkspecs/features/default_post.prf ../../../prog/mxe/mxe/usr/i686-w64-mingw32.static/qt5/mkspecs/features/build_pass.prf ../../../prog/mxe/mxe/usr/i686-w64-mingw32.static/qt5/mkspecs/features/win32/rtti.prf ../../../prog/mxe/mxe/usr/i686-w64-mingw32.static/qt5/mkspecs/features/precompile_header.prf ../../../prog/mxe/mxe/usr/i686-w64-mingw32.static/qt5/mkspecs/features/warn_on.prf ../../../prog/mxe/mxe/usr/i686-w64-mingw32.static/qt5/mkspecs/features/qt.prf ../../../prog/mxe/mxe/usr/i686-w64-mingw32.static/qt5/mkspecs/features/resources.prf ../../../prog/mxe/mxe/usr/i686-w64-mingw32.static/qt5/mkspecs/features/moc.prf ../../../prog/mxe/mxe/usr/i686-w64-mingw32.static/qt5/mkspecs/features/win32/opengl.prf ../../../prog/mxe/mxe/usr/i686-w64-mingw32.static/qt5/mkspecs/features/qmake_use.prf ../../../prog/mxe/mxe/usr/i686-w64-mingw32.static/qt5/mkspecs/features/file_copies.prf ../../../prog/mxe/mxe/usr/i686-w64-mingw32.static/qt5/mkspecs/features/win32/windows.prf ../../../prog/mxe/mxe/usr/i686-w64-mingw32.static/qt5/mkspecs/features/testcase_targets.prf ../../../prog/mxe/mxe/usr/i686-w64-mingw32.static/qt5/mkspecs/features/exceptions.prf ../../../prog/mxe/mxe/usr/i686-w64-mingw32.static/qt5/mkspecs/features/yacc.prf ../../../prog/mxe/mxe/usr/i686-w64-mingw32.static/qt5/mkspecs/features/lex.prf reversiQT.pro qml.qrc qml.qrc ../../../prog/mxe/mxe/usr/i686-w64-mingw32.static/qt5/mkspecs/features/data/dummy.cpp broker.h constants.h liveboard.h game.h player.h main.cpp broker.cpp constants.cpp liveboard.cpp game.cpp player.cpp
clean: compiler_clean
-$(DEL_FILE) debug/main.o debug/broker.o debug/constants.o debug/liveboard.o debug/game.o debug/player.o debug/reversiqt_qml_plugin_import.o debug/reversiqt_plugin_import.o debug/qrc_qml.o debug/moc_broker.o debug/moc_constants.o
distclean: clean
-$(DEL_FILE) /data/qtProjects/reversi/reversiQT/reversiqt_qml_plugin_import.cpp /data/qtProjects/reversi/reversiQT/reversiqt_plugin_import.cpp
-$(DEL_FILE) $(DESTDIR_TARGET)
-$(DEL_FILE) Makefile.Debug
mocclean: compiler_moc_header_clean compiler_moc_source_clean
mocables: compiler_moc_header_make_all compiler_moc_source_make_all
check: first
benchmark: first
compiler_no_pch_compiler_make_all:
compiler_no_pch_compiler_clean:
compiler_rcc_make_all: debug/qrc_qml.cpp
compiler_rcc_clean:
-$(DEL_FILE) debug/qrc_qml.cpp
debug/qrc_qml.cpp: qml.qrc \
../../../prog/mxe/mxe/usr/i686-w64-mingw32.static/qt5/bin/rcc \
About.qml \
ExitDialog.qml \
game.js \
MainForm.qml \
MyButton.qml \
Block.qml \
GameSetting.qml \
main.qml \
Help.qml \
Res/blank2.png \
Res/1.png \
Res/me.jpg \
Res/blank.png \
Res/pos.png \
Res/active.png \
Res/white.png \
Res/black.png \
Res/ns.jpg \
singleton/Style.qml \
singleton/qmldir
/data/prog/mxe/mxe/usr/i686-w64-mingw32.static/qt5/bin/rcc -name qml qml.qrc -o debug/qrc_qml.cpp
compiler_moc_predefs_make_all: debug/moc_predefs.h
compiler_moc_predefs_clean:
-$(DEL_FILE) debug/moc_predefs.h
debug/moc_predefs.h: ../../../prog/mxe/mxe/usr/i686-w64-mingw32.static/qt5/mkspecs/features/data/dummy.cpp
i686-w64-mingw32.static-g++ -pipe -fno-keep-inline-dllexport -g -std=gnu++11 -frtti -Wall -Wextra -dM -E -o debug/moc_predefs.h ../../../prog/mxe/mxe/usr/i686-w64-mingw32.static/qt5/mkspecs/features/data/dummy.cpp
compiler_moc_header_make_all: debug/moc_broker.cpp debug/moc_constants.cpp
compiler_moc_header_clean:
-$(DEL_FILE) debug/moc_broker.cpp debug/moc_constants.cpp
debug/moc_broker.cpp: ../../../prog/mxe/mxe/usr/i686-w64-mingw32.static/qt5/include/QtCore/QObject \
../../../prog/mxe/mxe/usr/i686-w64-mingw32.static/qt5/include/QtCore/qobject.h \
../../../prog/mxe/mxe/usr/i686-w64-mingw32.static/qt5/include/QtCore/qobjectdefs.h \
../../../prog/mxe/mxe/usr/i686-w64-mingw32.static/qt5/include/QtCore/qnamespace.h \
../../../prog/mxe/mxe/usr/i686-w64-mingw32.static/qt5/include/QtCore/qglobal.h \
../../../prog/mxe/mxe/usr/i686-w64-mingw32.static/qt5/include/QtCore/qconfig-bootstrapped.h \
../../../prog/mxe/mxe/usr/i686-w64-mingw32.static/qt5/include/QtCore/qconfig.h \
../../../prog/mxe/mxe/usr/i686-w64-mingw32.static/qt5/include/QtCore/qtcore-config.h \
../../../prog/mxe/mxe/usr/i686-w64-mingw32.static/qt5/include/QtCore/qsystemdetection.h \
../../../prog/mxe/mxe/usr/i686-w64-mingw32.static/qt5/include/QtCore/qprocessordetection.h \
../../../prog/mxe/mxe/usr/i686-w64-mingw32.static/qt5/include/QtCore/qcompilerdetection.h \
../../../prog/mxe/mxe/usr/i686-w64-mingw32.static/qt5/include/QtCore/qtypeinfo.h \
../../../prog/mxe/mxe/usr/i686-w64-mingw32.static/qt5/include/QtCore/qsysinfo.h \
../../../prog/mxe/mxe/usr/i686-w64-mingw32.static/qt5/include/QtCore/qlogging.h \
../../../prog/mxe/mxe/usr/i686-w64-mingw32.static/qt5/include/QtCore/qflags.h \
../../../prog/mxe/mxe/usr/i686-w64-mingw32.static/qt5/include/QtCore/qtypetraits.h \
../../../prog/mxe/mxe/usr/i686-w64-mingw32.static/qt5/include/QtCore/qatomic.h \
../../../prog/mxe/mxe/usr/i686-w64-mingw32.static/qt5/include/QtCore/qbasicatomic.h \
../../../prog/mxe/mxe/usr/i686-w64-mingw32.static/qt5/include/QtCore/qatomic_bootstrap.h \
../../../prog/mxe/mxe/usr/i686-w64-mingw32.static/qt5/include/QtCore/qgenericatomic.h \
../../../prog/mxe/mxe/usr/i686-w64-mingw32.static/qt5/include/QtCore/qatomic_cxx11.h \
../../../prog/mxe/mxe/usr/i686-w64-mingw32.static/qt5/include/QtCore/qatomic_msvc.h \
../../../prog/mxe/mxe/usr/i686-w64-mingw32.static/qt5/include/QtCore/qglobalstatic.h \
../../../prog/mxe/mxe/usr/i686-w64-mingw32.static/qt5/include/QtCore/qmutex.h \
../../../prog/mxe/mxe/usr/i686-w64-mingw32.static/qt5/include/QtCore/qnumeric.h \
../../../prog/mxe/mxe/usr/i686-w64-mingw32.static/qt5/include/QtCore/qversiontagging.h \
../../../prog/mxe/mxe/usr/i686-w64-mingw32.static/qt5/include/QtCore/qobjectdefs_impl.h \
../../../prog/mxe/mxe/usr/i686-w64-mingw32.static/qt5/include/QtCore/qstring.h \
../../../prog/mxe/mxe/usr/i686-w64-mingw32.static/qt5/include/QtCore/qchar.h \
../../../prog/mxe/mxe/usr/i686-w64-mingw32.static/qt5/include/QtCore/qbytearray.h \
../../../prog/mxe/mxe/usr/i686-w64-mingw32.static/qt5/include/QtCore/qrefcount.h \
../../../prog/mxe/mxe/usr/i686-w64-mingw32.static/qt5/include/QtCore/qarraydata.h \
../../../prog/mxe/mxe/usr/i686-w64-mingw32.static/qt5/include/QtCore/qstringbuilder.h \
../../../prog/mxe/mxe/usr/i686-w64-mingw32.static/qt5/include/QtCore/qlist.h \
../../../prog/mxe/mxe/usr/i686-w64-mingw32.static/qt5/include/QtCore/qalgorithms.h \
../../../prog/mxe/mxe/usr/i686-w64-mingw32.static/qt5/include/QtCore/qiterator.h \
../../../prog/mxe/mxe/usr/i686-w64-mingw32.static/qt5/include/QtCore/qhashfunctions.h \
../../../prog/mxe/mxe/usr/i686-w64-mingw32.static/qt5/include/QtCore/qpair.h \
../../../prog/mxe/mxe/usr/i686-w64-mingw32.static/qt5/include/QtCore/qbytearraylist.h \
../../../prog/mxe/mxe/usr/i686-w64-mingw32.static/qt5/include/QtCore/qstringlist.h \
../../../prog/mxe/mxe/usr/i686-w64-mingw32.static/qt5/include/QtCore/qregexp.h \
../../../prog/mxe/mxe/usr/i686-w64-mingw32.static/qt5/include/QtCore/qstringmatcher.h \
../../../prog/mxe/mxe/usr/i686-w64-mingw32.static/qt5/include/QtCore/qcoreevent.h \
../../../prog/mxe/mxe/usr/i686-w64-mingw32.static/qt5/include/QtCore/qscopedpointer.h \
../../../prog/mxe/mxe/usr/i686-w64-mingw32.static/qt5/include/QtCore/qmetatype.h \
../../../prog/mxe/mxe/usr/i686-w64-mingw32.static/qt5/include/QtCore/qvarlengtharray.h \
../../../prog/mxe/mxe/usr/i686-w64-mingw32.static/qt5/include/QtCore/qcontainerfwd.h \
../../../prog/mxe/mxe/usr/i686-w64-mingw32.static/qt5/include/QtCore/qobject_impl.h \
../../../prog/mxe/mxe/usr/i686-w64-mingw32.static/qt5/include/QtQuick/QQuickItem \
../../../prog/mxe/mxe/usr/i686-w64-mingw32.static/qt5/include/QtQuick/qquickitem.h \
../../../prog/mxe/mxe/usr/i686-w64-mingw32.static/qt5/include/QtQuick/qtquickglobal.h \
../../../prog/mxe/mxe/usr/i686-w64-mingw32.static/qt5/include/QtQml/qtqmlglobal.h \
../../../prog/mxe/mxe/usr/i686-w64-mingw32.static/qt5/include/QtQml/qtqml-config.h \
../../../prog/mxe/mxe/usr/i686-w64-mingw32.static/qt5/include/QtNetwork/qtnetworkglobal.h \
../../../prog/mxe/mxe/usr/i686-w64-mingw32.static/qt5/include/QtNetwork/qtnetwork-config.h \
../../../prog/mxe/mxe/usr/i686-w64-mingw32.static/qt5/include/QtGui/qtguiglobal.h \
../../../prog/mxe/mxe/usr/i686-w64-mingw32.static/qt5/include/QtGui/qtgui-config.h \
../../../prog/mxe/mxe/usr/i686-w64-mingw32.static/qt5/include/QtQuick/qtquick-config.h \
../../../prog/mxe/mxe/usr/i686-w64-mingw32.static/qt5/include/QtQml/qqml.h \
../../../prog/mxe/mxe/usr/i686-w64-mingw32.static/qt5/include/QtQml/qqmlprivate.h \
../../../prog/mxe/mxe/usr/i686-w64-mingw32.static/qt5/include/QtCore/qvariant.h \
../../../prog/mxe/mxe/usr/i686-w64-mingw32.static/qt5/include/QtCore/qmap.h \
../../../prog/mxe/mxe/usr/i686-w64-mingw32.static/qt5/include/QtCore/qdebug.h \
../../../prog/mxe/mxe/usr/i686-w64-mingw32.static/qt5/include/QtCore/qhash.h \
../../../prog/mxe/mxe/usr/i686-w64-mingw32.static/qt5/include/QtCore/qtextstream.h \
../../../prog/mxe/mxe/usr/i686-w64-mingw32.static/qt5/include/QtCore/qiodevice.h \
../../../prog/mxe/mxe/usr/i686-w64-mingw32.static/qt5/include/QtCore/qlocale.h \
../../../prog/mxe/mxe/usr/i686-w64-mingw32.static/qt5/include/QtCore/qshareddata.h \
../../../prog/mxe/mxe/usr/i686-w64-mingw32.static/qt5/include/QtCore/qvector.h \
../../../prog/mxe/mxe/usr/i686-w64-mingw32.static/qt5/include/QtCore/qpoint.h \
../../../prog/mxe/mxe/usr/i686-w64-mingw32.static/qt5/include/QtCore/qset.h \
../../../prog/mxe/mxe/usr/i686-w64-mingw32.static/qt5/include/QtCore/qcontiguouscache.h \
../../../prog/mxe/mxe/usr/i686-w64-mingw32.static/qt5/include/QtCore/qsharedpointer.h \
../../../prog/mxe/mxe/usr/i686-w64-mingw32.static/qt5/include/QtCore/qsharedpointer_impl.h \
../../../prog/mxe/mxe/usr/i686-w64-mingw32.static/qt5/include/QtCore/qurl.h \
../../../prog/mxe/mxe/usr/i686-w64-mingw32.static/qt5/include/QtCore/qurlquery.h \
../../../prog/mxe/mxe/usr/i686-w64-mingw32.static/qt5/include/QtQml/qqmlparserstatus.h \
../../../prog/mxe/mxe/usr/i686-w64-mingw32.static/qt5/include/QtQml/qqmlpropertyvaluesource.h \
../../../prog/mxe/mxe/usr/i686-w64-mingw32.static/qt5/include/QtQml/qqmllist.h \
../../../prog/mxe/mxe/usr/i686-w64-mingw32.static/qt5/include/QtCore/qmetaobject.h \
../../../prog/mxe/mxe/usr/i686-w64-mingw32.static/qt5/include/QtQml/qqmlcomponent.h \
../../../prog/mxe/mxe/usr/i686-w64-mingw32.static/qt5/include/QtQml/qqmlerror.h \
../../../prog/mxe/mxe/usr/i686-w64-mingw32.static/qt5/include/QtQml/qjsvalue.h \
../../../prog/mxe/mxe/usr/i686-w64-mingw32.static/qt5/include/QtCore/QList \
../../../prog/mxe/mxe/usr/i686-w64-mingw32.static/qt5/include/QtGui/qevent.h \
../../../prog/mxe/mxe/usr/i686-w64-mingw32.static/qt5/include/QtGui/qwindowdefs.h \
../../../prog/mxe/mxe/usr/i686-w64-mingw32.static/qt5/include/QtGui/qwindowdefs_win.h \
../../../prog/mxe/mxe/usr/i686-w64-mingw32.static/qt5/include/QtGui/qregion.h \
../../../prog/mxe/mxe/usr/i686-w64-mingw32.static/qt5/include/QtCore/qrect.h \
../../../prog/mxe/mxe/usr/i686-w64-mingw32.static/qt5/include/QtCore/qmargins.h \
../../../prog/mxe/mxe/usr/i686-w64-mingw32.static/qt5/include/QtCore/qsize.h \
../../../prog/mxe/mxe/usr/i686-w64-mingw32.static/qt5/include/QtCore/qdatastream.h \
../../../prog/mxe/mxe/usr/i686-w64-mingw32.static/qt5/include/QtGui/qkeysequence.h \
../../../prog/mxe/mxe/usr/i686-w64-mingw32.static/qt5/include/QtCore/qfile.h \
../../../prog/mxe/mxe/usr/i686-w64-mingw32.static/qt5/include/QtCore/qfiledevice.h \
../../../prog/mxe/mxe/usr/i686-w64-mingw32.static/qt5/include/QtGui/qvector2d.h \
../../../prog/mxe/mxe/usr/i686-w64-mingw32.static/qt5/include/QtGui/qtouchdevice.h \
../../../prog/mxe/mxe/usr/i686-w64-mingw32.static/qt5/include/QtGui/qfont.h \
../../../prog/mxe/mxe/usr/i686-w64-mingw32.static/qt5/include/QtGui/qaccessible.h \
../../../prog/mxe/mxe/usr/i686-w64-mingw32.static/qt5/include/QtCore/qcoreapplication.h \
../../../prog/mxe/mxe/usr/i686-w64-mingw32.static/qt5/include/QtCore/qeventloop.h \
../../../prog/mxe/mxe/usr/i686-w64-mingw32.static/qt5/include/QtGui/qcolor.h \
../../../prog/mxe/mxe/usr/i686-w64-mingw32.static/qt5/include/QtGui/qrgb.h \
../../../prog/mxe/mxe/usr/i686-w64-mingw32.static/qt5/include/QtGui/qrgba64.h \
../../../prog/mxe/mxe/usr/i686-w64-mingw32.static/qt5/include/QtQml/QQmlEngine \
../../../prog/mxe/mxe/usr/i686-w64-mingw32.static/qt5/include/QtQml/qqmlengine.h \
../../../prog/mxe/mxe/usr/i686-w64-mingw32.static/qt5/include/QtQml/qjsengine.h \
../../../prog/mxe/mxe/usr/i686-w64-mingw32.static/qt5/include/QtQml/qqmldebug.h \
game.h \
player.h \
liveboard.h \
constants.h \
broker.h \
debug/moc_predefs.h \
../../../prog/mxe/mxe/usr/i686-w64-mingw32.static/qt5/bin/moc
/data/prog/mxe/mxe/usr/i686-w64-mingw32.static/qt5/bin/moc $(DEFINES) --include debug/moc_predefs.h -I/data/prog/mxe/mxe/usr/i686-w64-mingw32.static/qt5/mkspecs/win32-g++ -I/data/qtProjects/reversi/reversiQT -I/data/prog/mxe/mxe/usr/i686-w64-mingw32.static/qt5/include -I/data/prog/mxe/mxe/usr/i686-w64-mingw32.static/qt5/include/QtQuick -I/data/prog/mxe/mxe/usr/i686-w64-mingw32.static/qt5/include/QtGui -I/data/prog/mxe/mxe/usr/i686-w64-mingw32.static/qt5/include/QtQml -I/data/prog/mxe/mxe/usr/i686-w64-mingw32.static/qt5/include/QtNetwork -I/data/prog/mxe/mxe/usr/i686-w64-mingw32.static/qt5/include/QtCore broker.h -o debug/moc_broker.cpp
debug/moc_constants.cpp: ../../../prog/mxe/mxe/usr/i686-w64-mingw32.static/qt5/include/QtCore/QObject \
../../../prog/mxe/mxe/usr/i686-w64-mingw32.static/qt5/include/QtCore/qobject.h \
../../../prog/mxe/mxe/usr/i686-w64-mingw32.static/qt5/include/QtCore/qobjectdefs.h \
../../../prog/mxe/mxe/usr/i686-w64-mingw32.static/qt5/include/QtCore/qnamespace.h \
../../../prog/mxe/mxe/usr/i686-w64-mingw32.static/qt5/include/QtCore/qglobal.h \
../../../prog/mxe/mxe/usr/i686-w64-mingw32.static/qt5/include/QtCore/qconfig-bootstrapped.h \
../../../prog/mxe/mxe/usr/i686-w64-mingw32.static/qt5/include/QtCore/qconfig.h \
../../../prog/mxe/mxe/usr/i686-w64-mingw32.static/qt5/include/QtCore/qtcore-config.h \
../../../prog/mxe/mxe/usr/i686-w64-mingw32.static/qt5/include/QtCore/qsystemdetection.h \
../../../prog/mxe/mxe/usr/i686-w64-mingw32.static/qt5/include/QtCore/qprocessordetection.h \
../../../prog/mxe/mxe/usr/i686-w64-mingw32.static/qt5/include/QtCore/qcompilerdetection.h \
../../../prog/mxe/mxe/usr/i686-w64-mingw32.static/qt5/include/QtCore/qtypeinfo.h \
../../../prog/mxe/mxe/usr/i686-w64-mingw32.static/qt5/include/QtCore/qsysinfo.h \
../../../prog/mxe/mxe/usr/i686-w64-mingw32.static/qt5/include/QtCore/qlogging.h \
../../../prog/mxe/mxe/usr/i686-w64-mingw32.static/qt5/include/QtCore/qflags.h \
../../../prog/mxe/mxe/usr/i686-w64-mingw32.static/qt5/include/QtCore/qtypetraits.h \
../../../prog/mxe/mxe/usr/i686-w64-mingw32.static/qt5/include/QtCore/qatomic.h \
../../../prog/mxe/mxe/usr/i686-w64-mingw32.static/qt5/include/QtCore/qbasicatomic.h \
../../../prog/mxe/mxe/usr/i686-w64-mingw32.static/qt5/include/QtCore/qatomic_bootstrap.h \
../../../prog/mxe/mxe/usr/i686-w64-mingw32.static/qt5/include/QtCore/qgenericatomic.h \
../../../prog/mxe/mxe/usr/i686-w64-mingw32.static/qt5/include/QtCore/qatomic_cxx11.h \
../../../prog/mxe/mxe/usr/i686-w64-mingw32.static/qt5/include/QtCore/qatomic_msvc.h \
../../../prog/mxe/mxe/usr/i686-w64-mingw32.static/qt5/include/QtCore/qglobalstatic.h \
../../../prog/mxe/mxe/usr/i686-w64-mingw32.static/qt5/include/QtCore/qmutex.h \
../../../prog/mxe/mxe/usr/i686-w64-mingw32.static/qt5/include/QtCore/qnumeric.h \
../../../prog/mxe/mxe/usr/i686-w64-mingw32.static/qt5/include/QtCore/qversiontagging.h \
../../../prog/mxe/mxe/usr/i686-w64-mingw32.static/qt5/include/QtCore/qobjectdefs_impl.h \
../../../prog/mxe/mxe/usr/i686-w64-mingw32.static/qt5/include/QtCore/qstring.h \
../../../prog/mxe/mxe/usr/i686-w64-mingw32.static/qt5/include/QtCore/qchar.h \
../../../prog/mxe/mxe/usr/i686-w64-mingw32.static/qt5/include/QtCore/qbytearray.h \
../../../prog/mxe/mxe/usr/i686-w64-mingw32.static/qt5/include/QtCore/qrefcount.h \
../../../prog/mxe/mxe/usr/i686-w64-mingw32.static/qt5/include/QtCore/qarraydata.h \
../../../prog/mxe/mxe/usr/i686-w64-mingw32.static/qt5/include/QtCore/qstringbuilder.h \
../../../prog/mxe/mxe/usr/i686-w64-mingw32.static/qt5/include/QtCore/qlist.h \
../../../prog/mxe/mxe/usr/i686-w64-mingw32.static/qt5/include/QtCore/qalgorithms.h \
../../../prog/mxe/mxe/usr/i686-w64-mingw32.static/qt5/include/QtCore/qiterator.h \
../../../prog/mxe/mxe/usr/i686-w64-mingw32.static/qt5/include/QtCore/qhashfunctions.h \
../../../prog/mxe/mxe/usr/i686-w64-mingw32.static/qt5/include/QtCore/qpair.h \
../../../prog/mxe/mxe/usr/i686-w64-mingw32.static/qt5/include/QtCore/qbytearraylist.h \
../../../prog/mxe/mxe/usr/i686-w64-mingw32.static/qt5/include/QtCore/qstringlist.h \
../../../prog/mxe/mxe/usr/i686-w64-mingw32.static/qt5/include/QtCore/qregexp.h \
../../../prog/mxe/mxe/usr/i686-w64-mingw32.static/qt5/include/QtCore/qstringmatcher.h \
../../../prog/mxe/mxe/usr/i686-w64-mingw32.static/qt5/include/QtCore/qcoreevent.h \
../../../prog/mxe/mxe/usr/i686-w64-mingw32.static/qt5/include/QtCore/qscopedpointer.h \
../../../prog/mxe/mxe/usr/i686-w64-mingw32.static/qt5/include/QtCore/qmetatype.h \
../../../prog/mxe/mxe/usr/i686-w64-mingw32.static/qt5/include/QtCore/qvarlengtharray.h \
../../../prog/mxe/mxe/usr/i686-w64-mingw32.static/qt5/include/QtCore/qcontainerfwd.h \
../../../prog/mxe/mxe/usr/i686-w64-mingw32.static/qt5/include/QtCore/qobject_impl.h \
../../../prog/mxe/mxe/usr/i686-w64-mingw32.static/qt5/include/QtQuick/QQuickItem \
../../../prog/mxe/mxe/usr/i686-w64-mingw32.static/qt5/include/QtQuick/qquickitem.h \
../../../prog/mxe/mxe/usr/i686-w64-mingw32.static/qt5/include/QtQuick/qtquickglobal.h \
../../../prog/mxe/mxe/usr/i686-w64-mingw32.static/qt5/include/QtQml/qtqmlglobal.h \
../../../prog/mxe/mxe/usr/i686-w64-mingw32.static/qt5/include/QtQml/qtqml-config.h \
../../../prog/mxe/mxe/usr/i686-w64-mingw32.static/qt5/include/QtNetwork/qtnetworkglobal.h \
../../../prog/mxe/mxe/usr/i686-w64-mingw32.static/qt5/include/QtNetwork/qtnetwork-config.h \
../../../prog/mxe/mxe/usr/i686-w64-mingw32.static/qt5/include/QtGui/qtguiglobal.h \
../../../prog/mxe/mxe/usr/i686-w64-mingw32.static/qt5/include/QtGui/qtgui-config.h \
../../../prog/mxe/mxe/usr/i686-w64-mingw32.static/qt5/include/QtQuick/qtquick-config.h \
../../../prog/mxe/mxe/usr/i686-w64-mingw32.static/qt5/include/QtQml/qqml.h \
../../../prog/mxe/mxe/usr/i686-w64-mingw32.static/qt5/include/QtQml/qqmlprivate.h \
../../../prog/mxe/mxe/usr/i686-w64-mingw32.static/qt5/include/QtCore/qvariant.h \
../../../prog/mxe/mxe/usr/i686-w64-mingw32.static/qt5/include/QtCore/qmap.h \
../../../prog/mxe/mxe/usr/i686-w64-mingw32.static/qt5/include/QtCore/qdebug.h \
../../../prog/mxe/mxe/usr/i686-w64-mingw32.static/qt5/include/QtCore/qhash.h \
../../../prog/mxe/mxe/usr/i686-w64-mingw32.static/qt5/include/QtCore/qtextstream.h \
../../../prog/mxe/mxe/usr/i686-w64-mingw32.static/qt5/include/QtCore/qiodevice.h \
../../../prog/mxe/mxe/usr/i686-w64-mingw32.static/qt5/include/QtCore/qlocale.h \
../../../prog/mxe/mxe/usr/i686-w64-mingw32.static/qt5/include/QtCore/qshareddata.h \
../../../prog/mxe/mxe/usr/i686-w64-mingw32.static/qt5/include/QtCore/qvector.h \
../../../prog/mxe/mxe/usr/i686-w64-mingw32.static/qt5/include/QtCore/qpoint.h \
../../../prog/mxe/mxe/usr/i686-w64-mingw32.static/qt5/include/QtCore/qset.h \
../../../prog/mxe/mxe/usr/i686-w64-mingw32.static/qt5/include/QtCore/qcontiguouscache.h \
../../../prog/mxe/mxe/usr/i686-w64-mingw32.static/qt5/include/QtCore/qsharedpointer.h \
../../../prog/mxe/mxe/usr/i686-w64-mingw32.static/qt5/include/QtCore/qsharedpointer_impl.h \
../../../prog/mxe/mxe/usr/i686-w64-mingw32.static/qt5/include/QtCore/qurl.h \
../../../prog/mxe/mxe/usr/i686-w64-mingw32.static/qt5/include/QtCore/qurlquery.h \
../../../prog/mxe/mxe/usr/i686-w64-mingw32.static/qt5/include/QtQml/qqmlparserstatus.h \
../../../prog/mxe/mxe/usr/i686-w64-mingw32.static/qt5/include/QtQml/qqmlpropertyvaluesource.h \
../../../prog/mxe/mxe/usr/i686-w64-mingw32.static/qt5/include/QtQml/qqmllist.h \
../../../prog/mxe/mxe/usr/i686-w64-mingw32.static/qt5/include/QtCore/qmetaobject.h \
../../../prog/mxe/mxe/usr/i686-w64-mingw32.static/qt5/include/QtQml/qqmlcomponent.h \
../../../prog/mxe/mxe/usr/i686-w64-mingw32.static/qt5/include/QtQml/qqmlerror.h \
../../../prog/mxe/mxe/usr/i686-w64-mingw32.static/qt5/include/QtQml/qjsvalue.h \
../../../prog/mxe/mxe/usr/i686-w64-mingw32.static/qt5/include/QtCore/QList \
../../../prog/mxe/mxe/usr/i686-w64-mingw32.static/qt5/include/QtGui/qevent.h \
../../../prog/mxe/mxe/usr/i686-w64-mingw32.static/qt5/include/QtGui/qwindowdefs.h \
../../../prog/mxe/mxe/usr/i686-w64-mingw32.static/qt5/include/QtGui/qwindowdefs_win.h \
../../../prog/mxe/mxe/usr/i686-w64-mingw32.static/qt5/include/QtGui/qregion.h \
../../../prog/mxe/mxe/usr/i686-w64-mingw32.static/qt5/include/QtCore/qrect.h \
../../../prog/mxe/mxe/usr/i686-w64-mingw32.static/qt5/include/QtCore/qmargins.h \
../../../prog/mxe/mxe/usr/i686-w64-mingw32.static/qt5/include/QtCore/qsize.h \
../../../prog/mxe/mxe/usr/i686-w64-mingw32.static/qt5/include/QtCore/qdatastream.h \
../../../prog/mxe/mxe/usr/i686-w64-mingw32.static/qt5/include/QtGui/qkeysequence.h \
../../../prog/mxe/mxe/usr/i686-w64-mingw32.static/qt5/include/QtCore/qfile.h \
../../../prog/mxe/mxe/usr/i686-w64-mingw32.static/qt5/include/QtCore/qfiledevice.h \
../../../prog/mxe/mxe/usr/i686-w64-mingw32.static/qt5/include/QtGui/qvector2d.h \
../../../prog/mxe/mxe/usr/i686-w64-mingw32.static/qt5/include/QtGui/qtouchdevice.h \
../../../prog/mxe/mxe/usr/i686-w64-mingw32.static/qt5/include/QtGui/qfont.h \
../../../prog/mxe/mxe/usr/i686-w64-mingw32.static/qt5/include/QtGui/qaccessible.h \
../../../prog/mxe/mxe/usr/i686-w64-mingw32.static/qt5/include/QtCore/qcoreapplication.h \
../../../prog/mxe/mxe/usr/i686-w64-mingw32.static/qt5/include/QtCore/qeventloop.h \
../../../prog/mxe/mxe/usr/i686-w64-mingw32.static/qt5/include/QtGui/qcolor.h \
../../../prog/mxe/mxe/usr/i686-w64-mingw32.static/qt5/include/QtGui/qrgb.h \
../../../prog/mxe/mxe/usr/i686-w64-mingw32.static/qt5/include/QtGui/qrgba64.h \
../../../prog/mxe/mxe/usr/i686-w64-mingw32.static/qt5/include/QtQml/QQmlEngine \
../../../prog/mxe/mxe/usr/i686-w64-mingw32.static/qt5/include/QtQml/qqmlengine.h \
../../../prog/mxe/mxe/usr/i686-w64-mingw32.static/qt5/include/QtQml/qjsengine.h \
../../../prog/mxe/mxe/usr/i686-w64-mingw32.static/qt5/include/QtQml/qqmldebug.h \
constants.h \
debug/moc_predefs.h \
../../../prog/mxe/mxe/usr/i686-w64-mingw32.static/qt5/bin/moc
/data/prog/mxe/mxe/usr/i686-w64-mingw32.static/qt5/bin/moc $(DEFINES) --include debug/moc_predefs.h -I/data/prog/mxe/mxe/usr/i686-w64-mingw32.static/qt5/mkspecs/win32-g++ -I/data/qtProjects/reversi/reversiQT -I/data/prog/mxe/mxe/usr/i686-w64-mingw32.static/qt5/include -I/data/prog/mxe/mxe/usr/i686-w64-mingw32.static/qt5/include/QtQuick -I/data/prog/mxe/mxe/usr/i686-w64-mingw32.static/qt5/include/QtGui -I/data/prog/mxe/mxe/usr/i686-w64-mingw32.static/qt5/include/QtQml -I/data/prog/mxe/mxe/usr/i686-w64-mingw32.static/qt5/include/QtNetwork -I/data/prog/mxe/mxe/usr/i686-w64-mingw32.static/qt5/include/QtCore constants.h -o debug/moc_constants.cpp
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: compiler_rcc_clean compiler_moc_predefs_clean compiler_moc_header_clean
####### Compile
debug/main.o: main.cpp ../../../prog/mxe/mxe/usr/i686-w64-mingw32.static/qt5/include/QtGui/QGuiApplication \
../../../prog/mxe/mxe/usr/i686-w64-mingw32.static/qt5/include/QtGui/qguiapplication.h \
../../../prog/mxe/mxe/usr/i686-w64-mingw32.static/qt5/include/QtGui/qtguiglobal.h \
../../../prog/mxe/mxe/usr/i686-w64-mingw32.static/qt5/include/QtCore/qglobal.h \
../../../prog/mxe/mxe/usr/i686-w64-mingw32.static/qt5/include/QtCore/qconfig-bootstrapped.h \
../../../prog/mxe/mxe/usr/i686-w64-mingw32.static/qt5/include/QtCore/qconfig.h \
../../../prog/mxe/mxe/usr/i686-w64-mingw32.static/qt5/include/QtCore/qtcore-config.h \
../../../prog/mxe/mxe/usr/i686-w64-mingw32.static/qt5/include/QtCore/qsystemdetection.h \
../../../prog/mxe/mxe/usr/i686-w64-mingw32.static/qt5/include/QtCore/qprocessordetection.h \
../../../prog/mxe/mxe/usr/i686-w64-mingw32.static/qt5/include/QtCore/qcompilerdetection.h \
../../../prog/mxe/mxe/usr/i686-w64-mingw32.static/qt5/include/QtCore/qtypeinfo.h \
../../../prog/mxe/mxe/usr/i686-w64-mingw32.static/qt5/include/QtCore/qsysinfo.h \
../../../prog/mxe/mxe/usr/i686-w64-mingw32.static/qt5/include/QtCore/qlogging.h \
../../../prog/mxe/mxe/usr/i686-w64-mingw32.static/qt5/include/QtCore/qflags.h \
../../../prog/mxe/mxe/usr/i686-w64-mingw32.static/qt5/include/QtCore/qtypetraits.h \
../../../prog/mxe/mxe/usr/i686-w64-mingw32.static/qt5/include/QtCore/qatomic.h \
../../../prog/mxe/mxe/usr/i686-w64-mingw32.static/qt5/include/QtCore/qbasicatomic.h \
../../../prog/mxe/mxe/usr/i686-w64-mingw32.static/qt5/include/QtCore/qatomic_bootstrap.h \
../../../prog/mxe/mxe/usr/i686-w64-mingw32.static/qt5/include/QtCore/qgenericatomic.h \
../../../prog/mxe/mxe/usr/i686-w64-mingw32.static/qt5/include/QtCore/qatomic_cxx11.h \
../../../prog/mxe/mxe/usr/i686-w64-mingw32.static/qt5/include/QtCore/qatomic_msvc.h \
../../../prog/mxe/mxe/usr/i686-w64-mingw32.static/qt5/include/QtCore/qglobalstatic.h \
../../../prog/mxe/mxe/usr/i686-w64-mingw32.static/qt5/include/QtCore/qmutex.h \
../../../prog/mxe/mxe/usr/i686-w64-mingw32.static/qt5/include/QtCore/qnumeric.h \
../../../prog/mxe/mxe/usr/i686-w64-mingw32.static/qt5/include/QtCore/qversiontagging.h \
../../../prog/mxe/mxe/usr/i686-w64-mingw32.static/qt5/include/QtGui/qtgui-config.h \
../../../prog/mxe/mxe/usr/i686-w64-mingw32.static/qt5/include/QtCore/qcoreapplication.h \
../../../prog/mxe/mxe/usr/i686-w64-mingw32.static/qt5/include/QtCore/qstring.h \
../../../prog/mxe/mxe/usr/i686-w64-mingw32.static/qt5/include/QtCore/qchar.h \
../../../prog/mxe/mxe/usr/i686-w64-mingw32.static/qt5/include/QtCore/qbytearray.h \
../../../prog/mxe/mxe/usr/i686-w64-mingw32.static/qt5/include/QtCore/qrefcount.h \
../../../prog/mxe/mxe/usr/i686-w64-mingw32.static/qt5/include/QtCore/qnamespace.h \
../../../prog/mxe/mxe/usr/i686-w64-mingw32.static/qt5/include/QtCore/qarraydata.h \
../../../prog/mxe/mxe/usr/i686-w64-mingw32.static/qt5/include/QtCore/qstringbuilder.h \
../../../prog/mxe/mxe/usr/i686-w64-mingw32.static/qt5/include/QtCore/qobject.h \
../../../prog/mxe/mxe/usr/i686-w64-mingw32.static/qt5/include/QtCore/qobjectdefs.h \
../../../prog/mxe/mxe/usr/i686-w64-mingw32.static/qt5/include/QtCore/qobjectdefs_impl.h \
../../../prog/mxe/mxe/usr/i686-w64-mingw32.static/qt5/include/QtCore/qlist.h \
../../../prog/mxe/mxe/usr/i686-w64-mingw32.static/qt5/include/QtCore/qalgorithms.h \
../../../prog/mxe/mxe/usr/i686-w64-mingw32.static/qt5/include/QtCore/qiterator.h \
../../../prog/mxe/mxe/usr/i686-w64-mingw32.static/qt5/include/QtCore/qhashfunctions.h \
../../../prog/mxe/mxe/usr/i686-w64-mingw32.static/qt5/include/QtCore/qpair.h \
../../../prog/mxe/mxe/usr/i686-w64-mingw32.static/qt5/include/QtCore/qbytearraylist.h \
../../../prog/mxe/mxe/usr/i686-w64-mingw32.static/qt5/include/QtCore/qstringlist.h \
../../../prog/mxe/mxe/usr/i686-w64-mingw32.static/qt5/include/QtCore/qregexp.h \
../../../prog/mxe/mxe/usr/i686-w64-mingw32.static/qt5/include/QtCore/qstringmatcher.h \
../../../prog/mxe/mxe/usr/i686-w64-mingw32.static/qt5/include/QtCore/qcoreevent.h \
../../../prog/mxe/mxe/usr/i686-w64-mingw32.static/qt5/include/QtCore/qscopedpointer.h \
../../../prog/mxe/mxe/usr/i686-w64-mingw32.static/qt5/include/QtCore/qmetatype.h \
../../../prog/mxe/mxe/usr/i686-w64-mingw32.static/qt5/include/QtCore/qvarlengtharray.h \
../../../prog/mxe/mxe/usr/i686-w64-mingw32.static/qt5/include/QtCore/qcontainerfwd.h \
../../../prog/mxe/mxe/usr/i686-w64-mingw32.static/qt5/include/QtCore/qobject_impl.h \
../../../prog/mxe/mxe/usr/i686-w64-mingw32.static/qt5/include/QtCore/qeventloop.h \
../../../prog/mxe/mxe/usr/i686-w64-mingw32.static/qt5/include/QtGui/qwindowdefs.h \
../../../prog/mxe/mxe/usr/i686-w64-mingw32.static/qt5/include/QtGui/qwindowdefs_win.h \
../../../prog/mxe/mxe/usr/i686-w64-mingw32.static/qt5/include/QtGui/qinputmethod.h \
../../../prog/mxe/mxe/usr/i686-w64-mingw32.static/qt5/include/QtCore/qlocale.h \
../../../prog/mxe/mxe/usr/i686-w64-mingw32.static/qt5/include/QtCore/qvariant.h \
../../../prog/mxe/mxe/usr/i686-w64-mingw32.static/qt5/include/QtCore/qmap.h \
../../../prog/mxe/mxe/usr/i686-w64-mingw32.static/qt5/include/QtCore/qdebug.h \
../../../prog/mxe/mxe/usr/i686-w64-mingw32.static/qt5/include/QtCore/qhash.h \
../../../prog/mxe/mxe/usr/i686-w64-mingw32.static/qt5/include/QtCore/qtextstream.h \
../../../prog/mxe/mxe/usr/i686-w64-mingw32.static/qt5/include/QtCore/qiodevice.h \
../../../prog/mxe/mxe/usr/i686-w64-mingw32.static/qt5/include/QtCore/qvector.h \
../../../prog/mxe/mxe/usr/i686-w64-mingw32.static/qt5/include/QtCore/qpoint.h \
../../../prog/mxe/mxe/usr/i686-w64-mingw32.static/qt5/include/QtCore/qset.h \
../../../prog/mxe/mxe/usr/i686-w64-mingw32.static/qt5/include/QtCore/qcontiguouscache.h \
../../../prog/mxe/mxe/usr/i686-w64-mingw32.static/qt5/include/QtCore/qsharedpointer.h \
../../../prog/mxe/mxe/usr/i686-w64-mingw32.static/qt5/include/QtCore/qshareddata.h \
../../../prog/mxe/mxe/usr/i686-w64-mingw32.static/qt5/include/QtCore/qsharedpointer_impl.h \
../../../prog/mxe/mxe/usr/i686-w64-mingw32.static/qt5/include/QtCore/qsize.h \
../../../prog/mxe/mxe/usr/i686-w64-mingw32.static/qt5/include/QtQml/QQmlApplicationEngine \
../../../prog/mxe/mxe/usr/i686-w64-mingw32.static/qt5/include/QtQml/qqmlapplicationengine.h \
../../../prog/mxe/mxe/usr/i686-w64-mingw32.static/qt5/include/QtQml/qqmlengine.h \
../../../prog/mxe/mxe/usr/i686-w64-mingw32.static/qt5/include/QtCore/qurl.h \
../../../prog/mxe/mxe/usr/i686-w64-mingw32.static/qt5/include/QtCore/qurlquery.h \
../../../prog/mxe/mxe/usr/i686-w64-mingw32.static/qt5/include/QtQml/qjsengine.h \
../../../prog/mxe/mxe/usr/i686-w64-mingw32.static/qt5/include/QtQml/qjsvalue.h \
../../../prog/mxe/mxe/usr/i686-w64-mingw32.static/qt5/include/QtQml/qtqmlglobal.h \
../../../prog/mxe/mxe/usr/i686-w64-mingw32.static/qt5/include/QtQml/qtqml-config.h \
../../../prog/mxe/mxe/usr/i686-w64-mingw32.static/qt5/include/QtNetwork/qtnetworkglobal.h \
../../../prog/mxe/mxe/usr/i686-w64-mingw32.static/qt5/include/QtNetwork/qtnetwork-config.h \
../../../prog/mxe/mxe/usr/i686-w64-mingw32.static/qt5/include/QtQml/qqml.h \
../../../prog/mxe/mxe/usr/i686-w64-mingw32.static/qt5/include/QtQml/qqmlprivate.h \
../../../prog/mxe/mxe/usr/i686-w64-mingw32.static/qt5/include/QtQml/qqmlparserstatus.h \
../../../prog/mxe/mxe/usr/i686-w64-mingw32.static/qt5/include/QtQml/qqmlpropertyvaluesource.h \
../../../prog/mxe/mxe/usr/i686-w64-mingw32.static/qt5/include/QtQml/qqmllist.h \
../../../prog/mxe/mxe/usr/i686-w64-mingw32.static/qt5/include/QtCore/qmetaobject.h \
../../../prog/mxe/mxe/usr/i686-w64-mingw32.static/qt5/include/QtQml/qqmlerror.h \
../../../prog/mxe/mxe/usr/i686-w64-mingw32.static/qt5/include/QtQml/qqmldebug.h \
../../../prog/mxe/mxe/usr/i686-w64-mingw32.static/qt5/include/QtQml/QQmlContext \
../../../prog/mxe/mxe/usr/i686-w64-mingw32.static/qt5/include/QtQml/qqmlcontext.h \
broker.h \
../../../prog/mxe/mxe/usr/i686-w64-mingw32.static/qt5/include/QtCore/QObject \
../../../prog/mxe/mxe/usr/i686-w64-mingw32.static/qt5/include/QtQuick/QQuickItem \
../../../prog/mxe/mxe/usr/i686-w64-mingw32.static/qt5/include/QtQuick/qquickitem.h \
../../../prog/mxe/mxe/usr/i686-w64-mingw32.static/qt5/include/QtQuick/qtquickglobal.h \
../../../prog/mxe/mxe/usr/i686-w64-mingw32.static/qt5/include/QtQuick/qtquick-config.h \
../../../prog/mxe/mxe/usr/i686-w64-mingw32.static/qt5/include/QtQml/qqmlcomponent.h \
../../../prog/mxe/mxe/usr/i686-w64-mingw32.static/qt5/include/QtCore/QList \
../../../prog/mxe/mxe/usr/i686-w64-mingw32.static/qt5/include/QtGui/qevent.h \
../../../prog/mxe/mxe/usr/i686-w64-mingw32.static/qt5/include/QtGui/qregion.h \
../../../prog/mxe/mxe/usr/i686-w64-mingw32.static/qt5/include/QtCore/qrect.h \
../../../prog/mxe/mxe/usr/i686-w64-mingw32.static/qt5/include/QtCore/qmargins.h \
../../../prog/mxe/mxe/usr/i686-w64-mingw32.static/qt5/include/QtCore/qdatastream.h \
../../../prog/mxe/mxe/usr/i686-w64-mingw32.static/qt5/include/QtGui/qkeysequence.h \
../../../prog/mxe/mxe/usr/i686-w64-mingw32.static/qt5/include/QtCore/qfile.h \
../../../prog/mxe/mxe/usr/i686-w64-mingw32.static/qt5/include/QtCore/qfiledevice.h \
../../../prog/mxe/mxe/usr/i686-w64-mingw32.static/qt5/include/QtGui/qvector2d.h \
../../../prog/mxe/mxe/usr/i686-w64-mingw32.static/qt5/include/QtGui/qtouchdevice.h \
../../../prog/mxe/mxe/usr/i686-w64-mingw32.static/qt5/include/QtGui/qfont.h \
../../../prog/mxe/mxe/usr/i686-w64-mingw32.static/qt5/include/QtGui/qaccessible.h \
../../../prog/mxe/mxe/usr/i686-w64-mingw32.static/qt5/include/QtGui/qcolor.h \
../../../prog/mxe/mxe/usr/i686-w64-mingw32.static/qt5/include/QtGui/qrgb.h \
../../../prog/mxe/mxe/usr/i686-w64-mingw32.static/qt5/include/QtGui/qrgba64.h \
../../../prog/mxe/mxe/usr/i686-w64-mingw32.static/qt5/include/QtQml/QQmlEngine \
game.h \
player.h \
liveboard.h \
constants.h \
../../../prog/mxe/mxe/usr/i686-w64-mingw32.static/qt5/include/QtCore/QThread \
../../../prog/mxe/mxe/usr/i686-w64-mingw32.static/qt5/include/QtCore/qthread.h
$(CXX) -c $(CXXFLAGS) $(INCPATH) -o debug/main.o main.cpp
debug/broker.o: broker.cpp broker.h \
../../../prog/mxe/mxe/usr/i686-w64-mingw32.static/qt5/include/QtCore/QObject \
../../../prog/mxe/mxe/usr/i686-w64-mingw32.static/qt5/include/QtCore/qobject.h \
../../../prog/mxe/mxe/usr/i686-w64-mingw32.static/qt5/include/QtCore/qobjectdefs.h \
../../../prog/mxe/mxe/usr/i686-w64-mingw32.static/qt5/include/QtCore/qnamespace.h \
../../../prog/mxe/mxe/usr/i686-w64-mingw32.static/qt5/include/QtCore/qglobal.h \
../../../prog/mxe/mxe/usr/i686-w64-mingw32.static/qt5/include/QtCore/qconfig-bootstrapped.h \
../../../prog/mxe/mxe/usr/i686-w64-mingw32.static/qt5/include/QtCore/qconfig.h \
../../../prog/mxe/mxe/usr/i686-w64-mingw32.static/qt5/include/QtCore/qtcore-config.h \
../../../prog/mxe/mxe/usr/i686-w64-mingw32.static/qt5/include/QtCore/qsystemdetection.h \
../../../prog/mxe/mxe/usr/i686-w64-mingw32.static/qt5/include/QtCore/qprocessordetection.h \
../../../prog/mxe/mxe/usr/i686-w64-mingw32.static/qt5/include/QtCore/qcompilerdetection.h \
../../../prog/mxe/mxe/usr/i686-w64-mingw32.static/qt5/include/QtCore/qtypeinfo.h \
../../../prog/mxe/mxe/usr/i686-w64-mingw32.static/qt5/include/QtCore/qsysinfo.h \
../../../prog/mxe/mxe/usr/i686-w64-mingw32.static/qt5/include/QtCore/qlogging.h \
../../../prog/mxe/mxe/usr/i686-w64-mingw32.static/qt5/include/QtCore/qflags.h \
../../../prog/mxe/mxe/usr/i686-w64-mingw32.static/qt5/include/QtCore/qtypetraits.h \
../../../prog/mxe/mxe/usr/i686-w64-mingw32.static/qt5/include/QtCore/qatomic.h \
../../../prog/mxe/mxe/usr/i686-w64-mingw32.static/qt5/include/QtCore/qbasicatomic.h \
../../../prog/mxe/mxe/usr/i686-w64-mingw32.static/qt5/include/QtCore/qatomic_bootstrap.h \
../../../prog/mxe/mxe/usr/i686-w64-mingw32.static/qt5/include/QtCore/qgenericatomic.h \
../../../prog/mxe/mxe/usr/i686-w64-mingw32.static/qt5/include/QtCore/qatomic_cxx11.h \
../../../prog/mxe/mxe/usr/i686-w64-mingw32.static/qt5/include/QtCore/qatomic_msvc.h \
../../../prog/mxe/mxe/usr/i686-w64-mingw32.static/qt5/include/QtCore/qglobalstatic.h \
../../../prog/mxe/mxe/usr/i686-w64-mingw32.static/qt5/include/QtCore/qmutex.h \
../../../prog/mxe/mxe/usr/i686-w64-mingw32.static/qt5/include/QtCore/qnumeric.h \
../../../prog/mxe/mxe/usr/i686-w64-mingw32.static/qt5/include/QtCore/qversiontagging.h \
../../../prog/mxe/mxe/usr/i686-w64-mingw32.static/qt5/include/QtCore/qobjectdefs_impl.h \
../../../prog/mxe/mxe/usr/i686-w64-mingw32.static/qt5/include/QtCore/qstring.h \
../../../prog/mxe/mxe/usr/i686-w64-mingw32.static/qt5/include/QtCore/qchar.h \
../../../prog/mxe/mxe/usr/i686-w64-mingw32.static/qt5/include/QtCore/qbytearray.h \
../../../prog/mxe/mxe/usr/i686-w64-mingw32.static/qt5/include/QtCore/qrefcount.h \
../../../prog/mxe/mxe/usr/i686-w64-mingw32.static/qt5/include/QtCore/qarraydata.h \
../../../prog/mxe/mxe/usr/i686-w64-mingw32.static/qt5/include/QtCore/qstringbuilder.h \
../../../prog/mxe/mxe/usr/i686-w64-mingw32.static/qt5/include/QtCore/qlist.h \
../../../prog/mxe/mxe/usr/i686-w64-mingw32.static/qt5/include/QtCore/qalgorithms.h \
../../../prog/mxe/mxe/usr/i686-w64-mingw32.static/qt5/include/QtCore/qiterator.h \
../../../prog/mxe/mxe/usr/i686-w64-mingw32.static/qt5/include/QtCore/qhashfunctions.h \
../../../prog/mxe/mxe/usr/i686-w64-mingw32.static/qt5/include/QtCore/qpair.h \
../../../prog/mxe/mxe/usr/i686-w64-mingw32.static/qt5/include/QtCore/qbytearraylist.h \
../../../prog/mxe/mxe/usr/i686-w64-mingw32.static/qt5/include/QtCore/qstringlist.h \
../../../prog/mxe/mxe/usr/i686-w64-mingw32.static/qt5/include/QtCore/qregexp.h \
../../../prog/mxe/mxe/usr/i686-w64-mingw32.static/qt5/include/QtCore/qstringmatcher.h \
../../../prog/mxe/mxe/usr/i686-w64-mingw32.static/qt5/include/QtCore/qcoreevent.h \
../../../prog/mxe/mxe/usr/i686-w64-mingw32.static/qt5/include/QtCore/qscopedpointer.h \
../../../prog/mxe/mxe/usr/i686-w64-mingw32.static/qt5/include/QtCore/qmetatype.h \
../../../prog/mxe/mxe/usr/i686-w64-mingw32.static/qt5/include/QtCore/qvarlengtharray.h \
../../../prog/mxe/mxe/usr/i686-w64-mingw32.static/qt5/include/QtCore/qcontainerfwd.h \
../../../prog/mxe/mxe/usr/i686-w64-mingw32.static/qt5/include/QtCore/qobject_impl.h \
../../../prog/mxe/mxe/usr/i686-w64-mingw32.static/qt5/include/QtQuick/QQuickItem \
../../../prog/mxe/mxe/usr/i686-w64-mingw32.static/qt5/include/QtQuick/qquickitem.h \
../../../prog/mxe/mxe/usr/i686-w64-mingw32.static/qt5/include/QtQuick/qtquickglobal.h \
../../../prog/mxe/mxe/usr/i686-w64-mingw32.static/qt5/include/QtQml/qtqmlglobal.h \
../../../prog/mxe/mxe/usr/i686-w64-mingw32.static/qt5/include/QtQml/qtqml-config.h \
../../../prog/mxe/mxe/usr/i686-w64-mingw32.static/qt5/include/QtNetwork/qtnetworkglobal.h \
../../../prog/mxe/mxe/usr/i686-w64-mingw32.static/qt5/include/QtNetwork/qtnetwork-config.h \
../../../prog/mxe/mxe/usr/i686-w64-mingw32.static/qt5/include/QtGui/qtguiglobal.h \
../../../prog/mxe/mxe/usr/i686-w64-mingw32.static/qt5/include/QtGui/qtgui-config.h \
../../../prog/mxe/mxe/usr/i686-w64-mingw32.static/qt5/include/QtQuick/qtquick-config.h \
../../../prog/mxe/mxe/usr/i686-w64-mingw32.static/qt5/include/QtQml/qqml.h \
../../../prog/mxe/mxe/usr/i686-w64-mingw32.static/qt5/include/QtQml/qqmlprivate.h \
../../../prog/mxe/mxe/usr/i686-w64-mingw32.static/qt5/include/QtCore/qvariant.h \
../../../prog/mxe/mxe/usr/i686-w64-mingw32.static/qt5/include/QtCore/qmap.h \
../../../prog/mxe/mxe/usr/i686-w64-mingw32.static/qt5/include/QtCore/qdebug.h \
../../../prog/mxe/mxe/usr/i686-w64-mingw32.static/qt5/include/QtCore/qhash.h \
../../../prog/mxe/mxe/usr/i686-w64-mingw32.static/qt5/include/QtCore/qtextstream.h \
../../../prog/mxe/mxe/usr/i686-w64-mingw32.static/qt5/include/QtCore/qiodevice.h \
../../../prog/mxe/mxe/usr/i686-w64-mingw32.static/qt5/include/QtCore/qlocale.h \
../../../prog/mxe/mxe/usr/i686-w64-mingw32.static/qt5/include/QtCore/qshareddata.h \
../../../prog/mxe/mxe/usr/i686-w64-mingw32.static/qt5/include/QtCore/qvector.h \
../../../prog/mxe/mxe/usr/i686-w64-mingw32.static/qt5/include/QtCore/qpoint.h \
../../../prog/mxe/mxe/usr/i686-w64-mingw32.static/qt5/include/QtCore/qset.h \
../../../prog/mxe/mxe/usr/i686-w64-mingw32.static/qt5/include/QtCore/qcontiguouscache.h \
../../../prog/mxe/mxe/usr/i686-w64-mingw32.static/qt5/include/QtCore/qsharedpointer.h \
../../../prog/mxe/mxe/usr/i686-w64-mingw32.static/qt5/include/QtCore/qsharedpointer_impl.h \
../../../prog/mxe/mxe/usr/i686-w64-mingw32.static/qt5/include/QtCore/qurl.h \
../../../prog/mxe/mxe/usr/i686-w64-mingw32.static/qt5/include/QtCore/qurlquery.h \
../../../prog/mxe/mxe/usr/i686-w64-mingw32.static/qt5/include/QtQml/qqmlparserstatus.h \
../../../prog/mxe/mxe/usr/i686-w64-mingw32.static/qt5/include/QtQml/qqmlpropertyvaluesource.h \
../../../prog/mxe/mxe/usr/i686-w64-mingw32.static/qt5/include/QtQml/qqmllist.h \
../../../prog/mxe/mxe/usr/i686-w64-mingw32.static/qt5/include/QtCore/qmetaobject.h \
../../../prog/mxe/mxe/usr/i686-w64-mingw32.static/qt5/include/QtQml/qqmlcomponent.h \
../../../prog/mxe/mxe/usr/i686-w64-mingw32.static/qt5/include/QtQml/qqmlerror.h \
../../../prog/mxe/mxe/usr/i686-w64-mingw32.static/qt5/include/QtQml/qjsvalue.h \
../../../prog/mxe/mxe/usr/i686-w64-mingw32.static/qt5/include/QtCore/QList \
../../../prog/mxe/mxe/usr/i686-w64-mingw32.static/qt5/include/QtGui/qevent.h \
../../../prog/mxe/mxe/usr/i686-w64-mingw32.static/qt5/include/QtGui/qwindowdefs.h \
../../../prog/mxe/mxe/usr/i686-w64-mingw32.static/qt5/include/QtGui/qwindowdefs_win.h \
../../../prog/mxe/mxe/usr/i686-w64-mingw32.static/qt5/include/QtGui/qregion.h \
../../../prog/mxe/mxe/usr/i686-w64-mingw32.static/qt5/include/QtCore/qrect.h \
../../../prog/mxe/mxe/usr/i686-w64-mingw32.static/qt5/include/QtCore/qmargins.h \
../../../prog/mxe/mxe/usr/i686-w64-mingw32.static/qt5/include/QtCore/qsize.h \
../../../prog/mxe/mxe/usr/i686-w64-mingw32.static/qt5/include/QtCore/qdatastream.h \
../../../prog/mxe/mxe/usr/i686-w64-mingw32.static/qt5/include/QtGui/qkeysequence.h \
../../../prog/mxe/mxe/usr/i686-w64-mingw32.static/qt5/include/QtCore/qfile.h \
../../../prog/mxe/mxe/usr/i686-w64-mingw32.static/qt5/include/QtCore/qfiledevice.h \
../../../prog/mxe/mxe/usr/i686-w64-mingw32.static/qt5/include/QtGui/qvector2d.h \
../../../prog/mxe/mxe/usr/i686-w64-mingw32.static/qt5/include/QtGui/qtouchdevice.h \
../../../prog/mxe/mxe/usr/i686-w64-mingw32.static/qt5/include/QtGui/qfont.h \
../../../prog/mxe/mxe/usr/i686-w64-mingw32.static/qt5/include/QtGui/qaccessible.h \
../../../prog/mxe/mxe/usr/i686-w64-mingw32.static/qt5/include/QtCore/qcoreapplication.h \
../../../prog/mxe/mxe/usr/i686-w64-mingw32.static/qt5/include/QtCore/qeventloop.h \
../../../prog/mxe/mxe/usr/i686-w64-mingw32.static/qt5/include/QtGui/qcolor.h \
../../../prog/mxe/mxe/usr/i686-w64-mingw32.static/qt5/include/QtGui/qrgb.h \
../../../prog/mxe/mxe/usr/i686-w64-mingw32.static/qt5/include/QtGui/qrgba64.h \
../../../prog/mxe/mxe/usr/i686-w64-mingw32.static/qt5/include/QtQml/QQmlEngine \
../../../prog/mxe/mxe/usr/i686-w64-mingw32.static/qt5/include/QtQml/qqmlengine.h \
../../../prog/mxe/mxe/usr/i686-w64-mingw32.static/qt5/include/QtQml/qjsengine.h \
../../../prog/mxe/mxe/usr/i686-w64-mingw32.static/qt5/include/QtQml/qqmldebug.h \
game.h \
player.h \
liveboard.h \
constants.h
$(CXX) -c $(CXXFLAGS) $(INCPATH) -o debug/broker.o broker.cpp
debug/constants.o: constants.cpp constants.h \
../../../prog/mxe/mxe/usr/i686-w64-mingw32.static/qt5/include/QtCore/QObject \
../../../prog/mxe/mxe/usr/i686-w64-mingw32.static/qt5/include/QtCore/qobject.h \
../../../prog/mxe/mxe/usr/i686-w64-mingw32.static/qt5/include/QtCore/qobjectdefs.h \
../../../prog/mxe/mxe/usr/i686-w64-mingw32.static/qt5/include/QtCore/qnamespace.h \
../../../prog/mxe/mxe/usr/i686-w64-mingw32.static/qt5/include/QtCore/qglobal.h \
../../../prog/mxe/mxe/usr/i686-w64-mingw32.static/qt5/include/QtCore/qconfig-bootstrapped.h \
../../../prog/mxe/mxe/usr/i686-w64-mingw32.static/qt5/include/QtCore/qconfig.h \
../../../prog/mxe/mxe/usr/i686-w64-mingw32.static/qt5/include/QtCore/qtcore-config.h \
../../../prog/mxe/mxe/usr/i686-w64-mingw32.static/qt5/include/QtCore/qsystemdetection.h \
../../../prog/mxe/mxe/usr/i686-w64-mingw32.static/qt5/include/QtCore/qprocessordetection.h \
../../../prog/mxe/mxe/usr/i686-w64-mingw32.static/qt5/include/QtCore/qcompilerdetection.h \
../../../prog/mxe/mxe/usr/i686-w64-mingw32.static/qt5/include/QtCore/qtypeinfo.h \
../../../prog/mxe/mxe/usr/i686-w64-mingw32.static/qt5/include/QtCore/qsysinfo.h \
../../../prog/mxe/mxe/usr/i686-w64-mingw32.static/qt5/include/QtCore/qlogging.h \
../../../prog/mxe/mxe/usr/i686-w64-mingw32.static/qt5/include/QtCore/qflags.h \
../../../prog/mxe/mxe/usr/i686-w64-mingw32.static/qt5/include/QtCore/qtypetraits.h \
../../../prog/mxe/mxe/usr/i686-w64-mingw32.static/qt5/include/QtCore/qatomic.h \
../../../prog/mxe/mxe/usr/i686-w64-mingw32.static/qt5/include/QtCore/qbasicatomic.h \
../../../prog/mxe/mxe/usr/i686-w64-mingw32.static/qt5/include/QtCore/qatomic_bootstrap.h \
../../../prog/mxe/mxe/usr/i686-w64-mingw32.static/qt5/include/QtCore/qgenericatomic.h \
../../../prog/mxe/mxe/usr/i686-w64-mingw32.static/qt5/include/QtCore/qatomic_cxx11.h \
../../../prog/mxe/mxe/usr/i686-w64-mingw32.static/qt5/include/QtCore/qatomic_msvc.h \
../../../prog/mxe/mxe/usr/i686-w64-mingw32.static/qt5/include/QtCore/qglobalstatic.h \
../../../prog/mxe/mxe/usr/i686-w64-mingw32.static/qt5/include/QtCore/qmutex.h \
../../../prog/mxe/mxe/usr/i686-w64-mingw32.static/qt5/include/QtCore/qnumeric.h \
../../../prog/mxe/mxe/usr/i686-w64-mingw32.static/qt5/include/QtCore/qversiontagging.h \
../../../prog/mxe/mxe/usr/i686-w64-mingw32.static/qt5/include/QtCore/qobjectdefs_impl.h \
../../../prog/mxe/mxe/usr/i686-w64-mingw32.static/qt5/include/QtCore/qstring.h \
../../../prog/mxe/mxe/usr/i686-w64-mingw32.static/qt5/include/QtCore/qchar.h \
../../../prog/mxe/mxe/usr/i686-w64-mingw32.static/qt5/include/QtCore/qbytearray.h \
../../../prog/mxe/mxe/usr/i686-w64-mingw32.static/qt5/include/QtCore/qrefcount.h \
../../../prog/mxe/mxe/usr/i686-w64-mingw32.static/qt5/include/QtCore/qarraydata.h \
../../../prog/mxe/mxe/usr/i686-w64-mingw32.static/qt5/include/QtCore/qstringbuilder.h \
../../../prog/mxe/mxe/usr/i686-w64-mingw32.static/qt5/include/QtCore/qlist.h \
../../../prog/mxe/mxe/usr/i686-w64-mingw32.static/qt5/include/QtCore/qalgorithms.h \
../../../prog/mxe/mxe/usr/i686-w64-mingw32.static/qt5/include/QtCore/qiterator.h \
../../../prog/mxe/mxe/usr/i686-w64-mingw32.static/qt5/include/QtCore/qhashfunctions.h \
../../../prog/mxe/mxe/usr/i686-w64-mingw32.static/qt5/include/QtCore/qpair.h \
../../../prog/mxe/mxe/usr/i686-w64-mingw32.static/qt5/include/QtCore/qbytearraylist.h \
../../../prog/mxe/mxe/usr/i686-w64-mingw32.static/qt5/include/QtCore/qstringlist.h \
../../../prog/mxe/mxe/usr/i686-w64-mingw32.static/qt5/include/QtCore/qregexp.h \
../../../prog/mxe/mxe/usr/i686-w64-mingw32.static/qt5/include/QtCore/qstringmatcher.h \
../../../prog/mxe/mxe/usr/i686-w64-mingw32.static/qt5/include/QtCore/qcoreevent.h \
../../../prog/mxe/mxe/usr/i686-w64-mingw32.static/qt5/include/QtCore/qscopedpointer.h \
../../../prog/mxe/mxe/usr/i686-w64-mingw32.static/qt5/include/QtCore/qmetatype.h \
../../../prog/mxe/mxe/usr/i686-w64-mingw32.static/qt5/include/QtCore/qvarlengtharray.h \
../../../prog/mxe/mxe/usr/i686-w64-mingw32.static/qt5/include/QtCore/qcontainerfwd.h \
../../../prog/mxe/mxe/usr/i686-w64-mingw32.static/qt5/include/QtCore/qobject_impl.h \
../../../prog/mxe/mxe/usr/i686-w64-mingw32.static/qt5/include/QtQuick/QQuickItem \
../../../prog/mxe/mxe/usr/i686-w64-mingw32.static/qt5/include/QtQuick/qquickitem.h \
../../../prog/mxe/mxe/usr/i686-w64-mingw32.static/qt5/include/QtQuick/qtquickglobal.h \
../../../prog/mxe/mxe/usr/i686-w64-mingw32.static/qt5/include/QtQml/qtqmlglobal.h \
../../../prog/mxe/mxe/usr/i686-w64-mingw32.static/qt5/include/QtQml/qtqml-config.h \
../../../prog/mxe/mxe/usr/i686-w64-mingw32.static/qt5/include/QtNetwork/qtnetworkglobal.h \
../../../prog/mxe/mxe/usr/i686-w64-mingw32.static/qt5/include/QtNetwork/qtnetwork-config.h \
../../../prog/mxe/mxe/usr/i686-w64-mingw32.static/qt5/include/QtGui/qtguiglobal.h \
../../../prog/mxe/mxe/usr/i686-w64-mingw32.static/qt5/include/QtGui/qtgui-config.h \
../../../prog/mxe/mxe/usr/i686-w64-mingw32.static/qt5/include/QtQuick/qtquick-config.h \
../../../prog/mxe/mxe/usr/i686-w64-mingw32.static/qt5/include/QtQml/qqml.h \
../../../prog/mxe/mxe/usr/i686-w64-mingw32.static/qt5/include/QtQml/qqmlprivate.h \
../../../prog/mxe/mxe/usr/i686-w64-mingw32.static/qt5/include/QtCore/qvariant.h \
../../../prog/mxe/mxe/usr/i686-w64-mingw32.static/qt5/include/QtCore/qmap.h \
../../../prog/mxe/mxe/usr/i686-w64-mingw32.static/qt5/include/QtCore/qdebug.h \
../../../prog/mxe/mxe/usr/i686-w64-mingw32.static/qt5/include/QtCore/qhash.h \
../../../prog/mxe/mxe/usr/i686-w64-mingw32.static/qt5/include/QtCore/qtextstream.h \
../../../prog/mxe/mxe/usr/i686-w64-mingw32.static/qt5/include/QtCore/qiodevice.h \
../../../prog/mxe/mxe/usr/i686-w64-mingw32.static/qt5/include/QtCore/qlocale.h \
../../../prog/mxe/mxe/usr/i686-w64-mingw32.static/qt5/include/QtCore/qshareddata.h \
../../../prog/mxe/mxe/usr/i686-w64-mingw32.static/qt5/include/QtCore/qvector.h \
../../../prog/mxe/mxe/usr/i686-w64-mingw32.static/qt5/include/QtCore/qpoint.h \
../../../prog/mxe/mxe/usr/i686-w64-mingw32.static/qt5/include/QtCore/qset.h \
../../../prog/mxe/mxe/usr/i686-w64-mingw32.static/qt5/include/QtCore/qcontiguouscache.h \
../../../prog/mxe/mxe/usr/i686-w64-mingw32.static/qt5/include/QtCore/qsharedpointer.h \
../../../prog/mxe/mxe/usr/i686-w64-mingw32.static/qt5/include/QtCore/qsharedpointer_impl.h \
../../../prog/mxe/mxe/usr/i686-w64-mingw32.static/qt5/include/QtCore/qurl.h \
../../../prog/mxe/mxe/usr/i686-w64-mingw32.static/qt5/include/QtCore/qurlquery.h \
../../../prog/mxe/mxe/usr/i686-w64-mingw32.static/qt5/include/QtQml/qqmlparserstatus.h \
../../../prog/mxe/mxe/usr/i686-w64-mingw32.static/qt5/include/QtQml/qqmlpropertyvaluesource.h \
../../../prog/mxe/mxe/usr/i686-w64-mingw32.static/qt5/include/QtQml/qqmllist.h \
../../../prog/mxe/mxe/usr/i686-w64-mingw32.static/qt5/include/QtCore/qmetaobject.h \
../../../prog/mxe/mxe/usr/i686-w64-mingw32.static/qt5/include/QtQml/qqmlcomponent.h \
../../../prog/mxe/mxe/usr/i686-w64-mingw32.static/qt5/include/QtQml/qqmlerror.h \
../../../prog/mxe/mxe/usr/i686-w64-mingw32.static/qt5/include/QtQml/qjsvalue.h \
../../../prog/mxe/mxe/usr/i686-w64-mingw32.static/qt5/include/QtCore/QList \
../../../prog/mxe/mxe/usr/i686-w64-mingw32.static/qt5/include/QtGui/qevent.h \
../../../prog/mxe/mxe/usr/i686-w64-mingw32.static/qt5/include/QtGui/qwindowdefs.h \
../../../prog/mxe/mxe/usr/i686-w64-mingw32.static/qt5/include/QtGui/qwindowdefs_win.h \
../../../prog/mxe/mxe/usr/i686-w64-mingw32.static/qt5/include/QtGui/qregion.h \
../../../prog/mxe/mxe/usr/i686-w64-mingw32.static/qt5/include/QtCore/qrect.h \
../../../prog/mxe/mxe/usr/i686-w64-mingw32.static/qt5/include/QtCore/qmargins.h \
../../../prog/mxe/mxe/usr/i686-w64-mingw32.static/qt5/include/QtCore/qsize.h \
../../../prog/mxe/mxe/usr/i686-w64-mingw32.static/qt5/include/QtCore/qdatastream.h \
../../../prog/mxe/mxe/usr/i686-w64-mingw32.static/qt5/include/QtGui/qkeysequence.h \
../../../prog/mxe/mxe/usr/i686-w64-mingw32.static/qt5/include/QtCore/qfile.h \
../../../prog/mxe/mxe/usr/i686-w64-mingw32.static/qt5/include/QtCore/qfiledevice.h \
../../../prog/mxe/mxe/usr/i686-w64-mingw32.static/qt5/include/QtGui/qvector2d.h \
../../../prog/mxe/mxe/usr/i686-w64-mingw32.static/qt5/include/QtGui/qtouchdevice.h \
../../../prog/mxe/mxe/usr/i686-w64-mingw32.static/qt5/include/QtGui/qfont.h \
../../../prog/mxe/mxe/usr/i686-w64-mingw32.static/qt5/include/QtGui/qaccessible.h \
../../../prog/mxe/mxe/usr/i686-w64-mingw32.static/qt5/include/QtCore/qcoreapplication.h \
../../../prog/mxe/mxe/usr/i686-w64-mingw32.static/qt5/include/QtCore/qeventloop.h \
../../../prog/mxe/mxe/usr/i686-w64-mingw32.static/qt5/include/QtGui/qcolor.h \
../../../prog/mxe/mxe/usr/i686-w64-mingw32.static/qt5/include/QtGui/qrgb.h \
../../../prog/mxe/mxe/usr/i686-w64-mingw32.static/qt5/include/QtGui/qrgba64.h \
../../../prog/mxe/mxe/usr/i686-w64-mingw32.static/qt5/include/QtQml/QQmlEngine \
../../../prog/mxe/mxe/usr/i686-w64-mingw32.static/qt5/include/QtQml/qqmlengine.h \
../../../prog/mxe/mxe/usr/i686-w64-mingw32.static/qt5/include/QtQml/qjsengine.h \
../../../prog/mxe/mxe/usr/i686-w64-mingw32.static/qt5/include/QtQml/qqmldebug.h
$(CXX) -c $(CXXFLAGS) $(INCPATH) -o debug/constants.o constants.cpp
debug/liveboard.o: liveboard.cpp liveboard.h \
constants.h \
../../../prog/mxe/mxe/usr/i686-w64-mingw32.static/qt5/include/QtCore/QObject \
../../../prog/mxe/mxe/usr/i686-w64-mingw32.static/qt5/include/QtCore/qobject.h \
../../../prog/mxe/mxe/usr/i686-w64-mingw32.static/qt5/include/QtCore/qobjectdefs.h \
../../../prog/mxe/mxe/usr/i686-w64-mingw32.static/qt5/include/QtCore/qnamespace.h \
../../../prog/mxe/mxe/usr/i686-w64-mingw32.static/qt5/include/QtCore/qglobal.h \
../../../prog/mxe/mxe/usr/i686-w64-mingw32.static/qt5/include/QtCore/qconfig-bootstrapped.h \
../../../prog/mxe/mxe/usr/i686-w64-mingw32.static/qt5/include/QtCore/qconfig.h \
../../../prog/mxe/mxe/usr/i686-w64-mingw32.static/qt5/include/QtCore/qtcore-config.h \
../../../prog/mxe/mxe/usr/i686-w64-mingw32.static/qt5/include/QtCore/qsystemdetection.h \
../../../prog/mxe/mxe/usr/i686-w64-mingw32.static/qt5/include/QtCore/qprocessordetection.h \
../../../prog/mxe/mxe/usr/i686-w64-mingw32.static/qt5/include/QtCore/qcompilerdetection.h \
../../../prog/mxe/mxe/usr/i686-w64-mingw32.static/qt5/include/QtCore/qtypeinfo.h \
../../../prog/mxe/mxe/usr/i686-w64-mingw32.static/qt5/include/QtCore/qsysinfo.h \
../../../prog/mxe/mxe/usr/i686-w64-mingw32.static/qt5/include/QtCore/qlogging.h \
../../../prog/mxe/mxe/usr/i686-w64-mingw32.static/qt5/include/QtCore/qflags.h \
../../../prog/mxe/mxe/usr/i686-w64-mingw32.static/qt5/include/QtCore/qtypetraits.h \
../../../prog/mxe/mxe/usr/i686-w64-mingw32.static/qt5/include/QtCore/qatomic.h \
../../../prog/mxe/mxe/usr/i686-w64-mingw32.static/qt5/include/QtCore/qbasicatomic.h \
../../../prog/mxe/mxe/usr/i686-w64-mingw32.static/qt5/include/QtCore/qatomic_bootstrap.h \
../../../prog/mxe/mxe/usr/i686-w64-mingw32.static/qt5/include/QtCore/qgenericatomic.h \
../../../prog/mxe/mxe/usr/i686-w64-mingw32.static/qt5/include/QtCore/qatomic_cxx11.h \
../../../prog/mxe/mxe/usr/i686-w64-mingw32.static/qt5/include/QtCore/qatomic_msvc.h \
../../../prog/mxe/mxe/usr/i686-w64-mingw32.static/qt5/include/QtCore/qglobalstatic.h \
../../../prog/mxe/mxe/usr/i686-w64-mingw32.static/qt5/include/QtCore/qmutex.h \
../../../prog/mxe/mxe/usr/i686-w64-mingw32.static/qt5/include/QtCore/qnumeric.h \
../../../prog/mxe/mxe/usr/i686-w64-mingw32.static/qt5/include/QtCore/qversiontagging.h \
../../../prog/mxe/mxe/usr/i686-w64-mingw32.static/qt5/include/QtCore/qobjectdefs_impl.h \
../../../prog/mxe/mxe/usr/i686-w64-mingw32.static/qt5/include/QtCore/qstring.h \
../../../prog/mxe/mxe/usr/i686-w64-mingw32.static/qt5/include/QtCore/qchar.h \
../../../prog/mxe/mxe/usr/i686-w64-mingw32.static/qt5/include/QtCore/qbytearray.h \
../../../prog/mxe/mxe/usr/i686-w64-mingw32.static/qt5/include/QtCore/qrefcount.h \
../../../prog/mxe/mxe/usr/i686-w64-mingw32.static/qt5/include/QtCore/qarraydata.h \
../../../prog/mxe/mxe/usr/i686-w64-mingw32.static/qt5/include/QtCore/qstringbuilder.h \
../../../prog/mxe/mxe/usr/i686-w64-mingw32.static/qt5/include/QtCore/qlist.h \
../../../prog/mxe/mxe/usr/i686-w64-mingw32.static/qt5/include/QtCore/qalgorithms.h \
../../../prog/mxe/mxe/usr/i686-w64-mingw32.static/qt5/include/QtCore/qiterator.h \
../../../prog/mxe/mxe/usr/i686-w64-mingw32.static/qt5/include/QtCore/qhashfunctions.h \
../../../prog/mxe/mxe/usr/i686-w64-mingw32.static/qt5/include/QtCore/qpair.h \
../../../prog/mxe/mxe/usr/i686-w64-mingw32.static/qt5/include/QtCore/qbytearraylist.h \
../../../prog/mxe/mxe/usr/i686-w64-mingw32.static/qt5/include/QtCore/qstringlist.h \
../../../prog/mxe/mxe/usr/i686-w64-mingw32.static/qt5/include/QtCore/qregexp.h \
../../../prog/mxe/mxe/usr/i686-w64-mingw32.static/qt5/include/QtCore/qstringmatcher.h \
../../../prog/mxe/mxe/usr/i686-w64-mingw32.static/qt5/include/QtCore/qcoreevent.h \
../../../prog/mxe/mxe/usr/i686-w64-mingw32.static/qt5/include/QtCore/qscopedpointer.h \
../../../prog/mxe/mxe/usr/i686-w64-mingw32.static/qt5/include/QtCore/qmetatype.h \
../../../prog/mxe/mxe/usr/i686-w64-mingw32.static/qt5/include/QtCore/qvarlengtharray.h \
../../../prog/mxe/mxe/usr/i686-w64-mingw32.static/qt5/include/QtCore/qcontainerfwd.h \
../../../prog/mxe/mxe/usr/i686-w64-mingw32.static/qt5/include/QtCore/qobject_impl.h \
../../../prog/mxe/mxe/usr/i686-w64-mingw32.static/qt5/include/QtQuick/QQuickItem \
../../../prog/mxe/mxe/usr/i686-w64-mingw32.static/qt5/include/QtQuick/qquickitem.h \
../../../prog/mxe/mxe/usr/i686-w64-mingw32.static/qt5/include/QtQuick/qtquickglobal.h \
../../../prog/mxe/mxe/usr/i686-w64-mingw32.static/qt5/include/QtQml/qtqmlglobal.h \
../../../prog/mxe/mxe/usr/i686-w64-mingw32.static/qt5/include/QtQml/qtqml-config.h \
../../../prog/mxe/mxe/usr/i686-w64-mingw32.static/qt5/include/QtNetwork/qtnetworkglobal.h \
../../../prog/mxe/mxe/usr/i686-w64-mingw32.static/qt5/include/QtNetwork/qtnetwork-config.h \
../../../prog/mxe/mxe/usr/i686-w64-mingw32.static/qt5/include/QtGui/qtguiglobal.h \
../../../prog/mxe/mxe/usr/i686-w64-mingw32.static/qt5/include/QtGui/qtgui-config.h \
../../../prog/mxe/mxe/usr/i686-w64-mingw32.static/qt5/include/QtQuick/qtquick-config.h \
../../../prog/mxe/mxe/usr/i686-w64-mingw32.static/qt5/include/QtQml/qqml.h \
../../../prog/mxe/mxe/usr/i686-w64-mingw32.static/qt5/include/QtQml/qqmlprivate.h \
../../../prog/mxe/mxe/usr/i686-w64-mingw32.static/qt5/include/QtCore/qvariant.h \
../../../prog/mxe/mxe/usr/i686-w64-mingw32.static/qt5/include/QtCore/qmap.h \
../../../prog/mxe/mxe/usr/i686-w64-mingw32.static/qt5/include/QtCore/qdebug.h \
../../../prog/mxe/mxe/usr/i686-w64-mingw32.static/qt5/include/QtCore/qhash.h \
../../../prog/mxe/mxe/usr/i686-w64-mingw32.static/qt5/include/QtCore/qtextstream.h \
../../../prog/mxe/mxe/usr/i686-w64-mingw32.static/qt5/include/QtCore/qiodevice.h \
../../../prog/mxe/mxe/usr/i686-w64-mingw32.static/qt5/include/QtCore/qlocale.h \
../../../prog/mxe/mxe/usr/i686-w64-mingw32.static/qt5/include/QtCore/qshareddata.h \
../../../prog/mxe/mxe/usr/i686-w64-mingw32.static/qt5/include/QtCore/qvector.h \
../../../prog/mxe/mxe/usr/i686-w64-mingw32.static/qt5/include/QtCore/qpoint.h \
../../../prog/mxe/mxe/usr/i686-w64-mingw32.static/qt5/include/QtCore/qset.h \
../../../prog/mxe/mxe/usr/i686-w64-mingw32.static/qt5/include/QtCore/qcontiguouscache.h \
../../../prog/mxe/mxe/usr/i686-w64-mingw32.static/qt5/include/QtCore/qsharedpointer.h \
../../../prog/mxe/mxe/usr/i686-w64-mingw32.static/qt5/include/QtCore/qsharedpointer_impl.h \
../../../prog/mxe/mxe/usr/i686-w64-mingw32.static/qt5/include/QtCore/qurl.h \
../../../prog/mxe/mxe/usr/i686-w64-mingw32.static/qt5/include/QtCore/qurlquery.h \
../../../prog/mxe/mxe/usr/i686-w64-mingw32.static/qt5/include/QtQml/qqmlparserstatus.h \
../../../prog/mxe/mxe/usr/i686-w64-mingw32.static/qt5/include/QtQml/qqmlpropertyvaluesource.h \
../../../prog/mxe/mxe/usr/i686-w64-mingw32.static/qt5/include/QtQml/qqmllist.h \
../../../prog/mxe/mxe/usr/i686-w64-mingw32.static/qt5/include/QtCore/qmetaobject.h \
../../../prog/mxe/mxe/usr/i686-w64-mingw32.static/qt5/include/QtQml/qqmlcomponent.h \
../../../prog/mxe/mxe/usr/i686-w64-mingw32.static/qt5/include/QtQml/qqmlerror.h \
../../../prog/mxe/mxe/usr/i686-w64-mingw32.static/qt5/include/QtQml/qjsvalue.h \
../../../prog/mxe/mxe/usr/i686-w64-mingw32.static/qt5/include/QtCore/QList \
../../../prog/mxe/mxe/usr/i686-w64-mingw32.static/qt5/include/QtGui/qevent.h \
../../../prog/mxe/mxe/usr/i686-w64-mingw32.static/qt5/include/QtGui/qwindowdefs.h \
../../../prog/mxe/mxe/usr/i686-w64-mingw32.static/qt5/include/QtGui/qwindowdefs_win.h \
../../../prog/mxe/mxe/usr/i686-w64-mingw32.static/qt5/include/QtGui/qregion.h \
../../../prog/mxe/mxe/usr/i686-w64-mingw32.static/qt5/include/QtCore/qrect.h \
../../../prog/mxe/mxe/usr/i686-w64-mingw32.static/qt5/include/QtCore/qmargins.h \
../../../prog/mxe/mxe/usr/i686-w64-mingw32.static/qt5/include/QtCore/qsize.h \
../../../prog/mxe/mxe/usr/i686-w64-mingw32.static/qt5/include/QtCore/qdatastream.h \
../../../prog/mxe/mxe/usr/i686-w64-mingw32.static/qt5/include/QtGui/qkeysequence.h \
../../../prog/mxe/mxe/usr/i686-w64-mingw32.static/qt5/include/QtCore/qfile.h \
../../../prog/mxe/mxe/usr/i686-w64-mingw32.static/qt5/include/QtCore/qfiledevice.h \
../../../prog/mxe/mxe/usr/i686-w64-mingw32.static/qt5/include/QtGui/qvector2d.h \
../../../prog/mxe/mxe/usr/i686-w64-mingw32.static/qt5/include/QtGui/qtouchdevice.h \
../../../prog/mxe/mxe/usr/i686-w64-mingw32.static/qt5/include/QtGui/qfont.h \
../../../prog/mxe/mxe/usr/i686-w64-mingw32.static/qt5/include/QtGui/qaccessible.h \
../../../prog/mxe/mxe/usr/i686-w64-mingw32.static/qt5/include/QtCore/qcoreapplication.h \
../../../prog/mxe/mxe/usr/i686-w64-mingw32.static/qt5/include/QtCore/qeventloop.h \
../../../prog/mxe/mxe/usr/i686-w64-mingw32.static/qt5/include/QtGui/qcolor.h \
../../../prog/mxe/mxe/usr/i686-w64-mingw32.static/qt5/include/QtGui/qrgb.h \
../../../prog/mxe/mxe/usr/i686-w64-mingw32.static/qt5/include/QtGui/qrgba64.h \
../../../prog/mxe/mxe/usr/i686-w64-mingw32.static/qt5/include/QtQml/QQmlEngine \
../../../prog/mxe/mxe/usr/i686-w64-mingw32.static/qt5/include/QtQml/qqmlengine.h \
../../../prog/mxe/mxe/usr/i686-w64-mingw32.static/qt5/include/QtQml/qjsengine.h \
../../../prog/mxe/mxe/usr/i686-w64-mingw32.static/qt5/include/QtQml/qqmldebug.h
$(CXX) -c $(CXXFLAGS) $(INCPATH) -o debug/liveboard.o liveboard.cpp
debug/game.o: game.cpp game.h \
player.h \
liveboard.h \
constants.h \
../../../prog/mxe/mxe/usr/i686-w64-mingw32.static/qt5/include/QtCore/QObject \
../../../prog/mxe/mxe/usr/i686-w64-mingw32.static/qt5/include/QtCore/qobject.h \
../../../prog/mxe/mxe/usr/i686-w64-mingw32.static/qt5/include/QtCore/qobjectdefs.h \
../../../prog/mxe/mxe/usr/i686-w64-mingw32.static/qt5/include/QtCore/qnamespace.h \
../../../prog/mxe/mxe/usr/i686-w64-mingw32.static/qt5/include/QtCore/qglobal.h \
../../../prog/mxe/mxe/usr/i686-w64-mingw32.static/qt5/include/QtCore/qconfig-bootstrapped.h \
../../../prog/mxe/mxe/usr/i686-w64-mingw32.static/qt5/include/QtCore/qconfig.h \
../../../prog/mxe/mxe/usr/i686-w64-mingw32.static/qt5/include/QtCore/qtcore-config.h \
../../../prog/mxe/mxe/usr/i686-w64-mingw32.static/qt5/include/QtCore/qsystemdetection.h \
../../../prog/mxe/mxe/usr/i686-w64-mingw32.static/qt5/include/QtCore/qprocessordetection.h \
../../../prog/mxe/mxe/usr/i686-w64-mingw32.static/qt5/include/QtCore/qcompilerdetection.h \
../../../prog/mxe/mxe/usr/i686-w64-mingw32.static/qt5/include/QtCore/qtypeinfo.h \
../../../prog/mxe/mxe/usr/i686-w64-mingw32.static/qt5/include/QtCore/qsysinfo.h \
../../../prog/mxe/mxe/usr/i686-w64-mingw32.static/qt5/include/QtCore/qlogging.h \
../../../prog/mxe/mxe/usr/i686-w64-mingw32.static/qt5/include/QtCore/qflags.h \
../../../prog/mxe/mxe/usr/i686-w64-mingw32.static/qt5/include/QtCore/qtypetraits.h \
../../../prog/mxe/mxe/usr/i686-w64-mingw32.static/qt5/include/QtCore/qatomic.h \
../../../prog/mxe/mxe/usr/i686-w64-mingw32.static/qt5/include/QtCore/qbasicatomic.h \
../../../prog/mxe/mxe/usr/i686-w64-mingw32.static/qt5/include/QtCore/qatomic_bootstrap.h \
../../../prog/mxe/mxe/usr/i686-w64-mingw32.static/qt5/include/QtCore/qgenericatomic.h \
../../../prog/mxe/mxe/usr/i686-w64-mingw32.static/qt5/include/QtCore/qatomic_cxx11.h \
../../../prog/mxe/mxe/usr/i686-w64-mingw32.static/qt5/include/QtCore/qatomic_msvc.h \
../../../prog/mxe/mxe/usr/i686-w64-mingw32.static/qt5/include/QtCore/qglobalstatic.h \
../../../prog/mxe/mxe/usr/i686-w64-mingw32.static/qt5/include/QtCore/qmutex.h \
../../../prog/mxe/mxe/usr/i686-w64-mingw32.static/qt5/include/QtCore/qnumeric.h \
../../../prog/mxe/mxe/usr/i686-w64-mingw32.static/qt5/include/QtCore/qversiontagging.h \
../../../prog/mxe/mxe/usr/i686-w64-mingw32.static/qt5/include/QtCore/qobjectdefs_impl.h \
../../../prog/mxe/mxe/usr/i686-w64-mingw32.static/qt5/include/QtCore/qstring.h \
../../../prog/mxe/mxe/usr/i686-w64-mingw32.static/qt5/include/QtCore/qchar.h \
../../../prog/mxe/mxe/usr/i686-w64-mingw32.static/qt5/include/QtCore/qbytearray.h \
../../../prog/mxe/mxe/usr/i686-w64-mingw32.static/qt5/include/QtCore/qrefcount.h \
../../../prog/mxe/mxe/usr/i686-w64-mingw32.static/qt5/include/QtCore/qarraydata.h \
../../../prog/mxe/mxe/usr/i686-w64-mingw32.static/qt5/include/QtCore/qstringbuilder.h \
../../../prog/mxe/mxe/usr/i686-w64-mingw32.static/qt5/include/QtCore/qlist.h \
../../../prog/mxe/mxe/usr/i686-w64-mingw32.static/qt5/include/QtCore/qalgorithms.h \
../../../prog/mxe/mxe/usr/i686-w64-mingw32.static/qt5/include/QtCore/qiterator.h \
../../../prog/mxe/mxe/usr/i686-w64-mingw32.static/qt5/include/QtCore/qhashfunctions.h \
../../../prog/mxe/mxe/usr/i686-w64-mingw32.static/qt5/include/QtCore/qpair.h \
../../../prog/mxe/mxe/usr/i686-w64-mingw32.static/qt5/include/QtCore/qbytearraylist.h \
../../../prog/mxe/mxe/usr/i686-w64-mingw32.static/qt5/include/QtCore/qstringlist.h \
../../../prog/mxe/mxe/usr/i686-w64-mingw32.static/qt5/include/QtCore/qregexp.h \
../../../prog/mxe/mxe/usr/i686-w64-mingw32.static/qt5/include/QtCore/qstringmatcher.h \
../../../prog/mxe/mxe/usr/i686-w64-mingw32.static/qt5/include/QtCore/qcoreevent.h \
../../../prog/mxe/mxe/usr/i686-w64-mingw32.static/qt5/include/QtCore/qscopedpointer.h \
../../../prog/mxe/mxe/usr/i686-w64-mingw32.static/qt5/include/QtCore/qmetatype.h \
../../../prog/mxe/mxe/usr/i686-w64-mingw32.static/qt5/include/QtCore/qvarlengtharray.h \
../../../prog/mxe/mxe/usr/i686-w64-mingw32.static/qt5/include/QtCore/qcontainerfwd.h \
../../../prog/mxe/mxe/usr/i686-w64-mingw32.static/qt5/include/QtCore/qobject_impl.h \
../../../prog/mxe/mxe/usr/i686-w64-mingw32.static/qt5/include/QtQuick/QQuickItem \
../../../prog/mxe/mxe/usr/i686-w64-mingw32.static/qt5/include/QtQuick/qquickitem.h \
../../../prog/mxe/mxe/usr/i686-w64-mingw32.static/qt5/include/QtQuick/qtquickglobal.h \
../../../prog/mxe/mxe/usr/i686-w64-mingw32.static/qt5/include/QtQml/qtqmlglobal.h \
../../../prog/mxe/mxe/usr/i686-w64-mingw32.static/qt5/include/QtQml/qtqml-config.h \
../../../prog/mxe/mxe/usr/i686-w64-mingw32.static/qt5/include/QtNetwork/qtnetworkglobal.h \
../../../prog/mxe/mxe/usr/i686-w64-mingw32.static/qt5/include/QtNetwork/qtnetwork-config.h \
../../../prog/mxe/mxe/usr/i686-w64-mingw32.static/qt5/include/QtGui/qtguiglobal.h \
../../../prog/mxe/mxe/usr/i686-w64-mingw32.static/qt5/include/QtGui/qtgui-config.h \
../../../prog/mxe/mxe/usr/i686-w64-mingw32.static/qt5/include/QtQuick/qtquick-config.h \
../../../prog/mxe/mxe/usr/i686-w64-mingw32.static/qt5/include/QtQml/qqml.h \
../../../prog/mxe/mxe/usr/i686-w64-mingw32.static/qt5/include/QtQml/qqmlprivate.h \
../../../prog/mxe/mxe/usr/i686-w64-mingw32.static/qt5/include/QtCore/qvariant.h \
../../../prog/mxe/mxe/usr/i686-w64-mingw32.static/qt5/include/QtCore/qmap.h \
../../../prog/mxe/mxe/usr/i686-w64-mingw32.static/qt5/include/QtCore/qdebug.h \
../../../prog/mxe/mxe/usr/i686-w64-mingw32.static/qt5/include/QtCore/qhash.h \
../../../prog/mxe/mxe/usr/i686-w64-mingw32.static/qt5/include/QtCore/qtextstream.h \
../../../prog/mxe/mxe/usr/i686-w64-mingw32.static/qt5/include/QtCore/qiodevice.h \
../../../prog/mxe/mxe/usr/i686-w64-mingw32.static/qt5/include/QtCore/qlocale.h \
../../../prog/mxe/mxe/usr/i686-w64-mingw32.static/qt5/include/QtCore/qshareddata.h \
../../../prog/mxe/mxe/usr/i686-w64-mingw32.static/qt5/include/QtCore/qvector.h \
../../../prog/mxe/mxe/usr/i686-w64-mingw32.static/qt5/include/QtCore/qpoint.h \
../../../prog/mxe/mxe/usr/i686-w64-mingw32.static/qt5/include/QtCore/qset.h \
../../../prog/mxe/mxe/usr/i686-w64-mingw32.static/qt5/include/QtCore/qcontiguouscache.h \
../../../prog/mxe/mxe/usr/i686-w64-mingw32.static/qt5/include/QtCore/qsharedpointer.h \
../../../prog/mxe/mxe/usr/i686-w64-mingw32.static/qt5/include/QtCore/qsharedpointer_impl.h \
../../../prog/mxe/mxe/usr/i686-w64-mingw32.static/qt5/include/QtCore/qurl.h \
../../../prog/mxe/mxe/usr/i686-w64-mingw32.static/qt5/include/QtCore/qurlquery.h \
../../../prog/mxe/mxe/usr/i686-w64-mingw32.static/qt5/include/QtQml/qqmlparserstatus.h \
../../../prog/mxe/mxe/usr/i686-w64-mingw32.static/qt5/include/QtQml/qqmlpropertyvaluesource.h \
../../../prog/mxe/mxe/usr/i686-w64-mingw32.static/qt5/include/QtQml/qqmllist.h \
../../../prog/mxe/mxe/usr/i686-w64-mingw32.static/qt5/include/QtCore/qmetaobject.h \
../../../prog/mxe/mxe/usr/i686-w64-mingw32.static/qt5/include/QtQml/qqmlcomponent.h \
../../../prog/mxe/mxe/usr/i686-w64-mingw32.static/qt5/include/QtQml/qqmlerror.h \
../../../prog/mxe/mxe/usr/i686-w64-mingw32.static/qt5/include/QtQml/qjsvalue.h \
../../../prog/mxe/mxe/usr/i686-w64-mingw32.static/qt5/include/QtCore/QList \
../../../prog/mxe/mxe/usr/i686-w64-mingw32.static/qt5/include/QtGui/qevent.h \
../../../prog/mxe/mxe/usr/i686-w64-mingw32.static/qt5/include/QtGui/qwindowdefs.h \
../../../prog/mxe/mxe/usr/i686-w64-mingw32.static/qt5/include/QtGui/qwindowdefs_win.h \
../../../prog/mxe/mxe/usr/i686-w64-mingw32.static/qt5/include/QtGui/qregion.h \
../../../prog/mxe/mxe/usr/i686-w64-mingw32.static/qt5/include/QtCore/qrect.h \
../../../prog/mxe/mxe/usr/i686-w64-mingw32.static/qt5/include/QtCore/qmargins.h \
../../../prog/mxe/mxe/usr/i686-w64-mingw32.static/qt5/include/QtCore/qsize.h \
../../../prog/mxe/mxe/usr/i686-w64-mingw32.static/qt5/include/QtCore/qdatastream.h \
../../../prog/mxe/mxe/usr/i686-w64-mingw32.static/qt5/include/QtGui/qkeysequence.h \
../../../prog/mxe/mxe/usr/i686-w64-mingw32.static/qt5/include/QtCore/qfile.h \
../../../prog/mxe/mxe/usr/i686-w64-mingw32.static/qt5/include/QtCore/qfiledevice.h \
../../../prog/mxe/mxe/usr/i686-w64-mingw32.static/qt5/include/QtGui/qvector2d.h \
../../../prog/mxe/mxe/usr/i686-w64-mingw32.static/qt5/include/QtGui/qtouchdevice.h \
../../../prog/mxe/mxe/usr/i686-w64-mingw32.static/qt5/include/QtGui/qfont.h \
../../../prog/mxe/mxe/usr/i686-w64-mingw32.static/qt5/include/QtGui/qaccessible.h \
../../../prog/mxe/mxe/usr/i686-w64-mingw32.static/qt5/include/QtCore/qcoreapplication.h \
../../../prog/mxe/mxe/usr/i686-w64-mingw32.static/qt5/include/QtCore/qeventloop.h \
../../../prog/mxe/mxe/usr/i686-w64-mingw32.static/qt5/include/QtGui/qcolor.h \
../../../prog/mxe/mxe/usr/i686-w64-mingw32.static/qt5/include/QtGui/qrgb.h \
../../../prog/mxe/mxe/usr/i686-w64-mingw32.static/qt5/include/QtGui/qrgba64.h \
../../../prog/mxe/mxe/usr/i686-w64-mingw32.static/qt5/include/QtQml/QQmlEngine \
../../../prog/mxe/mxe/usr/i686-w64-mingw32.static/qt5/include/QtQml/qqmlengine.h \
../../../prog/mxe/mxe/usr/i686-w64-mingw32.static/qt5/include/QtQml/qjsengine.h \
../../../prog/mxe/mxe/usr/i686-w64-mingw32.static/qt5/include/QtQml/qqmldebug.h
$(CXX) -c $(CXXFLAGS) $(INCPATH) -o debug/game.o game.cpp
debug/player.o: player.cpp player.h
$(CXX) -c $(CXXFLAGS) $(INCPATH) -o debug/player.o player.cpp
debug/reversiqt_qml_plugin_import.o: /data/qtProjects/reversi/reversiQT/reversiqt_qml_plugin_import.cpp
$(CXX) -c $(CXXFLAGS) $(INCPATH) -o debug/reversiqt_qml_plugin_import.o /data/qtProjects/reversi/reversiQT/reversiqt_qml_plugin_import.cpp
debug/reversiqt_plugin_import.o: /data/qtProjects/reversi/reversiQT/reversiqt_plugin_import.cpp
$(CXX) -c $(CXXFLAGS) $(INCPATH) -o debug/reversiqt_plugin_import.o /data/qtProjects/reversi/reversiQT/reversiqt_plugin_import.cpp
debug/qrc_qml.o: debug/qrc_qml.cpp
$(CXX) -c $(CXXFLAGS) $(INCPATH) -o debug/qrc_qml.o debug/qrc_qml.cpp
debug/moc_broker.o: debug/moc_broker.cpp
$(CXX) -c $(CXXFLAGS) $(INCPATH) -o debug/moc_broker.o debug/moc_broker.cpp
debug/moc_constants.o: debug/moc_constants.cpp
$(CXX) -c $(CXXFLAGS) $(INCPATH) -o debug/moc_constants.o debug/moc_constants.cpp
####### Install
install: FORCE
uninstall: FORCE
FORCE: