aboutsummaryrefslogtreecommitdiff
path: root/Makefile.in
blob: 4f2afe1b65576cdf3068bc4e55fb69aadbb8b87c (plain)
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
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
1965
1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
1976
1977
1978
1979
1980
1981
1982
1983
1984
1985
1986
1987
1988
1989
1990
1991
1992
1993
1994
1995
1996
1997
1998
1999
2000
2001
2002
2003
2004
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
2027
2028
2029
2030
2031
2032
2033
2034
2035
2036
2037
2038
2039
2040
2041
2042
2043
2044
2045
2046
2047
2048
2049
2050
2051
2052
2053
2054
2055
2056
2057
2058
2059
2060
2061
2062
2063
2064
2065
2066
2067
2068
2069
2070
2071
2072
2073
2074
2075
2076
2077
2078
2079
2080
2081
2082
2083
2084
2085
2086
2087
2088
2089
2090
2091
2092
2093
2094
2095
2096
2097
2098
2099
2100
2101
2102
2103
2104
2105
2106
2107
2108
2109
2110
2111
2112
2113
2114
2115
2116
2117
2118
2119
2120
2121
2122
2123
2124
2125
2126
2127
2128
2129
2130
2131
2132
2133
2134
2135
2136
2137
2138
2139
2140
2141
2142
2143
2144
2145
2146
2147
2148
2149
2150
2151
2152
2153
2154
2155
2156
2157
2158
2159
2160
2161
2162
2163
2164
2165
2166
2167
2168
2169
2170
2171
2172
2173
2174
2175
2176
2177
2178
2179
2180
2181
2182
2183
2184
2185
2186
2187
2188
2189
2190
2191
2192
2193
2194
2195
2196
2197
2198
2199
2200
2201
2202
2203
2204
2205
2206
2207
2208
2209
2210
2211
2212
2213
2214
2215
2216
2217
2218
2219
2220
2221
2222
2223
2224
2225
2226
2227
2228
2229
2230
2231
2232
2233
2234
2235
2236
2237
2238
2239
2240
2241
2242
2243
2244
2245
2246
2247
2248
2249
2250
2251
2252
2253
2254
2255
2256
2257
2258
2259
2260
2261
2262
2263
2264
2265
2266
2267
2268
2269
2270
2271
2272
2273
2274
2275
2276
2277
2278
2279
2280
2281
2282
2283
2284
2285
2286
2287
2288
2289
2290
2291
2292
2293
2294
2295
2296
2297
2298
2299
2300
2301
2302
2303
2304
2305
2306
2307
2308
2309
2310
2311
2312
2313
2314
2315
2316
2317
2318
2319
2320
2321
2322
2323
2324
2325
2326
2327
2328
2329
2330
2331
2332
2333
2334
2335
2336
2337
2338
2339
2340
2341
2342
2343
2344
2345
2346
2347
2348
2349
2350
2351
2352
2353
2354
2355
2356
2357
2358
2359
2360
2361
2362
2363
2364
2365
2366
2367
2368
2369
2370
2371
2372
2373
2374
2375
2376
2377
2378
2379
2380
2381
2382
2383
2384
2385
2386
2387
2388
2389
2390
2391
2392
2393
2394
2395
2396
2397
2398
2399
2400
2401
2402
2403
2404
2405
2406
2407
2408
2409
2410
2411
2412
2413
2414
2415
2416
2417
2418
2419
2420
2421
2422
2423
2424
2425
2426
2427
2428
2429
2430
2431
2432
2433
2434
2435
2436
2437
2438
2439
2440
2441
2442
2443
2444
2445
2446
2447
2448
2449
2450
2451
2452
2453
2454
2455
2456
2457
2458
2459
2460
2461
2462
2463
2464
2465
2466
2467
2468
2469
2470
2471
2472
2473
2474
2475
2476
2477
2478
2479
2480
2481
2482
2483
2484
2485
2486
2487
2488
2489
2490
2491
2492
2493
2494
2495
2496
2497
2498
2499
2500
2501
2502
2503
2504
2505
2506
2507
2508
2509
2510
2511
2512
2513
2514
2515
2516
2517
2518
2519
2520
2521
2522
2523
2524
2525
2526
2527
2528
2529
2530
2531
2532
2533
2534
2535
2536
2537
2538
2539
2540
2541
2542
2543
2544
2545
2546
2547
2548
2549
2550
2551
2552
2553
2554
2555
2556
2557
2558
2559
2560
2561
2562
2563
2564
2565
2566
2567
2568
2569
2570
2571
2572
2573
2574
2575
2576
2577
2578
2579
2580
2581
2582
2583
2584
2585
2586
2587
2588
2589
2590
2591
2592
2593
2594
2595
2596
2597
2598
2599
2600
2601
2602
2603
2604
2605
2606
2607
2608
2609
2610
2611
2612
2613
2614
2615
2616
2617
2618
2619
2620
2621
2622
2623
2624
2625
2626
2627
2628
2629
2630
2631
2632
2633
2634
2635
2636
2637
2638
2639
2640
2641
2642
2643
2644
2645
2646
2647
2648
2649
2650
2651
2652
2653
2654
2655
2656
2657
2658
2659
2660
2661
2662
2663
2664
2665
2666
2667
2668
2669
2670
2671
2672
2673
2674
2675
2676
2677
2678
2679
2680
2681
2682
2683
2684
2685
2686
2687
2688
2689
2690
2691
2692
2693
2694
2695
2696
2697
2698
2699
2700
2701
2702
2703
2704
2705
2706
2707
2708
2709
2710
2711
2712
2713
2714
2715
2716
2717
2718
2719
2720
2721
2722
2723
2724
2725
2726
2727
2728
2729
2730
2731
2732
2733
2734
2735
2736
2737
2738
2739
2740
2741
2742
2743
2744
2745
2746
2747
2748
2749
2750
2751
2752
2753
2754
2755
2756
2757
2758
2759
2760
2761
2762
2763
2764
2765
2766
2767
2768
2769
2770
2771
2772
2773
2774
2775
2776
2777
2778
2779
2780
2781
2782
2783
2784
2785
2786
2787
2788
2789
2790
2791
2792
2793
2794
2795
2796
2797
2798
2799
2800
2801
2802
2803
2804
2805
2806
2807
2808
2809
2810
2811
2812
2813
2814
2815
2816
2817
2818
2819
2820
2821
2822
2823
2824
2825
2826
2827
2828
2829
2830
2831
2832
2833
2834
2835
2836
2837
2838
2839
2840
2841
2842
2843
2844
2845
2846
2847
2848
2849
2850
2851
2852
2853
2854
2855
2856
2857
2858
2859
2860
2861
2862
2863
2864
2865
2866
2867
2868
2869
2870
2871
2872
2873
2874
2875
2876
2877
2878
2879
2880
2881
2882
2883
2884
2885
2886
2887
2888
2889
2890
2891
2892
2893
2894
2895
2896
2897
2898
2899
2900
2901
2902
2903
2904
2905
2906
2907
2908
2909
2910
2911
2912
2913
2914
2915
2916
2917
2918
2919
2920
2921
2922
2923
2924
2925
2926
2927
2928
2929
2930
2931
2932
2933
2934
2935
2936
2937
2938
2939
2940
2941
2942
2943
2944
2945
2946
2947
2948
2949
2950
2951
2952
2953
2954
2955
2956
2957
2958
2959
2960
2961
2962
2963
2964
2965
2966
2967
2968
2969
2970
2971
2972
2973
2974
2975
2976
2977
2978
2979
2980
2981
2982
2983
2984
2985
2986
2987
2988
2989
2990
2991
2992
2993
2994
2995
2996
2997
2998
2999
3000
3001
3002
3003
3004
3005
3006
3007
3008
3009
3010
3011
3012
3013
3014
3015
3016
3017
3018
3019
3020
3021
3022
3023
3024
3025
3026
3027
3028
3029
3030
3031
3032
3033
3034
3035
3036
3037
3038
3039
3040
3041
3042
3043
3044
3045
3046
3047
3048
3049
3050
3051
3052
3053
3054
3055
3056
3057
3058
3059
3060
3061
3062
3063
3064
3065
3066
3067
3068
3069
3070
3071
3072
3073
3074
3075
3076
3077
3078
3079
3080
3081
3082
3083
3084
3085
3086
3087
3088
3089
3090
3091
3092
3093
3094
3095
3096
3097
3098
3099
3100
3101
3102
3103
3104
3105
3106
3107
3108
3109
3110
3111
3112
3113
3114
3115
3116
3117
3118
3119
3120
3121
3122
3123
3124
3125
3126
3127
3128
3129
3130
3131
3132
3133
3134
3135
3136
3137
3138
3139
3140
3141
3142
3143
3144
3145
3146
3147
3148
3149
3150
3151
3152
3153
3154
3155
3156
3157
3158
3159
3160
3161
3162
3163
3164
3165
3166
3167
3168
3169
3170
3171
3172
3173
3174
3175
3176
3177
3178
3179
3180
3181
3182
3183
3184
3185
3186
3187
3188
3189
3190
3191
3192
3193
3194
3195
3196
3197
3198
3199
3200
3201
3202
3203
3204
3205
3206
3207
3208
3209
3210
3211
3212
3213
3214
3215
3216
3217
3218
3219
3220
3221
3222
3223
3224
3225
3226
3227
3228
3229
3230
3231
3232
3233
3234
3235
3236
3237
3238
3239
3240
3241
3242
3243
3244
3245
3246
3247
3248
3249
3250
3251
3252
3253
3254
3255
3256
3257
3258
3259
3260
3261
3262
3263
3264
3265
3266
3267
3268
3269
3270
3271
3272
3273
3274
3275
3276
3277
3278
3279
3280
3281
3282
3283
3284
3285
3286
3287
3288
3289
3290
3291
3292
3293
3294
3295
3296
3297
3298
3299
3300
3301
3302
3303
3304
3305
3306
3307
3308
3309
3310
3311
3312
3313
3314
3315
3316
3317
3318
3319
3320
3321
3322
3323
3324
3325
3326
3327
3328
3329
3330
3331
3332
3333
3334
3335
3336
3337
3338
3339
3340
3341
3342
3343
3344
3345
3346
3347
3348
3349
3350
3351
3352
3353
3354
3355
3356
3357
3358
3359
3360
3361
3362
3363
3364
3365
3366
3367
3368
3369
3370
3371
3372
3373
3374
3375
3376
3377
3378
3379
3380
3381
3382
3383
3384
3385
3386
3387
3388
3389
3390
3391
3392
3393
3394
3395
3396
3397
3398
3399
3400
3401
3402
3403
3404
3405
3406
3407
3408
3409
3410
3411
3412
3413
3414
3415
3416
3417
3418
3419
3420
3421
3422
3423
3424
3425
3426
3427
3428
3429
3430
3431
3432
3433
3434
3435
3436
3437
3438
3439
3440
3441
3442
3443
3444
3445
3446
3447
3448
3449
3450
3451
3452
3453
3454
3455
3456
3457
3458
3459
3460
3461
3462
3463
3464
3465
3466
3467
3468
3469
3470
3471
3472
3473
3474
3475
3476
3477
3478
3479
3480
3481
3482
3483
3484
3485
3486
3487
3488
3489
3490
3491
3492
3493
3494
3495
3496
3497
3498
3499
3500
3501
3502
3503
3504
3505
3506
3507
3508
3509
3510
3511
3512
3513
3514
3515
3516
3517
3518
3519
3520
3521
3522
3523
3524
3525
3526
3527
3528
3529
3530
3531
3532
3533
3534
3535
3536
3537
3538
3539
3540
3541
3542
3543
3544
3545
3546
3547
3548
3549
3550
3551
3552
3553
3554
3555
3556
3557
3558
3559
3560
3561
3562
3563
3564
3565
3566
3567
3568
3569
3570
3571
3572
3573
3574
3575
3576
3577
3578
3579
3580
3581
3582
3583
3584
3585
3586
3587
3588
3589
3590
3591
3592
3593
3594
3595
3596
3597
3598
3599
3600
3601
3602
3603
3604
3605
3606
3607
3608
3609
3610
3611
3612
3613
3614
3615
3616
3617
3618
3619
3620
3621
3622
3623
3624
3625
3626
3627
3628
3629
3630
3631
3632
3633
3634
3635
3636
3637
3638
3639
3640
3641
3642
3643
3644
3645
3646
3647
3648
3649
3650
3651
3652
3653
3654
3655
3656
3657
3658
3659
3660
3661
3662
3663
3664
3665
3666
3667
3668
3669
3670
3671
3672
3673
3674
3675
3676
3677
3678
3679
3680
3681
3682
3683
3684
3685
3686
3687
3688
3689
3690
3691
3692
3693
3694
3695
3696
3697
3698
3699
3700
3701
3702
3703
3704
3705
3706
3707
3708
3709
3710
3711
3712
3713
3714
3715
3716
3717
3718
3719
3720
3721
3722
3723
3724
3725
3726
3727
3728
3729
3730
3731
3732
3733
3734
3735
3736
3737
3738
3739
3740
3741
3742
3743
3744
3745
3746
3747
3748
3749
3750
3751
3752
3753
3754
3755
3756
3757
3758
3759
3760
3761
3762
3763
3764
3765
3766
3767
3768
3769
3770
3771
3772
3773
3774
3775
3776
3777
3778
3779
3780
3781
3782
3783
3784
3785
3786
3787
3788
3789
3790
3791
3792
3793
3794
3795
3796
3797
3798
3799
3800
3801
3802
3803
3804
3805
3806
3807
3808
3809
3810
3811
3812
3813
3814
3815
3816
3817
3818
3819
3820
3821
3822
3823
3824
3825
3826
3827
3828
3829
3830
3831
3832
3833
3834
3835
3836
3837
3838
3839
3840
3841
3842
3843
3844
3845
3846
3847
3848
3849
3850
3851
3852
3853
3854
3855
3856
3857
3858
3859
3860
3861
3862
3863
3864
3865
3866
3867
3868
3869
3870
3871
3872
3873
3874
3875
3876
3877
3878
3879
3880
3881
3882
3883
3884
3885
3886
3887
3888
3889
3890
3891
3892
3893
3894
3895
3896
3897
3898
3899
3900
3901
3902
3903
3904
3905
3906
3907
3908
3909
3910
3911
3912
3913
3914
3915
3916
3917
3918
3919
3920
3921
3922
3923
3924
3925
3926
3927
3928
3929
3930
3931
3932
3933
3934
3935
3936
3937
3938
3939
3940
3941
3942
3943
3944
3945
3946
3947
3948
3949
3950
3951
3952
3953
3954
3955
3956
3957
3958
3959
3960
3961
3962
3963
3964
3965
3966
3967
3968
3969
3970
3971
3972
3973
3974
3975
3976
3977
3978
3979
3980
3981
3982
3983
3984
3985
3986
3987
3988
3989
3990
3991
3992
3993
3994
3995
3996
3997
3998
3999
4000
4001
4002
4003
4004
4005
4006
4007
4008
4009
4010
4011
4012
4013
4014
4015
4016
4017
4018
4019
4020
4021
4022
4023
4024
4025
4026
4027
4028
4029
4030
4031
4032
4033
4034
4035
4036
4037
4038
4039
4040
4041
4042
4043
4044
4045
4046
4047
4048
4049
4050
4051
4052
4053
4054
4055
4056
4057
4058
4059
4060
4061
4062
4063
4064
4065
4066
4067
4068
4069
4070
4071
4072
4073
4074
4075
4076
4077
4078
4079
4080
4081
4082
4083
4084
4085
4086
4087
4088
4089
4090
4091
4092
4093
4094
4095
4096
4097
4098
4099
4100
4101
4102
4103
4104
4105
4106
4107
4108
4109
4110
4111
4112
4113
4114
4115
4116
4117
# Makefile.in generated by automake 1.11.1 from Makefile.am.
# @configure_input@

# Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002,
# 2003, 2004, 2005, 2006, 2007, 2008, 2009  Free Software Foundation,
# Inc.
# This Makefile.in is free software; the Free Software Foundation
# gives unlimited permission to copy and/or distribute it,
# with or without modifications, as long as this notice is preserved.

# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY, to the extent permitted by law; without
# even the implied warranty of MERCHANTABILITY or FITNESS FOR A
# PARTICULAR PURPOSE.

@SET_MAKE@

# These utility programs have to be built for BUILD host in cross-build.
# This makes things rather non-standard automake

# These utility programs have to be built for BUILD host in cross-build.
# This makes things rather non-standard automake

# These utility programs have to be built for BUILD host in cross-build.
# This makes things rather non-standard automake

# Makefile for cpp module.
# Copied from raw preprocessor module.

#TESTS += modules/preprocs/gas/tests/rawpp_test.sh

# Assume objfmt_coff is included

# Assume objfmt_coff is included



VPATH = @srcdir@
pkgdatadir = $(datadir)/@PACKAGE@
pkgincludedir = $(includedir)/@PACKAGE@
pkglibdir = $(libdir)/@PACKAGE@
pkglibexecdir = $(libexecdir)/@PACKAGE@
am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd
install_sh_DATA = $(install_sh) -c -m 644
install_sh_PROGRAM = $(install_sh) -c
install_sh_SCRIPT = $(install_sh) -c
INSTALL_HEADER = $(INSTALL_DATA)
transform = $(program_transform_name)
NORMAL_INSTALL = :
PRE_INSTALL = :
POST_INSTALL = :
NORMAL_UNINSTALL = :
PRE_UNINSTALL = :
POST_UNINSTALL = :
build_triplet = @build@
host_triplet = @host@
bin_PROGRAMS = yasm$(EXEEXT) ytasm$(EXEEXT) vsyasm$(EXEEXT)
TESTS = $(am__append_3) modules/arch/x86/tests/x86_test.sh \
	modules/arch/x86/tests/gas32/x86_gas32_test.sh \
	modules/arch/x86/tests/gas64/x86_gas64_test.sh \
	modules/arch/lc3b/tests/lc3b_test.sh \
	modules/parsers/gas/tests/gas_test.sh \
	modules/parsers/gas/tests/bin/gas_bin_test.sh \
	modules/parsers/nasm/tests/nasm_test.sh \
	modules/parsers/nasm/tests/worphan/nasm_worphan_test.sh \
	modules/parsers/tasm/tests/tasm_test.sh \
	modules/parsers/tasm/tests/exe/tasm_exe_test.sh \
	modules/preprocs/tasm/tests/tasmpp_test.sh \
	modules/preprocs/nasm/tests/nasmpp_test.sh \
	modules/preprocs/raw/tests/rawpp_test.sh \
	modules/dbgfmts/dwarf2/tests/gen64/dwarf2_gen64_test.sh \
	modules/dbgfmts/dwarf2/tests/pass32/dwarf2_pass32_test.sh \
	modules/dbgfmts/dwarf2/tests/pass64/dwarf2_pass64_test.sh \
	modules/dbgfmts/dwarf2/tests/passwin64/dwarf2_passwin64_test.sh \
	modules/dbgfmts/stabs/tests/stabs_test.sh \
	modules/objfmts/bin/tests/bin_test.sh \
	modules/objfmts/bin/tests/multisect/bin_multi_test.sh \
	modules/objfmts/elf/tests/elf_test.sh \
	modules/objfmts/elf/tests/amd64/elf_amd64_test.sh \
	modules/objfmts/elf/tests/gas32/elf_gas32_test.sh \
	modules/objfmts/elf/tests/gas64/elf_gas64_test.sh \
	modules/objfmts/coff/tests/coff_test.sh \
	modules/objfmts/macho/tests/gas32/gas_macho32_test.sh \
	modules/objfmts/macho/tests/gas64/gas_macho64_test.sh \
	modules/objfmts/macho/tests/nasm32/macho32_test.sh \
	modules/objfmts/macho/tests/nasm64/macho64_test.sh \
	modules/objfmts/rdf/tests/rdf_test.sh \
	modules/objfmts/win32/tests/win32_test.sh \
	modules/objfmts/win32/tests/gas/win32_gas_test.sh \
	modules/objfmts/win64/tests/win64_test.sh \
	modules/objfmts/win64/tests/gas/win64_gas_test.sh \
	modules/objfmts/xdf/tests/xdf_test.sh bitvect_test$(EXEEXT) \
	floatnum_test$(EXEEXT) leb128_test$(EXEEXT) \
	splitpath_test$(EXEEXT) combpath_test$(EXEEXT) \
	uncstring_test$(EXEEXT) libyasm/tests/libyasm_test.sh
noinst_PROGRAMS = genstring$(EXEEXT) re2c$(EXEEXT) genmacro$(EXEEXT) \
	genperf$(EXEEXT) genversion$(EXEEXT) genmodule$(EXEEXT)
check_PROGRAMS = test_hd$(EXEEXT) bitvect_test$(EXEEXT) \
	floatnum_test$(EXEEXT) leb128_test$(EXEEXT) \
	splitpath_test$(EXEEXT) combpath_test$(EXEEXT) \
	uncstring_test$(EXEEXT)
DIST_COMMON = README $(am__configure_deps) $(dist_man_MANS) \
	$(include_HEADERS) $(modinclude_HEADERS) $(noinst_HEADERS) \
	$(notrans_dist_man_MANS) $(srcdir)/Makefile.am \
	$(srcdir)/Makefile.in $(srcdir)/config.h.in \
	$(srcdir)/frontends/Makefile.inc \
	$(srcdir)/frontends/tasm/Makefile.inc \
	$(srcdir)/frontends/vsyasm/Makefile.inc \
	$(srcdir)/frontends/yasm/Makefile.inc \
	$(srcdir)/libyasm/Makefile.inc \
	$(srcdir)/libyasm/tests/Makefile.inc $(srcdir)/m4/Makefile.inc \
	$(srcdir)/modules/Makefile.inc \
	$(srcdir)/modules/arch/Makefile.inc \
	$(srcdir)/modules/arch/lc3b/Makefile.inc \
	$(srcdir)/modules/arch/lc3b/tests/Makefile.inc \
	$(srcdir)/modules/arch/x86/Makefile.inc \
	$(srcdir)/modules/arch/x86/tests/Makefile.inc \
	$(srcdir)/modules/arch/x86/tests/gas32/Makefile.inc \
	$(srcdir)/modules/arch/x86/tests/gas64/Makefile.inc \
	$(srcdir)/modules/dbgfmts/Makefile.inc \
	$(srcdir)/modules/dbgfmts/codeview/Makefile.inc \
	$(srcdir)/modules/dbgfmts/dwarf2/Makefile.inc \
	$(srcdir)/modules/dbgfmts/dwarf2/tests/Makefile.inc \
	$(srcdir)/modules/dbgfmts/dwarf2/tests/gen64/Makefile.inc \
	$(srcdir)/modules/dbgfmts/dwarf2/tests/pass32/Makefile.inc \
	$(srcdir)/modules/dbgfmts/dwarf2/tests/pass64/Makefile.inc \
	$(srcdir)/modules/dbgfmts/dwarf2/tests/passwin64/Makefile.inc \
	$(srcdir)/modules/dbgfmts/null/Makefile.inc \
	$(srcdir)/modules/dbgfmts/stabs/Makefile.inc \
	$(srcdir)/modules/dbgfmts/stabs/tests/Makefile.inc \
	$(srcdir)/modules/listfmts/Makefile.inc \
	$(srcdir)/modules/listfmts/nasm/Makefile.inc \
	$(srcdir)/modules/objfmts/Makefile.inc \
	$(srcdir)/modules/objfmts/bin/Makefile.inc \
	$(srcdir)/modules/objfmts/bin/tests/Makefile.inc \
	$(srcdir)/modules/objfmts/bin/tests/multisect/Makefile.inc \
	$(srcdir)/modules/objfmts/coff/Makefile.inc \
	$(srcdir)/modules/objfmts/coff/tests/Makefile.inc \
	$(srcdir)/modules/objfmts/dbg/Makefile.inc \
	$(srcdir)/modules/objfmts/elf/Makefile.inc \
	$(srcdir)/modules/objfmts/elf/tests/Makefile.inc \
	$(srcdir)/modules/objfmts/elf/tests/amd64/Makefile.inc \
	$(srcdir)/modules/objfmts/elf/tests/gas32/Makefile.inc \
	$(srcdir)/modules/objfmts/elf/tests/gas64/Makefile.inc \
	$(srcdir)/modules/objfmts/macho/Makefile.inc \
	$(srcdir)/modules/objfmts/macho/tests/Makefile.inc \
	$(srcdir)/modules/objfmts/macho/tests/gas32/Makefile.inc \
	$(srcdir)/modules/objfmts/macho/tests/gas64/Makefile.inc \
	$(srcdir)/modules/objfmts/macho/tests/nasm32/Makefile.inc \
	$(srcdir)/modules/objfmts/macho/tests/nasm64/Makefile.inc \
	$(srcdir)/modules/objfmts/rdf/Makefile.inc \
	$(srcdir)/modules/objfmts/rdf/tests/Makefile.inc \
	$(srcdir)/modules/objfmts/win32/Makefile.inc \
	$(srcdir)/modules/objfmts/win32/tests/Makefile.inc \
	$(srcdir)/modules/objfmts/win32/tests/gas/Makefile.inc \
	$(srcdir)/modules/objfmts/win64/Makefile.inc \
	$(srcdir)/modules/objfmts/win64/tests/Makefile.inc \
	$(srcdir)/modules/objfmts/win64/tests/gas/Makefile.inc \
	$(srcdir)/modules/objfmts/xdf/Makefile.inc \
	$(srcdir)/modules/objfmts/xdf/tests/Makefile.inc \
	$(srcdir)/modules/parsers/Makefile.inc \
	$(srcdir)/modules/parsers/gas/Makefile.inc \
	$(srcdir)/modules/parsers/gas/tests/Makefile.inc \
	$(srcdir)/modules/parsers/gas/tests/bin/Makefile.inc \
	$(srcdir)/modules/parsers/nasm/Makefile.inc \
	$(srcdir)/modules/parsers/nasm/tests/Makefile.inc \
	$(srcdir)/modules/parsers/nasm/tests/worphan/Makefile.inc \
	$(srcdir)/modules/parsers/tasm/Makefile.inc \
	$(srcdir)/modules/parsers/tasm/tests/Makefile.inc \
	$(srcdir)/modules/parsers/tasm/tests/exe/Makefile.inc \
	$(srcdir)/modules/preprocs/Makefile.inc \
	$(srcdir)/modules/preprocs/cpp/Makefile.inc \
	$(srcdir)/modules/preprocs/gas/Makefile.inc \
	$(srcdir)/modules/preprocs/gas/tests/Makefile.inc \
	$(srcdir)/modules/preprocs/nasm/Makefile.inc \
	$(srcdir)/modules/preprocs/nasm/tests/Makefile.inc \
	$(srcdir)/modules/preprocs/raw/Makefile.inc \
	$(srcdir)/modules/preprocs/raw/tests/Makefile.inc \
	$(srcdir)/modules/preprocs/tasm/Makefile.inc \
	$(srcdir)/modules/preprocs/tasm/tests/Makefile.inc \
	$(srcdir)/tools/Makefile.inc \
	$(srcdir)/tools/genmacro/Makefile.inc \
	$(srcdir)/tools/genperf/Makefile.inc \
	$(srcdir)/tools/python-yasm/Makefile.inc \
	$(srcdir)/tools/python-yasm/tests/Makefile.inc \
	$(srcdir)/tools/re2c/Makefile.inc $(top_srcdir)/configure \
	ABOUT-NLS AUTHORS COPYING ChangeLog INSTALL NEWS \
	config/config.guess config/config.rpath config/config.sub \
	config/depcomp config/install-sh config/missing \
	config/mkinstalldirs
@HAVE_PYTHON_BINDINGS_TRUE@am__append_1 = _yasm.pxi yasm.pyx \
@HAVE_PYTHON_BINDINGS_TRUE@	yasm_python.c python-setup.txt \
@HAVE_PYTHON_BINDINGS_TRUE@	.python-build
@HAVE_PYTHON_BINDINGS_TRUE@am__append_2 = PYTHON=${PYTHON}
@HAVE_PYTHON_BINDINGS_TRUE@am__append_3 = tools/python-yasm/tests/python_test.sh
@BUILD_MAN_TRUE@am__append_4 = $(dist_man_MANS) $(notrans_dist_man_MANS)
subdir = .
ACLOCAL_M4 = $(top_srcdir)/aclocal.m4
am__aclocal_m4_deps = $(top_srcdir)/m4/ax_create_stdint_h.m4 \
	$(top_srcdir)/m4/cython.m4 $(top_srcdir)/m4/gettext.m4 \
	$(top_srcdir)/m4/iconv.m4 $(top_srcdir)/m4/lib-ld.m4 \
	$(top_srcdir)/m4/lib-link.m4 $(top_srcdir)/m4/lib-prefix.m4 \
	$(top_srcdir)/m4/nls.m4 $(top_srcdir)/m4/po.m4 \
	$(top_srcdir)/m4/progtest.m4 $(top_srcdir)/m4/pythonhead.m4 \
	$(top_srcdir)/configure.ac
am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \
	$(ACLOCAL_M4)
am__CONFIG_DISTCLEAN_FILES = config.status config.cache config.log \
 configure.lineno config.status.lineno
mkinstalldirs = $(SHELL) $(top_srcdir)/config/mkinstalldirs
CONFIG_HEADER = config.h
CONFIG_CLEAN_VPATH_FILES =
am__vpath_adj_setup = srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`;
am__vpath_adj = case $$p in \
    $(srcdir)/*) f=`echo "$$p" | sed "s|^$$srcdirstrip/||"`;; \
    *) f=$$p;; \
  esac;
am__strip_dir = f=`echo $$p | sed -e 's|^.*/||'`;
am__install_max = 40
am__nobase_strip_setup = \
  srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*|]/\\\\&/g'`
am__nobase_strip = \
  for p in $$list; do echo "$$p"; done | sed -e "s|$$srcdirstrip/||"
am__nobase_list = $(am__nobase_strip_setup); \
  for p in $$list; do echo "$$p $$p"; done | \
  sed "s| $$srcdirstrip/| |;"' / .*\//!s/ .*/ ./; s,\( .*\)/[^/]*$$,\1,' | \
  $(AWK) 'BEGIN { files["."] = "" } { files[$$2] = files[$$2] " " $$1; \
    if (++n[$$2] == $(am__install_max)) \
      { print $$2, files[$$2]; n[$$2] = 0; files[$$2] = "" } } \
    END { for (dir in files) print dir, files[dir] }'
am__base_list = \
  sed '$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;s/\n/ /g' | \
  sed '$$!N;$$!N;$$!N;$$!N;s/\n/ /g'
am__installdirs = "$(DESTDIR)$(libdir)" "$(DESTDIR)$(bindir)" \
	"$(DESTDIR)$(man1dir)" "$(DESTDIR)$(man7dir)" \
	"$(DESTDIR)$(includedir)" "$(DESTDIR)$(modincludedir)" \
	"$(DESTDIR)$(includedir)"
LIBRARIES = $(lib_LIBRARIES)
ARFLAGS = cru
libyasm_a_AR = $(AR) $(ARFLAGS)
libyasm_a_LIBADD =
am_libyasm_a_OBJECTS = x86arch.$(OBJEXT) x86bc.$(OBJEXT) \
	x86expr.$(OBJEXT) x86id.$(OBJEXT) lc3barch.$(OBJEXT) \
	lc3bbc.$(OBJEXT) nasm-listfmt.$(OBJEXT) gas-parser.$(OBJEXT) \
	gas-parse.$(OBJEXT) gas-parse-intel.$(OBJEXT) \
	nasm-parser.$(OBJEXT) nasm-parse.$(OBJEXT) \
	nasm-preproc.$(OBJEXT) nasm-pp.$(OBJEXT) nasmlib.$(OBJEXT) \
	nasm-eval.$(OBJEXT) raw-preproc.$(OBJEXT) \
	cpp-preproc.$(OBJEXT) gas-preproc.$(OBJEXT) gas-eval.$(OBJEXT) \
	cv-dbgfmt.$(OBJEXT) cv-symline.$(OBJEXT) cv-type.$(OBJEXT) \
	dwarf2-dbgfmt.$(OBJEXT) dwarf2-line.$(OBJEXT) \
	dwarf2-aranges.$(OBJEXT) dwarf2-info.$(OBJEXT) \
	null-dbgfmt.$(OBJEXT) stabs-dbgfmt.$(OBJEXT) \
	dbg-objfmt.$(OBJEXT) bin-objfmt.$(OBJEXT) elf.$(OBJEXT) \
	elf-objfmt.$(OBJEXT) elf-x86-x86.$(OBJEXT) \
	elf-x86-amd64.$(OBJEXT) coff-objfmt.$(OBJEXT) \
	win64-except.$(OBJEXT) macho-objfmt.$(OBJEXT) \
	rdf-objfmt.$(OBJEXT) xdf-objfmt.$(OBJEXT) assocdat.$(OBJEXT) \
	bitvect.$(OBJEXT) bc-align.$(OBJEXT) bc-data.$(OBJEXT) \
	bc-incbin.$(OBJEXT) bc-org.$(OBJEXT) bc-reserve.$(OBJEXT) \
	bytecode.$(OBJEXT) errwarn.$(OBJEXT) expr.$(OBJEXT) \
	file.$(OBJEXT) floatnum.$(OBJEXT) hamt.$(OBJEXT) \
	insn.$(OBJEXT) intnum.$(OBJEXT) inttree.$(OBJEXT) \
	linemap.$(OBJEXT) md5.$(OBJEXT) mergesort.$(OBJEXT) \
	phash.$(OBJEXT) section.$(OBJEXT) strcasecmp.$(OBJEXT) \
	strsep.$(OBJEXT) symrec.$(OBJEXT) valparam.$(OBJEXT) \
	value.$(OBJEXT) xmalloc.$(OBJEXT) xstrdup.$(OBJEXT)
nodist_libyasm_a_OBJECTS = x86cpu.$(OBJEXT) x86regtmod.$(OBJEXT) \
	lc3bid.$(OBJEXT) gas-token.$(OBJEXT) nasm-token.$(OBJEXT) \
	module.$(OBJEXT)
libyasm_a_OBJECTS = $(am_libyasm_a_OBJECTS) \
	$(nodist_libyasm_a_OBJECTS)
PROGRAMS = $(bin_PROGRAMS) $(noinst_PROGRAMS)
am_bitvect_test_OBJECTS = bitvect_test.$(OBJEXT)
bitvect_test_OBJECTS = $(am_bitvect_test_OBJECTS)
am__DEPENDENCIES_1 =
bitvect_test_DEPENDENCIES = libyasm.a $(am__DEPENDENCIES_1)
am_combpath_test_OBJECTS = combpath_test.$(OBJEXT)
combpath_test_OBJECTS = $(am_combpath_test_OBJECTS)
combpath_test_DEPENDENCIES = libyasm.a $(am__DEPENDENCIES_1)
am_floatnum_test_OBJECTS = floatnum_test.$(OBJEXT)
floatnum_test_OBJECTS = $(am_floatnum_test_OBJECTS)
floatnum_test_DEPENDENCIES = libyasm.a $(am__DEPENDENCIES_1)
am_genmacro_OBJECTS =
genmacro_OBJECTS = $(am_genmacro_OBJECTS)
genmacro_DEPENDENCIES = genmacro.$(OBJEXT)
am_genmodule_OBJECTS =
genmodule_OBJECTS = $(am_genmodule_OBJECTS)
genmodule_DEPENDENCIES = genmodule.$(OBJEXT)
am_genperf_OBJECTS =
genperf_OBJECTS = $(am_genperf_OBJECTS)
genperf_DEPENDENCIES = genperf.$(OBJEXT) gp-perfect.$(OBJEXT) \
	gp-phash.$(OBJEXT) gp-xmalloc.$(OBJEXT) gp-xstrdup.$(OBJEXT)
am_genstring_OBJECTS =
genstring_OBJECTS = $(am_genstring_OBJECTS)
genstring_DEPENDENCIES = genstring.$(OBJEXT)
am_genversion_OBJECTS =
genversion_OBJECTS = $(am_genversion_OBJECTS)
genversion_DEPENDENCIES = genversion.$(OBJEXT)
am_leb128_test_OBJECTS = leb128_test.$(OBJEXT)
leb128_test_OBJECTS = $(am_leb128_test_OBJECTS)
leb128_test_DEPENDENCIES = libyasm.a $(am__DEPENDENCIES_1)
am_re2c_OBJECTS =
re2c_OBJECTS = $(am_re2c_OBJECTS)
re2c_DEPENDENCIES = re2c-main.$(OBJEXT) re2c-code.$(OBJEXT) \
	re2c-dfa.$(OBJEXT) re2c-parser.$(OBJEXT) \
	re2c-actions.$(OBJEXT) re2c-scanner.$(OBJEXT) \
	re2c-mbo_getopt.$(OBJEXT) re2c-substr.$(OBJEXT) \
	re2c-translate.$(OBJEXT)
am_splitpath_test_OBJECTS = splitpath_test.$(OBJEXT)
splitpath_test_OBJECTS = $(am_splitpath_test_OBJECTS)
splitpath_test_DEPENDENCIES = libyasm.a $(am__DEPENDENCIES_1)
am_test_hd_OBJECTS = test_hd.$(OBJEXT)
test_hd_OBJECTS = $(am_test_hd_OBJECTS)
test_hd_LDADD = $(LDADD)
am_uncstring_test_OBJECTS = uncstring_test.$(OBJEXT)
uncstring_test_OBJECTS = $(am_uncstring_test_OBJECTS)
uncstring_test_DEPENDENCIES = libyasm.a $(am__DEPENDENCIES_1)
am_vsyasm_OBJECTS = vsyasm.$(OBJEXT) yasm-options.$(OBJEXT)
vsyasm_OBJECTS = $(am_vsyasm_OBJECTS)
vsyasm_DEPENDENCIES = libyasm.a $(am__DEPENDENCIES_1)
am_yasm_OBJECTS = yasm.$(OBJEXT) yasm-options.$(OBJEXT)
yasm_OBJECTS = $(am_yasm_OBJECTS)
yasm_DEPENDENCIES = libyasm.a $(am__DEPENDENCIES_1)
am_ytasm_OBJECTS = tasm.$(OBJEXT) tasm-options.$(OBJEXT)
ytasm_OBJECTS = $(am_ytasm_OBJECTS)
ytasm_DEPENDENCIES = libyasm.a $(am__DEPENDENCIES_1)
DEFAULT_INCLUDES = -I.@am__isrc@
depcomp = $(SHELL) $(top_srcdir)/config/depcomp
am__depfiles_maybe = depfiles
am__mv = mv -f
COMPILE = $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) \
	$(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS)
CCLD = $(CC)
LINK = $(CCLD) $(AM_CFLAGS) $(CFLAGS) $(AM_LDFLAGS) $(LDFLAGS) -o $@
SOURCES = $(libyasm_a_SOURCES) $(nodist_libyasm_a_SOURCES) \
	$(bitvect_test_SOURCES) $(combpath_test_SOURCES) \
	$(floatnum_test_SOURCES) $(genmacro_SOURCES) \
	$(genmodule_SOURCES) $(genperf_SOURCES) $(genstring_SOURCES) \
	$(genversion_SOURCES) $(leb128_test_SOURCES) $(re2c_SOURCES) \
	$(splitpath_test_SOURCES) $(test_hd_SOURCES) \
	$(uncstring_test_SOURCES) $(vsyasm_SOURCES) $(yasm_SOURCES) \
	$(ytasm_SOURCES)
DIST_SOURCES = $(libyasm_a_SOURCES) $(bitvect_test_SOURCES) \
	$(combpath_test_SOURCES) $(floatnum_test_SOURCES) \
	$(genmacro_SOURCES) $(genmodule_SOURCES) $(genperf_SOURCES) \
	$(genstring_SOURCES) $(genversion_SOURCES) \
	$(leb128_test_SOURCES) $(re2c_SOURCES) \
	$(splitpath_test_SOURCES) $(test_hd_SOURCES) \
	$(uncstring_test_SOURCES) $(vsyasm_SOURCES) $(yasm_SOURCES) \
	$(ytasm_SOURCES)
RECURSIVE_TARGETS = all-recursive check-recursive dvi-recursive \
	html-recursive info-recursive install-data-recursive \
	install-dvi-recursive install-exec-recursive \
	install-html-recursive install-info-recursive \
	install-pdf-recursive install-ps-recursive install-recursive \
	installcheck-recursive installdirs-recursive pdf-recursive \
	ps-recursive uninstall-recursive
man1dir = $(mandir)/man1
man7dir = $(mandir)/man7
NROFF = nroff
MANS = $(dist_man_MANS) $(notrans_dist_man_MANS)
HEADERS = $(include_HEADERS) $(modinclude_HEADERS) \
	$(nodist_include_HEADERS) $(noinst_HEADERS)
RECURSIVE_CLEAN_TARGETS = mostlyclean-recursive clean-recursive	\
  distclean-recursive maintainer-clean-recursive
AM_RECURSIVE_TARGETS = $(RECURSIVE_TARGETS:-recursive=) \
	$(RECURSIVE_CLEAN_TARGETS:-recursive=) tags TAGS ctags CTAGS \
	distdir dist dist-all distcheck
ETAGS = etags
CTAGS = ctags
am__tty_colors = \
red=; grn=; lgn=; blu=; std=
DIST_SUBDIRS = $(SUBDIRS)
DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST)
distdir = $(PACKAGE)-$(VERSION)
top_distdir = $(distdir)
am__remove_distdir = \
  { test ! -d "$(distdir)" \
    || { find "$(distdir)" -type d ! -perm -200 -exec chmod u+w {} ';' \
         && rm -fr "$(distdir)"; }; }
am__relativize = \
  dir0=`pwd`; \
  sed_first='s,^\([^/]*\)/.*$$,\1,'; \
  sed_rest='s,^[^/]*/*,,'; \
  sed_last='s,^.*/\([^/]*\)$$,\1,'; \
  sed_butlast='s,/*[^/]*$$,,'; \
  while test -n "$$dir1"; do \
    first=`echo "$$dir1" | sed -e "$$sed_first"`; \
    if test "$$first" != "."; then \
      if test "$$first" = ".."; then \
        dir2=`echo "$$dir0" | sed -e "$$sed_last"`/"$$dir2"; \
        dir0=`echo "$$dir0" | sed -e "$$sed_butlast"`; \
      else \
        first2=`echo "$$dir2" | sed -e "$$sed_first"`; \
        if test "$$first2" = "$$first"; then \
          dir2=`echo "$$dir2" | sed -e "$$sed_rest"`; \
        else \
          dir2="../$$dir2"; \
        fi; \
        dir0="$$dir0"/"$$first"; \
      fi; \
    fi; \
    dir1=`echo "$$dir1" | sed -e "$$sed_rest"`; \
  done; \
  reldir="$$dir2"
DIST_ARCHIVES = $(distdir).tar.gz
GZIP_ENV = --best
distuninstallcheck_listfiles = find . -type f -print
distcleancheck_listfiles = find . -type f -print
ACLOCAL = @ACLOCAL@
AMTAR = @AMTAR@
AR = @AR@
ARCH = @ARCH@
AUTOCONF = @AUTOCONF@
AUTOHEADER = @AUTOHEADER@
AUTOMAKE = @AUTOMAKE@
AWK = @AWK@
CC = @CC@
CCDEPMODE = @CCDEPMODE@
CCLD_FOR_BUILD = @CCLD_FOR_BUILD@
CC_FOR_BUILD = @CC_FOR_BUILD@
CFLAGS = @CFLAGS@
CPP = @CPP@
CPPFLAGS = @CPPFLAGS@
CPP_FOR_HOST = @CPP_FOR_HOST@
CYGPATH_W = @CYGPATH_W@
DEFS = @DEFS@
DEPDIR = @DEPDIR@
ECHO_C = @ECHO_C@
ECHO_N = @ECHO_N@
ECHO_T = @ECHO_T@
EGREP = @EGREP@
EXEEXT = @EXEEXT@
GCC = @GCC@
GETTEXT_MACRO_VERSION = @GETTEXT_MACRO_VERSION@
GMSGFMT = @GMSGFMT@
GMSGFMT_015 = @GMSGFMT_015@
GREP = @GREP@
INSTALL = @INSTALL@
INSTALL_DATA = @INSTALL_DATA@
INSTALL_PROGRAM = @INSTALL_PROGRAM@
INSTALL_SCRIPT = @INSTALL_SCRIPT@
INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@
INTLLIBS = @INTLLIBS@
INTL_MACOSX_LIBS = @INTL_MACOSX_LIBS@
LDFLAGS = @LDFLAGS@
LIBICONV = @LIBICONV@
LIBINTL = @LIBINTL@
LIBOBJS = @LIBOBJS@
LIBS = @LIBS@
LN_S = @LN_S@
LTLIBICONV = @LTLIBICONV@
LTLIBINTL = @LTLIBINTL@
LTLIBOBJS = @LTLIBOBJS@
MAINT = @MAINT@
MAKEINFO = @MAKEINFO@
MKDIR_P = @MKDIR_P@
MORE_CFLAGS = @MORE_CFLAGS@
MSGFMT = @MSGFMT@
MSGFMT_015 = @MSGFMT_015@
MSGMERGE = @MSGMERGE@
OBJEXT = @OBJEXT@
PACKAGE = @PACKAGE@
PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@
PACKAGE_NAME = @PACKAGE_NAME@
PACKAGE_STRING = @PACKAGE_STRING@
PACKAGE_TARNAME = @PACKAGE_TARNAME@
PACKAGE_URL = @PACKAGE_URL@
PACKAGE_VERSION = @PACKAGE_VERSION@
PATH_SEPARATOR = @PATH_SEPARATOR@
POSUB = @POSUB@
PYTHON = @PYTHON@
PYTHON_EXEC_PREFIX = @PYTHON_EXEC_PREFIX@
PYTHON_INCLUDES = @PYTHON_INCLUDES@
PYTHON_PLATFORM = @PYTHON_PLATFORM@
PYTHON_PREFIX = @PYTHON_PREFIX@
PYTHON_VERSION = @PYTHON_VERSION@
RANLIB = @RANLIB@
SET_MAKE = @SET_MAKE@
SHELL = @SHELL@
STRIP = @STRIP@
USE_NLS = @USE_NLS@
VERSION = @VERSION@
XGETTEXT = @XGETTEXT@
XGETTEXT_015 = @XGETTEXT_015@
XGETTEXT_EXTRA_OPTIONS = @XGETTEXT_EXTRA_OPTIONS@
XMLTO = @XMLTO@
abs_builddir = @abs_builddir@
abs_srcdir = @abs_srcdir@
abs_top_builddir = @abs_top_builddir@
abs_top_srcdir = @abs_top_srcdir@
ac_ct_AR = @ac_ct_AR@
ac_ct_CC = @ac_ct_CC@
am__include = @am__include@
am__leading_dot = @am__leading_dot@
am__quote = @am__quote@
am__tar = @am__tar@
am__untar = @am__untar@
bindir = @bindir@
build = @build@
build_alias = @build_alias@
build_cpu = @build_cpu@
build_os = @build_os@
build_vendor = @build_vendor@
builddir = @builddir@
datadir = @datadir@
datarootdir = @datarootdir@
docdir = @docdir@
dvidir = @dvidir@
exec_prefix = @exec_prefix@
host = @host@
host_alias = @host_alias@
host_cpu = @host_cpu@
host_os = @host_os@
host_vendor = @host_vendor@
htmldir = @htmldir@
includedir = @includedir@
infodir = @infodir@
install_sh = @install_sh@
libdir = @libdir@
libexecdir = @libexecdir@
localedir = @localedir@
localstatedir = @localstatedir@
mandir = @mandir@
mkdir_p = @mkdir_p@
oldincludedir = @oldincludedir@
pdfdir = @pdfdir@
pkgpyexecdir = @pkgpyexecdir@
pkgpythondir = @pkgpythondir@
prefix = @prefix@
program_transform_name = @program_transform_name@
psdir = @psdir@
pyexecdir = @pyexecdir@
pythondir = @pythondir@
sbindir = @sbindir@
sharedstatedir = @sharedstatedir@
srcdir = @srcdir@
sysconfdir = @sysconfdir@
target_alias = @target_alias@
top_build_prefix = @top_build_prefix@
top_builddir = @top_builddir@
top_srcdir = @top_srcdir@
SUBDIRS = po .
ACLOCAL_AMFLAGS = -I m4
AM_YFLAGS = -d
AM_CFLAGS = @MORE_CFLAGS@
dist_man_MANS = yasm.1

#!include modules/objfmts/omf/Makefile.inc
notrans_dist_man_MANS = yasm_arch.7 yasm_parsers.7 yasm_dbgfmts.7 \
	yasm_objfmts.7
TESTS_ENVIRONMENT = $(am__append_2)
test_hd_SOURCES = test_hd.c
include_HEADERS = libyasm.h
nodist_include_HEADERS = libyasm-stdint.h
noinst_HEADERS = util.h
BUILT_SOURCES = x86insns.c x86insn_nasm.gperf x86insn_gas.gperf \
	x86insn_nasm.c x86insn_gas.c gas-token.c nasm-token.c \
	nasm-macros.c nasm-version.c version.mac win64-nasm.c \
	win64-gas.c license.c
MAINTAINERCLEANFILES = x86insns.c x86insn_nasm.gperf x86insn_gas.gperf \
	$(am__append_4)

# Until this gets fixed in automake
DISTCLEANFILES = libyasm/stamp-h libyasm/stamp-h[0-9]*

# Suffix rule for genperf
SUFFIXES = .gperf

# configure.lineno doesn't clean up after itself?
CLEANFILES = configure.lineno $(am__append_1) x86insn_nasm.c \
	x86insn_gas.c x86cpu.c x86regtmod.c lc3bid.c gas-token.c \
	nasm-token.c nasm-macros.c nasm-version.c version.mac \
	win64-nasm.c win64-gas.c module.c license.c
#!EXTRA_DIST += modules/objfmts/omf/Makefile.inc
EXTRA_DIST = config/config.rpath tools/Makefile.inc \
	libyasm/Makefile.inc modules/Makefile.inc \
	frontends/Makefile.inc tools/re2c/Makefile.inc \
	tools/genmacro/Makefile.inc tools/genperf/Makefile.inc \
	tools/python-yasm/Makefile.inc tools/re2c/main.c \
	tools/re2c/basics.h tools/re2c/globals.h tools/re2c/ins.h \
	tools/re2c/re.h tools/re2c/token.h tools/re2c/code.c \
	tools/re2c/dfa.h tools/re2c/dfa.c tools/re2c/parse.h \
	tools/re2c/parser.h tools/re2c/parser.c tools/re2c/actions.c \
	tools/re2c/scanner.h tools/re2c/scanner.c \
	tools/re2c/mbo_getopt.h tools/re2c/mbo_getopt.c \
	tools/re2c/substr.h tools/re2c/substr.c tools/re2c/translate.c \
	tools/re2c/CHANGELOG tools/re2c/NO_WARRANTY tools/re2c/README \
	tools/re2c/scanner.re tools/re2c/re2c.1 \
	tools/re2c/bootstrap/scanner.c tools/re2c/doc/loplas.ps.gz \
	tools/re2c/doc/sample.bib tools/re2c/examples/basemmap.c \
	tools/re2c/examples/c.re tools/re2c/examples/cmmap.re \
	tools/re2c/examples/cnokw.re tools/re2c/examples/cunroll.re \
	tools/re2c/examples/modula.re tools/re2c/examples/repeater.re \
	tools/re2c/examples/sample.re tools/re2c/examples/simple.re \
	tools/re2c/examples/rexx/README \
	tools/re2c/examples/rexx/rexx.l \
	tools/re2c/examples/rexx/scanio.c tools/genmacro/genmacro.c \
	tools/genperf/genperf.c tools/genperf/perfect.c \
	tools/genperf/perfect.h tools/genperf/standard.h \
	tools/python-yasm/pyxelator/cparse.py \
	tools/python-yasm/pyxelator/genpyx.py \
	tools/python-yasm/pyxelator/ir.py \
	tools/python-yasm/pyxelator/lexer.py \
	tools/python-yasm/pyxelator/node.py \
	tools/python-yasm/pyxelator/parse_core.py \
	tools/python-yasm/pyxelator/work_unit.py \
	tools/python-yasm/pyxelator/wrap_yasm.py \
	tools/python-yasm/setup.py tools/python-yasm/yasm.pyx \
	$(PYBINDING_DEPS) tools/python-yasm/tests/Makefile.inc \
	tools/python-yasm/tests/python_test.sh \
	tools/python-yasm/tests/__init__.py \
	tools/python-yasm/tests/test_bytecode.py \
	tools/python-yasm/tests/test_expr.py \
	tools/python-yasm/tests/test_intnum.py \
	tools/python-yasm/tests/test_symrec.py \
	modules/arch/Makefile.inc modules/listfmts/Makefile.inc \
	modules/parsers/Makefile.inc modules/preprocs/Makefile.inc \
	modules/objfmts/Makefile.inc modules/arch/x86/Makefile.inc \
	modules/arch/lc3b/Makefile.inc \
	modules/arch/x86/gen_x86_insn.py x86insns.c x86insn_nasm.gperf \
	x86insn_gas.gperf modules/arch/x86/x86cpu.gperf \
	modules/arch/x86/x86regtmod.gperf \
	modules/arch/x86/tests/Makefile.inc \
	modules/arch/x86/tests/x86_test.sh \
	modules/arch/x86/tests/gen-fma-test.py \
	modules/arch/x86/tests/addbyte.asm \
	modules/arch/x86/tests/addbyte.errwarn \
	modules/arch/x86/tests/addbyte.hex \
	modules/arch/x86/tests/addrop.asm \
	modules/arch/x86/tests/addrop.errwarn \
	modules/arch/x86/tests/addrop.hex \
	modules/arch/x86/tests/addrop-err.asm \
	modules/arch/x86/tests/addrop-err.errwarn \
	modules/arch/x86/tests/aes.asm modules/arch/x86/tests/aes.hex \
	modules/arch/x86/tests/amd200707.asm \
	modules/arch/x86/tests/amd200707.hex \
	modules/arch/x86/tests/amd-fma4.asm \
	modules/arch/x86/tests/amd-fma4.hex \
	modules/arch/x86/tests/arithsmall.asm \
	modules/arch/x86/tests/arithsmall.errwarn \
	modules/arch/x86/tests/arithsmall.hex \
	modules/arch/x86/tests/avx.asm modules/arch/x86/tests/avx.hex \
	modules/arch/x86/tests/avx16.asm \
	modules/arch/x86/tests/avx16.hex \
	modules/arch/x86/tests/avx2.asm \
	modules/arch/x86/tests/avx2.hex \
	modules/arch/x86/tests/avxcc.asm \
	modules/arch/x86/tests/avxcc.hex \
	modules/arch/x86/tests/bittest.asm \
	modules/arch/x86/tests/bittest.hex \
	modules/arch/x86/tests/bmi1.asm \
	modules/arch/x86/tests/bmi1.hex \
	modules/arch/x86/tests/bmi2.asm \
	modules/arch/x86/tests/bmi2.hex \
	modules/arch/x86/tests/bswap64.asm \
	modules/arch/x86/tests/bswap64.hex \
	modules/arch/x86/tests/clmul.asm \
	modules/arch/x86/tests/clmul.hex \
	modules/arch/x86/tests/cmpxchg.asm \
	modules/arch/x86/tests/cmpxchg.hex \
	modules/arch/x86/tests/cpubasic-err.asm \
	modules/arch/x86/tests/cpubasic-err.errwarn \
	modules/arch/x86/tests/cyrix.asm \
	modules/arch/x86/tests/cyrix.hex \
	modules/arch/x86/tests/div-err.asm \
	modules/arch/x86/tests/div-err.errwarn \
	modules/arch/x86/tests/ea-nonzero.asm \
	modules/arch/x86/tests/ea-nonzero.hex \
	modules/arch/x86/tests/ea-over.asm \
	modules/arch/x86/tests/ea-over.errwarn \
	modules/arch/x86/tests/ea-over.hex \
	modules/arch/x86/tests/ea-warn.asm \
	modules/arch/x86/tests/ea-warn.errwarn \
	modules/arch/x86/tests/ea-warn.hex \
	modules/arch/x86/tests/ebpindex.asm \
	modules/arch/x86/tests/ebpindex.hex \
	modules/arch/x86/tests/effaddr.asm \
	modules/arch/x86/tests/effaddr.hex \
	modules/arch/x86/tests/enter.asm \
	modules/arch/x86/tests/enter.errwarn \
	modules/arch/x86/tests/enter.hex \
	modules/arch/x86/tests/eptvpid.asm \
	modules/arch/x86/tests/eptvpid.hex \
	modules/arch/x86/tests/f16c.asm \
	modules/arch/x86/tests/f16c.hex \
	modules/arch/x86/tests/far64.asm \
	modules/arch/x86/tests/far64.hex \
	modules/arch/x86/tests/farbasic.asm \
	modules/arch/x86/tests/farbasic.hex \
	modules/arch/x86/tests/farithr.asm \
	modules/arch/x86/tests/farithr.hex \
	modules/arch/x86/tests/fcmov.asm \
	modules/arch/x86/tests/fcmov.hex \
	modules/arch/x86/tests/fma.asm modules/arch/x86/tests/fma.hex \
	modules/arch/x86/tests/fsgsbase.asm \
	modules/arch/x86/tests/fsgsbase.hex \
	modules/arch/x86/tests/fwdequ64.asm \
	modules/arch/x86/tests/fwdequ64.hex \
	modules/arch/x86/tests/genopcode.asm \
	modules/arch/x86/tests/genopcode.hex \
	modules/arch/x86/tests/imm64.asm \
	modules/arch/x86/tests/imm64.errwarn \
	modules/arch/x86/tests/imm64.hex \
	modules/arch/x86/tests/invpcid.asm \
	modules/arch/x86/tests/invpcid.hex \
	modules/arch/x86/tests/iret.asm \
	modules/arch/x86/tests/iret.hex \
	modules/arch/x86/tests/jmp64-1.asm \
	modules/arch/x86/tests/jmp64-1.hex \
	modules/arch/x86/tests/jmp64-2.asm \
	modules/arch/x86/tests/jmp64-2.hex \
	modules/arch/x86/tests/jmp64-3.asm \
	modules/arch/x86/tests/jmp64-3.hex \
	modules/arch/x86/tests/jmp64-4.asm \
	modules/arch/x86/tests/jmp64-4.hex \
	modules/arch/x86/tests/jmp64-5.asm \
	modules/arch/x86/tests/jmp64-5.hex \
	modules/arch/x86/tests/jmp64-6.asm \
	modules/arch/x86/tests/jmp64-6.hex \
	modules/arch/x86/tests/jmpfar.asm \
	modules/arch/x86/tests/jmpfar.hex \
	modules/arch/x86/tests/larlsl.asm \
	modules/arch/x86/tests/larlsl.hex \
	modules/arch/x86/tests/lds.asm modules/arch/x86/tests/lds.hex \
	modules/arch/x86/tests/lfs64.asm \
	modules/arch/x86/tests/lfs64.hex \
	modules/arch/x86/tests/loopadsz.asm \
	modules/arch/x86/tests/loopadsz.hex \
	modules/arch/x86/tests/lsahf.asm \
	modules/arch/x86/tests/lsahf.hex \
	modules/arch/x86/tests/lzcnt.asm \
	modules/arch/x86/tests/lzcnt.hex \
	modules/arch/x86/tests/mem64-err.asm \
	modules/arch/x86/tests/mem64-err.errwarn \
	modules/arch/x86/tests/mem64.asm \
	modules/arch/x86/tests/mem64.errwarn \
	modules/arch/x86/tests/mem64.hex \
	modules/arch/x86/tests/mem64hi32.asm \
	modules/arch/x86/tests/mem64hi32.hex \
	modules/arch/x86/tests/mem64rip.asm \
	modules/arch/x86/tests/mem64rip.hex \
	modules/arch/x86/tests/mixcase.asm \
	modules/arch/x86/tests/mixcase.hex \
	modules/arch/x86/tests/movbe.asm \
	modules/arch/x86/tests/movbe.hex \
	modules/arch/x86/tests/movdq32.asm \
	modules/arch/x86/tests/movdq32.hex \
	modules/arch/x86/tests/movdq64.asm \
	modules/arch/x86/tests/movdq64.hex \
	modules/arch/x86/tests/negequ.asm \
	modules/arch/x86/tests/negequ.hex \
	modules/arch/x86/tests/nomem64-err.asm \
	modules/arch/x86/tests/nomem64-err.errwarn \
	modules/arch/x86/tests/nomem64-err2.asm \
	modules/arch/x86/tests/nomem64-err2.errwarn \
	modules/arch/x86/tests/nomem64.asm \
	modules/arch/x86/tests/nomem64.errwarn \
	modules/arch/x86/tests/nomem64.hex \
	modules/arch/x86/tests/o64.asm modules/arch/x86/tests/o64.hex \
	modules/arch/x86/tests/o64loop.asm \
	modules/arch/x86/tests/o64loop.errwarn \
	modules/arch/x86/tests/o64loop.hex \
	modules/arch/x86/tests/opersize.asm \
	modules/arch/x86/tests/opersize.hex \
	modules/arch/x86/tests/opsize-err.asm \
	modules/arch/x86/tests/opsize-err.errwarn \
	modules/arch/x86/tests/overflow.asm \
	modules/arch/x86/tests/overflow.errwarn \
	modules/arch/x86/tests/overflow.hex \
	modules/arch/x86/tests/padlock.asm \
	modules/arch/x86/tests/padlock.hex \
	modules/arch/x86/tests/pinsrb.asm \
	modules/arch/x86/tests/pinsrb.hex \
	modules/arch/x86/tests/pshift.asm \
	modules/arch/x86/tests/pshift.hex \
	modules/arch/x86/tests/push64.asm \
	modules/arch/x86/tests/push64.errwarn \
	modules/arch/x86/tests/push64.hex \
	modules/arch/x86/tests/pushf.asm \
	modules/arch/x86/tests/pushf.hex \
	modules/arch/x86/tests/pushf-err.asm \
	modules/arch/x86/tests/pushf-err.errwarn \
	modules/arch/x86/tests/pushnosize.asm \
	modules/arch/x86/tests/pushnosize.errwarn \
	modules/arch/x86/tests/pushnosize.hex \
	modules/arch/x86/tests/rdrnd.asm \
	modules/arch/x86/tests/rdrnd.hex \
	modules/arch/x86/tests/rep.asm modules/arch/x86/tests/rep.hex \
	modules/arch/x86/tests/ret.asm modules/arch/x86/tests/ret.hex \
	modules/arch/x86/tests/riprel1.asm \
	modules/arch/x86/tests/riprel1.hex \
	modules/arch/x86/tests/riprel2.asm \
	modules/arch/x86/tests/riprel2.errwarn \
	modules/arch/x86/tests/riprel2.hex \
	modules/arch/x86/tests/ripseg.asm \
	modules/arch/x86/tests/ripseg.errwarn \
	modules/arch/x86/tests/ripseg.hex \
	modules/arch/x86/tests/segmov.asm \
	modules/arch/x86/tests/segmov.hex \
	modules/arch/x86/tests/segoff.asm \
	modules/arch/x86/tests/segoff.hex \
	modules/arch/x86/tests/segoff-err.asm \
	modules/arch/x86/tests/segoff-err.errwarn \
	modules/arch/x86/tests/shift.asm \
	modules/arch/x86/tests/shift.hex \
	modules/arch/x86/tests/shift64.asm \
	modules/arch/x86/tests/shift64.hex \
	modules/arch/x86/tests/simd-1.asm \
	modules/arch/x86/tests/simd-1.hex \
	modules/arch/x86/tests/simd-2.asm \
	modules/arch/x86/tests/simd-2.hex \
	modules/arch/x86/tests/simd64-1.asm \
	modules/arch/x86/tests/simd64-1.hex \
	modules/arch/x86/tests/simd64-2.asm \
	modules/arch/x86/tests/simd64-2.hex \
	modules/arch/x86/tests/smx.asm modules/arch/x86/tests/smx.hex \
	modules/arch/x86/tests/sse-prefix.asm \
	modules/arch/x86/tests/sse-prefix.hex \
	modules/arch/x86/tests/sse3.asm \
	modules/arch/x86/tests/sse3.hex \
	modules/arch/x86/tests/sse4.asm \
	modules/arch/x86/tests/sse4.hex \
	modules/arch/x86/tests/sse4-err.asm \
	modules/arch/x86/tests/sse4-err.errwarn \
	modules/arch/x86/tests/ssewidth.asm \
	modules/arch/x86/tests/ssewidth.hex \
	modules/arch/x86/tests/ssse3.asm \
	modules/arch/x86/tests/ssse3.c \
	modules/arch/x86/tests/ssse3.hex \
	modules/arch/x86/tests/stos.asm \
	modules/arch/x86/tests/stos.hex modules/arch/x86/tests/str.asm \
	modules/arch/x86/tests/str.hex \
	modules/arch/x86/tests/strict.asm \
	modules/arch/x86/tests/strict.errwarn \
	modules/arch/x86/tests/strict.hex \
	modules/arch/x86/tests/strict-err.asm \
	modules/arch/x86/tests/strict-err.errwarn \
	modules/arch/x86/tests/stringseg.asm \
	modules/arch/x86/tests/stringseg.errwarn \
	modules/arch/x86/tests/stringseg.hex \
	modules/arch/x86/tests/svm.asm modules/arch/x86/tests/svm.hex \
	modules/arch/x86/tests/twobytemem.asm \
	modules/arch/x86/tests/twobytemem.errwarn \
	modules/arch/x86/tests/twobytemem.hex \
	modules/arch/x86/tests/vmx.asm modules/arch/x86/tests/vmx.hex \
	modules/arch/x86/tests/vmx-err.asm \
	modules/arch/x86/tests/vmx-err.errwarn \
	modules/arch/x86/tests/vsib.asm \
	modules/arch/x86/tests/vsib.hex \
	modules/arch/x86/tests/vsib-err.asm \
	modules/arch/x86/tests/vsib-err.errwarn \
	modules/arch/x86/tests/vsib2-err.asm \
	modules/arch/x86/tests/vsib2-err.errwarn \
	modules/arch/x86/tests/x86label.asm \
	modules/arch/x86/tests/x86label.hex \
	modules/arch/x86/tests/xchg64.asm \
	modules/arch/x86/tests/xchg64.hex \
	modules/arch/x86/tests/xmm64.asm \
	modules/arch/x86/tests/xmm64.hex \
	modules/arch/x86/tests/xop-all.asm \
	modules/arch/x86/tests/xop-all.hex \
	modules/arch/x86/tests/xop-basic.asm \
	modules/arch/x86/tests/xop-basic.hex \
	modules/arch/x86/tests/xop-cc.asm \
	modules/arch/x86/tests/xop-cc.hex \
	modules/arch/x86/tests/xsave.asm \
	modules/arch/x86/tests/xsave.hex \
	modules/arch/x86/tests/gas32/Makefile.inc \
	modules/arch/x86/tests/gas64/Makefile.inc \
	modules/arch/x86/tests/gas32/x86_gas32_test.sh \
	modules/arch/x86/tests/gas32/align32.asm \
	modules/arch/x86/tests/gas32/align32.hex \
	modules/arch/x86/tests/gas32/gas-farithr.asm \
	modules/arch/x86/tests/gas32/gas-farithr.hex \
	modules/arch/x86/tests/gas32/gas-farjump.asm \
	modules/arch/x86/tests/gas32/gas-farjump.hex \
	modules/arch/x86/tests/gas32/gas-fpmem.asm \
	modules/arch/x86/tests/gas32/gas-fpmem.hex \
	modules/arch/x86/tests/gas32/gas-invlpg.asm \
	modules/arch/x86/tests/gas32/gas-invlpg.hex \
	modules/arch/x86/tests/gas32/gas-loop32.asm \
	modules/arch/x86/tests/gas32/gas-loop32.hex \
	modules/arch/x86/tests/gas32/gas-movdq32.asm \
	modules/arch/x86/tests/gas32/gas-movdq32.hex \
	modules/arch/x86/tests/gas32/gas-movsd.asm \
	modules/arch/x86/tests/gas32/gas-movsd.hex \
	modules/arch/x86/tests/gas32/gas-pop.asm \
	modules/arch/x86/tests/gas32/gas-pop.hex \
	modules/arch/x86/tests/gas32/gas32-jmpcall.asm \
	modules/arch/x86/tests/gas32/gas32-jmpcall.hex \
	modules/arch/x86/tests/gas64/x86_gas64_test.sh \
	modules/arch/x86/tests/gas64/align64.asm \
	modules/arch/x86/tests/gas64/align64.hex \
	modules/arch/x86/tests/gas64/gas-cbw.asm \
	modules/arch/x86/tests/gas64/gas-cbw.hex \
	modules/arch/x86/tests/gas64/gas-fp.asm \
	modules/arch/x86/tests/gas64/gas-fp.hex \
	modules/arch/x86/tests/gas64/gas-inout.asm \
	modules/arch/x86/tests/gas64/gas-inout.hex \
	modules/arch/x86/tests/gas64/gas-loop64.asm \
	modules/arch/x86/tests/gas64/gas-loop64.hex \
	modules/arch/x86/tests/gas64/gas-moreinsn.asm \
	modules/arch/x86/tests/gas64/gas-moreinsn.hex \
	modules/arch/x86/tests/gas64/gas-movabs.asm \
	modules/arch/x86/tests/gas64/gas-movabs.hex \
	modules/arch/x86/tests/gas64/gas-movdq64.asm \
	modules/arch/x86/tests/gas64/gas-movdq64.hex \
	modules/arch/x86/tests/gas64/gas-movsxs.asm \
	modules/arch/x86/tests/gas64/gas-movsxs.hex \
	modules/arch/x86/tests/gas64/gas-muldiv.asm \
	modules/arch/x86/tests/gas64/gas-muldiv.hex \
	modules/arch/x86/tests/gas64/gas-prefix.asm \
	modules/arch/x86/tests/gas64/gas-prefix.errwarn \
	modules/arch/x86/tests/gas64/gas-prefix.hex \
	modules/arch/x86/tests/gas64/gas-retenter.asm \
	modules/arch/x86/tests/gas64/gas-retenter.hex \
	modules/arch/x86/tests/gas64/gas-shift.asm \
	modules/arch/x86/tests/gas64/gas-shift.hex \
	modules/arch/x86/tests/gas64/gas64-jmpcall.asm \
	modules/arch/x86/tests/gas64/gas64-jmpcall.hex \
	modules/arch/x86/tests/gas64/riprel.asm \
	modules/arch/x86/tests/gas64/riprel.hex \
	modules/arch/lc3b/tests/Makefile.inc \
	modules/arch/lc3b/lc3bid.re \
	modules/arch/lc3b/tests/lc3b_test.sh \
	modules/arch/lc3b/tests/lc3b-basic.asm \
	modules/arch/lc3b/tests/lc3b-basic.errwarn \
	modules/arch/lc3b/tests/lc3b-basic.hex \
	modules/arch/lc3b/tests/lc3b-br.asm \
	modules/arch/lc3b/tests/lc3b-br.hex \
	modules/arch/lc3b/tests/lc3b-ea-err.asm \
	modules/arch/lc3b/tests/lc3b-ea-err.errwarn \
	modules/arch/lc3b/tests/lc3b-mp22NC.asm \
	modules/arch/lc3b/tests/lc3b-mp22NC.hex \
	modules/arch/yasm_arch.xml modules/listfmts/nasm/Makefile.inc \
	modules/parsers/gas/Makefile.inc \
	modules/parsers/nasm/Makefile.inc \
	modules/parsers/gas/tests/Makefile.inc \
	modules/parsers/gas/gas-token.re \
	modules/parsers/gas/tests/gas_test.sh \
	modules/parsers/gas/tests/dataref-imm.asm \
	modules/parsers/gas/tests/dataref-imm.hex \
	modules/parsers/gas/tests/datavis.asm \
	modules/parsers/gas/tests/datavis.errwarn \
	modules/parsers/gas/tests/datavis.hex \
	modules/parsers/gas/tests/datavis2.asm \
	modules/parsers/gas/tests/datavis2.hex \
	modules/parsers/gas/tests/execsect.asm \
	modules/parsers/gas/tests/execsect.hex \
	modules/parsers/gas/tests/gas-fill.asm \
	modules/parsers/gas/tests/gas-fill.hex \
	modules/parsers/gas/tests/gas-float.asm \
	modules/parsers/gas/tests/gas-float.hex \
	modules/parsers/gas/tests/gas-instlabel.asm \
	modules/parsers/gas/tests/gas-instlabel.hex \
	modules/parsers/gas/tests/gas-line-err.asm \
	modules/parsers/gas/tests/gas-line-err.errwarn \
	modules/parsers/gas/tests/gas-line2-err.asm \
	modules/parsers/gas/tests/gas-line2-err.errwarn \
	modules/parsers/gas/tests/gas-push.asm \
	modules/parsers/gas/tests/gas-push.hex \
	modules/parsers/gas/tests/gas-segprefix.asm \
	modules/parsers/gas/tests/gas-segprefix.hex \
	modules/parsers/gas/tests/gas-semi.asm \
	modules/parsers/gas/tests/gas-semi.hex \
	modules/parsers/gas/tests/gassectalign.asm \
	modules/parsers/gas/tests/gassectalign.hex \
	modules/parsers/gas/tests/jmpcall.asm \
	modules/parsers/gas/tests/jmpcall.errwarn \
	modules/parsers/gas/tests/jmpcall.hex \
	modules/parsers/gas/tests/leb128.asm \
	modules/parsers/gas/tests/leb128.hex \
	modules/parsers/gas/tests/localcomm.asm \
	modules/parsers/gas/tests/localcomm.hex \
	modules/parsers/gas/tests/reggroup-err.asm \
	modules/parsers/gas/tests/reggroup-err.errwarn \
	modules/parsers/gas/tests/reggroup.asm \
	modules/parsers/gas/tests/reggroup.hex \
	modules/parsers/gas/tests/strzero.asm \
	modules/parsers/gas/tests/strzero.hex \
	modules/parsers/gas/tests/varinsn.asm \
	modules/parsers/gas/tests/varinsn.hex \
	modules/parsers/gas/tests/bin/Makefile.inc \
	modules/parsers/gas/tests/bin/gas_bin_test.sh \
	modules/parsers/gas/tests/bin/gas-comment.asm \
	modules/parsers/gas/tests/bin/gas-comment.errwarn \
	modules/parsers/gas/tests/bin/gas-comment.hex \
	modules/parsers/gas/tests/bin/gas-intel_syntax-noprefix.asm \
	modules/parsers/gas/tests/bin/gas-intel_syntax-noprefix.hex \
	modules/parsers/gas/tests/bin/gas-llabel.asm \
	modules/parsers/gas/tests/bin/gas-llabel.hex \
	modules/parsers/gas/tests/bin/gas-macro.asm \
	modules/parsers/gas/tests/bin/gas-macro.hex \
	modules/parsers/gas/tests/bin/gas-set.asm \
	modules/parsers/gas/tests/bin/gas-set.hex \
	modules/parsers/gas/tests/bin/gas-str.asm \
	modules/parsers/gas/tests/bin/gas-str.hex \
	modules/parsers/gas/tests/bin/rept-err.asm \
	modules/parsers/gas/tests/bin/rept-err.errwarn \
	modules/parsers/gas/tests/bin/reptempty.asm \
	modules/parsers/gas/tests/bin/reptempty.hex \
	modules/parsers/gas/tests/bin/reptlong.asm \
	modules/parsers/gas/tests/bin/reptlong.hex \
	modules/parsers/gas/tests/bin/reptnested.asm \
	modules/parsers/gas/tests/bin/reptnested.hex \
	modules/parsers/gas/tests/bin/reptsimple.asm \
	modules/parsers/gas/tests/bin/reptsimple.hex \
	modules/parsers/gas/tests/bin/reptwarn.asm \
	modules/parsers/gas/tests/bin/reptwarn.errwarn \
	modules/parsers/gas/tests/bin/reptwarn.hex \
	modules/parsers/gas/tests/bin/reptzero.asm \
	modules/parsers/gas/tests/bin/reptzero.hex \
	modules/parsers/nasm/nasm-token.re \
	modules/parsers/nasm/nasm-std.mac \
	modules/parsers/nasm/tests/Makefile.inc \
	modules/parsers/nasm/tests/nasm_test.sh \
	modules/parsers/nasm/tests/alignnop16.asm \
	modules/parsers/nasm/tests/alignnop16.hex \
	modules/parsers/nasm/tests/alignnop32.asm \
	modules/parsers/nasm/tests/alignnop32.hex \
	modules/parsers/nasm/tests/charconstmath.asm \
	modules/parsers/nasm/tests/charconstmath.hex \
	modules/parsers/nasm/tests/dirwarning.asm \
	modules/parsers/nasm/tests/dirwarning.errwarn \
	modules/parsers/nasm/tests/dirwarning.hex \
	modules/parsers/nasm/tests/dy.asm \
	modules/parsers/nasm/tests/dy.hex \
	modules/parsers/nasm/tests/endcomma.asm \
	modules/parsers/nasm/tests/endcomma.hex \
	modules/parsers/nasm/tests/equcolon.asm \
	modules/parsers/nasm/tests/equcolon.hex \
	modules/parsers/nasm/tests/equlocal.asm \
	modules/parsers/nasm/tests/equlocal.hex \
	modules/parsers/nasm/tests/hexconst.asm \
	modules/parsers/nasm/tests/hexconst.hex \
	modules/parsers/nasm/tests/long.asm \
	modules/parsers/nasm/tests/long.hex \
	modules/parsers/nasm/tests/locallabel.asm \
	modules/parsers/nasm/tests/locallabel.hex \
	modules/parsers/nasm/tests/locallabel2.asm \
	modules/parsers/nasm/tests/locallabel2.hex \
	modules/parsers/nasm/tests/nasm-prefix.asm \
	modules/parsers/nasm/tests/nasm-prefix.hex \
	modules/parsers/nasm/tests/newsect.asm \
	modules/parsers/nasm/tests/newsect.hex \
	modules/parsers/nasm/tests/orphannowarn.asm \
	modules/parsers/nasm/tests/orphannowarn.hex \
	modules/parsers/nasm/tests/prevlocalwarn.asm \
	modules/parsers/nasm/tests/prevlocalwarn.errwarn \
	modules/parsers/nasm/tests/prevlocalwarn.hex \
	modules/parsers/nasm/tests/strucalign.asm \
	modules/parsers/nasm/tests/strucalign.hex \
	modules/parsers/nasm/tests/struczero.asm \
	modules/parsers/nasm/tests/struczero.hex \
	modules/parsers/nasm/tests/strucbase.asm \
	modules/parsers/nasm/tests/strucbase.hex \
	modules/parsers/nasm/tests/syntax-err.asm \
	modules/parsers/nasm/tests/syntax-err.errwarn \
	modules/parsers/nasm/tests/uscore.asm \
	modules/parsers/nasm/tests/uscore.hex \
	modules/parsers/nasm/tests/worphan/Makefile.inc \
	modules/parsers/nasm/tests/worphan/nasm_worphan_test.sh \
	modules/parsers/nasm/tests/worphan/orphanwarn.asm \
	modules/parsers/nasm/tests/worphan/orphanwarn.errwarn \
	modules/parsers/nasm/tests/worphan/orphanwarn.hex \
	modules/parsers/tasm/tests/Makefile.inc \
	modules/parsers/tasm/tests/tasm_test.sh \
	modules/parsers/tasm/tests/array.asm \
	modules/parsers/tasm/tests/array.hex \
	modules/parsers/tasm/tests/case.asm \
	modules/parsers/tasm/tests/case.hex \
	modules/parsers/tasm/tests/charstr.asm \
	modules/parsers/tasm/tests/charstr.hex \
	modules/parsers/tasm/tests/dup.asm \
	modules/parsers/tasm/tests/dup.hex \
	modules/parsers/tasm/tests/equal.asm \
	modules/parsers/tasm/tests/equal.hex \
	modules/parsers/tasm/tests/expr.asm \
	modules/parsers/tasm/tests/expr.hex \
	modules/parsers/tasm/tests/irp.asm \
	modules/parsers/tasm/tests/irp.hex \
	modules/parsers/tasm/tests/label.asm \
	modules/parsers/tasm/tests/label.hex \
	modules/parsers/tasm/tests/les.asm \
	modules/parsers/tasm/tests/les.hex \
	modules/parsers/tasm/tests/lidt.asm \
	modules/parsers/tasm/tests/lidt.hex \
	modules/parsers/tasm/tests/macro.asm \
	modules/parsers/tasm/tests/macro.hex \
	modules/parsers/tasm/tests/offset.asm \
	modules/parsers/tasm/tests/offset.hex \
	modules/parsers/tasm/tests/quote.asm \
	modules/parsers/tasm/tests/quote.hex \
	modules/parsers/tasm/tests/res.asm \
	modules/parsers/tasm/tests/res.errwarn \
	modules/parsers/tasm/tests/res.hex \
	modules/parsers/tasm/tests/segment.asm \
	modules/parsers/tasm/tests/segment.hex \
	modules/parsers/tasm/tests/size.asm \
	modules/parsers/tasm/tests/size.hex \
	modules/parsers/tasm/tests/struc.asm \
	modules/parsers/tasm/tests/struc.errwarn \
	modules/parsers/tasm/tests/struc.hex \
	modules/parsers/tasm/tests/exe/Makefile.inc \
	modules/parsers/tasm/tests/exe/tasm_exe_test.sh \
	modules/parsers/tasm/tests/exe/exe.asm \
	modules/parsers/tasm/tests/exe/exe.hex \
	modules/parsers/yasm_parsers.xml \
	modules/preprocs/tasm/Makefile.inc \
	modules/preprocs/nasm/Makefile.inc \
	modules/preprocs/raw/Makefile.inc \
	modules/preprocs/cpp/Makefile.inc \
	modules/preprocs/gas/Makefile.inc \
	modules/preprocs/tasm/tests/Makefile.inc \
	modules/preprocs/tasm/tests/tasmpp_test.sh \
	modules/preprocs/tasm/tests/tasm-assume-comment.asm \
	modules/preprocs/tasm/tests/tasm-assume-comment.hex \
	modules/preprocs/tasm/tests/tasm-comment-instr.asm \
	modules/preprocs/tasm/tests/tasm-comment-instr.hex \
	modules/preprocs/nasm/genversion.c \
	modules/preprocs/nasm/tests/Makefile.inc \
	modules/preprocs/nasm/tests/nasmpp_test.sh \
	modules/preprocs/nasm/tests/16args.asm \
	modules/preprocs/nasm/tests/16args.hex \
	modules/preprocs/nasm/tests/ifcritical-err.asm \
	modules/preprocs/nasm/tests/ifcritical-err.errwarn \
	modules/preprocs/nasm/tests/longline.asm \
	modules/preprocs/nasm/tests/longline.hex \
	modules/preprocs/nasm/tests/macroeof-err.asm \
	modules/preprocs/nasm/tests/macroeof-err.errwarn \
	modules/preprocs/nasm/tests/noinclude-err.asm \
	modules/preprocs/nasm/tests/noinclude-err.errwarn \
	modules/preprocs/nasm/tests/nasmpp-bigint.asm \
	modules/preprocs/nasm/tests/nasmpp-bigint.hex \
	modules/preprocs/nasm/tests/nasmpp-decimal.asm \
	modules/preprocs/nasm/tests/nasmpp-decimal.hex \
	modules/preprocs/nasm/tests/nasmpp-nested.asm \
	modules/preprocs/nasm/tests/nasmpp-nested.errwarn \
	modules/preprocs/nasm/tests/nasmpp-nested.hex \
	modules/preprocs/nasm/tests/orgsect.asm \
	modules/preprocs/nasm/tests/orgsect.hex \
	modules/preprocs/nasm/tests/scope-err.asm \
	modules/preprocs/nasm/tests/scope-err.errwarn \
	modules/preprocs/raw/tests/Makefile.inc \
	modules/preprocs/raw/tests/rawpp_test.sh \
	modules/preprocs/raw/tests/longline.asm \
	modules/preprocs/raw/tests/longline.hex \
	modules/preprocs/gas/tests/Makefile.inc \
	modules/dbgfmts/codeview/Makefile.inc \
	modules/dbgfmts/dwarf2/Makefile.inc \
	modules/dbgfmts/null/Makefile.inc \
	modules/dbgfmts/stabs/Makefile.inc \
	modules/dbgfmts/codeview/cv8.txt \
	modules/dbgfmts/dwarf2/tests/Makefile.inc \
	modules/dbgfmts/dwarf2/tests/gen64/Makefile.inc \
	modules/dbgfmts/dwarf2/tests/pass32/Makefile.inc \
	modules/dbgfmts/dwarf2/tests/pass64/Makefile.inc \
	modules/dbgfmts/dwarf2/tests/passwin64/Makefile.inc \
	modules/dbgfmts/dwarf2/tests/gen64/dwarf2_gen64_test.sh \
	modules/dbgfmts/dwarf2/tests/gen64/dwarf64_pathname.asm \
	modules/dbgfmts/dwarf2/tests/gen64/dwarf64_pathname.hex \
	modules/dbgfmts/dwarf2/tests/pass32/dwarf2_pass32_test.sh \
	modules/dbgfmts/dwarf2/tests/pass32/dwarf32-err.asm \
	modules/dbgfmts/dwarf2/tests/pass32/dwarf32-err.errwarn \
	modules/dbgfmts/dwarf2/tests/pass32/dwarf32_testhd.asm \
	modules/dbgfmts/dwarf2/tests/pass32/dwarf32_testhd.hex \
	modules/dbgfmts/dwarf2/tests/pass64/dwarf2_pass64_test.sh \
	modules/dbgfmts/dwarf2/tests/pass64/dwarf64_2loc.asm \
	modules/dbgfmts/dwarf2/tests/pass64/dwarf64_2loc.hex \
	modules/dbgfmts/dwarf2/tests/pass64/dwarf64_leb128.asm \
	modules/dbgfmts/dwarf2/tests/pass64/dwarf64_leb128.hex \
	modules/dbgfmts/dwarf2/tests/passwin64/dwarf2_passwin64_test.sh \
	modules/dbgfmts/dwarf2/tests/passwin64/dwarfwin64_testhd.asm \
	modules/dbgfmts/dwarf2/tests/passwin64/dwarfwin64_testhd.errwarn \
	modules/dbgfmts/dwarf2/tests/passwin64/dwarfwin64_testhd.hex \
	modules/dbgfmts/stabs/tests/Makefile.inc \
	modules/dbgfmts/stabs/tests/stabs_test.sh \
	modules/dbgfmts/stabs/tests/stabs-elf.asm \
	modules/dbgfmts/stabs/tests/stabs-elf.hex \
	modules/dbgfmts/yasm_dbgfmts.xml \
	modules/objfmts/dbg/Makefile.inc \
	modules/objfmts/bin/Makefile.inc \
	modules/objfmts/elf/Makefile.inc \
	modules/objfmts/coff/Makefile.inc \
	modules/objfmts/macho/Makefile.inc \
	modules/objfmts/rdf/Makefile.inc \
	modules/objfmts/win32/Makefile.inc \
	modules/objfmts/win64/Makefile.inc \
	modules/objfmts/xdf/Makefile.inc \
	modules/objfmts/bin/tests/Makefile.inc \
	modules/objfmts/bin/tests/bin_test.sh \
	modules/objfmts/bin/tests/abs.asm \
	modules/objfmts/bin/tests/abs.hex \
	modules/objfmts/bin/tests/bigorg.asm \
	modules/objfmts/bin/tests/bigorg.hex \
	modules/objfmts/bin/tests/bigorg.errwarn \
	modules/objfmts/bin/tests/bin-farabs.asm \
	modules/objfmts/bin/tests/bin-farabs.hex \
	modules/objfmts/bin/tests/bin-rip.asm \
	modules/objfmts/bin/tests/bin-rip.hex \
	modules/objfmts/bin/tests/bintest.asm \
	modules/objfmts/bin/tests/bintest.hex \
	modules/objfmts/bin/tests/float-err.asm \
	modules/objfmts/bin/tests/float-err.errwarn \
	modules/objfmts/bin/tests/float.asm \
	modules/objfmts/bin/tests/float.hex \
	modules/objfmts/bin/tests/integer-warn.asm \
	modules/objfmts/bin/tests/integer-warn.hex \
	modules/objfmts/bin/tests/integer-warn.errwarn \
	modules/objfmts/bin/tests/integer.asm \
	modules/objfmts/bin/tests/integer.hex \
	modules/objfmts/bin/tests/levelop.asm \
	modules/objfmts/bin/tests/levelop.hex \
	modules/objfmts/bin/tests/reserve.asm \
	modules/objfmts/bin/tests/reserve.hex \
	modules/objfmts/bin/tests/reserve.errwarn \
	modules/objfmts/bin/tests/shr.asm \
	modules/objfmts/bin/tests/shr.hex \
	modules/objfmts/bin/tests/multisect/Makefile.inc \
	modules/objfmts/bin/tests/multisect/bin_multi_test.sh \
	modules/objfmts/bin/tests/multisect/bin-align.asm \
	modules/objfmts/bin/tests/multisect/bin-align.errwarn \
	modules/objfmts/bin/tests/multisect/bin-align.hex \
	modules/objfmts/bin/tests/multisect/bin-align.map \
	modules/objfmts/bin/tests/multisect/bin-ssym.asm \
	modules/objfmts/bin/tests/multisect/bin-ssym.hex \
	modules/objfmts/bin/tests/multisect/bin-ssym.map \
	modules/objfmts/bin/tests/multisect/follows-loop1-err.asm \
	modules/objfmts/bin/tests/multisect/follows-loop1-err.errwarn \
	modules/objfmts/bin/tests/multisect/follows-loop2-err.asm \
	modules/objfmts/bin/tests/multisect/follows-loop2-err.errwarn \
	modules/objfmts/bin/tests/multisect/follows-notfound-err.asm \
	modules/objfmts/bin/tests/multisect/follows-notfound-err.errwarn \
	modules/objfmts/bin/tests/multisect/initbss.asm \
	modules/objfmts/bin/tests/multisect/initbss.errwarn \
	modules/objfmts/bin/tests/multisect/initbss.hex \
	modules/objfmts/bin/tests/multisect/initbss.map \
	modules/objfmts/bin/tests/multisect/ldlinux-sects.asm \
	modules/objfmts/bin/tests/multisect/ldlinux-sects.hex \
	modules/objfmts/bin/tests/multisect/ldlinux-sects.map \
	modules/objfmts/bin/tests/multisect/multisect1.asm \
	modules/objfmts/bin/tests/multisect/multisect1.hex \
	modules/objfmts/bin/tests/multisect/multisect1.map \
	modules/objfmts/bin/tests/multisect/multisect2.asm \
	modules/objfmts/bin/tests/multisect/multisect2.hex \
	modules/objfmts/bin/tests/multisect/multisect2.map \
	modules/objfmts/bin/tests/multisect/multisect3.asm \
	modules/objfmts/bin/tests/multisect/multisect3.hex \
	modules/objfmts/bin/tests/multisect/multisect3.map \
	modules/objfmts/bin/tests/multisect/multisect4.asm \
	modules/objfmts/bin/tests/multisect/multisect4.hex \
	modules/objfmts/bin/tests/multisect/multisect4.map \
	modules/objfmts/bin/tests/multisect/multisect5.asm \
	modules/objfmts/bin/tests/multisect/multisect5.hex \
	modules/objfmts/bin/tests/multisect/multisect5.map \
	modules/objfmts/bin/tests/multisect/nomultisect1.asm \
	modules/objfmts/bin/tests/multisect/nomultisect1.hex \
	modules/objfmts/bin/tests/multisect/nomultisect1.map \
	modules/objfmts/bin/tests/multisect/nomultisect2.asm \
	modules/objfmts/bin/tests/multisect/nomultisect2.hex \
	modules/objfmts/bin/tests/multisect/nomultisect2.map \
	modules/objfmts/bin/tests/multisect/vfollows-loop1-err.asm \
	modules/objfmts/bin/tests/multisect/vfollows-loop1-err.errwarn \
	modules/objfmts/bin/tests/multisect/vfollows-loop2-err.asm \
	modules/objfmts/bin/tests/multisect/vfollows-loop2-err.errwarn \
	modules/objfmts/bin/tests/multisect/vfollows-notfound-err.asm \
	modules/objfmts/bin/tests/multisect/vfollows-notfound-err.errwarn \
	modules/objfmts/elf/tests/Makefile.inc \
	modules/objfmts/elf/tests/elf_test.sh \
	modules/objfmts/elf/tests/curpos.asm \
	modules/objfmts/elf/tests/curpos.hex \
	modules/objfmts/elf/tests/curpos-err.asm \
	modules/objfmts/elf/tests/curpos-err.errwarn \
	modules/objfmts/elf/tests/elf-overdef.asm \
	modules/objfmts/elf/tests/elf-overdef.hex \
	modules/objfmts/elf/tests/elf-x86id.asm \
	modules/objfmts/elf/tests/elf-x86id.hex \
	modules/objfmts/elf/tests/elfabssect.asm \
	modules/objfmts/elf/tests/elfabssect.hex \
	modules/objfmts/elf/tests/elfcond.asm \
	modules/objfmts/elf/tests/elfcond.hex \
	modules/objfmts/elf/tests/elfequabs.asm \
	modules/objfmts/elf/tests/elfequabs.hex \
	modules/objfmts/elf/tests/elfglobal.asm \
	modules/objfmts/elf/tests/elfglobal.hex \
	modules/objfmts/elf/tests/elfglobext.asm \
	modules/objfmts/elf/tests/elfglobext.hex \
	modules/objfmts/elf/tests/elfglobext2.asm \
	modules/objfmts/elf/tests/elfglobext2.hex \
	modules/objfmts/elf/tests/elfmanysym.asm \
	modules/objfmts/elf/tests/elfmanysym.hex \
	modules/objfmts/elf/tests/elfreloc.asm \
	modules/objfmts/elf/tests/elfreloc.hex \
	modules/objfmts/elf/tests/elfreloc-ext.asm \
	modules/objfmts/elf/tests/elfreloc-ext.hex \
	modules/objfmts/elf/tests/elfsectalign.asm \
	modules/objfmts/elf/tests/elfsectalign.hex \
	modules/objfmts/elf/tests/elfso.asm \
	modules/objfmts/elf/tests/elfso.hex \
	modules/objfmts/elf/tests/elftest.c \
	modules/objfmts/elf/tests/elftest.asm \
	modules/objfmts/elf/tests/elftest.hex \
	modules/objfmts/elf/tests/elftimes.asm \
	modules/objfmts/elf/tests/elftimes.hex \
	modules/objfmts/elf/tests/elftypesize.asm \
	modules/objfmts/elf/tests/elftypesize.hex \
	modules/objfmts/elf/tests/elfvisibility.asm \
	modules/objfmts/elf/tests/elfvisibility.errwarn \
	modules/objfmts/elf/tests/elfvisibility.hex \
	modules/objfmts/elf/tests/nasm-sectname.asm \
	modules/objfmts/elf/tests/nasm-sectname.hex \
	modules/objfmts/elf/tests/nasm-forceident.asm \
	modules/objfmts/elf/tests/nasm-forceident.hex \
	modules/objfmts/elf/tests/amd64/Makefile.inc \
	modules/objfmts/elf/tests/gas32/Makefile.inc \
	modules/objfmts/elf/tests/gas64/Makefile.inc \
	modules/objfmts/elf/tests/amd64/elf_amd64_test.sh \
	modules/objfmts/elf/tests/amd64/elf-rip.asm \
	modules/objfmts/elf/tests/amd64/elf-rip.hex \
	modules/objfmts/elf/tests/amd64/elfso64.asm \
	modules/objfmts/elf/tests/amd64/elfso64.hex \
	modules/objfmts/elf/tests/amd64/gotpcrel.asm \
	modules/objfmts/elf/tests/amd64/gotpcrel.hex \
	modules/objfmts/elf/tests/amd64/multiplefixup.asm \
	modules/objfmts/elf/tests/amd64/multiplefixup.hex \
	modules/objfmts/elf/tests/gas32/elf_gas32_test.sh \
	modules/objfmts/elf/tests/gas32/elf_gas32_ssym.asm \
	modules/objfmts/elf/tests/gas32/elf_gas32_ssym.hex \
	modules/objfmts/elf/tests/gas32/elf_gas32_got.asm \
	modules/objfmts/elf/tests/gas32/elf_gas32_got.hex \
	modules/objfmts/elf/tests/gas64/elf_gas64_test.sh \
	modules/objfmts/elf/tests/gas64/crosssect.asm \
	modules/objfmts/elf/tests/gas64/crosssect.hex \
	modules/objfmts/elf/tests/gas64/elf_gas64_curpos.asm \
	modules/objfmts/elf/tests/gas64/elf_gas64_curpos.hex \
	modules/objfmts/elf/tests/gas64/elf_gas64_reloc.asm \
	modules/objfmts/elf/tests/gas64/elf_gas64_reloc.hex \
	modules/objfmts/elf/tests/gas64/elf_gas64_ssym.asm \
	modules/objfmts/elf/tests/gas64/elf_gas64_ssym.hex \
	modules/objfmts/coff/win64-nasm.mac \
	modules/objfmts/coff/win64-gas.mac \
	modules/objfmts/coff/tests/Makefile.inc \
	modules/objfmts/coff/tests/coff_test.sh \
	modules/objfmts/coff/tests/cofftest.c \
	modules/objfmts/coff/tests/cofftest.asm \
	modules/objfmts/coff/tests/cofftest.hex \
	modules/objfmts/coff/tests/cofftimes.asm \
	modules/objfmts/coff/tests/cofftimes.hex \
	modules/objfmts/coff/tests/x86id.asm \
	modules/objfmts/coff/tests/x86id.hex \
	modules/objfmts/coff/tests/x86id.errwarn \
	modules/objfmts/macho/tests/Makefile.inc \
	modules/objfmts/macho/tests/gas32/Makefile.inc \
	modules/objfmts/macho/tests/gas64/Makefile.inc \
	modules/objfmts/macho/tests/nasm32/Makefile.inc \
	modules/objfmts/macho/tests/nasm64/Makefile.inc \
	modules/objfmts/macho/tests/gas32/gas_macho32_test.sh \
	modules/objfmts/macho/tests/gas32/gas-macho32.asm \
	modules/objfmts/macho/tests/gas32/gas-macho32.hex \
	modules/objfmts/macho/tests/gas64/gas_macho64_test.sh \
	modules/objfmts/macho/tests/gas64/gas-macho64.asm \
	modules/objfmts/macho/tests/gas64/gas-macho64.hex \
	modules/objfmts/macho/tests/gas64/gas-macho64-pic.asm \
	modules/objfmts/macho/tests/gas64/gas-macho64-pic.hex \
	modules/objfmts/macho/tests/nasm32/macho32_test.sh \
	modules/objfmts/macho/tests/nasm32/machotest.c \
	modules/objfmts/macho/tests/nasm32/machotest.asm \
	modules/objfmts/macho/tests/nasm32/machotest.hex \
	modules/objfmts/macho/tests/nasm32/macho-reloc.asm \
	modules/objfmts/macho/tests/nasm32/macho-reloc.hex \
	modules/objfmts/macho/tests/nasm32/macho32-pext.asm \
	modules/objfmts/macho/tests/nasm32/macho32-pext.hex \
	modules/objfmts/macho/tests/nasm32/macho32-pic.asm \
	modules/objfmts/macho/tests/nasm32/macho32-pic.hex \
	modules/objfmts/macho/tests/nasm32/macho32-sect.asm \
	modules/objfmts/macho/tests/nasm32/macho32-sect.errwarn \
	modules/objfmts/macho/tests/nasm32/macho32-sect.hex \
	modules/objfmts/macho/tests/nasm32/macho32-size.asm \
	modules/objfmts/macho/tests/nasm32/macho32-size.hex \
	modules/objfmts/macho/tests/nasm64/nasm-macho64-pic.asm \
	modules/objfmts/macho/tests/nasm64/nasm-macho64-pic.hex \
	modules/objfmts/macho/tests/nasm64/macho64_test.sh \
	modules/objfmts/macho/tests/nasm64/machotest64.c \
	modules/objfmts/macho/tests/nasm64/machotest64.asm \
	modules/objfmts/macho/tests/nasm64/machotest64.hex \
	modules/objfmts/macho/tests/nasm64/macho-reloc64-err.asm \
	modules/objfmts/macho/tests/nasm64/macho-reloc64-err.errwarn \
	modules/objfmts/rdf/tests/Makefile.inc \
	modules/objfmts/rdf/tests/rdf_test.sh \
	modules/objfmts/rdf/tests/rdfabs.asm \
	modules/objfmts/rdf/tests/rdfabs.errwarn \
	modules/objfmts/rdf/tests/rdfabs.hex \
	modules/objfmts/rdf/tests/rdfext.asm \
	modules/objfmts/rdf/tests/rdfext.hex \
	modules/objfmts/rdf/tests/rdfseg.asm \
	modules/objfmts/rdf/tests/rdfseg.hex \
	modules/objfmts/rdf/tests/rdfseg2.asm \
	modules/objfmts/rdf/tests/rdfseg2.hex \
	modules/objfmts/rdf/tests/rdftest1.asm \
	modules/objfmts/rdf/tests/rdftest1.hex \
	modules/objfmts/rdf/tests/rdftest2.asm \
	modules/objfmts/rdf/tests/rdftest2.hex \
	modules/objfmts/rdf/tests/rdtlib.asm \
	modules/objfmts/rdf/tests/rdtlib.hex \
	modules/objfmts/rdf/tests/rdtmain.asm \
	modules/objfmts/rdf/tests/rdtmain.hex \
	modules/objfmts/rdf/tests/testlib.asm \
	modules/objfmts/rdf/tests/testlib.hex \
	modules/objfmts/win32/tests/Makefile.inc \
	modules/objfmts/win32/tests/export.asm \
	modules/objfmts/win32/tests/export.hex \
	modules/objfmts/win32/tests/win32_test.sh \
	modules/objfmts/win32/tests/win32-curpos.asm \
	modules/objfmts/win32/tests/win32-curpos.hex \
	modules/objfmts/win32/tests/win32-overdef.asm \
	modules/objfmts/win32/tests/win32-overdef.hex \
	modules/objfmts/win32/tests/win32-safeseh.asm \
	modules/objfmts/win32/tests/win32-safeseh.hex \
	modules/objfmts/win32/tests/win32-safeseh.masm \
	modules/objfmts/win32/tests/win32-segof.asm \
	modules/objfmts/win32/tests/win32-segof.hex \
	modules/objfmts/win32/tests/win32test.c \
	modules/objfmts/win32/tests/win32test.asm \
	modules/objfmts/win32/tests/win32test.hex \
	modules/objfmts/win32/tests/gas/Makefile.inc \
	modules/objfmts/win32/tests/gas/win32_gas_test.sh \
	modules/objfmts/win32/tests/gas/win32at.asm \
	modules/objfmts/win32/tests/gas/win32at.hex \
	modules/objfmts/win32/tests/gas/win32def.asm \
	modules/objfmts/win32/tests/gas/win32def.hex \
	modules/objfmts/win32/tests/gas/win32secrel32.asm \
	modules/objfmts/win32/tests/gas/win32secrel32.hex \
	modules/objfmts/win64/tests/Makefile.inc \
	modules/objfmts/win64/tests/win64_test.sh \
	modules/objfmts/win64/tests/sce1.asm \
	modules/objfmts/win64/tests/sce1.hex \
	modules/objfmts/win64/tests/sce1-err.asm \
	modules/objfmts/win64/tests/sce1-err.errwarn \
	modules/objfmts/win64/tests/sce2.asm \
	modules/objfmts/win64/tests/sce2.hex \
	modules/objfmts/win64/tests/sce2-err.asm \
	modules/objfmts/win64/tests/sce2-err.errwarn \
	modules/objfmts/win64/tests/sce3.asm \
	modules/objfmts/win64/tests/sce3.hex \
	modules/objfmts/win64/tests/sce3.masm \
	modules/objfmts/win64/tests/sce4.asm \
	modules/objfmts/win64/tests/sce4.hex \
	modules/objfmts/win64/tests/sce4.masm \
	modules/objfmts/win64/tests/sce4-err.asm \
	modules/objfmts/win64/tests/sce4-err.errwarn \
	modules/objfmts/win64/tests/win64-abs.asm \
	modules/objfmts/win64/tests/win64-abs.hex \
	modules/objfmts/win64/tests/win64-curpos.asm \
	modules/objfmts/win64/tests/win64-curpos.hex \
	modules/objfmts/win64/tests/win64-dataref.asm \
	modules/objfmts/win64/tests/win64-dataref.hex \
	modules/objfmts/win64/tests/win64-dataref.masm \
	modules/objfmts/win64/tests/win64-dataref2.asm \
	modules/objfmts/win64/tests/win64-dataref2.hex \
	modules/objfmts/win64/tests/win64-dataref2.masm \
	modules/objfmts/win64/tests/win64-imagebase.hex \
	modules/objfmts/win64/tests/win64-imagebase.asm \
	modules/objfmts/win64/tests/gas/Makefile.inc \
	modules/objfmts/win64/tests/gas/win64_gas_test.sh \
	modules/objfmts/win64/tests/gas/win64-gas-sce.asm \
	modules/objfmts/win64/tests/gas/win64-gas-sce.hex \
	modules/objfmts/xdf/tests/Makefile.inc \
	modules/objfmts/xdf/tests/xdf_test.sh \
	modules/objfmts/xdf/tests/xdf-overdef.asm \
	modules/objfmts/xdf/tests/xdf-overdef.hex \
	modules/objfmts/xdf/tests/xdflong.asm \
	modules/objfmts/xdf/tests/xdflong.hex \
	modules/objfmts/xdf/tests/xdflong.errwarn \
	modules/objfmts/xdf/tests/xdfother.asm \
	modules/objfmts/xdf/tests/xdfother.hex \
	modules/objfmts/xdf/tests/xdfprotect.asm \
	modules/objfmts/xdf/tests/xdfprotect.hex \
	modules/objfmts/xdf/tests/xdfsect.asm \
	modules/objfmts/xdf/tests/xdfsect.hex \
	modules/objfmts/xdf/tests/xdfsect-err.asm \
	modules/objfmts/xdf/tests/xdfsect-err.errwarn \
	modules/objfmts/xdf/tests/xdfvirtual.asm \
	modules/objfmts/xdf/tests/xdfvirtual.hex \
	modules/objfmts/yasm_objfmts.xml libyasm/genmodule.c \
	libyasm/module.in libyasm/tests/Makefile.inc \
	libyasm/tests/libyasm_test.sh libyasm/tests/1shl0.asm \
	libyasm/tests/1shl0.hex libyasm/tests/absloop-err.asm \
	libyasm/tests/absloop-err.errwarn \
	libyasm/tests/charconst64.asm libyasm/tests/charconst64.hex \
	libyasm/tests/data-rawvalue.asm \
	libyasm/tests/data-rawvalue.hex libyasm/tests/duplabel-err.asm \
	libyasm/tests/duplabel-err.errwarn libyasm/tests/emptydata.asm \
	libyasm/tests/emptydata.hex libyasm/tests/equ-expand.asm \
	libyasm/tests/equ-expand.hex libyasm/tests/expr-fold-level.asm \
	libyasm/tests/expr-fold-level.hex \
	libyasm/tests/expr-simplify-identity.asm \
	libyasm/tests/expr-simplify-identity.hex \
	libyasm/tests/expr-wide-ident.asm \
	libyasm/tests/expr-wide-ident.hex libyasm/tests/externdef.asm \
	libyasm/tests/externdef.errwarn libyasm/tests/externdef.hex \
	libyasm/tests/incbin.asm libyasm/tests/incbin.hex \
	libyasm/tests/jmpsize1.asm libyasm/tests/jmpsize1.hex \
	libyasm/tests/jmpsize1-err.asm \
	libyasm/tests/jmpsize1-err.errwarn \
	libyasm/tests/opt-align1.asm libyasm/tests/opt-align1.hex \
	libyasm/tests/opt-align2.asm libyasm/tests/opt-align2.hex \
	libyasm/tests/opt-align3.asm libyasm/tests/opt-align3.hex \
	libyasm/tests/opt-circular1-err.asm \
	libyasm/tests/opt-circular1-err.errwarn \
	libyasm/tests/opt-circular2-err.asm \
	libyasm/tests/opt-circular2-err.errwarn \
	libyasm/tests/opt-circular3-err.asm \
	libyasm/tests/opt-circular3-err.errwarn \
	libyasm/tests/opt-gvmat64.asm libyasm/tests/opt-gvmat64.hex \
	libyasm/tests/opt-immexpand.asm \
	libyasm/tests/opt-immexpand.hex \
	libyasm/tests/opt-immnoexpand.asm \
	libyasm/tests/opt-immnoexpand.hex \
	libyasm/tests/opt-oldalign.asm libyasm/tests/opt-oldalign.hex \
	libyasm/tests/opt-struc.asm libyasm/tests/opt-struc.hex \
	libyasm/tests/reserve-err1.asm \
	libyasm/tests/reserve-err1.errwarn \
	libyasm/tests/reserve-err2.asm \
	libyasm/tests/reserve-err2.errwarn libyasm/tests/strucsize.asm \
	libyasm/tests/strucsize.hex libyasm/tests/times0.asm \
	libyasm/tests/times0.hex libyasm/tests/timesfwd.asm \
	libyasm/tests/timesfwd.hex libyasm/tests/timesover-err.asm \
	libyasm/tests/timesover-err.errwarn \
	libyasm/tests/timesunder.asm libyasm/tests/timesunder.hex \
	libyasm/tests/times-res.asm libyasm/tests/times-res.errwarn \
	libyasm/tests/times-res.hex libyasm/tests/unary.asm \
	libyasm/tests/unary.hex libyasm/tests/value-err.asm \
	libyasm/tests/value-err.errwarn \
	libyasm/tests/value-samesym.asm \
	libyasm/tests/value-samesym.errwarn \
	libyasm/tests/value-samesym.hex libyasm/tests/value-mask.asm \
	libyasm/tests/value-mask.errwarn libyasm/tests/value-mask.hex \
	libyasm/tests/value-shr-symexpr.asm \
	libyasm/tests/value-shr-symexpr.hex \
	frontends/yasm/Makefile.inc frontends/tasm/Makefile.inc \
	frontends/vsyasm/Makefile.inc frontends/yasm/yasm.xml \
	m4/intmax.m4 m4/longdouble.m4 m4/nls.m4 m4/po.m4 \
	m4/printf-posix.m4 m4/signed.m4 m4/size_max.m4 m4/ulonglong.m4 \
	m4/wchar_t.m4 m4/wint_t.m4 m4/xsize.m4 m4/codeset.m4 \
	m4/gettext.m4 m4/glibc21.m4 m4/iconv.m4 m4/intdiv0.m4 \
	m4/inttypes.m4 m4/inttypes_h.m4 m4/inttypes-pri.m4 \
	m4/isc-posix.m4 m4/lcmessage.m4 m4/lib-ld.m4 m4/lib-link.m4 \
	m4/lib-prefix.m4 m4/longlong.m4 m4/progtest.m4 m4/stdint_h.m4 \
	m4/uintmax_t.m4 m4/pythonhead.m4 m4/cython.m4 out_test.sh \
	Artistic.txt BSD.txt GNU_GPL-2.0 GNU_LGPL-2.0 splint.sh \
	YASM-VERSION-GEN.sh Mkfiles/Makefile.flat Mkfiles/Makefile.dj \
	Mkfiles/dj/config.h Mkfiles/dj/libyasm-stdint.h \
	Mkfiles/vc9/config.h \
	Mkfiles/vc9/crt_secure_no_deprecate.vsprops \
	Mkfiles/vc9/libyasm-stdint.h Mkfiles/vc9/readme.vc9.txt \
	Mkfiles/vc9/vc98_swap.py Mkfiles/vc9/vsyasm.vcproj \
	Mkfiles/vc9/yasm.sln Mkfiles/vc9/yasm.vcproj \
	Mkfiles/vc9/ytasm.vcproj Mkfiles/vc9/yasm.rules \
	Mkfiles/vc9/genmacro/genmacro.vcproj \
	Mkfiles/vc9/genmacro/run.bat \
	Mkfiles/vc9/genmodule/genmodule.vcproj \
	Mkfiles/vc9/genmodule/run.bat \
	Mkfiles/vc9/genperf/genperf.vcproj Mkfiles/vc9/genperf/run.bat \
	Mkfiles/vc9/genstring/genstring.vcproj \
	Mkfiles/vc9/genstring/run.bat \
	Mkfiles/vc9/genversion/genversion.vcproj \
	Mkfiles/vc9/genversion/run.bat \
	Mkfiles/vc9/libyasm/libyasm.vcproj \
	Mkfiles/vc9/modules/modules.vcproj \
	Mkfiles/vc9/re2c/re2c.vcproj Mkfiles/vc9/re2c/run.bat \
	Mkfiles/vc10/config.h \
	Mkfiles/vc10/crt_secure_no_deprecate.props \
	Mkfiles/vc10/crt_secure_no_deprecate.vsprops \
	Mkfiles/vc10/libyasm-stdint.h Mkfiles/vc10/out_copy_rename.bat \
	Mkfiles/vc10/readme.vc10.txt Mkfiles/vc10/vsyasm.props \
	Mkfiles/vc10/vsyasm.targets Mkfiles/vc10/vsyasm.vcxproj \
	Mkfiles/vc10/vsyasm.xml Mkfiles/vc10/yasm.sln \
	Mkfiles/vc10/yasm.vcxproj Mkfiles/vc10/yasm.vcxproj.filters \
	Mkfiles/vc10/ytasm.vcxproj \
	Mkfiles/vc10/genmacro/genmacro.vcxproj \
	Mkfiles/vc10/genmacro/genmacro.vcxproj.filters \
	Mkfiles/vc10/genmacro/run.bat \
	Mkfiles/vc10/genmodule/genmodule.vcxproj \
	Mkfiles/vc10/genmodule/genmodule.vcxproj.filters \
	Mkfiles/vc10/genmodule/run.bat \
	Mkfiles/vc10/genperf/genperf.vcxproj \
	Mkfiles/vc10/genperf/genperf.vcxproj.filters \
	Mkfiles/vc10/genperf/run.bat \
	Mkfiles/vc10/genstring/genstring.vcxproj \
	Mkfiles/vc10/genstring/genstring.vcxproj.filters \
	Mkfiles/vc10/genstring/run.bat \
	Mkfiles/vc10/genversion/genversion.vcxproj \
	Mkfiles/vc10/genversion/genversion.vcxproj.filters \
	Mkfiles/vc10/genversion/run.bat \
	Mkfiles/vc10/libyasm/libyasm.vcxproj \
	Mkfiles/vc10/libyasm/libyasm.vcxproj.filters \
	Mkfiles/vc10/modules/modules.vcxproj \
	Mkfiles/vc10/modules/modules.vcxproj.filters \
	Mkfiles/vc10/re2c/re2c.vcxproj \
	Mkfiles/vc10/re2c/re2c.vcxproj.filters \
	Mkfiles/vc10/re2c/run.bat genstring.c

# libyasm-stdint.h doesn't clean up after itself?
CONFIG_CLEAN_FILES = libyasm-stdint.h YASM-VERSION-FILE YASM-VERSION.h
re2c_SOURCES = 
re2c_LDADD = re2c-main.$(OBJEXT) re2c-code.$(OBJEXT) \
	re2c-dfa.$(OBJEXT) re2c-parser.$(OBJEXT) \
	re2c-actions.$(OBJEXT) re2c-scanner.$(OBJEXT) \
	re2c-mbo_getopt.$(OBJEXT) re2c-substr.$(OBJEXT) \
	re2c-translate.$(OBJEXT)
re2c_LINK = $(CCLD_FOR_BUILD) -o $@
genmacro_SOURCES = 
genmacro_LDADD = genmacro.$(OBJEXT)
genmacro_LINK = $(CCLD_FOR_BUILD) -o $@
genperf_SOURCES = 
genperf_LDADD = genperf.$(OBJEXT) gp-perfect.$(OBJEXT) \
	gp-phash.$(OBJEXT) gp-xmalloc.$(OBJEXT) gp-xstrdup.$(OBJEXT)
genperf_LINK = $(CCLD_FOR_BUILD) -o $@
PYBINDING_DEPS = tools/python-yasm/bytecode.pxi \
	tools/python-yasm/errwarn.pxi tools/python-yasm/expr.pxi \
	tools/python-yasm/floatnum.pxi tools/python-yasm/intnum.pxi \
	tools/python-yasm/symrec.pxi tools/python-yasm/value.pxi
YASM_MODULES = arch_x86 arch_lc3b listfmt_nasm parser_gas parser_gnu \
	parser_nasm parser_tasm preproc_nasm preproc_tasm preproc_raw \
	preproc_cpp preproc_gas dbgfmt_cv8 dbgfmt_dwarf2 dbgfmt_null \
	dbgfmt_stabs objfmt_dbg objfmt_bin objfmt_dosexe objfmt_elf \
	objfmt_elf32 objfmt_elf64 objfmt_coff objfmt_macho \
	objfmt_macho32 objfmt_macho64 objfmt_rdf objfmt_win32 \
	objfmt_win64 objfmt_x64 objfmt_xdf
lib_LIBRARIES = libyasm.a
libyasm_a_SOURCES = modules/arch/x86/x86arch.c \
	modules/arch/x86/x86arch.h modules/arch/x86/x86bc.c \
	modules/arch/x86/x86expr.c modules/arch/x86/x86id.c \
	modules/arch/lc3b/lc3barch.c modules/arch/lc3b/lc3barch.h \
	modules/arch/lc3b/lc3bbc.c \
	modules/listfmts/nasm/nasm-listfmt.c \
	modules/parsers/gas/gas-parser.c \
	modules/parsers/gas/gas-parser.h \
	modules/parsers/gas/gas-parse.c \
	modules/parsers/gas/gas-parse-intel.c \
	modules/parsers/nasm/nasm-parser.c \
	modules/parsers/nasm/nasm-parser.h \
	modules/parsers/nasm/nasm-parser-struct.h \
	modules/parsers/nasm/nasm-parse.c \
	modules/preprocs/nasm/nasm-preproc.c \
	modules/preprocs/nasm/nasm-pp.h \
	modules/preprocs/nasm/nasm-pp.c modules/preprocs/nasm/nasm.h \
	modules/preprocs/nasm/nasmlib.h \
	modules/preprocs/nasm/nasmlib.c \
	modules/preprocs/nasm/nasm-eval.h \
	modules/preprocs/nasm/nasm-eval.c \
	modules/preprocs/raw/raw-preproc.c \
	modules/preprocs/cpp/cpp-preproc.c \
	modules/preprocs/gas/gas-preproc.c \
	modules/preprocs/gas/gas-eval.h \
	modules/preprocs/gas/gas-eval.c \
	modules/dbgfmts/codeview/cv-dbgfmt.h \
	modules/dbgfmts/codeview/cv-dbgfmt.c \
	modules/dbgfmts/codeview/cv-symline.c \
	modules/dbgfmts/codeview/cv-type.c \
	modules/dbgfmts/dwarf2/dwarf2-dbgfmt.h \
	modules/dbgfmts/dwarf2/dwarf2-dbgfmt.c \
	modules/dbgfmts/dwarf2/dwarf2-line.c \
	modules/dbgfmts/dwarf2/dwarf2-aranges.c \
	modules/dbgfmts/dwarf2/dwarf2-info.c \
	modules/dbgfmts/null/null-dbgfmt.c \
	modules/dbgfmts/stabs/stabs-dbgfmt.c \
	modules/objfmts/dbg/dbg-objfmt.c \
	modules/objfmts/bin/bin-objfmt.c modules/objfmts/elf/elf.c \
	modules/objfmts/elf/elf.h modules/objfmts/elf/elf-objfmt.c \
	modules/objfmts/elf/elf-machine.h \
	modules/objfmts/elf/elf-x86-x86.c \
	modules/objfmts/elf/elf-x86-amd64.c \
	modules/objfmts/coff/coff-objfmt.c \
	modules/objfmts/coff/coff-objfmt.h \
	modules/objfmts/coff/win64-except.c \
	modules/objfmts/macho/macho-objfmt.c \
	modules/objfmts/rdf/rdf-objfmt.c \
	modules/objfmts/xdf/xdf-objfmt.c libyasm/assocdat.c \
	libyasm/bitvect.c libyasm/bc-align.c libyasm/bc-data.c \
	libyasm/bc-incbin.c libyasm/bc-org.c libyasm/bc-reserve.c \
	libyasm/bytecode.c libyasm/errwarn.c libyasm/expr.c \
	libyasm/file.c libyasm/floatnum.c libyasm/hamt.c \
	libyasm/insn.c libyasm/intnum.c libyasm/inttree.c \
	libyasm/linemap.c libyasm/md5.c libyasm/mergesort.c \
	libyasm/phash.c libyasm/section.c libyasm/strcasecmp.c \
	libyasm/strsep.c libyasm/symrec.c libyasm/valparam.c \
	libyasm/value.c libyasm/xmalloc.c libyasm/xstrdup.c
nodist_libyasm_a_SOURCES = x86cpu.c x86regtmod.c lc3bid.c gas-token.c \
	nasm-token.c module.c
genversion_SOURCES = 
genversion_LDADD = genversion.$(OBJEXT)
genversion_LINK = $(CCLD_FOR_BUILD) -o $@
genmodule_SOURCES = 
genmodule_LDADD = genmodule.$(OBJEXT)
genmodule_LINK = $(CCLD_FOR_BUILD) -o $@
modincludedir = $(includedir)/libyasm
modinclude_HEADERS = libyasm/arch.h libyasm/assocdat.h \
	libyasm/bitvect.h libyasm/bytecode.h libyasm/compat-queue.h \
	libyasm/coretype.h libyasm/dbgfmt.h libyasm/errwarn.h \
	libyasm/expr.h libyasm/file.h libyasm/floatnum.h \
	libyasm/hamt.h libyasm/insn.h libyasm/intnum.h \
	libyasm/inttree.h libyasm/linemap.h libyasm/listfmt.h \
	libyasm/md5.h libyasm/module.h libyasm/objfmt.h \
	libyasm/parser.h libyasm/phash.h libyasm/preproc.h \
	libyasm/section.h libyasm/symrec.h libyasm/valparam.h \
	libyasm/value.h
bitvect_test_SOURCES = libyasm/tests/bitvect_test.c
bitvect_test_LDADD = libyasm.a $(INTLLIBS)
floatnum_test_SOURCES = libyasm/tests/floatnum_test.c
floatnum_test_LDADD = libyasm.a $(INTLLIBS)
leb128_test_SOURCES = libyasm/tests/leb128_test.c
leb128_test_LDADD = libyasm.a $(INTLLIBS)
splitpath_test_SOURCES = libyasm/tests/splitpath_test.c
splitpath_test_LDADD = libyasm.a $(INTLLIBS)
combpath_test_SOURCES = libyasm/tests/combpath_test.c
combpath_test_LDADD = libyasm.a $(INTLLIBS)
uncstring_test_SOURCES = libyasm/tests/uncstring_test.c
uncstring_test_LDADD = libyasm.a $(INTLLIBS)
yasm_SOURCES = frontends/yasm/yasm.c frontends/yasm/yasm-options.c \
	frontends/yasm/yasm-options.h
yasm_LDADD = libyasm.a $(INTLLIBS)
ytasm_SOURCES = frontends/tasm/tasm.c frontends/tasm/tasm-options.c \
	frontends/tasm/tasm-options.h
ytasm_LDADD = libyasm.a $(INTLLIBS)
vsyasm_SOURCES = frontends/vsyasm/vsyasm.c \
	frontends/yasm/yasm-options.c frontends/yasm/yasm-options.h
vsyasm_LDADD = libyasm.a $(INTLLIBS)

# genstring build
genstring_SOURCES = 
genstring_LDADD = genstring.$(OBJEXT)
genstring_LINK = $(CCLD_FOR_BUILD) -o $@
all: $(BUILT_SOURCES) config.h
	$(MAKE) $(AM_MAKEFLAGS) all-recursive

.SUFFIXES:
.SUFFIXES: .gperf .c .o .obj
am--refresh:
	@:
$(srcdir)/Makefile.in: @MAINTAINER_MODE_TRUE@ $(srcdir)/Makefile.am $(srcdir)/tools/Makefile.inc $(srcdir)/tools/re2c/Makefile.inc $(srcdir)/tools/genmacro/Makefile.inc $(srcdir)/tools/genperf/Makefile.inc $(srcdir)/tools/python-yasm/Makefile.inc $(srcdir)/tools/python-yasm/tests/Makefile.inc $(srcdir)/modules/Makefile.inc $(srcdir)/modules/arch/Makefile.inc $(srcdir)/modules/arch/x86/Makefile.inc $(srcdir)/modules/arch/x86/tests/Makefile.inc $(srcdir)/modules/arch/x86/tests/gas32/Makefile.inc $(srcdir)/modules/arch/x86/tests/gas64/Makefile.inc $(srcdir)/modules/arch/lc3b/Makefile.inc $(srcdir)/modules/arch/lc3b/tests/Makefile.inc $(srcdir)/modules/listfmts/Makefile.inc $(srcdir)/modules/listfmts/nasm/Makefile.inc $(srcdir)/modules/parsers/Makefile.inc $(srcdir)/modules/parsers/gas/Makefile.inc $(srcdir)/modules/parsers/gas/tests/Makefile.inc $(srcdir)/modules/parsers/gas/tests/bin/Makefile.inc $(srcdir)/modules/parsers/nasm/Makefile.inc $(srcdir)/modules/parsers/nasm/tests/Makefile.inc $(srcdir)/modules/parsers/nasm/tests/worphan/Makefile.inc $(srcdir)/modules/parsers/tasm/Makefile.inc $(srcdir)/modules/parsers/tasm/tests/Makefile.inc $(srcdir)/modules/parsers/tasm/tests/exe/Makefile.inc $(srcdir)/modules/preprocs/Makefile.inc $(srcdir)/modules/preprocs/tasm/Makefile.inc $(srcdir)/modules/preprocs/tasm/tests/Makefile.inc $(srcdir)/modules/preprocs/nasm/Makefile.inc $(srcdir)/modules/preprocs/nasm/tests/Makefile.inc $(srcdir)/modules/preprocs/raw/Makefile.inc $(srcdir)/modules/preprocs/raw/tests/Makefile.inc $(srcdir)/modules/preprocs/cpp/Makefile.inc $(srcdir)/modules/preprocs/gas/Makefile.inc $(srcdir)/modules/preprocs/gas/tests/Makefile.inc $(srcdir)/modules/dbgfmts/Makefile.inc $(srcdir)/modules/dbgfmts/codeview/Makefile.inc $(srcdir)/modules/dbgfmts/dwarf2/Makefile.inc $(srcdir)/modules/dbgfmts/dwarf2/tests/Makefile.inc $(srcdir)/modules/dbgfmts/dwarf2/tests/gen64/Makefile.inc $(srcdir)/modules/dbgfmts/dwarf2/tests/pass32/Makefile.inc $(srcdir)/modules/dbgfmts/dwarf2/tests/pass64/Makefile.inc $(srcdir)/modules/dbgfmts/dwarf2/tests/passwin64/Makefile.inc $(srcdir)/modules/dbgfmts/null/Makefile.inc $(srcdir)/modules/dbgfmts/stabs/Makefile.inc $(srcdir)/modules/dbgfmts/stabs/tests/Makefile.inc $(srcdir)/modules/objfmts/Makefile.inc $(srcdir)/modules/objfmts/dbg/Makefile.inc $(srcdir)/modules/objfmts/bin/Makefile.inc $(srcdir)/modules/objfmts/bin/tests/Makefile.inc $(srcdir)/modules/objfmts/bin/tests/multisect/Makefile.inc $(srcdir)/modules/objfmts/elf/Makefile.inc $(srcdir)/modules/objfmts/elf/tests/Makefile.inc $(srcdir)/modules/objfmts/elf/tests/amd64/Makefile.inc $(srcdir)/modules/objfmts/elf/tests/gas32/Makefile.inc $(srcdir)/modules/objfmts/elf/tests/gas64/Makefile.inc $(srcdir)/modules/objfmts/coff/Makefile.inc $(srcdir)/modules/objfmts/coff/tests/Makefile.inc $(srcdir)/modules/objfmts/macho/Makefile.inc $(srcdir)/modules/objfmts/macho/tests/Makefile.inc $(srcdir)/modules/objfmts/macho/tests/gas32/Makefile.inc $(srcdir)/modules/objfmts/macho/tests/gas64/Makefile.inc $(srcdir)/modules/objfmts/macho/tests/nasm32/Makefile.inc $(srcdir)/modules/objfmts/macho/tests/nasm64/Makefile.inc $(srcdir)/modules/objfmts/rdf/Makefile.inc $(srcdir)/modules/objfmts/rdf/tests/Makefile.inc $(srcdir)/modules/objfmts/win32/Makefile.inc $(srcdir)/modules/objfmts/win32/tests/Makefile.inc $(srcdir)/modules/objfmts/win32/tests/gas/Makefile.inc $(srcdir)/modules/objfmts/win64/Makefile.inc $(srcdir)/modules/objfmts/win64/tests/Makefile.inc $(srcdir)/modules/objfmts/win64/tests/gas/Makefile.inc $(srcdir)/modules/objfmts/xdf/Makefile.inc $(srcdir)/modules/objfmts/xdf/tests/Makefile.inc $(srcdir)/libyasm/Makefile.inc $(srcdir)/libyasm/tests/Makefile.inc $(srcdir)/frontends/Makefile.inc $(srcdir)/frontends/yasm/Makefile.inc $(srcdir)/frontends/tasm/Makefile.inc $(srcdir)/frontends/vsyasm/Makefile.inc $(srcdir)/m4/Makefile.inc $(am__configure_deps)
	@for dep in $?; do \
	  case '$(am__configure_deps)' in \
	    *$$dep*) \
	      echo ' cd $(srcdir) && $(AUTOMAKE) --foreign'; \
	      $(am__cd) $(srcdir) && $(AUTOMAKE) --foreign \
		&& exit 0; \
	      exit 1;; \
	  esac; \
	done; \
	echo ' cd $(top_srcdir) && $(AUTOMAKE) --foreign Makefile'; \
	$(am__cd) $(top_srcdir) && \
	  $(AUTOMAKE) --foreign Makefile
.PRECIOUS: Makefile
Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status
	@case '$?' in \
	  *config.status*) \
	    echo ' $(SHELL) ./config.status'; \
	    $(SHELL) ./config.status;; \
	  *) \
	    echo ' cd $(top_builddir) && $(SHELL) ./config.status $@ $(am__depfiles_maybe)'; \
	    cd $(top_builddir) && $(SHELL) ./config.status $@ $(am__depfiles_maybe);; \
	esac;

$(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES)
	$(SHELL) ./config.status --recheck

$(top_srcdir)/configure: @MAINTAINER_MODE_TRUE@ $(am__configure_deps)
	$(am__cd) $(srcdir) && $(AUTOCONF)
$(ACLOCAL_M4): @MAINTAINER_MODE_TRUE@ $(am__aclocal_m4_deps)
	$(am__cd) $(srcdir) && $(ACLOCAL) $(ACLOCAL_AMFLAGS)
$(am__aclocal_m4_deps):

config.h: stamp-h1
	@if test ! -f $@; then \
	  rm -f stamp-h1; \
	  $(MAKE) $(AM_MAKEFLAGS) stamp-h1; \
	else :; fi

stamp-h1: $(srcdir)/config.h.in $(top_builddir)/config.status
	@rm -f stamp-h1
	cd $(top_builddir) && $(SHELL) ./config.status config.h
$(srcdir)/config.h.in: @MAINTAINER_MODE_TRUE@ $(am__configure_deps) 
	($(am__cd) $(top_srcdir) && $(AUTOHEADER))
	rm -f stamp-h1
	touch $@

distclean-hdr:
	-rm -f config.h stamp-h1
install-libLIBRARIES: $(lib_LIBRARIES)
	@$(NORMAL_INSTALL)
	test -z "$(libdir)" || $(MKDIR_P) "$(DESTDIR)$(libdir)"
	@list='$(lib_LIBRARIES)'; test -n "$(libdir)" || list=; \
	list2=; for p in $$list; do \
	  if test -f $$p; then \
	    list2="$$list2 $$p"; \
	  else :; fi; \
	done; \
	test -z "$$list2" || { \
	  echo " $(INSTALL_DATA) $$list2 '$(DESTDIR)$(libdir)'"; \
	  $(INSTALL_DATA) $$list2 "$(DESTDIR)$(libdir)" || exit $$?; }
	@$(POST_INSTALL)
	@list='$(lib_LIBRARIES)'; test -n "$(libdir)" || list=; \
	for p in $$list; do \
	  if test -f $$p; then \
	    $(am__strip_dir) \
	    echo " ( cd '$(DESTDIR)$(libdir)' && $(RANLIB) $$f )"; \
	    ( cd "$(DESTDIR)$(libdir)" && $(RANLIB) $$f ) || exit $$?; \
	  else :; fi; \
	done

uninstall-libLIBRARIES:
	@$(NORMAL_UNINSTALL)
	@list='$(lib_LIBRARIES)'; test -n "$(libdir)" || list=; \
	files=`for p in $$list; do echo $$p; done | sed -e 's|^.*/||'`; \
	test -n "$$files" || exit 0; \
	echo " ( cd '$(DESTDIR)$(libdir)' && rm -f "$$files" )"; \
	cd "$(DESTDIR)$(libdir)" && rm -f $$files

clean-libLIBRARIES:
	-test -z "$(lib_LIBRARIES)" || rm -f $(lib_LIBRARIES)
libyasm.a: $(libyasm_a_OBJECTS) $(libyasm_a_DEPENDENCIES) 
	-rm -f libyasm.a
	$(libyasm_a_AR) libyasm.a $(libyasm_a_OBJECTS) $(libyasm_a_LIBADD)
	$(RANLIB) libyasm.a
install-binPROGRAMS: $(bin_PROGRAMS)
	@$(NORMAL_INSTALL)
	test -z "$(bindir)" || $(MKDIR_P) "$(DESTDIR)$(bindir)"
	@list='$(bin_PROGRAMS)'; test -n "$(bindir)" || list=; \
	for p in $$list; do echo "$$p $$p"; done | \
	sed 's/$(EXEEXT)$$//' | \
	while read p p1; do if test -f $$p; \
	  then echo "$$p"; echo "$$p"; else :; fi; \
	done | \
	sed -e 'p;s,.*/,,;n;h' -e 's|.*|.|' \
	    -e 'p;x;s,.*/,,;s/$(EXEEXT)$$//;$(transform);s/$$/$(EXEEXT)/' | \
	sed 'N;N;N;s,\n, ,g' | \
	$(AWK) 'BEGIN { files["."] = ""; dirs["."] = 1 } \
	  { d=$$3; if (dirs[d] != 1) { print "d", d; dirs[d] = 1 } \
	    if ($$2 == $$4) files[d] = files[d] " " $$1; \
	    else { print "f", $$3 "/" $$4, $$1; } } \
	  END { for (d in files) print "f", d, files[d] }' | \
	while read type dir files; do \
	    if test "$$dir" = .; then dir=; else dir=/$$dir; fi; \
	    test -z "$$files" || { \
	      echo " $(INSTALL_PROGRAM_ENV) $(INSTALL_PROGRAM) $$files '$(DESTDIR)$(bindir)$$dir'"; \
	      $(INSTALL_PROGRAM_ENV) $(INSTALL_PROGRAM) $$files "$(DESTDIR)$(bindir)$$dir" || exit $$?; \
	    } \
	; done

uninstall-binPROGRAMS:
	@$(NORMAL_UNINSTALL)
	@list='$(bin_PROGRAMS)'; test -n "$(bindir)" || list=; \
	files=`for p in $$list; do echo "$$p"; done | \
	  sed -e 'h;s,^.*/,,;s/$(EXEEXT)$$//;$(transform)' \
	      -e 's/$$/$(EXEEXT)/' `; \
	test -n "$$list" || exit 0; \
	echo " ( cd '$(DESTDIR)$(bindir)' && rm -f" $$files ")"; \
	cd "$(DESTDIR)$(bindir)" && rm -f $$files

clean-binPROGRAMS:
	-test -z "$(bin_PROGRAMS)" || rm -f $(bin_PROGRAMS)

clean-checkPROGRAMS:
	-test -z "$(check_PROGRAMS)" || rm -f $(check_PROGRAMS)

clean-noinstPROGRAMS:
	-test -z "$(noinst_PROGRAMS)" || rm -f $(noinst_PROGRAMS)
bitvect_test$(EXEEXT): $(bitvect_test_OBJECTS) $(bitvect_test_DEPENDENCIES) 
	@rm -f bitvect_test$(EXEEXT)
	$(LINK) $(bitvect_test_OBJECTS) $(bitvect_test_LDADD) $(LIBS)
combpath_test$(EXEEXT): $(combpath_test_OBJECTS) $(combpath_test_DEPENDENCIES) 
	@rm -f combpath_test$(EXEEXT)
	$(LINK) $(combpath_test_OBJECTS) $(combpath_test_LDADD) $(LIBS)
floatnum_test$(EXEEXT): $(floatnum_test_OBJECTS) $(floatnum_test_DEPENDENCIES) 
	@rm -f floatnum_test$(EXEEXT)
	$(LINK) $(floatnum_test_OBJECTS) $(floatnum_test_LDADD) $(LIBS)
genmacro$(EXEEXT): $(genmacro_OBJECTS) $(genmacro_DEPENDENCIES) 
	@rm -f genmacro$(EXEEXT)
	$(genmacro_LINK) $(genmacro_OBJECTS) $(genmacro_LDADD) $(LIBS)
genmodule$(EXEEXT): $(genmodule_OBJECTS) $(genmodule_DEPENDENCIES) 
	@rm -f genmodule$(EXEEXT)
	$(genmodule_LINK) $(genmodule_OBJECTS) $(genmodule_LDADD) $(LIBS)
genperf$(EXEEXT): $(genperf_OBJECTS) $(genperf_DEPENDENCIES) 
	@rm -f genperf$(EXEEXT)
	$(genperf_LINK) $(genperf_OBJECTS) $(genperf_LDADD) $(LIBS)
genstring$(EXEEXT): $(genstring_OBJECTS) $(genstring_DEPENDENCIES) 
	@rm -f genstring$(EXEEXT)
	$(genstring_LINK) $(genstring_OBJECTS) $(genstring_LDADD) $(LIBS)
genversion$(EXEEXT): $(genversion_OBJECTS) $(genversion_DEPENDENCIES) 
	@rm -f genversion$(EXEEXT)
	$(genversion_LINK) $(genversion_OBJECTS) $(genversion_LDADD) $(LIBS)
leb128_test$(EXEEXT): $(leb128_test_OBJECTS) $(leb128_test_DEPENDENCIES) 
	@rm -f leb128_test$(EXEEXT)
	$(LINK) $(leb128_test_OBJECTS) $(leb128_test_LDADD) $(LIBS)
re2c$(EXEEXT): $(re2c_OBJECTS) $(re2c_DEPENDENCIES) 
	@rm -f re2c$(EXEEXT)
	$(re2c_LINK) $(re2c_OBJECTS) $(re2c_LDADD) $(LIBS)
splitpath_test$(EXEEXT): $(splitpath_test_OBJECTS) $(splitpath_test_DEPENDENCIES) 
	@rm -f splitpath_test$(EXEEXT)
	$(LINK) $(splitpath_test_OBJECTS) $(splitpath_test_LDADD) $(LIBS)
test_hd$(EXEEXT): $(test_hd_OBJECTS) $(test_hd_DEPENDENCIES) 
	@rm -f test_hd$(EXEEXT)
	$(LINK) $(test_hd_OBJECTS) $(test_hd_LDADD) $(LIBS)
uncstring_test$(EXEEXT): $(uncstring_test_OBJECTS) $(uncstring_test_DEPENDENCIES) 
	@rm -f uncstring_test$(EXEEXT)
	$(LINK) $(uncstring_test_OBJECTS) $(uncstring_test_LDADD) $(LIBS)
vsyasm$(EXEEXT): $(vsyasm_OBJECTS) $(vsyasm_DEPENDENCIES) 
	@rm -f vsyasm$(EXEEXT)
	$(LINK) $(vsyasm_OBJECTS) $(vsyasm_LDADD) $(LIBS)
yasm$(EXEEXT): $(yasm_OBJECTS) $(yasm_DEPENDENCIES) 
	@rm -f yasm$(EXEEXT)
	$(LINK) $(yasm_OBJECTS) $(yasm_LDADD) $(LIBS)
ytasm$(EXEEXT): $(ytasm_OBJECTS) $(ytasm_DEPENDENCIES) 
	@rm -f ytasm$(EXEEXT)
	$(LINK) $(ytasm_OBJECTS) $(ytasm_LDADD) $(LIBS)

mostlyclean-compile:
	-rm -f *.$(OBJEXT)

distclean-compile:
	-rm -f *.tab.c

@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/assocdat.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/bc-align.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/bc-data.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/bc-incbin.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/bc-org.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/bc-reserve.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/bin-objfmt.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/bitvect.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/bitvect_test.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/bytecode.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/coff-objfmt.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/combpath_test.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/cpp-preproc.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/cv-dbgfmt.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/cv-symline.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/cv-type.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/dbg-objfmt.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/dwarf2-aranges.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/dwarf2-dbgfmt.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/dwarf2-info.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/dwarf2-line.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/elf-objfmt.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/elf-x86-amd64.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/elf-x86-x86.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/elf.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/errwarn.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/expr.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/file.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/floatnum.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/floatnum_test.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/gas-eval.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/gas-parse-intel.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/gas-parse.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/gas-parser.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/gas-preproc.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/gas-token.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/hamt.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/insn.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/intnum.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/inttree.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/lc3barch.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/lc3bbc.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/lc3bid.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/leb128_test.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/linemap.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/macho-objfmt.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/md5.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/mergesort.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/module.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/nasm-eval.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/nasm-listfmt.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/nasm-parse.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/nasm-parser.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/nasm-pp.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/nasm-preproc.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/nasm-token.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/nasmlib.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/null-dbgfmt.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/phash.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/raw-preproc.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/rdf-objfmt.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/section.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/splitpath_test.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/stabs-dbgfmt.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/strcasecmp.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/strsep.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/symrec.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/tasm-options.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/tasm.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/test_hd.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/uncstring_test.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/valparam.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/value.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/vsyasm.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/win64-except.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/x86arch.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/x86bc.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/x86cpu.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/x86expr.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/x86id.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/x86regtmod.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/xdf-objfmt.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/xmalloc.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/xstrdup.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/yasm-options.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/yasm.Po@am__quote@

.c.o:
@am__fastdepCC_TRUE@	$(COMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $<
@am__fastdepCC_TRUE@	$(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@	source='$<' object='$@' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@	$(COMPILE) -c $<

.c.obj:
@am__fastdepCC_TRUE@	$(COMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ `$(CYGPATH_W) '$<'`
@am__fastdepCC_TRUE@	$(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@	source='$<' object='$@' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@	$(COMPILE) -c `$(CYGPATH_W) '$<'`

x86arch.o: modules/arch/x86/x86arch.c
@am__fastdepCC_TRUE@	$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT x86arch.o -MD -MP -MF $(DEPDIR)/x86arch.Tpo -c -o x86arch.o `test -f 'modules/arch/x86/x86arch.c' || echo '$(srcdir)/'`modules/arch/x86/x86arch.c
@am__fastdepCC_TRUE@	$(am__mv) $(DEPDIR)/x86arch.Tpo $(DEPDIR)/x86arch.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@	source='modules/arch/x86/x86arch.c' object='x86arch.o' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@	$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o x86arch.o `test -f 'modules/arch/x86/x86arch.c' || echo '$(srcdir)/'`modules/arch/x86/x86arch.c

x86arch.obj: modules/arch/x86/x86arch.c
@am__fastdepCC_TRUE@	$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT x86arch.obj -MD -MP -MF $(DEPDIR)/x86arch.Tpo -c -o x86arch.obj `if test -f 'modules/arch/x86/x86arch.c'; then $(CYGPATH_W) 'modules/arch/x86/x86arch.c'; else $(CYGPATH_W) '$(srcdir)/modules/arch/x86/x86arch.c'; fi`
@am__fastdepCC_TRUE@	$(am__mv) $(DEPDIR)/x86arch.Tpo $(DEPDIR)/x86arch.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@	source='modules/arch/x86/x86arch.c' object='x86arch.obj' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@	$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o x86arch.obj `if test -f 'modules/arch/x86/x86arch.c'; then $(CYGPATH_W) 'modules/arch/x86/x86arch.c'; else $(CYGPATH_W) '$(srcdir)/modules/arch/x86/x86arch.c'; fi`

x86bc.o: modules/arch/x86/x86bc.c
@am__fastdepCC_TRUE@	$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT x86bc.o -MD -MP -MF $(DEPDIR)/x86bc.Tpo -c -o x86bc.o `test -f 'modules/arch/x86/x86bc.c' || echo '$(srcdir)/'`modules/arch/x86/x86bc.c
@am__fastdepCC_TRUE@	$(am__mv) $(DEPDIR)/x86bc.Tpo $(DEPDIR)/x86bc.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@	source='modules/arch/x86/x86bc.c' object='x86bc.o' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@	$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o x86bc.o `test -f 'modules/arch/x86/x86bc.c' || echo '$(srcdir)/'`modules/arch/x86/x86bc.c

x86bc.obj: modules/arch/x86/x86bc.c
@am__fastdepCC_TRUE@	$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT x86bc.obj -MD -MP -MF $(DEPDIR)/x86bc.Tpo -c -o x86bc.obj `if test -f 'modules/arch/x86/x86bc.c'; then $(CYGPATH_W) 'modules/arch/x86/x86bc.c'; else $(CYGPATH_W) '$(srcdir)/modules/arch/x86/x86bc.c'; fi`
@am__fastdepCC_TRUE@	$(am__mv) $(DEPDIR)/x86bc.Tpo $(DEPDIR)/x86bc.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@	source='modules/arch/x86/x86bc.c' object='x86bc.obj' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@	$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o x86bc.obj `if test -f 'modules/arch/x86/x86bc.c'; then $(CYGPATH_W) 'modules/arch/x86/x86bc.c'; else $(CYGPATH_W) '$(srcdir)/modules/arch/x86/x86bc.c'; fi`

x86expr.o: modules/arch/x86/x86expr.c
@am__fastdepCC_TRUE@	$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT x86expr.o -MD -MP -MF $(DEPDIR)/x86expr.Tpo -c -o x86expr.o `test -f 'modules/arch/x86/x86expr.c' || echo '$(srcdir)/'`modules/arch/x86/x86expr.c
@am__fastdepCC_TRUE@	$(am__mv) $(DEPDIR)/x86expr.Tpo $(DEPDIR)/x86expr.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@	source='modules/arch/x86/x86expr.c' object='x86expr.o' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@	$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o x86expr.o `test -f 'modules/arch/x86/x86expr.c' || echo '$(srcdir)/'`modules/arch/x86/x86expr.c

x86expr.obj: modules/arch/x86/x86expr.c
@am__fastdepCC_TRUE@	$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT x86expr.obj -MD -MP -MF $(DEPDIR)/x86expr.Tpo -c -o x86expr.obj `if test -f 'modules/arch/x86/x86expr.c'; then $(CYGPATH_W) 'modules/arch/x86/x86expr.c'; else $(CYGPATH_W) '$(srcdir)/modules/arch/x86/x86expr.c'; fi`
@am__fastdepCC_TRUE@	$(am__mv) $(DEPDIR)/x86expr.Tpo $(DEPDIR)/x86expr.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@	source='modules/arch/x86/x86expr.c' object='x86expr.obj' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@	$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o x86expr.obj `if test -f 'modules/arch/x86/x86expr.c'; then $(CYGPATH_W) 'modules/arch/x86/x86expr.c'; else $(CYGPATH_W) '$(srcdir)/modules/arch/x86/x86expr.c'; fi`

x86id.o: modules/arch/x86/x86id.c
@am__fastdepCC_TRUE@	$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT x86id.o -MD -MP -MF $(DEPDIR)/x86id.Tpo -c -o x86id.o `test -f 'modules/arch/x86/x86id.c' || echo '$(srcdir)/'`modules/arch/x86/x86id.c
@am__fastdepCC_TRUE@	$(am__mv) $(DEPDIR)/x86id.Tpo $(DEPDIR)/x86id.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@	source='modules/arch/x86/x86id.c' object='x86id.o' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@	$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o x86id.o `test -f 'modules/arch/x86/x86id.c' || echo '$(srcdir)/'`modules/arch/x86/x86id.c

x86id.obj: modules/arch/x86/x86id.c
@am__fastdepCC_TRUE@	$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT x86id.obj -MD -MP -MF $(DEPDIR)/x86id.Tpo -c -o x86id.obj `if test -f 'modules/arch/x86/x86id.c'; then $(CYGPATH_W) 'modules/arch/x86/x86id.c'; else $(CYGPATH_W) '$(srcdir)/modules/arch/x86/x86id.c'; fi`
@am__fastdepCC_TRUE@	$(am__mv) $(DEPDIR)/x86id.Tpo $(DEPDIR)/x86id.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@	source='modules/arch/x86/x86id.c' object='x86id.obj' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@	$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o x86id.obj `if test -f 'modules/arch/x86/x86id.c'; then $(CYGPATH_W) 'modules/arch/x86/x86id.c'; else $(CYGPATH_W) '$(srcdir)/modules/arch/x86/x86id.c'; fi`

lc3barch.o: modules/arch/lc3b/lc3barch.c
@am__fastdepCC_TRUE@	$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT lc3barch.o -MD -MP -MF $(DEPDIR)/lc3barch.Tpo -c -o lc3barch.o `test -f 'modules/arch/lc3b/lc3barch.c' || echo '$(srcdir)/'`modules/arch/lc3b/lc3barch.c
@am__fastdepCC_TRUE@	$(am__mv) $(DEPDIR)/lc3barch.Tpo $(DEPDIR)/lc3barch.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@	source='modules/arch/lc3b/lc3barch.c' object='lc3barch.o' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@	$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o lc3barch.o `test -f 'modules/arch/lc3b/lc3barch.c' || echo '$(srcdir)/'`modules/arch/lc3b/lc3barch.c

lc3barch.obj: modules/arch/lc3b/lc3barch.c
@am__fastdepCC_TRUE@	$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT lc3barch.obj -MD -MP -MF $(DEPDIR)/lc3barch.Tpo -c -o lc3barch.obj `if test -f 'modules/arch/lc3b/lc3barch.c'; then $(CYGPATH_W) 'modules/arch/lc3b/lc3barch.c'; else $(CYGPATH_W) '$(srcdir)/modules/arch/lc3b/lc3barch.c'; fi`
@am__fastdepCC_TRUE@	$(am__mv) $(DEPDIR)/lc3barch.Tpo $(DEPDIR)/lc3barch.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@	source='modules/arch/lc3b/lc3barch.c' object='lc3barch.obj' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@	$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o lc3barch.obj `if test -f 'modules/arch/lc3b/lc3barch.c'; then $(CYGPATH_W) 'modules/arch/lc3b/lc3barch.c'; else $(CYGPATH_W) '$(srcdir)/modules/arch/lc3b/lc3barch.c'; fi`

lc3bbc.o: modules/arch/lc3b/lc3bbc.c
@am__fastdepCC_TRUE@	$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT lc3bbc.o -MD -MP -MF $(DEPDIR)/lc3bbc.Tpo -c -o lc3bbc.o `test -f 'modules/arch/lc3b/lc3bbc.c' || echo '$(srcdir)/'`modules/arch/lc3b/lc3bbc.c
@am__fastdepCC_TRUE@	$(am__mv) $(DEPDIR)/lc3bbc.Tpo $(DEPDIR)/lc3bbc.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@	source='modules/arch/lc3b/lc3bbc.c' object='lc3bbc.o' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@	$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o lc3bbc.o `test -f 'modules/arch/lc3b/lc3bbc.c' || echo '$(srcdir)/'`modules/arch/lc3b/lc3bbc.c

lc3bbc.obj: modules/arch/lc3b/lc3bbc.c
@am__fastdepCC_TRUE@	$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT lc3bbc.obj -MD -MP -MF $(DEPDIR)/lc3bbc.Tpo -c -o lc3bbc.obj `if test -f 'modules/arch/lc3b/lc3bbc.c'; then $(CYGPATH_W) 'modules/arch/lc3b/lc3bbc.c'; else $(CYGPATH_W) '$(srcdir)/modules/arch/lc3b/lc3bbc.c'; fi`
@am__fastdepCC_TRUE@	$(am__mv) $(DEPDIR)/lc3bbc.Tpo $(DEPDIR)/lc3bbc.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@	source='modules/arch/lc3b/lc3bbc.c' object='lc3bbc.obj' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@	$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o lc3bbc.obj `if test -f 'modules/arch/lc3b/lc3bbc.c'; then $(CYGPATH_W) 'modules/arch/lc3b/lc3bbc.c'; else $(CYGPATH_W) '$(srcdir)/modules/arch/lc3b/lc3bbc.c'; fi`

nasm-listfmt.o: modules/listfmts/nasm/nasm-listfmt.c
@am__fastdepCC_TRUE@	$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT nasm-listfmt.o -MD -MP -MF $(DEPDIR)/nasm-listfmt.Tpo -c -o nasm-listfmt.o `test -f 'modules/listfmts/nasm/nasm-listfmt.c' || echo '$(srcdir)/'`modules/listfmts/nasm/nasm-listfmt.c
@am__fastdepCC_TRUE@	$(am__mv) $(DEPDIR)/nasm-listfmt.Tpo $(DEPDIR)/nasm-listfmt.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@	source='modules/listfmts/nasm/nasm-listfmt.c' object='nasm-listfmt.o' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@	$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o nasm-listfmt.o `test -f 'modules/listfmts/nasm/nasm-listfmt.c' || echo '$(srcdir)/'`modules/listfmts/nasm/nasm-listfmt.c

nasm-listfmt.obj: modules/listfmts/nasm/nasm-listfmt.c
@am__fastdepCC_TRUE@	$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT nasm-listfmt.obj -MD -MP -MF $(DEPDIR)/nasm-listfmt.Tpo -c -o nasm-listfmt.obj `if test -f 'modules/listfmts/nasm/nasm-listfmt.c'; then $(CYGPATH_W) 'modules/listfmts/nasm/nasm-listfmt.c'; else $(CYGPATH_W) '$(srcdir)/modules/listfmts/nasm/nasm-listfmt.c'; fi`
@am__fastdepCC_TRUE@	$(am__mv) $(DEPDIR)/nasm-listfmt.Tpo $(DEPDIR)/nasm-listfmt.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@	source='modules/listfmts/nasm/nasm-listfmt.c' object='nasm-listfmt.obj' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@	$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o nasm-listfmt.obj `if test -f 'modules/listfmts/nasm/nasm-listfmt.c'; then $(CYGPATH_W) 'modules/listfmts/nasm/nasm-listfmt.c'; else $(CYGPATH_W) '$(srcdir)/modules/listfmts/nasm/nasm-listfmt.c'; fi`

gas-parser.o: modules/parsers/gas/gas-parser.c
@am__fastdepCC_TRUE@	$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT gas-parser.o -MD -MP -MF $(DEPDIR)/gas-parser.Tpo -c -o gas-parser.o `test -f 'modules/parsers/gas/gas-parser.c' || echo '$(srcdir)/'`modules/parsers/gas/gas-parser.c
@am__fastdepCC_TRUE@	$(am__mv) $(DEPDIR)/gas-parser.Tpo $(DEPDIR)/gas-parser.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@	source='modules/parsers/gas/gas-parser.c' object='gas-parser.o' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@	$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o gas-parser.o `test -f 'modules/parsers/gas/gas-parser.c' || echo '$(srcdir)/'`modules/parsers/gas/gas-parser.c

gas-parser.obj: modules/parsers/gas/gas-parser.c
@am__fastdepCC_TRUE@	$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT gas-parser.obj -MD -MP -MF $(DEPDIR)/gas-parser.Tpo -c -o gas-parser.obj `if test -f 'modules/parsers/gas/gas-parser.c'; then $(CYGPATH_W) 'modules/parsers/gas/gas-parser.c'; else $(CYGPATH_W) '$(srcdir)/modules/parsers/gas/gas-parser.c'; fi`
@am__fastdepCC_TRUE@	$(am__mv) $(DEPDIR)/gas-parser.Tpo $(DEPDIR)/gas-parser.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@	source='modules/parsers/gas/gas-parser.c' object='gas-parser.obj' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@	$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o gas-parser.obj `if test -f 'modules/parsers/gas/gas-parser.c'; then $(CYGPATH_W) 'modules/parsers/gas/gas-parser.c'; else $(CYGPATH_W) '$(srcdir)/modules/parsers/gas/gas-parser.c'; fi`

gas-parse.o: modules/parsers/gas/gas-parse.c
@am__fastdepCC_TRUE@	$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT gas-parse.o -MD -MP -MF $(DEPDIR)/gas-parse.Tpo -c -o gas-parse.o `test -f 'modules/parsers/gas/gas-parse.c' || echo '$(srcdir)/'`modules/parsers/gas/gas-parse.c
@am__fastdepCC_TRUE@	$(am__mv) $(DEPDIR)/gas-parse.Tpo $(DEPDIR)/gas-parse.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@	source='modules/parsers/gas/gas-parse.c' object='gas-parse.o' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@	$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o gas-parse.o `test -f 'modules/parsers/gas/gas-parse.c' || echo '$(srcdir)/'`modules/parsers/gas/gas-parse.c

gas-parse.obj: modules/parsers/gas/gas-parse.c
@am__fastdepCC_TRUE@	$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT gas-parse.obj -MD -MP -MF $(DEPDIR)/gas-parse.Tpo -c -o gas-parse.obj `if test -f 'modules/parsers/gas/gas-parse.c'; then $(CYGPATH_W) 'modules/parsers/gas/gas-parse.c'; else $(CYGPATH_W) '$(srcdir)/modules/parsers/gas/gas-parse.c'; fi`
@am__fastdepCC_TRUE@	$(am__mv) $(DEPDIR)/gas-parse.Tpo $(DEPDIR)/gas-parse.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@	source='modules/parsers/gas/gas-parse.c' object='gas-parse.obj' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@	$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o gas-parse.obj `if test -f 'modules/parsers/gas/gas-parse.c'; then $(CYGPATH_W) 'modules/parsers/gas/gas-parse.c'; else $(CYGPATH_W) '$(srcdir)/modules/parsers/gas/gas-parse.c'; fi`

gas-parse-intel.o: modules/parsers/gas/gas-parse-intel.c
@am__fastdepCC_TRUE@	$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT gas-parse-intel.o -MD -MP -MF $(DEPDIR)/gas-parse-intel.Tpo -c -o gas-parse-intel.o `test -f 'modules/parsers/gas/gas-parse-intel.c' || echo '$(srcdir)/'`modules/parsers/gas/gas-parse-intel.c
@am__fastdepCC_TRUE@	$(am__mv) $(DEPDIR)/gas-parse-intel.Tpo $(DEPDIR)/gas-parse-intel.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@	source='modules/parsers/gas/gas-parse-intel.c' object='gas-parse-intel.o' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@	$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o gas-parse-intel.o `test -f 'modules/parsers/gas/gas-parse-intel.c' || echo '$(srcdir)/'`modules/parsers/gas/gas-parse-intel.c

gas-parse-intel.obj: modules/parsers/gas/gas-parse-intel.c
@am__fastdepCC_TRUE@	$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT gas-parse-intel.obj -MD -MP -MF $(DEPDIR)/gas-parse-intel.Tpo -c -o gas-parse-intel.obj `if test -f 'modules/parsers/gas/gas-parse-intel.c'; then $(CYGPATH_W) 'modules/parsers/gas/gas-parse-intel.c'; else $(CYGPATH_W) '$(srcdir)/modules/parsers/gas/gas-parse-intel.c'; fi`
@am__fastdepCC_TRUE@	$(am__mv) $(DEPDIR)/gas-parse-intel.Tpo $(DEPDIR)/gas-parse-intel.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@	source='modules/parsers/gas/gas-parse-intel.c' object='gas-parse-intel.obj' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@	$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o gas-parse-intel.obj `if test -f 'modules/parsers/gas/gas-parse-intel.c'; then $(CYGPATH_W) 'modules/parsers/gas/gas-parse-intel.c'; else $(CYGPATH_W) '$(srcdir)/modules/parsers/gas/gas-parse-intel.c'; fi`

nasm-parser.o: modules/parsers/nasm/nasm-parser.c
@am__fastdepCC_TRUE@	$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT nasm-parser.o -MD -MP -MF $(DEPDIR)/nasm-parser.Tpo -c -o nasm-parser.o `test -f 'modules/parsers/nasm/nasm-parser.c' || echo '$(srcdir)/'`modules/parsers/nasm/nasm-parser.c
@am__fastdepCC_TRUE@	$(am__mv) $(DEPDIR)/nasm-parser.Tpo $(DEPDIR)/nasm-parser.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@	source='modules/parsers/nasm/nasm-parser.c' object='nasm-parser.o' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@	$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o nasm-parser.o `test -f 'modules/parsers/nasm/nasm-parser.c' || echo '$(srcdir)/'`modules/parsers/nasm/nasm-parser.c

nasm-parser.obj: modules/parsers/nasm/nasm-parser.c
@am__fastdepCC_TRUE@	$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT nasm-parser.obj -MD -MP -MF $(DEPDIR)/nasm-parser.Tpo -c -o nasm-parser.obj `if test -f 'modules/parsers/nasm/nasm-parser.c'; then $(CYGPATH_W) 'modules/parsers/nasm/nasm-parser.c'; else $(CYGPATH_W) '$(srcdir)/modules/parsers/nasm/nasm-parser.c'; fi`
@am__fastdepCC_TRUE@	$(am__mv) $(DEPDIR)/nasm-parser.Tpo $(DEPDIR)/nasm-parser.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@	source='modules/parsers/nasm/nasm-parser.c' object='nasm-parser.obj' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@	$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o nasm-parser.obj `if test -f 'modules/parsers/nasm/nasm-parser.c'; then $(CYGPATH_W) 'modules/parsers/nasm/nasm-parser.c'; else $(CYGPATH_W) '$(srcdir)/modules/parsers/nasm/nasm-parser.c'; fi`

nasm-parse.o: modules/parsers/nasm/nasm-parse.c
@am__fastdepCC_TRUE@	$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT nasm-parse.o -MD -MP -MF $(DEPDIR)/nasm-parse.Tpo -c -o nasm-parse.o `test -f 'modules/parsers/nasm/nasm-parse.c' || echo '$(srcdir)/'`modules/parsers/nasm/nasm-parse.c
@am__fastdepCC_TRUE@	$(am__mv) $(DEPDIR)/nasm-parse.Tpo $(DEPDIR)/nasm-parse.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@	source='modules/parsers/nasm/nasm-parse.c' object='nasm-parse.o' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@	$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o nasm-parse.o `test -f 'modules/parsers/nasm/nasm-parse.c' || echo '$(srcdir)/'`modules/parsers/nasm/nasm-parse.c

nasm-parse.obj: modules/parsers/nasm/nasm-parse.c
@am__fastdepCC_TRUE@	$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT nasm-parse.obj -MD -MP -MF $(DEPDIR)/nasm-parse.Tpo -c -o nasm-parse.obj `if test -f 'modules/parsers/nasm/nasm-parse.c'; then $(CYGPATH_W) 'modules/parsers/nasm/nasm-parse.c'; else $(CYGPATH_W) '$(srcdir)/modules/parsers/nasm/nasm-parse.c'; fi`
@am__fastdepCC_TRUE@	$(am__mv) $(DEPDIR)/nasm-parse.Tpo $(DEPDIR)/nasm-parse.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@	source='modules/parsers/nasm/nasm-parse.c' object='nasm-parse.obj' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@	$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o nasm-parse.obj `if test -f 'modules/parsers/nasm/nasm-parse.c'; then $(CYGPATH_W) 'modules/parsers/nasm/nasm-parse.c'; else $(CYGPATH_W) '$(srcdir)/modules/parsers/nasm/nasm-parse.c'; fi`

nasm-preproc.o: modules/preprocs/nasm/nasm-preproc.c
@am__fastdepCC_TRUE@	$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT nasm-preproc.o -MD -MP -MF $(DEPDIR)/nasm-preproc.Tpo -c -o nasm-preproc.o `test -f 'modules/preprocs/nasm/nasm-preproc.c' || echo '$(srcdir)/'`modules/preprocs/nasm/nasm-preproc.c
@am__fastdepCC_TRUE@	$(am__mv) $(DEPDIR)/nasm-preproc.Tpo $(DEPDIR)/nasm-preproc.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@	source='modules/preprocs/nasm/nasm-preproc.c' object='nasm-preproc.o' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@	$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o nasm-preproc.o `test -f 'modules/preprocs/nasm/nasm-preproc.c' || echo '$(srcdir)/'`modules/preprocs/nasm/nasm-preproc.c

nasm-preproc.obj: modules/preprocs/nasm/nasm-preproc.c
@am__fastdepCC_TRUE@	$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT nasm-preproc.obj -MD -MP -MF $(DEPDIR)/nasm-preproc.Tpo -c -o nasm-preproc.obj `if test -f 'modules/preprocs/nasm/nasm-preproc.c'; then $(CYGPATH_W) 'modules/preprocs/nasm/nasm-preproc.c'; else $(CYGPATH_W) '$(srcdir)/modules/preprocs/nasm/nasm-preproc.c'; fi`
@am__fastdepCC_TRUE@	$(am__mv) $(DEPDIR)/nasm-preproc.Tpo $(DEPDIR)/nasm-preproc.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@	source='modules/preprocs/nasm/nasm-preproc.c' object='nasm-preproc.obj' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@	$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o nasm-preproc.obj `if test -f 'modules/preprocs/nasm/nasm-preproc.c'; then $(CYGPATH_W) 'modules/preprocs/nasm/nasm-preproc.c'; else $(CYGPATH_W) '$(srcdir)/modules/preprocs/nasm/nasm-preproc.c'; fi`

nasm-pp.o: modules/preprocs/nasm/nasm-pp.c
@am__fastdepCC_TRUE@	$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT nasm-pp.o -MD -MP -MF $(DEPDIR)/nasm-pp.Tpo -c -o nasm-pp.o `test -f 'modules/preprocs/nasm/nasm-pp.c' || echo '$(srcdir)/'`modules/preprocs/nasm/nasm-pp.c
@am__fastdepCC_TRUE@	$(am__mv) $(DEPDIR)/nasm-pp.Tpo $(DEPDIR)/nasm-pp.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@	source='modules/preprocs/nasm/nasm-pp.c' object='nasm-pp.o' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@	$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o nasm-pp.o `test -f 'modules/preprocs/nasm/nasm-pp.c' || echo '$(srcdir)/'`modules/preprocs/nasm/nasm-pp.c

nasm-pp.obj: modules/preprocs/nasm/nasm-pp.c
@am__fastdepCC_TRUE@	$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT nasm-pp.obj -MD -MP -MF $(DEPDIR)/nasm-pp.Tpo -c -o nasm-pp.obj `if test -f 'modules/preprocs/nasm/nasm-pp.c'; then $(CYGPATH_W) 'modules/preprocs/nasm/nasm-pp.c'; else $(CYGPATH_W) '$(srcdir)/modules/preprocs/nasm/nasm-pp.c'; fi`
@am__fastdepCC_TRUE@	$(am__mv) $(DEPDIR)/nasm-pp.Tpo $(DEPDIR)/nasm-pp.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@	source='modules/preprocs/nasm/nasm-pp.c' object='nasm-pp.obj' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@	$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o nasm-pp.obj `if test -f 'modules/preprocs/nasm/nasm-pp.c'; then $(CYGPATH_W) 'modules/preprocs/nasm/nasm-pp.c'; else $(CYGPATH_W) '$(srcdir)/modules/preprocs/nasm/nasm-pp.c'; fi`

nasmlib.o: modules/preprocs/nasm/nasmlib.c
@am__fastdepCC_TRUE@	$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT nasmlib.o -MD -MP -MF $(DEPDIR)/nasmlib.Tpo -c -o nasmlib.o `test -f 'modules/preprocs/nasm/nasmlib.c' || echo '$(srcdir)/'`modules/preprocs/nasm/nasmlib.c
@am__fastdepCC_TRUE@	$(am__mv) $(DEPDIR)/nasmlib.Tpo $(DEPDIR)/nasmlib.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@	source='modules/preprocs/nasm/nasmlib.c' object='nasmlib.o' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@	$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o nasmlib.o `test -f 'modules/preprocs/nasm/nasmlib.c' || echo '$(srcdir)/'`modules/preprocs/nasm/nasmlib.c

nasmlib.obj: modules/preprocs/nasm/nasmlib.c
@am__fastdepCC_TRUE@	$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT nasmlib.obj -MD -MP -MF $(DEPDIR)/nasmlib.Tpo -c -o nasmlib.obj `if test -f 'modules/preprocs/nasm/nasmlib.c'; then $(CYGPATH_W) 'modules/preprocs/nasm/nasmlib.c'; else $(CYGPATH_W) '$(srcdir)/modules/preprocs/nasm/nasmlib.c'; fi`
@am__fastdepCC_TRUE@	$(am__mv) $(DEPDIR)/nasmlib.Tpo $(DEPDIR)/nasmlib.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@	source='modules/preprocs/nasm/nasmlib.c' object='nasmlib.obj' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@	$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o nasmlib.obj `if test -f 'modules/preprocs/nasm/nasmlib.c'; then $(CYGPATH_W) 'modules/preprocs/nasm/nasmlib.c'; else $(CYGPATH_W) '$(srcdir)/modules/preprocs/nasm/nasmlib.c'; fi`

nasm-eval.o: modules/preprocs/nasm/nasm-eval.c
@am__fastdepCC_TRUE@	$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT nasm-eval.o -MD -MP -MF $(DEPDIR)/nasm-eval.Tpo -c -o nasm-eval.o `test -f 'modules/preprocs/nasm/nasm-eval.c' || echo '$(srcdir)/'`modules/preprocs/nasm/nasm-eval.c
@am__fastdepCC_TRUE@	$(am__mv) $(DEPDIR)/nasm-eval.Tpo $(DEPDIR)/nasm-eval.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@	source='modules/preprocs/nasm/nasm-eval.c' object='nasm-eval.o' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@	$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o nasm-eval.o `test -f 'modules/preprocs/nasm/nasm-eval.c' || echo '$(srcdir)/'`modules/preprocs/nasm/nasm-eval.c

nasm-eval.obj: modules/preprocs/nasm/nasm-eval.c
@am__fastdepCC_TRUE@	$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT nasm-eval.obj -MD -MP -MF $(DEPDIR)/nasm-eval.Tpo -c -o nasm-eval.obj `if test -f 'modules/preprocs/nasm/nasm-eval.c'; then $(CYGPATH_W) 'modules/preprocs/nasm/nasm-eval.c'; else $(CYGPATH_W) '$(srcdir)/modules/preprocs/nasm/nasm-eval.c'; fi`
@am__fastdepCC_TRUE@	$(am__mv) $(DEPDIR)/nasm-eval.Tpo $(DEPDIR)/nasm-eval.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@	source='modules/preprocs/nasm/nasm-eval.c' object='nasm-eval.obj' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@	$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o nasm-eval.obj `if test -f 'modules/preprocs/nasm/nasm-eval.c'; then $(CYGPATH_W) 'modules/preprocs/nasm/nasm-eval.c'; else $(CYGPATH_W) '$(srcdir)/modules/preprocs/nasm/nasm-eval.c'; fi`

raw-preproc.o: modules/preprocs/raw/raw-preproc.c
@am__fastdepCC_TRUE@	$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT raw-preproc.o -MD -MP -MF $(DEPDIR)/raw-preproc.Tpo -c -o raw-preproc.o `test -f 'modules/preprocs/raw/raw-preproc.c' || echo '$(srcdir)/'`modules/preprocs/raw/raw-preproc.c
@am__fastdepCC_TRUE@	$(am__mv) $(DEPDIR)/raw-preproc.Tpo $(DEPDIR)/raw-preproc.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@	source='modules/preprocs/raw/raw-preproc.c' object='raw-preproc.o' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@	$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o raw-preproc.o `test -f 'modules/preprocs/raw/raw-preproc.c' || echo '$(srcdir)/'`modules/preprocs/raw/raw-preproc.c

raw-preproc.obj: modules/preprocs/raw/raw-preproc.c
@am__fastdepCC_TRUE@	$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT raw-preproc.obj -MD -MP -MF $(DEPDIR)/raw-preproc.Tpo -c -o raw-preproc.obj `if test -f 'modules/preprocs/raw/raw-preproc.c'; then $(CYGPATH_W) 'modules/preprocs/raw/raw-preproc.c'; else $(CYGPATH_W) '$(srcdir)/modules/preprocs/raw/raw-preproc.c'; fi`
@am__fastdepCC_TRUE@	$(am__mv) $(DEPDIR)/raw-preproc.Tpo $(DEPDIR)/raw-preproc.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@	source='modules/preprocs/raw/raw-preproc.c' object='raw-preproc.obj' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@	$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o raw-preproc.obj `if test -f 'modules/preprocs/raw/raw-preproc.c'; then $(CYGPATH_W) 'modules/preprocs/raw/raw-preproc.c'; else $(CYGPATH_W) '$(srcdir)/modules/preprocs/raw/raw-preproc.c'; fi`

cpp-preproc.o: modules/preprocs/cpp/cpp-preproc.c
@am__fastdepCC_TRUE@	$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT cpp-preproc.o -MD -MP -MF $(DEPDIR)/cpp-preproc.Tpo -c -o cpp-preproc.o `test -f 'modules/preprocs/cpp/cpp-preproc.c' || echo '$(srcdir)/'`modules/preprocs/cpp/cpp-preproc.c
@am__fastdepCC_TRUE@	$(am__mv) $(DEPDIR)/cpp-preproc.Tpo $(DEPDIR)/cpp-preproc.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@	source='modules/preprocs/cpp/cpp-preproc.c' object='cpp-preproc.o' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@	$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o cpp-preproc.o `test -f 'modules/preprocs/cpp/cpp-preproc.c' || echo '$(srcdir)/'`modules/preprocs/cpp/cpp-preproc.c

cpp-preproc.obj: modules/preprocs/cpp/cpp-preproc.c
@am__fastdepCC_TRUE@	$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT cpp-preproc.obj -MD -MP -MF $(DEPDIR)/cpp-preproc.Tpo -c -o cpp-preproc.obj `if test -f 'modules/preprocs/cpp/cpp-preproc.c'; then $(CYGPATH_W) 'modules/preprocs/cpp/cpp-preproc.c'; else $(CYGPATH_W) '$(srcdir)/modules/preprocs/cpp/cpp-preproc.c'; fi`
@am__fastdepCC_TRUE@	$(am__mv) $(DEPDIR)/cpp-preproc.Tpo $(DEPDIR)/cpp-preproc.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@	source='modules/preprocs/cpp/cpp-preproc.c' object='cpp-preproc.obj' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@	$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o cpp-preproc.obj `if test -f 'modules/preprocs/cpp/cpp-preproc.c'; then $(CYGPATH_W) 'modules/preprocs/cpp/cpp-preproc.c'; else $(CYGPATH_W) '$(srcdir)/modules/preprocs/cpp/cpp-preproc.c'; fi`

gas-preproc.o: modules/preprocs/gas/gas-preproc.c
@am__fastdepCC_TRUE@	$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT gas-preproc.o -MD -MP -MF $(DEPDIR)/gas-preproc.Tpo -c -o gas-preproc.o `test -f 'modules/preprocs/gas/gas-preproc.c' || echo '$(srcdir)/'`modules/preprocs/gas/gas-preproc.c
@am__fastdepCC_TRUE@	$(am__mv) $(DEPDIR)/gas-preproc.Tpo $(DEPDIR)/gas-preproc.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@	source='modules/preprocs/gas/gas-preproc.c' object='gas-preproc.o' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@	$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o gas-preproc.o `test -f 'modules/preprocs/gas/gas-preproc.c' || echo '$(srcdir)/'`modules/preprocs/gas/gas-preproc.c

gas-preproc.obj: modules/preprocs/gas/gas-preproc.c
@am__fastdepCC_TRUE@	$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT gas-preproc.obj -MD -MP -MF $(DEPDIR)/gas-preproc.Tpo -c -o gas-preproc.obj `if test -f 'modules/preprocs/gas/gas-preproc.c'; then $(CYGPATH_W) 'modules/preprocs/gas/gas-preproc.c'; else $(CYGPATH_W) '$(srcdir)/modules/preprocs/gas/gas-preproc.c'; fi`
@am__fastdepCC_TRUE@	$(am__mv) $(DEPDIR)/gas-preproc.Tpo $(DEPDIR)/gas-preproc.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@	source='modules/preprocs/gas/gas-preproc.c' object='gas-preproc.obj' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@	$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o gas-preproc.obj `if test -f 'modules/preprocs/gas/gas-preproc.c'; then $(CYGPATH_W) 'modules/preprocs/gas/gas-preproc.c'; else $(CYGPATH_W) '$(srcdir)/modules/preprocs/gas/gas-preproc.c'; fi`

gas-eval.o: modules/preprocs/gas/gas-eval.c
@am__fastdepCC_TRUE@	$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT gas-eval.o -MD -MP -MF $(DEPDIR)/gas-eval.Tpo -c -o gas-eval.o `test -f 'modules/preprocs/gas/gas-eval.c' || echo '$(srcdir)/'`modules/preprocs/gas/gas-eval.c
@am__fastdepCC_TRUE@	$(am__mv) $(DEPDIR)/gas-eval.Tpo $(DEPDIR)/gas-eval.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@	source='modules/preprocs/gas/gas-eval.c' object='gas-eval.o' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@	$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o gas-eval.o `test -f 'modules/preprocs/gas/gas-eval.c' || echo '$(srcdir)/'`modules/preprocs/gas/gas-eval.c

gas-eval.obj: modules/preprocs/gas/gas-eval.c
@am__fastdepCC_TRUE@	$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT gas-eval.obj -MD -MP -MF $(DEPDIR)/gas-eval.Tpo -c -o gas-eval.obj `if test -f 'modules/preprocs/gas/gas-eval.c'; then $(CYGPATH_W) 'modules/preprocs/gas/gas-eval.c'; else $(CYGPATH_W) '$(srcdir)/modules/preprocs/gas/gas-eval.c'; fi`
@am__fastdepCC_TRUE@	$(am__mv) $(DEPDIR)/gas-eval.Tpo $(DEPDIR)/gas-eval.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@	source='modules/preprocs/gas/gas-eval.c' object='gas-eval.obj' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@	$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o gas-eval.obj `if test -f 'modules/preprocs/gas/gas-eval.c'; then $(CYGPATH_W) 'modules/preprocs/gas/gas-eval.c'; else $(CYGPATH_W) '$(srcdir)/modules/preprocs/gas/gas-eval.c'; fi`

cv-dbgfmt.o: modules/dbgfmts/codeview/cv-dbgfmt.c
@am__fastdepCC_TRUE@	$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT cv-dbgfmt.o -MD -MP -MF $(DEPDIR)/cv-dbgfmt.Tpo -c -o cv-dbgfmt.o `test -f 'modules/dbgfmts/codeview/cv-dbgfmt.c' || echo '$(srcdir)/'`modules/dbgfmts/codeview/cv-dbgfmt.c
@am__fastdepCC_TRUE@	$(am__mv) $(DEPDIR)/cv-dbgfmt.Tpo $(DEPDIR)/cv-dbgfmt.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@	source='modules/dbgfmts/codeview/cv-dbgfmt.c' object='cv-dbgfmt.o' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@	$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o cv-dbgfmt.o `test -f 'modules/dbgfmts/codeview/cv-dbgfmt.c' || echo '$(srcdir)/'`modules/dbgfmts/codeview/cv-dbgfmt.c

cv-dbgfmt.obj: modules/dbgfmts/codeview/cv-dbgfmt.c
@am__fastdepCC_TRUE@	$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT cv-dbgfmt.obj -MD -MP -MF $(DEPDIR)/cv-dbgfmt.Tpo -c -o cv-dbgfmt.obj `if test -f 'modules/dbgfmts/codeview/cv-dbgfmt.c'; then $(CYGPATH_W) 'modules/dbgfmts/codeview/cv-dbgfmt.c'; else $(CYGPATH_W) '$(srcdir)/modules/dbgfmts/codeview/cv-dbgfmt.c'; fi`
@am__fastdepCC_TRUE@	$(am__mv) $(DEPDIR)/cv-dbgfmt.Tpo $(DEPDIR)/cv-dbgfmt.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@	source='modules/dbgfmts/codeview/cv-dbgfmt.c' object='cv-dbgfmt.obj' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@	$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o cv-dbgfmt.obj `if test -f 'modules/dbgfmts/codeview/cv-dbgfmt.c'; then $(CYGPATH_W) 'modules/dbgfmts/codeview/cv-dbgfmt.c'; else $(CYGPATH_W) '$(srcdir)/modules/dbgfmts/codeview/cv-dbgfmt.c'; fi`

cv-symline.o: modules/dbgfmts/codeview/cv-symline.c
@am__fastdepCC_TRUE@	$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT cv-symline.o -MD -MP -MF $(DEPDIR)/cv-symline.Tpo -c -o cv-symline.o `test -f 'modules/dbgfmts/codeview/cv-symline.c' || echo '$(srcdir)/'`modules/dbgfmts/codeview/cv-symline.c
@am__fastdepCC_TRUE@	$(am__mv) $(DEPDIR)/cv-symline.Tpo $(DEPDIR)/cv-symline.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@	source='modules/dbgfmts/codeview/cv-symline.c' object='cv-symline.o' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@	$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o cv-symline.o `test -f 'modules/dbgfmts/codeview/cv-symline.c' || echo '$(srcdir)/'`modules/dbgfmts/codeview/cv-symline.c

cv-symline.obj: modules/dbgfmts/codeview/cv-symline.c
@am__fastdepCC_TRUE@	$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT cv-symline.obj -MD -MP -MF $(DEPDIR)/cv-symline.Tpo -c -o cv-symline.obj `if test -f 'modules/dbgfmts/codeview/cv-symline.c'; then $(CYGPATH_W) 'modules/dbgfmts/codeview/cv-symline.c'; else $(CYGPATH_W) '$(srcdir)/modules/dbgfmts/codeview/cv-symline.c'; fi`
@am__fastdepCC_TRUE@	$(am__mv) $(DEPDIR)/cv-symline.Tpo $(DEPDIR)/cv-symline.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@	source='modules/dbgfmts/codeview/cv-symline.c' object='cv-symline.obj' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@	$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o cv-symline.obj `if test -f 'modules/dbgfmts/codeview/cv-symline.c'; then $(CYGPATH_W) 'modules/dbgfmts/codeview/cv-symline.c'; else $(CYGPATH_W) '$(srcdir)/modules/dbgfmts/codeview/cv-symline.c'; fi`

cv-type.o: modules/dbgfmts/codeview/cv-type.c
@am__fastdepCC_TRUE@	$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT cv-type.o -MD -MP -MF $(DEPDIR)/cv-type.Tpo -c -o cv-type.o `test -f 'modules/dbgfmts/codeview/cv-type.c' || echo '$(srcdir)/'`modules/dbgfmts/codeview/cv-type.c
@am__fastdepCC_TRUE@	$(am__mv) $(DEPDIR)/cv-type.Tpo $(DEPDIR)/cv-type.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@	source='modules/dbgfmts/codeview/cv-type.c' object='cv-type.o' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@	$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o cv-type.o `test -f 'modules/dbgfmts/codeview/cv-type.c' || echo '$(srcdir)/'`modules/dbgfmts/codeview/cv-type.c

cv-type.obj: modules/dbgfmts/codeview/cv-type.c
@am__fastdepCC_TRUE@	$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT cv-type.obj -MD -MP -MF $(DEPDIR)/cv-type.Tpo -c -o cv-type.obj `if test -f 'modules/dbgfmts/codeview/cv-type.c'; then $(CYGPATH_W) 'modules/dbgfmts/codeview/cv-type.c'; else $(CYGPATH_W) '$(srcdir)/modules/dbgfmts/codeview/cv-type.c'; fi`
@am__fastdepCC_TRUE@	$(am__mv) $(DEPDIR)/cv-type.Tpo $(DEPDIR)/cv-type.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@	source='modules/dbgfmts/codeview/cv-type.c' object='cv-type.obj' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@	$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o cv-type.obj `if test -f 'modules/dbgfmts/codeview/cv-type.c'; then $(CYGPATH_W) 'modules/dbgfmts/codeview/cv-type.c'; else $(CYGPATH_W) '$(srcdir)/modules/dbgfmts/codeview/cv-type.c'; fi`

dwarf2-dbgfmt.o: modules/dbgfmts/dwarf2/dwarf2-dbgfmt.c
@am__fastdepCC_TRUE@	$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT dwarf2-dbgfmt.o -MD -MP -MF $(DEPDIR)/dwarf2-dbgfmt.Tpo -c -o dwarf2-dbgfmt.o `test -f 'modules/dbgfmts/dwarf2/dwarf2-dbgfmt.c' || echo '$(srcdir)/'`modules/dbgfmts/dwarf2/dwarf2-dbgfmt.c
@am__fastdepCC_TRUE@	$(am__mv) $(DEPDIR)/dwarf2-dbgfmt.Tpo $(DEPDIR)/dwarf2-dbgfmt.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@	source='modules/dbgfmts/dwarf2/dwarf2-dbgfmt.c' object='dwarf2-dbgfmt.o' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@	$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o dwarf2-dbgfmt.o `test -f 'modules/dbgfmts/dwarf2/dwarf2-dbgfmt.c' || echo '$(srcdir)/'`modules/dbgfmts/dwarf2/dwarf2-dbgfmt.c

dwarf2-dbgfmt.obj: modules/dbgfmts/dwarf2/dwarf2-dbgfmt.c
@am__fastdepCC_TRUE@	$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT dwarf2-dbgfmt.obj -MD -MP -MF $(DEPDIR)/dwarf2-dbgfmt.Tpo -c -o dwarf2-dbgfmt.obj `if test -f 'modules/dbgfmts/dwarf2/dwarf2-dbgfmt.c'; then $(CYGPATH_W) 'modules/dbgfmts/dwarf2/dwarf2-dbgfmt.c'; else $(CYGPATH_W) '$(srcdir)/modules/dbgfmts/dwarf2/dwarf2-dbgfmt.c'; fi`
@am__fastdepCC_TRUE@	$(am__mv) $(DEPDIR)/dwarf2-dbgfmt.Tpo $(DEPDIR)/dwarf2-dbgfmt.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@	source='modules/dbgfmts/dwarf2/dwarf2-dbgfmt.c' object='dwarf2-dbgfmt.obj' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@	$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o dwarf2-dbgfmt.obj `if test -f 'modules/dbgfmts/dwarf2/dwarf2-dbgfmt.c'; then $(CYGPATH_W) 'modules/dbgfmts/dwarf2/dwarf2-dbgfmt.c'; else $(CYGPATH_W) '$(srcdir)/modules/dbgfmts/dwarf2/dwarf2-dbgfmt.c'; fi`

dwarf2-line.o: modules/dbgfmts/dwarf2/dwarf2-line.c
@am__fastdepCC_TRUE@	$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT dwarf2-line.o -MD -MP -MF $(DEPDIR)/dwarf2-line.Tpo -c -o dwarf2-line.o `test -f 'modules/dbgfmts/dwarf2/dwarf2-line.c' || echo '$(srcdir)/'`modules/dbgfmts/dwarf2/dwarf2-line.c
@am__fastdepCC_TRUE@	$(am__mv) $(DEPDIR)/dwarf2-line.Tpo $(DEPDIR)/dwarf2-line.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@	source='modules/dbgfmts/dwarf2/dwarf2-line.c' object='dwarf2-line.o' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@	$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o dwarf2-line.o `test -f 'modules/dbgfmts/dwarf2/dwarf2-line.c' || echo '$(srcdir)/'`modules/dbgfmts/dwarf2/dwarf2-line.c

dwarf2-line.obj: modules/dbgfmts/dwarf2/dwarf2-line.c
@am__fastdepCC_TRUE@	$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT dwarf2-line.obj -MD -MP -MF $(DEPDIR)/dwarf2-line.Tpo -c -o dwarf2-line.obj `if test -f 'modules/dbgfmts/dwarf2/dwarf2-line.c'; then $(CYGPATH_W) 'modules/dbgfmts/dwarf2/dwarf2-line.c'; else $(CYGPATH_W) '$(srcdir)/modules/dbgfmts/dwarf2/dwarf2-line.c'; fi`
@am__fastdepCC_TRUE@	$(am__mv) $(DEPDIR)/dwarf2-line.Tpo $(DEPDIR)/dwarf2-line.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@	source='modules/dbgfmts/dwarf2/dwarf2-line.c' object='dwarf2-line.obj' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@	$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o dwarf2-line.obj `if test -f 'modules/dbgfmts/dwarf2/dwarf2-line.c'; then $(CYGPATH_W) 'modules/dbgfmts/dwarf2/dwarf2-line.c'; else $(CYGPATH_W) '$(srcdir)/modules/dbgfmts/dwarf2/dwarf2-line.c'; fi`

dwarf2-aranges.o: modules/dbgfmts/dwarf2/dwarf2-aranges.c
@am__fastdepCC_TRUE@	$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT dwarf2-aranges.o -MD -MP -MF $(DEPDIR)/dwarf2-aranges.Tpo -c -o dwarf2-aranges.o `test -f 'modules/dbgfmts/dwarf2/dwarf2-aranges.c' || echo '$(srcdir)/'`modules/dbgfmts/dwarf2/dwarf2-aranges.c
@am__fastdepCC_TRUE@	$(am__mv) $(DEPDIR)/dwarf2-aranges.Tpo $(DEPDIR)/dwarf2-aranges.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@	source='modules/dbgfmts/dwarf2/dwarf2-aranges.c' object='dwarf2-aranges.o' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@	$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o dwarf2-aranges.o `test -f 'modules/dbgfmts/dwarf2/dwarf2-aranges.c' || echo '$(srcdir)/'`modules/dbgfmts/dwarf2/dwarf2-aranges.c

dwarf2-aranges.obj: modules/dbgfmts/dwarf2/dwarf2-aranges.c
@am__fastdepCC_TRUE@	$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT dwarf2-aranges.obj -MD -MP -MF $(DEPDIR)/dwarf2-aranges.Tpo -c -o dwarf2-aranges.obj `if test -f 'modules/dbgfmts/dwarf2/dwarf2-aranges.c'; then $(CYGPATH_W) 'modules/dbgfmts/dwarf2/dwarf2-aranges.c'; else $(CYGPATH_W) '$(srcdir)/modules/dbgfmts/dwarf2/dwarf2-aranges.c'; fi`
@am__fastdepCC_TRUE@	$(am__mv) $(DEPDIR)/dwarf2-aranges.Tpo $(DEPDIR)/dwarf2-aranges.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@	source='modules/dbgfmts/dwarf2/dwarf2-aranges.c' object='dwarf2-aranges.obj' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@	$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o dwarf2-aranges.obj `if test -f 'modules/dbgfmts/dwarf2/dwarf2-aranges.c'; then $(CYGPATH_W) 'modules/dbgfmts/dwarf2/dwarf2-aranges.c'; else $(CYGPATH_W) '$(srcdir)/modules/dbgfmts/dwarf2/dwarf2-aranges.c'; fi`

dwarf2-info.o: modules/dbgfmts/dwarf2/dwarf2-info.c
@am__fastdepCC_TRUE@	$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT dwarf2-info.o -MD -MP -MF $(DEPDIR)/dwarf2-info.Tpo -c -o dwarf2-info.o `test -f 'modules/dbgfmts/dwarf2/dwarf2-info.c' || echo '$(srcdir)/'`modules/dbgfmts/dwarf2/dwarf2-info.c
@am__fastdepCC_TRUE@	$(am__mv) $(DEPDIR)/dwarf2-info.Tpo $(DEPDIR)/dwarf2-info.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@	source='modules/dbgfmts/dwarf2/dwarf2-info.c' object='dwarf2-info.o' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@	$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o dwarf2-info.o `test -f 'modules/dbgfmts/dwarf2/dwarf2-info.c' || echo '$(srcdir)/'`modules/dbgfmts/dwarf2/dwarf2-info.c

dwarf2-info.obj: modules/dbgfmts/dwarf2/dwarf2-info.c
@am__fastdepCC_TRUE@	$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT dwarf2-info.obj -MD -MP -MF $(DEPDIR)/dwarf2-info.Tpo -c -o dwarf2-info.obj `if test -f 'modules/dbgfmts/dwarf2/dwarf2-info.c'; then $(CYGPATH_W) 'modules/dbgfmts/dwarf2/dwarf2-info.c'; else $(CYGPATH_W) '$(srcdir)/modules/dbgfmts/dwarf2/dwarf2-info.c'; fi`
@am__fastdepCC_TRUE@	$(am__mv) $(DEPDIR)/dwarf2-info.Tpo $(DEPDIR)/dwarf2-info.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@	source='modules/dbgfmts/dwarf2/dwarf2-info.c' object='dwarf2-info.obj' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@	$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o dwarf2-info.obj `if test -f 'modules/dbgfmts/dwarf2/dwarf2-info.c'; then $(CYGPATH_W) 'modules/dbgfmts/dwarf2/dwarf2-info.c'; else $(CYGPATH_W) '$(srcdir)/modules/dbgfmts/dwarf2/dwarf2-info.c'; fi`

null-dbgfmt.o: modules/dbgfmts/null/null-dbgfmt.c
@am__fastdepCC_TRUE@	$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT null-dbgfmt.o -MD -MP -MF $(DEPDIR)/null-dbgfmt.Tpo -c -o null-dbgfmt.o `test -f 'modules/dbgfmts/null/null-dbgfmt.c' || echo '$(srcdir)/'`modules/dbgfmts/null/null-dbgfmt.c
@am__fastdepCC_TRUE@	$(am__mv) $(DEPDIR)/null-dbgfmt.Tpo $(DEPDIR)/null-dbgfmt.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@	source='modules/dbgfmts/null/null-dbgfmt.c' object='null-dbgfmt.o' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@	$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o null-dbgfmt.o `test -f 'modules/dbgfmts/null/null-dbgfmt.c' || echo '$(srcdir)/'`modules/dbgfmts/null/null-dbgfmt.c

null-dbgfmt.obj: modules/dbgfmts/null/null-dbgfmt.c
@am__fastdepCC_TRUE@	$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT null-dbgfmt.obj -MD -MP -MF $(DEPDIR)/null-dbgfmt.Tpo -c -o null-dbgfmt.obj `if test -f 'modules/dbgfmts/null/null-dbgfmt.c'; then $(CYGPATH_W) 'modules/dbgfmts/null/null-dbgfmt.c'; else $(CYGPATH_W) '$(srcdir)/modules/dbgfmts/null/null-dbgfmt.c'; fi`
@am__fastdepCC_TRUE@	$(am__mv) $(DEPDIR)/null-dbgfmt.Tpo $(DEPDIR)/null-dbgfmt.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@	source='modules/dbgfmts/null/null-dbgfmt.c' object='null-dbgfmt.obj' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@	$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o null-dbgfmt.obj `if test -f 'modules/dbgfmts/null/null-dbgfmt.c'; then $(CYGPATH_W) 'modules/dbgfmts/null/null-dbgfmt.c'; else $(CYGPATH_W) '$(srcdir)/modules/dbgfmts/null/null-dbgfmt.c'; fi`

stabs-dbgfmt.o: modules/dbgfmts/stabs/stabs-dbgfmt.c
@am__fastdepCC_TRUE@	$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT stabs-dbgfmt.o -MD -MP -MF $(DEPDIR)/stabs-dbgfmt.Tpo -c -o stabs-dbgfmt.o `test -f 'modules/dbgfmts/stabs/stabs-dbgfmt.c' || echo '$(srcdir)/'`modules/dbgfmts/stabs/stabs-dbgfmt.c
@am__fastdepCC_TRUE@	$(am__mv) $(DEPDIR)/stabs-dbgfmt.Tpo $(DEPDIR)/stabs-dbgfmt.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@	source='modules/dbgfmts/stabs/stabs-dbgfmt.c' object='stabs-dbgfmt.o' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@	$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o stabs-dbgfmt.o `test -f 'modules/dbgfmts/stabs/stabs-dbgfmt.c' || echo '$(srcdir)/'`modules/dbgfmts/stabs/stabs-dbgfmt.c

stabs-dbgfmt.obj: modules/dbgfmts/stabs/stabs-dbgfmt.c
@am__fastdepCC_TRUE@	$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT stabs-dbgfmt.obj -MD -MP -MF $(DEPDIR)/stabs-dbgfmt.Tpo -c -o stabs-dbgfmt.obj `if test -f 'modules/dbgfmts/stabs/stabs-dbgfmt.c'; then $(CYGPATH_W) 'modules/dbgfmts/stabs/stabs-dbgfmt.c'; else $(CYGPATH_W) '$(srcdir)/modules/dbgfmts/stabs/stabs-dbgfmt.c'; fi`
@am__fastdepCC_TRUE@	$(am__mv) $(DEPDIR)/stabs-dbgfmt.Tpo $(DEPDIR)/stabs-dbgfmt.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@	source='modules/dbgfmts/stabs/stabs-dbgfmt.c' object='stabs-dbgfmt.obj' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@	$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o stabs-dbgfmt.obj `if test -f 'modules/dbgfmts/stabs/stabs-dbgfmt.c'; then $(CYGPATH_W) 'modules/dbgfmts/stabs/stabs-dbgfmt.c'; else $(CYGPATH_W) '$(srcdir)/modules/dbgfmts/stabs/stabs-dbgfmt.c'; fi`

dbg-objfmt.o: modules/objfmts/dbg/dbg-objfmt.c
@am__fastdepCC_TRUE@	$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT dbg-objfmt.o -MD -MP -MF $(DEPDIR)/dbg-objfmt.Tpo -c -o dbg-objfmt.o `test -f 'modules/objfmts/dbg/dbg-objfmt.c' || echo '$(srcdir)/'`modules/objfmts/dbg/dbg-objfmt.c
@am__fastdepCC_TRUE@	$(am__mv) $(DEPDIR)/dbg-objfmt.Tpo $(DEPDIR)/dbg-objfmt.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@	source='modules/objfmts/dbg/dbg-objfmt.c' object='dbg-objfmt.o' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@	$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o dbg-objfmt.o `test -f 'modules/objfmts/dbg/dbg-objfmt.c' || echo '$(srcdir)/'`modules/objfmts/dbg/dbg-objfmt.c

dbg-objfmt.obj: modules/objfmts/dbg/dbg-objfmt.c
@am__fastdepCC_TRUE@	$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT dbg-objfmt.obj -MD -MP -MF $(DEPDIR)/dbg-objfmt.Tpo -c -o dbg-objfmt.obj `if test -f 'modules/objfmts/dbg/dbg-objfmt.c'; then $(CYGPATH_W) 'modules/objfmts/dbg/dbg-objfmt.c'; else $(CYGPATH_W) '$(srcdir)/modules/objfmts/dbg/dbg-objfmt.c'; fi`
@am__fastdepCC_TRUE@	$(am__mv) $(DEPDIR)/dbg-objfmt.Tpo $(DEPDIR)/dbg-objfmt.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@	source='modules/objfmts/dbg/dbg-objfmt.c' object='dbg-objfmt.obj' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@	$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o dbg-objfmt.obj `if test -f 'modules/objfmts/dbg/dbg-objfmt.c'; then $(CYGPATH_W) 'modules/objfmts/dbg/dbg-objfmt.c'; else $(CYGPATH_W) '$(srcdir)/modules/objfmts/dbg/dbg-objfmt.c'; fi`

bin-objfmt.o: modules/objfmts/bin/bin-objfmt.c
@am__fastdepCC_TRUE@	$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT bin-objfmt.o -MD -MP -MF $(DEPDIR)/bin-objfmt.Tpo -c -o bin-objfmt.o `test -f 'modules/objfmts/bin/bin-objfmt.c' || echo '$(srcdir)/'`modules/objfmts/bin/bin-objfmt.c
@am__fastdepCC_TRUE@	$(am__mv) $(DEPDIR)/bin-objfmt.Tpo $(DEPDIR)/bin-objfmt.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@	source='modules/objfmts/bin/bin-objfmt.c' object='bin-objfmt.o' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@	$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o bin-objfmt.o `test -f 'modules/objfmts/bin/bin-objfmt.c' || echo '$(srcdir)/'`modules/objfmts/bin/bin-objfmt.c

bin-objfmt.obj: modules/objfmts/bin/bin-objfmt.c
@am__fastdepCC_TRUE@	$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT bin-objfmt.obj -MD -MP -MF $(DEPDIR)/bin-objfmt.Tpo -c -o bin-objfmt.obj `if test -f 'modules/objfmts/bin/bin-objfmt.c'; then $(CYGPATH_W) 'modules/objfmts/bin/bin-objfmt.c'; else $(CYGPATH_W) '$(srcdir)/modules/objfmts/bin/bin-objfmt.c'; fi`
@am__fastdepCC_TRUE@	$(am__mv) $(DEPDIR)/bin-objfmt.Tpo $(DEPDIR)/bin-objfmt.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@	source='modules/objfmts/bin/bin-objfmt.c' object='bin-objfmt.obj' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@	$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o bin-objfmt.obj `if test -f 'modules/objfmts/bin/bin-objfmt.c'; then $(CYGPATH_W) 'modules/objfmts/bin/bin-objfmt.c'; else $(CYGPATH_W) '$(srcdir)/modules/objfmts/bin/bin-objfmt.c'; fi`

elf.o: modules/objfmts/elf/elf.c
@am__fastdepCC_TRUE@	$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT elf.o -MD -MP -MF $(DEPDIR)/elf.Tpo -c -o elf.o `test -f 'modules/objfmts/elf/elf.c' || echo '$(srcdir)/'`modules/objfmts/elf/elf.c
@am__fastdepCC_TRUE@	$(am__mv) $(DEPDIR)/elf.Tpo $(DEPDIR)/elf.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@	source='modules/objfmts/elf/elf.c' object='elf.o' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@	$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o elf.o `test -f 'modules/objfmts/elf/elf.c' || echo '$(srcdir)/'`modules/objfmts/elf/elf.c

elf.obj: modules/objfmts/elf/elf.c
@am__fastdepCC_TRUE@	$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT elf.obj -MD -MP -MF $(DEPDIR)/elf.Tpo -c -o elf.obj `if test -f 'modules/objfmts/elf/elf.c'; then $(CYGPATH_W) 'modules/objfmts/elf/elf.c'; else $(CYGPATH_W) '$(srcdir)/modules/objfmts/elf/elf.c'; fi`
@am__fastdepCC_TRUE@	$(am__mv) $(DEPDIR)/elf.Tpo $(DEPDIR)/elf.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@	source='modules/objfmts/elf/elf.c' object='elf.obj' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@	$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o elf.obj `if test -f 'modules/objfmts/elf/elf.c'; then $(CYGPATH_W) 'modules/objfmts/elf/elf.c'; else $(CYGPATH_W) '$(srcdir)/modules/objfmts/elf/elf.c'; fi`

elf-objfmt.o: modules/objfmts/elf/elf-objfmt.c
@am__fastdepCC_TRUE@	$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT elf-objfmt.o -MD -MP -MF $(DEPDIR)/elf-objfmt.Tpo -c -o elf-objfmt.o `test -f 'modules/objfmts/elf/elf-objfmt.c' || echo '$(srcdir)/'`modules/objfmts/elf/elf-objfmt.c
@am__fastdepCC_TRUE@	$(am__mv) $(DEPDIR)/elf-objfmt.Tpo $(DEPDIR)/elf-objfmt.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@	source='modules/objfmts/elf/elf-objfmt.c' object='elf-objfmt.o' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@	$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o elf-objfmt.o `test -f 'modules/objfmts/elf/elf-objfmt.c' || echo '$(srcdir)/'`modules/objfmts/elf/elf-objfmt.c

elf-objfmt.obj: modules/objfmts/elf/elf-objfmt.c
@am__fastdepCC_TRUE@	$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT elf-objfmt.obj -MD -MP -MF $(DEPDIR)/elf-objfmt.Tpo -c -o elf-objfmt.obj `if test -f 'modules/objfmts/elf/elf-objfmt.c'; then $(CYGPATH_W) 'modules/objfmts/elf/elf-objfmt.c'; else $(CYGPATH_W) '$(srcdir)/modules/objfmts/elf/elf-objfmt.c'; fi`
@am__fastdepCC_TRUE@	$(am__mv) $(DEPDIR)/elf-objfmt.Tpo $(DEPDIR)/elf-objfmt.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@	source='modules/objfmts/elf/elf-objfmt.c' object='elf-objfmt.obj' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@	$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o elf-objfmt.obj `if test -f 'modules/objfmts/elf/elf-objfmt.c'; then $(CYGPATH_W) 'modules/objfmts/elf/elf-objfmt.c'; else $(CYGPATH_W) '$(srcdir)/modules/objfmts/elf/elf-objfmt.c'; fi`

elf-x86-x86.o: modules/objfmts/elf/elf-x86-x86.c
@am__fastdepCC_TRUE@	$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT elf-x86-x86.o -MD -MP -MF $(DEPDIR)/elf-x86-x86.Tpo -c -o elf-x86-x86.o `test -f 'modules/objfmts/elf/elf-x86-x86.c' || echo '$(srcdir)/'`modules/objfmts/elf/elf-x86-x86.c
@am__fastdepCC_TRUE@	$(am__mv) $(DEPDIR)/elf-x86-x86.Tpo $(DEPDIR)/elf-x86-x86.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@	source='modules/objfmts/elf/elf-x86-x86.c' object='elf-x86-x86.o' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@	$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o elf-x86-x86.o `test -f 'modules/objfmts/elf/elf-x86-x86.c' || echo '$(srcdir)/'`modules/objfmts/elf/elf-x86-x86.c

elf-x86-x86.obj: modules/objfmts/elf/elf-x86-x86.c
@am__fastdepCC_TRUE@	$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT elf-x86-x86.obj -MD -MP -MF $(DEPDIR)/elf-x86-x86.Tpo -c -o elf-x86-x86.obj `if test -f 'modules/objfmts/elf/elf-x86-x86.c'; then $(CYGPATH_W) 'modules/objfmts/elf/elf-x86-x86.c'; else $(CYGPATH_W) '$(srcdir)/modules/objfmts/elf/elf-x86-x86.c'; fi`
@am__fastdepCC_TRUE@	$(am__mv) $(DEPDIR)/elf-x86-x86.Tpo $(DEPDIR)/elf-x86-x86.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@	source='modules/objfmts/elf/elf-x86-x86.c' object='elf-x86-x86.obj' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@	$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o elf-x86-x86.obj `if test -f 'modules/objfmts/elf/elf-x86-x86.c'; then $(CYGPATH_W) 'modules/objfmts/elf/elf-x86-x86.c'; else $(CYGPATH_W) '$(srcdir)/modules/objfmts/elf/elf-x86-x86.c'; fi`

elf-x86-amd64.o: modules/objfmts/elf/elf-x86-amd64.c
@am__fastdepCC_TRUE@	$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT elf-x86-amd64.o -MD -MP -MF $(DEPDIR)/elf-x86-amd64.Tpo -c -o elf-x86-amd64.o `test -f 'modules/objfmts/elf/elf-x86-amd64.c' || echo '$(srcdir)/'`modules/objfmts/elf/elf-x86-amd64.c
@am__fastdepCC_TRUE@	$(am__mv) $(DEPDIR)/elf-x86-amd64.Tpo $(DEPDIR)/elf-x86-amd64.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@	source='modules/objfmts/elf/elf-x86-amd64.c' object='elf-x86-amd64.o' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@	$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o elf-x86-amd64.o `test -f 'modules/objfmts/elf/elf-x86-amd64.c' || echo '$(srcdir)/'`modules/objfmts/elf/elf-x86-amd64.c

elf-x86-amd64.obj: modules/objfmts/elf/elf-x86-amd64.c
@am__fastdepCC_TRUE@	$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT elf-x86-amd64.obj -MD -MP -MF $(DEPDIR)/elf-x86-amd64.Tpo -c -o elf-x86-amd64.obj `if test -f 'modules/objfmts/elf/elf-x86-amd64.c'; then $(CYGPATH_W) 'modules/objfmts/elf/elf-x86-amd64.c'; else $(CYGPATH_W) '$(srcdir)/modules/objfmts/elf/elf-x86-amd64.c'; fi`
@am__fastdepCC_TRUE@	$(am__mv) $(DEPDIR)/elf-x86-amd64.Tpo $(DEPDIR)/elf-x86-amd64.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@	source='modules/objfmts/elf/elf-x86-amd64.c' object='elf-x86-amd64.obj' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@	$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o elf-x86-amd64.obj `if test -f 'modules/objfmts/elf/elf-x86-amd64.c'; then $(CYGPATH_W) 'modules/objfmts/elf/elf-x86-amd64.c'; else $(CYGPATH_W) '$(srcdir)/modules/objfmts/elf/elf-x86-amd64.c'; fi`

coff-objfmt.o: modules/objfmts/coff/coff-objfmt.c
@am__fastdepCC_TRUE@	$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT coff-objfmt.o -MD -MP -MF $(DEPDIR)/coff-objfmt.Tpo -c -o coff-objfmt.o `test -f 'modules/objfmts/coff/coff-objfmt.c' || echo '$(srcdir)/'`modules/objfmts/coff/coff-objfmt.c
@am__fastdepCC_TRUE@	$(am__mv) $(DEPDIR)/coff-objfmt.Tpo $(DEPDIR)/coff-objfmt.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@	source='modules/objfmts/coff/coff-objfmt.c' object='coff-objfmt.o' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@	$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o coff-objfmt.o `test -f 'modules/objfmts/coff/coff-objfmt.c' || echo '$(srcdir)/'`modules/objfmts/coff/coff-objfmt.c

coff-objfmt.obj: modules/objfmts/coff/coff-objfmt.c
@am__fastdepCC_TRUE@	$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT coff-objfmt.obj -MD -MP -MF $(DEPDIR)/coff-objfmt.Tpo -c -o coff-objfmt.obj `if test -f 'modules/objfmts/coff/coff-objfmt.c'; then $(CYGPATH_W) 'modules/objfmts/coff/coff-objfmt.c'; else $(CYGPATH_W) '$(srcdir)/modules/objfmts/coff/coff-objfmt.c'; fi`
@am__fastdepCC_TRUE@	$(am__mv) $(DEPDIR)/coff-objfmt.Tpo $(DEPDIR)/coff-objfmt.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@	source='modules/objfmts/coff/coff-objfmt.c' object='coff-objfmt.obj' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@	$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o coff-objfmt.obj `if test -f 'modules/objfmts/coff/coff-objfmt.c'; then $(CYGPATH_W) 'modules/objfmts/coff/coff-objfmt.c'; else $(CYGPATH_W) '$(srcdir)/modules/objfmts/coff/coff-objfmt.c'; fi`

win64-except.o: modules/objfmts/coff/win64-except.c
@am__fastdepCC_TRUE@	$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT win64-except.o -MD -MP -MF $(DEPDIR)/win64-except.Tpo -c -o win64-except.o `test -f 'modules/objfmts/coff/win64-except.c' || echo '$(srcdir)/'`modules/objfmts/coff/win64-except.c
@am__fastdepCC_TRUE@	$(am__mv) $(DEPDIR)/win64-except.Tpo $(DEPDIR)/win64-except.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@	source='modules/objfmts/coff/win64-except.c' object='win64-except.o' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@	$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o win64-except.o `test -f 'modules/objfmts/coff/win64-except.c' || echo '$(srcdir)/'`modules/objfmts/coff/win64-except.c

win64-except.obj: modules/objfmts/coff/win64-except.c
@am__fastdepCC_TRUE@	$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT win64-except.obj -MD -MP -MF $(DEPDIR)/win64-except.Tpo -c -o win64-except.obj `if test -f 'modules/objfmts/coff/win64-except.c'; then $(CYGPATH_W) 'modules/objfmts/coff/win64-except.c'; else $(CYGPATH_W) '$(srcdir)/modules/objfmts/coff/win64-except.c'; fi`
@am__fastdepCC_TRUE@	$(am__mv) $(DEPDIR)/win64-except.Tpo $(DEPDIR)/win64-except.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@	source='modules/objfmts/coff/win64-except.c' object='win64-except.obj' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@	$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o win64-except.obj `if test -f 'modules/objfmts/coff/win64-except.c'; then $(CYGPATH_W) 'modules/objfmts/coff/win64-except.c'; else $(CYGPATH_W) '$(srcdir)/modules/objfmts/coff/win64-except.c'; fi`

macho-objfmt.o: modules/objfmts/macho/macho-objfmt.c
@am__fastdepCC_TRUE@	$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT macho-objfmt.o -MD -MP -MF $(DEPDIR)/macho-objfmt.Tpo -c -o macho-objfmt.o `test -f 'modules/objfmts/macho/macho-objfmt.c' || echo '$(srcdir)/'`modules/objfmts/macho/macho-objfmt.c
@am__fastdepCC_TRUE@	$(am__mv) $(DEPDIR)/macho-objfmt.Tpo $(DEPDIR)/macho-objfmt.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@	source='modules/objfmts/macho/macho-objfmt.c' object='macho-objfmt.o' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@	$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o macho-objfmt.o `test -f 'modules/objfmts/macho/macho-objfmt.c' || echo '$(srcdir)/'`modules/objfmts/macho/macho-objfmt.c

macho-objfmt.obj: modules/objfmts/macho/macho-objfmt.c
@am__fastdepCC_TRUE@	$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT macho-objfmt.obj -MD -MP -MF $(DEPDIR)/macho-objfmt.Tpo -c -o macho-objfmt.obj `if test -f 'modules/objfmts/macho/macho-objfmt.c'; then $(CYGPATH_W) 'modules/objfmts/macho/macho-objfmt.c'; else $(CYGPATH_W) '$(srcdir)/modules/objfmts/macho/macho-objfmt.c'; fi`
@am__fastdepCC_TRUE@	$(am__mv) $(DEPDIR)/macho-objfmt.Tpo $(DEPDIR)/macho-objfmt.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@	source='modules/objfmts/macho/macho-objfmt.c' object='macho-objfmt.obj' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@	$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o macho-objfmt.obj `if test -f 'modules/objfmts/macho/macho-objfmt.c'; then $(CYGPATH_W) 'modules/objfmts/macho/macho-objfmt.c'; else $(CYGPATH_W) '$(srcdir)/modules/objfmts/macho/macho-objfmt.c'; fi`

rdf-objfmt.o: modules/objfmts/rdf/rdf-objfmt.c
@am__fastdepCC_TRUE@	$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT rdf-objfmt.o -MD -MP -MF $(DEPDIR)/rdf-objfmt.Tpo -c -o rdf-objfmt.o `test -f 'modules/objfmts/rdf/rdf-objfmt.c' || echo '$(srcdir)/'`modules/objfmts/rdf/rdf-objfmt.c
@am__fastdepCC_TRUE@	$(am__mv) $(DEPDIR)/rdf-objfmt.Tpo $(DEPDIR)/rdf-objfmt.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@	source='modules/objfmts/rdf/rdf-objfmt.c' object='rdf-objfmt.o' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@	$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o rdf-objfmt.o `test -f 'modules/objfmts/rdf/rdf-objfmt.c' || echo '$(srcdir)/'`modules/objfmts/rdf/rdf-objfmt.c

rdf-objfmt.obj: modules/objfmts/rdf/rdf-objfmt.c
@am__fastdepCC_TRUE@	$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT rdf-objfmt.obj -MD -MP -MF $(DEPDIR)/rdf-objfmt.Tpo -c -o rdf-objfmt.obj `if test -f 'modules/objfmts/rdf/rdf-objfmt.c'; then $(CYGPATH_W) 'modules/objfmts/rdf/rdf-objfmt.c'; else $(CYGPATH_W) '$(srcdir)/modules/objfmts/rdf/rdf-objfmt.c'; fi`
@am__fastdepCC_TRUE@	$(am__mv) $(DEPDIR)/rdf-objfmt.Tpo $(DEPDIR)/rdf-objfmt.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@	source='modules/objfmts/rdf/rdf-objfmt.c' object='rdf-objfmt.obj' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@	$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o rdf-objfmt.obj `if test -f 'modules/objfmts/rdf/rdf-objfmt.c'; then $(CYGPATH_W) 'modules/objfmts/rdf/rdf-objfmt.c'; else $(CYGPATH_W) '$(srcdir)/modules/objfmts/rdf/rdf-objfmt.c'; fi`

xdf-objfmt.o: modules/objfmts/xdf/xdf-objfmt.c
@am__fastdepCC_TRUE@	$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT xdf-objfmt.o -MD -MP -MF $(DEPDIR)/xdf-objfmt.Tpo -c -o xdf-objfmt.o `test -f 'modules/objfmts/xdf/xdf-objfmt.c' || echo '$(srcdir)/'`modules/objfmts/xdf/xdf-objfmt.c
@am__fastdepCC_TRUE@	$(am__mv) $(DEPDIR)/xdf-objfmt.Tpo $(DEPDIR)/xdf-objfmt.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@	source='modules/objfmts/xdf/xdf-objfmt.c' object='xdf-objfmt.o' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@	$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o xdf-objfmt.o `test -f 'modules/objfmts/xdf/xdf-objfmt.c' || echo '$(srcdir)/'`modules/objfmts/xdf/xdf-objfmt.c

xdf-objfmt.obj: modules/objfmts/xdf/xdf-objfmt.c
@am__fastdepCC_TRUE@	$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT xdf-objfmt.obj -MD -MP -MF $(DEPDIR)/xdf-objfmt.Tpo -c -o xdf-objfmt.obj `if test -f 'modules/objfmts/xdf/xdf-objfmt.c'; then $(CYGPATH_W) 'modules/objfmts/xdf/xdf-objfmt.c'; else $(CYGPATH_W) '$(srcdir)/modules/objfmts/xdf/xdf-objfmt.c'; fi`
@am__fastdepCC_TRUE@	$(am__mv) $(DEPDIR)/xdf-objfmt.Tpo $(DEPDIR)/xdf-objfmt.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@	source='modules/objfmts/xdf/xdf-objfmt.c' object='xdf-objfmt.obj' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@	$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o xdf-objfmt.obj `if test -f 'modules/objfmts/xdf/xdf-objfmt.c'; then $(CYGPATH_W) 'modules/objfmts/xdf/xdf-objfmt.c'; else $(CYGPATH_W) '$(srcdir)/modules/objfmts/xdf/xdf-objfmt.c'; fi`

assocdat.o: libyasm/assocdat.c
@am__fastdepCC_TRUE@	$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT assocdat.o -MD -MP -MF $(DEPDIR)/assocdat.Tpo -c -o assocdat.o `test -f 'libyasm/assocdat.c' || echo '$(srcdir)/'`libyasm/assocdat.c
@am__fastdepCC_TRUE@	$(am__mv) $(DEPDIR)/assocdat.Tpo $(DEPDIR)/assocdat.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@	source='libyasm/assocdat.c' object='assocdat.o' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@	$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o assocdat.o `test -f 'libyasm/assocdat.c' || echo '$(srcdir)/'`libyasm/assocdat.c

assocdat.obj: libyasm/assocdat.c
@am__fastdepCC_TRUE@	$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT assocdat.obj -MD -MP -MF $(DEPDIR)/assocdat.Tpo -c -o assocdat.obj `if test -f 'libyasm/assocdat.c'; then $(CYGPATH_W) 'libyasm/assocdat.c'; else $(CYGPATH_W) '$(srcdir)/libyasm/assocdat.c'; fi`
@am__fastdepCC_TRUE@	$(am__mv) $(DEPDIR)/assocdat.Tpo $(DEPDIR)/assocdat.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@	source='libyasm/assocdat.c' object='assocdat.obj' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@	$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o assocdat.obj `if test -f 'libyasm/assocdat.c'; then $(CYGPATH_W) 'libyasm/assocdat.c'; else $(CYGPATH_W) '$(srcdir)/libyasm/assocdat.c'; fi`

bitvect.o: libyasm/bitvect.c
@am__fastdepCC_TRUE@	$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT bitvect.o -MD -MP -MF $(DEPDIR)/bitvect.Tpo -c -o bitvect.o `test -f 'libyasm/bitvect.c' || echo '$(srcdir)/'`libyasm/bitvect.c
@am__fastdepCC_TRUE@	$(am__mv) $(DEPDIR)/bitvect.Tpo $(DEPDIR)/bitvect.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@	source='libyasm/bitvect.c' object='bitvect.o' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@	$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o bitvect.o `test -f 'libyasm/bitvect.c' || echo '$(srcdir)/'`libyasm/bitvect.c

bitvect.obj: libyasm/bitvect.c
@am__fastdepCC_TRUE@	$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT bitvect.obj -MD -MP -MF $(DEPDIR)/bitvect.Tpo -c -o bitvect.obj `if test -f 'libyasm/bitvect.c'; then $(CYGPATH_W) 'libyasm/bitvect.c'; else $(CYGPATH_W) '$(srcdir)/libyasm/bitvect.c'; fi`
@am__fastdepCC_TRUE@	$(am__mv) $(DEPDIR)/bitvect.Tpo $(DEPDIR)/bitvect.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@	source='libyasm/bitvect.c' object='bitvect.obj' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@	$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o bitvect.obj `if test -f 'libyasm/bitvect.c'; then $(CYGPATH_W) 'libyasm/bitvect.c'; else $(CYGPATH_W) '$(srcdir)/libyasm/bitvect.c'; fi`

bc-align.o: libyasm/bc-align.c
@am__fastdepCC_TRUE@	$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT bc-align.o -MD -MP -MF $(DEPDIR)/bc-align.Tpo -c -o bc-align.o `test -f 'libyasm/bc-align.c' || echo '$(srcdir)/'`libyasm/bc-align.c
@am__fastdepCC_TRUE@	$(am__mv) $(DEPDIR)/bc-align.Tpo $(DEPDIR)/bc-align.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@	source='libyasm/bc-align.c' object='bc-align.o' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@	$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o bc-align.o `test -f 'libyasm/bc-align.c' || echo '$(srcdir)/'`libyasm/bc-align.c

bc-align.obj: libyasm/bc-align.c
@am__fastdepCC_TRUE@	$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT bc-align.obj -MD -MP -MF $(DEPDIR)/bc-align.Tpo -c -o bc-align.obj `if test -f 'libyasm/bc-align.c'; then $(CYGPATH_W) 'libyasm/bc-align.c'; else $(CYGPATH_W) '$(srcdir)/libyasm/bc-align.c'; fi`
@am__fastdepCC_TRUE@	$(am__mv) $(DEPDIR)/bc-align.Tpo $(DEPDIR)/bc-align.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@	source='libyasm/bc-align.c' object='bc-align.obj' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@	$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o bc-align.obj `if test -f 'libyasm/bc-align.c'; then $(CYGPATH_W) 'libyasm/bc-align.c'; else $(CYGPATH_W) '$(srcdir)/libyasm/bc-align.c'; fi`

bc-data.o: libyasm/bc-data.c
@am__fastdepCC_TRUE@	$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT bc-data.o -MD -MP -MF $(DEPDIR)/bc-data.Tpo -c -o bc-data.o `test -f 'libyasm/bc-data.c' || echo '$(srcdir)/'`libyasm/bc-data.c
@am__fastdepCC_TRUE@	$(am__mv) $(DEPDIR)/bc-data.Tpo $(DEPDIR)/bc-data.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@	source='libyasm/bc-data.c' object='bc-data.o' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@	$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o bc-data.o `test -f 'libyasm/bc-data.c' || echo '$(srcdir)/'`libyasm/bc-data.c

bc-data.obj: libyasm/bc-data.c
@am__fastdepCC_TRUE@	$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT bc-data.obj -MD -MP -MF $(DEPDIR)/bc-data.Tpo -c -o bc-data.obj `if test -f 'libyasm/bc-data.c'; then $(CYGPATH_W) 'libyasm/bc-data.c'; else $(CYGPATH_W) '$(srcdir)/libyasm/bc-data.c'; fi`
@am__fastdepCC_TRUE@	$(am__mv) $(DEPDIR)/bc-data.Tpo $(DEPDIR)/bc-data.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@	source='libyasm/bc-data.c' object='bc-data.obj' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@	$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o bc-data.obj `if test -f 'libyasm/bc-data.c'; then $(CYGPATH_W) 'libyasm/bc-data.c'; else $(CYGPATH_W) '$(srcdir)/libyasm/bc-data.c'; fi`

bc-incbin.o: libyasm/bc-incbin.c
@am__fastdepCC_TRUE@	$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT bc-incbin.o -MD -MP -MF $(DEPDIR)/bc-incbin.Tpo -c -o bc-incbin.o `test -f 'libyasm/bc-incbin.c' || echo '$(srcdir)/'`libyasm/bc-incbin.c
@am__fastdepCC_TRUE@	$(am__mv) $(DEPDIR)/bc-incbin.Tpo $(DEPDIR)/bc-incbin.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@	source='libyasm/bc-incbin.c' object='bc-incbin.o' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@	$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o bc-incbin.o `test -f 'libyasm/bc-incbin.c' || echo '$(srcdir)/'`libyasm/bc-incbin.c

bc-incbin.obj: libyasm/bc-incbin.c
@am__fastdepCC_TRUE@	$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT bc-incbin.obj -MD -MP -MF $(DEPDIR)/bc-incbin.Tpo -c -o bc-incbin.obj `if test -f 'libyasm/bc-incbin.c'; then $(CYGPATH_W) 'libyasm/bc-incbin.c'; else $(CYGPATH_W) '$(srcdir)/libyasm/bc-incbin.c'; fi`
@am__fastdepCC_TRUE@	$(am__mv) $(DEPDIR)/bc-incbin.Tpo $(DEPDIR)/bc-incbin.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@	source='libyasm/bc-incbin.c' object='bc-incbin.obj' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@	$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o bc-incbin.obj `if test -f 'libyasm/bc-incbin.c'; then $(CYGPATH_W) 'libyasm/bc-incbin.c'; else $(CYGPATH_W) '$(srcdir)/libyasm/bc-incbin.c'; fi`

bc-org.o: libyasm/bc-org.c
@am__fastdepCC_TRUE@	$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT bc-org.o -MD -MP -MF $(DEPDIR)/bc-org.Tpo -c -o bc-org.o `test -f 'libyasm/bc-org.c' || echo '$(srcdir)/'`libyasm/bc-org.c
@am__fastdepCC_TRUE@	$(am__mv) $(DEPDIR)/bc-org.Tpo $(DEPDIR)/bc-org.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@	source='libyasm/bc-org.c' object='bc-org.o' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@	$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o bc-org.o `test -f 'libyasm/bc-org.c' || echo '$(srcdir)/'`libyasm/bc-org.c

bc-org.obj: libyasm/bc-org.c
@am__fastdepCC_TRUE@	$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT bc-org.obj -MD -MP -MF $(DEPDIR)/bc-org.Tpo -c -o bc-org.obj `if test -f 'libyasm/bc-org.c'; then $(CYGPATH_W) 'libyasm/bc-org.c'; else $(CYGPATH_W) '$(srcdir)/libyasm/bc-org.c'; fi`
@am__fastdepCC_TRUE@	$(am__mv) $(DEPDIR)/bc-org.Tpo $(DEPDIR)/bc-org.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@	source='libyasm/bc-org.c' object='bc-org.obj' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@	$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o bc-org.obj `if test -f 'libyasm/bc-org.c'; then $(CYGPATH_W) 'libyasm/bc-org.c'; else $(CYGPATH_W) '$(srcdir)/libyasm/bc-org.c'; fi`

bc-reserve.o: libyasm/bc-reserve.c
@am__fastdepCC_TRUE@	$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT bc-reserve.o -MD -MP -MF $(DEPDIR)/bc-reserve.Tpo -c -o bc-reserve.o `test -f 'libyasm/bc-reserve.c' || echo '$(srcdir)/'`libyasm/bc-reserve.c
@am__fastdepCC_TRUE@	$(am__mv) $(DEPDIR)/bc-reserve.Tpo $(DEPDIR)/bc-reserve.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@	source='libyasm/bc-reserve.c' object='bc-reserve.o' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@	$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o bc-reserve.o `test -f 'libyasm/bc-reserve.c' || echo '$(srcdir)/'`libyasm/bc-reserve.c

bc-reserve.obj: libyasm/bc-reserve.c
@am__fastdepCC_TRUE@	$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT bc-reserve.obj -MD -MP -MF $(DEPDIR)/bc-reserve.Tpo -c -o bc-reserve.obj `if test -f 'libyasm/bc-reserve.c'; then $(CYGPATH_W) 'libyasm/bc-reserve.c'; else $(CYGPATH_W) '$(srcdir)/libyasm/bc-reserve.c'; fi`
@am__fastdepCC_TRUE@	$(am__mv) $(DEPDIR)/bc-reserve.Tpo $(DEPDIR)/bc-reserve.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@	source='libyasm/bc-reserve.c' object='bc-reserve.obj' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@	$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o bc-reserve.obj `if test -f 'libyasm/bc-reserve.c'; then $(CYGPATH_W) 'libyasm/bc-reserve.c'; else $(CYGPATH_W) '$(srcdir)/libyasm/bc-reserve.c'; fi`

bytecode.o: libyasm/bytecode.c
@am__fastdepCC_TRUE@	$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT bytecode.o -MD -MP -MF $(DEPDIR)/bytecode.Tpo -c -o bytecode.o `test -f 'libyasm/bytecode.c' || echo '$(srcdir)/'`libyasm/bytecode.c
@am__fastdepCC_TRUE@	$(am__mv) $(DEPDIR)/bytecode.Tpo $(DEPDIR)/bytecode.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@	source='libyasm/bytecode.c' object='bytecode.o' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@	$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o bytecode.o `test -f 'libyasm/bytecode.c' || echo '$(srcdir)/'`libyasm/bytecode.c

bytecode.obj: libyasm/bytecode.c
@am__fastdepCC_TRUE@	$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT bytecode.obj -MD -MP -MF $(DEPDIR)/bytecode.Tpo -c -o bytecode.obj `if test -f 'libyasm/bytecode.c'; then $(CYGPATH_W) 'libyasm/bytecode.c'; else $(CYGPATH_W) '$(srcdir)/libyasm/bytecode.c'; fi`
@am__fastdepCC_TRUE@	$(am__mv) $(DEPDIR)/bytecode.Tpo $(DEPDIR)/bytecode.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@	source='libyasm/bytecode.c' object='bytecode.obj' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@	$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o bytecode.obj `if test -f 'libyasm/bytecode.c'; then $(CYGPATH_W) 'libyasm/bytecode.c'; else $(CYGPATH_W) '$(srcdir)/libyasm/bytecode.c'; fi`

errwarn.o: libyasm/errwarn.c
@am__fastdepCC_TRUE@	$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT errwarn.o -MD -MP -MF $(DEPDIR)/errwarn.Tpo -c -o errwarn.o `test -f 'libyasm/errwarn.c' || echo '$(srcdir)/'`libyasm/errwarn.c
@am__fastdepCC_TRUE@	$(am__mv) $(DEPDIR)/errwarn.Tpo $(DEPDIR)/errwarn.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@	source='libyasm/errwarn.c' object='errwarn.o' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@	$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o errwarn.o `test -f 'libyasm/errwarn.c' || echo '$(srcdir)/'`libyasm/errwarn.c

errwarn.obj: libyasm/errwarn.c
@am__fastdepCC_TRUE@	$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT errwarn.obj -MD -MP -MF $(DEPDIR)/errwarn.Tpo -c -o errwarn.obj `if test -f 'libyasm/errwarn.c'; then $(CYGPATH_W) 'libyasm/errwarn.c'; else $(CYGPATH_W) '$(srcdir)/libyasm/errwarn.c'; fi`
@am__fastdepCC_TRUE@	$(am__mv) $(DEPDIR)/errwarn.Tpo $(DEPDIR)/errwarn.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@	source='libyasm/errwarn.c' object='errwarn.obj' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@	$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o errwarn.obj `if test -f 'libyasm/errwarn.c'; then $(CYGPATH_W) 'libyasm/errwarn.c'; else $(CYGPATH_W) '$(srcdir)/libyasm/errwarn.c'; fi`

expr.o: libyasm/expr.c
@am__fastdepCC_TRUE@	$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT expr.o -MD -MP -MF $(DEPDIR)/expr.Tpo -c -o expr.o `test -f 'libyasm/expr.c' || echo '$(srcdir)/'`libyasm/expr.c
@am__fastdepCC_TRUE@	$(am__mv) $(DEPDIR)/expr.Tpo $(DEPDIR)/expr.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@	source='libyasm/expr.c' object='expr.o' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@	$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o expr.o `test -f 'libyasm/expr.c' || echo '$(srcdir)/'`libyasm/expr.c

expr.obj: libyasm/expr.c
@am__fastdepCC_TRUE@	$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT expr.obj -MD -MP -MF $(DEPDIR)/expr.Tpo -c -o expr.obj `if test -f 'libyasm/expr.c'; then $(CYGPATH_W) 'libyasm/expr.c'; else $(CYGPATH_W) '$(srcdir)/libyasm/expr.c'; fi`
@am__fastdepCC_TRUE@	$(am__mv) $(DEPDIR)/expr.Tpo $(DEPDIR)/expr.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@	source='libyasm/expr.c' object='expr.obj' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@	$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o expr.obj `if test -f 'libyasm/expr.c'; then $(CYGPATH_W) 'libyasm/expr.c'; else $(CYGPATH_W) '$(srcdir)/libyasm/expr.c'; fi`

file.o: libyasm/file.c
@am__fastdepCC_TRUE@	$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT file.o -MD -MP -MF $(DEPDIR)/file.Tpo -c -o file.o `test -f 'libyasm/file.c' || echo '$(srcdir)/'`libyasm/file.c
@am__fastdepCC_TRUE@	$(am__mv) $(DEPDIR)/file.Tpo $(DEPDIR)/file.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@	source='libyasm/file.c' object='file.o' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@	$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o file.o `test -f 'libyasm/file.c' || echo '$(srcdir)/'`libyasm/file.c

file.obj: libyasm/file.c
@am__fastdepCC_TRUE@	$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT file.obj -MD -MP -MF $(DEPDIR)/file.Tpo -c -o file.obj `if test -f 'libyasm/file.c'; then $(CYGPATH_W) 'libyasm/file.c'; else $(CYGPATH_W) '$(srcdir)/libyasm/file.c'; fi`
@am__fastdepCC_TRUE@	$(am__mv) $(DEPDIR)/file.Tpo $(DEPDIR)/file.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@	source='libyasm/file.c' object='file.obj' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@	$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o file.obj `if test -f 'libyasm/file.c'; then $(CYGPATH_W) 'libyasm/file.c'; else $(CYGPATH_W) '$(srcdir)/libyasm/file.c'; fi`

floatnum.o: libyasm/floatnum.c
@am__fastdepCC_TRUE@	$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT floatnum.o -MD -MP -MF $(DEPDIR)/floatnum.Tpo -c -o floatnum.o `test -f 'libyasm/floatnum.c' || echo '$(srcdir)/'`libyasm/floatnum.c
@am__fastdepCC_TRUE@	$(am__mv) $(DEPDIR)/floatnum.Tpo $(DEPDIR)/floatnum.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@	source='libyasm/floatnum.c' object='floatnum.o' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@	$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o floatnum.o `test -f 'libyasm/floatnum.c' || echo '$(srcdir)/'`libyasm/floatnum.c

floatnum.obj: libyasm/floatnum.c
@am__fastdepCC_TRUE@	$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT floatnum.obj -MD -MP -MF $(DEPDIR)/floatnum.Tpo -c -o floatnum.obj `if test -f 'libyasm/floatnum.c'; then $(CYGPATH_W) 'libyasm/floatnum.c'; else $(CYGPATH_W) '$(srcdir)/libyasm/floatnum.c'; fi`
@am__fastdepCC_TRUE@	$(am__mv) $(DEPDIR)/floatnum.Tpo $(DEPDIR)/floatnum.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@	source='libyasm/floatnum.c' object='floatnum.obj' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@	$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o floatnum.obj `if test -f 'libyasm/floatnum.c'; then $(CYGPATH_W) 'libyasm/floatnum.c'; else $(CYGPATH_W) '$(srcdir)/libyasm/floatnum.c'; fi`

hamt.o: libyasm/hamt.c
@am__fastdepCC_TRUE@	$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT hamt.o -MD -MP -MF $(DEPDIR)/hamt.Tpo -c -o hamt.o `test -f 'libyasm/hamt.c' || echo '$(srcdir)/'`libyasm/hamt.c
@am__fastdepCC_TRUE@	$(am__mv) $(DEPDIR)/hamt.Tpo $(DEPDIR)/hamt.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@	source='libyasm/hamt.c' object='hamt.o' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@	$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o hamt.o `test -f 'libyasm/hamt.c' || echo '$(srcdir)/'`libyasm/hamt.c

hamt.obj: libyasm/hamt.c
@am__fastdepCC_TRUE@	$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT hamt.obj -MD -MP -MF $(DEPDIR)/hamt.Tpo -c -o hamt.obj `if test -f 'libyasm/hamt.c'; then $(CYGPATH_W) 'libyasm/hamt.c'; else $(CYGPATH_W) '$(srcdir)/libyasm/hamt.c'; fi`
@am__fastdepCC_TRUE@	$(am__mv) $(DEPDIR)/hamt.Tpo $(DEPDIR)/hamt.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@	source='libyasm/hamt.c' object='hamt.obj' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@	$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o hamt.obj `if test -f 'libyasm/hamt.c'; then $(CYGPATH_W) 'libyasm/hamt.c'; else $(CYGPATH_W) '$(srcdir)/libyasm/hamt.c'; fi`

insn.o: libyasm/insn.c
@am__fastdepCC_TRUE@	$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT insn.o -MD -MP -MF $(DEPDIR)/insn.Tpo -c -o insn.o `test -f 'libyasm/insn.c' || echo '$(srcdir)/'`libyasm/insn.c
@am__fastdepCC_TRUE@	$(am__mv) $(DEPDIR)/insn.Tpo $(DEPDIR)/insn.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@	source='libyasm/insn.c' object='insn.o' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@	$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o insn.o `test -f 'libyasm/insn.c' || echo '$(srcdir)/'`libyasm/insn.c

insn.obj: libyasm/insn.c
@am__fastdepCC_TRUE@	$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT insn.obj -MD -MP -MF $(DEPDIR)/insn.Tpo -c -o insn.obj `if test -f 'libyasm/insn.c'; then $(CYGPATH_W) 'libyasm/insn.c'; else $(CYGPATH_W) '$(srcdir)/libyasm/insn.c'; fi`
@am__fastdepCC_TRUE@	$(am__mv) $(DEPDIR)/insn.Tpo $(DEPDIR)/insn.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@	source='libyasm/insn.c' object='insn.obj' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@	$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o insn.obj `if test -f 'libyasm/insn.c'; then $(CYGPATH_W) 'libyasm/insn.c'; else $(CYGPATH_W) '$(srcdir)/libyasm/insn.c'; fi`

intnum.o: libyasm/intnum.c
@am__fastdepCC_TRUE@	$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT intnum.o -MD -MP -MF $(DEPDIR)/intnum.Tpo -c -o intnum.o `test -f 'libyasm/intnum.c' || echo '$(srcdir)/'`libyasm/intnum.c
@am__fastdepCC_TRUE@	$(am__mv) $(DEPDIR)/intnum.Tpo $(DEPDIR)/intnum.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@	source='libyasm/intnum.c' object='intnum.o' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@	$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o intnum.o `test -f 'libyasm/intnum.c' || echo '$(srcdir)/'`libyasm/intnum.c

intnum.obj: libyasm/intnum.c
@am__fastdepCC_TRUE@	$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT intnum.obj -MD -MP -MF $(DEPDIR)/intnum.Tpo -c -o intnum.obj `if test -f 'libyasm/intnum.c'; then $(CYGPATH_W) 'libyasm/intnum.c'; else $(CYGPATH_W) '$(srcdir)/libyasm/intnum.c'; fi`
@am__fastdepCC_TRUE@	$(am__mv) $(DEPDIR)/intnum.Tpo $(DEPDIR)/intnum.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@	source='libyasm/intnum.c' object='intnum.obj' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@	$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o intnum.obj `if test -f 'libyasm/intnum.c'; then $(CYGPATH_W) 'libyasm/intnum.c'; else $(CYGPATH_W) '$(srcdir)/libyasm/intnum.c'; fi`

inttree.o: libyasm/inttree.c
@am__fastdepCC_TRUE@	$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT inttree.o -MD -MP -MF $(DEPDIR)/inttree.Tpo -c -o inttree.o `test -f 'libyasm/inttree.c' || echo '$(srcdir)/'`libyasm/inttree.c
@am__fastdepCC_TRUE@	$(am__mv) $(DEPDIR)/inttree.Tpo $(DEPDIR)/inttree.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@	source='libyasm/inttree.c' object='inttree.o' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@	$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o inttree.o `test -f 'libyasm/inttree.c' || echo '$(srcdir)/'`libyasm/inttree.c

inttree.obj: libyasm/inttree.c
@am__fastdepCC_TRUE@	$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT inttree.obj -MD -MP -MF $(DEPDIR)/inttree.Tpo -c -o inttree.obj `if test -f 'libyasm/inttree.c'; then $(CYGPATH_W) 'libyasm/inttree.c'; else $(CYGPATH_W) '$(srcdir)/libyasm/inttree.c'; fi`
@am__fastdepCC_TRUE@	$(am__mv) $(DEPDIR)/inttree.Tpo $(DEPDIR)/inttree.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@	source='libyasm/inttree.c' object='inttree.obj' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@	$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o inttree.obj `if test -f 'libyasm/inttree.c'; then $(CYGPATH_W) 'libyasm/inttree.c'; else $(CYGPATH_W) '$(srcdir)/libyasm/inttree.c'; fi`

linemap.o: libyasm/linemap.c
@am__fastdepCC_TRUE@	$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT linemap.o -MD -MP -MF $(DEPDIR)/linemap.Tpo -c -o linemap.o `test -f 'libyasm/linemap.c' || echo '$(srcdir)/'`libyasm/linemap.c
@am__fastdepCC_TRUE@	$(am__mv) $(DEPDIR)/linemap.Tpo $(DEPDIR)/linemap.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@	source='libyasm/linemap.c' object='linemap.o' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@	$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o linemap.o `test -f 'libyasm/linemap.c' || echo '$(srcdir)/'`libyasm/linemap.c

linemap.obj: libyasm/linemap.c
@am__fastdepCC_TRUE@	$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT linemap.obj -MD -MP -MF $(DEPDIR)/linemap.Tpo -c -o linemap.obj `if test -f 'libyasm/linemap.c'; then $(CYGPATH_W) 'libyasm/linemap.c'; else $(CYGPATH_W) '$(srcdir)/libyasm/linemap.c'; fi`
@am__fastdepCC_TRUE@	$(am__mv) $(DEPDIR)/linemap.Tpo $(DEPDIR)/linemap.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@	source='libyasm/linemap.c' object='linemap.obj' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@	$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o linemap.obj `if test -f 'libyasm/linemap.c'; then $(CYGPATH_W) 'libyasm/linemap.c'; else $(CYGPATH_W) '$(srcdir)/libyasm/linemap.c'; fi`

md5.o: libyasm/md5.c
@am__fastdepCC_TRUE@	$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT md5.o -MD -MP -MF $(DEPDIR)/md5.Tpo -c -o md5.o `test -f 'libyasm/md5.c' || echo '$(srcdir)/'`libyasm/md5.c
@am__fastdepCC_TRUE@	$(am__mv) $(DEPDIR)/md5.Tpo $(DEPDIR)/md5.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@	source='libyasm/md5.c' object='md5.o' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@	$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o md5.o `test -f 'libyasm/md5.c' || echo '$(srcdir)/'`libyasm/md5.c

md5.obj: libyasm/md5.c
@am__fastdepCC_TRUE@	$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT md5.obj -MD -MP -MF $(DEPDIR)/md5.Tpo -c -o md5.obj `if test -f 'libyasm/md5.c'; then $(CYGPATH_W) 'libyasm/md5.c'; else $(CYGPATH_W) '$(srcdir)/libyasm/md5.c'; fi`
@am__fastdepCC_TRUE@	$(am__mv) $(DEPDIR)/md5.Tpo $(DEPDIR)/md5.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@	source='libyasm/md5.c' object='md5.obj' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@	$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o md5.obj `if test -f 'libyasm/md5.c'; then $(CYGPATH_W) 'libyasm/md5.c'; else $(CYGPATH_W) '$(srcdir)/libyasm/md5.c'; fi`

mergesort.o: libyasm/mergesort.c
@am__fastdepCC_TRUE@	$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT mergesort.o -MD -MP -MF $(DEPDIR)/mergesort.Tpo -c -o mergesort.o `test -f 'libyasm/mergesort.c' || echo '$(srcdir)/'`libyasm/mergesort.c
@am__fastdepCC_TRUE@	$(am__mv) $(DEPDIR)/mergesort.Tpo $(DEPDIR)/mergesort.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@	source='libyasm/mergesort.c' object='mergesort.o' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@	$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o mergesort.o `test -f 'libyasm/mergesort.c' || echo '$(srcdir)/'`libyasm/mergesort.c

mergesort.obj: libyasm/mergesort.c
@am__fastdepCC_TRUE@	$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT mergesort.obj -MD -MP -MF $(DEPDIR)/mergesort.Tpo -c -o mergesort.obj `if test -f 'libyasm/mergesort.c'; then $(CYGPATH_W) 'libyasm/mergesort.c'; else $(CYGPATH_W) '$(srcdir)/libyasm/mergesort.c'; fi`
@am__fastdepCC_TRUE@	$(am__mv) $(DEPDIR)/mergesort.Tpo $(DEPDIR)/mergesort.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@	source='libyasm/mergesort.c' object='mergesort.obj' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@	$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o mergesort.obj `if test -f 'libyasm/mergesort.c'; then $(CYGPATH_W) 'libyasm/mergesort.c'; else $(CYGPATH_W) '$(srcdir)/libyasm/mergesort.c'; fi`

phash.o: libyasm/phash.c
@am__fastdepCC_TRUE@	$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT phash.o -MD -MP -MF $(DEPDIR)/phash.Tpo -c -o phash.o `test -f 'libyasm/phash.c' || echo '$(srcdir)/'`libyasm/phash.c
@am__fastdepCC_TRUE@	$(am__mv) $(DEPDIR)/phash.Tpo $(DEPDIR)/phash.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@	source='libyasm/phash.c' object='phash.o' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@	$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o phash.o `test -f 'libyasm/phash.c' || echo '$(srcdir)/'`libyasm/phash.c

phash.obj: libyasm/phash.c
@am__fastdepCC_TRUE@	$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT phash.obj -MD -MP -MF $(DEPDIR)/phash.Tpo -c -o phash.obj `if test -f 'libyasm/phash.c'; then $(CYGPATH_W) 'libyasm/phash.c'; else $(CYGPATH_W) '$(srcdir)/libyasm/phash.c'; fi`
@am__fastdepCC_TRUE@	$(am__mv) $(DEPDIR)/phash.Tpo $(DEPDIR)/phash.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@	source='libyasm/phash.c' object='phash.obj' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@	$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o phash.obj `if test -f 'libyasm/phash.c'; then $(CYGPATH_W) 'libyasm/phash.c'; else $(CYGPATH_W) '$(srcdir)/libyasm/phash.c'; fi`

section.o: libyasm/section.c
@am__fastdepCC_TRUE@	$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT section.o -MD -MP -MF $(DEPDIR)/section.Tpo -c -o section.o `test -f 'libyasm/section.c' || echo '$(srcdir)/'`libyasm/section.c
@am__fastdepCC_TRUE@	$(am__mv) $(DEPDIR)/section.Tpo $(DEPDIR)/section.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@	source='libyasm/section.c' object='section.o' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@	$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o section.o `test -f 'libyasm/section.c' || echo '$(srcdir)/'`libyasm/section.c

section.obj: libyasm/section.c
@am__fastdepCC_TRUE@	$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT section.obj -MD -MP -MF $(DEPDIR)/section.Tpo -c -o section.obj `if test -f 'libyasm/section.c'; then $(CYGPATH_W) 'libyasm/section.c'; else $(CYGPATH_W) '$(srcdir)/libyasm/section.c'; fi`
@am__fastdepCC_TRUE@	$(am__mv) $(DEPDIR)/section.Tpo $(DEPDIR)/section.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@	source='libyasm/section.c' object='section.obj' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@	$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o section.obj `if test -f 'libyasm/section.c'; then $(CYGPATH_W) 'libyasm/section.c'; else $(CYGPATH_W) '$(srcdir)/libyasm/section.c'; fi`

strcasecmp.o: libyasm/strcasecmp.c
@am__fastdepCC_TRUE@	$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT strcasecmp.o -MD -MP -MF $(DEPDIR)/strcasecmp.Tpo -c -o strcasecmp.o `test -f 'libyasm/strcasecmp.c' || echo '$(srcdir)/'`libyasm/strcasecmp.c
@am__fastdepCC_TRUE@	$(am__mv) $(DEPDIR)/strcasecmp.Tpo $(DEPDIR)/strcasecmp.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@	source='libyasm/strcasecmp.c' object='strcasecmp.o' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@	$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o strcasecmp.o `test -f 'libyasm/strcasecmp.c' || echo '$(srcdir)/'`libyasm/strcasecmp.c

strcasecmp.obj: libyasm/strcasecmp.c
@am__fastdepCC_TRUE@	$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT strcasecmp.obj -MD -MP -MF $(DEPDIR)/strcasecmp.Tpo -c -o strcasecmp.obj `if test -f 'libyasm/strcasecmp.c'; then $(CYGPATH_W) 'libyasm/strcasecmp.c'; else $(CYGPATH_W) '$(srcdir)/libyasm/strcasecmp.c'; fi`
@am__fastdepCC_TRUE@	$(am__mv) $(DEPDIR)/strcasecmp.Tpo $(DEPDIR)/strcasecmp.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@	source='libyasm/strcasecmp.c' object='strcasecmp.obj' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@	$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o strcasecmp.obj `if test -f 'libyasm/strcasecmp.c'; then $(CYGPATH_W) 'libyasm/strcasecmp.c'; else $(CYGPATH_W) '$(srcdir)/libyasm/strcasecmp.c'; fi`

strsep.o: libyasm/strsep.c
@am__fastdepCC_TRUE@	$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT strsep.o -MD -MP -MF $(DEPDIR)/strsep.Tpo -c -o strsep.o `test -f 'libyasm/strsep.c' || echo '$(srcdir)/'`libyasm/strsep.c
@am__fastdepCC_TRUE@	$(am__mv) $(DEPDIR)/strsep.Tpo $(DEPDIR)/strsep.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@	source='libyasm/strsep.c' object='strsep.o' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@	$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o strsep.o `test -f 'libyasm/strsep.c' || echo '$(srcdir)/'`libyasm/strsep.c

strsep.obj: libyasm/strsep.c
@am__fastdepCC_TRUE@	$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT strsep.obj -MD -MP -MF $(DEPDIR)/strsep.Tpo -c -o strsep.obj `if test -f 'libyasm/strsep.c'; then $(CYGPATH_W) 'libyasm/strsep.c'; else $(CYGPATH_W) '$(srcdir)/libyasm/strsep.c'; fi`
@am__fastdepCC_TRUE@	$(am__mv) $(DEPDIR)/strsep.Tpo $(DEPDIR)/strsep.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@	source='libyasm/strsep.c' object='strsep.obj' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@	$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o strsep.obj `if test -f 'libyasm/strsep.c'; then $(CYGPATH_W) 'libyasm/strsep.c'; else $(CYGPATH_W) '$(srcdir)/libyasm/strsep.c'; fi`

symrec.o: libyasm/symrec.c
@am__fastdepCC_TRUE@	$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT symrec.o -MD -MP -MF $(DEPDIR)/symrec.Tpo -c -o symrec.o `test -f 'libyasm/symrec.c' || echo '$(srcdir)/'`libyasm/symrec.c
@am__fastdepCC_TRUE@	$(am__mv) $(DEPDIR)/symrec.Tpo $(DEPDIR)/symrec.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@	source='libyasm/symrec.c' object='symrec.o' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@	$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o symrec.o `test -f 'libyasm/symrec.c' || echo '$(srcdir)/'`libyasm/symrec.c

symrec.obj: libyasm/symrec.c
@am__fastdepCC_TRUE@	$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT symrec.obj -MD -MP -MF $(DEPDIR)/symrec.Tpo -c -o symrec.obj `if test -f 'libyasm/symrec.c'; then $(CYGPATH_W) 'libyasm/symrec.c'; else $(CYGPATH_W) '$(srcdir)/libyasm/symrec.c'; fi`
@am__fastdepCC_TRUE@	$(am__mv) $(DEPDIR)/symrec.Tpo $(DEPDIR)/symrec.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@	source='libyasm/symrec.c' object='symrec.obj' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@	$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o symrec.obj `if test -f 'libyasm/symrec.c'; then $(CYGPATH_W) 'libyasm/symrec.c'; else $(CYGPATH_W) '$(srcdir)/libyasm/symrec.c'; fi`

valparam.o: libyasm/valparam.c
@am__fastdepCC_TRUE@	$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT valparam.o -MD -MP -MF $(DEPDIR)/valparam.Tpo -c -o valparam.o `test -f 'libyasm/valparam.c' || echo '$(srcdir)/'`libyasm/valparam.c
@am__fastdepCC_TRUE@	$(am__mv) $(DEPDIR)/valparam.Tpo $(DEPDIR)/valparam.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@	source='libyasm/valparam.c' object='valparam.o' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@	$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o valparam.o `test -f 'libyasm/valparam.c' || echo '$(srcdir)/'`libyasm/valparam.c

valparam.obj: libyasm/valparam.c
@am__fastdepCC_TRUE@	$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT valparam.obj -MD -MP -MF $(DEPDIR)/valparam.Tpo -c -o valparam.obj `if test -f 'libyasm/valparam.c'; then $(CYGPATH_W) 'libyasm/valparam.c'; else $(CYGPATH_W) '$(srcdir)/libyasm/valparam.c'; fi`
@am__fastdepCC_TRUE@	$(am__mv) $(DEPDIR)/valparam.Tpo $(DEPDIR)/valparam.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@	source='libyasm/valparam.c' object='valparam.obj' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@	$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o valparam.obj `if test -f 'libyasm/valparam.c'; then $(CYGPATH_W) 'libyasm/valparam.c'; else $(CYGPATH_W) '$(srcdir)/libyasm/valparam.c'; fi`

value.o: libyasm/value.c
@am__fastdepCC_TRUE@	$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT value.o -MD -MP -MF $(DEPDIR)/value.Tpo -c -o value.o `test -f 'libyasm/value.c' || echo '$(srcdir)/'`libyasm/value.c
@am__fastdepCC_TRUE@	$(am__mv) $(DEPDIR)/value.Tpo $(DEPDIR)/value.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@	source='libyasm/value.c' object='value.o' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@	$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o value.o `test -f 'libyasm/value.c' || echo '$(srcdir)/'`libyasm/value.c

value.obj: libyasm/value.c
@am__fastdepCC_TRUE@	$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT value.obj -MD -MP -MF $(DEPDIR)/value.Tpo -c -o value.obj `if test -f 'libyasm/value.c'; then $(CYGPATH_W) 'libyasm/value.c'; else $(CYGPATH_W) '$(srcdir)/libyasm/value.c'; fi`
@am__fastdepCC_TRUE@	$(am__mv) $(DEPDIR)/value.Tpo $(DEPDIR)/value.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@	source='libyasm/value.c' object='value.obj' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@	$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o value.obj `if test -f 'libyasm/value.c'; then $(CYGPATH_W) 'libyasm/value.c'; else $(CYGPATH_W) '$(srcdir)/libyasm/value.c'; fi`

xmalloc.o: libyasm/xmalloc.c
@am__fastdepCC_TRUE@	$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT xmalloc.o -MD -MP -MF $(DEPDIR)/xmalloc.Tpo -c -o xmalloc.o `test -f 'libyasm/xmalloc.c' || echo '$(srcdir)/'`libyasm/xmalloc.c
@am__fastdepCC_TRUE@	$(am__mv) $(DEPDIR)/xmalloc.Tpo $(DEPDIR)/xmalloc.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@	source='libyasm/xmalloc.c' object='xmalloc.o' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@	$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o xmalloc.o `test -f 'libyasm/xmalloc.c' || echo '$(srcdir)/'`libyasm/xmalloc.c

xmalloc.obj: libyasm/xmalloc.c
@am__fastdepCC_TRUE@	$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT xmalloc.obj -MD -MP -MF $(DEPDIR)/xmalloc.Tpo -c -o xmalloc.obj `if test -f 'libyasm/xmalloc.c'; then $(CYGPATH_W) 'libyasm/xmalloc.c'; else $(CYGPATH_W) '$(srcdir)/libyasm/xmalloc.c'; fi`
@am__fastdepCC_TRUE@	$(am__mv) $(DEPDIR)/xmalloc.Tpo $(DEPDIR)/xmalloc.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@	source='libyasm/xmalloc.c' object='xmalloc.obj' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@	$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o xmalloc.obj `if test -f 'libyasm/xmalloc.c'; then $(CYGPATH_W) 'libyasm/xmalloc.c'; else $(CYGPATH_W) '$(srcdir)/libyasm/xmalloc.c'; fi`

xstrdup.o: libyasm/xstrdup.c
@am__fastdepCC_TRUE@	$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT xstrdup.o -MD -MP -MF $(DEPDIR)/xstrdup.Tpo -c -o xstrdup.o `test -f 'libyasm/xstrdup.c' || echo '$(srcdir)/'`libyasm/xstrdup.c
@am__fastdepCC_TRUE@	$(am__mv) $(DEPDIR)/xstrdup.Tpo $(DEPDIR)/xstrdup.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@	source='libyasm/xstrdup.c' object='xstrdup.o' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@	$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o xstrdup.o `test -f 'libyasm/xstrdup.c' || echo '$(srcdir)/'`libyasm/xstrdup.c

xstrdup.obj: libyasm/xstrdup.c
@am__fastdepCC_TRUE@	$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT xstrdup.obj -MD -MP -MF $(DEPDIR)/xstrdup.Tpo -c -o xstrdup.obj `if test -f 'libyasm/xstrdup.c'; then $(CYGPATH_W) 'libyasm/xstrdup.c'; else $(CYGPATH_W) '$(srcdir)/libyasm/xstrdup.c'; fi`
@am__fastdepCC_TRUE@	$(am__mv) $(DEPDIR)/xstrdup.Tpo $(DEPDIR)/xstrdup.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@	source='libyasm/xstrdup.c' object='xstrdup.obj' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@	$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o xstrdup.obj `if test -f 'libyasm/xstrdup.c'; then $(CYGPATH_W) 'libyasm/xstrdup.c'; else $(CYGPATH_W) '$(srcdir)/libyasm/xstrdup.c'; fi`

bitvect_test.o: libyasm/tests/bitvect_test.c
@am__fastdepCC_TRUE@	$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT bitvect_test.o -MD -MP -MF $(DEPDIR)/bitvect_test.Tpo -c -o bitvect_test.o `test -f 'libyasm/tests/bitvect_test.c' || echo '$(srcdir)/'`libyasm/tests/bitvect_test.c
@am__fastdepCC_TRUE@	$(am__mv) $(DEPDIR)/bitvect_test.Tpo $(DEPDIR)/bitvect_test.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@	source='libyasm/tests/bitvect_test.c' object='bitvect_test.o' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@	$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o bitvect_test.o `test -f 'libyasm/tests/bitvect_test.c' || echo '$(srcdir)/'`libyasm/tests/bitvect_test.c

bitvect_test.obj: libyasm/tests/bitvect_test.c
@am__fastdepCC_TRUE@	$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT bitvect_test.obj -MD -MP -MF $(DEPDIR)/bitvect_test.Tpo -c -o bitvect_test.obj `if test -f 'libyasm/tests/bitvect_test.c'; then $(CYGPATH_W) 'libyasm/tests/bitvect_test.c'; else $(CYGPATH_W) '$(srcdir)/libyasm/tests/bitvect_test.c'; fi`
@am__fastdepCC_TRUE@	$(am__mv) $(DEPDIR)/bitvect_test.Tpo $(DEPDIR)/bitvect_test.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@	source='libyasm/tests/bitvect_test.c' object='bitvect_test.obj' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@	$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o bitvect_test.obj `if test -f 'libyasm/tests/bitvect_test.c'; then $(CYGPATH_W) 'libyasm/tests/bitvect_test.c'; else $(CYGPATH_W) '$(srcdir)/libyasm/tests/bitvect_test.c'; fi`

combpath_test.o: libyasm/tests/combpath_test.c
@am__fastdepCC_TRUE@	$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT combpath_test.o -MD -MP -MF $(DEPDIR)/combpath_test.Tpo -c -o combpath_test.o `test -f 'libyasm/tests/combpath_test.c' || echo '$(srcdir)/'`libyasm/tests/combpath_test.c
@am__fastdepCC_TRUE@	$(am__mv) $(DEPDIR)/combpath_test.Tpo $(DEPDIR)/combpath_test.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@	source='libyasm/tests/combpath_test.c' object='combpath_test.o' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@	$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o combpath_test.o `test -f 'libyasm/tests/combpath_test.c' || echo '$(srcdir)/'`libyasm/tests/combpath_test.c

combpath_test.obj: libyasm/tests/combpath_test.c
@am__fastdepCC_TRUE@	$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT combpath_test.obj -MD -MP -MF $(DEPDIR)/combpath_test.Tpo -c -o combpath_test.obj `if test -f 'libyasm/tests/combpath_test.c'; then $(CYGPATH_W) 'libyasm/tests/combpath_test.c'; else $(CYGPATH_W) '$(srcdir)/libyasm/tests/combpath_test.c'; fi`
@am__fastdepCC_TRUE@	$(am__mv) $(DEPDIR)/combpath_test.Tpo $(DEPDIR)/combpath_test.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@	source='libyasm/tests/combpath_test.c' object='combpath_test.obj' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@	$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o combpath_test.obj `if test -f 'libyasm/tests/combpath_test.c'; then $(CYGPATH_W) 'libyasm/tests/combpath_test.c'; else $(CYGPATH_W) '$(srcdir)/libyasm/tests/combpath_test.c'; fi`

floatnum_test.o: libyasm/tests/floatnum_test.c
@am__fastdepCC_TRUE@	$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT floatnum_test.o -MD -MP -MF $(DEPDIR)/floatnum_test.Tpo -c -o floatnum_test.o `test -f 'libyasm/tests/floatnum_test.c' || echo '$(srcdir)/'`libyasm/tests/floatnum_test.c
@am__fastdepCC_TRUE@	$(am__mv) $(DEPDIR)/floatnum_test.Tpo $(DEPDIR)/floatnum_test.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@	source='libyasm/tests/floatnum_test.c' object='floatnum_test.o' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@	$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o floatnum_test.o `test -f 'libyasm/tests/floatnum_test.c' || echo '$(srcdir)/'`libyasm/tests/floatnum_test.c

floatnum_test.obj: libyasm/tests/floatnum_test.c
@am__fastdepCC_TRUE@	$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT floatnum_test.obj -MD -MP -MF $(DEPDIR)/floatnum_test.Tpo -c -o floatnum_test.obj `if test -f 'libyasm/tests/floatnum_test.c'; then $(CYGPATH_W) 'libyasm/tests/floatnum_test.c'; else $(CYGPATH_W) '$(srcdir)/libyasm/tests/floatnum_test.c'; fi`
@am__fastdepCC_TRUE@	$(am__mv) $(DEPDIR)/floatnum_test.Tpo $(DEPDIR)/floatnum_test.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@	source='libyasm/tests/floatnum_test.c' object='floatnum_test.obj' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@	$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o floatnum_test.obj `if test -f 'libyasm/tests/floatnum_test.c'; then $(CYGPATH_W) 'libyasm/tests/floatnum_test.c'; else $(CYGPATH_W) '$(srcdir)/libyasm/tests/floatnum_test.c'; fi`

leb128_test.o: libyasm/tests/leb128_test.c
@am__fastdepCC_TRUE@	$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT leb128_test.o -MD -MP -MF $(DEPDIR)/leb128_test.Tpo -c -o leb128_test.o `test -f 'libyasm/tests/leb128_test.c' || echo '$(srcdir)/'`libyasm/tests/leb128_test.c
@am__fastdepCC_TRUE@	$(am__mv) $(DEPDIR)/leb128_test.Tpo $(DEPDIR)/leb128_test.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@	source='libyasm/tests/leb128_test.c' object='leb128_test.o' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@	$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o leb128_test.o `test -f 'libyasm/tests/leb128_test.c' || echo '$(srcdir)/'`libyasm/tests/leb128_test.c

leb128_test.obj: libyasm/tests/leb128_test.c
@am__fastdepCC_TRUE@	$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT leb128_test.obj -MD -MP -MF $(DEPDIR)/leb128_test.Tpo -c -o leb128_test.obj `if test -f 'libyasm/tests/leb128_test.c'; then $(CYGPATH_W) 'libyasm/tests/leb128_test.c'; else $(CYGPATH_W) '$(srcdir)/libyasm/tests/leb128_test.c'; fi`
@am__fastdepCC_TRUE@	$(am__mv) $(DEPDIR)/leb128_test.Tpo $(DEPDIR)/leb128_test.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@	source='libyasm/tests/leb128_test.c' object='leb128_test.obj' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@	$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o leb128_test.obj `if test -f 'libyasm/tests/leb128_test.c'; then $(CYGPATH_W) 'libyasm/tests/leb128_test.c'; else $(CYGPATH_W) '$(srcdir)/libyasm/tests/leb128_test.c'; fi`

splitpath_test.o: libyasm/tests/splitpath_test.c
@am__fastdepCC_TRUE@	$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT splitpath_test.o -MD -MP -MF $(DEPDIR)/splitpath_test.Tpo -c -o splitpath_test.o `test -f 'libyasm/tests/splitpath_test.c' || echo '$(srcdir)/'`libyasm/tests/splitpath_test.c
@am__fastdepCC_TRUE@	$(am__mv) $(DEPDIR)/splitpath_test.Tpo $(DEPDIR)/splitpath_test.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@	source='libyasm/tests/splitpath_test.c' object='splitpath_test.o' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@	$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o splitpath_test.o `test -f 'libyasm/tests/splitpath_test.c' || echo '$(srcdir)/'`libyasm/tests/splitpath_test.c

splitpath_test.obj: libyasm/tests/splitpath_test.c
@am__fastdepCC_TRUE@	$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT splitpath_test.obj -MD -MP -MF $(DEPDIR)/splitpath_test.Tpo -c -o splitpath_test.obj `if test -f 'libyasm/tests/splitpath_test.c'; then $(CYGPATH_W) 'libyasm/tests/splitpath_test.c'; else $(CYGPATH_W) '$(srcdir)/libyasm/tests/splitpath_test.c'; fi`
@am__fastdepCC_TRUE@	$(am__mv) $(DEPDIR)/splitpath_test.Tpo $(DEPDIR)/splitpath_test.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@	source='libyasm/tests/splitpath_test.c' object='splitpath_test.obj' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@	$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o splitpath_test.obj `if test -f 'libyasm/tests/splitpath_test.c'; then $(CYGPATH_W) 'libyasm/tests/splitpath_test.c'; else $(CYGPATH_W) '$(srcdir)/libyasm/tests/splitpath_test.c'; fi`

uncstring_test.o: libyasm/tests/uncstring_test.c
@am__fastdepCC_TRUE@	$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT uncstring_test.o -MD -MP -MF $(DEPDIR)/uncstring_test.Tpo -c -o uncstring_test.o `test -f 'libyasm/tests/uncstring_test.c' || echo '$(srcdir)/'`libyasm/tests/uncstring_test.c
@am__fastdepCC_TRUE@	$(am__mv) $(DEPDIR)/uncstring_test.Tpo $(DEPDIR)/uncstring_test.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@	source='libyasm/tests/uncstring_test.c' object='uncstring_test.o' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@	$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o uncstring_test.o `test -f 'libyasm/tests/uncstring_test.c' || echo '$(srcdir)/'`libyasm/tests/uncstring_test.c

uncstring_test.obj: libyasm/tests/uncstring_test.c
@am__fastdepCC_TRUE@	$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT uncstring_test.obj -MD -MP -MF $(DEPDIR)/uncstring_test.Tpo -c -o uncstring_test.obj `if test -f 'libyasm/tests/uncstring_test.c'; then $(CYGPATH_W) 'libyasm/tests/uncstring_test.c'; else $(CYGPATH_W) '$(srcdir)/libyasm/tests/uncstring_test.c'; fi`
@am__fastdepCC_TRUE@	$(am__mv) $(DEPDIR)/uncstring_test.Tpo $(DEPDIR)/uncstring_test.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@	source='libyasm/tests/uncstring_test.c' object='uncstring_test.obj' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@	$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o uncstring_test.obj `if test -f 'libyasm/tests/uncstring_test.c'; then $(CYGPATH_W) 'libyasm/tests/uncstring_test.c'; else $(CYGPATH_W) '$(srcdir)/libyasm/tests/uncstring_test.c'; fi`

vsyasm.o: frontends/vsyasm/vsyasm.c
@am__fastdepCC_TRUE@	$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT vsyasm.o -MD -MP -MF $(DEPDIR)/vsyasm.Tpo -c -o vsyasm.o `test -f 'frontends/vsyasm/vsyasm.c' || echo '$(srcdir)/'`frontends/vsyasm/vsyasm.c
@am__fastdepCC_TRUE@	$(am__mv) $(DEPDIR)/vsyasm.Tpo $(DEPDIR)/vsyasm.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@	source='frontends/vsyasm/vsyasm.c' object='vsyasm.o' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@	$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o vsyasm.o `test -f 'frontends/vsyasm/vsyasm.c' || echo '$(srcdir)/'`frontends/vsyasm/vsyasm.c

vsyasm.obj: frontends/vsyasm/vsyasm.c
@am__fastdepCC_TRUE@	$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT vsyasm.obj -MD -MP -MF $(DEPDIR)/vsyasm.Tpo -c -o vsyasm.obj `if test -f 'frontends/vsyasm/vsyasm.c'; then $(CYGPATH_W) 'frontends/vsyasm/vsyasm.c'; else $(CYGPATH_W) '$(srcdir)/frontends/vsyasm/vsyasm.c'; fi`
@am__fastdepCC_TRUE@	$(am__mv) $(DEPDIR)/vsyasm.Tpo $(DEPDIR)/vsyasm.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@	source='frontends/vsyasm/vsyasm.c' object='vsyasm.obj' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@	$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o vsyasm.obj `if test -f 'frontends/vsyasm/vsyasm.c'; then $(CYGPATH_W) 'frontends/vsyasm/vsyasm.c'; else $(CYGPATH_W) '$(srcdir)/frontends/vsyasm/vsyasm.c'; fi`

yasm-options.o: frontends/yasm/yasm-options.c
@am__fastdepCC_TRUE@	$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT yasm-options.o -MD -MP -MF $(DEPDIR)/yasm-options.Tpo -c -o yasm-options.o `test -f 'frontends/yasm/yasm-options.c' || echo '$(srcdir)/'`frontends/yasm/yasm-options.c
@am__fastdepCC_TRUE@	$(am__mv) $(DEPDIR)/yasm-options.Tpo $(DEPDIR)/yasm-options.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@	source='frontends/yasm/yasm-options.c' object='yasm-options.o' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@	$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o yasm-options.o `test -f 'frontends/yasm/yasm-options.c' || echo '$(srcdir)/'`frontends/yasm/yasm-options.c

yasm-options.obj: frontends/yasm/yasm-options.c
@am__fastdepCC_TRUE@	$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT yasm-options.obj -MD -MP -MF $(DEPDIR)/yasm-options.Tpo -c -o yasm-options.obj `if test -f 'frontends/yasm/yasm-options.c'; then $(CYGPATH_W) 'frontends/yasm/yasm-options.c'; else $(CYGPATH_W) '$(srcdir)/frontends/yasm/yasm-options.c'; fi`
@am__fastdepCC_TRUE@	$(am__mv) $(DEPDIR)/yasm-options.Tpo $(DEPDIR)/yasm-options.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@	source='frontends/yasm/yasm-options.c' object='yasm-options.obj' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@	$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o yasm-options.obj `if test -f 'frontends/yasm/yasm-options.c'; then $(CYGPATH_W) 'frontends/yasm/yasm-options.c'; else $(CYGPATH_W) '$(srcdir)/frontends/yasm/yasm-options.c'; fi`

yasm.o: frontends/yasm/yasm.c
@am__fastdepCC_TRUE@	$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT yasm.o -MD -MP -MF $(DEPDIR)/yasm.Tpo -c -o yasm.o `test -f 'frontends/yasm/yasm.c' || echo '$(srcdir)/'`frontends/yasm/yasm.c
@am__fastdepCC_TRUE@	$(am__mv) $(DEPDIR)/yasm.Tpo $(DEPDIR)/yasm.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@	source='frontends/yasm/yasm.c' object='yasm.o' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@	$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o yasm.o `test -f 'frontends/yasm/yasm.c' || echo '$(srcdir)/'`frontends/yasm/yasm.c

yasm.obj: frontends/yasm/yasm.c
@am__fastdepCC_TRUE@	$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT yasm.obj -MD -MP -MF $(DEPDIR)/yasm.Tpo -c -o yasm.obj `if test -f 'frontends/yasm/yasm.c'; then $(CYGPATH_W) 'frontends/yasm/yasm.c'; else $(CYGPATH_W) '$(srcdir)/frontends/yasm/yasm.c'; fi`
@am__fastdepCC_TRUE@	$(am__mv) $(DEPDIR)/yasm.Tpo $(DEPDIR)/yasm.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@	source='frontends/yasm/yasm.c' object='yasm.obj' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@	$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o yasm.obj `if test -f 'frontends/yasm/yasm.c'; then $(CYGPATH_W) 'frontends/yasm/yasm.c'; else $(CYGPATH_W) '$(srcdir)/frontends/yasm/yasm.c'; fi`

tasm.o: frontends/tasm/tasm.c
@am__fastdepCC_TRUE@	$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT tasm.o -MD -MP -MF $(DEPDIR)/tasm.Tpo -c -o tasm.o `test -f 'frontends/tasm/tasm.c' || echo '$(srcdir)/'`frontends/tasm/tasm.c
@am__fastdepCC_TRUE@	$(am__mv) $(DEPDIR)/tasm.Tpo $(DEPDIR)/tasm.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@	source='frontends/tasm/tasm.c' object='tasm.o' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@	$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o tasm.o `test -f 'frontends/tasm/tasm.c' || echo '$(srcdir)/'`frontends/tasm/tasm.c

tasm.obj: frontends/tasm/tasm.c
@am__fastdepCC_TRUE@	$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT tasm.obj -MD -MP -MF $(DEPDIR)/tasm.Tpo -c -o tasm.obj `if test -f 'frontends/tasm/tasm.c'; then $(CYGPATH_W) 'frontends/tasm/tasm.c'; else $(CYGPATH_W) '$(srcdir)/frontends/tasm/tasm.c'; fi`
@am__fastdepCC_TRUE@	$(am__mv) $(DEPDIR)/tasm.Tpo $(DEPDIR)/tasm.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@	source='frontends/tasm/tasm.c' object='tasm.obj' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@	$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o tasm.obj `if test -f 'frontends/tasm/tasm.c'; then $(CYGPATH_W) 'frontends/tasm/tasm.c'; else $(CYGPATH_W) '$(srcdir)/frontends/tasm/tasm.c'; fi`

tasm-options.o: frontends/tasm/tasm-options.c
@am__fastdepCC_TRUE@	$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT tasm-options.o -MD -MP -MF $(DEPDIR)/tasm-options.Tpo -c -o tasm-options.o `test -f 'frontends/tasm/tasm-options.c' || echo '$(srcdir)/'`frontends/tasm/tasm-options.c
@am__fastdepCC_TRUE@	$(am__mv) $(DEPDIR)/tasm-options.Tpo $(DEPDIR)/tasm-options.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@	source='frontends/tasm/tasm-options.c' object='tasm-options.o' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@	$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o tasm-options.o `test -f 'frontends/tasm/tasm-options.c' || echo '$(srcdir)/'`frontends/tasm/tasm-options.c

tasm-options.obj: frontends/tasm/tasm-options.c
@am__fastdepCC_TRUE@	$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT tasm-options.obj -MD -MP -MF $(DEPDIR)/tasm-options.Tpo -c -o tasm-options.obj `if test -f 'frontends/tasm/tasm-options.c'; then $(CYGPATH_W) 'frontends/tasm/tasm-options.c'; else $(CYGPATH_W) '$(srcdir)/frontends/tasm/tasm-options.c'; fi`
@am__fastdepCC_TRUE@	$(am__mv) $(DEPDIR)/tasm-options.Tpo $(DEPDIR)/tasm-options.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@	source='frontends/tasm/tasm-options.c' object='tasm-options.obj' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@	$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o tasm-options.obj `if test -f 'frontends/tasm/tasm-options.c'; then $(CYGPATH_W) 'frontends/tasm/tasm-options.c'; else $(CYGPATH_W) '$(srcdir)/frontends/tasm/tasm-options.c'; fi`
install-man1: $(dist_man_MANS) $(notrans_dist_man_MANS)
	@$(NORMAL_INSTALL)
	test -z "$(man1dir)" || $(MKDIR_P) "$(DESTDIR)$(man1dir)"
	@list=''; test -n "$(man1dir)" || exit 0; \
	{ for i in $$list; do echo "$$i"; done;  \
	l2='$(notrans_dist_man_MANS)'; for i in $$l2; do echo "$$i"; done | \
	  sed -n '/\.1[a-z]*$$/p'; \
	} | while read p; do \
	  if test -f $$p; then d=; else d="$(srcdir)/"; fi; \
	  echo "$$d$$p"; echo "$$p"; \
	done | \
	sed 'n;s,.*/,,;p;s,\.[^1][0-9a-z]*$$,.1,' | \
	sed 'N;N;s,\n, ,g' | { \
	list=; while read file base inst; do \
	  if test "$$base" = "$$inst"; then list="$$list $$file"; else \
	    echo " $(INSTALL_DATA) '$$file' '$(DESTDIR)$(man1dir)/$$inst'"; \
	    $(INSTALL_DATA) "$$file" "$(DESTDIR)$(man1dir)/$$inst" || exit $$?; \
	  fi; \
	done; \
	for i in $$list; do echo "$$i"; done | $(am__base_list) | \
	while read files; do \
	  test -z "$$files" || { \
	    echo " $(INSTALL_DATA) $$files '$(DESTDIR)$(man1dir)'"; \
	    $(INSTALL_DATA) $$files "$(DESTDIR)$(man1dir)" || exit $$?; }; \
	done; }
	@list=''; test -n "$(man1dir)" || exit 0; \
	{ for i in $$list; do echo "$$i"; done; \
	l2='$(dist_man_MANS)'; for i in $$l2; do echo "$$i"; done | \
	  sed -n '/\.1[a-z]*$$/p'; \
	} | while read p; do \
	  if test -f $$p; then d=; else d="$(srcdir)/"; fi; \
	  echo "$$d$$p"; echo "$$p"; \
	done | \
	sed -e 'n;s,.*/,,;p;h;s,.*\.,,;s,^[^1][0-9a-z]*$$,1,;x' \
	      -e 's,\.[0-9a-z]*$$,,;$(transform);G;s,\n,.,' | \
	sed 'N;N;s,\n, ,g' | { \
	list=; while read file base inst; do \
	  if test "$$base" = "$$inst"; then list="$$list $$file"; else \
	    echo " $(INSTALL_DATA) '$$file' '$(DESTDIR)$(man1dir)/$$inst'"; \
	    $(INSTALL_DATA) "$$file" "$(DESTDIR)$(man1dir)/$$inst" || exit $$?; \
	  fi; \
	done; \
	for i in $$list; do echo "$$i"; done | $(am__base_list) | \
	while read files; do \
	  test -z "$$files" || { \
	    echo " $(INSTALL_DATA) $$files '$(DESTDIR)$(man1dir)'"; \
	    $(INSTALL_DATA) $$files "$(DESTDIR)$(man1dir)" || exit $$?; }; \
	done; }

uninstall-man1:
	@$(NORMAL_UNINSTALL)
	@list=''; test -n "$(man1dir)" || exit 0; \
	files=`{ for i in $$list; do echo "$$i"; done; \
	l2='$(notrans_dist_man_MANS)'; for i in $$l2; do echo "$$i"; done | \
	  sed -n '/\.1[a-z]*$$/p'; \
	} | sed 's,.*/,,;s,\.[^1][0-9a-z]*$$,.1,'`; \
	test -z "$$files" || { \
	  echo " ( cd '$(DESTDIR)$(man1dir)' && rm -f" $$files ")"; \
	  cd "$(DESTDIR)$(man1dir)" && rm -f $$files; }
	@list=''; test -n "$(man1dir)" || exit 0; \
	files=`{ for i in $$list; do echo "$$i"; done; \
	l2='$(dist_man_MANS)'; for i in $$l2; do echo "$$i"; done | \
	  sed -n '/\.1[a-z]*$$/p'; \
	} | sed -e 's,.*/,,;h;s,.*\.,,;s,^[^1][0-9a-z]*$$,1,;x' \
	      -e 's,\.[0-9a-z]*$$,,;$(transform);G;s,\n,.,'`; \
	test -z "$$files" || { \
	  echo " ( cd '$(DESTDIR)$(man1dir)' && rm -f" $$files ")"; \
	  cd "$(DESTDIR)$(man1dir)" && rm -f $$files; }
install-man7: $(dist_man_MANS) $(notrans_dist_man_MANS)
	@$(NORMAL_INSTALL)
	test -z "$(man7dir)" || $(MKDIR_P) "$(DESTDIR)$(man7dir)"
	@list=''; test -n "$(man7dir)" || exit 0; \
	{ for i in $$list; do echo "$$i"; done;  \
	l2='$(notrans_dist_man_MANS)'; for i in $$l2; do echo "$$i"; done | \
	  sed -n '/\.7[a-z]*$$/p'; \
	} | while read p; do \
	  if test -f $$p; then d=; else d="$(srcdir)/"; fi; \
	  echo "$$d$$p"; echo "$$p"; \
	done | \
	sed 'n;s,.*/,,;p;s,\.[^7][0-9a-z]*$$,.7,' | \
	sed 'N;N;s,\n, ,g' | { \
	list=; while read file base inst; do \
	  if test "$$base" = "$$inst"; then list="$$list $$file"; else \
	    echo " $(INSTALL_DATA) '$$file' '$(DESTDIR)$(man7dir)/$$inst'"; \
	    $(INSTALL_DATA) "$$file" "$(DESTDIR)$(man7dir)/$$inst" || exit $$?; \
	  fi; \
	done; \
	for i in $$list; do echo "$$i"; done | $(am__base_list) | \
	while read files; do \
	  test -z "$$files" || { \
	    echo " $(INSTALL_DATA) $$files '$(DESTDIR)$(man7dir)'"; \
	    $(INSTALL_DATA) $$files "$(DESTDIR)$(man7dir)" || exit $$?; }; \
	done; }
	@list=''; test -n "$(man7dir)" || exit 0; \
	{ for i in $$list; do echo "$$i"; done; \
	l2='$(dist_man_MANS)'; for i in $$l2; do echo "$$i"; done | \
	  sed -n '/\.7[a-z]*$$/p'; \
	} | while read p; do \
	  if test -f $$p; then d=; else d="$(srcdir)/"; fi; \
	  echo "$$d$$p"; echo "$$p"; \
	done | \
	sed -e 'n;s,.*/,,;p;h;s,.*\.,,;s,^[^7][0-9a-z]*$$,7,;x' \
	      -e 's,\.[0-9a-z]*$$,,;$(transform);G;s,\n,.,' | \
	sed 'N;N;s,\n, ,g' | { \
	list=; while read file base inst; do \
	  if test "$$base" = "$$inst"; then list="$$list $$file"; else \
	    echo " $(INSTALL_DATA) '$$file' '$(DESTDIR)$(man7dir)/$$inst'"; \
	    $(INSTALL_DATA) "$$file" "$(DESTDIR)$(man7dir)/$$inst" || exit $$?; \
	  fi; \
	done; \
	for i in $$list; do echo "$$i"; done | $(am__base_list) | \
	while read files; do \
	  test -z "$$files" || { \
	    echo " $(INSTALL_DATA) $$files '$(DESTDIR)$(man7dir)'"; \
	    $(INSTALL_DATA) $$files "$(DESTDIR)$(man7dir)" || exit $$?; }; \
	done; }

uninstall-man7:
	@$(NORMAL_UNINSTALL)
	@list=''; test -n "$(man7dir)" || exit 0; \
	files=`{ for i in $$list; do echo "$$i"; done; \
	l2='$(notrans_dist_man_MANS)'; for i in $$l2; do echo "$$i"; done | \
	  sed -n '/\.7[a-z]*$$/p'; \
	} | sed 's,.*/,,;s,\.[^7][0-9a-z]*$$,.7,'`; \
	test -z "$$files" || { \
	  echo " ( cd '$(DESTDIR)$(man7dir)' && rm -f" $$files ")"; \
	  cd "$(DESTDIR)$(man7dir)" && rm -f $$files; }
	@list=''; test -n "$(man7dir)" || exit 0; \
	files=`{ for i in $$list; do echo "$$i"; done; \
	l2='$(dist_man_MANS)'; for i in $$l2; do echo "$$i"; done | \
	  sed -n '/\.7[a-z]*$$/p'; \
	} | sed -e 's,.*/,,;h;s,.*\.,,;s,^[^7][0-9a-z]*$$,7,;x' \
	      -e 's,\.[0-9a-z]*$$,,;$(transform);G;s,\n,.,'`; \
	test -z "$$files" || { \
	  echo " ( cd '$(DESTDIR)$(man7dir)' && rm -f" $$files ")"; \
	  cd "$(DESTDIR)$(man7dir)" && rm -f $$files; }
install-includeHEADERS: $(include_HEADERS)
	@$(NORMAL_INSTALL)
	test -z "$(includedir)" || $(MKDIR_P) "$(DESTDIR)$(includedir)"
	@list='$(include_HEADERS)'; test -n "$(includedir)" || list=; \
	for p in $$list; do \
	  if test -f "$$p"; then d=; else d="$(srcdir)/"; fi; \
	  echo "$$d$$p"; \
	done | $(am__base_list) | \
	while read files; do \
	  echo " $(INSTALL_HEADER) $$files '$(DESTDIR)$(includedir)'"; \
	  $(INSTALL_HEADER) $$files "$(DESTDIR)$(includedir)" || exit $$?; \
	done

uninstall-includeHEADERS:
	@$(NORMAL_UNINSTALL)
	@list='$(include_HEADERS)'; test -n "$(includedir)" || list=; \
	files=`for p in $$list; do echo $$p; done | sed -e 's|^.*/||'`; \
	test -n "$$files" || exit 0; \
	echo " ( cd '$(DESTDIR)$(includedir)' && rm -f" $$files ")"; \
	cd "$(DESTDIR)$(includedir)" && rm -f $$files
install-modincludeHEADERS: $(modinclude_HEADERS)
	@$(NORMAL_INSTALL)
	test -z "$(modincludedir)" || $(MKDIR_P) "$(DESTDIR)$(modincludedir)"
	@list='$(modinclude_HEADERS)'; test -n "$(modincludedir)" || list=; \
	for p in $$list; do \
	  if test -f "$$p"; then d=; else d="$(srcdir)/"; fi; \
	  echo "$$d$$p"; \
	done | $(am__base_list) | \
	while read files; do \
	  echo " $(INSTALL_HEADER) $$files '$(DESTDIR)$(modincludedir)'"; \
	  $(INSTALL_HEADER) $$files "$(DESTDIR)$(modincludedir)" || exit $$?; \
	done

uninstall-modincludeHEADERS:
	@$(NORMAL_UNINSTALL)
	@list='$(modinclude_HEADERS)'; test -n "$(modincludedir)" || list=; \
	files=`for p in $$list; do echo $$p; done | sed -e 's|^.*/||'`; \
	test -n "$$files" || exit 0; \
	echo " ( cd '$(DESTDIR)$(modincludedir)' && rm -f" $$files ")"; \
	cd "$(DESTDIR)$(modincludedir)" && rm -f $$files
install-nodist_includeHEADERS: $(nodist_include_HEADERS)
	@$(NORMAL_INSTALL)
	test -z "$(includedir)" || $(MKDIR_P) "$(DESTDIR)$(includedir)"
	@list='$(nodist_include_HEADERS)'; test -n "$(includedir)" || list=; \
	for p in $$list; do \
	  if test -f "$$p"; then d=; else d="$(srcdir)/"; fi; \
	  echo "$$d$$p"; \
	done | $(am__base_list) | \
	while read files; do \
	  echo " $(INSTALL_HEADER) $$files '$(DESTDIR)$(includedir)'"; \
	  $(INSTALL_HEADER) $$files "$(DESTDIR)$(includedir)" || exit $$?; \
	done

uninstall-nodist_includeHEADERS:
	@$(NORMAL_UNINSTALL)
	@list='$(nodist_include_HEADERS)'; test -n "$(includedir)" || list=; \
	files=`for p in $$list; do echo $$p; done | sed -e 's|^.*/||'`; \
	test -n "$$files" || exit 0; \
	echo " ( cd '$(DESTDIR)$(includedir)' && rm -f" $$files ")"; \
	cd "$(DESTDIR)$(includedir)" && rm -f $$files

# This directory's subdirectories are mostly independent; you can cd
# into them and run `make' without going through this Makefile.
# To change the values of `make' variables: instead of editing Makefiles,
# (1) if the variable is set in `config.status', edit `config.status'
#     (which will cause the Makefiles to be regenerated when you run `make');
# (2) otherwise, pass the desired values on the `make' command line.
$(RECURSIVE_TARGETS):
	@fail= failcom='exit 1'; \
	for f in x $$MAKEFLAGS; do \
	  case $$f in \
	    *=* | --[!k]*);; \
	    *k*) failcom='fail=yes';; \
	  esac; \
	done; \
	dot_seen=no; \
	target=`echo $@ | sed s/-recursive//`; \
	list='$(SUBDIRS)'; for subdir in $$list; do \
	  echo "Making $$target in $$subdir"; \
	  if test "$$subdir" = "."; then \
	    dot_seen=yes; \
	    local_target="$$target-am"; \
	  else \
	    local_target="$$target"; \
	  fi; \
	  ($(am__cd) $$subdir && $(MAKE) $(AM_MAKEFLAGS) $$local_target) \
	  || eval $$failcom; \
	done; \
	if test "$$dot_seen" = "no"; then \
	  $(MAKE) $(AM_MAKEFLAGS) "$$target-am" || exit 1; \
	fi; test -z "$$fail"

$(RECURSIVE_CLEAN_TARGETS):
	@fail= failcom='exit 1'; \
	for f in x $$MAKEFLAGS; do \
	  case $$f in \
	    *=* | --[!k]*);; \
	    *k*) failcom='fail=yes';; \
	  esac; \
	done; \
	dot_seen=no; \
	case "$@" in \
	  distclean-* | maintainer-clean-*) list='$(DIST_SUBDIRS)' ;; \
	  *) list='$(SUBDIRS)' ;; \
	esac; \
	rev=''; for subdir in $$list; do \
	  if test "$$subdir" = "."; then :; else \
	    rev="$$subdir $$rev"; \
	  fi; \
	done; \
	rev="$$rev ."; \
	target=`echo $@ | sed s/-recursive//`; \
	for subdir in $$rev; do \
	  echo "Making $$target in $$subdir"; \
	  if test "$$subdir" = "."; then \
	    local_target="$$target-am"; \
	  else \
	    local_target="$$target"; \
	  fi; \
	  ($(am__cd) $$subdir && $(MAKE) $(AM_MAKEFLAGS) $$local_target) \
	  || eval $$failcom; \
	done && test -z "$$fail"
tags-recursive:
	list='$(SUBDIRS)'; for subdir in $$list; do \
	  test "$$subdir" = . || ($(am__cd) $$subdir && $(MAKE) $(AM_MAKEFLAGS) tags); \
	done
ctags-recursive:
	list='$(SUBDIRS)'; for subdir in $$list; do \
	  test "$$subdir" = . || ($(am__cd) $$subdir && $(MAKE) $(AM_MAKEFLAGS) ctags); \
	done

ID: $(HEADERS) $(SOURCES) $(LISP) $(TAGS_FILES)
	list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \
	unique=`for i in $$list; do \
	    if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \
	  done | \
	  $(AWK) '{ files[$$0] = 1; nonempty = 1; } \
	      END { if (nonempty) { for (i in files) print i; }; }'`; \
	mkid -fID $$unique
tags: TAGS

TAGS: tags-recursive $(HEADERS) $(SOURCES) config.h.in $(TAGS_DEPENDENCIES) \
		$(TAGS_FILES) $(LISP)
	set x; \
	here=`pwd`; \
	if ($(ETAGS) --etags-include --version) >/dev/null 2>&1; then \
	  include_option=--etags-include; \
	  empty_fix=.; \
	else \
	  include_option=--include; \
	  empty_fix=; \
	fi; \
	list='$(SUBDIRS)'; for subdir in $$list; do \
	  if test "$$subdir" = .; then :; else \
	    test ! -f $$subdir/TAGS || \
	      set "$$@" "$$include_option=$$here/$$subdir/TAGS"; \
	  fi; \
	done; \
	list='$(SOURCES) $(HEADERS) config.h.in $(LISP) $(TAGS_FILES)'; \
	unique=`for i in $$list; do \
	    if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \
	  done | \
	  $(AWK) '{ files[$$0] = 1; nonempty = 1; } \
	      END { if (nonempty) { for (i in files) print i; }; }'`; \
	shift; \
	if test -z "$(ETAGS_ARGS)$$*$$unique"; then :; else \
	  test -n "$$unique" || unique=$$empty_fix; \
	  if test $$# -gt 0; then \
	    $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \
	      "$$@" $$unique; \
	  else \
	    $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \
	      $$unique; \
	  fi; \
	fi
ctags: CTAGS
CTAGS: ctags-recursive $(HEADERS) $(SOURCES) config.h.in $(TAGS_DEPENDENCIES) \
		$(TAGS_FILES) $(LISP)
	list='$(SOURCES) $(HEADERS) config.h.in $(LISP) $(TAGS_FILES)'; \
	unique=`for i in $$list; do \
	    if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \
	  done | \
	  $(AWK) '{ files[$$0] = 1; nonempty = 1; } \
	      END { if (nonempty) { for (i in files) print i; }; }'`; \
	test -z "$(CTAGS_ARGS)$$unique" \
	  || $(CTAGS) $(CTAGSFLAGS) $(AM_CTAGSFLAGS) $(CTAGS_ARGS) \
	     $$unique

GTAGS:
	here=`$(am__cd) $(top_builddir) && pwd` \
	  && $(am__cd) $(top_srcdir) \
	  && gtags -i $(GTAGS_ARGS) "$$here"

distclean-tags:
	-rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags

check-TESTS: $(TESTS)
	@failed=0; all=0; xfail=0; xpass=0; skip=0; \
	srcdir=$(srcdir); export srcdir; \
	list=' $(TESTS) '; \
	$(am__tty_colors); \
	if test -n "$$list"; then \
	  for tst in $$list; do \
	    if test -f ./$$tst; then dir=./; \
	    elif test -f $$tst; then dir=; \
	    else dir="$(srcdir)/"; fi; \
	    if $(TESTS_ENVIRONMENT) $${dir}$$tst; then \
	      all=`expr $$all + 1`; \
	      case " $(XFAIL_TESTS) " in \
	      *[\ \	]$$tst[\ \	]*) \
		xpass=`expr $$xpass + 1`; \
		failed=`expr $$failed + 1`; \
		col=$$red; res=XPASS; \
	      ;; \
	      *) \
		col=$$grn; res=PASS; \
	      ;; \
	      esac; \
	    elif test $$? -ne 77; then \
	      all=`expr $$all + 1`; \
	      case " $(XFAIL_TESTS) " in \
	      *[\ \	]$$tst[\ \	]*) \
		xfail=`expr $$xfail + 1`; \
		col=$$lgn; res=XFAIL; \
	      ;; \
	      *) \
		failed=`expr $$failed + 1`; \
		col=$$red; res=FAIL; \
	      ;; \
	      esac; \
	    else \
	      skip=`expr $$skip + 1`; \
	      col=$$blu; res=SKIP; \
	    fi; \
	    echo "$${col}$$res$${std}: $$tst"; \
	  done; \
	  if test "$$all" -eq 1; then \
	    tests="test"; \
	    All=""; \
	  else \
	    tests="tests"; \
	    All="All "; \
	  fi; \
	  if test "$$failed" -eq 0; then \
	    if test "$$xfail" -eq 0; then \
	      banner="$$All$$all $$tests passed"; \
	    else \
	      if test "$$xfail" -eq 1; then failures=failure; else failures=failures; fi; \
	      banner="$$All$$all $$tests behaved as expected ($$xfail expected $$failures)"; \
	    fi; \
	  else \
	    if test "$$xpass" -eq 0; then \
	      banner="$$failed of $$all $$tests failed"; \
	    else \
	      if test "$$xpass" -eq 1; then passes=pass; else passes=passes; fi; \
	      banner="$$failed of $$all $$tests did not behave as expected ($$xpass unexpected $$passes)"; \
	    fi; \
	  fi; \
	  dashes="$$banner"; \
	  skipped=""; \
	  if test "$$skip" -ne 0; then \
	    if test "$$skip" -eq 1; then \
	      skipped="($$skip test was not run)"; \
	    else \
	      skipped="($$skip tests were not run)"; \
	    fi; \
	    test `echo "$$skipped" | wc -c` -le `echo "$$banner" | wc -c` || \
	      dashes="$$skipped"; \
	  fi; \
	  report=""; \
	  if test "$$failed" -ne 0 && test -n "$(PACKAGE_BUGREPORT)"; then \
	    report="Please report to $(PACKAGE_BUGREPORT)"; \
	    test `echo "$$report" | wc -c` -le `echo "$$banner" | wc -c` || \
	      dashes="$$report"; \
	  fi; \
	  dashes=`echo "$$dashes" | sed s/./=/g`; \
	  if test "$$failed" -eq 0; then \
	    echo "$$grn$$dashes"; \
	  else \
	    echo "$$red$$dashes"; \
	  fi; \
	  echo "$$banner"; \
	  test -z "$$skipped" || echo "$$skipped"; \
	  test -z "$$report" || echo "$$report"; \
	  echo "$$dashes$$std"; \
	  test "$$failed" -eq 0; \
	else :; fi

distdir: $(DISTFILES)
	@list='$(MANS)'; if test -n "$$list"; then \
	  list=`for p in $$list; do \
	    if test -f $$p; then d=; else d="$(srcdir)/"; fi; \
	    if test -f "$$d$$p"; then echo "$$d$$p"; else :; fi; done`; \
	  if test -n "$$list" && \
	    grep 'ab help2man is required to generate this page' $$list >/dev/null; then \
	    echo "error: found man pages containing the \`missing help2man' replacement text:" >&2; \
	    grep -l 'ab help2man is required to generate this page' $$list | sed 's/^/         /' >&2; \
	    echo "       to fix them, install help2man, remove and regenerate the man pages;" >&2; \
	    echo "       typically \`make maintainer-clean' will remove them" >&2; \
	    exit 1; \
	  else :; fi; \
	else :; fi
	$(am__remove_distdir)
	test -d "$(distdir)" || mkdir "$(distdir)"
	@srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \
	topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \
	list='$(DISTFILES)'; \
	  dist_files=`for file in $$list; do echo $$file; done | \
	  sed -e "s|^$$srcdirstrip/||;t" \
	      -e "s|^$$topsrcdirstrip/|$(top_builddir)/|;t"`; \
	case $$dist_files in \
	  */*) $(MKDIR_P) `echo "$$dist_files" | \
			   sed '/\//!d;s|^|$(distdir)/|;s,/[^/]*$$,,' | \
			   sort -u` ;; \
	esac; \
	for file in $$dist_files; do \
	  if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \
	  if test -d $$d/$$file; then \
	    dir=`echo "/$$file" | sed -e 's,/[^/]*$$,,'`; \
	    if test -d "$(distdir)/$$file"; then \
	      find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \
	    fi; \
	    if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \
	      cp -fpR $(srcdir)/$$file "$(distdir)$$dir" || exit 1; \
	      find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \
	    fi; \
	    cp -fpR $$d/$$file "$(distdir)$$dir" || exit 1; \
	  else \
	    test -f "$(distdir)/$$file" \
	    || cp -p $$d/$$file "$(distdir)/$$file" \
	    || exit 1; \
	  fi; \
	done
	@list='$(DIST_SUBDIRS)'; for subdir in $$list; do \
	  if test "$$subdir" = .; then :; else \
	    test -d "$(distdir)/$$subdir" \
	    || $(MKDIR_P) "$(distdir)/$$subdir" \
	    || exit 1; \
	  fi; \
	done
	@list='$(DIST_SUBDIRS)'; for subdir in $$list; do \
	  if test "$$subdir" = .; then :; else \
	    dir1=$$subdir; dir2="$(distdir)/$$subdir"; \
	    $(am__relativize); \
	    new_distdir=$$reldir; \
	    dir1=$$subdir; dir2="$(top_distdir)"; \
	    $(am__relativize); \
	    new_top_distdir=$$reldir; \
	    echo " (cd $$subdir && $(MAKE) $(AM_MAKEFLAGS) top_distdir="$$new_top_distdir" distdir="$$new_distdir" \\"; \
	    echo "     am__remove_distdir=: am__skip_length_check=: am__skip_mode_fix=: distdir)"; \
	    ($(am__cd) $$subdir && \
	      $(MAKE) $(AM_MAKEFLAGS) \
	        top_distdir="$$new_top_distdir" \
	        distdir="$$new_distdir" \
		am__remove_distdir=: \
		am__skip_length_check=: \
		am__skip_mode_fix=: \
	        distdir) \
	      || exit 1; \
	  fi; \
	done
	$(MAKE) $(AM_MAKEFLAGS) \
	  top_distdir="$(top_distdir)" distdir="$(distdir)" \
	  dist-hook
	-test -n "$(am__skip_mode_fix)" \
	|| find "$(distdir)" -type d ! -perm -755 \
		-exec chmod u+rwx,go+rx {} \; -o \
	  ! -type d ! -perm -444 -links 1 -exec chmod a+r {} \; -o \
	  ! -type d ! -perm -400 -exec chmod a+r {} \; -o \
	  ! -type d ! -perm -444 -exec $(install_sh) -c -m a+r {} {} \; \
	|| chmod -R a+r "$(distdir)"
dist-gzip: distdir
	tardir=$(distdir) && $(am__tar) | GZIP=$(GZIP_ENV) gzip -c >$(distdir).tar.gz
	$(am__remove_distdir)

dist-bzip2: distdir
	tardir=$(distdir) && $(am__tar) | bzip2 -9 -c >$(distdir).tar.bz2
	$(am__remove_distdir)

dist-lzma: distdir
	tardir=$(distdir) && $(am__tar) | lzma -9 -c >$(distdir).tar.lzma
	$(am__remove_distdir)

dist-xz: distdir
	tardir=$(distdir) && $(am__tar) | xz -c >$(distdir).tar.xz
	$(am__remove_distdir)

dist-tarZ: distdir
	tardir=$(distdir) && $(am__tar) | compress -c >$(distdir).tar.Z
	$(am__remove_distdir)

dist-shar: distdir
	shar $(distdir) | GZIP=$(GZIP_ENV) gzip -c >$(distdir).shar.gz
	$(am__remove_distdir)

dist-zip: distdir
	-rm -f $(distdir).zip
	zip -rq $(distdir).zip $(distdir)
	$(am__remove_distdir)

dist dist-all: distdir
	tardir=$(distdir) && $(am__tar) | GZIP=$(GZIP_ENV) gzip -c >$(distdir).tar.gz
	$(am__remove_distdir)

# This target untars the dist file and tries a VPATH configuration.  Then
# it guarantees that the distribution is self-contained by making another
# tarfile.
distcheck: dist
	case '$(DIST_ARCHIVES)' in \
	*.tar.gz*) \
	  GZIP=$(GZIP_ENV) gzip -dc $(distdir).tar.gz | $(am__untar) ;;\
	*.tar.bz2*) \
	  bzip2 -dc $(distdir).tar.bz2 | $(am__untar) ;;\
	*.tar.lzma*) \
	  lzma -dc $(distdir).tar.lzma | $(am__untar) ;;\
	*.tar.xz*) \
	  xz -dc $(distdir).tar.xz | $(am__untar) ;;\
	*.tar.Z*) \
	  uncompress -c $(distdir).tar.Z | $(am__untar) ;;\
	*.shar.gz*) \
	  GZIP=$(GZIP_ENV) gzip -dc $(distdir).shar.gz | unshar ;;\
	*.zip*) \
	  unzip $(distdir).zip ;;\
	esac
	chmod -R a-w $(distdir); chmod a+w $(distdir)
	mkdir $(distdir)/_build
	mkdir $(distdir)/_inst
	chmod a-w $(distdir)
	test -d $(distdir)/_build || exit 0; \
	dc_install_base=`$(am__cd) $(distdir)/_inst && pwd | sed -e 's,^[^:\\/]:[\\/],/,'` \
	  && dc_destdir="$${TMPDIR-/tmp}/am-dc-$$$$/" \
	  && am__cwd=`pwd` \
	  && $(am__cd) $(distdir)/_build \
	  && ../configure --srcdir=.. --prefix="$$dc_install_base" \
	    $(DISTCHECK_CONFIGURE_FLAGS) \
	  && $(MAKE) $(AM_MAKEFLAGS) \
	  && $(MAKE) $(AM_MAKEFLAGS) dvi \
	  && $(MAKE) $(AM_MAKEFLAGS) check \
	  && $(MAKE) $(AM_MAKEFLAGS) install \
	  && $(MAKE) $(AM_MAKEFLAGS) installcheck \
	  && $(MAKE) $(AM_MAKEFLAGS) uninstall \
	  && $(MAKE) $(AM_MAKEFLAGS) distuninstallcheck_dir="$$dc_install_base" \
	        distuninstallcheck \
	  && chmod -R a-w "$$dc_install_base" \
	  && ({ \
	       (cd ../.. && umask 077 && mkdir "$$dc_destdir") \
	       && $(MAKE) $(AM_MAKEFLAGS) DESTDIR="$$dc_destdir" install \
	       && $(MAKE) $(AM_MAKEFLAGS) DESTDIR="$$dc_destdir" uninstall \
	       && $(MAKE) $(AM_MAKEFLAGS) DESTDIR="$$dc_destdir" \
	            distuninstallcheck_dir="$$dc_destdir" distuninstallcheck; \
	      } || { rm -rf "$$dc_destdir"; exit 1; }) \
	  && rm -rf "$$dc_destdir" \
	  && $(MAKE) $(AM_MAKEFLAGS) dist \
	  && rm -rf $(DIST_ARCHIVES) \
	  && $(MAKE) $(AM_MAKEFLAGS) distcleancheck \
	  && cd "$$am__cwd" \
	  || exit 1
	$(am__remove_distdir)
	@(echo "$(distdir) archives ready for distribution: "; \
	  list='$(DIST_ARCHIVES)'; for i in $$list; do echo $$i; done) | \
	  sed -e 1h -e 1s/./=/g -e 1p -e 1x -e '$$p' -e '$$x'
distuninstallcheck:
	@$(am__cd) '$(distuninstallcheck_dir)' \
	&& test `$(distuninstallcheck_listfiles) | wc -l` -le 1 \
	   || { echo "ERROR: files left after uninstall:" ; \
	        if test -n "$(DESTDIR)"; then \
	          echo "  (check DESTDIR support)"; \
	        fi ; \
	        $(distuninstallcheck_listfiles) ; \
	        exit 1; } >&2
distcleancheck: distclean
	@if test '$(srcdir)' = . ; then \
	  echo "ERROR: distcleancheck can only run from a VPATH build" ; \
	  exit 1 ; \
	fi
	@test `$(distcleancheck_listfiles) | wc -l` -eq 0 \
	  || { echo "ERROR: files left in build directory after distclean:" ; \
	       $(distcleancheck_listfiles) ; \
	       exit 1; } >&2
check-am: all-am
	$(MAKE) $(AM_MAKEFLAGS) $(check_PROGRAMS)
	$(MAKE) $(AM_MAKEFLAGS) check-TESTS
check: $(BUILT_SOURCES)
	$(MAKE) $(AM_MAKEFLAGS) check-recursive
all-am: Makefile $(LIBRARIES) $(PROGRAMS) $(MANS) $(HEADERS) config.h \
		all-local
installdirs: installdirs-recursive
installdirs-am:
	for dir in "$(DESTDIR)$(libdir)" "$(DESTDIR)$(bindir)" "$(DESTDIR)$(man1dir)" "$(DESTDIR)$(man7dir)" "$(DESTDIR)$(includedir)" "$(DESTDIR)$(modincludedir)" "$(DESTDIR)$(includedir)"; do \
	  test -z "$$dir" || $(MKDIR_P) "$$dir"; \
	done
install: $(BUILT_SOURCES)
	$(MAKE) $(AM_MAKEFLAGS) install-recursive
install-exec: install-exec-recursive
install-data: install-data-recursive
uninstall: uninstall-recursive

install-am: all-am
	@$(MAKE) $(AM_MAKEFLAGS) install-exec-am install-data-am

installcheck: installcheck-recursive
install-strip:
	$(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \
	  install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \
	  `test -z '$(STRIP)' || \
	    echo "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'"` install
mostlyclean-generic:

clean-generic:
	-test -z "$(CLEANFILES)" || rm -f $(CLEANFILES)

distclean-generic:
	-test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES)
	-test . = "$(srcdir)" || test -z "$(CONFIG_CLEAN_VPATH_FILES)" || rm -f $(CONFIG_CLEAN_VPATH_FILES)
	-test -z "$(DISTCLEANFILES)" || rm -f $(DISTCLEANFILES)

maintainer-clean-generic:
	@echo "This command is intended for maintainers to use"
	@echo "it deletes files that may require special tools to rebuild."
	-test -z "$(BUILT_SOURCES)" || rm -f $(BUILT_SOURCES)
	-test -z "$(MAINTAINERCLEANFILES)" || rm -f $(MAINTAINERCLEANFILES)
clean: clean-recursive

clean-am: clean-binPROGRAMS clean-checkPROGRAMS clean-generic \
	clean-libLIBRARIES clean-noinstPROGRAMS mostlyclean-am

distclean: distclean-recursive
	-rm -f $(am__CONFIG_DISTCLEAN_FILES)
	-rm -rf ./$(DEPDIR)
	-rm -f Makefile
distclean-am: clean-am distclean-compile distclean-generic \
	distclean-hdr distclean-local distclean-tags

dvi: dvi-recursive

dvi-am:

html: html-recursive

html-am:

info: info-recursive

info-am:

install-data-am: install-includeHEADERS install-man \
	install-modincludeHEADERS install-nodist_includeHEADERS

install-dvi: install-dvi-recursive

install-dvi-am:

install-exec-am: install-binPROGRAMS install-libLIBRARIES
	@$(NORMAL_INSTALL)
	$(MAKE) $(AM_MAKEFLAGS) install-exec-hook
install-html: install-html-recursive

install-html-am:

install-info: install-info-recursive

install-info-am:

install-man: install-man1 install-man7

install-pdf: install-pdf-recursive

install-pdf-am:

install-ps: install-ps-recursive

install-ps-am:

installcheck-am:

maintainer-clean: maintainer-clean-recursive
	-rm -f $(am__CONFIG_DISTCLEAN_FILES)
	-rm -rf $(top_srcdir)/autom4te.cache
	-rm -rf ./$(DEPDIR)
	-rm -f Makefile
maintainer-clean-am: distclean-am maintainer-clean-generic

mostlyclean: mostlyclean-recursive

mostlyclean-am: mostlyclean-compile mostlyclean-generic

pdf: pdf-recursive

pdf-am:

ps: ps-recursive

ps-am:

uninstall-am: uninstall-binPROGRAMS uninstall-includeHEADERS \
	uninstall-libLIBRARIES uninstall-man \
	uninstall-modincludeHEADERS uninstall-nodist_includeHEADERS
	@$(NORMAL_INSTALL)
	$(MAKE) $(AM_MAKEFLAGS) uninstall-hook
uninstall-man: uninstall-man1 uninstall-man7

.MAKE: $(RECURSIVE_CLEAN_TARGETS) $(RECURSIVE_TARGETS) all check \
	check-am ctags-recursive install install-am install-exec-am \
	install-strip tags-recursive uninstall-am

.PHONY: $(RECURSIVE_CLEAN_TARGETS) $(RECURSIVE_TARGETS) CTAGS GTAGS \
	all all-am all-local am--refresh check check-TESTS check-am \
	clean clean-binPROGRAMS clean-checkPROGRAMS clean-generic \
	clean-libLIBRARIES clean-noinstPROGRAMS ctags ctags-recursive \
	dist dist-all dist-bzip2 dist-gzip dist-hook dist-lzma \
	dist-shar dist-tarZ dist-xz dist-zip distcheck distclean \
	distclean-compile distclean-generic distclean-hdr \
	distclean-local distclean-tags distcleancheck distdir \
	distuninstallcheck dvi dvi-am html html-am info info-am \
	install install-am install-binPROGRAMS install-data \
	install-data-am install-dvi install-dvi-am install-exec \
	install-exec-am install-exec-hook install-html install-html-am \
	install-includeHEADERS install-info install-info-am \
	install-libLIBRARIES install-man install-man1 install-man7 \
	install-modincludeHEADERS install-nodist_includeHEADERS \
	install-pdf install-pdf-am install-ps install-ps-am \
	install-strip installcheck installcheck-am installdirs \
	installdirs-am maintainer-clean maintainer-clean-generic \
	mostlyclean mostlyclean-compile mostlyclean-generic pdf pdf-am \
	ps ps-am tags tags-recursive uninstall uninstall-am \
	uninstall-binPROGRAMS uninstall-hook uninstall-includeHEADERS \
	uninstall-libLIBRARIES uninstall-man uninstall-man1 \
	uninstall-man7 uninstall-modincludeHEADERS \
	uninstall-nodist_includeHEADERS


re2c-main.$(OBJEXT): tools/re2c/main.c
	$(CC_FOR_BUILD) $(CFLAGS_FOR_BUILD) $(DEFAULT_INCLUDES) $(INCLUDES) \
	  -c -o $@ `test -f tools/re2c/main.c || echo '$(srcdir)/'`tools/re2c/main.c

re2c-code.$(OBJEXT): tools/re2c/code.c
	$(CC_FOR_BUILD) $(CFLAGS_FOR_BUILD) $(DEFAULT_INCLUDES) $(INCLUDES) \
	  -c -o $@ `test -f tools/re2c/code.c || echo '$(srcdir)/'`tools/re2c/code.c

re2c-dfa.$(OBJEXT): tools/re2c/dfa.c
	$(CC_FOR_BUILD) $(CFLAGS_FOR_BUILD) $(DEFAULT_INCLUDES) $(INCLUDES) \
	  -c -o $@ `test -f tools/re2c/dfa.c || echo '$(srcdir)/'`tools/re2c/dfa.c

re2c-parser.$(OBJEXT): tools/re2c/parser.c
	$(CC_FOR_BUILD) $(CFLAGS_FOR_BUILD) $(DEFAULT_INCLUDES) $(INCLUDES) \
	  -c -o $@ `test -f tools/re2c/parser.c || echo '$(srcdir)/'`tools/re2c/parser.c

re2c-actions.$(OBJEXT): tools/re2c/actions.c
	$(CC_FOR_BUILD) $(CFLAGS_FOR_BUILD) $(DEFAULT_INCLUDES) $(INCLUDES) \
	  -c -o $@ `test -f tools/re2c/actions.c || echo '$(srcdir)/'`tools/re2c/actions.c

re2c-scanner.$(OBJEXT): tools/re2c/scanner.c
	$(CC_FOR_BUILD) $(CFLAGS_FOR_BUILD) $(DEFAULT_INCLUDES) $(INCLUDES) \
	  -c -o $@ `test -f tools/re2c/scanner.c || echo '$(srcdir)/'`tools/re2c/scanner.c

re2c-mbo_getopt.$(OBJEXT): tools/re2c/mbo_getopt.c
	$(CC_FOR_BUILD) $(CFLAGS_FOR_BUILD) $(DEFAULT_INCLUDES) $(INCLUDES) \
	  -c -o $@ `test -f tools/re2c/mbo_getopt.c || echo '$(srcdir)/'`tools/re2c/mbo_getopt.c

re2c-substr.$(OBJEXT): tools/re2c/substr.c
	$(CC_FOR_BUILD) $(CFLAGS_FOR_BUILD) $(DEFAULT_INCLUDES) $(INCLUDES) \
	  -c -o $@ `test -f tools/re2c/substr.c || echo '$(srcdir)/'`tools/re2c/substr.c

re2c-translate.$(OBJEXT): tools/re2c/translate.c
	$(CC_FOR_BUILD) $(CFLAGS_FOR_BUILD) $(DEFAULT_INCLUDES) $(INCLUDES) \
	  -c -o $@ `test -f tools/re2c/translate.c || echo '$(srcdir)/'`tools/re2c/translate.c

genmacro.$(OBJEXT): tools/genmacro/genmacro.c
	$(CC_FOR_BUILD) $(CFLAGS_FOR_BUILD) $(DEFAULT_INCLUDES) $(INCLUDES) \
	  -c -o $@ `test -f tools/genmacro/genmacro.c || echo '$(srcdir)/'`tools/genmacro/genmacro.c
.gperf.c: genperf$(EXEEXT)
	$(top_builddir)/genperf$(EXEEXT) $< $@

genperf.$(OBJEXT): tools/genperf/genperf.c
	$(CC_FOR_BUILD) $(CFLAGS_FOR_BUILD) $(DEFAULT_INCLUDES) $(INCLUDES) \
	  -c -o $@ `test -f tools/genperf/genperf.c || echo '$(srcdir)/'`tools/genperf/genperf.c

gp-perfect.$(OBJEXT): tools/genperf/perfect.c
	$(CC_FOR_BUILD) $(CFLAGS_FOR_BUILD) $(DEFAULT_INCLUDES) $(INCLUDES) \
	  -c -o $@ `test -f tools/genperf/perfect.c || echo '$(srcdir)/'`tools/genperf/perfect.c

gp-phash.$(OBJEXT): libyasm/phash.c
	$(CC_FOR_BUILD) $(CFLAGS_FOR_BUILD) $(DEFAULT_INCLUDES) $(INCLUDES) \
	  -c -o $@ `test -f libyasm/phash.c || echo '$(srcdir)/'`libyasm/phash.c

gp-xmalloc.$(OBJEXT): libyasm/xmalloc.c
	$(CC_FOR_BUILD) $(CFLAGS_FOR_BUILD) $(DEFAULT_INCLUDES) $(INCLUDES) \
	  -c -o $@ `test -f libyasm/xmalloc.c || echo '$(srcdir)/'`libyasm/xmalloc.c

gp-xstrdup.$(OBJEXT): libyasm/xstrdup.c
	$(CC_FOR_BUILD) $(CFLAGS_FOR_BUILD) $(DEFAULT_INCLUDES) $(INCLUDES) \
	  -c -o $@ `test -f libyasm/xstrdup.c || echo '$(srcdir)/'`libyasm/xstrdup.c

# Use Pyxelator to generate Pyrex function headers.
@HAVE_PYTHON_BINDINGS_TRUE@_yasm.pxi: ${HEADERS}
@HAVE_PYTHON_BINDINGS_TRUE@	@rm -rf .tmp
@HAVE_PYTHON_BINDINGS_TRUE@	@mkdir .tmp
@HAVE_PYTHON_BINDINGS_TRUE@	$(PYTHON) $(srcdir)/tools/python-yasm/pyxelator/wrap_yasm.py \
@HAVE_PYTHON_BINDINGS_TRUE@		"YASM_DIR=${srcdir}" "CPP=${CPP}" "CPPFLAGS=${CPPFLAGS}"
@HAVE_PYTHON_BINDINGS_TRUE@	@rm -rf .tmp

# Need to build a local copy of the main Pyrex input file to include _yasm.pxi
# from the build directory.  Also need to fixup the other .pxi include paths.
@HAVE_PYTHON_BINDINGS_TRUE@yasm.pyx: $(srcdir)/tools/python-yasm/yasm.pyx
@HAVE_PYTHON_BINDINGS_TRUE@	sed -e 's,^include "\([^_]\),include "${srcdir}/tools/python-yasm/\1,' \
@HAVE_PYTHON_BINDINGS_TRUE@		$(srcdir)/tools/python-yasm/yasm.pyx > $@

# Actually run Cython
@HAVE_PYTHON_BINDINGS_TRUE@yasm_python.c: yasm.pyx _yasm.pxi $(PYBINDING_DEPS)
@HAVE_PYTHON_BINDINGS_TRUE@	$(PYTHON) -c "from Cython.Compiler.Main import main; main(command_line=1)" \
@HAVE_PYTHON_BINDINGS_TRUE@		-o $@ yasm.pyx

# Now the Python build magic...
@HAVE_PYTHON_BINDINGS_TRUE@python-setup.txt: Makefile
@HAVE_PYTHON_BINDINGS_TRUE@	echo "includes=${DEFS} ${DEFAULT_INCLUDES} ${INCLUDES} ${AM_CPPFLAGS} ${CPPFLAGS}" > python-setup.txt
@HAVE_PYTHON_BINDINGS_TRUE@	echo "sources=${libyasm_a_SOURCES} ${nodist_libyasm_a_SOURCES}" >> python-setup.txt
@HAVE_PYTHON_BINDINGS_TRUE@	echo "srcdir=${srcdir}" >> python-setup.txt
@HAVE_PYTHON_BINDINGS_TRUE@	echo "gcc=${GCC}" >> python-setup.txt

@HAVE_PYTHON_BINDINGS_TRUE@.python-build: python-setup.txt yasm_python.c ${libyasm_a_SOURCES} ${nodist_libyasm_a_SOURCES}
@HAVE_PYTHON_BINDINGS_TRUE@	$(PYTHON) `test -f tools/python-yasm/setup.py || echo '$(srcdir)/'`tools/python-yasm/setup.py build
@HAVE_PYTHON_BINDINGS_TRUE@	touch .python-build
@HAVE_PYTHON_BINDINGS_TRUE@python-build: .python-build

@HAVE_PYTHON_BINDINGS_TRUE@python-install: .python-build
@HAVE_PYTHON_BINDINGS_TRUE@	$(PYTHON) `test -f tools/python-yasm/setup.py || echo '$(srcdir)/'`tools/python-yasm/setup.py install "--install-lib=$(DESTDIR)$(pythondir)"

@HAVE_PYTHON_BINDINGS_TRUE@python-uninstall:
@HAVE_PYTHON_BINDINGS_TRUE@	rm -f `$(PYTHON) -c "import sys;sys.path.insert(0, '${DESTDIR}${pythondir}'); import yasm; print yasm.__file__"`

@HAVE_PYTHON_BINDINGS_FALSE@python-build:
@HAVE_PYTHON_BINDINGS_FALSE@python-install:
@HAVE_PYTHON_BINDINGS_FALSE@python-uninstall:

modules/arch/x86/x86id.c: x86insn_nasm.c x86insn_gas.c x86insns.c

@HAVE_PYTHON_TRUE@x86insn_nasm.gperf x86insn_gas.gperf x86insns.c: $(srcdir)/modules/arch/x86/gen_x86_insn.py
@HAVE_PYTHON_TRUE@	$(PYTHON) $(srcdir)/modules/arch/x86/gen_x86_insn.py
@HAVE_PYTHON_FALSE@x86insn_nasm.gperf: $(srcdir)/x86insn_nasm.gperf
@HAVE_PYTHON_FALSE@	@echo Python must be installed to regenerate x86 instructions files
@HAVE_PYTHON_FALSE@	cp $(srcdir)/x86insn_nasm.gperf $@
@HAVE_PYTHON_FALSE@x86insn_gas.gperf: $(srcdir)/x86insn_gas.gperf
@HAVE_PYTHON_FALSE@	@echo Python must be installed to regenerate x86 instructions files
@HAVE_PYTHON_FALSE@	cp $(srcdir)/x86insn_gas.gperf $@

# Use suffix rules for gperf files
x86insn_nasm.c: x86insn_nasm.gperf genperf$(EXEEXT)
x86insn_gas.c: x86insn_gas.gperf genperf$(EXEEXT)
x86cpu.c: $(srcdir)/modules/arch/x86/x86cpu.gperf genperf$(EXEEXT)
	$(top_builddir)/genperf$(EXEEXT) $(srcdir)/modules/arch/x86/x86cpu.gperf $@
x86regtmod.c: $(srcdir)/modules/arch/x86/x86regtmod.gperf genperf$(EXEEXT)
	$(top_builddir)/genperf$(EXEEXT) $(srcdir)/modules/arch/x86/x86regtmod.gperf $@

lc3bid.c: $(srcdir)/modules/arch/lc3b/lc3bid.re re2c$(EXEEXT)
	$(top_builddir)/re2c$(EXEEXT) -s -o $@ $(srcdir)/modules/arch/lc3b/lc3bid.re

@BUILD_MAN_TRUE@yasm_arch.7: modules/arch/yasm_arch.xml
@BUILD_MAN_TRUE@	$(XMLTO) -o $(top_builddir) man $(srcdir)/modules/arch/yasm_arch.xml

#EXTRA_DIST += modules/listfmts/nasm/tests/Makefile.inc

#include modules/listfmts/nasm/tests/Makefile.inc

gas-token.c: $(srcdir)/modules/parsers/gas/gas-token.re re2c$(EXEEXT)
	$(top_builddir)/re2c$(EXEEXT) -b -o $@ $(srcdir)/modules/parsers/gas/gas-token.re

nasm-token.c: $(srcdir)/modules/parsers/nasm/nasm-token.re re2c$(EXEEXT)
	$(top_builddir)/re2c$(EXEEXT) -b -o $@ $(srcdir)/modules/parsers/nasm/nasm-token.re

$(top_srcdir)/modules/parsers/nasm/nasm-parser.c: nasm-macros.c

nasm-macros.c: $(srcdir)/modules/parsers/nasm/nasm-std.mac genmacro$(EXEEXT)
	$(top_builddir)/genmacro$(EXEEXT) $@ nasm_standard_mac $(srcdir)/modules/parsers/nasm/nasm-std.mac

@BUILD_MAN_TRUE@yasm_parsers.7: modules/parsers/yasm_parsers.xml
@BUILD_MAN_TRUE@	$(XMLTO) -o $(top_builddir) man $(srcdir)/modules/parsers/yasm_parsers.xml

$(top_srcdir)/modules/preprocs/nasm/nasm-preproc.c: nasm-version.c

nasm-version.c: version.mac genmacro$(EXEEXT)
	$(top_builddir)/genmacro$(EXEEXT) $@ nasm_version_mac version.mac

version.mac: genversion$(EXEEXT)
	$(top_builddir)/genversion$(EXEEXT) $@

genversion.$(OBJEXT): modules/preprocs/nasm/genversion.c
	$(CC_FOR_BUILD) $(DEFAULT_INCLUDES) $(INCLUDES) -c -o $@ `test -f modules/preprocs/nasm/genversion.c || echo '$(srcdir)/'`modules/preprocs/nasm/genversion.c

#EXTRA_DIST += modules/preprocs/gas/tests/rawpp_test.sh
#EXTRA_DIST += modules/preprocs/gas/tests/longline.asm
#EXTRA_DIST += modules/preprocs/gas/tests/longline.hex

#EXTRA_DIST += modules/dbgfmts/codeview/tests/Makefile.inc
#include modules/dbgfmts/codeview/tests/Makefile.inc

@BUILD_MAN_TRUE@yasm_dbgfmts.7: modules/dbgfmts/yasm_dbgfmts.xml
@BUILD_MAN_TRUE@	$(XMLTO) -o $(top_builddir) man $(srcdir)/modules/dbgfmts/yasm_dbgfmts.xml

$(top_srcdir)/modules/objfmts/coff/coff-objfmt.c: win64-nasm.c win64-gas.c

win64-nasm.c: $(srcdir)/modules/objfmts/coff/win64-nasm.mac genmacro$(EXEEXT)
	$(top_builddir)/genmacro$(EXEEXT) $@ win64_nasm_stdmac $(srcdir)/modules/objfmts/coff/win64-nasm.mac

win64-gas.c: $(srcdir)/modules/objfmts/coff/win64-gas.mac genmacro$(EXEEXT)
	$(top_builddir)/genmacro$(EXEEXT) $@ win64_gas_stdmac $(srcdir)/modules/objfmts/coff/win64-gas.mac

@BUILD_MAN_TRUE@yasm_objfmts.7: modules/objfmts/yasm_objfmts.xml
@BUILD_MAN_TRUE@	$(XMLTO) -o $(top_builddir) man $(srcdir)/modules/objfmts/yasm_objfmts.xml

module.c: $(top_srcdir)/libyasm/module.in genmodule$(EXEEXT) Makefile
	$(top_builddir)/genmodule$(EXEEXT) $(top_srcdir)/libyasm/module.in Makefile

genmodule.$(OBJEXT): libyasm/genmodule.c
	$(CC_FOR_BUILD) $(DEFAULT_INCLUDES) $(INCLUDES) -c -o $@ `test -f libyasm/genmodule.c || echo '$(srcdir)/'`libyasm/genmodule.c

@BUILD_MAN_TRUE@yasm.1: frontends/yasm/yasm.xml
@BUILD_MAN_TRUE@	$(XMLTO) -o $(top_builddir) man $(srcdir)/frontends/yasm/yasm.xml

$(srcdir)/frontends/yasm/yasm.c: license.c

license.c: $(srcdir)/COPYING genstring$(EXEEXT)
	$(top_builddir)/genstring$(EXEEXT) license_msg $@ $(srcdir)/COPYING

$(srcdir)/frontends/vsyasm/vsyasm.c: license.c

dist-hook: YASM-VERSION-FILE YASM-VERSION.h
	cp YASM-VERSION-FILE $(distdir)/version
	cp YASM-VERSION.h $(distdir)/Mkfiles/dj/
	cp YASM-VERSION.h $(distdir)/Mkfiles/vc9/
	cp YASM-VERSION.h $(distdir)/Mkfiles/vc10/

YASM-VERSION-FILE: $(top_srcdir)/YASM-VERSION-GEN.sh
	$(top_srcdir)/YASM-VERSION-GEN.sh

distclean-local:
	-rm -rf results
@HAVE_PYTHON_TRUE@	-rm -rf build

# Until gets fixed libyasm cross-build for target system
# use fixinstall-yasm-XXX make targets
all-local: python-build
install-exec-hook: python-install
uninstall-hook: python-uninstall

genstring.$(OBJEXT): genstring.c
	$(CC_FOR_BUILD) $(DEFAULT_INCLUDES) $(INCLUDES) -c -o $@ `test -f genstring.c || echo '$(srcdir)/'`genstring.c

# Tell versions [3.59,3.63) of GNU make to not export all variables.
# Otherwise a system limit (for SysV at least) may be exceeded.
.NOEXPORT: