Makefile 101 KB
Newer Older
longpanda's avatar
longpanda committed
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
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
#############################################################################
# Makefile for building: Ventoy2Disk
# Generated by qmake (3.1) (Qt 5.9.0)
# Project:  ../Ventoy2Disk/Ventoy2Disk.pro
# Template: app
# Command: /home/panda/Qt5.9.0/5.9/gcc_64/bin/qmake -o Makefile ../Ventoy2Disk/Ventoy2Disk.pro -spec linux-g++
#############################################################################

MAKEFILE      = Makefile

####### Compiler, tools and options

CC            = gcc
CXX           = g++
DEFINES       = -DQT_DEPRECATED_WARNINGS -DSTATIC=static -DINIT= -DQT_NO_DEBUG -DQT_WIDGETS_LIB -DQT_GUI_LIB -DQT_CORE_LIB
CFLAGS        = -pipe -O2 -Wall -W -D_REENTRANT -fPIC $(DEFINES)
CXXFLAGS      = -pipe -O2 -std=gnu++11 -Wall -W -D_REENTRANT -fPIC $(DEFINES)
INCPATH       = -I../Ventoy2Disk -I. -I../../Ventoy2Disk/Core -I../../Ventoy2Disk/Web -I../../Ventoy2Disk/QT -I../../Ventoy2Disk/Include -I../../Ventoy2Disk/Lib/libhttp/include -I/home/panda/Ventoy2Disk/Lib/fat_io_lib/include -I../../Ventoy2Disk/Lib/xz-embedded/linux/include -I../../Ventoy2Disk/Lib/xz-embedded/linux/include/linux -I../../Ventoy2Disk/Lib/xz-embedded/userspace -I../../Ventoy2Disk/Lib/exfat/src/libexfat -I../../Ventoy2Disk/Lib/fat_io_lib -I../../Qt5.9.0/5.9/gcc_64/include -I../../Qt5.9.0/5.9/gcc_64/include/QtWidgets -I../../Qt5.9.0/5.9/gcc_64/include/QtGui -I../../Qt5.9.0/5.9/gcc_64/include/QtCore -I. -isystem /usr/include/libdrm -I. -I../../Qt5.9.0/5.9/gcc_64/mkspecs/linux-g++
QMAKE         = /home/panda/Qt5.9.0/5.9/gcc_64/bin/qmake
DEL_FILE      = rm -f
CHK_DIR_EXISTS= test -d
MKDIR         = mkdir -p
COPY          = cp -f
COPY_FILE     = cp -f
COPY_DIR      = cp -f -R
INSTALL_FILE  = install -m 644 -p
INSTALL_PROGRAM = install -m 755 -p
INSTALL_DIR   = cp -f -R
QINSTALL_FILE = /home/panda/Qt5.9.0/5.9/gcc_64/bin/qmake -install qinstall file
QINSTALL_PROGRAM = /home/panda/Qt5.9.0/5.9/gcc_64/bin/qmake -install qinstall program
QINSTALL_DIR  = /home/panda/Qt5.9.0/5.9/gcc_64/bin/qmake -install qinstall directory
DEL_FILE      = rm -f
SYMLINK       = ln -f -s
DEL_DIR       = rmdir
MOVE          = mv -f
TAR           = tar -cf
COMPRESS      = gzip -9f
DISTNAME      = Ventoy2Disk1.0.0
DISTDIR = /home/panda/590/build-Ventoy2Disk-Desktop_Qt_5_9_0_GCC_64bit-Release/.tmp/Ventoy2Disk1.0.0
LINK          = g++
LFLAGS        = -Wl,-O1 -Wl,-rpath,/home/panda/Qt5.9.0/5.9/gcc_64/lib
LIBS          = $(SUBLIBS) -L/home/panda/Qt5.9.0/5.9/gcc_64/lib -lQt5Widgets -lQt5Gui -lQt5Core -lGL -lpthread 
AR            = ar cqs
RANLIB        = 
SED           = sed
STRIP         = strip

####### Output directory

OBJECTS_DIR   = ./

####### Files

SOURCES       = ../Ventoy2Disk/Core/ventoy_crc32.c \
		../Ventoy2Disk/Core/ventoy_disk.c \
		../Ventoy2Disk/Core/ventoy_json.c \
		../Ventoy2Disk/Core/ventoy_log.c \
		../Ventoy2Disk/Core/ventoy_md5.c \
		../Ventoy2Disk/Core/ventoy_util.c \
		../Ventoy2Disk/Lib/exfat/src/libexfat/cluster.c \
		../Ventoy2Disk/Lib/exfat/src/libexfat/io.c \
		../Ventoy2Disk/Lib/exfat/src/libexfat/lookup.c \
		../Ventoy2Disk/Lib/exfat/src/libexfat/mount.c \
		../Ventoy2Disk/Lib/exfat/src/libexfat/node.c \
		../Ventoy2Disk/Lib/exfat/src/libexfat/repair.c \
		../Ventoy2Disk/Lib/exfat/src/libexfat/time.c \
		../Ventoy2Disk/Lib/exfat/src/libexfat/utf.c \
		../Ventoy2Disk/Lib/exfat/src/libexfat/utils.c \
		../Ventoy2Disk/Lib/exfat/src/mkfs/cbm.c \
		../Ventoy2Disk/Lib/exfat/src/mkfs/fat.c \
		../Ventoy2Disk/Lib/exfat/src/mkfs/mkexfat.c \
		../Ventoy2Disk/Lib/exfat/src/mkfs/mkexfat_main.c \
		../Ventoy2Disk/Lib/exfat/src/mkfs/rootdir.c \
		../Ventoy2Disk/Lib/exfat/src/mkfs/uct.c \
		../Ventoy2Disk/Lib/exfat/src/mkfs/uctc.c \
		../Ventoy2Disk/Lib/exfat/src/mkfs/vbr.c \
		../Ventoy2Disk/Lib/fat_io_lib/fat_access.c \
		../Ventoy2Disk/Lib/fat_io_lib/fat_cache.c \
		../Ventoy2Disk/Lib/fat_io_lib/fat_filelib.c \
		../Ventoy2Disk/Lib/fat_io_lib/fat_format.c \
		../Ventoy2Disk/Lib/fat_io_lib/fat_misc.c \
		../Ventoy2Disk/Lib/fat_io_lib/fat_string.c \
		../Ventoy2Disk/Lib/fat_io_lib/fat_table.c \
		../Ventoy2Disk/Lib/fat_io_lib/fat_write.c \
		../Ventoy2Disk/Lib/xz-embedded/linux/lib/decompress_unxz.c \
		../Ventoy2Disk/QT/refresh_icon_data.c \
		../Ventoy2Disk/QT/secure_icon_data.c \
		../Ventoy2Disk/QT/ventoy_qt_stub.c \
		../Ventoy2Disk/Web/ventoy_http.c \
		../Ventoy2Disk/main.cpp \
		../Ventoy2Disk/partcfgdialog.cpp \
		../Ventoy2Disk/ventoy2diskwindow.cpp moc_partcfgdialog.cpp \
		moc_ventoy2diskwindow.cpp
OBJECTS       = ventoy_crc32.o \
		ventoy_disk.o \
		ventoy_json.o \
		ventoy_log.o \
		ventoy_md5.o \
		ventoy_util.o \
		cluster.o \
		io.o \
		lookup.o \
		mount.o \
		node.o \
		repair.o \
		time.o \
		utf.o \
		utils.o \
		cbm.o \
		fat.o \
		mkexfat.o \
		mkexfat_main.o \
		rootdir.o \
		uct.o \
		uctc.o \
		vbr.o \
		fat_access.o \
		fat_cache.o \
		fat_filelib.o \
		fat_format.o \
		fat_misc.o \
		fat_string.o \
		fat_table.o \
		fat_write.o \
		decompress_unxz.o \
		refresh_icon_data.o \
		secure_icon_data.o \
		ventoy_qt_stub.o \
		ventoy_http.o \
		main.o \
		partcfgdialog.o \
		ventoy2diskwindow.o \
		moc_partcfgdialog.o \
		moc_ventoy2diskwindow.o
DIST          = ../Ventoy2Disk/Lib/fat_io_lib/API.txt \
		../Ventoy2Disk/Lib/fat_io_lib/COPYRIGHT.txt \
		../Ventoy2Disk/Lib/fat_io_lib/Configuration.txt \
		../Ventoy2Disk/Lib/fat_io_lib/History.txt \
		../Ventoy2Disk/Lib/fat_io_lib/License.txt \
		../Ventoy2Disk/Lib/fat_io_lib/Media \
		../Ventoy2Disk/Access \
		../Ventoy2Disk/API.txt \
		../Ventoy2Disk/Lib/fat_io_lib/version.txt \
		../../Qt5.9.0/5.9/gcc_64/mkspecs/features/spec_pre.prf \
		../../Qt5.9.0/5.9/gcc_64/mkspecs/common/unix.conf \
		../../Qt5.9.0/5.9/gcc_64/mkspecs/common/linux.conf \
		../../Qt5.9.0/5.9/gcc_64/mkspecs/common/sanitize.conf \
		../../Qt5.9.0/5.9/gcc_64/mkspecs/common/gcc-base.conf \
		../../Qt5.9.0/5.9/gcc_64/mkspecs/common/gcc-base-unix.conf \
		../../Qt5.9.0/5.9/gcc_64/mkspecs/common/g++-base.conf \
		../../Qt5.9.0/5.9/gcc_64/mkspecs/common/g++-unix.conf \
		../../Qt5.9.0/5.9/gcc_64/mkspecs/qconfig.pri \
		../../Qt5.9.0/5.9/gcc_64/mkspecs/modules/qt_lib_3danimation.pri \
		../../Qt5.9.0/5.9/gcc_64/mkspecs/modules/qt_lib_3danimation_private.pri \
		../../Qt5.9.0/5.9/gcc_64/mkspecs/modules/qt_lib_3dcore.pri \
		../../Qt5.9.0/5.9/gcc_64/mkspecs/modules/qt_lib_3dcore_private.pri \
		../../Qt5.9.0/5.9/gcc_64/mkspecs/modules/qt_lib_3dextras.pri \
		../../Qt5.9.0/5.9/gcc_64/mkspecs/modules/qt_lib_3dextras_private.pri \
		../../Qt5.9.0/5.9/gcc_64/mkspecs/modules/qt_lib_3dinput.pri \
		../../Qt5.9.0/5.9/gcc_64/mkspecs/modules/qt_lib_3dinput_private.pri \
		../../Qt5.9.0/5.9/gcc_64/mkspecs/modules/qt_lib_3dlogic.pri \
		../../Qt5.9.0/5.9/gcc_64/mkspecs/modules/qt_lib_3dlogic_private.pri \
		../../Qt5.9.0/5.9/gcc_64/mkspecs/modules/qt_lib_3dquick.pri \
		../../Qt5.9.0/5.9/gcc_64/mkspecs/modules/qt_lib_3dquick_private.pri \
		../../Qt5.9.0/5.9/gcc_64/mkspecs/modules/qt_lib_3dquickanimation.pri \
		../../Qt5.9.0/5.9/gcc_64/mkspecs/modules/qt_lib_3dquickanimation_private.pri \
		../../Qt5.9.0/5.9/gcc_64/mkspecs/modules/qt_lib_3dquickextras.pri \
		../../Qt5.9.0/5.9/gcc_64/mkspecs/modules/qt_lib_3dquickextras_private.pri \
		../../Qt5.9.0/5.9/gcc_64/mkspecs/modules/qt_lib_3dquickinput.pri \
		../../Qt5.9.0/5.9/gcc_64/mkspecs/modules/qt_lib_3dquickinput_private.pri \
		../../Qt5.9.0/5.9/gcc_64/mkspecs/modules/qt_lib_3dquickrender.pri \
		../../Qt5.9.0/5.9/gcc_64/mkspecs/modules/qt_lib_3dquickrender_private.pri \
		../../Qt5.9.0/5.9/gcc_64/mkspecs/modules/qt_lib_3dquickscene2d.pri \
		../../Qt5.9.0/5.9/gcc_64/mkspecs/modules/qt_lib_3dquickscene2d_private.pri \
		../../Qt5.9.0/5.9/gcc_64/mkspecs/modules/qt_lib_3drender.pri \
		../../Qt5.9.0/5.9/gcc_64/mkspecs/modules/qt_lib_3drender_private.pri \
		../../Qt5.9.0/5.9/gcc_64/mkspecs/modules/qt_lib_accessibility_support_private.pri \
		../../Qt5.9.0/5.9/gcc_64/mkspecs/modules/qt_lib_bluetooth.pri \
		../../Qt5.9.0/5.9/gcc_64/mkspecs/modules/qt_lib_bluetooth_private.pri \
		../../Qt5.9.0/5.9/gcc_64/mkspecs/modules/qt_lib_bootstrap_private.pri \
		../../Qt5.9.0/5.9/gcc_64/mkspecs/modules/qt_lib_charts.pri \
		../../Qt5.9.0/5.9/gcc_64/mkspecs/modules/qt_lib_charts_private.pri \
		../../Qt5.9.0/5.9/gcc_64/mkspecs/modules/qt_lib_concurrent.pri \
		../../Qt5.9.0/5.9/gcc_64/mkspecs/modules/qt_lib_concurrent_private.pri \
		../../Qt5.9.0/5.9/gcc_64/mkspecs/modules/qt_lib_core.pri \
		../../Qt5.9.0/5.9/gcc_64/mkspecs/modules/qt_lib_core_private.pri \
		../../Qt5.9.0/5.9/gcc_64/mkspecs/modules/qt_lib_datavisualization.pri \
		../../Qt5.9.0/5.9/gcc_64/mkspecs/modules/qt_lib_datavisualization_private.pri \
		../../Qt5.9.0/5.9/gcc_64/mkspecs/modules/qt_lib_dbus.pri \
		../../Qt5.9.0/5.9/gcc_64/mkspecs/modules/qt_lib_dbus_private.pri \
		../../Qt5.9.0/5.9/gcc_64/mkspecs/modules/qt_lib_designer.pri \
		../../Qt5.9.0/5.9/gcc_64/mkspecs/modules/qt_lib_designer_private.pri \
		../../Qt5.9.0/5.9/gcc_64/mkspecs/modules/qt_lib_designercomponents_private.pri \
		../../Qt5.9.0/5.9/gcc_64/mkspecs/modules/qt_lib_devicediscovery_support_private.pri \
		../../Qt5.9.0/5.9/gcc_64/mkspecs/modules/qt_lib_egl_support_private.pri \
		../../Qt5.9.0/5.9/gcc_64/mkspecs/modules/qt_lib_eglfsdeviceintegration_private.pri \
		../../Qt5.9.0/5.9/gcc_64/mkspecs/modules/qt_lib_eventdispatcher_support_private.pri \
		../../Qt5.9.0/5.9/gcc_64/mkspecs/modules/qt_lib_fb_support_private.pri \
		../../Qt5.9.0/5.9/gcc_64/mkspecs/modules/qt_lib_fontdatabase_support_private.pri \
		../../Qt5.9.0/5.9/gcc_64/mkspecs/modules/qt_lib_gamepad.pri \
		../../Qt5.9.0/5.9/gcc_64/mkspecs/modules/qt_lib_gamepad_private.pri \
		../../Qt5.9.0/5.9/gcc_64/mkspecs/modules/qt_lib_glx_support_private.pri \
		../../Qt5.9.0/5.9/gcc_64/mkspecs/modules/qt_lib_gui.pri \
		../../Qt5.9.0/5.9/gcc_64/mkspecs/modules/qt_lib_gui_private.pri \
		../../Qt5.9.0/5.9/gcc_64/mkspecs/modules/qt_lib_help.pri \
		../../Qt5.9.0/5.9/gcc_64/mkspecs/modules/qt_lib_help_private.pri \
		../../Qt5.9.0/5.9/gcc_64/mkspecs/modules/qt_lib_input_support_private.pri \
		../../Qt5.9.0/5.9/gcc_64/mkspecs/modules/qt_lib_kms_support_private.pri \
		../../Qt5.9.0/5.9/gcc_64/mkspecs/modules/qt_lib_linuxaccessibility_support_private.pri \
		../../Qt5.9.0/5.9/gcc_64/mkspecs/modules/qt_lib_location.pri \
		../../Qt5.9.0/5.9/gcc_64/mkspecs/modules/qt_lib_location_private.pri \
		../../Qt5.9.0/5.9/gcc_64/mkspecs/modules/qt_lib_multimedia.pri \
		../../Qt5.9.0/5.9/gcc_64/mkspecs/modules/qt_lib_multimedia_private.pri \
		../../Qt5.9.0/5.9/gcc_64/mkspecs/modules/qt_lib_multimediawidgets.pri \
		../../Qt5.9.0/5.9/gcc_64/mkspecs/modules/qt_lib_multimediawidgets_private.pri \
		../../Qt5.9.0/5.9/gcc_64/mkspecs/modules/qt_lib_network.pri \
		../../Qt5.9.0/5.9/gcc_64/mkspecs/modules/qt_lib_network_private.pri \
		../../Qt5.9.0/5.9/gcc_64/mkspecs/modules/qt_lib_nfc.pri \
		../../Qt5.9.0/5.9/gcc_64/mkspecs/modules/qt_lib_nfc_private.pri \
		../../Qt5.9.0/5.9/gcc_64/mkspecs/modules/qt_lib_opengl.pri \
		../../Qt5.9.0/5.9/gcc_64/mkspecs/modules/qt_lib_opengl_private.pri \
		../../Qt5.9.0/5.9/gcc_64/mkspecs/modules/qt_lib_openglextensions.pri \
		../../Qt5.9.0/5.9/gcc_64/mkspecs/modules/qt_lib_openglextensions_private.pri \
		../../Qt5.9.0/5.9/gcc_64/mkspecs/modules/qt_lib_packetprotocol_private.pri \
		../../Qt5.9.0/5.9/gcc_64/mkspecs/modules/qt_lib_platformcompositor_support_private.pri \
		../../Qt5.9.0/5.9/gcc_64/mkspecs/modules/qt_lib_positioning.pri \
		../../Qt5.9.0/5.9/gcc_64/mkspecs/modules/qt_lib_positioning_private.pri \
		../../Qt5.9.0/5.9/gcc_64/mkspecs/modules/qt_lib_printsupport.pri \
		../../Qt5.9.0/5.9/gcc_64/mkspecs/modules/qt_lib_printsupport_private.pri \
		../../Qt5.9.0/5.9/gcc_64/mkspecs/modules/qt_lib_qml.pri \
		../../Qt5.9.0/5.9/gcc_64/mkspecs/modules/qt_lib_qml_private.pri \
		../../Qt5.9.0/5.9/gcc_64/mkspecs/modules/qt_lib_qmldebug_private.pri \
		../../Qt5.9.0/5.9/gcc_64/mkspecs/modules/qt_lib_qmldevtools_private.pri \
		../../Qt5.9.0/5.9/gcc_64/mkspecs/modules/qt_lib_qmltest.pri \
		../../Qt5.9.0/5.9/gcc_64/mkspecs/modules/qt_lib_qmltest_private.pri \
		../../Qt5.9.0/5.9/gcc_64/mkspecs/modules/qt_lib_qtmultimediaquicktools_private.pri \
		../../Qt5.9.0/5.9/gcc_64/mkspecs/modules/qt_lib_quick.pri \
		../../Qt5.9.0/5.9/gcc_64/mkspecs/modules/qt_lib_quick_private.pri \
		../../Qt5.9.0/5.9/gcc_64/mkspecs/modules/qt_lib_quickcontrols2.pri \
		../../Qt5.9.0/5.9/gcc_64/mkspecs/modules/qt_lib_quickcontrols2_private.pri \
		../../Qt5.9.0/5.9/gcc_64/mkspecs/modules/qt_lib_quickparticles_private.pri \
		../../Qt5.9.0/5.9/gcc_64/mkspecs/modules/qt_lib_quicktemplates2_private.pri \
		../../Qt5.9.0/5.9/gcc_64/mkspecs/modules/qt_lib_quickwidgets.pri \
		../../Qt5.9.0/5.9/gcc_64/mkspecs/modules/qt_lib_quickwidgets_private.pri \
		../../Qt5.9.0/5.9/gcc_64/mkspecs/modules/qt_lib_scxml.pri \
		../../Qt5.9.0/5.9/gcc_64/mkspecs/modules/qt_lib_scxml_private.pri \
		../../Qt5.9.0/5.9/gcc_64/mkspecs/modules/qt_lib_sensors.pri \
		../../Qt5.9.0/5.9/gcc_64/mkspecs/modules/qt_lib_sensors_private.pri \
		../../Qt5.9.0/5.9/gcc_64/mkspecs/modules/qt_lib_serialbus.pri \
		../../Qt5.9.0/5.9/gcc_64/mkspecs/modules/qt_lib_serialbus_private.pri \
		../../Qt5.9.0/5.9/gcc_64/mkspecs/modules/qt_lib_serialport.pri \
		../../Qt5.9.0/5.9/gcc_64/mkspecs/modules/qt_lib_serialport_private.pri \
		../../Qt5.9.0/5.9/gcc_64/mkspecs/modules/qt_lib_service_support_private.pri \
		../../Qt5.9.0/5.9/gcc_64/mkspecs/modules/qt_lib_sql.pri \
		../../Qt5.9.0/5.9/gcc_64/mkspecs/modules/qt_lib_sql_private.pri \
		../../Qt5.9.0/5.9/gcc_64/mkspecs/modules/qt_lib_svg.pri \
		../../Qt5.9.0/5.9/gcc_64/mkspecs/modules/qt_lib_svg_private.pri \
		../../Qt5.9.0/5.9/gcc_64/mkspecs/modules/qt_lib_testlib.pri \
		../../Qt5.9.0/5.9/gcc_64/mkspecs/modules/qt_lib_testlib_private.pri \
		../../Qt5.9.0/5.9/gcc_64/mkspecs/modules/qt_lib_theme_support_private.pri \
		../../Qt5.9.0/5.9/gcc_64/mkspecs/modules/qt_lib_uiplugin.pri \
		../../Qt5.9.0/5.9/gcc_64/mkspecs/modules/qt_lib_uitools.pri \
		../../Qt5.9.0/5.9/gcc_64/mkspecs/modules/qt_lib_uitools_private.pri \
		../../Qt5.9.0/5.9/gcc_64/mkspecs/modules/qt_lib_webchannel.pri \
		../../Qt5.9.0/5.9/gcc_64/mkspecs/modules/qt_lib_webchannel_private.pri \
		../../Qt5.9.0/5.9/gcc_64/mkspecs/modules/qt_lib_webengine.pri \
		../../Qt5.9.0/5.9/gcc_64/mkspecs/modules/qt_lib_webengine_private.pri \
		../../Qt5.9.0/5.9/gcc_64/mkspecs/modules/qt_lib_webenginecore.pri \
		../../Qt5.9.0/5.9/gcc_64/mkspecs/modules/qt_lib_webenginecore_private.pri \
		../../Qt5.9.0/5.9/gcc_64/mkspecs/modules/qt_lib_webenginecoreheaders_private.pri \
		../../Qt5.9.0/5.9/gcc_64/mkspecs/modules/qt_lib_webenginewidgets.pri \
		../../Qt5.9.0/5.9/gcc_64/mkspecs/modules/qt_lib_webenginewidgets_private.pri \
		../../Qt5.9.0/5.9/gcc_64/mkspecs/modules/qt_lib_websockets.pri \
		../../Qt5.9.0/5.9/gcc_64/mkspecs/modules/qt_lib_websockets_private.pri \
		../../Qt5.9.0/5.9/gcc_64/mkspecs/modules/qt_lib_webview.pri \
		../../Qt5.9.0/5.9/gcc_64/mkspecs/modules/qt_lib_webview_private.pri \
		../../Qt5.9.0/5.9/gcc_64/mkspecs/modules/qt_lib_widgets.pri \
		../../Qt5.9.0/5.9/gcc_64/mkspecs/modules/qt_lib_widgets_private.pri \
		../../Qt5.9.0/5.9/gcc_64/mkspecs/modules/qt_lib_x11extras.pri \
		../../Qt5.9.0/5.9/gcc_64/mkspecs/modules/qt_lib_x11extras_private.pri \
		../../Qt5.9.0/5.9/gcc_64/mkspecs/modules/qt_lib_xcb_qpa_lib_private.pri \
		../../Qt5.9.0/5.9/gcc_64/mkspecs/modules/qt_lib_xml.pri \
		../../Qt5.9.0/5.9/gcc_64/mkspecs/modules/qt_lib_xml_private.pri \
		../../Qt5.9.0/5.9/gcc_64/mkspecs/modules/qt_lib_xmlpatterns.pri \
		../../Qt5.9.0/5.9/gcc_64/mkspecs/modules/qt_lib_xmlpatterns_private.pri \
		../../Qt5.9.0/5.9/gcc_64/mkspecs/features/qt_functions.prf \
		../../Qt5.9.0/5.9/gcc_64/mkspecs/features/qt_config.prf \
		../../Qt5.9.0/5.9/gcc_64/mkspecs/linux-g++/qmake.conf \
		../../Qt5.9.0/5.9/gcc_64/mkspecs/features/spec_post.prf \
		../../Qt5.9.0/5.9/gcc_64/mkspecs/features/exclusive_builds.prf \
		../../Qt5.9.0/5.9/gcc_64/mkspecs/features/toolchain.prf \
		../../Qt5.9.0/5.9/gcc_64/mkspecs/features/default_pre.prf \
		../../Qt5.9.0/5.9/gcc_64/mkspecs/features/resolve_config.prf \
		../../Qt5.9.0/5.9/gcc_64/mkspecs/features/default_post.prf \
		../../Qt5.9.0/5.9/gcc_64/mkspecs/features/warn_on.prf \
		../../Qt5.9.0/5.9/gcc_64/mkspecs/features/qt.prf \
		../../Qt5.9.0/5.9/gcc_64/mkspecs/features/resources.prf \
		../../Qt5.9.0/5.9/gcc_64/mkspecs/features/moc.prf \
		../../Qt5.9.0/5.9/gcc_64/mkspecs/features/unix/opengl.prf \
		../../Qt5.9.0/5.9/gcc_64/mkspecs/features/uic.prf \
		../../Qt5.9.0/5.9/gcc_64/mkspecs/features/unix/thread.prf \
		../../Qt5.9.0/5.9/gcc_64/mkspecs/features/qmake_use.prf \
		../../Qt5.9.0/5.9/gcc_64/mkspecs/features/file_copies.prf \
		../../Qt5.9.0/5.9/gcc_64/mkspecs/features/testcase_targets.prf \
		../../Qt5.9.0/5.9/gcc_64/mkspecs/features/exceptions.prf \
		../../Qt5.9.0/5.9/gcc_64/mkspecs/features/yacc.prf \
		../../Qt5.9.0/5.9/gcc_64/mkspecs/features/lex.prf \
		../Ventoy2Disk/Ventoy2Disk.pro ../Ventoy2Disk/Core/ventoy_define.h \
		../Ventoy2Disk/Core/ventoy_disk.h \
		../Ventoy2Disk/Core/ventoy_json.h \
		../Ventoy2Disk/Core/ventoy_util.h \
		../Ventoy2Disk/Include/Ventoy2Disk.h \
		../Ventoy2Disk/Lib/exfat/src/libexfat/byteorder.h \
		../Ventoy2Disk/Lib/exfat/src/libexfat/compiler.h \
		../Ventoy2Disk/Lib/exfat/src/libexfat/config.h \
		../Ventoy2Disk/Lib/exfat/src/libexfat/exfat.h \
		../Ventoy2Disk/Lib/exfat/src/libexfat/exfatfs.h \
		../Ventoy2Disk/Lib/exfat/src/libexfat/platform.h \
		../Ventoy2Disk/Lib/exfat/src/mkfs/cbm.h \
		../Ventoy2Disk/Lib/exfat/src/mkfs/fat.h \
		../Ventoy2Disk/Lib/exfat/src/mkfs/mkexfat.h \
		../Ventoy2Disk/Lib/exfat/src/mkfs/rootdir.h \
		../Ventoy2Disk/Lib/exfat/src/mkfs/uct.h \
		../Ventoy2Disk/Lib/exfat/src/mkfs/uctc.h \
		../Ventoy2Disk/Lib/exfat/src/mkfs/vbr.h \
		../Ventoy2Disk/Lib/fat_io_lib/fat_access.h \
		../Ventoy2Disk/Lib/fat_io_lib/fat_cache.h \
		../Ventoy2Disk/Lib/fat_io_lib/fat_defs.h \
		../Ventoy2Disk/Lib/fat_io_lib/fat_filelib.h \
		../Ventoy2Disk/Lib/fat_io_lib/fat_format.h \
		../Ventoy2Disk/Lib/fat_io_lib/fat_list.h \
		../Ventoy2Disk/Lib/fat_io_lib/fat_misc.h \
		../Ventoy2Disk/Lib/fat_io_lib/fat_opts.h \
		../Ventoy2Disk/Lib/fat_io_lib/fat_string.h \
		../Ventoy2Disk/Lib/fat_io_lib/fat_table.h \
		../Ventoy2Disk/Lib/fat_io_lib/fat_types.h \
		../Ventoy2Disk/Lib/fat_io_lib/fat_write.h \
		../Ventoy2Disk/Lib/libhttp/include/civetweb.h \
		../Ventoy2Disk/Lib/libhttp/include/handle_form.inl \
		../Ventoy2Disk/Lib/libhttp/include/md5.inl \
		../Ventoy2Disk/Lib/libhttp/include/mod_duktape.inl \
		../Ventoy2Disk/Lib/libhttp/include/mod_lua.inl \
		../Ventoy2Disk/Lib/libhttp/include/timer.inl \
		../Ventoy2Disk/QT/ventoy_qt.h \
		../Ventoy2Disk/Web/ventoy_http.h \
		../Ventoy2Disk/partcfgdialog.h \
		../Ventoy2Disk/ventoy2diskwindow.h ../Ventoy2Disk/Core/ventoy_crc32.c \
		../Ventoy2Disk/Core/ventoy_disk.c \
		../Ventoy2Disk/Core/ventoy_json.c \
		../Ventoy2Disk/Core/ventoy_log.c \
		../Ventoy2Disk/Core/ventoy_md5.c \
		../Ventoy2Disk/Core/ventoy_util.c \
		../Ventoy2Disk/Lib/exfat/src/libexfat/cluster.c \
		../Ventoy2Disk/Lib/exfat/src/libexfat/io.c \
		../Ventoy2Disk/Lib/exfat/src/libexfat/lookup.c \
		../Ventoy2Disk/Lib/exfat/src/libexfat/mount.c \
		../Ventoy2Disk/Lib/exfat/src/libexfat/node.c \
		../Ventoy2Disk/Lib/exfat/src/libexfat/repair.c \
		../Ventoy2Disk/Lib/exfat/src/libexfat/time.c \
		../Ventoy2Disk/Lib/exfat/src/libexfat/utf.c \
		../Ventoy2Disk/Lib/exfat/src/libexfat/utils.c \
		../Ventoy2Disk/Lib/exfat/src/mkfs/cbm.c \
		../Ventoy2Disk/Lib/exfat/src/mkfs/fat.c \
		../Ventoy2Disk/Lib/exfat/src/mkfs/mkexfat.c \
		../Ventoy2Disk/Lib/exfat/src/mkfs/mkexfat_main.c \
		../Ventoy2Disk/Lib/exfat/src/mkfs/rootdir.c \
		../Ventoy2Disk/Lib/exfat/src/mkfs/uct.c \
		../Ventoy2Disk/Lib/exfat/src/mkfs/uctc.c \
		../Ventoy2Disk/Lib/exfat/src/mkfs/vbr.c \
		../Ventoy2Disk/Lib/fat_io_lib/fat_access.c \
		../Ventoy2Disk/Lib/fat_io_lib/fat_cache.c \
		../Ventoy2Disk/Lib/fat_io_lib/fat_filelib.c \
		../Ventoy2Disk/Lib/fat_io_lib/fat_format.c \
		../Ventoy2Disk/Lib/fat_io_lib/fat_misc.c \
		../Ventoy2Disk/Lib/fat_io_lib/fat_string.c \
		../Ventoy2Disk/Lib/fat_io_lib/fat_table.c \
		../Ventoy2Disk/Lib/fat_io_lib/fat_write.c \
		../Ventoy2Disk/Lib/xz-embedded/linux/lib/decompress_unxz.c \
		../Ventoy2Disk/QT/refresh_icon_data.c \
		../Ventoy2Disk/QT/secure_icon_data.c \
		../Ventoy2Disk/QT/ventoy_qt_stub.c \
		../Ventoy2Disk/Web/ventoy_http.c \
		../Ventoy2Disk/main.cpp \
		../Ventoy2Disk/partcfgdialog.cpp \
		../Ventoy2Disk/ventoy2diskwindow.cpp
QMAKE_TARGET  = Ventoy2Disk
DESTDIR       = 
TARGET        = Ventoy2Disk


first: all
####### Build rules

$(TARGET): ui_partcfgdialog.h ui_ventoy2diskwindow.h $(OBJECTS)  
	$(LINK) $(LFLAGS) -o $(TARGET) $(OBJECTS) $(OBJCOMP) $(LIBS)

Makefile: ../Ventoy2Disk/Ventoy2Disk.pro ../../Qt5.9.0/5.9/gcc_64/mkspecs/linux-g++/qmake.conf ../../Qt5.9.0/5.9/gcc_64/mkspecs/features/spec_pre.prf \
		../../Qt5.9.0/5.9/gcc_64/mkspecs/common/unix.conf \
		../../Qt5.9.0/5.9/gcc_64/mkspecs/common/linux.conf \
		../../Qt5.9.0/5.9/gcc_64/mkspecs/common/sanitize.conf \
		../../Qt5.9.0/5.9/gcc_64/mkspecs/common/gcc-base.conf \
		../../Qt5.9.0/5.9/gcc_64/mkspecs/common/gcc-base-unix.conf \
		../../Qt5.9.0/5.9/gcc_64/mkspecs/common/g++-base.conf \
		../../Qt5.9.0/5.9/gcc_64/mkspecs/common/g++-unix.conf \
		../../Qt5.9.0/5.9/gcc_64/mkspecs/qconfig.pri \
		../../Qt5.9.0/5.9/gcc_64/mkspecs/modules/qt_lib_3danimation.pri \
		../../Qt5.9.0/5.9/gcc_64/mkspecs/modules/qt_lib_3danimation_private.pri \
		../../Qt5.9.0/5.9/gcc_64/mkspecs/modules/qt_lib_3dcore.pri \
		../../Qt5.9.0/5.9/gcc_64/mkspecs/modules/qt_lib_3dcore_private.pri \
		../../Qt5.9.0/5.9/gcc_64/mkspecs/modules/qt_lib_3dextras.pri \
		../../Qt5.9.0/5.9/gcc_64/mkspecs/modules/qt_lib_3dextras_private.pri \
		../../Qt5.9.0/5.9/gcc_64/mkspecs/modules/qt_lib_3dinput.pri \
		../../Qt5.9.0/5.9/gcc_64/mkspecs/modules/qt_lib_3dinput_private.pri \
		../../Qt5.9.0/5.9/gcc_64/mkspecs/modules/qt_lib_3dlogic.pri \
		../../Qt5.9.0/5.9/gcc_64/mkspecs/modules/qt_lib_3dlogic_private.pri \
		../../Qt5.9.0/5.9/gcc_64/mkspecs/modules/qt_lib_3dquick.pri \
		../../Qt5.9.0/5.9/gcc_64/mkspecs/modules/qt_lib_3dquick_private.pri \
		../../Qt5.9.0/5.9/gcc_64/mkspecs/modules/qt_lib_3dquickanimation.pri \
		../../Qt5.9.0/5.9/gcc_64/mkspecs/modules/qt_lib_3dquickanimation_private.pri \
		../../Qt5.9.0/5.9/gcc_64/mkspecs/modules/qt_lib_3dquickextras.pri \
		../../Qt5.9.0/5.9/gcc_64/mkspecs/modules/qt_lib_3dquickextras_private.pri \
		../../Qt5.9.0/5.9/gcc_64/mkspecs/modules/qt_lib_3dquickinput.pri \
		../../Qt5.9.0/5.9/gcc_64/mkspecs/modules/qt_lib_3dquickinput_private.pri \
		../../Qt5.9.0/5.9/gcc_64/mkspecs/modules/qt_lib_3dquickrender.pri \
		../../Qt5.9.0/5.9/gcc_64/mkspecs/modules/qt_lib_3dquickrender_private.pri \
		../../Qt5.9.0/5.9/gcc_64/mkspecs/modules/qt_lib_3dquickscene2d.pri \
		../../Qt5.9.0/5.9/gcc_64/mkspecs/modules/qt_lib_3dquickscene2d_private.pri \
		../../Qt5.9.0/5.9/gcc_64/mkspecs/modules/qt_lib_3drender.pri \
		../../Qt5.9.0/5.9/gcc_64/mkspecs/modules/qt_lib_3drender_private.pri \
		../../Qt5.9.0/5.9/gcc_64/mkspecs/modules/qt_lib_accessibility_support_private.pri \
		../../Qt5.9.0/5.9/gcc_64/mkspecs/modules/qt_lib_bluetooth.pri \
		../../Qt5.9.0/5.9/gcc_64/mkspecs/modules/qt_lib_bluetooth_private.pri \
		../../Qt5.9.0/5.9/gcc_64/mkspecs/modules/qt_lib_bootstrap_private.pri \
		../../Qt5.9.0/5.9/gcc_64/mkspecs/modules/qt_lib_charts.pri \
		../../Qt5.9.0/5.9/gcc_64/mkspecs/modules/qt_lib_charts_private.pri \
		../../Qt5.9.0/5.9/gcc_64/mkspecs/modules/qt_lib_concurrent.pri \
		../../Qt5.9.0/5.9/gcc_64/mkspecs/modules/qt_lib_concurrent_private.pri \
		../../Qt5.9.0/5.9/gcc_64/mkspecs/modules/qt_lib_core.pri \
		../../Qt5.9.0/5.9/gcc_64/mkspecs/modules/qt_lib_core_private.pri \
		../../Qt5.9.0/5.9/gcc_64/mkspecs/modules/qt_lib_datavisualization.pri \
		../../Qt5.9.0/5.9/gcc_64/mkspecs/modules/qt_lib_datavisualization_private.pri \
		../../Qt5.9.0/5.9/gcc_64/mkspecs/modules/qt_lib_dbus.pri \
		../../Qt5.9.0/5.9/gcc_64/mkspecs/modules/qt_lib_dbus_private.pri \
		../../Qt5.9.0/5.9/gcc_64/mkspecs/modules/qt_lib_designer.pri \
		../../Qt5.9.0/5.9/gcc_64/mkspecs/modules/qt_lib_designer_private.pri \
		../../Qt5.9.0/5.9/gcc_64/mkspecs/modules/qt_lib_designercomponents_private.pri \
		../../Qt5.9.0/5.9/gcc_64/mkspecs/modules/qt_lib_devicediscovery_support_private.pri \
		../../Qt5.9.0/5.9/gcc_64/mkspecs/modules/qt_lib_egl_support_private.pri \
		../../Qt5.9.0/5.9/gcc_64/mkspecs/modules/qt_lib_eglfsdeviceintegration_private.pri \
		../../Qt5.9.0/5.9/gcc_64/mkspecs/modules/qt_lib_eventdispatcher_support_private.pri \
		../../Qt5.9.0/5.9/gcc_64/mkspecs/modules/qt_lib_fb_support_private.pri \
		../../Qt5.9.0/5.9/gcc_64/mkspecs/modules/qt_lib_fontdatabase_support_private.pri \
		../../Qt5.9.0/5.9/gcc_64/mkspecs/modules/qt_lib_gamepad.pri \
		../../Qt5.9.0/5.9/gcc_64/mkspecs/modules/qt_lib_gamepad_private.pri \
		../../Qt5.9.0/5.9/gcc_64/mkspecs/modules/qt_lib_glx_support_private.pri \
		../../Qt5.9.0/5.9/gcc_64/mkspecs/modules/qt_lib_gui.pri \
		../../Qt5.9.0/5.9/gcc_64/mkspecs/modules/qt_lib_gui_private.pri \
		../../Qt5.9.0/5.9/gcc_64/mkspecs/modules/qt_lib_help.pri \
		../../Qt5.9.0/5.9/gcc_64/mkspecs/modules/qt_lib_help_private.pri \
		../../Qt5.9.0/5.9/gcc_64/mkspecs/modules/qt_lib_input_support_private.pri \
		../../Qt5.9.0/5.9/gcc_64/mkspecs/modules/qt_lib_kms_support_private.pri \
		../../Qt5.9.0/5.9/gcc_64/mkspecs/modules/qt_lib_linuxaccessibility_support_private.pri \
		../../Qt5.9.0/5.9/gcc_64/mkspecs/modules/qt_lib_location.pri \
		../../Qt5.9.0/5.9/gcc_64/mkspecs/modules/qt_lib_location_private.pri \
		../../Qt5.9.0/5.9/gcc_64/mkspecs/modules/qt_lib_multimedia.pri \
		../../Qt5.9.0/5.9/gcc_64/mkspecs/modules/qt_lib_multimedia_private.pri \
		../../Qt5.9.0/5.9/gcc_64/mkspecs/modules/qt_lib_multimediawidgets.pri \
		../../Qt5.9.0/5.9/gcc_64/mkspecs/modules/qt_lib_multimediawidgets_private.pri \
		../../Qt5.9.0/5.9/gcc_64/mkspecs/modules/qt_lib_network.pri \
		../../Qt5.9.0/5.9/gcc_64/mkspecs/modules/qt_lib_network_private.pri \
		../../Qt5.9.0/5.9/gcc_64/mkspecs/modules/qt_lib_nfc.pri \
		../../Qt5.9.0/5.9/gcc_64/mkspecs/modules/qt_lib_nfc_private.pri \
		../../Qt5.9.0/5.9/gcc_64/mkspecs/modules/qt_lib_opengl.pri \
		../../Qt5.9.0/5.9/gcc_64/mkspecs/modules/qt_lib_opengl_private.pri \
		../../Qt5.9.0/5.9/gcc_64/mkspecs/modules/qt_lib_openglextensions.pri \
		../../Qt5.9.0/5.9/gcc_64/mkspecs/modules/qt_lib_openglextensions_private.pri \
		../../Qt5.9.0/5.9/gcc_64/mkspecs/modules/qt_lib_packetprotocol_private.pri \
		../../Qt5.9.0/5.9/gcc_64/mkspecs/modules/qt_lib_platformcompositor_support_private.pri \
		../../Qt5.9.0/5.9/gcc_64/mkspecs/modules/qt_lib_positioning.pri \
		../../Qt5.9.0/5.9/gcc_64/mkspecs/modules/qt_lib_positioning_private.pri \
		../../Qt5.9.0/5.9/gcc_64/mkspecs/modules/qt_lib_printsupport.pri \
		../../Qt5.9.0/5.9/gcc_64/mkspecs/modules/qt_lib_printsupport_private.pri \
		../../Qt5.9.0/5.9/gcc_64/mkspecs/modules/qt_lib_qml.pri \
		../../Qt5.9.0/5.9/gcc_64/mkspecs/modules/qt_lib_qml_private.pri \
		../../Qt5.9.0/5.9/gcc_64/mkspecs/modules/qt_lib_qmldebug_private.pri \
		../../Qt5.9.0/5.9/gcc_64/mkspecs/modules/qt_lib_qmldevtools_private.pri \
		../../Qt5.9.0/5.9/gcc_64/mkspecs/modules/qt_lib_qmltest.pri \
		../../Qt5.9.0/5.9/gcc_64/mkspecs/modules/qt_lib_qmltest_private.pri \
		../../Qt5.9.0/5.9/gcc_64/mkspecs/modules/qt_lib_qtmultimediaquicktools_private.pri \
		../../Qt5.9.0/5.9/gcc_64/mkspecs/modules/qt_lib_quick.pri \
		../../Qt5.9.0/5.9/gcc_64/mkspecs/modules/qt_lib_quick_private.pri \
		../../Qt5.9.0/5.9/gcc_64/mkspecs/modules/qt_lib_quickcontrols2.pri \
		../../Qt5.9.0/5.9/gcc_64/mkspecs/modules/qt_lib_quickcontrols2_private.pri \
		../../Qt5.9.0/5.9/gcc_64/mkspecs/modules/qt_lib_quickparticles_private.pri \
		../../Qt5.9.0/5.9/gcc_64/mkspecs/modules/qt_lib_quicktemplates2_private.pri \
		../../Qt5.9.0/5.9/gcc_64/mkspecs/modules/qt_lib_quickwidgets.pri \
		../../Qt5.9.0/5.9/gcc_64/mkspecs/modules/qt_lib_quickwidgets_private.pri \
		../../Qt5.9.0/5.9/gcc_64/mkspecs/modules/qt_lib_scxml.pri \
		../../Qt5.9.0/5.9/gcc_64/mkspecs/modules/qt_lib_scxml_private.pri \
		../../Qt5.9.0/5.9/gcc_64/mkspecs/modules/qt_lib_sensors.pri \
		../../Qt5.9.0/5.9/gcc_64/mkspecs/modules/qt_lib_sensors_private.pri \
		../../Qt5.9.0/5.9/gcc_64/mkspecs/modules/qt_lib_serialbus.pri \
		../../Qt5.9.0/5.9/gcc_64/mkspecs/modules/qt_lib_serialbus_private.pri \
		../../Qt5.9.0/5.9/gcc_64/mkspecs/modules/qt_lib_serialport.pri \
		../../Qt5.9.0/5.9/gcc_64/mkspecs/modules/qt_lib_serialport_private.pri \
		../../Qt5.9.0/5.9/gcc_64/mkspecs/modules/qt_lib_service_support_private.pri \
		../../Qt5.9.0/5.9/gcc_64/mkspecs/modules/qt_lib_sql.pri \
		../../Qt5.9.0/5.9/gcc_64/mkspecs/modules/qt_lib_sql_private.pri \
		../../Qt5.9.0/5.9/gcc_64/mkspecs/modules/qt_lib_svg.pri \
		../../Qt5.9.0/5.9/gcc_64/mkspecs/modules/qt_lib_svg_private.pri \
		../../Qt5.9.0/5.9/gcc_64/mkspecs/modules/qt_lib_testlib.pri \
		../../Qt5.9.0/5.9/gcc_64/mkspecs/modules/qt_lib_testlib_private.pri \
		../../Qt5.9.0/5.9/gcc_64/mkspecs/modules/qt_lib_theme_support_private.pri \
		../../Qt5.9.0/5.9/gcc_64/mkspecs/modules/qt_lib_uiplugin.pri \
		../../Qt5.9.0/5.9/gcc_64/mkspecs/modules/qt_lib_uitools.pri \
		../../Qt5.9.0/5.9/gcc_64/mkspecs/modules/qt_lib_uitools_private.pri \
		../../Qt5.9.0/5.9/gcc_64/mkspecs/modules/qt_lib_webchannel.pri \
		../../Qt5.9.0/5.9/gcc_64/mkspecs/modules/qt_lib_webchannel_private.pri \
		../../Qt5.9.0/5.9/gcc_64/mkspecs/modules/qt_lib_webengine.pri \
		../../Qt5.9.0/5.9/gcc_64/mkspecs/modules/qt_lib_webengine_private.pri \
		../../Qt5.9.0/5.9/gcc_64/mkspecs/modules/qt_lib_webenginecore.pri \
		../../Qt5.9.0/5.9/gcc_64/mkspecs/modules/qt_lib_webenginecore_private.pri \
		../../Qt5.9.0/5.9/gcc_64/mkspecs/modules/qt_lib_webenginecoreheaders_private.pri \
		../../Qt5.9.0/5.9/gcc_64/mkspecs/modules/qt_lib_webenginewidgets.pri \
		../../Qt5.9.0/5.9/gcc_64/mkspecs/modules/qt_lib_webenginewidgets_private.pri \
		../../Qt5.9.0/5.9/gcc_64/mkspecs/modules/qt_lib_websockets.pri \
		../../Qt5.9.0/5.9/gcc_64/mkspecs/modules/qt_lib_websockets_private.pri \
		../../Qt5.9.0/5.9/gcc_64/mkspecs/modules/qt_lib_webview.pri \
		../../Qt5.9.0/5.9/gcc_64/mkspecs/modules/qt_lib_webview_private.pri \
		../../Qt5.9.0/5.9/gcc_64/mkspecs/modules/qt_lib_widgets.pri \
		../../Qt5.9.0/5.9/gcc_64/mkspecs/modules/qt_lib_widgets_private.pri \
		../../Qt5.9.0/5.9/gcc_64/mkspecs/modules/qt_lib_x11extras.pri \
		../../Qt5.9.0/5.9/gcc_64/mkspecs/modules/qt_lib_x11extras_private.pri \
		../../Qt5.9.0/5.9/gcc_64/mkspecs/modules/qt_lib_xcb_qpa_lib_private.pri \
		../../Qt5.9.0/5.9/gcc_64/mkspecs/modules/qt_lib_xml.pri \
		../../Qt5.9.0/5.9/gcc_64/mkspecs/modules/qt_lib_xml_private.pri \
		../../Qt5.9.0/5.9/gcc_64/mkspecs/modules/qt_lib_xmlpatterns.pri \
		../../Qt5.9.0/5.9/gcc_64/mkspecs/modules/qt_lib_xmlpatterns_private.pri \
		../../Qt5.9.0/5.9/gcc_64/mkspecs/features/qt_functions.prf \
		../../Qt5.9.0/5.9/gcc_64/mkspecs/features/qt_config.prf \
		../../Qt5.9.0/5.9/gcc_64/mkspecs/linux-g++/qmake.conf \
		../../Qt5.9.0/5.9/gcc_64/mkspecs/features/spec_post.prf \
		../../Qt5.9.0/5.9/gcc_64/mkspecs/features/exclusive_builds.prf \
		../../Qt5.9.0/5.9/gcc_64/mkspecs/features/toolchain.prf \
		../../Qt5.9.0/5.9/gcc_64/mkspecs/features/default_pre.prf \
		../../Qt5.9.0/5.9/gcc_64/mkspecs/features/resolve_config.prf \
		../../Qt5.9.0/5.9/gcc_64/mkspecs/features/default_post.prf \
		../../Qt5.9.0/5.9/gcc_64/mkspecs/features/warn_on.prf \
		../../Qt5.9.0/5.9/gcc_64/mkspecs/features/qt.prf \
		../../Qt5.9.0/5.9/gcc_64/mkspecs/features/resources.prf \
		../../Qt5.9.0/5.9/gcc_64/mkspecs/features/moc.prf \
		../../Qt5.9.0/5.9/gcc_64/mkspecs/features/unix/opengl.prf \
		../../Qt5.9.0/5.9/gcc_64/mkspecs/features/uic.prf \
		../../Qt5.9.0/5.9/gcc_64/mkspecs/features/unix/thread.prf \
		../../Qt5.9.0/5.9/gcc_64/mkspecs/features/qmake_use.prf \
		../../Qt5.9.0/5.9/gcc_64/mkspecs/features/file_copies.prf \
		../../Qt5.9.0/5.9/gcc_64/mkspecs/features/testcase_targets.prf \
		../../Qt5.9.0/5.9/gcc_64/mkspecs/features/exceptions.prf \
		../../Qt5.9.0/5.9/gcc_64/mkspecs/features/yacc.prf \
		../../Qt5.9.0/5.9/gcc_64/mkspecs/features/lex.prf \
		../Ventoy2Disk/Ventoy2Disk.pro \
		../../Qt5.9.0/5.9/gcc_64/lib/libQt5Widgets.prl \
		../../Qt5.9.0/5.9/gcc_64/lib/libQt5Gui.prl \
		../../Qt5.9.0/5.9/gcc_64/lib/libQt5Core.prl
	$(QMAKE) -o Makefile ../Ventoy2Disk/Ventoy2Disk.pro -spec linux-g++
../../Qt5.9.0/5.9/gcc_64/mkspecs/features/spec_pre.prf:
../../Qt5.9.0/5.9/gcc_64/mkspecs/common/unix.conf:
../../Qt5.9.0/5.9/gcc_64/mkspecs/common/linux.conf:
../../Qt5.9.0/5.9/gcc_64/mkspecs/common/sanitize.conf:
../../Qt5.9.0/5.9/gcc_64/mkspecs/common/gcc-base.conf:
../../Qt5.9.0/5.9/gcc_64/mkspecs/common/gcc-base-unix.conf:
../../Qt5.9.0/5.9/gcc_64/mkspecs/common/g++-base.conf:
../../Qt5.9.0/5.9/gcc_64/mkspecs/common/g++-unix.conf:
../../Qt5.9.0/5.9/gcc_64/mkspecs/qconfig.pri:
../../Qt5.9.0/5.9/gcc_64/mkspecs/modules/qt_lib_3danimation.pri:
../../Qt5.9.0/5.9/gcc_64/mkspecs/modules/qt_lib_3danimation_private.pri:
../../Qt5.9.0/5.9/gcc_64/mkspecs/modules/qt_lib_3dcore.pri:
../../Qt5.9.0/5.9/gcc_64/mkspecs/modules/qt_lib_3dcore_private.pri:
../../Qt5.9.0/5.9/gcc_64/mkspecs/modules/qt_lib_3dextras.pri:
../../Qt5.9.0/5.9/gcc_64/mkspecs/modules/qt_lib_3dextras_private.pri:
../../Qt5.9.0/5.9/gcc_64/mkspecs/modules/qt_lib_3dinput.pri:
../../Qt5.9.0/5.9/gcc_64/mkspecs/modules/qt_lib_3dinput_private.pri:
../../Qt5.9.0/5.9/gcc_64/mkspecs/modules/qt_lib_3dlogic.pri:
../../Qt5.9.0/5.9/gcc_64/mkspecs/modules/qt_lib_3dlogic_private.pri:
../../Qt5.9.0/5.9/gcc_64/mkspecs/modules/qt_lib_3dquick.pri:
../../Qt5.9.0/5.9/gcc_64/mkspecs/modules/qt_lib_3dquick_private.pri:
../../Qt5.9.0/5.9/gcc_64/mkspecs/modules/qt_lib_3dquickanimation.pri:
../../Qt5.9.0/5.9/gcc_64/mkspecs/modules/qt_lib_3dquickanimation_private.pri:
../../Qt5.9.0/5.9/gcc_64/mkspecs/modules/qt_lib_3dquickextras.pri:
../../Qt5.9.0/5.9/gcc_64/mkspecs/modules/qt_lib_3dquickextras_private.pri:
../../Qt5.9.0/5.9/gcc_64/mkspecs/modules/qt_lib_3dquickinput.pri:
../../Qt5.9.0/5.9/gcc_64/mkspecs/modules/qt_lib_3dquickinput_private.pri:
../../Qt5.9.0/5.9/gcc_64/mkspecs/modules/qt_lib_3dquickrender.pri:
../../Qt5.9.0/5.9/gcc_64/mkspecs/modules/qt_lib_3dquickrender_private.pri:
../../Qt5.9.0/5.9/gcc_64/mkspecs/modules/qt_lib_3dquickscene2d.pri:
../../Qt5.9.0/5.9/gcc_64/mkspecs/modules/qt_lib_3dquickscene2d_private.pri:
../../Qt5.9.0/5.9/gcc_64/mkspecs/modules/qt_lib_3drender.pri:
../../Qt5.9.0/5.9/gcc_64/mkspecs/modules/qt_lib_3drender_private.pri:
../../Qt5.9.0/5.9/gcc_64/mkspecs/modules/qt_lib_accessibility_support_private.pri:
../../Qt5.9.0/5.9/gcc_64/mkspecs/modules/qt_lib_bluetooth.pri:
../../Qt5.9.0/5.9/gcc_64/mkspecs/modules/qt_lib_bluetooth_private.pri:
../../Qt5.9.0/5.9/gcc_64/mkspecs/modules/qt_lib_bootstrap_private.pri:
../../Qt5.9.0/5.9/gcc_64/mkspecs/modules/qt_lib_charts.pri:
../../Qt5.9.0/5.9/gcc_64/mkspecs/modules/qt_lib_charts_private.pri:
../../Qt5.9.0/5.9/gcc_64/mkspecs/modules/qt_lib_concurrent.pri:
../../Qt5.9.0/5.9/gcc_64/mkspecs/modules/qt_lib_concurrent_private.pri:
../../Qt5.9.0/5.9/gcc_64/mkspecs/modules/qt_lib_core.pri:
../../Qt5.9.0/5.9/gcc_64/mkspecs/modules/qt_lib_core_private.pri:
../../Qt5.9.0/5.9/gcc_64/mkspecs/modules/qt_lib_datavisualization.pri:
../../Qt5.9.0/5.9/gcc_64/mkspecs/modules/qt_lib_datavisualization_private.pri:
../../Qt5.9.0/5.9/gcc_64/mkspecs/modules/qt_lib_dbus.pri:
../../Qt5.9.0/5.9/gcc_64/mkspecs/modules/qt_lib_dbus_private.pri:
../../Qt5.9.0/5.9/gcc_64/mkspecs/modules/qt_lib_designer.pri:
../../Qt5.9.0/5.9/gcc_64/mkspecs/modules/qt_lib_designer_private.pri:
../../Qt5.9.0/5.9/gcc_64/mkspecs/modules/qt_lib_designercomponents_private.pri:
../../Qt5.9.0/5.9/gcc_64/mkspecs/modules/qt_lib_devicediscovery_support_private.pri:
../../Qt5.9.0/5.9/gcc_64/mkspecs/modules/qt_lib_egl_support_private.pri:
../../Qt5.9.0/5.9/gcc_64/mkspecs/modules/qt_lib_eglfsdeviceintegration_private.pri:
../../Qt5.9.0/5.9/gcc_64/mkspecs/modules/qt_lib_eventdispatcher_support_private.pri:
../../Qt5.9.0/5.9/gcc_64/mkspecs/modules/qt_lib_fb_support_private.pri:
../../Qt5.9.0/5.9/gcc_64/mkspecs/modules/qt_lib_fontdatabase_support_private.pri:
../../Qt5.9.0/5.9/gcc_64/mkspecs/modules/qt_lib_gamepad.pri:
../../Qt5.9.0/5.9/gcc_64/mkspecs/modules/qt_lib_gamepad_private.pri:
../../Qt5.9.0/5.9/gcc_64/mkspecs/modules/qt_lib_glx_support_private.pri:
../../Qt5.9.0/5.9/gcc_64/mkspecs/modules/qt_lib_gui.pri:
../../Qt5.9.0/5.9/gcc_64/mkspecs/modules/qt_lib_gui_private.pri:
../../Qt5.9.0/5.9/gcc_64/mkspecs/modules/qt_lib_help.pri:
../../Qt5.9.0/5.9/gcc_64/mkspecs/modules/qt_lib_help_private.pri:
../../Qt5.9.0/5.9/gcc_64/mkspecs/modules/qt_lib_input_support_private.pri:
../../Qt5.9.0/5.9/gcc_64/mkspecs/modules/qt_lib_kms_support_private.pri:
../../Qt5.9.0/5.9/gcc_64/mkspecs/modules/qt_lib_linuxaccessibility_support_private.pri:
../../Qt5.9.0/5.9/gcc_64/mkspecs/modules/qt_lib_location.pri:
../../Qt5.9.0/5.9/gcc_64/mkspecs/modules/qt_lib_location_private.pri:
../../Qt5.9.0/5.9/gcc_64/mkspecs/modules/qt_lib_multimedia.pri:
../../Qt5.9.0/5.9/gcc_64/mkspecs/modules/qt_lib_multimedia_private.pri:
../../Qt5.9.0/5.9/gcc_64/mkspecs/modules/qt_lib_multimediawidgets.pri:
../../Qt5.9.0/5.9/gcc_64/mkspecs/modules/qt_lib_multimediawidgets_private.pri:
../../Qt5.9.0/5.9/gcc_64/mkspecs/modules/qt_lib_network.pri:
../../Qt5.9.0/5.9/gcc_64/mkspecs/modules/qt_lib_network_private.pri:
../../Qt5.9.0/5.9/gcc_64/mkspecs/modules/qt_lib_nfc.pri:
../../Qt5.9.0/5.9/gcc_64/mkspecs/modules/qt_lib_nfc_private.pri:
../../Qt5.9.0/5.9/gcc_64/mkspecs/modules/qt_lib_opengl.pri:
../../Qt5.9.0/5.9/gcc_64/mkspecs/modules/qt_lib_opengl_private.pri:
../../Qt5.9.0/5.9/gcc_64/mkspecs/modules/qt_lib_openglextensions.pri:
../../Qt5.9.0/5.9/gcc_64/mkspecs/modules/qt_lib_openglextensions_private.pri:
../../Qt5.9.0/5.9/gcc_64/mkspecs/modules/qt_lib_packetprotocol_private.pri:
../../Qt5.9.0/5.9/gcc_64/mkspecs/modules/qt_lib_platformcompositor_support_private.pri:
../../Qt5.9.0/5.9/gcc_64/mkspecs/modules/qt_lib_positioning.pri:
../../Qt5.9.0/5.9/gcc_64/mkspecs/modules/qt_lib_positioning_private.pri:
../../Qt5.9.0/5.9/gcc_64/mkspecs/modules/qt_lib_printsupport.pri:
../../Qt5.9.0/5.9/gcc_64/mkspecs/modules/qt_lib_printsupport_private.pri:
../../Qt5.9.0/5.9/gcc_64/mkspecs/modules/qt_lib_qml.pri:
../../Qt5.9.0/5.9/gcc_64/mkspecs/modules/qt_lib_qml_private.pri:
../../Qt5.9.0/5.9/gcc_64/mkspecs/modules/qt_lib_qmldebug_private.pri:
../../Qt5.9.0/5.9/gcc_64/mkspecs/modules/qt_lib_qmldevtools_private.pri:
../../Qt5.9.0/5.9/gcc_64/mkspecs/modules/qt_lib_qmltest.pri:
../../Qt5.9.0/5.9/gcc_64/mkspecs/modules/qt_lib_qmltest_private.pri:
../../Qt5.9.0/5.9/gcc_64/mkspecs/modules/qt_lib_qtmultimediaquicktools_private.pri:
../../Qt5.9.0/5.9/gcc_64/mkspecs/modules/qt_lib_quick.pri:
../../Qt5.9.0/5.9/gcc_64/mkspecs/modules/qt_lib_quick_private.pri:
../../Qt5.9.0/5.9/gcc_64/mkspecs/modules/qt_lib_quickcontrols2.pri:
../../Qt5.9.0/5.9/gcc_64/mkspecs/modules/qt_lib_quickcontrols2_private.pri:
../../Qt5.9.0/5.9/gcc_64/mkspecs/modules/qt_lib_quickparticles_private.pri:
../../Qt5.9.0/5.9/gcc_64/mkspecs/modules/qt_lib_quicktemplates2_private.pri:
../../Qt5.9.0/5.9/gcc_64/mkspecs/modules/qt_lib_quickwidgets.pri:
../../Qt5.9.0/5.9/gcc_64/mkspecs/modules/qt_lib_quickwidgets_private.pri:
../../Qt5.9.0/5.9/gcc_64/mkspecs/modules/qt_lib_scxml.pri:
../../Qt5.9.0/5.9/gcc_64/mkspecs/modules/qt_lib_scxml_private.pri:
../../Qt5.9.0/5.9/gcc_64/mkspecs/modules/qt_lib_sensors.pri:
../../Qt5.9.0/5.9/gcc_64/mkspecs/modules/qt_lib_sensors_private.pri:
../../Qt5.9.0/5.9/gcc_64/mkspecs/modules/qt_lib_serialbus.pri:
../../Qt5.9.0/5.9/gcc_64/mkspecs/modules/qt_lib_serialbus_private.pri:
../../Qt5.9.0/5.9/gcc_64/mkspecs/modules/qt_lib_serialport.pri:
../../Qt5.9.0/5.9/gcc_64/mkspecs/modules/qt_lib_serialport_private.pri:
../../Qt5.9.0/5.9/gcc_64/mkspecs/modules/qt_lib_service_support_private.pri:
../../Qt5.9.0/5.9/gcc_64/mkspecs/modules/qt_lib_sql.pri:
../../Qt5.9.0/5.9/gcc_64/mkspecs/modules/qt_lib_sql_private.pri:
../../Qt5.9.0/5.9/gcc_64/mkspecs/modules/qt_lib_svg.pri:
../../Qt5.9.0/5.9/gcc_64/mkspecs/modules/qt_lib_svg_private.pri:
../../Qt5.9.0/5.9/gcc_64/mkspecs/modules/qt_lib_testlib.pri:
../../Qt5.9.0/5.9/gcc_64/mkspecs/modules/qt_lib_testlib_private.pri:
../../Qt5.9.0/5.9/gcc_64/mkspecs/modules/qt_lib_theme_support_private.pri:
../../Qt5.9.0/5.9/gcc_64/mkspecs/modules/qt_lib_uiplugin.pri:
../../Qt5.9.0/5.9/gcc_64/mkspecs/modules/qt_lib_uitools.pri:
../../Qt5.9.0/5.9/gcc_64/mkspecs/modules/qt_lib_uitools_private.pri:
../../Qt5.9.0/5.9/gcc_64/mkspecs/modules/qt_lib_webchannel.pri:
../../Qt5.9.0/5.9/gcc_64/mkspecs/modules/qt_lib_webchannel_private.pri:
../../Qt5.9.0/5.9/gcc_64/mkspecs/modules/qt_lib_webengine.pri:
../../Qt5.9.0/5.9/gcc_64/mkspecs/modules/qt_lib_webengine_private.pri:
../../Qt5.9.0/5.9/gcc_64/mkspecs/modules/qt_lib_webenginecore.pri:
../../Qt5.9.0/5.9/gcc_64/mkspecs/modules/qt_lib_webenginecore_private.pri:
../../Qt5.9.0/5.9/gcc_64/mkspecs/modules/qt_lib_webenginecoreheaders_private.pri:
../../Qt5.9.0/5.9/gcc_64/mkspecs/modules/qt_lib_webenginewidgets.pri:
../../Qt5.9.0/5.9/gcc_64/mkspecs/modules/qt_lib_webenginewidgets_private.pri:
../../Qt5.9.0/5.9/gcc_64/mkspecs/modules/qt_lib_websockets.pri:
../../Qt5.9.0/5.9/gcc_64/mkspecs/modules/qt_lib_websockets_private.pri:
../../Qt5.9.0/5.9/gcc_64/mkspecs/modules/qt_lib_webview.pri:
../../Qt5.9.0/5.9/gcc_64/mkspecs/modules/qt_lib_webview_private.pri:
../../Qt5.9.0/5.9/gcc_64/mkspecs/modules/qt_lib_widgets.pri:
../../Qt5.9.0/5.9/gcc_64/mkspecs/modules/qt_lib_widgets_private.pri:
../../Qt5.9.0/5.9/gcc_64/mkspecs/modules/qt_lib_x11extras.pri:
../../Qt5.9.0/5.9/gcc_64/mkspecs/modules/qt_lib_x11extras_private.pri:
../../Qt5.9.0/5.9/gcc_64/mkspecs/modules/qt_lib_xcb_qpa_lib_private.pri:
../../Qt5.9.0/5.9/gcc_64/mkspecs/modules/qt_lib_xml.pri:
../../Qt5.9.0/5.9/gcc_64/mkspecs/modules/qt_lib_xml_private.pri:
../../Qt5.9.0/5.9/gcc_64/mkspecs/modules/qt_lib_xmlpatterns.pri:
../../Qt5.9.0/5.9/gcc_64/mkspecs/modules/qt_lib_xmlpatterns_private.pri:
../../Qt5.9.0/5.9/gcc_64/mkspecs/features/qt_functions.prf:
../../Qt5.9.0/5.9/gcc_64/mkspecs/features/qt_config.prf:
../../Qt5.9.0/5.9/gcc_64/mkspecs/linux-g++/qmake.conf:
../../Qt5.9.0/5.9/gcc_64/mkspecs/features/spec_post.prf:
../../Qt5.9.0/5.9/gcc_64/mkspecs/features/exclusive_builds.prf:
../../Qt5.9.0/5.9/gcc_64/mkspecs/features/toolchain.prf:
../../Qt5.9.0/5.9/gcc_64/mkspecs/features/default_pre.prf:
../../Qt5.9.0/5.9/gcc_64/mkspecs/features/resolve_config.prf:
../../Qt5.9.0/5.9/gcc_64/mkspecs/features/default_post.prf:
../../Qt5.9.0/5.9/gcc_64/mkspecs/features/warn_on.prf:
../../Qt5.9.0/5.9/gcc_64/mkspecs/features/qt.prf:
../../Qt5.9.0/5.9/gcc_64/mkspecs/features/resources.prf:
../../Qt5.9.0/5.9/gcc_64/mkspecs/features/moc.prf:
../../Qt5.9.0/5.9/gcc_64/mkspecs/features/unix/opengl.prf:
../../Qt5.9.0/5.9/gcc_64/mkspecs/features/uic.prf:
../../Qt5.9.0/5.9/gcc_64/mkspecs/features/unix/thread.prf:
../../Qt5.9.0/5.9/gcc_64/mkspecs/features/qmake_use.prf:
../../Qt5.9.0/5.9/gcc_64/mkspecs/features/file_copies.prf:
../../Qt5.9.0/5.9/gcc_64/mkspecs/features/testcase_targets.prf:
../../Qt5.9.0/5.9/gcc_64/mkspecs/features/exceptions.prf:
../../Qt5.9.0/5.9/gcc_64/mkspecs/features/yacc.prf:
../../Qt5.9.0/5.9/gcc_64/mkspecs/features/lex.prf:
../Ventoy2Disk/Ventoy2Disk.pro:
../../Qt5.9.0/5.9/gcc_64/lib/libQt5Widgets.prl:
../../Qt5.9.0/5.9/gcc_64/lib/libQt5Gui.prl:
../../Qt5.9.0/5.9/gcc_64/lib/libQt5Core.prl:
qmake: FORCE
	@$(QMAKE) -o Makefile ../Ventoy2Disk/Ventoy2Disk.pro -spec linux-g++

qmake_all: FORCE


all: Makefile $(TARGET)

dist: distdir FORCE
	(cd `dirname $(DISTDIR)` && $(TAR) $(DISTNAME).tar $(DISTNAME) && $(COMPRESS) $(DISTNAME).tar) && $(MOVE) `dirname $(DISTDIR)`/$(DISTNAME).tar.gz . && $(DEL_FILE) -r $(DISTDIR)

distdir: FORCE
	@test -d $(DISTDIR) || mkdir -p $(DISTDIR)
	$(COPY_FILE) --parents $(DIST) $(DISTDIR)/
	$(COPY_FILE) --parents ../../Qt5.9.0/5.9/gcc_64/mkspecs/features/data/dummy.cpp $(DISTDIR)/
	$(COPY_FILE) --parents ../Ventoy2Disk/Core/ventoy_define.h ../Ventoy2Disk/Core/ventoy_disk.h ../Ventoy2Disk/Core/ventoy_json.h ../Ventoy2Disk/Core/ventoy_util.h ../Ventoy2Disk/Include/Ventoy2Disk.h ../Ventoy2Disk/Lib/exfat/src/libexfat/byteorder.h ../Ventoy2Disk/Lib/exfat/src/libexfat/compiler.h ../Ventoy2Disk/Lib/exfat/src/libexfat/config.h ../Ventoy2Disk/Lib/exfat/src/libexfat/exfat.h ../Ventoy2Disk/Lib/exfat/src/libexfat/exfatfs.h ../Ventoy2Disk/Lib/exfat/src/libexfat/platform.h ../Ventoy2Disk/Lib/exfat/src/mkfs/cbm.h ../Ventoy2Disk/Lib/exfat/src/mkfs/fat.h ../Ventoy2Disk/Lib/exfat/src/mkfs/mkexfat.h ../Ventoy2Disk/Lib/exfat/src/mkfs/rootdir.h ../Ventoy2Disk/Lib/exfat/src/mkfs/uct.h ../Ventoy2Disk/Lib/exfat/src/mkfs/uctc.h ../Ventoy2Disk/Lib/exfat/src/mkfs/vbr.h ../Ventoy2Disk/Lib/fat_io_lib/fat_access.h ../Ventoy2Disk/Lib/fat_io_lib/fat_cache.h ../Ventoy2Disk/Lib/fat_io_lib/fat_defs.h ../Ventoy2Disk/Lib/fat_io_lib/fat_filelib.h ../Ventoy2Disk/Lib/fat_io_lib/fat_format.h ../Ventoy2Disk/Lib/fat_io_lib/fat_list.h ../Ventoy2Disk/Lib/fat_io_lib/fat_misc.h ../Ventoy2Disk/Lib/fat_io_lib/fat_opts.h ../Ventoy2Disk/Lib/fat_io_lib/fat_string.h ../Ventoy2Disk/Lib/fat_io_lib/fat_table.h ../Ventoy2Disk/Lib/fat_io_lib/fat_types.h ../Ventoy2Disk/Lib/fat_io_lib/fat_write.h ../Ventoy2Disk/Lib/libhttp/include/civetweb.h ../Ventoy2Disk/Lib/libhttp/include/handle_form.inl ../Ventoy2Disk/Lib/libhttp/include/md5.inl ../Ventoy2Disk/Lib/libhttp/include/mod_duktape.inl ../Ventoy2Disk/Lib/libhttp/include/mod_lua.inl ../Ventoy2Disk/Lib/libhttp/include/timer.inl ../Ventoy2Disk/QT/ventoy_qt.h ../Ventoy2Disk/Web/ventoy_http.h ../Ventoy2Disk/partcfgdialog.h ../Ventoy2Disk/ventoy2diskwindow.h $(DISTDIR)/
	$(COPY_FILE) --parents ../Ventoy2Disk/Core/ventoy_crc32.c ../Ventoy2Disk/Core/ventoy_disk.c ../Ventoy2Disk/Core/ventoy_json.c ../Ventoy2Disk/Core/ventoy_log.c ../Ventoy2Disk/Core/ventoy_md5.c ../Ventoy2Disk/Core/ventoy_util.c ../Ventoy2Disk/Lib/exfat/src/libexfat/cluster.c ../Ventoy2Disk/Lib/exfat/src/libexfat/io.c ../Ventoy2Disk/Lib/exfat/src/libexfat/lookup.c ../Ventoy2Disk/Lib/exfat/src/libexfat/mount.c ../Ventoy2Disk/Lib/exfat/src/libexfat/node.c ../Ventoy2Disk/Lib/exfat/src/libexfat/repair.c ../Ventoy2Disk/Lib/exfat/src/libexfat/time.c ../Ventoy2Disk/Lib/exfat/src/libexfat/utf.c ../Ventoy2Disk/Lib/exfat/src/libexfat/utils.c ../Ventoy2Disk/Lib/exfat/src/mkfs/cbm.c ../Ventoy2Disk/Lib/exfat/src/mkfs/fat.c ../Ventoy2Disk/Lib/exfat/src/mkfs/mkexfat.c ../Ventoy2Disk/Lib/exfat/src/mkfs/mkexfat_main.c ../Ventoy2Disk/Lib/exfat/src/mkfs/rootdir.c ../Ventoy2Disk/Lib/exfat/src/mkfs/uct.c ../Ventoy2Disk/Lib/exfat/src/mkfs/uctc.c ../Ventoy2Disk/Lib/exfat/src/mkfs/vbr.c ../Ventoy2Disk/Lib/fat_io_lib/fat_access.c ../Ventoy2Disk/Lib/fat_io_lib/fat_cache.c ../Ventoy2Disk/Lib/fat_io_lib/fat_filelib.c ../Ventoy2Disk/Lib/fat_io_lib/fat_format.c ../Ventoy2Disk/Lib/fat_io_lib/fat_misc.c ../Ventoy2Disk/Lib/fat_io_lib/fat_string.c ../Ventoy2Disk/Lib/fat_io_lib/fat_table.c ../Ventoy2Disk/Lib/fat_io_lib/fat_write.c ../Ventoy2Disk/Lib/xz-embedded/linux/lib/decompress_unxz.c ../Ventoy2Disk/QT/refresh_icon_data.c ../Ventoy2Disk/QT/secure_icon_data.c ../Ventoy2Disk/QT/ventoy_qt_stub.c ../Ventoy2Disk/Web/ventoy_http.c ../Ventoy2Disk/main.cpp ../Ventoy2Disk/partcfgdialog.cpp ../Ventoy2Disk/ventoy2diskwindow.cpp $(DISTDIR)/
	$(COPY_FILE) --parents ../Ventoy2Disk/partcfgdialog.ui ../Ventoy2Disk/ventoy2diskwindow.ui $(DISTDIR)/


clean: compiler_clean 
	-$(DEL_FILE) $(OBJECTS)
	-$(DEL_FILE) *~ core *.core


distclean: clean 
	-$(DEL_FILE) $(TARGET) 
	-$(DEL_FILE) .qmake.stash
	-$(DEL_FILE) Makefile


####### Sub-libraries

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_rcc_make_all:
compiler_rcc_clean:
compiler_moc_predefs_make_all: moc_predefs.h
compiler_moc_predefs_clean:
	-$(DEL_FILE) moc_predefs.h
moc_predefs.h: ../../Qt5.9.0/5.9/gcc_64/mkspecs/features/data/dummy.cpp
	g++ -pipe -O2 -std=gnu++11 -Wall -W -dM -E -o moc_predefs.h ../../Qt5.9.0/5.9/gcc_64/mkspecs/features/data/dummy.cpp

compiler_moc_header_make_all: moc_partcfgdialog.cpp moc_ventoy2diskwindow.cpp
compiler_moc_header_clean:
	-$(DEL_FILE) moc_partcfgdialog.cpp moc_ventoy2diskwindow.cpp
moc_partcfgdialog.cpp: ../../Qt5.9.0/5.9/gcc_64/include/QtWidgets/QDialog \
		../../Qt5.9.0/5.9/gcc_64/include/QtWidgets/qdialog.h \
		../../Qt5.9.0/5.9/gcc_64/include/QtWidgets/qtwidgetsglobal.h \
		../../Qt5.9.0/5.9/gcc_64/include/QtGui/qtguiglobal.h \
		../../Qt5.9.0/5.9/gcc_64/include/QtCore/qglobal.h \
		../../Qt5.9.0/5.9/gcc_64/include/QtCore/qconfig-bootstrapped.h \
		../../Qt5.9.0/5.9/gcc_64/include/QtCore/qconfig.h \
		../../Qt5.9.0/5.9/gcc_64/include/QtCore/qtcore-config.h \
		../../Qt5.9.0/5.9/gcc_64/include/QtCore/qsystemdetection.h \
		../../Qt5.9.0/5.9/gcc_64/include/QtCore/qprocessordetection.h \
		../../Qt5.9.0/5.9/gcc_64/include/QtCore/qcompilerdetection.h \
		../../Qt5.9.0/5.9/gcc_64/include/QtCore/qtypeinfo.h \
		../../Qt5.9.0/5.9/gcc_64/include/QtCore/qsysinfo.h \
		../../Qt5.9.0/5.9/gcc_64/include/QtCore/qlogging.h \
		../../Qt5.9.0/5.9/gcc_64/include/QtCore/qflags.h \
		../../Qt5.9.0/5.9/gcc_64/include/QtCore/qatomic.h \
		../../Qt5.9.0/5.9/gcc_64/include/QtCore/qbasicatomic.h \
		../../Qt5.9.0/5.9/gcc_64/include/QtCore/qatomic_bootstrap.h \
		../../Qt5.9.0/5.9/gcc_64/include/QtCore/qgenericatomic.h \
		../../Qt5.9.0/5.9/gcc_64/include/QtCore/qatomic_cxx11.h \
		../../Qt5.9.0/5.9/gcc_64/include/QtCore/qatomic_msvc.h \
		../../Qt5.9.0/5.9/gcc_64/include/QtCore/qglobalstatic.h \
		../../Qt5.9.0/5.9/gcc_64/include/QtCore/qmutex.h \
		../../Qt5.9.0/5.9/gcc_64/include/QtCore/qnumeric.h \
		../../Qt5.9.0/5.9/gcc_64/include/QtCore/qversiontagging.h \
		../../Qt5.9.0/5.9/gcc_64/include/QtGui/qtgui-config.h \
		../../Qt5.9.0/5.9/gcc_64/include/QtWidgets/qtwidgets-config.h \
		../../Qt5.9.0/5.9/gcc_64/include/QtWidgets/qwidget.h \
		../../Qt5.9.0/5.9/gcc_64/include/QtGui/qwindowdefs.h \
		../../Qt5.9.0/5.9/gcc_64/include/QtCore/qobjectdefs.h \
		../../Qt5.9.0/5.9/gcc_64/include/QtCore/qnamespace.h \
		../../Qt5.9.0/5.9/gcc_64/include/QtCore/qobjectdefs_impl.h \
		../../Qt5.9.0/5.9/gcc_64/include/QtGui/qwindowdefs_win.h \
		../../Qt5.9.0/5.9/gcc_64/include/QtCore/qobject.h \
		../../Qt5.9.0/5.9/gcc_64/include/QtCore/qstring.h \
		../../Qt5.9.0/5.9/gcc_64/include/QtCore/qchar.h \
		../../Qt5.9.0/5.9/gcc_64/include/QtCore/qbytearray.h \
		../../Qt5.9.0/5.9/gcc_64/include/QtCore/qrefcount.h \
		../../Qt5.9.0/5.9/gcc_64/include/QtCore/qarraydata.h \
		../../Qt5.9.0/5.9/gcc_64/include/QtCore/qstringbuilder.h \
		../../Qt5.9.0/5.9/gcc_64/include/QtCore/qlist.h \
		../../Qt5.9.0/5.9/gcc_64/include/QtCore/qalgorithms.h \
		../../Qt5.9.0/5.9/gcc_64/include/QtCore/qiterator.h \
		../../Qt5.9.0/5.9/gcc_64/include/QtCore/qhashfunctions.h \
		../../Qt5.9.0/5.9/gcc_64/include/QtCore/qpair.h \
		../../Qt5.9.0/5.9/gcc_64/include/QtCore/qbytearraylist.h \
		../../Qt5.9.0/5.9/gcc_64/include/QtCore/qstringlist.h \
		../../Qt5.9.0/5.9/gcc_64/include/QtCore/qregexp.h \
		../../Qt5.9.0/5.9/gcc_64/include/QtCore/qstringmatcher.h \
		../../Qt5.9.0/5.9/gcc_64/include/QtCore/qcoreevent.h \
		../../Qt5.9.0/5.9/gcc_64/include/QtCore/qscopedpointer.h \
		../../Qt5.9.0/5.9/gcc_64/include/QtCore/qmetatype.h \
		../../Qt5.9.0/5.9/gcc_64/include/QtCore/qvarlengtharray.h \
		../../Qt5.9.0/5.9/gcc_64/include/QtCore/qcontainerfwd.h \
		../../Qt5.9.0/5.9/gcc_64/include/QtCore/qobject_impl.h \
		../../Qt5.9.0/5.9/gcc_64/include/QtCore/qmargins.h \
		../../Qt5.9.0/5.9/gcc_64/include/QtGui/qpaintdevice.h \
		../../Qt5.9.0/5.9/gcc_64/include/QtCore/qrect.h \
		../../Qt5.9.0/5.9/gcc_64/include/QtCore/qsize.h \
		../../Qt5.9.0/5.9/gcc_64/include/QtCore/qpoint.h \
		../../Qt5.9.0/5.9/gcc_64/include/QtGui/qpalette.h \
		../../Qt5.9.0/5.9/gcc_64/include/QtGui/qcolor.h \
		../../Qt5.9.0/5.9/gcc_64/include/QtGui/qrgb.h \
		../../Qt5.9.0/5.9/gcc_64/include/QtGui/qrgba64.h \
		../../Qt5.9.0/5.9/gcc_64/include/QtGui/qbrush.h \
		../../Qt5.9.0/5.9/gcc_64/include/QtCore/qvector.h \
		../../Qt5.9.0/5.9/gcc_64/include/QtGui/qmatrix.h \
		../../Qt5.9.0/5.9/gcc_64/include/QtGui/qpolygon.h \
		../../Qt5.9.0/5.9/gcc_64/include/QtGui/qregion.h \
		../../Qt5.9.0/5.9/gcc_64/include/QtCore/qdatastream.h \
		../../Qt5.9.0/5.9/gcc_64/include/QtCore/qiodevice.h \
		../../Qt5.9.0/5.9/gcc_64/include/QtCore/qline.h \
		../../Qt5.9.0/5.9/gcc_64/include/QtGui/qtransform.h \
		../../Qt5.9.0/5.9/gcc_64/include/QtGui/qpainterpath.h \
		../../Qt5.9.0/5.9/gcc_64/include/QtGui/qimage.h \
		../../Qt5.9.0/5.9/gcc_64/include/QtGui/qpixelformat.h \
		../../Qt5.9.0/5.9/gcc_64/include/QtGui/qpixmap.h \
		../../Qt5.9.0/5.9/gcc_64/include/QtCore/qsharedpointer.h \
		../../Qt5.9.0/5.9/gcc_64/include/QtCore/qshareddata.h \
		../../Qt5.9.0/5.9/gcc_64/include/QtCore/qhash.h \
		../../Qt5.9.0/5.9/gcc_64/include/QtCore/qsharedpointer_impl.h \
		../../Qt5.9.0/5.9/gcc_64/include/QtGui/qfont.h \
		../../Qt5.9.0/5.9/gcc_64/include/QtGui/qfontmetrics.h \
		../../Qt5.9.0/5.9/gcc_64/include/QtGui/qfontinfo.h \
		../../Qt5.9.0/5.9/gcc_64/include/QtWidgets/qsizepolicy.h \
		../../Qt5.9.0/5.9/gcc_64/include/QtGui/qcursor.h \
		../../Qt5.9.0/5.9/gcc_64/include/QtGui/qkeysequence.h \
		../../Qt5.9.0/5.9/gcc_64/include/QtGui/qevent.h \
		../../Qt5.9.0/5.9/gcc_64/include/QtCore/qvariant.h \
		../../Qt5.9.0/5.9/gcc_64/include/QtCore/qmap.h \
		../../Qt5.9.0/5.9/gcc_64/include/QtCore/qdebug.h \
		../../Qt5.9.0/5.9/gcc_64/include/QtCore/qtextstream.h \
		../../Qt5.9.0/5.9/gcc_64/include/QtCore/qlocale.h \
		../../Qt5.9.0/5.9/gcc_64/include/QtCore/qset.h \
		../../Qt5.9.0/5.9/gcc_64/include/QtCore/qcontiguouscache.h \
		../../Qt5.9.0/5.9/gcc_64/include/QtCore/qurl.h \
		../../Qt5.9.0/5.9/gcc_64/include/QtCore/qurlquery.h \
		../../Qt5.9.0/5.9/gcc_64/include/QtCore/qfile.h \
		../../Qt5.9.0/5.9/gcc_64/include/QtCore/qfiledevice.h \
		../../Qt5.9.0/5.9/gcc_64/include/QtGui/qvector2d.h \
		../../Qt5.9.0/5.9/gcc_64/include/QtGui/qtouchdevice.h \
		../../Qt5.9.0/5.9/gcc_64/include/QtCore/QJsonObject \
		../../Qt5.9.0/5.9/gcc_64/include/QtCore/qjsonobject.h \
		../../Qt5.9.0/5.9/gcc_64/include/QtCore/qjsonvalue.h \
		../Ventoy2Disk/partcfgdialog.h \
		moc_predefs.h \
		../../Qt5.9.0/5.9/gcc_64/bin/moc
	/home/panda/Qt5.9.0/5.9/gcc_64/bin/moc $(DEFINES) --include ./moc_predefs.h -I/home/panda/Qt5.9.0/5.9/gcc_64/mkspecs/linux-g++ -I/home/panda/590/Ventoy2Disk -I/home/panda/Ventoy2Disk/Core -I/home/panda/Ventoy2Disk/Web -I/home/panda/Ventoy2Disk/QT -I/home/panda/Ventoy2Disk/Include -I/home/panda/Ventoy2Disk/Lib/libhttp/include -I/home/panda/Ventoy2Disk/Lib/fat_io_lib/include -I/home/panda/Ventoy2Disk/Lib/xz-embedded/linux/include -I/home/panda/Ventoy2Disk/Lib/xz-embedded/linux/include/linux -I/home/panda/Ventoy2Disk/Lib/xz-embedded/userspace -I/home/panda/Ventoy2Disk/Lib/exfat/src/libexfat -I/home/panda/Ventoy2Disk/Lib/fat_io_lib -I/home/panda/Qt5.9.0/5.9/gcc_64/include -I/home/panda/Qt5.9.0/5.9/gcc_64/include/QtWidgets -I/home/panda/Qt5.9.0/5.9/gcc_64/include/QtGui -I/home/panda/Qt5.9.0/5.9/gcc_64/include/QtCore -I. -I/usr/include/c++/8 -I/usr/include/x86_64-linux-gnu/c++/8 -I/usr/include/c++/8/backward -I/usr/lib/gcc/x86_64-linux-gnu/8/include -I/usr/local/include -I/usr/lib/gcc/x86_64-linux-gnu/8/include-fixed -I/usr/include/x86_64-linux-gnu -I/usr/include ../Ventoy2Disk/partcfgdialog.h -o moc_partcfgdialog.cpp

moc_ventoy2diskwindow.cpp: ../../Qt5.9.0/5.9/gcc_64/include/QtWidgets/QMainWindow \
		../../Qt5.9.0/5.9/gcc_64/include/QtWidgets/qmainwindow.h \
		../../Qt5.9.0/5.9/gcc_64/include/QtWidgets/qtwidgetsglobal.h \
		../../Qt5.9.0/5.9/gcc_64/include/QtGui/qtguiglobal.h \
		../../Qt5.9.0/5.9/gcc_64/include/QtCore/qglobal.h \
		../../Qt5.9.0/5.9/gcc_64/include/QtCore/qconfig-bootstrapped.h \
		../../Qt5.9.0/5.9/gcc_64/include/QtCore/qconfig.h \
		../../Qt5.9.0/5.9/gcc_64/include/QtCore/qtcore-config.h \
		../../Qt5.9.0/5.9/gcc_64/include/QtCore/qsystemdetection.h \
		../../Qt5.9.0/5.9/gcc_64/include/QtCore/qprocessordetection.h \
		../../Qt5.9.0/5.9/gcc_64/include/QtCore/qcompilerdetection.h \
		../../Qt5.9.0/5.9/gcc_64/include/QtCore/qtypeinfo.h \
		../../Qt5.9.0/5.9/gcc_64/include/QtCore/qsysinfo.h \
		../../Qt5.9.0/5.9/gcc_64/include/QtCore/qlogging.h \
		../../Qt5.9.0/5.9/gcc_64/include/QtCore/qflags.h \
		../../Qt5.9.0/5.9/gcc_64/include/QtCore/qatomic.h \
		../../Qt5.9.0/5.9/gcc_64/include/QtCore/qbasicatomic.h \
		../../Qt5.9.0/5.9/gcc_64/include/QtCore/qatomic_bootstrap.h \
		../../Qt5.9.0/5.9/gcc_64/include/QtCore/qgenericatomic.h \
		../../Qt5.9.0/5.9/gcc_64/include/QtCore/qatomic_cxx11.h \
		../../Qt5.9.0/5.9/gcc_64/include/QtCore/qatomic_msvc.h \
		../../Qt5.9.0/5.9/gcc_64/include/QtCore/qglobalstatic.h \
		../../Qt5.9.0/5.9/gcc_64/include/QtCore/qmutex.h \
		../../Qt5.9.0/5.9/gcc_64/include/QtCore/qnumeric.h \
		../../Qt5.9.0/5.9/gcc_64/include/QtCore/qversiontagging.h \
		../../Qt5.9.0/5.9/gcc_64/include/QtGui/qtgui-config.h \
		../../Qt5.9.0/5.9/gcc_64/include/QtWidgets/qtwidgets-config.h \
		../../Qt5.9.0/5.9/gcc_64/include/QtWidgets/qwidget.h \
		../../Qt5.9.0/5.9/gcc_64/include/QtGui/qwindowdefs.h \
		../../Qt5.9.0/5.9/gcc_64/include/QtCore/qobjectdefs.h \
		../../Qt5.9.0/5.9/gcc_64/include/QtCore/qnamespace.h \
		../../Qt5.9.0/5.9/gcc_64/include/QtCore/qobjectdefs_impl.h \
		../../Qt5.9.0/5.9/gcc_64/include/QtGui/qwindowdefs_win.h \
		../../Qt5.9.0/5.9/gcc_64/include/QtCore/qobject.h \
		../../Qt5.9.0/5.9/gcc_64/include/QtCore/qstring.h \
		../../Qt5.9.0/5.9/gcc_64/include/QtCore/qchar.h \
		../../Qt5.9.0/5.9/gcc_64/include/QtCore/qbytearray.h \
		../../Qt5.9.0/5.9/gcc_64/include/QtCore/qrefcount.h \
		../../Qt5.9.0/5.9/gcc_64/include/QtCore/qarraydata.h \
		../../Qt5.9.0/5.9/gcc_64/include/QtCore/qstringbuilder.h \
		../../Qt5.9.0/5.9/gcc_64/include/QtCore/qlist.h \
		../../Qt5.9.0/5.9/gcc_64/include/QtCore/qalgorithms.h \
		../../Qt5.9.0/5.9/gcc_64/include/QtCore/qiterator.h \
		../../Qt5.9.0/5.9/gcc_64/include/QtCore/qhashfunctions.h \
		../../Qt5.9.0/5.9/gcc_64/include/QtCore/qpair.h \
		../../Qt5.9.0/5.9/gcc_64/include/QtCore/qbytearraylist.h \
		../../Qt5.9.0/5.9/gcc_64/include/QtCore/qstringlist.h \
		../../Qt5.9.0/5.9/gcc_64/include/QtCore/qregexp.h \
		../../Qt5.9.0/5.9/gcc_64/include/QtCore/qstringmatcher.h \
		../../Qt5.9.0/5.9/gcc_64/include/QtCore/qcoreevent.h \
		../../Qt5.9.0/5.9/gcc_64/include/QtCore/qscopedpointer.h \
		../../Qt5.9.0/5.9/gcc_64/include/QtCore/qmetatype.h \
		../../Qt5.9.0/5.9/gcc_64/include/QtCore/qvarlengtharray.h \
		../../Qt5.9.0/5.9/gcc_64/include/QtCore/qcontainerfwd.h \
		../../Qt5.9.0/5.9/gcc_64/include/QtCore/qobject_impl.h \
		../../Qt5.9.0/5.9/gcc_64/include/QtCore/qmargins.h \
		../../Qt5.9.0/5.9/gcc_64/include/QtGui/qpaintdevice.h \
		../../Qt5.9.0/5.9/gcc_64/include/QtCore/qrect.h \
		../../Qt5.9.0/5.9/gcc_64/include/QtCore/qsize.h \
		../../Qt5.9.0/5.9/gcc_64/include/QtCore/qpoint.h \
		../../Qt5.9.0/5.9/gcc_64/include/QtGui/qpalette.h \
		../../Qt5.9.0/5.9/gcc_64/include/QtGui/qcolor.h \
		../../Qt5.9.0/5.9/gcc_64/include/QtGui/qrgb.h \
		../../Qt5.9.0/5.9/gcc_64/include/QtGui/qrgba64.h \
		../../Qt5.9.0/5.9/gcc_64/include/QtGui/qbrush.h \
		../../Qt5.9.0/5.9/gcc_64/include/QtCore/qvector.h \
		../../Qt5.9.0/5.9/gcc_64/include/QtGui/qmatrix.h \
		../../Qt5.9.0/5.9/gcc_64/include/QtGui/qpolygon.h \
		../../Qt5.9.0/5.9/gcc_64/include/QtGui/qregion.h \
		../../Qt5.9.0/5.9/gcc_64/include/QtCore/qdatastream.h \
		../../Qt5.9.0/5.9/gcc_64/include/QtCore/qiodevice.h \
		../../Qt5.9.0/5.9/gcc_64/include/QtCore/qline.h \
		../../Qt5.9.0/5.9/gcc_64/include/QtGui/qtransform.h \
		../../Qt5.9.0/5.9/gcc_64/include/QtGui/qpainterpath.h \
		../../Qt5.9.0/5.9/gcc_64/include/QtGui/qimage.h \
		../../Qt5.9.0/5.9/gcc_64/include/QtGui/qpixelformat.h \
		../../Qt5.9.0/5.9/gcc_64/include/QtGui/qpixmap.h \
		../../Qt5.9.0/5.9/gcc_64/include/QtCore/qsharedpointer.h \
		../../Qt5.9.0/5.9/gcc_64/include/QtCore/qshareddata.h \
		../../Qt5.9.0/5.9/gcc_64/include/QtCore/qhash.h \
		../../Qt5.9.0/5.9/gcc_64/include/QtCore/qsharedpointer_impl.h \
		../../Qt5.9.0/5.9/gcc_64/include/QtGui/qfont.h \
		../../Qt5.9.0/5.9/gcc_64/include/QtGui/qfontmetrics.h \
		../../Qt5.9.0/5.9/gcc_64/include/QtGui/qfontinfo.h \
		../../Qt5.9.0/5.9/gcc_64/include/QtWidgets/qsizepolicy.h \
		../../Qt5.9.0/5.9/gcc_64/include/QtGui/qcursor.h \
		../../Qt5.9.0/5.9/gcc_64/include/QtGui/qkeysequence.h \
		../../Qt5.9.0/5.9/gcc_64/include/QtGui/qevent.h \
		../../Qt5.9.0/5.9/gcc_64/include/QtCore/qvariant.h \
		../../Qt5.9.0/5.9/gcc_64/include/QtCore/qmap.h \
		../../Qt5.9.0/5.9/gcc_64/include/QtCore/qdebug.h \
		../../Qt5.9.0/5.9/gcc_64/include/QtCore/qtextstream.h \
		../../Qt5.9.0/5.9/gcc_64/include/QtCore/qlocale.h \
		../../Qt5.9.0/5.9/gcc_64/include/QtCore/qset.h \
		../../Qt5.9.0/5.9/gcc_64/include/QtCore/qcontiguouscache.h \
		../../Qt5.9.0/5.9/gcc_64/include/QtCore/qurl.h \
		../../Qt5.9.0/5.9/gcc_64/include/QtCore/qurlquery.h \
		../../Qt5.9.0/5.9/gcc_64/include/QtCore/qfile.h \
		../../Qt5.9.0/5.9/gcc_64/include/QtCore/qfiledevice.h \
		../../Qt5.9.0/5.9/gcc_64/include/QtGui/qvector2d.h \
		../../Qt5.9.0/5.9/gcc_64/include/QtGui/qtouchdevice.h \
		../../Qt5.9.0/5.9/gcc_64/include/QtWidgets/qtabwidget.h \
		../../Qt5.9.0/5.9/gcc_64/include/QtGui/qicon.h \
		../../Qt5.9.0/5.9/gcc_64/include/QtWidgets/QActionGroup \
		../../Qt5.9.0/5.9/gcc_64/include/QtWidgets/qactiongroup.h \
		../../Qt5.9.0/5.9/gcc_64/include/QtWidgets/qaction.h \
		../../Qt5.9.0/5.9/gcc_64/include/QtCore/QJsonDocument \
		../../Qt5.9.0/5.9/gcc_64/include/QtCore/qjsondocument.h \
		../../Qt5.9.0/5.9/gcc_64/include/QtCore/qjsonvalue.h \
		../../Qt5.9.0/5.9/gcc_64/include/QtCore/QFile \
		../../Qt5.9.0/5.9/gcc_64/include/QtCore/QJsonObject \
		../../Qt5.9.0/5.9/gcc_64/include/QtCore/qjsonobject.h \
		../../Qt5.9.0/5.9/gcc_64/include/QtCore/QJsonArray \
		../../Qt5.9.0/5.9/gcc_64/include/QtCore/qjsonarray.h \
		../../Qt5.9.0/5.9/gcc_64/include/QtCore/QVector \
		../../Qt5.9.0/5.9/gcc_64/include/QtCore/QtGlobal \
		../../Qt5.9.0/5.9/gcc_64/include/QtCore/QDebug \
		../../Qt5.9.0/5.9/gcc_64/include/QtGui/QCloseEvent \
		../../Qt5.9.0/5.9/gcc_64/include/QtCore/QThread \
		../../Qt5.9.0/5.9/gcc_64/include/QtCore/qthread.h \
		../Ventoy2Disk/partcfgdialog.h \
		../../Qt5.9.0/5.9/gcc_64/include/QtWidgets/QDialog \
		../../Qt5.9.0/5.9/gcc_64/include/QtWidgets/qdialog.h \
		../Ventoy2Disk/ventoy2diskwindow.h \
		moc_predefs.h \
		../../Qt5.9.0/5.9/gcc_64/bin/moc
	/home/panda/Qt5.9.0/5.9/gcc_64/bin/moc $(DEFINES) --include ./moc_predefs.h -I/home/panda/Qt5.9.0/5.9/gcc_64/mkspecs/linux-g++ -I/home/panda/590/Ventoy2Disk -I/home/panda/Ventoy2Disk/Core -I/home/panda/Ventoy2Disk/Web -I/home/panda/Ventoy2Disk/QT -I/home/panda/Ventoy2Disk/Include -I/home/panda/Ventoy2Disk/Lib/libhttp/include -I/home/panda/Ventoy2Disk/Lib/fat_io_lib/include -I/home/panda/Ventoy2Disk/Lib/xz-embedded/linux/include -I/home/panda/Ventoy2Disk/Lib/xz-embedded/linux/include/linux -I/home/panda/Ventoy2Disk/Lib/xz-embedded/userspace -I/home/panda/Ventoy2Disk/Lib/exfat/src/libexfat -I/home/panda/Ventoy2Disk/Lib/fat_io_lib -I/home/panda/Qt5.9.0/5.9/gcc_64/include -I/home/panda/Qt5.9.0/5.9/gcc_64/include/QtWidgets -I/home/panda/Qt5.9.0/5.9/gcc_64/include/QtGui -I/home/panda/Qt5.9.0/5.9/gcc_64/include/QtCore -I. -I/usr/include/c++/8 -I/usr/include/x86_64-linux-gnu/c++/8 -I/usr/include/c++/8/backward -I/usr/lib/gcc/x86_64-linux-gnu/8/include -I/usr/local/include -I/usr/lib/gcc/x86_64-linux-gnu/8/include-fixed -I/usr/include/x86_64-linux-gnu -I/usr/include ../Ventoy2Disk/ventoy2diskwindow.h -o moc_ventoy2diskwindow.cpp

compiler_moc_source_make_all:
compiler_moc_source_clean:
compiler_uic_make_all: ui_partcfgdialog.h ui_ventoy2diskwindow.h
compiler_uic_clean:
	-$(DEL_FILE) ui_partcfgdialog.h ui_ventoy2diskwindow.h
ui_partcfgdialog.h: ../Ventoy2Disk/partcfgdialog.ui \
		../../Qt5.9.0/5.9/gcc_64/bin/uic
	/home/panda/Qt5.9.0/5.9/gcc_64/bin/uic ../Ventoy2Disk/partcfgdialog.ui -o ui_partcfgdialog.h

ui_ventoy2diskwindow.h: ../Ventoy2Disk/ventoy2diskwindow.ui \
		../../Qt5.9.0/5.9/gcc_64/bin/uic
	/home/panda/Qt5.9.0/5.9/gcc_64/bin/uic ../Ventoy2Disk/ventoy2diskwindow.ui -o ui_ventoy2diskwindow.h

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_moc_predefs_clean compiler_moc_header_clean compiler_uic_clean 

####### Compile

ventoy_crc32.o: ../Ventoy2Disk/Core/ventoy_crc32.c 
	$(CC) -c $(CFLAGS) $(INCPATH) -o ventoy_crc32.o ../Ventoy2Disk/Core/ventoy_crc32.c

ventoy_disk.o: ../Ventoy2Disk/Core/ventoy_disk.c ../../Ventoy2Disk/Core/ventoy_define.h \
		../../Ventoy2Disk/Core/ventoy_disk.h \
		../../Ventoy2Disk/Core/ventoy_util.h \
		../../Ventoy2Disk/Lib/fat_io_lib/fat_filelib.h \
		../../Ventoy2Disk/Lib/fat_io_lib/fat_opts.h \
		../../Ventoy2Disk/Lib/fat_io_lib/fat_access.h \
		../../Ventoy2Disk/Lib/fat_io_lib/fat_defs.h \
		../../Ventoy2Disk/Lib/fat_io_lib/fat_types.h \
		../../Ventoy2Disk/Lib/fat_io_lib/fat_list.h
	$(CC) -c $(CFLAGS) $(INCPATH) -o ventoy_disk.o ../Ventoy2Disk/Core/ventoy_disk.c

ventoy_json.o: ../Ventoy2Disk/Core/ventoy_json.c ../../Ventoy2Disk/Core/ventoy_define.h \
		../../Ventoy2Disk/Core/ventoy_util.h \
		../../Ventoy2Disk/Core/ventoy_json.h
	$(CC) -c $(CFLAGS) $(INCPATH) -o ventoy_json.o ../Ventoy2Disk/Core/ventoy_json.c

ventoy_log.o: ../Ventoy2Disk/Core/ventoy_log.c ../../Ventoy2Disk/Core/ventoy_define.h
	$(CC) -c $(CFLAGS) $(INCPATH) -o ventoy_log.o ../Ventoy2Disk/Core/ventoy_log.c

ventoy_md5.o: ../Ventoy2Disk/Core/ventoy_md5.c 
	$(CC) -c $(CFLAGS) $(INCPATH) -o ventoy_md5.o ../Ventoy2Disk/Core/ventoy_md5.c

ventoy_util.o: ../Ventoy2Disk/Core/ventoy_util.c ../../Ventoy2Disk/Core/ventoy_define.h \
		../../Ventoy2Disk/Core/ventoy_util.h
	$(CC) -c $(CFLAGS) $(INCPATH) -o ventoy_util.o ../Ventoy2Disk/Core/ventoy_util.c

cluster.o: ../Ventoy2Disk/Lib/exfat/src/libexfat/cluster.c ../Ventoy2Disk/Lib/exfat/src/libexfat/exfat.h \
		../Ventoy2Disk/Lib/exfat/src/libexfat/config.h \
		../Ventoy2Disk/Lib/exfat/src/libexfat/compiler.h \
		../Ventoy2Disk/Lib/exfat/src/libexfat/exfatfs.h \
		../Ventoy2Disk/Lib/exfat/src/libexfat/byteorder.h \
		../Ventoy2Disk/Lib/exfat/src/libexfat/platform.h
	$(CC) -c $(CFLAGS) $(INCPATH) -o cluster.o ../Ventoy2Disk/Lib/exfat/src/libexfat/cluster.c

io.o: ../Ventoy2Disk/Lib/exfat/src/libexfat/io.c ../Ventoy2Disk/Lib/exfat/src/libexfat/exfat.h \
		../Ventoy2Disk/Lib/exfat/src/libexfat/config.h \
		../Ventoy2Disk/Lib/exfat/src/libexfat/compiler.h \
		../Ventoy2Disk/Lib/exfat/src/libexfat/exfatfs.h \
		../Ventoy2Disk/Lib/exfat/src/libexfat/byteorder.h \
		../Ventoy2Disk/Lib/exfat/src/libexfat/platform.h
	$(CC) -c $(CFLAGS) $(INCPATH) -o io.o ../Ventoy2Disk/Lib/exfat/src/libexfat/io.c

lookup.o: ../Ventoy2Disk/Lib/exfat/src/libexfat/lookup.c ../Ventoy2Disk/Lib/exfat/src/libexfat/exfat.h \
		../Ventoy2Disk/Lib/exfat/src/libexfat/config.h \
		../Ventoy2Disk/Lib/exfat/src/libexfat/compiler.h \
		../Ventoy2Disk/Lib/exfat/src/libexfat/exfatfs.h \
		../Ventoy2Disk/Lib/exfat/src/libexfat/byteorder.h \
		../Ventoy2Disk/Lib/exfat/src/libexfat/platform.h
	$(CC) -c $(CFLAGS) $(INCPATH) -o lookup.o ../Ventoy2Disk/Lib/exfat/src/libexfat/lookup.c

mount.o: ../Ventoy2Disk/Lib/exfat/src/libexfat/mount.c ../Ventoy2Disk/Lib/exfat/src/libexfat/exfat.h \
		../Ventoy2Disk/Lib/exfat/src/libexfat/config.h \
		../Ventoy2Disk/Lib/exfat/src/libexfat/compiler.h \
		../Ventoy2Disk/Lib/exfat/src/libexfat/exfatfs.h \
		../Ventoy2Disk/Lib/exfat/src/libexfat/byteorder.h \
		../Ventoy2Disk/Lib/exfat/src/libexfat/platform.h
	$(CC) -c $(CFLAGS) $(INCPATH) -o mount.o ../Ventoy2Disk/Lib/exfat/src/libexfat/mount.c

node.o: ../Ventoy2Disk/Lib/exfat/src/libexfat/node.c ../Ventoy2Disk/Lib/exfat/src/libexfat/exfat.h \
		../Ventoy2Disk/Lib/exfat/src/libexfat/config.h \
		../Ventoy2Disk/Lib/exfat/src/libexfat/compiler.h \
		../Ventoy2Disk/Lib/exfat/src/libexfat/exfatfs.h \
		../Ventoy2Disk/Lib/exfat/src/libexfat/byteorder.h \
		../Ventoy2Disk/Lib/exfat/src/libexfat/platform.h
	$(CC) -c $(CFLAGS) $(INCPATH) -o node.o ../Ventoy2Disk/Lib/exfat/src/libexfat/node.c

repair.o: ../Ventoy2Disk/Lib/exfat/src/libexfat/repair.c ../Ventoy2Disk/Lib/exfat/src/libexfat/exfat.h \
		../Ventoy2Disk/Lib/exfat/src/libexfat/config.h \
		../Ventoy2Disk/Lib/exfat/src/libexfat/compiler.h \
		../Ventoy2Disk/Lib/exfat/src/libexfat/exfatfs.h \
		../Ventoy2Disk/Lib/exfat/src/libexfat/byteorder.h \
		../Ventoy2Disk/Lib/exfat/src/libexfat/platform.h
	$(CC) -c $(CFLAGS) $(INCPATH) -o repair.o ../Ventoy2Disk/Lib/exfat/src/libexfat/repair.c

time.o: ../Ventoy2Disk/Lib/exfat/src/libexfat/time.c ../Ventoy2Disk/Lib/exfat/src/libexfat/exfat.h \
		../Ventoy2Disk/Lib/exfat/src/libexfat/config.h \
		../Ventoy2Disk/Lib/exfat/src/libexfat/compiler.h \
		../Ventoy2Disk/Lib/exfat/src/libexfat/exfatfs.h \
		../Ventoy2Disk/Lib/exfat/src/libexfat/byteorder.h \
		../Ventoy2Disk/Lib/exfat/src/libexfat/platform.h
	$(CC) -c $(CFLAGS) $(INCPATH) -o time.o ../Ventoy2Disk/Lib/exfat/src/libexfat/time.c

utf.o: ../Ventoy2Disk/Lib/exfat/src/libexfat/utf.c ../Ventoy2Disk/Lib/exfat/src/libexfat/exfat.h \
		../Ventoy2Disk/Lib/exfat/src/libexfat/config.h \
		../Ventoy2Disk/Lib/exfat/src/libexfat/compiler.h \
		../Ventoy2Disk/Lib/exfat/src/libexfat/exfatfs.h \
		../Ventoy2Disk/Lib/exfat/src/libexfat/byteorder.h \
		../Ventoy2Disk/Lib/exfat/src/libexfat/platform.h
	$(CC) -c $(CFLAGS) $(INCPATH) -o utf.o ../Ventoy2Disk/Lib/exfat/src/libexfat/utf.c

utils.o: ../Ventoy2Disk/Lib/exfat/src/libexfat/utils.c ../Ventoy2Disk/Lib/exfat/src/libexfat/exfat.h \
		../Ventoy2Disk/Lib/exfat/src/libexfat/config.h \
		../Ventoy2Disk/Lib/exfat/src/libexfat/compiler.h \
		../Ventoy2Disk/Lib/exfat/src/libexfat/exfatfs.h \
		../Ventoy2Disk/Lib/exfat/src/libexfat/byteorder.h \
		../Ventoy2Disk/Lib/exfat/src/libexfat/platform.h
	$(CC) -c $(CFLAGS) $(INCPATH) -o utils.o ../Ventoy2Disk/Lib/exfat/src/libexfat/utils.c

cbm.o: ../Ventoy2Disk/Lib/exfat/src/mkfs/cbm.c ../Ventoy2Disk/Lib/exfat/src/mkfs/cbm.h \
		../Ventoy2Disk/Lib/exfat/src/mkfs/mkexfat.h \
		../../Ventoy2Disk/Lib/exfat/src/libexfat/exfat.h \
		../../Ventoy2Disk/Lib/exfat/src/libexfat/config.h \
		../../Ventoy2Disk/Lib/exfat/src/libexfat/compiler.h \
		../../Ventoy2Disk/Lib/exfat/src/libexfat/exfatfs.h \
		../../Ventoy2Disk/Lib/exfat/src/libexfat/byteorder.h \
		../../Ventoy2Disk/Lib/exfat/src/libexfat/platform.h \
		../Ventoy2Disk/Lib/exfat/src/mkfs/fat.h \
		../Ventoy2Disk/Lib/exfat/src/mkfs/uct.h \
		../Ventoy2Disk/Lib/exfat/src/mkfs/rootdir.h
	$(CC) -c $(CFLAGS) $(INCPATH) -o cbm.o ../Ventoy2Disk/Lib/exfat/src/mkfs/cbm.c

fat.o: ../Ventoy2Disk/Lib/exfat/src/mkfs/fat.c ../Ventoy2Disk/Lib/exfat/src/mkfs/fat.h \
		../Ventoy2Disk/Lib/exfat/src/mkfs/mkexfat.h \
		../../Ventoy2Disk/Lib/exfat/src/libexfat/exfat.h \
		../../Ventoy2Disk/Lib/exfat/src/libexfat/config.h \
		../../Ventoy2Disk/Lib/exfat/src/libexfat/compiler.h \
		../../Ventoy2Disk/Lib/exfat/src/libexfat/exfatfs.h \
		../../Ventoy2Disk/Lib/exfat/src/libexfat/byteorder.h \
		../../Ventoy2Disk/Lib/exfat/src/libexfat/platform.h \
		../Ventoy2Disk/Lib/exfat/src/mkfs/cbm.h \
		../Ventoy2Disk/Lib/exfat/src/mkfs/uct.h \
		../Ventoy2Disk/Lib/exfat/src/mkfs/rootdir.h
	$(CC) -c $(CFLAGS) $(INCPATH) -o fat.o ../Ventoy2Disk/Lib/exfat/src/mkfs/fat.c

mkexfat.o: ../Ventoy2Disk/Lib/exfat/src/mkfs/mkexfat.c ../Ventoy2Disk/Lib/exfat/src/mkfs/mkexfat.h \
		../../Ventoy2Disk/Lib/exfat/src/libexfat/exfat.h \
		../../Ventoy2Disk/Lib/exfat/src/libexfat/config.h \
		../../Ventoy2Disk/Lib/exfat/src/libexfat/compiler.h \
		../../Ventoy2Disk/Lib/exfat/src/libexfat/exfatfs.h \
		../../Ventoy2Disk/Lib/exfat/src/libexfat/byteorder.h \
		../../Ventoy2Disk/Lib/exfat/src/libexfat/platform.h
	$(CC) -c $(CFLAGS) $(INCPATH) -o mkexfat.o ../Ventoy2Disk/Lib/exfat/src/mkfs/mkexfat.c

mkexfat_main.o: ../Ventoy2Disk/Lib/exfat/src/mkfs/mkexfat_main.c ../Ventoy2Disk/Lib/exfat/src/mkfs/mkexfat.h \
		../../Ventoy2Disk/Lib/exfat/src/libexfat/exfat.h \
		../../Ventoy2Disk/Lib/exfat/src/libexfat/config.h \
		../../Ventoy2Disk/Lib/exfat/src/libexfat/compiler.h \
		../../Ventoy2Disk/Lib/exfat/src/libexfat/exfatfs.h \
		../../Ventoy2Disk/Lib/exfat/src/libexfat/byteorder.h \
		../../Ventoy2Disk/Lib/exfat/src/libexfat/platform.h \
		../Ventoy2Disk/Lib/exfat/src/mkfs/vbr.h \
		../Ventoy2Disk/Lib/exfat/src/mkfs/fat.h \
		../Ventoy2Disk/Lib/exfat/src/mkfs/cbm.h \
		../Ventoy2Disk/Lib/exfat/src/mkfs/uct.h \
		../Ventoy2Disk/Lib/exfat/src/mkfs/rootdir.h
	$(CC) -c $(CFLAGS) $(INCPATH) -o mkexfat_main.o ../Ventoy2Disk/Lib/exfat/src/mkfs/mkexfat_main.c

rootdir.o: ../Ventoy2Disk/Lib/exfat/src/mkfs/rootdir.c ../Ventoy2Disk/Lib/exfat/src/mkfs/rootdir.h \
		../Ventoy2Disk/Lib/exfat/src/mkfs/mkexfat.h \
		../../Ventoy2Disk/Lib/exfat/src/libexfat/exfat.h \
		../../Ventoy2Disk/Lib/exfat/src/libexfat/config.h \
		../../Ventoy2Disk/Lib/exfat/src/libexfat/compiler.h \
		../../Ventoy2Disk/Lib/exfat/src/libexfat/exfatfs.h \
		../../Ventoy2Disk/Lib/exfat/src/libexfat/byteorder.h \
		../../Ventoy2Disk/Lib/exfat/src/libexfat/platform.h \
		../Ventoy2Disk/Lib/exfat/src/mkfs/uct.h \
		../Ventoy2Disk/Lib/exfat/src/mkfs/cbm.h \
		../Ventoy2Disk/Lib/exfat/src/mkfs/uctc.h
	$(CC) -c $(CFLAGS) $(INCPATH) -o rootdir.o ../Ventoy2Disk/Lib/exfat/src/mkfs/rootdir.c

uct.o: ../Ventoy2Disk/Lib/exfat/src/mkfs/uct.c ../Ventoy2Disk/Lib/exfat/src/mkfs/uct.h \
		../Ventoy2Disk/Lib/exfat/src/mkfs/mkexfat.h \
		../../Ventoy2Disk/Lib/exfat/src/libexfat/exfat.h \
		../../Ventoy2Disk/Lib/exfat/src/libexfat/config.h \
		../../Ventoy2Disk/Lib/exfat/src/libexfat/compiler.h \
		../../Ventoy2Disk/Lib/exfat/src/libexfat/exfatfs.h \
		../../Ventoy2Disk/Lib/exfat/src/libexfat/byteorder.h \
		../../Ventoy2Disk/Lib/exfat/src/libexfat/platform.h \
		../Ventoy2Disk/Lib/exfat/src/mkfs/uctc.h
	$(CC) -c $(CFLAGS) $(INCPATH) -o uct.o ../Ventoy2Disk/Lib/exfat/src/mkfs/uct.c

uctc.o: ../Ventoy2Disk/Lib/exfat/src/mkfs/uctc.c ../Ventoy2Disk/Lib/exfat/src/mkfs/uctc.h
	$(CC) -c $(CFLAGS) $(INCPATH) -o uctc.o ../Ventoy2Disk/Lib/exfat/src/mkfs/uctc.c

vbr.o: ../Ventoy2Disk/Lib/exfat/src/mkfs/vbr.c ../Ventoy2Disk/Lib/exfat/src/mkfs/vbr.h \
		../Ventoy2Disk/Lib/exfat/src/mkfs/mkexfat.h \
		../../Ventoy2Disk/Lib/exfat/src/libexfat/exfat.h \
		../../Ventoy2Disk/Lib/exfat/src/libexfat/config.h \
		../../Ventoy2Disk/Lib/exfat/src/libexfat/compiler.h \
		../../Ventoy2Disk/Lib/exfat/src/libexfat/exfatfs.h \
		../../Ventoy2Disk/Lib/exfat/src/libexfat/byteorder.h \
		../../Ventoy2Disk/Lib/exfat/src/libexfat/platform.h \
		../Ventoy2Disk/Lib/exfat/src/mkfs/fat.h \
		../Ventoy2Disk/Lib/exfat/src/mkfs/cbm.h \
		../Ventoy2Disk/Lib/exfat/src/mkfs/uct.h \
		../Ventoy2Disk/Lib/exfat/src/mkfs/rootdir.h
	$(CC) -c $(CFLAGS) $(INCPATH) -o vbr.o ../Ventoy2Disk/Lib/exfat/src/mkfs/vbr.c

fat_access.o: ../Ventoy2Disk/Lib/fat_io_lib/fat_access.c ../../Ventoy2Disk/Lib/fat_io_lib/fat_defs.h \
		../../Ventoy2Disk/Lib/fat_io_lib/fat_opts.h \
		../../Ventoy2Disk/Lib/fat_io_lib/fat_types.h \
		../../Ventoy2Disk/Lib/fat_io_lib/fat_access.h \
		../Ventoy2Disk/Lib/fat_io_lib/fat_table.h \
		../Ventoy2Disk/Lib/fat_io_lib/fat_misc.h \
		../Ventoy2Disk/Lib/fat_io_lib/fat_write.h \
		../Ventoy2Disk/Lib/fat_io_lib/fat_string.h
	$(CC) -c $(CFLAGS) $(INCPATH) -o fat_access.o ../Ventoy2Disk/Lib/fat_io_lib/fat_access.c

fat_cache.o: ../Ventoy2Disk/Lib/fat_io_lib/fat_cache.c ../Ventoy2Disk/Lib/fat_io_lib/fat_cache.h \
		../../Ventoy2Disk/Lib/fat_io_lib/fat_filelib.h \
		../../Ventoy2Disk/Lib/fat_io_lib/fat_opts.h \
		../../Ventoy2Disk/Lib/fat_io_lib/fat_access.h \
		../../Ventoy2Disk/Lib/fat_io_lib/fat_defs.h \
		../../Ventoy2Disk/Lib/fat_io_lib/fat_types.h \
		../../Ventoy2Disk/Lib/fat_io_lib/fat_list.h
	$(CC) -c $(CFLAGS) $(INCPATH) -o fat_cache.o ../Ventoy2Disk/Lib/fat_io_lib/fat_cache.c

fat_filelib.o: ../Ventoy2Disk/Lib/fat_io_lib/fat_filelib.c ../../Ventoy2Disk/Lib/fat_io_lib/fat_defs.h \
		../../Ventoy2Disk/Lib/fat_io_lib/fat_opts.h \
		../../Ventoy2Disk/Lib/fat_io_lib/fat_types.h \
		../../Ventoy2Disk/Lib/fat_io_lib/fat_access.h \
		../Ventoy2Disk/Lib/fat_io_lib/fat_table.h \
		../Ventoy2Disk/Lib/fat_io_lib/fat_misc.h \
		../Ventoy2Disk/Lib/fat_io_lib/fat_write.h \
		../Ventoy2Disk/Lib/fat_io_lib/fat_string.h \
		../../Ventoy2Disk/Lib/fat_io_lib/fat_filelib.h \
		../../Ventoy2Disk/Lib/fat_io_lib/fat_list.h \
		../Ventoy2Disk/Lib/fat_io_lib/fat_cache.h
	$(CC) -c $(CFLAGS) $(INCPATH) -o fat_filelib.o ../Ventoy2Disk/Lib/fat_io_lib/fat_filelib.c

fat_format.o: ../Ventoy2Disk/Lib/fat_io_lib/fat_format.c ../../Ventoy2Disk/Lib/fat_io_lib/fat_defs.h \
		../../Ventoy2Disk/Lib/fat_io_lib/fat_opts.h \
		../../Ventoy2Disk/Lib/fat_io_lib/fat_types.h \
		../../Ventoy2Disk/Lib/fat_io_lib/fat_access.h \
		../Ventoy2Disk/Lib/fat_io_lib/fat_table.h \
		../Ventoy2Disk/Lib/fat_io_lib/fat_misc.h \
		../Ventoy2Disk/Lib/fat_io_lib/fat_write.h \
		../Ventoy2Disk/Lib/fat_io_lib/fat_string.h \
		../Ventoy2Disk/Lib/fat_io_lib/fat_format.h
	$(CC) -c $(CFLAGS) $(INCPATH) -o fat_format.o ../Ventoy2Disk/Lib/fat_io_lib/fat_format.c

fat_misc.o: ../Ventoy2Disk/Lib/fat_io_lib/fat_misc.c ../Ventoy2Disk/Lib/fat_io_lib/fat_misc.h \
		../../Ventoy2Disk/Lib/fat_io_lib/fat_defs.h \
		../../Ventoy2Disk/Lib/fat_io_lib/fat_opts.h \
		../../Ventoy2Disk/Lib/fat_io_lib/fat_types.h
	$(CC) -c $(CFLAGS) $(INCPATH) -o fat_misc.o ../Ventoy2Disk/Lib/fat_io_lib/fat_misc.c

fat_string.o: ../Ventoy2Disk/Lib/fat_io_lib/fat_string.c ../Ventoy2Disk/Lib/fat_io_lib/fat_string.h
	$(CC) -c $(CFLAGS) $(INCPATH) -o fat_string.o ../Ventoy2Disk/Lib/fat_io_lib/fat_string.c

fat_table.o: ../Ventoy2Disk/Lib/fat_io_lib/fat_table.c ../../Ventoy2Disk/Lib/fat_io_lib/fat_defs.h \
		../../Ventoy2Disk/Lib/fat_io_lib/fat_opts.h \
		../../Ventoy2Disk/Lib/fat_io_lib/fat_types.h \
		../../Ventoy2Disk/Lib/fat_io_lib/fat_access.h \
		../Ventoy2Disk/Lib/fat_io_lib/fat_table.h \
		../Ventoy2Disk/Lib/fat_io_lib/fat_misc.h
	$(CC) -c $(CFLAGS) $(INCPATH) -o fat_table.o ../Ventoy2Disk/Lib/fat_io_lib/fat_table.c

fat_write.o: ../Ventoy2Disk/Lib/fat_io_lib/fat_write.c ../../Ventoy2Disk/Lib/fat_io_lib/fat_defs.h \
		../../Ventoy2Disk/Lib/fat_io_lib/fat_opts.h \
		../../Ventoy2Disk/Lib/fat_io_lib/fat_types.h \
		../../Ventoy2Disk/Lib/fat_io_lib/fat_access.h \
		../Ventoy2Disk/Lib/fat_io_lib/fat_table.h \
		../Ventoy2Disk/Lib/fat_io_lib/fat_misc.h \
		../Ventoy2Disk/Lib/fat_io_lib/fat_write.h \
		../Ventoy2Disk/Lib/fat_io_lib/fat_string.h
	$(CC) -c $(CFLAGS) $(INCPATH) -o fat_write.o ../Ventoy2Disk/Lib/fat_io_lib/fat_write.c

decompress_unxz.o: ../Ventoy2Disk/Lib/xz-embedded/linux/lib/decompress_unxz.c ../../Ventoy2Disk/Lib/xz-embedded/linux/include/linux/xz.h \
		../Ventoy2Disk/Lib/xz-embedded/linux/lib/xz/xz_private.h \
		../../Ventoy2Disk/Lib/xz-embedded/userspace/xz_config.h \
		../Ventoy2Disk/Lib/xz-embedded/linux/lib/xz/xz_crc32.c \
		../Ventoy2Disk/Lib/xz-embedded/linux/lib/xz/xz_dec_stream.c \
		../Ventoy2Disk/Lib/xz-embedded/linux/lib/xz/xz_stream.h \
		../Ventoy2Disk/Lib/xz-embedded/linux/lib/xz/xz_dec_lzma2.c \
		../Ventoy2Disk/Lib/xz-embedded/linux/lib/xz/xz_lzma2.h \
		../Ventoy2Disk/Lib/xz-embedded/linux/lib/xz/xz_dec_bcj.c
	$(CC) -c $(CFLAGS) $(INCPATH) -o decompress_unxz.o ../Ventoy2Disk/Lib/xz-embedded/linux/lib/decompress_unxz.c

refresh_icon_data.o: ../Ventoy2Disk/QT/refresh_icon_data.c 
	$(CC) -c $(CFLAGS) $(INCPATH) -o refresh_icon_data.o ../Ventoy2Disk/QT/refresh_icon_data.c

secure_icon_data.o: ../Ventoy2Disk/QT/secure_icon_data.c 
	$(CC) -c $(CFLAGS) $(INCPATH) -o secure_icon_data.o ../Ventoy2Disk/QT/secure_icon_data.c

ventoy_qt_stub.o: ../Ventoy2Disk/QT/ventoy_qt_stub.c ../../Ventoy2Disk/Core/ventoy_define.h \
		../../Ventoy2Disk/Core/ventoy_json.h \
		../../Ventoy2Disk/Core/ventoy_util.h \
		../../Ventoy2Disk/Core/ventoy_disk.h \
		../../Ventoy2Disk/Web/ventoy_http.h \
		../../Ventoy2Disk/Lib/libhttp/include/civetweb.h
	$(CC) -c $(CFLAGS) $(INCPATH) -o ventoy_qt_stub.o ../Ventoy2Disk/QT/ventoy_qt_stub.c

ventoy_http.o: ../Ventoy2Disk/Web/ventoy_http.c ../../Ventoy2Disk/Core/ventoy_define.h \
		../../Ventoy2Disk/Core/ventoy_json.h \
		../../Ventoy2Disk/Core/ventoy_util.h \
		../../Ventoy2Disk/Core/ventoy_disk.h \
		../../Ventoy2Disk/Web/ventoy_http.h \
		../../Ventoy2Disk/Lib/libhttp/include/civetweb.h \
		../../Ventoy2Disk/Lib/fat_io_lib/fat_filelib.h \
		../../Ventoy2Disk/Lib/fat_io_lib/fat_opts.h \
		../../Ventoy2Disk/Lib/fat_io_lib/fat_access.h \
		../../Ventoy2Disk/Lib/fat_io_lib/fat_defs.h \
		../../Ventoy2Disk/Lib/fat_io_lib/fat_types.h \
		../../Ventoy2Disk/Lib/fat_io_lib/fat_list.h
	$(CC) -c $(CFLAGS) $(INCPATH) -o ventoy_http.o ../Ventoy2Disk/Web/ventoy_http.c

main.o: ../Ventoy2Disk/main.cpp ../Ventoy2Disk/ventoy2diskwindow.h \
		../../Qt5.9.0/5.9/gcc_64/include/QtWidgets/QMainWindow \
		../../Qt5.9.0/5.9/gcc_64/include/QtWidgets/qmainwindow.h \
		../../Qt5.9.0/5.9/gcc_64/include/QtWidgets/qtwidgetsglobal.h \
		../../Qt5.9.0/5.9/gcc_64/include/QtGui/qtguiglobal.h \
		../../Qt5.9.0/5.9/gcc_64/include/QtCore/qglobal.h \
		../../Qt5.9.0/5.9/gcc_64/include/QtCore/qconfig-bootstrapped.h \
		../../Qt5.9.0/5.9/gcc_64/include/QtCore/qconfig.h \
		../../Qt5.9.0/5.9/gcc_64/include/QtCore/qtcore-config.h \
		../../Qt5.9.0/5.9/gcc_64/include/QtCore/qsystemdetection.h \
		../../Qt5.9.0/5.9/gcc_64/include/QtCore/qprocessordetection.h \
		../../Qt5.9.0/5.9/gcc_64/include/QtCore/qcompilerdetection.h \
		../../Qt5.9.0/5.9/gcc_64/include/QtCore/qtypeinfo.h \
		../../Qt5.9.0/5.9/gcc_64/include/QtCore/qsysinfo.h \
		../../Qt5.9.0/5.9/gcc_64/include/QtCore/qlogging.h \
		../../Qt5.9.0/5.9/gcc_64/include/QtCore/qflags.h \
		../../Qt5.9.0/5.9/gcc_64/include/QtCore/qatomic.h \
		../../Qt5.9.0/5.9/gcc_64/include/QtCore/qbasicatomic.h \
		../../Qt5.9.0/5.9/gcc_64/include/QtCore/qatomic_bootstrap.h \
		../../Qt5.9.0/5.9/gcc_64/include/QtCore/qgenericatomic.h \
		../../Qt5.9.0/5.9/gcc_64/include/QtCore/qatomic_cxx11.h \
		../../Qt5.9.0/5.9/gcc_64/include/QtCore/qatomic_msvc.h \
		../../Qt5.9.0/5.9/gcc_64/include/QtCore/qglobalstatic.h \
		../../Qt5.9.0/5.9/gcc_64/include/QtCore/qmutex.h \
		../../Qt5.9.0/5.9/gcc_64/include/QtCore/qnumeric.h \
		../../Qt5.9.0/5.9/gcc_64/include/QtCore/qversiontagging.h \
		../../Qt5.9.0/5.9/gcc_64/include/QtGui/qtgui-config.h \
		../../Qt5.9.0/5.9/gcc_64/include/QtWidgets/qtwidgets-config.h \
		../../Qt5.9.0/5.9/gcc_64/include/QtWidgets/qwidget.h \
		../../Qt5.9.0/5.9/gcc_64/include/QtGui/qwindowdefs.h \
		../../Qt5.9.0/5.9/gcc_64/include/QtCore/qobjectdefs.h \
		../../Qt5.9.0/5.9/gcc_64/include/QtCore/qnamespace.h \
		../../Qt5.9.0/5.9/gcc_64/include/QtCore/qobjectdefs_impl.h \
		../../Qt5.9.0/5.9/gcc_64/include/QtGui/qwindowdefs_win.h \
		../../Qt5.9.0/5.9/gcc_64/include/QtCore/qobject.h \
		../../Qt5.9.0/5.9/gcc_64/include/QtCore/qstring.h \
		../../Qt5.9.0/5.9/gcc_64/include/QtCore/qchar.h \
		../../Qt5.9.0/5.9/gcc_64/include/QtCore/qbytearray.h \
		../../Qt5.9.0/5.9/gcc_64/include/QtCore/qrefcount.h \
		../../Qt5.9.0/5.9/gcc_64/include/QtCore/qarraydata.h \
		../../Qt5.9.0/5.9/gcc_64/include/QtCore/qstringbuilder.h \
		../../Qt5.9.0/5.9/gcc_64/include/QtCore/qlist.h \
		../../Qt5.9.0/5.9/gcc_64/include/QtCore/qalgorithms.h \
		../../Qt5.9.0/5.9/gcc_64/include/QtCore/qiterator.h \
		../../Qt5.9.0/5.9/gcc_64/include/QtCore/qhashfunctions.h \
		../../Qt5.9.0/5.9/gcc_64/include/QtCore/qpair.h \
		../../Qt5.9.0/5.9/gcc_64/include/QtCore/qbytearraylist.h \
		../../Qt5.9.0/5.9/gcc_64/include/QtCore/qstringlist.h \
		../../Qt5.9.0/5.9/gcc_64/include/QtCore/qregexp.h \
		../../Qt5.9.0/5.9/gcc_64/include/QtCore/qstringmatcher.h \
		../../Qt5.9.0/5.9/gcc_64/include/QtCore/qcoreevent.h \
		../../Qt5.9.0/5.9/gcc_64/include/QtCore/qscopedpointer.h \
		../../Qt5.9.0/5.9/gcc_64/include/QtCore/qmetatype.h \
		../../Qt5.9.0/5.9/gcc_64/include/QtCore/qvarlengtharray.h \
		../../Qt5.9.0/5.9/gcc_64/include/QtCore/qcontainerfwd.h \
		../../Qt5.9.0/5.9/gcc_64/include/QtCore/qobject_impl.h \
		../../Qt5.9.0/5.9/gcc_64/include/QtCore/qmargins.h \
		../../Qt5.9.0/5.9/gcc_64/include/QtGui/qpaintdevice.h \
		../../Qt5.9.0/5.9/gcc_64/include/QtCore/qrect.h \
		../../Qt5.9.0/5.9/gcc_64/include/QtCore/qsize.h \
		../../Qt5.9.0/5.9/gcc_64/include/QtCore/qpoint.h \
		../../Qt5.9.0/5.9/gcc_64/include/QtGui/qpalette.h \
		../../Qt5.9.0/5.9/gcc_64/include/QtGui/qcolor.h \
		../../Qt5.9.0/5.9/gcc_64/include/QtGui/qrgb.h \
		../../Qt5.9.0/5.9/gcc_64/include/QtGui/qrgba64.h \
		../../Qt5.9.0/5.9/gcc_64/include/QtGui/qbrush.h \
		../../Qt5.9.0/5.9/gcc_64/include/QtCore/qvector.h \
		../../Qt5.9.0/5.9/gcc_64/include/QtGui/qmatrix.h \
		../../Qt5.9.0/5.9/gcc_64/include/QtGui/qpolygon.h \
		../../Qt5.9.0/5.9/gcc_64/include/QtGui/qregion.h \
		../../Qt5.9.0/5.9/gcc_64/include/QtCore/qdatastream.h \
		../../Qt5.9.0/5.9/gcc_64/include/QtCore/qiodevice.h \
		../../Qt5.9.0/5.9/gcc_64/include/QtCore/qline.h \
		../../Qt5.9.0/5.9/gcc_64/include/QtGui/qtransform.h \
		../../Qt5.9.0/5.9/gcc_64/include/QtGui/qpainterpath.h \
		../../Qt5.9.0/5.9/gcc_64/include/QtGui/qimage.h \
		../../Qt5.9.0/5.9/gcc_64/include/QtGui/qpixelformat.h \
		../../Qt5.9.0/5.9/gcc_64/include/QtGui/qpixmap.h \
		../../Qt5.9.0/5.9/gcc_64/include/QtCore/qsharedpointer.h \
		../../Qt5.9.0/5.9/gcc_64/include/QtCore/qshareddata.h \
		../../Qt5.9.0/5.9/gcc_64/include/QtCore/qhash.h \
		../../Qt5.9.0/5.9/gcc_64/include/QtCore/qsharedpointer_impl.h \
		../../Qt5.9.0/5.9/gcc_64/include/QtGui/qfont.h \
		../../Qt5.9.0/5.9/gcc_64/include/QtGui/qfontmetrics.h \
		../../Qt5.9.0/5.9/gcc_64/include/QtGui/qfontinfo.h \
		../../Qt5.9.0/5.9/gcc_64/include/QtWidgets/qsizepolicy.h \
		../../Qt5.9.0/5.9/gcc_64/include/QtGui/qcursor.h \
		../../Qt5.9.0/5.9/gcc_64/include/QtGui/qkeysequence.h \
		../../Qt5.9.0/5.9/gcc_64/include/QtGui/qevent.h \
		../../Qt5.9.0/5.9/gcc_64/include/QtCore/qvariant.h \
		../../Qt5.9.0/5.9/gcc_64/include/QtCore/qmap.h \
		../../Qt5.9.0/5.9/gcc_64/include/QtCore/qdebug.h \
		../../Qt5.9.0/5.9/gcc_64/include/QtCore/qtextstream.h \
		../../Qt5.9.0/5.9/gcc_64/include/QtCore/qlocale.h \
		../../Qt5.9.0/5.9/gcc_64/include/QtCore/qset.h \
		../../Qt5.9.0/5.9/gcc_64/include/QtCore/qcontiguouscache.h \
		../../Qt5.9.0/5.9/gcc_64/include/QtCore/qurl.h \
		../../Qt5.9.0/5.9/gcc_64/include/QtCore/qurlquery.h \
		../../Qt5.9.0/5.9/gcc_64/include/QtCore/qfile.h \
		../../Qt5.9.0/5.9/gcc_64/include/QtCore/qfiledevice.h \
		../../Qt5.9.0/5.9/gcc_64/include/QtGui/qvector2d.h \
		../../Qt5.9.0/5.9/gcc_64/include/QtGui/qtouchdevice.h \
		../../Qt5.9.0/5.9/gcc_64/include/QtWidgets/qtabwidget.h \
		../../Qt5.9.0/5.9/gcc_64/include/QtGui/qicon.h \
		../../Qt5.9.0/5.9/gcc_64/include/QtWidgets/QActionGroup \
		../../Qt5.9.0/5.9/gcc_64/include/QtWidgets/qactiongroup.h \
		../../Qt5.9.0/5.9/gcc_64/include/QtWidgets/qaction.h \
		../../Qt5.9.0/5.9/gcc_64/include/QtCore/QJsonDocument \
		../../Qt5.9.0/5.9/gcc_64/include/QtCore/qjsondocument.h \
		../../Qt5.9.0/5.9/gcc_64/include/QtCore/qjsonvalue.h \
		../../Qt5.9.0/5.9/gcc_64/include/QtCore/QFile \
		../../Qt5.9.0/5.9/gcc_64/include/QtCore/QJsonObject \
		../../Qt5.9.0/5.9/gcc_64/include/QtCore/qjsonobject.h \
		../../Qt5.9.0/5.9/gcc_64/include/QtCore/QJsonArray \
		../../Qt5.9.0/5.9/gcc_64/include/QtCore/qjsonarray.h \
		../../Qt5.9.0/5.9/gcc_64/include/QtCore/QVector \
		../../Qt5.9.0/5.9/gcc_64/include/QtCore/QtGlobal \
		../../Qt5.9.0/5.9/gcc_64/include/QtCore/QDebug \
		../../Qt5.9.0/5.9/gcc_64/include/QtGui/QCloseEvent \
		../../Qt5.9.0/5.9/gcc_64/include/QtCore/QThread \
		../../Qt5.9.0/5.9/gcc_64/include/QtCore/qthread.h \
		../Ventoy2Disk/partcfgdialog.h \
		../../Qt5.9.0/5.9/gcc_64/include/QtWidgets/QDialog \
		../../Qt5.9.0/5.9/gcc_64/include/QtWidgets/qdialog.h \
		../../Qt5.9.0/5.9/gcc_64/include/QtWidgets/QApplication \
		../../Qt5.9.0/5.9/gcc_64/include/QtWidgets/qapplication.h \
		../../Qt5.9.0/5.9/gcc_64/include/QtCore/qcoreapplication.h \
		../../Qt5.9.0/5.9/gcc_64/include/QtCore/qeventloop.h \
		../../Qt5.9.0/5.9/gcc_64/include/QtWidgets/qdesktopwidget.h \
		../../Qt5.9.0/5.9/gcc_64/include/QtGui/qguiapplication.h \
		../../Qt5.9.0/5.9/gcc_64/include/QtGui/qinputmethod.h \
		../../Qt5.9.0/5.9/gcc_64/include/QtWidgets/QMessageBox \
		../../Qt5.9.0/5.9/gcc_64/include/QtWidgets/qmessagebox.h \
		../../Qt5.9.0/5.9/gcc_64/include/QtCore/QFileInfo \
		../../Qt5.9.0/5.9/gcc_64/include/QtCore/qfileinfo.h \
		../../Qt5.9.0/5.9/gcc_64/include/QtWidgets/QStyle \
		../../Qt5.9.0/5.9/gcc_64/include/QtWidgets/qstyle.h \
		../../Qt5.9.0/5.9/gcc_64/include/QtWidgets/QDesktopWidget \
		../../Qt5.9.0/5.9/gcc_64/include/QtGui/QPixmap \
		../../Ventoy2Disk/Core/ventoy_define.h \
		../../Ventoy2Disk/Core/ventoy_util.h \
		../../Ventoy2Disk/QT/ventoy_qt.h
	$(CXX) -c $(CXXFLAGS) $(INCPATH) -o main.o ../Ventoy2Disk/main.cpp

partcfgdialog.o: ../Ventoy2Disk/partcfgdialog.cpp ../Ventoy2Disk/partcfgdialog.h \
		../../Qt5.9.0/5.9/gcc_64/include/QtWidgets/QDialog \
		../../Qt5.9.0/5.9/gcc_64/include/QtWidgets/qdialog.h \
		../../Qt5.9.0/5.9/gcc_64/include/QtWidgets/qtwidgetsglobal.h \
		../../Qt5.9.0/5.9/gcc_64/include/QtGui/qtguiglobal.h \
		../../Qt5.9.0/5.9/gcc_64/include/QtCore/qglobal.h \
		../../Qt5.9.0/5.9/gcc_64/include/QtCore/qconfig-bootstrapped.h \
		../../Qt5.9.0/5.9/gcc_64/include/QtCore/qconfig.h \
		../../Qt5.9.0/5.9/gcc_64/include/QtCore/qtcore-config.h \
		../../Qt5.9.0/5.9/gcc_64/include/QtCore/qsystemdetection.h \
		../../Qt5.9.0/5.9/gcc_64/include/QtCore/qprocessordetection.h \
		../../Qt5.9.0/5.9/gcc_64/include/QtCore/qcompilerdetection.h \
		../../Qt5.9.0/5.9/gcc_64/include/QtCore/qtypeinfo.h \
		../../Qt5.9.0/5.9/gcc_64/include/QtCore/qsysinfo.h \
		../../Qt5.9.0/5.9/gcc_64/include/QtCore/qlogging.h \
		../../Qt5.9.0/5.9/gcc_64/include/QtCore/qflags.h \
		../../Qt5.9.0/5.9/gcc_64/include/QtCore/qatomic.h \
		../../Qt5.9.0/5.9/gcc_64/include/QtCore/qbasicatomic.h \
		../../Qt5.9.0/5.9/gcc_64/include/QtCore/qatomic_bootstrap.h \
		../../Qt5.9.0/5.9/gcc_64/include/QtCore/qgenericatomic.h \
		../../Qt5.9.0/5.9/gcc_64/include/QtCore/qatomic_cxx11.h \
		../../Qt5.9.0/5.9/gcc_64/include/QtCore/qatomic_msvc.h \
		../../Qt5.9.0/5.9/gcc_64/include/QtCore/qglobalstatic.h \
		../../Qt5.9.0/5.9/gcc_64/include/QtCore/qmutex.h \
		../../Qt5.9.0/5.9/gcc_64/include/QtCore/qnumeric.h \
		../../Qt5.9.0/5.9/gcc_64/include/QtCore/qversiontagging.h \
		../../Qt5.9.0/5.9/gcc_64/include/QtGui/qtgui-config.h \
		../../Qt5.9.0/5.9/gcc_64/include/QtWidgets/qtwidgets-config.h \
		../../Qt5.9.0/5.9/gcc_64/include/QtWidgets/qwidget.h \
		../../Qt5.9.0/5.9/gcc_64/include/QtGui/qwindowdefs.h \
		../../Qt5.9.0/5.9/gcc_64/include/QtCore/qobjectdefs.h \
		../../Qt5.9.0/5.9/gcc_64/include/QtCore/qnamespace.h \
		../../Qt5.9.0/5.9/gcc_64/include/QtCore/qobjectdefs_impl.h \
		../../Qt5.9.0/5.9/gcc_64/include/QtGui/qwindowdefs_win.h \
		../../Qt5.9.0/5.9/gcc_64/include/QtCore/qobject.h \
		../../Qt5.9.0/5.9/gcc_64/include/QtCore/qstring.h \
		../../Qt5.9.0/5.9/gcc_64/include/QtCore/qchar.h \
		../../Qt5.9.0/5.9/gcc_64/include/QtCore/qbytearray.h \
		../../Qt5.9.0/5.9/gcc_64/include/QtCore/qrefcount.h \
		../../Qt5.9.0/5.9/gcc_64/include/QtCore/qarraydata.h \
		../../Qt5.9.0/5.9/gcc_64/include/QtCore/qstringbuilder.h \
		../../Qt5.9.0/5.9/gcc_64/include/QtCore/qlist.h \
		../../Qt5.9.0/5.9/gcc_64/include/QtCore/qalgorithms.h \
		../../Qt5.9.0/5.9/gcc_64/include/QtCore/qiterator.h \
		../../Qt5.9.0/5.9/gcc_64/include/QtCore/qhashfunctions.h \
		../../Qt5.9.0/5.9/gcc_64/include/QtCore/qpair.h \
		../../Qt5.9.0/5.9/gcc_64/include/QtCore/qbytearraylist.h \
		../../Qt5.9.0/5.9/gcc_64/include/QtCore/qstringlist.h \
		../../Qt5.9.0/5.9/gcc_64/include/QtCore/qregexp.h \
		../../Qt5.9.0/5.9/gcc_64/include/QtCore/qstringmatcher.h \
		../../Qt5.9.0/5.9/gcc_64/include/QtCore/qcoreevent.h \
		../../Qt5.9.0/5.9/gcc_64/include/QtCore/qscopedpointer.h \
		../../Qt5.9.0/5.9/gcc_64/include/QtCore/qmetatype.h \
		../../Qt5.9.0/5.9/gcc_64/include/QtCore/qvarlengtharray.h \
		../../Qt5.9.0/5.9/gcc_64/include/QtCore/qcontainerfwd.h \
		../../Qt5.9.0/5.9/gcc_64/include/QtCore/qobject_impl.h \
		../../Qt5.9.0/5.9/gcc_64/include/QtCore/qmargins.h \
		../../Qt5.9.0/5.9/gcc_64/include/QtGui/qpaintdevice.h \
		../../Qt5.9.0/5.9/gcc_64/include/QtCore/qrect.h \
		../../Qt5.9.0/5.9/gcc_64/include/QtCore/qsize.h \
		../../Qt5.9.0/5.9/gcc_64/include/QtCore/qpoint.h \
		../../Qt5.9.0/5.9/gcc_64/include/QtGui/qpalette.h \
		../../Qt5.9.0/5.9/gcc_64/include/QtGui/qcolor.h \
		../../Qt5.9.0/5.9/gcc_64/include/QtGui/qrgb.h \
		../../Qt5.9.0/5.9/gcc_64/include/QtGui/qrgba64.h \
		../../Qt5.9.0/5.9/gcc_64/include/QtGui/qbrush.h \
		../../Qt5.9.0/5.9/gcc_64/include/QtCore/qvector.h \
		../../Qt5.9.0/5.9/gcc_64/include/QtGui/qmatrix.h \
		../../Qt5.9.0/5.9/gcc_64/include/QtGui/qpolygon.h \
		../../Qt5.9.0/5.9/gcc_64/include/QtGui/qregion.h \
		../../Qt5.9.0/5.9/gcc_64/include/QtCore/qdatastream.h \
		../../Qt5.9.0/5.9/gcc_64/include/QtCore/qiodevice.h \
		../../Qt5.9.0/5.9/gcc_64/include/QtCore/qline.h \
		../../Qt5.9.0/5.9/gcc_64/include/QtGui/qtransform.h \
		../../Qt5.9.0/5.9/gcc_64/include/QtGui/qpainterpath.h \
		../../Qt5.9.0/5.9/gcc_64/include/QtGui/qimage.h \
		../../Qt5.9.0/5.9/gcc_64/include/QtGui/qpixelformat.h \
		../../Qt5.9.0/5.9/gcc_64/include/QtGui/qpixmap.h \
		../../Qt5.9.0/5.9/gcc_64/include/QtCore/qsharedpointer.h \
		../../Qt5.9.0/5.9/gcc_64/include/QtCore/qshareddata.h \
		../../Qt5.9.0/5.9/gcc_64/include/QtCore/qhash.h \
		../../Qt5.9.0/5.9/gcc_64/include/QtCore/qsharedpointer_impl.h \
		../../Qt5.9.0/5.9/gcc_64/include/QtGui/qfont.h \
		../../Qt5.9.0/5.9/gcc_64/include/QtGui/qfontmetrics.h \
		../../Qt5.9.0/5.9/gcc_64/include/QtGui/qfontinfo.h \
		../../Qt5.9.0/5.9/gcc_64/include/QtWidgets/qsizepolicy.h \
		../../Qt5.9.0/5.9/gcc_64/include/QtGui/qcursor.h \
		../../Qt5.9.0/5.9/gcc_64/include/QtGui/qkeysequence.h \
		../../Qt5.9.0/5.9/gcc_64/include/QtGui/qevent.h \
		../../Qt5.9.0/5.9/gcc_64/include/QtCore/qvariant.h \
		../../Qt5.9.0/5.9/gcc_64/include/QtCore/qmap.h \
		../../Qt5.9.0/5.9/gcc_64/include/QtCore/qdebug.h \
		../../Qt5.9.0/5.9/gcc_64/include/QtCore/qtextstream.h \
		../../Qt5.9.0/5.9/gcc_64/include/QtCore/qlocale.h \
		../../Qt5.9.0/5.9/gcc_64/include/QtCore/qset.h \
		../../Qt5.9.0/5.9/gcc_64/include/QtCore/qcontiguouscache.h \
		../../Qt5.9.0/5.9/gcc_64/include/QtCore/qurl.h \
		../../Qt5.9.0/5.9/gcc_64/include/QtCore/qurlquery.h \
		../../Qt5.9.0/5.9/gcc_64/include/QtCore/qfile.h \
		../../Qt5.9.0/5.9/gcc_64/include/QtCore/qfiledevice.h \
		../../Qt5.9.0/5.9/gcc_64/include/QtGui/qvector2d.h \
		../../Qt5.9.0/5.9/gcc_64/include/QtGui/qtouchdevice.h \
		../../Qt5.9.0/5.9/gcc_64/include/QtCore/QJsonObject \
		../../Qt5.9.0/5.9/gcc_64/include/QtCore/qjsonobject.h \
		../../Qt5.9.0/5.9/gcc_64/include/QtCore/qjsonvalue.h \
		ui_partcfgdialog.h \
		../../Qt5.9.0/5.9/gcc_64/include/QtCore/QDebug \
		../../Qt5.9.0/5.9/gcc_64/include/QtWidgets/QMessageBox \
		../../Qt5.9.0/5.9/gcc_64/include/QtWidgets/qmessagebox.h
	$(CXX) -c $(CXXFLAGS) $(INCPATH) -o partcfgdialog.o ../Ventoy2Disk/partcfgdialog.cpp

ventoy2diskwindow.o: ../Ventoy2Disk/ventoy2diskwindow.cpp ../Ventoy2Disk/ventoy2diskwindow.h \
		../../Qt5.9.0/5.9/gcc_64/include/QtWidgets/QMainWindow \
		../../Qt5.9.0/5.9/gcc_64/include/QtWidgets/qmainwindow.h \
		../../Qt5.9.0/5.9/gcc_64/include/QtWidgets/qtwidgetsglobal.h \
		../../Qt5.9.0/5.9/gcc_64/include/QtGui/qtguiglobal.h \
		../../Qt5.9.0/5.9/gcc_64/include/QtCore/qglobal.h \
		../../Qt5.9.0/5.9/gcc_64/include/QtCore/qconfig-bootstrapped.h \
		../../Qt5.9.0/5.9/gcc_64/include/QtCore/qconfig.h \
		../../Qt5.9.0/5.9/gcc_64/include/QtCore/qtcore-config.h \
		../../Qt5.9.0/5.9/gcc_64/include/QtCore/qsystemdetection.h \
		../../Qt5.9.0/5.9/gcc_64/include/QtCore/qprocessordetection.h \
		../../Qt5.9.0/5.9/gcc_64/include/QtCore/qcompilerdetection.h \
		../../Qt5.9.0/5.9/gcc_64/include/QtCore/qtypeinfo.h \
		../../Qt5.9.0/5.9/gcc_64/include/QtCore/qsysinfo.h \
		../../Qt5.9.0/5.9/gcc_64/include/QtCore/qlogging.h \
		../../Qt5.9.0/5.9/gcc_64/include/QtCore/qflags.h \
		../../Qt5.9.0/5.9/gcc_64/include/QtCore/qatomic.h \
		../../Qt5.9.0/5.9/gcc_64/include/QtCore/qbasicatomic.h \
		../../Qt5.9.0/5.9/gcc_64/include/QtCore/qatomic_bootstrap.h \
		../../Qt5.9.0/5.9/gcc_64/include/QtCore/qgenericatomic.h \
		../../Qt5.9.0/5.9/gcc_64/include/QtCore/qatomic_cxx11.h \
		../../Qt5.9.0/5.9/gcc_64/include/QtCore/qatomic_msvc.h \
		../../Qt5.9.0/5.9/gcc_64/include/QtCore/qglobalstatic.h \
		../../Qt5.9.0/5.9/gcc_64/include/QtCore/qmutex.h \
		../../Qt5.9.0/5.9/gcc_64/include/QtCore/qnumeric.h \
		../../Qt5.9.0/5.9/gcc_64/include/QtCore/qversiontagging.h \
		../../Qt5.9.0/5.9/gcc_64/include/QtGui/qtgui-config.h \
		../../Qt5.9.0/5.9/gcc_64/include/QtWidgets/qtwidgets-config.h \
		../../Qt5.9.0/5.9/gcc_64/include/QtWidgets/qwidget.h \
		../../Qt5.9.0/5.9/gcc_64/include/QtGui/qwindowdefs.h \
		../../Qt5.9.0/5.9/gcc_64/include/QtCore/qobjectdefs.h \
		../../Qt5.9.0/5.9/gcc_64/include/QtCore/qnamespace.h \
		../../Qt5.9.0/5.9/gcc_64/include/QtCore/qobjectdefs_impl.h \
		../../Qt5.9.0/5.9/gcc_64/include/QtGui/qwindowdefs_win.h \
		../../Qt5.9.0/5.9/gcc_64/include/QtCore/qobject.h \
		../../Qt5.9.0/5.9/gcc_64/include/QtCore/qstring.h \
		../../Qt5.9.0/5.9/gcc_64/include/QtCore/qchar.h \
		../../Qt5.9.0/5.9/gcc_64/include/QtCore/qbytearray.h \
		../../Qt5.9.0/5.9/gcc_64/include/QtCore/qrefcount.h \
		../../Qt5.9.0/5.9/gcc_64/include/QtCore/qarraydata.h \
		../../Qt5.9.0/5.9/gcc_64/include/QtCore/qstringbuilder.h \
		../../Qt5.9.0/5.9/gcc_64/include/QtCore/qlist.h \
		../../Qt5.9.0/5.9/gcc_64/include/QtCore/qalgorithms.h \
		../../Qt5.9.0/5.9/gcc_64/include/QtCore/qiterator.h \
		../../Qt5.9.0/5.9/gcc_64/include/QtCore/qhashfunctions.h \
		../../Qt5.9.0/5.9/gcc_64/include/QtCore/qpair.h \
		../../Qt5.9.0/5.9/gcc_64/include/QtCore/qbytearraylist.h \
		../../Qt5.9.0/5.9/gcc_64/include/QtCore/qstringlist.h \
		../../Qt5.9.0/5.9/gcc_64/include/QtCore/qregexp.h \
		../../Qt5.9.0/5.9/gcc_64/include/QtCore/qstringmatcher.h \
		../../Qt5.9.0/5.9/gcc_64/include/QtCore/qcoreevent.h \
		../../Qt5.9.0/5.9/gcc_64/include/QtCore/qscopedpointer.h \
		../../Qt5.9.0/5.9/gcc_64/include/QtCore/qmetatype.h \
		../../Qt5.9.0/5.9/gcc_64/include/QtCore/qvarlengtharray.h \
		../../Qt5.9.0/5.9/gcc_64/include/QtCore/qcontainerfwd.h \
		../../Qt5.9.0/5.9/gcc_64/include/QtCore/qobject_impl.h \
		../../Qt5.9.0/5.9/gcc_64/include/QtCore/qmargins.h \
		../../Qt5.9.0/5.9/gcc_64/include/QtGui/qpaintdevice.h \
		../../Qt5.9.0/5.9/gcc_64/include/QtCore/qrect.h \
		../../Qt5.9.0/5.9/gcc_64/include/QtCore/qsize.h \
		../../Qt5.9.0/5.9/gcc_64/include/QtCore/qpoint.h \
		../../Qt5.9.0/5.9/gcc_64/include/QtGui/qpalette.h \
		../../Qt5.9.0/5.9/gcc_64/include/QtGui/qcolor.h \
		../../Qt5.9.0/5.9/gcc_64/include/QtGui/qrgb.h \
		../../Qt5.9.0/5.9/gcc_64/include/QtGui/qrgba64.h \
		../../Qt5.9.0/5.9/gcc_64/include/QtGui/qbrush.h \
		../../Qt5.9.0/5.9/gcc_64/include/QtCore/qvector.h \
		../../Qt5.9.0/5.9/gcc_64/include/QtGui/qmatrix.h \
		../../Qt5.9.0/5.9/gcc_64/include/QtGui/qpolygon.h \
		../../Qt5.9.0/5.9/gcc_64/include/QtGui/qregion.h \
		../../Qt5.9.0/5.9/gcc_64/include/QtCore/qdatastream.h \
		../../Qt5.9.0/5.9/gcc_64/include/QtCore/qiodevice.h \
		../../Qt5.9.0/5.9/gcc_64/include/QtCore/qline.h \
		../../Qt5.9.0/5.9/gcc_64/include/QtGui/qtransform.h \
		../../Qt5.9.0/5.9/gcc_64/include/QtGui/qpainterpath.h \
		../../Qt5.9.0/5.9/gcc_64/include/QtGui/qimage.h \
		../../Qt5.9.0/5.9/gcc_64/include/QtGui/qpixelformat.h \
		../../Qt5.9.0/5.9/gcc_64/include/QtGui/qpixmap.h \
		../../Qt5.9.0/5.9/gcc_64/include/QtCore/qsharedpointer.h \
		../../Qt5.9.0/5.9/gcc_64/include/QtCore/qshareddata.h \
		../../Qt5.9.0/5.9/gcc_64/include/QtCore/qhash.h \
		../../Qt5.9.0/5.9/gcc_64/include/QtCore/qsharedpointer_impl.h \
		../../Qt5.9.0/5.9/gcc_64/include/QtGui/qfont.h \
		../../Qt5.9.0/5.9/gcc_64/include/QtGui/qfontmetrics.h \
		../../Qt5.9.0/5.9/gcc_64/include/QtGui/qfontinfo.h \
		../../Qt5.9.0/5.9/gcc_64/include/QtWidgets/qsizepolicy.h \
		../../Qt5.9.0/5.9/gcc_64/include/QtGui/qcursor.h \
		../../Qt5.9.0/5.9/gcc_64/include/QtGui/qkeysequence.h \
		../../Qt5.9.0/5.9/gcc_64/include/QtGui/qevent.h \
		../../Qt5.9.0/5.9/gcc_64/include/QtCore/qvariant.h \
		../../Qt5.9.0/5.9/gcc_64/include/QtCore/qmap.h \
		../../Qt5.9.0/5.9/gcc_64/include/QtCore/qdebug.h \
		../../Qt5.9.0/5.9/gcc_64/include/QtCore/qtextstream.h \
		../../Qt5.9.0/5.9/gcc_64/include/QtCore/qlocale.h \
		../../Qt5.9.0/5.9/gcc_64/include/QtCore/qset.h \
		../../Qt5.9.0/5.9/gcc_64/include/QtCore/qcontiguouscache.h \
		../../Qt5.9.0/5.9/gcc_64/include/QtCore/qurl.h \
		../../Qt5.9.0/5.9/gcc_64/include/QtCore/qurlquery.h \
		../../Qt5.9.0/5.9/gcc_64/include/QtCore/qfile.h \
		../../Qt5.9.0/5.9/gcc_64/include/QtCore/qfiledevice.h \
		../../Qt5.9.0/5.9/gcc_64/include/QtGui/qvector2d.h \
		../../Qt5.9.0/5.9/gcc_64/include/QtGui/qtouchdevice.h \
		../../Qt5.9.0/5.9/gcc_64/include/QtWidgets/qtabwidget.h \
		../../Qt5.9.0/5.9/gcc_64/include/QtGui/qicon.h \
		../../Qt5.9.0/5.9/gcc_64/include/QtWidgets/QActionGroup \
		../../Qt5.9.0/5.9/gcc_64/include/QtWidgets/qactiongroup.h \
		../../Qt5.9.0/5.9/gcc_64/include/QtWidgets/qaction.h \
		../../Qt5.9.0/5.9/gcc_64/include/QtCore/QJsonDocument \
		../../Qt5.9.0/5.9/gcc_64/include/QtCore/qjsondocument.h \
		../../Qt5.9.0/5.9/gcc_64/include/QtCore/qjsonvalue.h \
		../../Qt5.9.0/5.9/gcc_64/include/QtCore/QFile \
		../../Qt5.9.0/5.9/gcc_64/include/QtCore/QJsonObject \
		../../Qt5.9.0/5.9/gcc_64/include/QtCore/qjsonobject.h \
		../../Qt5.9.0/5.9/gcc_64/include/QtCore/QJsonArray \
		../../Qt5.9.0/5.9/gcc_64/include/QtCore/qjsonarray.h \
		../../Qt5.9.0/5.9/gcc_64/include/QtCore/QVector \
		../../Qt5.9.0/5.9/gcc_64/include/QtCore/QtGlobal \
		../../Qt5.9.0/5.9/gcc_64/include/QtCore/QDebug \
		../../Qt5.9.0/5.9/gcc_64/include/QtGui/QCloseEvent \
		../../Qt5.9.0/5.9/gcc_64/include/QtCore/QThread \
		../../Qt5.9.0/5.9/gcc_64/include/QtCore/qthread.h \
		../Ventoy2Disk/partcfgdialog.h \
		../../Qt5.9.0/5.9/gcc_64/include/QtWidgets/QDialog \
		../../Qt5.9.0/5.9/gcc_64/include/QtWidgets/qdialog.h \
		ui_ventoy2diskwindow.h \
		../../Qt5.9.0/5.9/gcc_64/include/QtWidgets/QMessageBox \
		../../Qt5.9.0/5.9/gcc_64/include/QtWidgets/qmessagebox.h \
		../../Ventoy2Disk/Core/ventoy_define.h \
		../../Ventoy2Disk/Core/ventoy_util.h \
		../../Ventoy2Disk/Core/ventoy_disk.h \
		../../Ventoy2Disk/Core/ventoy_json.h \
		../../Ventoy2Disk/Web/ventoy_http.h \
		../../Ventoy2Disk/Lib/libhttp/include/civetweb.h \
		../../Ventoy2Disk/QT/ventoy_qt.h
	$(CXX) -c $(CXXFLAGS) $(INCPATH) -o ventoy2diskwindow.o ../Ventoy2Disk/ventoy2diskwindow.cpp

moc_partcfgdialog.o: moc_partcfgdialog.cpp 
	$(CXX) -c $(CXXFLAGS) $(INCPATH) -o moc_partcfgdialog.o moc_partcfgdialog.cpp

moc_ventoy2diskwindow.o: moc_ventoy2diskwindow.cpp 
	$(CXX) -c $(CXXFLAGS) $(INCPATH) -o moc_ventoy2diskwindow.o moc_ventoy2diskwindow.cpp

####### Install

install_target: first FORCE
	@test -d $(INSTALL_ROOT)/opt/Ventoy2Disk/bin || mkdir -p $(INSTALL_ROOT)/opt/Ventoy2Disk/bin
	-$(QINSTALL_PROGRAM) $(QMAKE_TARGET) $(INSTALL_ROOT)/opt/Ventoy2Disk/bin/$(QMAKE_TARGET)
	-$(STRIP) $(INSTALL_ROOT)/opt/Ventoy2Disk/bin/$(QMAKE_TARGET)

uninstall_target: FORCE
	-$(DEL_FILE) $(INSTALL_ROOT)/opt/Ventoy2Disk/bin/$(QMAKE_TARGET)
	-$(DEL_DIR) $(INSTALL_ROOT)/opt/Ventoy2Disk/bin/ 


install: install_target  FORCE

uninstall: uninstall_target  FORCE

FORCE: