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
|
# 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@
# # Process this file with automake to produce Makefile.in.
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@
target_triplet = @target@
bin_PROGRAMS = tccat$(EXEEXT) tcdecode$(EXEEXT) tcdemux$(EXEEXT) \
tcextract$(EXEEXT) tcprobe$(EXEEXT) $(am__EXEEXT_1) \
tcscan$(EXEEXT) tcxmlcheck$(EXEEXT) tcxpm2rgb$(EXEEXT)
subdir = import
DIST_COMMON = $(srcdir)/Makefile.am $(srcdir)/Makefile.in
ACLOCAL_M4 = $(top_srcdir)/aclocal.m4
am__aclocal_m4_deps = $(top_srcdir)/acinclude.m4 \
$(top_srcdir)/configure.in
am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \
$(ACLOCAL_M4)
mkinstalldirs = $(install_sh) -d
CONFIG_HEADER = $(top_builddir)/config.h
CONFIG_CLEAN_FILES =
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)$(pkgdir)" "$(DESTDIR)$(bindir)"
LTLIBRARIES = $(pkg_LTLIBRARIES)
am__DEPENDENCIES_1 =
a52_decore_la_DEPENDENCIES = $(am__DEPENDENCIES_1) \
$(am__DEPENDENCIES_1)
am_a52_decore_la_OBJECTS = a52_decore.lo
a52_decore_la_OBJECTS = $(am_a52_decore_la_OBJECTS)
a52_decore_la_LINK = $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) \
$(LIBTOOLFLAGS) --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) \
$(a52_decore_la_LDFLAGS) $(LDFLAGS) -o $@
@HAVE_A52_TRUE@am_a52_decore_la_rpath = -rpath $(pkgdir)
import_ac3_la_LIBADD =
am_import_ac3_la_OBJECTS = import_ac3.lo
import_ac3_la_OBJECTS = $(am_import_ac3_la_OBJECTS)
import_ac3_la_LINK = $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) \
$(LIBTOOLFLAGS) --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) \
$(import_ac3_la_LDFLAGS) $(LDFLAGS) -o $@
import_alsa_la_DEPENDENCIES =
am_import_alsa_la_OBJECTS = import_alsa.lo
import_alsa_la_OBJECTS = $(am_import_alsa_la_OBJECTS)
import_alsa_la_LINK = $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) \
$(LIBTOOLFLAGS) --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) \
$(import_alsa_la_LDFLAGS) $(LDFLAGS) -o $@
@HAVE_ALSA_TRUE@am_import_alsa_la_rpath = -rpath $(pkgdir)
import_avi_la_LIBADD =
am_import_avi_la_OBJECTS = import_avi.lo
import_avi_la_OBJECTS = $(am_import_avi_la_OBJECTS)
import_avi_la_LINK = $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) \
$(LIBTOOLFLAGS) --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) \
$(import_avi_la_LDFLAGS) $(LDFLAGS) -o $@
import_bktr_la_LIBADD =
am_import_bktr_la_OBJECTS = import_bktr.lo
import_bktr_la_OBJECTS = $(am_import_bktr_la_OBJECTS)
import_bktr_la_LINK = $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) \
$(LIBTOOLFLAGS) --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) \
$(import_bktr_la_LDFLAGS) $(LDFLAGS) -o $@
@HAVE_BKTR_TRUE@am_import_bktr_la_rpath = -rpath $(pkgdir)
import_bsdav_la_LIBADD =
am_import_bsdav_la_OBJECTS = import_bsdav_la-import_bsdav.lo
import_bsdav_la_OBJECTS = $(am_import_bsdav_la_OBJECTS)
import_bsdav_la_LINK = $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) \
$(LIBTOOLFLAGS) --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) \
$(import_bsdav_la_LDFLAGS) $(LDFLAGS) -o $@
import_dv_la_LIBADD =
am_import_dv_la_OBJECTS = import_dv_la-import_dv.lo
import_dv_la_OBJECTS = $(am_import_dv_la_OBJECTS)
import_dv_la_LINK = $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) \
$(LIBTOOLFLAGS) --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) \
$(import_dv_la_LDFLAGS) $(LDFLAGS) -o $@
import_dvd_la_DEPENDENCIES = $(am__DEPENDENCIES_1)
am_import_dvd_la_OBJECTS = import_dvd_la-import_dvd.lo \
import_dvd_la-ac3scan.lo import_dvd_la-dvd_reader.lo \
import_dvd_la-clone.lo import_dvd_la-ioaux.lo \
import_dvd_la-frame_info.lo import_dvd_la-ivtc.lo
import_dvd_la_OBJECTS = $(am_import_dvd_la_OBJECTS)
import_dvd_la_LINK = $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) \
$(LIBTOOLFLAGS) --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) \
$(import_dvd_la_LDFLAGS) $(LDFLAGS) -o $@
@HAVE_LIBDVDREAD_TRUE@am_import_dvd_la_rpath = -rpath $(pkgdir)
import_ffmpeg_la_DEPENDENCIES = $(am__DEPENDENCIES_1)
am_import_ffmpeg_la_OBJECTS = import_ffmpeg_la-import_ffmpeg.lo
import_ffmpeg_la_OBJECTS = $(am_import_ffmpeg_la_OBJECTS)
import_ffmpeg_la_LINK = $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) \
$(LIBTOOLFLAGS) --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) \
$(import_ffmpeg_la_LDFLAGS) $(LDFLAGS) -o $@
@HAVE_FFMPEG_TRUE@am_import_ffmpeg_la_rpath = -rpath $(pkgdir)
import_im_la_DEPENDENCIES = $(am__DEPENDENCIES_1)
am_import_im_la_OBJECTS = import_im_la-import_im.lo
import_im_la_OBJECTS = $(am_import_im_la_OBJECTS)
import_im_la_LINK = $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) \
$(LIBTOOLFLAGS) --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) \
$(import_im_la_LDFLAGS) $(LDFLAGS) -o $@
@HAVE_IMAGEMAGICK_TRUE@am_import_im_la_rpath = -rpath $(pkgdir)
import_imlist_la_DEPENDENCIES = $(am__DEPENDENCIES_1)
am_import_imlist_la_OBJECTS = import_imlist_la-import_imlist.lo
import_imlist_la_OBJECTS = $(am_import_imlist_la_OBJECTS)
import_imlist_la_LINK = $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) \
$(LIBTOOLFLAGS) --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) \
$(import_imlist_la_LDFLAGS) $(LDFLAGS) -o $@
@HAVE_IMAGEMAGICK_TRUE@am_import_imlist_la_rpath = -rpath $(pkgdir)
import_lzo_la_DEPENDENCIES = $(am__DEPENDENCIES_1)
am_import_lzo_la_OBJECTS = import_lzo_la-import_lzo.lo
import_lzo_la_OBJECTS = $(am_import_lzo_la_OBJECTS)
import_lzo_la_LINK = $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) \
$(LIBTOOLFLAGS) --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) \
$(import_lzo_la_LDFLAGS) $(LDFLAGS) -o $@
@HAVE_LZO_TRUE@am_import_lzo_la_rpath = -rpath $(pkgdir)
import_mov_la_DEPENDENCIES = $(am__DEPENDENCIES_1)
am_import_mov_la_OBJECTS = import_mov_la-import_mov.lo
import_mov_la_OBJECTS = $(am_import_mov_la_OBJECTS)
import_mov_la_LINK = $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) \
$(LIBTOOLFLAGS) --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) \
$(import_mov_la_LDFLAGS) $(LDFLAGS) -o $@
@HAVE_LIBQUICKTIME_TRUE@am_import_mov_la_rpath = -rpath $(pkgdir)
import_mp3_la_LIBADD =
am_import_mp3_la_OBJECTS = import_mp3.lo
import_mp3_la_OBJECTS = $(am_import_mp3_la_OBJECTS)
import_mp3_la_LINK = $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) \
$(LIBTOOLFLAGS) --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) \
$(import_mp3_la_LDFLAGS) $(LDFLAGS) -o $@
import_mpeg2_la_LIBADD =
am_import_mpeg2_la_OBJECTS = import_mpeg2_la-import_mpeg2.lo
import_mpeg2_la_OBJECTS = $(am_import_mpeg2_la_OBJECTS)
import_mpeg2_la_LINK = $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) \
$(LIBTOOLFLAGS) --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) \
$(import_mpeg2_la_LDFLAGS) $(LDFLAGS) -o $@
import_mplayer_la_LIBADD =
am_import_mplayer_la_OBJECTS = import_mplayer.lo
import_mplayer_la_OBJECTS = $(am_import_mplayer_la_OBJECTS)
import_mplayer_la_LINK = $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) \
$(LIBTOOLFLAGS) --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) \
$(import_mplayer_la_LDFLAGS) $(LDFLAGS) -o $@
import_null_la_LIBADD =
am_import_null_la_OBJECTS = import_null.lo
import_null_la_OBJECTS = $(am_import_null_la_OBJECTS)
import_null_la_LINK = $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) \
$(LIBTOOLFLAGS) --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) \
$(import_null_la_LDFLAGS) $(LDFLAGS) -o $@
import_ogg_la_LIBADD =
am_import_ogg_la_OBJECTS = import_ogg_la-import_ogg.lo
import_ogg_la_OBJECTS = $(am_import_ogg_la_OBJECTS)
import_ogg_la_LINK = $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) \
$(LIBTOOLFLAGS) --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) \
$(import_ogg_la_LDFLAGS) $(LDFLAGS) -o $@
import_oss_la_LIBADD =
am_import_oss_la_OBJECTS = import_oss.lo
import_oss_la_OBJECTS = $(am_import_oss_la_OBJECTS)
import_oss_la_LINK = $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) \
$(LIBTOOLFLAGS) --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) \
$(import_oss_la_LDFLAGS) $(LDFLAGS) -o $@
@HAVE_OSS_TRUE@am_import_oss_la_rpath = -rpath $(pkgdir)
import_pv3_la_LIBADD =
am_import_pv3_la_OBJECTS = import_pv3.lo w32dll.lo w32dll-emu.lo
import_pv3_la_OBJECTS = $(am_import_pv3_la_OBJECTS)
import_pv3_la_LINK = $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) \
$(LIBTOOLFLAGS) --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) \
$(import_pv3_la_LDFLAGS) $(LDFLAGS) -o $@
@ENABLE_PV3_TRUE@am_import_pv3_la_rpath = -rpath $(pkgdir)
import_pvn_la_LIBADD =
am_import_pvn_la_OBJECTS = import_pvn.lo
import_pvn_la_OBJECTS = $(am_import_pvn_la_OBJECTS)
import_pvn_la_LINK = $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) \
$(LIBTOOLFLAGS) --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) \
$(import_pvn_la_LDFLAGS) $(LDFLAGS) -o $@
import_raw_la_LIBADD =
am_import_raw_la_OBJECTS = import_raw.lo
import_raw_la_OBJECTS = $(am_import_raw_la_OBJECTS)
import_raw_la_LINK = $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) \
$(LIBTOOLFLAGS) --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) \
$(import_raw_la_LDFLAGS) $(LDFLAGS) -o $@
import_sunau_la_LIBADD =
am_import_sunau_la_OBJECTS = import_sunau.lo
import_sunau_la_OBJECTS = $(am_import_sunau_la_OBJECTS)
import_sunau_la_LINK = $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) \
$(LIBTOOLFLAGS) --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) \
$(import_sunau_la_LDFLAGS) $(LDFLAGS) -o $@
@HAVE_SUNAU_TRUE@am_import_sunau_la_rpath = -rpath $(pkgdir)
import_vag_la_LIBADD =
am_import_vag_la_OBJECTS = import_vag.lo
import_vag_la_OBJECTS = $(am_import_vag_la_OBJECTS)
import_vag_la_LINK = $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) \
$(LIBTOOLFLAGS) --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) \
$(import_vag_la_LDFLAGS) $(LDFLAGS) -o $@
import_vnc_la_LIBADD =
am_import_vnc_la_OBJECTS = import_vnc.lo
import_vnc_la_OBJECTS = $(am_import_vnc_la_OBJECTS)
import_vnc_la_LINK = $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) \
$(LIBTOOLFLAGS) --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) \
$(import_vnc_la_LDFLAGS) $(LDFLAGS) -o $@
import_vob_la_LIBADD =
am_import_vob_la_OBJECTS = import_vob_la-import_vob.lo \
import_vob_la-ac3scan.lo import_vob_la-clone.lo \
import_vob_la-ioaux.lo import_vob_la-frame_info.lo \
import_vob_la-ivtc.lo
import_vob_la_OBJECTS = $(am_import_vob_la_OBJECTS)
import_vob_la_LINK = $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) \
$(LIBTOOLFLAGS) --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) \
$(import_vob_la_LDFLAGS) $(LDFLAGS) -o $@
@HAVE_X11_TRUE@am__DEPENDENCIES_2 = $(am__DEPENDENCIES_1) \
@HAVE_X11_TRUE@ $(am__DEPENDENCIES_1) $(am__DEPENDENCIES_1)
import_x11_la_DEPENDENCIES = $(am__DEPENDENCIES_2)
am_import_x11_la_OBJECTS = import_x11_la-import_x11.lo \
import_x11_la-x11source.lo
import_x11_la_OBJECTS = $(am_import_x11_la_OBJECTS)
import_x11_la_LINK = $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) \
$(LIBTOOLFLAGS) --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) \
$(import_x11_la_LDFLAGS) $(LDFLAGS) -o $@
import_xml_la_DEPENDENCIES = $(am__DEPENDENCIES_1)
am_import_xml_la_OBJECTS = import_xml_la-import_xml.lo \
import_xml_la-ioxml.lo import_xml_la-probe_xml.lo
import_xml_la_OBJECTS = $(am_import_xml_la_OBJECTS)
import_xml_la_LINK = $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) \
$(LIBTOOLFLAGS) --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) \
$(import_xml_la_LDFLAGS) $(LDFLAGS) -o $@
@HAVE_LIBXML2_TRUE@am_import_xml_la_rpath = -rpath $(pkgdir)
import_xvid_la_LIBADD =
am_import_xvid_la_OBJECTS = import_xvid.lo
import_xvid_la_OBJECTS = $(am_import_xvid_la_OBJECTS)
import_xvid_la_LINK = $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) \
$(LIBTOOLFLAGS) --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) \
$(import_xvid_la_LDFLAGS) $(LDFLAGS) -o $@
import_yuv4mpeg_la_DEPENDENCIES = $(am__DEPENDENCIES_1)
am_import_yuv4mpeg_la_OBJECTS = import_yuv4mpeg_la-import_yuv4mpeg.lo
import_yuv4mpeg_la_OBJECTS = $(am_import_yuv4mpeg_la_OBJECTS)
import_yuv4mpeg_la_LINK = $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) \
$(LIBTOOLFLAGS) --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) \
$(import_yuv4mpeg_la_LDFLAGS) $(LDFLAGS) -o $@
@HAVE_MJPEGTOOLS_TRUE@am_import_yuv4mpeg_la_rpath = -rpath $(pkgdir)
@ENABLE_DEPRECATED_TRUE@am__EXEEXT_1 = tcrequant$(EXEEXT)
PROGRAMS = $(bin_PROGRAMS)
am_tccat_OBJECTS = tccat-tccat.$(OBJEXT) tccat-dvd_reader.$(OBJEXT) \
tccat-extract_avi.$(OBJEXT) tccat-fileinfo.$(OBJEXT) \
tccat-ioaux.$(OBJEXT) tccat-ioxml.$(OBJEXT) \
tccat-ts_reader.$(OBJEXT)
tccat_OBJECTS = $(am_tccat_OBJECTS)
tccat_DEPENDENCIES = $(am__DEPENDENCIES_1) $(am__DEPENDENCIES_1) \
$(am__DEPENDENCIES_1) $(am__DEPENDENCIES_1) \
$(am__DEPENDENCIES_1) $(am__DEPENDENCIES_1) \
$(am__DEPENDENCIES_1) $(am__DEPENDENCIES_1)
tccat_LINK = $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) \
--mode=link $(CCLD) $(tccat_CFLAGS) $(CFLAGS) $(AM_LDFLAGS) \
$(LDFLAGS) -o $@
am_tcdecode_OBJECTS = tcdecode-tcdecode.$(OBJEXT) \
tcdecode-fileinfo.$(OBJEXT) tcdecode-ioaux.$(OBJEXT) \
tcdecode-mpg123.$(OBJEXT) tcdecode-decode_a52.$(OBJEXT) \
tcdecode-decode_dv.$(OBJEXT) tcdecode-decode_lavc.$(OBJEXT) \
tcdecode-decode_lzo.$(OBJEXT) tcdecode-decode_mov.$(OBJEXT) \
tcdecode-decode_mp3.$(OBJEXT) tcdecode-decode_mpeg2.$(OBJEXT) \
tcdecode-decode_ogg.$(OBJEXT) tcdecode-decode_yuv.$(OBJEXT)
tcdecode_OBJECTS = $(am_tcdecode_OBJECTS)
tcdecode_DEPENDENCIES = $(am__DEPENDENCIES_1) $(am__DEPENDENCIES_1) \
$(am__DEPENDENCIES_1) $(am__DEPENDENCIES_1) \
$(am__DEPENDENCIES_1) $(am__DEPENDENCIES_1) \
$(am__DEPENDENCIES_1) $(am__DEPENDENCIES_1) \
$(am__DEPENDENCIES_1) $(am__DEPENDENCIES_1) \
$(am__DEPENDENCIES_1) $(am__DEPENDENCIES_1) \
$(am__DEPENDENCIES_1) $(am__DEPENDENCIES_1) \
$(am__DEPENDENCIES_1) $(am__DEPENDENCIES_1)
tcdecode_LINK = $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) \
--mode=link $(CCLD) $(tcdecode_CFLAGS) $(CFLAGS) \
$(tcdecode_LDFLAGS) $(LDFLAGS) -o $@
am_tcdemux_OBJECTS = tcdemux-aux_pes.$(OBJEXT) \
tcdemux-tcdemux.$(OBJEXT) tcdemux-demux_pass.$(OBJEXT) \
tcdemux-demuxer.$(OBJEXT) tcdemux-dvd_reader.$(OBJEXT) \
tcdemux-fileinfo.$(OBJEXT) tcdemux-ioaux.$(OBJEXT) \
tcdemux-packets.$(OBJEXT) tcdemux-scan_pack.$(OBJEXT) \
tcdemux-seqinfo.$(OBJEXT)
tcdemux_OBJECTS = $(am_tcdemux_OBJECTS)
tcdemux_DEPENDENCIES = $(am__DEPENDENCIES_1) $(am__DEPENDENCIES_1) \
$(am__DEPENDENCIES_1) $(am__DEPENDENCIES_1) \
$(am__DEPENDENCIES_1) $(am__DEPENDENCIES_1) \
$(am__DEPENDENCIES_1) $(am__DEPENDENCIES_1)
tcdemux_LINK = $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) \
--mode=link $(CCLD) $(tcdemux_CFLAGS) $(CFLAGS) $(AM_LDFLAGS) \
$(LDFLAGS) -o $@
am_tcextract_OBJECTS = tcextract-tcextract.$(OBJEXT) \
tcextract-aux_pes.$(OBJEXT) tcextract-fileinfo.$(OBJEXT) \
tcextract-ioaux.$(OBJEXT) tcextract-extract_ac3.$(OBJEXT) \
tcextract-extract_avi.$(OBJEXT) tcextract-extract_dv.$(OBJEXT) \
tcextract-extract_lzo.$(OBJEXT) \
tcextract-extract_mp3.$(OBJEXT) \
tcextract-extract_mpeg2.$(OBJEXT) \
tcextract-extract_mxf.$(OBJEXT) \
tcextract-extract_ogm.$(OBJEXT) \
tcextract-extract_pcm.$(OBJEXT) \
tcextract-extract_rgb.$(OBJEXT) \
tcextract-extract_yuv.$(OBJEXT)
tcextract_OBJECTS = $(am_tcextract_OBJECTS)
tcextract_DEPENDENCIES = $(am__DEPENDENCIES_1) $(am__DEPENDENCIES_1) \
$(am__DEPENDENCIES_1) $(am__DEPENDENCIES_1) \
$(am__DEPENDENCIES_1) $(am__DEPENDENCIES_1) \
$(am__DEPENDENCIES_1) $(am__DEPENDENCIES_1) \
$(am__DEPENDENCIES_1) $(am__DEPENDENCIES_1)
tcextract_LINK = $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) \
$(LIBTOOLFLAGS) --mode=link $(CCLD) $(tcextract_CFLAGS) \
$(CFLAGS) $(AM_LDFLAGS) $(LDFLAGS) -o $@
am_tcprobe_OBJECTS = tcprobe-tcprobe.$(OBJEXT) \
tcprobe-ac3scan.$(OBJEXT) tcprobe-aux_pes.$(OBJEXT) \
tcprobe-dvd_reader.$(OBJEXT) tcprobe-fileinfo.$(OBJEXT) \
tcprobe-ioaux.$(OBJEXT) tcprobe-ioxml.$(OBJEXT) \
tcprobe-mpg123.$(OBJEXT) tcprobe-scan_pes.$(OBJEXT) \
tcprobe-decode_dv.$(OBJEXT) tcprobe-extract_avi.$(OBJEXT) \
tcprobe-extract_mxf.$(OBJEXT) tcprobe-extract_yuv.$(OBJEXT) \
tcprobe-probe_bktr.$(OBJEXT) tcprobe-probe_bsdav.$(OBJEXT) \
tcprobe-probe_dvd.$(OBJEXT) tcprobe-probe_im.$(OBJEXT) \
tcprobe-probe_mov.$(OBJEXT) tcprobe-probe_nuv.$(OBJEXT) \
tcprobe-probe_ogg.$(OBJEXT) tcprobe-probe_oss.$(OBJEXT) \
tcprobe-probe_pv3.$(OBJEXT) tcprobe-probe_stream.$(OBJEXT) \
tcprobe-probe_sunau.$(OBJEXT) tcprobe-probe_v4l.$(OBJEXT) \
tcprobe-probe_vnc.$(OBJEXT) tcprobe-probe_wav.$(OBJEXT) \
tcprobe-probe_xml.$(OBJEXT) tcprobe-probe_mplayer.$(OBJEXT) \
tcprobe-probe_ffmpeg.$(OBJEXT) tcprobe-probe_x11.$(OBJEXT) \
tcprobe-x11source.$(OBJEXT) tcprobe-probe_pvn.$(OBJEXT)
tcprobe_OBJECTS = $(am_tcprobe_OBJECTS)
tcprobe_DEPENDENCIES = $(am__DEPENDENCIES_1) $(am__DEPENDENCIES_1) \
$(am__DEPENDENCIES_1) $(am__DEPENDENCIES_1) \
$(am__DEPENDENCIES_1) $(am__DEPENDENCIES_1) \
$(am__DEPENDENCIES_1) $(am__DEPENDENCIES_1) \
$(am__DEPENDENCIES_1) $(am__DEPENDENCIES_1) \
$(am__DEPENDENCIES_1) $(am__DEPENDENCIES_1) \
$(am__DEPENDENCIES_1) $(am__DEPENDENCIES_1) \
$(am__DEPENDENCIES_1) $(am__DEPENDENCIES_1) \
$(am__DEPENDENCIES_2) $(am__DEPENDENCIES_1) \
$(am__DEPENDENCIES_1) $(am__DEPENDENCIES_1) \
$(am__DEPENDENCIES_1)
tcprobe_LINK = $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) \
--mode=link $(CCLD) $(tcprobe_CFLAGS) $(CFLAGS) $(AM_LDFLAGS) \
$(LDFLAGS) -o $@
am_tcrequant_OBJECTS = tcrequant-tcrequant.$(OBJEXT)
tcrequant_OBJECTS = $(am_tcrequant_OBJECTS)
tcrequant_DEPENDENCIES = $(am__DEPENDENCIES_1) $(am__DEPENDENCIES_1) \
$(am__DEPENDENCIES_1)
tcrequant_LINK = $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) \
$(LIBTOOLFLAGS) --mode=link $(CCLD) $(tcrequant_CFLAGS) \
$(CFLAGS) $(AM_LDFLAGS) $(LDFLAGS) -o $@
am_tcscan_OBJECTS = tcscan-tcscan.$(OBJEXT) tcscan-ac3scan.$(OBJEXT) \
tcscan-aux_pes.$(OBJEXT) tcscan-fileinfo.$(OBJEXT) \
tcscan-ioaux.$(OBJEXT) tcscan-mpg123.$(OBJEXT) \
tcscan-scan_pes.$(OBJEXT)
tcscan_OBJECTS = $(am_tcscan_OBJECTS)
tcscan_DEPENDENCIES = $(am__DEPENDENCIES_1) $(am__DEPENDENCIES_1) \
$(am__DEPENDENCIES_1) $(am__DEPENDENCIES_1) \
$(am__DEPENDENCIES_1) $(am__DEPENDENCIES_1)
tcscan_LINK = $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) \
--mode=link $(CCLD) $(tcscan_CFLAGS) $(CFLAGS) $(AM_LDFLAGS) \
$(LDFLAGS) -o $@
am_tcxmlcheck_OBJECTS = tcxmlcheck-tcxmlcheck.$(OBJEXT) \
tcxmlcheck-fileinfo.$(OBJEXT) tcxmlcheck-ioaux.$(OBJEXT) \
tcxmlcheck-ioxml.$(OBJEXT) tcxmlcheck-probe_xml.$(OBJEXT)
tcxmlcheck_OBJECTS = $(am_tcxmlcheck_OBJECTS)
tcxmlcheck_DEPENDENCIES = $(am__DEPENDENCIES_1) $(am__DEPENDENCIES_1) \
$(am__DEPENDENCIES_1) $(am__DEPENDENCIES_1) \
$(am__DEPENDENCIES_1)
tcxmlcheck_LINK = $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) \
$(LIBTOOLFLAGS) --mode=link $(CCLD) $(tcxmlcheck_CFLAGS) \
$(CFLAGS) $(AM_LDFLAGS) $(LDFLAGS) -o $@
am_tcxpm2rgb_OBJECTS = tcxpm2rgb-tcxpm2rgb.$(OBJEXT)
tcxpm2rgb_OBJECTS = $(am_tcxpm2rgb_OBJECTS)
tcxpm2rgb_DEPENDENCIES = $(am__DEPENDENCIES_1)
tcxpm2rgb_LINK = $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) \
$(LIBTOOLFLAGS) --mode=link $(CCLD) $(tcxpm2rgb_CFLAGS) \
$(CFLAGS) $(AM_LDFLAGS) $(LDFLAGS) -o $@
DEFAULT_INCLUDES = -I.@am__isrc@ -I$(top_builddir)
depcomp = $(SHELL) $(top_srcdir)/autotools/depcomp
am__depfiles_maybe = depfiles
am__mv = mv -f
COMPILE = $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) \
$(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS)
LTCOMPILE = $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) \
--mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) \
$(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS)
CCLD = $(CC)
LINK = $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) \
--mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) $(AM_LDFLAGS) \
$(LDFLAGS) -o $@
SOURCES = $(a52_decore_la_SOURCES) $(import_ac3_la_SOURCES) \
$(import_alsa_la_SOURCES) $(import_avi_la_SOURCES) \
$(import_bktr_la_SOURCES) $(import_bsdav_la_SOURCES) \
$(import_dv_la_SOURCES) $(import_dvd_la_SOURCES) \
$(import_ffmpeg_la_SOURCES) $(import_im_la_SOURCES) \
$(import_imlist_la_SOURCES) $(import_lzo_la_SOURCES) \
$(import_mov_la_SOURCES) $(import_mp3_la_SOURCES) \
$(import_mpeg2_la_SOURCES) $(import_mplayer_la_SOURCES) \
$(import_null_la_SOURCES) $(import_ogg_la_SOURCES) \
$(import_oss_la_SOURCES) $(import_pv3_la_SOURCES) \
$(import_pvn_la_SOURCES) $(import_raw_la_SOURCES) \
$(import_sunau_la_SOURCES) $(import_vag_la_SOURCES) \
$(import_vnc_la_SOURCES) $(import_vob_la_SOURCES) \
$(import_x11_la_SOURCES) $(import_xml_la_SOURCES) \
$(import_xvid_la_SOURCES) $(import_yuv4mpeg_la_SOURCES) \
$(tccat_SOURCES) $(tcdecode_SOURCES) $(tcdemux_SOURCES) \
$(tcextract_SOURCES) $(tcprobe_SOURCES) $(tcrequant_SOURCES) \
$(tcscan_SOURCES) $(tcxmlcheck_SOURCES) $(tcxpm2rgb_SOURCES)
DIST_SOURCES = $(a52_decore_la_SOURCES) $(import_ac3_la_SOURCES) \
$(import_alsa_la_SOURCES) $(import_avi_la_SOURCES) \
$(import_bktr_la_SOURCES) $(import_bsdav_la_SOURCES) \
$(import_dv_la_SOURCES) $(import_dvd_la_SOURCES) \
$(import_ffmpeg_la_SOURCES) $(import_im_la_SOURCES) \
$(import_imlist_la_SOURCES) $(import_lzo_la_SOURCES) \
$(import_mov_la_SOURCES) $(import_mp3_la_SOURCES) \
$(import_mpeg2_la_SOURCES) $(import_mplayer_la_SOURCES) \
$(import_null_la_SOURCES) $(import_ogg_la_SOURCES) \
$(import_oss_la_SOURCES) $(import_pv3_la_SOURCES) \
$(import_pvn_la_SOURCES) $(import_raw_la_SOURCES) \
$(import_sunau_la_SOURCES) $(import_vag_la_SOURCES) \
$(import_vnc_la_SOURCES) $(import_vob_la_SOURCES) \
$(import_x11_la_SOURCES) $(import_xml_la_SOURCES) \
$(import_xvid_la_SOURCES) $(import_yuv4mpeg_la_SOURCES) \
$(tccat_SOURCES) $(tcdecode_SOURCES) $(tcdemux_SOURCES) \
$(tcextract_SOURCES) $(tcprobe_SOURCES) $(tcrequant_SOURCES) \
$(tcscan_SOURCES) $(tcxmlcheck_SOURCES) $(tcxpm2rgb_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
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
ETAGS = etags
CTAGS = ctags
DIST_SUBDIRS = framegen nuv v4l
DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST)
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"
A52_CFLAGS = @A52_CFLAGS@
A52_LIBS = @A52_LIBS@
ACLIB_LIBS = @ACLIB_LIBS@
ACLOCAL = @ACLOCAL@
ALTIVEC_CFLAGS = @ALTIVEC_CFLAGS@
AMTAR = @AMTAR@
AR = @AR@
AUTOCONF = @AUTOCONF@
AUTOHEADER = @AUTOHEADER@
AUTOMAKE = @AUTOMAKE@
AVILIB_LIBS = @AVILIB_LIBS@
AWK = @AWK@
BSDAV_CFLAGS = @BSDAV_CFLAGS@
BSDAV_LIBS = @BSDAV_LIBS@
CC = @CC@
CCAS = @CCAS@
CCASDEPMODE = @CCASDEPMODE@
CCASFLAGS = @CCASFLAGS@
CCDEPMODE = @CCDEPMODE@
CFLAGS = @CFLAGS@
CPP = @CPP@
CPPFLAGS = @CPPFLAGS@
CXXCPP = @CXXCPP@
CYGPATH_W = @CYGPATH_W@
DEFS = @DEFS@
DEPDIR = @DEPDIR@
DLDARWIN_CFLAGS = @DLDARWIN_CFLAGS@
DLDARWIN_LIBS = @DLDARWIN_LIBS@
DLLTOOL = @DLLTOOL@
DSYMUTIL = @DSYMUTIL@
DUMPBIN = @DUMPBIN@
ECHO_C = @ECHO_C@
ECHO_N = @ECHO_N@
ECHO_T = @ECHO_T@
EGREP = @EGREP@
EXEEXT = @EXEEXT@
FAAC_CFLAGS = @FAAC_CFLAGS@
FAAC_LIBS = @FAAC_LIBS@
FGREP = @FGREP@
FREETYPE2_CFLAGS = @FREETYPE2_CFLAGS@
FREETYPE2_LIBS = @FREETYPE2_LIBS@
GREP = @GREP@
IBP_LIBS = @IBP_LIBS@
ICONV_CFLAGS = @ICONV_CFLAGS@
ICONV_LIBS = @ICONV_LIBS@
IMAGEMAGICK_CFLAGS = @IMAGEMAGICK_CFLAGS@
IMAGEMAGICK_LIBS = @IMAGEMAGICK_LIBS@
INSTALL = @INSTALL@
INSTALL_DATA = @INSTALL_DATA@
INSTALL_PROGRAM = @INSTALL_PROGRAM@
INSTALL_SCRIPT = @INSTALL_SCRIPT@
INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@
LAME_CFLAGS = @LAME_CFLAGS@
LAME_LIBS = @LAME_LIBS@
LD = @LD@
LDFLAGS = @LDFLAGS@
LIBAVCODEC_CFLAGS = @LIBAVCODEC_CFLAGS@
LIBAVCODEC_LIBS = @LIBAVCODEC_LIBS@
LIBAVFORMAT_CFLAGS = @LIBAVFORMAT_CFLAGS@
LIBAVFORMAT_LIBS = @LIBAVFORMAT_LIBS@
LIBDVDREAD_CFLAGS = @LIBDVDREAD_CFLAGS@
LIBDVDREAD_LIBS = @LIBDVDREAD_LIBS@
LIBDV_CFLAGS = @LIBDV_CFLAGS@
LIBDV_LIBS = @LIBDV_LIBS@
LIBJPEG_CFLAGS = @LIBJPEG_CFLAGS@
LIBJPEG_LIBS = @LIBJPEG_LIBS@
LIBMPEG2CONVERT_CFLAGS = @LIBMPEG2CONVERT_CFLAGS@
LIBMPEG2CONVERT_LIBS = @LIBMPEG2CONVERT_LIBS@
LIBMPEG2_CFLAGS = @LIBMPEG2_CFLAGS@
LIBMPEG2_LIBS = @LIBMPEG2_LIBS@
LIBOBJS = @LIBOBJS@
LIBPOSTPROC_CFLAGS = @LIBPOSTPROC_CFLAGS@
LIBPOSTPROC_LIBS = @LIBPOSTPROC_LIBS@
LIBQUICKTIME_CFLAGS = @LIBQUICKTIME_CFLAGS@
LIBQUICKTIME_LIBS = @LIBQUICKTIME_LIBS@
LIBS = @LIBS@
LIBTCAUDIO_LIBS = @LIBTCAUDIO_LIBS@
LIBTCVIDEO_LIBS = @LIBTCVIDEO_LIBS@
LIBTC_LIBS = @LIBTC_LIBS@
LIBTOOL = @LIBTOOL@
LIBV4L2_CFLAGS = @LIBV4L2_CFLAGS@
LIBV4L2_LIBS = @LIBV4L2_LIBS@
LIBV4LCONVERT_CFLAGS = @LIBV4LCONVERT_CFLAGS@
LIBV4LCONVERT_LIBS = @LIBV4LCONVERT_LIBS@
LIBXML2_CFLAGS = @LIBXML2_CFLAGS@
LIBXML2_LIBS = @LIBXML2_LIBS@
LIPO = @LIPO@
LN_S = @LN_S@
LTLIBOBJS = @LTLIBOBJS@
LZO_CFLAGS = @LZO_CFLAGS@
LZO_LIBS = @LZO_LIBS@
MAINT = @MAINT@
MAKEINFO = @MAKEINFO@
MANIFEST_TOOL = @MANIFEST_TOOL@
MJPEGTOOLS_CFLAGS = @MJPEGTOOLS_CFLAGS@
MJPEGTOOLS_LIBS = @MJPEGTOOLS_LIBS@
MKDIR_P = @MKDIR_P@
MOD_PATH = @MOD_PATH@
NM = @NM@
NMEDIT = @NMEDIT@
OBJDUMP = @OBJDUMP@
OBJEXT = @OBJEXT@
OGG_CFLAGS = @OGG_CFLAGS@
OGG_LIBS = @OGG_LIBS@
OTOOL = @OTOOL@
OTOOL64 = @OTOOL64@
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@
PATH_TO_AWK = @PATH_TO_AWK@
PKG_CONFIG = @PKG_CONFIG@
PKG_CONFIG_LIBDIR = @PKG_CONFIG_LIBDIR@
PKG_CONFIG_PATH = @PKG_CONFIG_PATH@
PROF_PATH = @PROF_PATH@
PTHREAD_CFLAGS = @PTHREAD_CFLAGS@
PTHREAD_LIBS = @PTHREAD_LIBS@
PVM3_CFLAGS = @PVM3_CFLAGS@
PVM3_LIBS = @PVM3_LIBS@
PVM3_PVMGS = @PVM3_PVMGS@
RANLIB = @RANLIB@
SDL_CFLAGS = @SDL_CFLAGS@
SDL_LIBS = @SDL_LIBS@
SED = @SED@
SET_MAKE = @SET_MAKE@
SHELL = @SHELL@
SIMD_FLAGS = @SIMD_FLAGS@
STRIP = @STRIP@
THEORA_CFLAGS = @THEORA_CFLAGS@
THEORA_LIBS = @THEORA_LIBS@
USE_DLDARWIN = @USE_DLDARWIN@
VERSION = @VERSION@
VORBIS_CFLAGS = @VORBIS_CFLAGS@
VORBIS_LIBS = @VORBIS_LIBS@
WAVLIB_LIBS = @WAVLIB_LIBS@
X264_CFLAGS = @X264_CFLAGS@
X264_LIBS = @X264_LIBS@
XIO_CFLAGS = @XIO_CFLAGS@
XIO_LIBS = @XIO_LIBS@
XMKMF = @XMKMF@
XVID_CFLAGS = @XVID_CFLAGS@
XVID_LIBS = @XVID_LIBS@
X_CFLAGS = @X_CFLAGS@
X_EXTRA_LIBS = @X_EXTRA_LIBS@
X_LIBS = @X_LIBS@
X_PRE_LIBS = @X_PRE_LIBS@
a52_config = @a52_config@
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@
ac_ct_DUMPBIN = @ac_ct_DUMPBIN@
am__include = @am__include@
am__leading_dot = @am__leading_dot@
am__quote = @am__quote@
am__tar = @am__tar@
am__untar = @am__untar@
bindir = @bindir@
bsdav_config = @bsdav_config@
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@
faac_config = @faac_config@
host = @host@
host_alias = @host_alias@
host_cpu = @host_cpu@
host_os = @host_os@
host_vendor = @host_vendor@
htmldir = @htmldir@
iconv_config = @iconv_config@
imagemagick_config = @imagemagick_config@
includedir = @includedir@
infodir = @infodir@
install_sh = @install_sh@
lame_config = @lame_config@
libdir = @libdir@
libdvdread_config = @libdvdread_config@
libexecdir = @libexecdir@
libjpeg_config = @libjpeg_config@
libjpegmmx_config = @libjpegmmx_config@
localedir = @localedir@
localstatedir = @localstatedir@
lzo_config = @lzo_config@
mandir = @mandir@
mkdir_p = @mkdir_p@
oldincludedir = @oldincludedir@
pdfdir = @pdfdir@
prefix = @prefix@
program_transform_name = @program_transform_name@
psdir = @psdir@
pvm3_config = @pvm3_config@
sbindir = @sbindir@
sharedstatedir = @sharedstatedir@
srcdir = @srcdir@
sysconfdir = @sysconfdir@
target = @target@
target_alias = @target_alias@
target_cpu = @target_cpu@
target_os = @target_os@
target_vendor = @target_vendor@
top_build_prefix = @top_build_prefix@
top_builddir = @top_builddir@
top_srcdir = @top_srcdir@
x_includes = @x_includes@
x_libraries = @x_libraries@
xvid_config = @xvid_config@
AM_CPPFLAGS = \
$(PTHREAD_CFLAGS) \
-DMOD_PATH=\"$(MOD_PATH)\" \
-I$(top_srcdir) \
-I$(top_srcdir)/src
@HAVE_OGG_TRUE@@HAVE_VORBIS_TRUE@VORBISFILE = -lvorbisfile
@HAVE_A52_TRUE@IMPORT_A52 = a52_decore.la
@HAVE_ALSA_TRUE@IMPORT_ALSA = import_alsa.la
@HAVE_BKTR_TRUE@IMPORT_BKTR = import_bktr.la
IMPORT_BSDAV = import_bsdav.la
@HAVE_LIBDVDREAD_TRUE@IMPORT_DVD = import_dvd.la
@HAVE_FFMPEG_TRUE@IMPORT_FFMPEG = import_ffmpeg.la
@HAVE_IMAGEMAGICK_TRUE@IMPORT_IM = import_im.la
@HAVE_IMAGEMAGICK_TRUE@IMPORT_IMLIST = import_imlist.la
@HAVE_LZO_TRUE@IMPORT_LZO = import_lzo.la
@HAVE_LIBQUICKTIME_TRUE@IMPORT_MOV = import_mov.la
@HAVE_OSS_TRUE@IMPORT_OSS = import_oss.la
@ENABLE_PV3_TRUE@IMPORT_PV3 = import_pv3.la
@HAVE_SUNAU_TRUE@IMPORT_SUNAU = import_sunau.la
@HAVE_LIBXML2_TRUE@IMPORT_XML = import_xml.la
@HAVE_X11_TRUE@IMPORT_X11 = import_x11.la
@HAVE_X11_TRUE@X11SOURCE_LIBS = $(X_LIBS) $(X_PRE_LIBS) -lXext -lX11 $(X_EXTRA_LIBS)
@HAVE_MJPEGTOOLS_TRUE@IMPORT_YUV4MPEG = import_yuv4mpeg.la
pkgdir = $(MOD_PATH)
@ENABLE_NUV_TRUE@NUV = nuv
SUBDIRS = framegen $(NUV) v4l
pkg_LTLIBRARIES = \
$(IMPORT_A52) \
import_ac3.la \
import_avi.la \
$(IMPORT_ALSA) \
$(IMPORT_BKTR) \
$(IMPORT_BSDAV) \
import_dv.la \
$(IMPORT_DVD) \
$(IMPORT_FFMPEG) \
$(IMPORT_IM) \
$(IMPORT_IMLIST) \
$(IMPORT_LZO) \
$(IMPORT_MOV) \
import_mp3.la \
import_mpeg2.la \
import_mplayer.la \
import_null.la \
import_ogg.la \
$(IMPORT_OSS) \
$(IMPORT_PV3) \
import_pvn.la \
import_raw.la \
$(IMPORT_SUNAU) \
import_vag.la \
import_vnc.la \
import_vob.la \
$(IMPORT_XML) \
import_xvid.la \
import_x11.la \
$(IMPORT_YUV4MPEG)
a52_decore_la_SOURCES = a52_decore.c
a52_decode_la_CPPFLAGS = $(AM_CPPFLAGS) $(A52_CFLAGS)
a52_decore_la_LDFLAGS = -module -avoid-version
a52_decore_la_LIBADD = $(A52_LIBS) $(XIO_LIBS)
import_ac3_la_SOURCES = import_ac3.c
import_ac3_la_LDFLAGS = -module -avoid-version
import_alsa_la_SOURCES = import_alsa.c
import_alsa_la_LDFLAGS = -module -avoid-version
import_alsa_la_LIBADD = -lasound
import_avi_la_SOURCES = import_avi.c
import_avi_la_LDFLAGS = -module -avoid-version
import_bktr_la_SOURCES = import_bktr.c
import_bktr_la_LDFLAGS = -module -avoid-version
import_bsdav_la_SOURCES = import_bsdav.c
import_bsdav_la_CPPFLAGS = $(AM_CPPFLAGS) $(BSDAV_CFLAGS)
import_bsdav_la_LDFLAGS = -module -avoid-version
import_dv_la_SOURCES = import_dv.c
import_dv_la_CPPFLAGS = $(AM_CPPFLAGS) $(LIBDV_CFLAGS)
import_dv_la_LDFLAGS = -module -avoid-version
import_dvd_la_SOURCES = import_dvd.c ac3scan.c dvd_reader.c clone.c ioaux.c frame_info.c ivtc.c
import_dvd_la_CPPFLAGS = $(AM_CPPFLAGS) $(LIBDVDREAD_CFLAGS)
import_dvd_la_LDFLAGS = -module -avoid-version
import_dvd_la_LIBADD = $(LIBDVDREAD_LIBS)
import_ffmpeg_la_SOURCES = import_ffmpeg.c
import_ffmpeg_la_CPPFLAGS = $(AM_CPPFLAGS) $(LIBAVFORMAT_CFLAGS)
import_ffmpeg_la_LDFLAGS = -module -avoid-version
import_ffmpeg_la_LIBADD = $(LIBAVFORMAT_LIBS)
import_im_la_SOURCES = import_im.c
import_im_la_CPPFLAGS = $(AM_CPPFLAGS) $(IMAGEMAGICK_CFLAGS)
import_im_la_LDFLAGS = -module -avoid-version
import_im_la_LIBADD = $(IMAGEMAGICK_LIBS) -lm
import_imlist_la_SOURCES = import_imlist.c
import_imlist_la_CPPFLAGS = $(AM_CPPFLAGS) $(IMAGEMAGICK_CFLAGS)
import_imlist_la_LDFLAGS = -module -avoid-version
import_imlist_la_LIBADD = $(IMAGEMAGICK_LIBS) -lm
import_lzo_la_SOURCES = import_lzo.c
import_lzo_la_CPPFLAGS = $(AM_CPPFLAGS) $(LZO_CFLAGS)
import_lzo_la_LDFLAGS = -module -avoid-version
import_lzo_la_LIBADD = $(LZO_LIBS) -lm
import_mov_la_SOURCES = import_mov.c
import_mov_la_CPPFLAGS = $(AM_CPPFLAGS) $(LIBQUICKTIME_CFLAGS)
import_mov_la_LDFLAGS = -module -avoid-version
import_mov_la_LIBADD = $(LIBQUICKTIME_LIBS) -lm
import_mp3_la_SOURCES = import_mp3.c
import_mp3_la_LDFLAGS = -module -avoid-version
import_mpeg2_la_SOURCES = import_mpeg2.c
import_mpeg2_la_CPPFLAGS = $(AM_CPPFLAGS) $(LIBMPEG2_CFLAGS) $(LIBMPEG2CONVERT_CFLAGS)
import_mpeg2_la_LDFLAGS = -module -avoid-version
import_mplayer_la_SOURCES = import_mplayer.c
import_mplayer_la_LDFLAGS = -module -avoid-version
import_null_la_SOURCES = import_null.c
import_null_la_LDFLAGS = -module -avoid-version
import_ogg_la_SOURCES = import_ogg.c
import_ogg_la_CPPFLAGS = $(AM_CPPFLAGS) $(OGG_CFLAGS) $(THEORA_CFLAGS) $(VORBIS_CFLAGS)
import_ogg_la_LDFLAGS = -module -avoid-version
import_oss_la_SOURCES = import_oss.c
import_oss_la_LDFLAGS = -module -avoid-version
import_pv3_la_SOURCES = import_pv3.c w32dll.c w32dll-emu.c
import_pv3_la_LDFLAGS = -module -avoid-version
import_pvn_la_SOURCES = import_pvn.c
import_pvn_la_LDFLAGS = -module -avoid-version
import_raw_la_SOURCES = import_raw.c
import_raw_la_LDFLAGS = -module -avoid-version
import_sunau_la_SOURCES = import_sunau.c
import_sunau_la_LDFLAGS = -module -avoid-version
import_vag_la_SOURCES = import_vag.c
import_vag_la_LDFLAGS = -module -avoid-version
import_vnc_la_SOURCES = import_vnc.c
import_vnc_la_LDFLAGS = -module -avoid-version
import_vob_la_SOURCES = import_vob.c ac3scan.c clone.c ioaux.c frame_info.c ivtc.c
import_vob_la_CPPFLAGS = $(AM_CPPFLAGS)
import_vob_la_LDFLAGS = -module -avoid-version
import_xml_la_SOURCES = import_xml.c ioxml.c probe_xml.c
import_xml_la_CPPFLAGS = $(AM_CPPFLAGS) $(LIBXML2_CFLAGS)
import_xml_la_LDFLAGS = -module -avoid-version
import_xml_la_LIBADD = $(LIBXML2_LIBS) -lm
import_xvid_la_SOURCES = import_xvid.c
import_xvid_la_LDFLAGS = -module -avoid-version
import_x11_la_SOURCES = import_x11.c x11source.c
import_x11_la_CPPFLAGS = $(AM_CPPFLAGS) $(X_CFLAGS)
import_x11_la_LDFLAGS = -module -avoid-version
import_x11_la_LIBADD = $(X11SOURCE_LIBS)
import_yuv4mpeg_la_SOURCES = import_yuv4mpeg.c
import_yuv4mpeg_la_CPPFLAGS = $(AM_CPPFLAGS) $(MJPEGTOOLS_CFLAGS)
import_yuv4mpeg_la_LDFLAGS = -module -avoid-version
import_yuv4mpeg_la_LIBADD = $(MJPEGTOOLS_LIBS)
EXTRA_DIST = \
ac3scan.h \
aux_pes.h \
clone.h \
demuxer.h \
dvd_reader.h \
frame_info.h \
import_def.h \
ioaux.h \
ioxml.h \
ivtc.h \
magic.h \
mpg123.h \
ogmstreams.h \
packets.h \
probe_xml.h \
seqinfo.h \
putvlc.h \
getvlc.h \
tc.h \
probe_stream.h \
w32dll.h \
x11source.h
@ENABLE_DEPRECATED_TRUE@TCREQUANT = tcrequant
# The _CFLAGS lines below keep libtool from overwriting
# objects that have been compiled with flags for shared
# objects with objects that were compiled for executables.
# --------- #
# T C C A T #
# --------- #
tccat_SOURCES = \
tccat.c \
dvd_reader.c \
extract_avi.c \
fileinfo.c \
ioaux.c \
ioxml.c \
ts_reader.c
tccat_LDADD = \
$(AVILIB_LIBS) \
$(LIBDV_LIBS) \
$(LIBDVDREAD_LIBS) \
$(XIO_LIBS) \
$(LIBXML2_LIBS) \
$(DLDARWIN_LIBS) \
$(ACLIB_LIBS) \
$(LIBTC_LIBS) \
-lm
tccat_CFLAGS = $(AM_CFLAGS) \
$(LIBDV_CFLAGS) \
$(LIBDVDREAD_CFLAGS) \
$(LIBXML2_CFLAGS)
# --------------- #
# T C D E C O D E #
# --------------- #
tcdecode_SOURCES = \
tcdecode.c \
fileinfo.c \
ioaux.c \
mpg123.c \
decode_a52.c \
decode_dv.c \
decode_lavc.c \
decode_lzo.c \
decode_mov.c \
decode_mp3.c \
decode_mpeg2.c \
decode_ogg.c \
decode_yuv.c
tcdecode_LDADD = \
$(LIBAVCODEC_LIBS) \
$(LIBDV_LIBS) \
$(LAME_LIBS) \
$(LZO_LIBS) \
$(LIBQUICKTIME_LIBS) \
$(LIBMPEG2_LIBS) \
$(LIBMPEG2CONVERT_LIBS) \
$(OGG_LIBS) \
$(THEORA_LIBS) \
$(VORBIS_LIBS) \
$(VORBISFILE) \
$(XIO_LIBS) \
$(DLDARWIN_LIBS) \
$(LIBTCVIDEO_LIBS) \
$(ACLIB_LIBS) \
$(LIBTC_LIBS)
tcdecode_CFLAGS = $(AM_CFLAGS) \
$(LIBAVCODEC_CFLAGS) \
$(LIBDV_CFLAGS) \
$(LAME_CFLAGS) \
$(LZO_CFLAGS) \
$(LIBQUICKTIME_CFLAGS) \
$(LIBMPEG2_CFLAGS) \
$(LIBMPEG2CONVERT_CFLAGS) \
$(OGG_CFLAGS) \
$(THEORA_CFLAGS) \
$(VORBIS_CFLAGS)
tcdecode_LDFLAGS = -export-dynamic
# ------------- #
# T C D E M U X #
# ------------- #
tcdemux_SOURCES = \
aux_pes.c \
tcdemux.c \
demux_pass.c \
demuxer.c \
dvd_reader.c \
fileinfo.c \
ioaux.c \
packets.c \
scan_pack.c \
seqinfo.c
tcdemux_LDADD = \
$(AVILIB_LIBS) \
$(LIBDV_LIBS) \
$(LIBDVDREAD_LIBS) \
$(DLDARWIN_LIBS) \
$(XIO_LIBS) \
$(ACLIB_LIBS) \
$(LIBTC_LIBS) \
$(PTHREAD_LIBS) \
-lm
tcdemux_CFLAGS = $(AM_CFLAGS) \
$(LIBDV_CFLAGS) \
$(LIBDVDREAD_CFLAGS)
# ----------------- #
# T C E X T R A C T #
# ----------------- #
tcextract_SOURCES = \
tcextract.c \
aux_pes.c \
fileinfo.c \
ioaux.c \
extract_ac3.c \
extract_avi.c \
extract_dv.c \
extract_lzo.c \
extract_mp3.c \
extract_mpeg2.c \
extract_mxf.c \
extract_ogm.c \
extract_pcm.c \
extract_rgb.c \
extract_yuv.c
tcextract_LDADD = \
$(AVILIB_LIBS) \
$(WAVLIB_LIBS) \
$(LIBDV_LIBS) \
$(MJPEGTOOLS_LIBS) \
$(OGG_LIBS) \
$(THEORA_LIBS) \
$(VORBIS_LIBS) \
$(XIO_LIBS) \
$(ACLIB_LIBS) \
$(LIBTC_LIBS) \
-lm
tcextract_CFLAGS = $(AM_CFLAGS) \
$(LIBDV_CFLAGS) \
$(MJPEGTOOLS_CFLAGS) \
$(OGG_CFLAGS) \
$(THEORA_CFLAGS) \
$(VORBIS_CFLAGS)
# ------------- #
# T C P R O B E #
# ------------- #
tcprobe_SOURCES = \
tcprobe.c \
ac3scan.c \
aux_pes.c \
dvd_reader.c \
fileinfo.c \
ioaux.c \
ioxml.c \
mpg123.c \
scan_pes.c \
decode_dv.c \
extract_avi.c \
extract_mxf.c \
extract_yuv.c \
probe_bktr.c \
probe_bsdav.c \
probe_dvd.c \
probe_im.c \
probe_mov.c \
probe_nuv.c \
probe_ogg.c \
probe_oss.c \
probe_pv3.c \
probe_stream.c \
probe_sunau.c \
probe_v4l.c \
probe_vnc.c \
probe_wav.c \
probe_xml.c \
probe_mplayer.c \
probe_ffmpeg.c \
probe_x11.c \
x11source.c \
probe_pvn.c
tcprobe_LDADD = \
$(LIBAVFORMAT_LIBS) \
$(LIBAVCODEC_LIBS) \
$(AVILIB_LIBS) \
$(WAVLIB_LIBS) \
$(LIBDV_LIBS) \
$(LIBDVDREAD_LIBS) \
$(IMAGEMAGICK_LIBS) \
$(LAME_LIBS) \
$(LIBQUICKTIME_LIBS) \
$(MJPEGTOOLS_LIBS) \
$(OGG_LIBS) \
$(THEORA_LIBS) \
$(VORBIS_LIBS) \
$(XIO_LIBS) \
$(LIBXML2_LIBS) \
$(BSDAV_LIBS) \
$(X11SOURCE_LIBS) \
$(DLDARWIN_LIBS) \
$(LIBTCVIDEO_LIBS) \
$(ACLIB_LIBS) \
$(LIBTC_LIBS) \
-lm
tcprobe_CFLAGS = $(AM_CFLAGS) \
$(LIBAVFORMAT_CFLAGS) \
$(LIBAVCODEC_CFLAGS) \
$(LIBDV_CFLAGS) \
$(LIBDVDREAD_CFLAGS) \
$(IMAGEMAGICK_CFLAGS) \
$(LAME_CFLAGS) \
$(LIBQUICKTIME_CFLAGS) \
$(MJPEGTOOLS_CFLAGS) \
$(OGG_CFLAGS) \
$(THEORA_CFLAGS) \
$(VORBIS_CFLAGS) \
$(LIBXML2_CFLAGS) \
$(BSDAV_CFLAGS)
# ----------------- #
# T C R E Q U A N T #
# ----------------- #
tcrequant_SOURCES = tcrequant.c
tcrequant_LDADD = \
$(XIO_LIBS) \
$(ACLIB_LIBS) \
$(LIBTC_LIBS) \
-lm
tcrequant_CFLAGS = $(AM_CFLAGS)
# ----------- #
# T C S C A N #
# ----------- #
tcscan_SOURCES = \
tcscan.c \
ac3scan.c \
aux_pes.c \
fileinfo.c \
ioaux.c \
mpg123.c \
scan_pes.c
tcscan_LDADD = \
$(AVILIB_LIBS) \
$(LIBDV_LIBS) \
$(LAME_LIBS) \
$(XIO_LIBS) \
$(ACLIB_LIBS) \
$(LIBTC_LIBS) \
-lm
tcscan_CFLAGS = $(AM_CFLAGS) \
$(LIBDV_CFLAGS) \
$(LAME_CFLAGS)
# ------------------- #
# T C X M L C H E C K #
# ------------------- #
tcxmlcheck_SOURCES = \
tcxmlcheck.c \
fileinfo.c \
ioaux.c \
ioxml.c \
probe_xml.c
tcxmlcheck_LDADD = \
$(LIBDV_LIBS) \
$(XIO_LIBS) \
$(LIBXML2_LIBS) \
$(ACLIB_LIBS) \
$(LIBTC_LIBS) \
-lm
tcxmlcheck_CFLAGS = $(AM_CFLAGS) \
$(LIBDV_CFLAGS) \
$(LIBXML2_CFLAGS)
# ----------------- #
# T C X P M 2 R G B #
# ----------------- #
tcxpm2rgb_SOURCES = tcxpm2rgb.c
tcxpm2rgb_LDADD = $(LIBTC_LIBS)
tcxpm2rgb_CFLAGS = $(AM_CFLAGS)
all: all-recursive
.SUFFIXES:
.SUFFIXES: .c .lo .o .obj
$(srcdir)/Makefile.in: @MAINTAINER_MODE_TRUE@ $(srcdir)/Makefile.am $(am__configure_deps)
@for dep in $?; do \
case '$(am__configure_deps)' in \
*$$dep*) \
( cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh ) \
&& { if test -f $@; then exit 0; else break; fi; }; \
exit 1;; \
esac; \
done; \
echo ' cd $(top_srcdir) && $(AUTOMAKE) --gnu import/Makefile'; \
$(am__cd) $(top_srcdir) && \
$(AUTOMAKE) --gnu import/Makefile
.PRECIOUS: Makefile
Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status
@case '$?' in \
*config.status*) \
cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \
*) \
echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \
cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \
esac;
$(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES)
cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh
$(top_srcdir)/configure: @MAINTAINER_MODE_TRUE@ $(am__configure_deps)
cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh
$(ACLOCAL_M4): @MAINTAINER_MODE_TRUE@ $(am__aclocal_m4_deps)
cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh
$(am__aclocal_m4_deps):
install-pkgLTLIBRARIES: $(pkg_LTLIBRARIES)
@$(NORMAL_INSTALL)
test -z "$(pkgdir)" || $(MKDIR_P) "$(DESTDIR)$(pkgdir)"
@list='$(pkg_LTLIBRARIES)'; test -n "$(pkgdir)" || list=; \
list2=; for p in $$list; do \
if test -f $$p; then \
list2="$$list2 $$p"; \
else :; fi; \
done; \
test -z "$$list2" || { \
echo " $(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=install $(INSTALL) $(INSTALL_STRIP_FLAG) $$list2 '$(DESTDIR)$(pkgdir)'"; \
$(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=install $(INSTALL) $(INSTALL_STRIP_FLAG) $$list2 "$(DESTDIR)$(pkgdir)"; \
}
uninstall-pkgLTLIBRARIES:
@$(NORMAL_UNINSTALL)
@list='$(pkg_LTLIBRARIES)'; test -n "$(pkgdir)" || list=; \
for p in $$list; do \
$(am__strip_dir) \
echo " $(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=uninstall rm -f '$(DESTDIR)$(pkgdir)/$$f'"; \
$(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=uninstall rm -f "$(DESTDIR)$(pkgdir)/$$f"; \
done
clean-pkgLTLIBRARIES:
-test -z "$(pkg_LTLIBRARIES)" || rm -f $(pkg_LTLIBRARIES)
@list='$(pkg_LTLIBRARIES)'; for p in $$list; do \
dir="`echo $$p | sed -e 's|/[^/]*$$||'`"; \
test "$$dir" != "$$p" || dir=.; \
echo "rm -f \"$${dir}/so_locations\""; \
rm -f "$${dir}/so_locations"; \
done
a52_decore.la: $(a52_decore_la_OBJECTS) $(a52_decore_la_DEPENDENCIES)
$(a52_decore_la_LINK) $(am_a52_decore_la_rpath) $(a52_decore_la_OBJECTS) $(a52_decore_la_LIBADD) $(LIBS)
import_ac3.la: $(import_ac3_la_OBJECTS) $(import_ac3_la_DEPENDENCIES)
$(import_ac3_la_LINK) -rpath $(pkgdir) $(import_ac3_la_OBJECTS) $(import_ac3_la_LIBADD) $(LIBS)
import_alsa.la: $(import_alsa_la_OBJECTS) $(import_alsa_la_DEPENDENCIES)
$(import_alsa_la_LINK) $(am_import_alsa_la_rpath) $(import_alsa_la_OBJECTS) $(import_alsa_la_LIBADD) $(LIBS)
import_avi.la: $(import_avi_la_OBJECTS) $(import_avi_la_DEPENDENCIES)
$(import_avi_la_LINK) -rpath $(pkgdir) $(import_avi_la_OBJECTS) $(import_avi_la_LIBADD) $(LIBS)
import_bktr.la: $(import_bktr_la_OBJECTS) $(import_bktr_la_DEPENDENCIES)
$(import_bktr_la_LINK) $(am_import_bktr_la_rpath) $(import_bktr_la_OBJECTS) $(import_bktr_la_LIBADD) $(LIBS)
import_bsdav.la: $(import_bsdav_la_OBJECTS) $(import_bsdav_la_DEPENDENCIES)
$(import_bsdav_la_LINK) -rpath $(pkgdir) $(import_bsdav_la_OBJECTS) $(import_bsdav_la_LIBADD) $(LIBS)
import_dv.la: $(import_dv_la_OBJECTS) $(import_dv_la_DEPENDENCIES)
$(import_dv_la_LINK) -rpath $(pkgdir) $(import_dv_la_OBJECTS) $(import_dv_la_LIBADD) $(LIBS)
import_dvd.la: $(import_dvd_la_OBJECTS) $(import_dvd_la_DEPENDENCIES)
$(import_dvd_la_LINK) $(am_import_dvd_la_rpath) $(import_dvd_la_OBJECTS) $(import_dvd_la_LIBADD) $(LIBS)
import_ffmpeg.la: $(import_ffmpeg_la_OBJECTS) $(import_ffmpeg_la_DEPENDENCIES)
$(import_ffmpeg_la_LINK) $(am_import_ffmpeg_la_rpath) $(import_ffmpeg_la_OBJECTS) $(import_ffmpeg_la_LIBADD) $(LIBS)
import_im.la: $(import_im_la_OBJECTS) $(import_im_la_DEPENDENCIES)
$(import_im_la_LINK) $(am_import_im_la_rpath) $(import_im_la_OBJECTS) $(import_im_la_LIBADD) $(LIBS)
import_imlist.la: $(import_imlist_la_OBJECTS) $(import_imlist_la_DEPENDENCIES)
$(import_imlist_la_LINK) $(am_import_imlist_la_rpath) $(import_imlist_la_OBJECTS) $(import_imlist_la_LIBADD) $(LIBS)
import_lzo.la: $(import_lzo_la_OBJECTS) $(import_lzo_la_DEPENDENCIES)
$(import_lzo_la_LINK) $(am_import_lzo_la_rpath) $(import_lzo_la_OBJECTS) $(import_lzo_la_LIBADD) $(LIBS)
import_mov.la: $(import_mov_la_OBJECTS) $(import_mov_la_DEPENDENCIES)
$(import_mov_la_LINK) $(am_import_mov_la_rpath) $(import_mov_la_OBJECTS) $(import_mov_la_LIBADD) $(LIBS)
import_mp3.la: $(import_mp3_la_OBJECTS) $(import_mp3_la_DEPENDENCIES)
$(import_mp3_la_LINK) -rpath $(pkgdir) $(import_mp3_la_OBJECTS) $(import_mp3_la_LIBADD) $(LIBS)
import_mpeg2.la: $(import_mpeg2_la_OBJECTS) $(import_mpeg2_la_DEPENDENCIES)
$(import_mpeg2_la_LINK) -rpath $(pkgdir) $(import_mpeg2_la_OBJECTS) $(import_mpeg2_la_LIBADD) $(LIBS)
import_mplayer.la: $(import_mplayer_la_OBJECTS) $(import_mplayer_la_DEPENDENCIES)
$(import_mplayer_la_LINK) -rpath $(pkgdir) $(import_mplayer_la_OBJECTS) $(import_mplayer_la_LIBADD) $(LIBS)
import_null.la: $(import_null_la_OBJECTS) $(import_null_la_DEPENDENCIES)
$(import_null_la_LINK) -rpath $(pkgdir) $(import_null_la_OBJECTS) $(import_null_la_LIBADD) $(LIBS)
import_ogg.la: $(import_ogg_la_OBJECTS) $(import_ogg_la_DEPENDENCIES)
$(import_ogg_la_LINK) -rpath $(pkgdir) $(import_ogg_la_OBJECTS) $(import_ogg_la_LIBADD) $(LIBS)
import_oss.la: $(import_oss_la_OBJECTS) $(import_oss_la_DEPENDENCIES)
$(import_oss_la_LINK) $(am_import_oss_la_rpath) $(import_oss_la_OBJECTS) $(import_oss_la_LIBADD) $(LIBS)
import_pv3.la: $(import_pv3_la_OBJECTS) $(import_pv3_la_DEPENDENCIES)
$(import_pv3_la_LINK) $(am_import_pv3_la_rpath) $(import_pv3_la_OBJECTS) $(import_pv3_la_LIBADD) $(LIBS)
import_pvn.la: $(import_pvn_la_OBJECTS) $(import_pvn_la_DEPENDENCIES)
$(import_pvn_la_LINK) -rpath $(pkgdir) $(import_pvn_la_OBJECTS) $(import_pvn_la_LIBADD) $(LIBS)
import_raw.la: $(import_raw_la_OBJECTS) $(import_raw_la_DEPENDENCIES)
$(import_raw_la_LINK) -rpath $(pkgdir) $(import_raw_la_OBJECTS) $(import_raw_la_LIBADD) $(LIBS)
import_sunau.la: $(import_sunau_la_OBJECTS) $(import_sunau_la_DEPENDENCIES)
$(import_sunau_la_LINK) $(am_import_sunau_la_rpath) $(import_sunau_la_OBJECTS) $(import_sunau_la_LIBADD) $(LIBS)
import_vag.la: $(import_vag_la_OBJECTS) $(import_vag_la_DEPENDENCIES)
$(import_vag_la_LINK) -rpath $(pkgdir) $(import_vag_la_OBJECTS) $(import_vag_la_LIBADD) $(LIBS)
import_vnc.la: $(import_vnc_la_OBJECTS) $(import_vnc_la_DEPENDENCIES)
$(import_vnc_la_LINK) -rpath $(pkgdir) $(import_vnc_la_OBJECTS) $(import_vnc_la_LIBADD) $(LIBS)
import_vob.la: $(import_vob_la_OBJECTS) $(import_vob_la_DEPENDENCIES)
$(import_vob_la_LINK) -rpath $(pkgdir) $(import_vob_la_OBJECTS) $(import_vob_la_LIBADD) $(LIBS)
import_x11.la: $(import_x11_la_OBJECTS) $(import_x11_la_DEPENDENCIES)
$(import_x11_la_LINK) -rpath $(pkgdir) $(import_x11_la_OBJECTS) $(import_x11_la_LIBADD) $(LIBS)
import_xml.la: $(import_xml_la_OBJECTS) $(import_xml_la_DEPENDENCIES)
$(import_xml_la_LINK) $(am_import_xml_la_rpath) $(import_xml_la_OBJECTS) $(import_xml_la_LIBADD) $(LIBS)
import_xvid.la: $(import_xvid_la_OBJECTS) $(import_xvid_la_DEPENDENCIES)
$(import_xvid_la_LINK) -rpath $(pkgdir) $(import_xvid_la_OBJECTS) $(import_xvid_la_LIBADD) $(LIBS)
import_yuv4mpeg.la: $(import_yuv4mpeg_la_OBJECTS) $(import_yuv4mpeg_la_DEPENDENCIES)
$(import_yuv4mpeg_la_LINK) $(am_import_yuv4mpeg_la_rpath) $(import_yuv4mpeg_la_OBJECTS) $(import_yuv4mpeg_la_LIBADD) $(LIBS)
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 || test -f $$p1; \
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) $(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=install $(INSTALL_PROGRAM) $$files '$(DESTDIR)$(bindir)$$dir'"; \
$(INSTALL_PROGRAM_ENV) $(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=install $(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:
@list='$(bin_PROGRAMS)'; test -n "$$list" || exit 0; \
echo " rm -f" $$list; \
rm -f $$list || exit $$?; \
test -n "$(EXEEXT)" || exit 0; \
list=`for p in $$list; do echo "$$p"; done | sed 's/$(EXEEXT)$$//'`; \
echo " rm -f" $$list; \
rm -f $$list
tccat$(EXEEXT): $(tccat_OBJECTS) $(tccat_DEPENDENCIES)
@rm -f tccat$(EXEEXT)
$(tccat_LINK) $(tccat_OBJECTS) $(tccat_LDADD) $(LIBS)
tcdecode$(EXEEXT): $(tcdecode_OBJECTS) $(tcdecode_DEPENDENCIES)
@rm -f tcdecode$(EXEEXT)
$(tcdecode_LINK) $(tcdecode_OBJECTS) $(tcdecode_LDADD) $(LIBS)
tcdemux$(EXEEXT): $(tcdemux_OBJECTS) $(tcdemux_DEPENDENCIES)
@rm -f tcdemux$(EXEEXT)
$(tcdemux_LINK) $(tcdemux_OBJECTS) $(tcdemux_LDADD) $(LIBS)
tcextract$(EXEEXT): $(tcextract_OBJECTS) $(tcextract_DEPENDENCIES)
@rm -f tcextract$(EXEEXT)
$(tcextract_LINK) $(tcextract_OBJECTS) $(tcextract_LDADD) $(LIBS)
tcprobe$(EXEEXT): $(tcprobe_OBJECTS) $(tcprobe_DEPENDENCIES)
@rm -f tcprobe$(EXEEXT)
$(tcprobe_LINK) $(tcprobe_OBJECTS) $(tcprobe_LDADD) $(LIBS)
tcrequant$(EXEEXT): $(tcrequant_OBJECTS) $(tcrequant_DEPENDENCIES)
@rm -f tcrequant$(EXEEXT)
$(tcrequant_LINK) $(tcrequant_OBJECTS) $(tcrequant_LDADD) $(LIBS)
tcscan$(EXEEXT): $(tcscan_OBJECTS) $(tcscan_DEPENDENCIES)
@rm -f tcscan$(EXEEXT)
$(tcscan_LINK) $(tcscan_OBJECTS) $(tcscan_LDADD) $(LIBS)
tcxmlcheck$(EXEEXT): $(tcxmlcheck_OBJECTS) $(tcxmlcheck_DEPENDENCIES)
@rm -f tcxmlcheck$(EXEEXT)
$(tcxmlcheck_LINK) $(tcxmlcheck_OBJECTS) $(tcxmlcheck_LDADD) $(LIBS)
tcxpm2rgb$(EXEEXT): $(tcxpm2rgb_OBJECTS) $(tcxpm2rgb_DEPENDENCIES)
@rm -f tcxpm2rgb$(EXEEXT)
$(tcxpm2rgb_LINK) $(tcxpm2rgb_OBJECTS) $(tcxpm2rgb_LDADD) $(LIBS)
mostlyclean-compile:
-rm -f *.$(OBJEXT)
distclean-compile:
-rm -f *.tab.c
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/a52_decore.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/import_ac3.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/import_alsa.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/import_avi.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/import_bktr.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/import_bsdav_la-import_bsdav.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/import_dv_la-import_dv.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/import_dvd_la-ac3scan.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/import_dvd_la-clone.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/import_dvd_la-dvd_reader.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/import_dvd_la-frame_info.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/import_dvd_la-import_dvd.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/import_dvd_la-ioaux.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/import_dvd_la-ivtc.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/import_ffmpeg_la-import_ffmpeg.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/import_im_la-import_im.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/import_imlist_la-import_imlist.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/import_lzo_la-import_lzo.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/import_mov_la-import_mov.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/import_mp3.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/import_mpeg2_la-import_mpeg2.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/import_mplayer.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/import_null.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/import_ogg_la-import_ogg.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/import_oss.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/import_pv3.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/import_pvn.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/import_raw.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/import_sunau.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/import_vag.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/import_vnc.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/import_vob_la-ac3scan.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/import_vob_la-clone.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/import_vob_la-frame_info.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/import_vob_la-import_vob.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/import_vob_la-ioaux.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/import_vob_la-ivtc.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/import_x11_la-import_x11.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/import_x11_la-x11source.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/import_xml_la-import_xml.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/import_xml_la-ioxml.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/import_xml_la-probe_xml.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/import_xvid.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/import_yuv4mpeg_la-import_yuv4mpeg.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/tccat-dvd_reader.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/tccat-extract_avi.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/tccat-fileinfo.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/tccat-ioaux.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/tccat-ioxml.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/tccat-tccat.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/tccat-ts_reader.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/tcdecode-decode_a52.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/tcdecode-decode_dv.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/tcdecode-decode_lavc.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/tcdecode-decode_lzo.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/tcdecode-decode_mov.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/tcdecode-decode_mp3.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/tcdecode-decode_mpeg2.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/tcdecode-decode_ogg.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/tcdecode-decode_yuv.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/tcdecode-fileinfo.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/tcdecode-ioaux.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/tcdecode-mpg123.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/tcdecode-tcdecode.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/tcdemux-aux_pes.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/tcdemux-demux_pass.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/tcdemux-demuxer.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/tcdemux-dvd_reader.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/tcdemux-fileinfo.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/tcdemux-ioaux.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/tcdemux-packets.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/tcdemux-scan_pack.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/tcdemux-seqinfo.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/tcdemux-tcdemux.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/tcextract-aux_pes.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/tcextract-extract_ac3.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/tcextract-extract_avi.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/tcextract-extract_dv.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/tcextract-extract_lzo.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/tcextract-extract_mp3.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/tcextract-extract_mpeg2.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/tcextract-extract_mxf.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/tcextract-extract_ogm.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/tcextract-extract_pcm.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/tcextract-extract_rgb.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/tcextract-extract_yuv.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/tcextract-fileinfo.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/tcextract-ioaux.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/tcextract-tcextract.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/tcprobe-ac3scan.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/tcprobe-aux_pes.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/tcprobe-decode_dv.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/tcprobe-dvd_reader.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/tcprobe-extract_avi.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/tcprobe-extract_mxf.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/tcprobe-extract_yuv.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/tcprobe-fileinfo.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/tcprobe-ioaux.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/tcprobe-ioxml.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/tcprobe-mpg123.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/tcprobe-probe_bktr.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/tcprobe-probe_bsdav.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/tcprobe-probe_dvd.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/tcprobe-probe_ffmpeg.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/tcprobe-probe_im.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/tcprobe-probe_mov.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/tcprobe-probe_mplayer.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/tcprobe-probe_nuv.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/tcprobe-probe_ogg.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/tcprobe-probe_oss.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/tcprobe-probe_pv3.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/tcprobe-probe_pvn.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/tcprobe-probe_stream.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/tcprobe-probe_sunau.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/tcprobe-probe_v4l.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/tcprobe-probe_vnc.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/tcprobe-probe_wav.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/tcprobe-probe_x11.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/tcprobe-probe_xml.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/tcprobe-scan_pes.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/tcprobe-tcprobe.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/tcprobe-x11source.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/tcrequant-tcrequant.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/tcscan-ac3scan.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/tcscan-aux_pes.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/tcscan-fileinfo.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/tcscan-ioaux.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/tcscan-mpg123.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/tcscan-scan_pes.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/tcscan-tcscan.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/tcxmlcheck-fileinfo.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/tcxmlcheck-ioaux.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/tcxmlcheck-ioxml.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/tcxmlcheck-probe_xml.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/tcxmlcheck-tcxmlcheck.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/tcxpm2rgb-tcxpm2rgb.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/w32dll-emu.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/w32dll.Plo@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) '$<'`
.c.lo:
@am__fastdepCC_TRUE@ $(LTCOMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $<
@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='$<' object='$@' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(LTCOMPILE) -c -o $@ $<
import_bsdav_la-import_bsdav.lo: import_bsdav.c
@am__fastdepCC_TRUE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(import_bsdav_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT import_bsdav_la-import_bsdav.lo -MD -MP -MF $(DEPDIR)/import_bsdav_la-import_bsdav.Tpo -c -o import_bsdav_la-import_bsdav.lo `test -f 'import_bsdav.c' || echo '$(srcdir)/'`import_bsdav.c
@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/import_bsdav_la-import_bsdav.Tpo $(DEPDIR)/import_bsdav_la-import_bsdav.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='import_bsdav.c' object='import_bsdav_la-import_bsdav.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(import_bsdav_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o import_bsdav_la-import_bsdav.lo `test -f 'import_bsdav.c' || echo '$(srcdir)/'`import_bsdav.c
import_dv_la-import_dv.lo: import_dv.c
@am__fastdepCC_TRUE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(import_dv_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT import_dv_la-import_dv.lo -MD -MP -MF $(DEPDIR)/import_dv_la-import_dv.Tpo -c -o import_dv_la-import_dv.lo `test -f 'import_dv.c' || echo '$(srcdir)/'`import_dv.c
@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/import_dv_la-import_dv.Tpo $(DEPDIR)/import_dv_la-import_dv.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='import_dv.c' object='import_dv_la-import_dv.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(import_dv_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o import_dv_la-import_dv.lo `test -f 'import_dv.c' || echo '$(srcdir)/'`import_dv.c
import_dvd_la-import_dvd.lo: import_dvd.c
@am__fastdepCC_TRUE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(import_dvd_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT import_dvd_la-import_dvd.lo -MD -MP -MF $(DEPDIR)/import_dvd_la-import_dvd.Tpo -c -o import_dvd_la-import_dvd.lo `test -f 'import_dvd.c' || echo '$(srcdir)/'`import_dvd.c
@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/import_dvd_la-import_dvd.Tpo $(DEPDIR)/import_dvd_la-import_dvd.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='import_dvd.c' object='import_dvd_la-import_dvd.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(import_dvd_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o import_dvd_la-import_dvd.lo `test -f 'import_dvd.c' || echo '$(srcdir)/'`import_dvd.c
import_dvd_la-ac3scan.lo: ac3scan.c
@am__fastdepCC_TRUE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(import_dvd_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT import_dvd_la-ac3scan.lo -MD -MP -MF $(DEPDIR)/import_dvd_la-ac3scan.Tpo -c -o import_dvd_la-ac3scan.lo `test -f 'ac3scan.c' || echo '$(srcdir)/'`ac3scan.c
@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/import_dvd_la-ac3scan.Tpo $(DEPDIR)/import_dvd_la-ac3scan.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='ac3scan.c' object='import_dvd_la-ac3scan.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(import_dvd_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o import_dvd_la-ac3scan.lo `test -f 'ac3scan.c' || echo '$(srcdir)/'`ac3scan.c
import_dvd_la-dvd_reader.lo: dvd_reader.c
@am__fastdepCC_TRUE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(import_dvd_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT import_dvd_la-dvd_reader.lo -MD -MP -MF $(DEPDIR)/import_dvd_la-dvd_reader.Tpo -c -o import_dvd_la-dvd_reader.lo `test -f 'dvd_reader.c' || echo '$(srcdir)/'`dvd_reader.c
@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/import_dvd_la-dvd_reader.Tpo $(DEPDIR)/import_dvd_la-dvd_reader.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='dvd_reader.c' object='import_dvd_la-dvd_reader.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(import_dvd_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o import_dvd_la-dvd_reader.lo `test -f 'dvd_reader.c' || echo '$(srcdir)/'`dvd_reader.c
import_dvd_la-clone.lo: clone.c
@am__fastdepCC_TRUE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(import_dvd_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT import_dvd_la-clone.lo -MD -MP -MF $(DEPDIR)/import_dvd_la-clone.Tpo -c -o import_dvd_la-clone.lo `test -f 'clone.c' || echo '$(srcdir)/'`clone.c
@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/import_dvd_la-clone.Tpo $(DEPDIR)/import_dvd_la-clone.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='clone.c' object='import_dvd_la-clone.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(import_dvd_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o import_dvd_la-clone.lo `test -f 'clone.c' || echo '$(srcdir)/'`clone.c
import_dvd_la-ioaux.lo: ioaux.c
@am__fastdepCC_TRUE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(import_dvd_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT import_dvd_la-ioaux.lo -MD -MP -MF $(DEPDIR)/import_dvd_la-ioaux.Tpo -c -o import_dvd_la-ioaux.lo `test -f 'ioaux.c' || echo '$(srcdir)/'`ioaux.c
@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/import_dvd_la-ioaux.Tpo $(DEPDIR)/import_dvd_la-ioaux.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='ioaux.c' object='import_dvd_la-ioaux.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(import_dvd_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o import_dvd_la-ioaux.lo `test -f 'ioaux.c' || echo '$(srcdir)/'`ioaux.c
import_dvd_la-frame_info.lo: frame_info.c
@am__fastdepCC_TRUE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(import_dvd_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT import_dvd_la-frame_info.lo -MD -MP -MF $(DEPDIR)/import_dvd_la-frame_info.Tpo -c -o import_dvd_la-frame_info.lo `test -f 'frame_info.c' || echo '$(srcdir)/'`frame_info.c
@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/import_dvd_la-frame_info.Tpo $(DEPDIR)/import_dvd_la-frame_info.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='frame_info.c' object='import_dvd_la-frame_info.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(import_dvd_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o import_dvd_la-frame_info.lo `test -f 'frame_info.c' || echo '$(srcdir)/'`frame_info.c
import_dvd_la-ivtc.lo: ivtc.c
@am__fastdepCC_TRUE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(import_dvd_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT import_dvd_la-ivtc.lo -MD -MP -MF $(DEPDIR)/import_dvd_la-ivtc.Tpo -c -o import_dvd_la-ivtc.lo `test -f 'ivtc.c' || echo '$(srcdir)/'`ivtc.c
@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/import_dvd_la-ivtc.Tpo $(DEPDIR)/import_dvd_la-ivtc.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='ivtc.c' object='import_dvd_la-ivtc.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(import_dvd_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o import_dvd_la-ivtc.lo `test -f 'ivtc.c' || echo '$(srcdir)/'`ivtc.c
import_ffmpeg_la-import_ffmpeg.lo: import_ffmpeg.c
@am__fastdepCC_TRUE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(import_ffmpeg_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT import_ffmpeg_la-import_ffmpeg.lo -MD -MP -MF $(DEPDIR)/import_ffmpeg_la-import_ffmpeg.Tpo -c -o import_ffmpeg_la-import_ffmpeg.lo `test -f 'import_ffmpeg.c' || echo '$(srcdir)/'`import_ffmpeg.c
@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/import_ffmpeg_la-import_ffmpeg.Tpo $(DEPDIR)/import_ffmpeg_la-import_ffmpeg.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='import_ffmpeg.c' object='import_ffmpeg_la-import_ffmpeg.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(import_ffmpeg_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o import_ffmpeg_la-import_ffmpeg.lo `test -f 'import_ffmpeg.c' || echo '$(srcdir)/'`import_ffmpeg.c
import_im_la-import_im.lo: import_im.c
@am__fastdepCC_TRUE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(import_im_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT import_im_la-import_im.lo -MD -MP -MF $(DEPDIR)/import_im_la-import_im.Tpo -c -o import_im_la-import_im.lo `test -f 'import_im.c' || echo '$(srcdir)/'`import_im.c
@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/import_im_la-import_im.Tpo $(DEPDIR)/import_im_la-import_im.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='import_im.c' object='import_im_la-import_im.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(import_im_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o import_im_la-import_im.lo `test -f 'import_im.c' || echo '$(srcdir)/'`import_im.c
import_imlist_la-import_imlist.lo: import_imlist.c
@am__fastdepCC_TRUE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(import_imlist_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT import_imlist_la-import_imlist.lo -MD -MP -MF $(DEPDIR)/import_imlist_la-import_imlist.Tpo -c -o import_imlist_la-import_imlist.lo `test -f 'import_imlist.c' || echo '$(srcdir)/'`import_imlist.c
@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/import_imlist_la-import_imlist.Tpo $(DEPDIR)/import_imlist_la-import_imlist.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='import_imlist.c' object='import_imlist_la-import_imlist.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(import_imlist_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o import_imlist_la-import_imlist.lo `test -f 'import_imlist.c' || echo '$(srcdir)/'`import_imlist.c
import_lzo_la-import_lzo.lo: import_lzo.c
@am__fastdepCC_TRUE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(import_lzo_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT import_lzo_la-import_lzo.lo -MD -MP -MF $(DEPDIR)/import_lzo_la-import_lzo.Tpo -c -o import_lzo_la-import_lzo.lo `test -f 'import_lzo.c' || echo '$(srcdir)/'`import_lzo.c
@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/import_lzo_la-import_lzo.Tpo $(DEPDIR)/import_lzo_la-import_lzo.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='import_lzo.c' object='import_lzo_la-import_lzo.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(import_lzo_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o import_lzo_la-import_lzo.lo `test -f 'import_lzo.c' || echo '$(srcdir)/'`import_lzo.c
import_mov_la-import_mov.lo: import_mov.c
@am__fastdepCC_TRUE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(import_mov_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT import_mov_la-import_mov.lo -MD -MP -MF $(DEPDIR)/import_mov_la-import_mov.Tpo -c -o import_mov_la-import_mov.lo `test -f 'import_mov.c' || echo '$(srcdir)/'`import_mov.c
@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/import_mov_la-import_mov.Tpo $(DEPDIR)/import_mov_la-import_mov.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='import_mov.c' object='import_mov_la-import_mov.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(import_mov_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o import_mov_la-import_mov.lo `test -f 'import_mov.c' || echo '$(srcdir)/'`import_mov.c
import_mpeg2_la-import_mpeg2.lo: import_mpeg2.c
@am__fastdepCC_TRUE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(import_mpeg2_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT import_mpeg2_la-import_mpeg2.lo -MD -MP -MF $(DEPDIR)/import_mpeg2_la-import_mpeg2.Tpo -c -o import_mpeg2_la-import_mpeg2.lo `test -f 'import_mpeg2.c' || echo '$(srcdir)/'`import_mpeg2.c
@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/import_mpeg2_la-import_mpeg2.Tpo $(DEPDIR)/import_mpeg2_la-import_mpeg2.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='import_mpeg2.c' object='import_mpeg2_la-import_mpeg2.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(import_mpeg2_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o import_mpeg2_la-import_mpeg2.lo `test -f 'import_mpeg2.c' || echo '$(srcdir)/'`import_mpeg2.c
import_ogg_la-import_ogg.lo: import_ogg.c
@am__fastdepCC_TRUE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(import_ogg_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT import_ogg_la-import_ogg.lo -MD -MP -MF $(DEPDIR)/import_ogg_la-import_ogg.Tpo -c -o import_ogg_la-import_ogg.lo `test -f 'import_ogg.c' || echo '$(srcdir)/'`import_ogg.c
@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/import_ogg_la-import_ogg.Tpo $(DEPDIR)/import_ogg_la-import_ogg.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='import_ogg.c' object='import_ogg_la-import_ogg.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(import_ogg_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o import_ogg_la-import_ogg.lo `test -f 'import_ogg.c' || echo '$(srcdir)/'`import_ogg.c
import_vob_la-import_vob.lo: import_vob.c
@am__fastdepCC_TRUE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(import_vob_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT import_vob_la-import_vob.lo -MD -MP -MF $(DEPDIR)/import_vob_la-import_vob.Tpo -c -o import_vob_la-import_vob.lo `test -f 'import_vob.c' || echo '$(srcdir)/'`import_vob.c
@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/import_vob_la-import_vob.Tpo $(DEPDIR)/import_vob_la-import_vob.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='import_vob.c' object='import_vob_la-import_vob.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(import_vob_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o import_vob_la-import_vob.lo `test -f 'import_vob.c' || echo '$(srcdir)/'`import_vob.c
import_vob_la-ac3scan.lo: ac3scan.c
@am__fastdepCC_TRUE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(import_vob_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT import_vob_la-ac3scan.lo -MD -MP -MF $(DEPDIR)/import_vob_la-ac3scan.Tpo -c -o import_vob_la-ac3scan.lo `test -f 'ac3scan.c' || echo '$(srcdir)/'`ac3scan.c
@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/import_vob_la-ac3scan.Tpo $(DEPDIR)/import_vob_la-ac3scan.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='ac3scan.c' object='import_vob_la-ac3scan.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(import_vob_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o import_vob_la-ac3scan.lo `test -f 'ac3scan.c' || echo '$(srcdir)/'`ac3scan.c
import_vob_la-clone.lo: clone.c
@am__fastdepCC_TRUE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(import_vob_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT import_vob_la-clone.lo -MD -MP -MF $(DEPDIR)/import_vob_la-clone.Tpo -c -o import_vob_la-clone.lo `test -f 'clone.c' || echo '$(srcdir)/'`clone.c
@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/import_vob_la-clone.Tpo $(DEPDIR)/import_vob_la-clone.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='clone.c' object='import_vob_la-clone.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(import_vob_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o import_vob_la-clone.lo `test -f 'clone.c' || echo '$(srcdir)/'`clone.c
import_vob_la-ioaux.lo: ioaux.c
@am__fastdepCC_TRUE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(import_vob_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT import_vob_la-ioaux.lo -MD -MP -MF $(DEPDIR)/import_vob_la-ioaux.Tpo -c -o import_vob_la-ioaux.lo `test -f 'ioaux.c' || echo '$(srcdir)/'`ioaux.c
@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/import_vob_la-ioaux.Tpo $(DEPDIR)/import_vob_la-ioaux.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='ioaux.c' object='import_vob_la-ioaux.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(import_vob_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o import_vob_la-ioaux.lo `test -f 'ioaux.c' || echo '$(srcdir)/'`ioaux.c
import_vob_la-frame_info.lo: frame_info.c
@am__fastdepCC_TRUE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(import_vob_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT import_vob_la-frame_info.lo -MD -MP -MF $(DEPDIR)/import_vob_la-frame_info.Tpo -c -o import_vob_la-frame_info.lo `test -f 'frame_info.c' || echo '$(srcdir)/'`frame_info.c
@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/import_vob_la-frame_info.Tpo $(DEPDIR)/import_vob_la-frame_info.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='frame_info.c' object='import_vob_la-frame_info.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(import_vob_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o import_vob_la-frame_info.lo `test -f 'frame_info.c' || echo '$(srcdir)/'`frame_info.c
import_vob_la-ivtc.lo: ivtc.c
@am__fastdepCC_TRUE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(import_vob_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT import_vob_la-ivtc.lo -MD -MP -MF $(DEPDIR)/import_vob_la-ivtc.Tpo -c -o import_vob_la-ivtc.lo `test -f 'ivtc.c' || echo '$(srcdir)/'`ivtc.c
@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/import_vob_la-ivtc.Tpo $(DEPDIR)/import_vob_la-ivtc.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='ivtc.c' object='import_vob_la-ivtc.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(import_vob_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o import_vob_la-ivtc.lo `test -f 'ivtc.c' || echo '$(srcdir)/'`ivtc.c
import_x11_la-import_x11.lo: import_x11.c
@am__fastdepCC_TRUE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(import_x11_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT import_x11_la-import_x11.lo -MD -MP -MF $(DEPDIR)/import_x11_la-import_x11.Tpo -c -o import_x11_la-import_x11.lo `test -f 'import_x11.c' || echo '$(srcdir)/'`import_x11.c
@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/import_x11_la-import_x11.Tpo $(DEPDIR)/import_x11_la-import_x11.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='import_x11.c' object='import_x11_la-import_x11.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(import_x11_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o import_x11_la-import_x11.lo `test -f 'import_x11.c' || echo '$(srcdir)/'`import_x11.c
import_x11_la-x11source.lo: x11source.c
@am__fastdepCC_TRUE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(import_x11_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT import_x11_la-x11source.lo -MD -MP -MF $(DEPDIR)/import_x11_la-x11source.Tpo -c -o import_x11_la-x11source.lo `test -f 'x11source.c' || echo '$(srcdir)/'`x11source.c
@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/import_x11_la-x11source.Tpo $(DEPDIR)/import_x11_la-x11source.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='x11source.c' object='import_x11_la-x11source.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(import_x11_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o import_x11_la-x11source.lo `test -f 'x11source.c' || echo '$(srcdir)/'`x11source.c
import_xml_la-import_xml.lo: import_xml.c
@am__fastdepCC_TRUE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(import_xml_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT import_xml_la-import_xml.lo -MD -MP -MF $(DEPDIR)/import_xml_la-import_xml.Tpo -c -o import_xml_la-import_xml.lo `test -f 'import_xml.c' || echo '$(srcdir)/'`import_xml.c
@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/import_xml_la-import_xml.Tpo $(DEPDIR)/import_xml_la-import_xml.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='import_xml.c' object='import_xml_la-import_xml.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(import_xml_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o import_xml_la-import_xml.lo `test -f 'import_xml.c' || echo '$(srcdir)/'`import_xml.c
import_xml_la-ioxml.lo: ioxml.c
@am__fastdepCC_TRUE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(import_xml_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT import_xml_la-ioxml.lo -MD -MP -MF $(DEPDIR)/import_xml_la-ioxml.Tpo -c -o import_xml_la-ioxml.lo `test -f 'ioxml.c' || echo '$(srcdir)/'`ioxml.c
@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/import_xml_la-ioxml.Tpo $(DEPDIR)/import_xml_la-ioxml.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='ioxml.c' object='import_xml_la-ioxml.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(import_xml_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o import_xml_la-ioxml.lo `test -f 'ioxml.c' || echo '$(srcdir)/'`ioxml.c
import_xml_la-probe_xml.lo: probe_xml.c
@am__fastdepCC_TRUE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(import_xml_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT import_xml_la-probe_xml.lo -MD -MP -MF $(DEPDIR)/import_xml_la-probe_xml.Tpo -c -o import_xml_la-probe_xml.lo `test -f 'probe_xml.c' || echo '$(srcdir)/'`probe_xml.c
@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/import_xml_la-probe_xml.Tpo $(DEPDIR)/import_xml_la-probe_xml.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='probe_xml.c' object='import_xml_la-probe_xml.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(import_xml_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o import_xml_la-probe_xml.lo `test -f 'probe_xml.c' || echo '$(srcdir)/'`probe_xml.c
import_yuv4mpeg_la-import_yuv4mpeg.lo: import_yuv4mpeg.c
@am__fastdepCC_TRUE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(import_yuv4mpeg_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT import_yuv4mpeg_la-import_yuv4mpeg.lo -MD -MP -MF $(DEPDIR)/import_yuv4mpeg_la-import_yuv4mpeg.Tpo -c -o import_yuv4mpeg_la-import_yuv4mpeg.lo `test -f 'import_yuv4mpeg.c' || echo '$(srcdir)/'`import_yuv4mpeg.c
@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/import_yuv4mpeg_la-import_yuv4mpeg.Tpo $(DEPDIR)/import_yuv4mpeg_la-import_yuv4mpeg.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='import_yuv4mpeg.c' object='import_yuv4mpeg_la-import_yuv4mpeg.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(import_yuv4mpeg_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o import_yuv4mpeg_la-import_yuv4mpeg.lo `test -f 'import_yuv4mpeg.c' || echo '$(srcdir)/'`import_yuv4mpeg.c
tccat-tccat.o: tccat.c
@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(tccat_CFLAGS) $(CFLAGS) -MT tccat-tccat.o -MD -MP -MF $(DEPDIR)/tccat-tccat.Tpo -c -o tccat-tccat.o `test -f 'tccat.c' || echo '$(srcdir)/'`tccat.c
@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/tccat-tccat.Tpo $(DEPDIR)/tccat-tccat.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='tccat.c' object='tccat-tccat.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) $(tccat_CFLAGS) $(CFLAGS) -c -o tccat-tccat.o `test -f 'tccat.c' || echo '$(srcdir)/'`tccat.c
tccat-tccat.obj: tccat.c
@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(tccat_CFLAGS) $(CFLAGS) -MT tccat-tccat.obj -MD -MP -MF $(DEPDIR)/tccat-tccat.Tpo -c -o tccat-tccat.obj `if test -f 'tccat.c'; then $(CYGPATH_W) 'tccat.c'; else $(CYGPATH_W) '$(srcdir)/tccat.c'; fi`
@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/tccat-tccat.Tpo $(DEPDIR)/tccat-tccat.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='tccat.c' object='tccat-tccat.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) $(tccat_CFLAGS) $(CFLAGS) -c -o tccat-tccat.obj `if test -f 'tccat.c'; then $(CYGPATH_W) 'tccat.c'; else $(CYGPATH_W) '$(srcdir)/tccat.c'; fi`
tccat-dvd_reader.o: dvd_reader.c
@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(tccat_CFLAGS) $(CFLAGS) -MT tccat-dvd_reader.o -MD -MP -MF $(DEPDIR)/tccat-dvd_reader.Tpo -c -o tccat-dvd_reader.o `test -f 'dvd_reader.c' || echo '$(srcdir)/'`dvd_reader.c
@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/tccat-dvd_reader.Tpo $(DEPDIR)/tccat-dvd_reader.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='dvd_reader.c' object='tccat-dvd_reader.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) $(tccat_CFLAGS) $(CFLAGS) -c -o tccat-dvd_reader.o `test -f 'dvd_reader.c' || echo '$(srcdir)/'`dvd_reader.c
tccat-dvd_reader.obj: dvd_reader.c
@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(tccat_CFLAGS) $(CFLAGS) -MT tccat-dvd_reader.obj -MD -MP -MF $(DEPDIR)/tccat-dvd_reader.Tpo -c -o tccat-dvd_reader.obj `if test -f 'dvd_reader.c'; then $(CYGPATH_W) 'dvd_reader.c'; else $(CYGPATH_W) '$(srcdir)/dvd_reader.c'; fi`
@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/tccat-dvd_reader.Tpo $(DEPDIR)/tccat-dvd_reader.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='dvd_reader.c' object='tccat-dvd_reader.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) $(tccat_CFLAGS) $(CFLAGS) -c -o tccat-dvd_reader.obj `if test -f 'dvd_reader.c'; then $(CYGPATH_W) 'dvd_reader.c'; else $(CYGPATH_W) '$(srcdir)/dvd_reader.c'; fi`
tccat-extract_avi.o: extract_avi.c
@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(tccat_CFLAGS) $(CFLAGS) -MT tccat-extract_avi.o -MD -MP -MF $(DEPDIR)/tccat-extract_avi.Tpo -c -o tccat-extract_avi.o `test -f 'extract_avi.c' || echo '$(srcdir)/'`extract_avi.c
@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/tccat-extract_avi.Tpo $(DEPDIR)/tccat-extract_avi.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='extract_avi.c' object='tccat-extract_avi.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) $(tccat_CFLAGS) $(CFLAGS) -c -o tccat-extract_avi.o `test -f 'extract_avi.c' || echo '$(srcdir)/'`extract_avi.c
tccat-extract_avi.obj: extract_avi.c
@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(tccat_CFLAGS) $(CFLAGS) -MT tccat-extract_avi.obj -MD -MP -MF $(DEPDIR)/tccat-extract_avi.Tpo -c -o tccat-extract_avi.obj `if test -f 'extract_avi.c'; then $(CYGPATH_W) 'extract_avi.c'; else $(CYGPATH_W) '$(srcdir)/extract_avi.c'; fi`
@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/tccat-extract_avi.Tpo $(DEPDIR)/tccat-extract_avi.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='extract_avi.c' object='tccat-extract_avi.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) $(tccat_CFLAGS) $(CFLAGS) -c -o tccat-extract_avi.obj `if test -f 'extract_avi.c'; then $(CYGPATH_W) 'extract_avi.c'; else $(CYGPATH_W) '$(srcdir)/extract_avi.c'; fi`
tccat-fileinfo.o: fileinfo.c
@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(tccat_CFLAGS) $(CFLAGS) -MT tccat-fileinfo.o -MD -MP -MF $(DEPDIR)/tccat-fileinfo.Tpo -c -o tccat-fileinfo.o `test -f 'fileinfo.c' || echo '$(srcdir)/'`fileinfo.c
@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/tccat-fileinfo.Tpo $(DEPDIR)/tccat-fileinfo.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='fileinfo.c' object='tccat-fileinfo.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) $(tccat_CFLAGS) $(CFLAGS) -c -o tccat-fileinfo.o `test -f 'fileinfo.c' || echo '$(srcdir)/'`fileinfo.c
tccat-fileinfo.obj: fileinfo.c
@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(tccat_CFLAGS) $(CFLAGS) -MT tccat-fileinfo.obj -MD -MP -MF $(DEPDIR)/tccat-fileinfo.Tpo -c -o tccat-fileinfo.obj `if test -f 'fileinfo.c'; then $(CYGPATH_W) 'fileinfo.c'; else $(CYGPATH_W) '$(srcdir)/fileinfo.c'; fi`
@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/tccat-fileinfo.Tpo $(DEPDIR)/tccat-fileinfo.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='fileinfo.c' object='tccat-fileinfo.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) $(tccat_CFLAGS) $(CFLAGS) -c -o tccat-fileinfo.obj `if test -f 'fileinfo.c'; then $(CYGPATH_W) 'fileinfo.c'; else $(CYGPATH_W) '$(srcdir)/fileinfo.c'; fi`
tccat-ioaux.o: ioaux.c
@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(tccat_CFLAGS) $(CFLAGS) -MT tccat-ioaux.o -MD -MP -MF $(DEPDIR)/tccat-ioaux.Tpo -c -o tccat-ioaux.o `test -f 'ioaux.c' || echo '$(srcdir)/'`ioaux.c
@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/tccat-ioaux.Tpo $(DEPDIR)/tccat-ioaux.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='ioaux.c' object='tccat-ioaux.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) $(tccat_CFLAGS) $(CFLAGS) -c -o tccat-ioaux.o `test -f 'ioaux.c' || echo '$(srcdir)/'`ioaux.c
tccat-ioaux.obj: ioaux.c
@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(tccat_CFLAGS) $(CFLAGS) -MT tccat-ioaux.obj -MD -MP -MF $(DEPDIR)/tccat-ioaux.Tpo -c -o tccat-ioaux.obj `if test -f 'ioaux.c'; then $(CYGPATH_W) 'ioaux.c'; else $(CYGPATH_W) '$(srcdir)/ioaux.c'; fi`
@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/tccat-ioaux.Tpo $(DEPDIR)/tccat-ioaux.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='ioaux.c' object='tccat-ioaux.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) $(tccat_CFLAGS) $(CFLAGS) -c -o tccat-ioaux.obj `if test -f 'ioaux.c'; then $(CYGPATH_W) 'ioaux.c'; else $(CYGPATH_W) '$(srcdir)/ioaux.c'; fi`
tccat-ioxml.o: ioxml.c
@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(tccat_CFLAGS) $(CFLAGS) -MT tccat-ioxml.o -MD -MP -MF $(DEPDIR)/tccat-ioxml.Tpo -c -o tccat-ioxml.o `test -f 'ioxml.c' || echo '$(srcdir)/'`ioxml.c
@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/tccat-ioxml.Tpo $(DEPDIR)/tccat-ioxml.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='ioxml.c' object='tccat-ioxml.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) $(tccat_CFLAGS) $(CFLAGS) -c -o tccat-ioxml.o `test -f 'ioxml.c' || echo '$(srcdir)/'`ioxml.c
tccat-ioxml.obj: ioxml.c
@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(tccat_CFLAGS) $(CFLAGS) -MT tccat-ioxml.obj -MD -MP -MF $(DEPDIR)/tccat-ioxml.Tpo -c -o tccat-ioxml.obj `if test -f 'ioxml.c'; then $(CYGPATH_W) 'ioxml.c'; else $(CYGPATH_W) '$(srcdir)/ioxml.c'; fi`
@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/tccat-ioxml.Tpo $(DEPDIR)/tccat-ioxml.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='ioxml.c' object='tccat-ioxml.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) $(tccat_CFLAGS) $(CFLAGS) -c -o tccat-ioxml.obj `if test -f 'ioxml.c'; then $(CYGPATH_W) 'ioxml.c'; else $(CYGPATH_W) '$(srcdir)/ioxml.c'; fi`
tccat-ts_reader.o: ts_reader.c
@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(tccat_CFLAGS) $(CFLAGS) -MT tccat-ts_reader.o -MD -MP -MF $(DEPDIR)/tccat-ts_reader.Tpo -c -o tccat-ts_reader.o `test -f 'ts_reader.c' || echo '$(srcdir)/'`ts_reader.c
@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/tccat-ts_reader.Tpo $(DEPDIR)/tccat-ts_reader.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='ts_reader.c' object='tccat-ts_reader.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) $(tccat_CFLAGS) $(CFLAGS) -c -o tccat-ts_reader.o `test -f 'ts_reader.c' || echo '$(srcdir)/'`ts_reader.c
tccat-ts_reader.obj: ts_reader.c
@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(tccat_CFLAGS) $(CFLAGS) -MT tccat-ts_reader.obj -MD -MP -MF $(DEPDIR)/tccat-ts_reader.Tpo -c -o tccat-ts_reader.obj `if test -f 'ts_reader.c'; then $(CYGPATH_W) 'ts_reader.c'; else $(CYGPATH_W) '$(srcdir)/ts_reader.c'; fi`
@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/tccat-ts_reader.Tpo $(DEPDIR)/tccat-ts_reader.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='ts_reader.c' object='tccat-ts_reader.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) $(tccat_CFLAGS) $(CFLAGS) -c -o tccat-ts_reader.obj `if test -f 'ts_reader.c'; then $(CYGPATH_W) 'ts_reader.c'; else $(CYGPATH_W) '$(srcdir)/ts_reader.c'; fi`
tcdecode-tcdecode.o: tcdecode.c
@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(tcdecode_CFLAGS) $(CFLAGS) -MT tcdecode-tcdecode.o -MD -MP -MF $(DEPDIR)/tcdecode-tcdecode.Tpo -c -o tcdecode-tcdecode.o `test -f 'tcdecode.c' || echo '$(srcdir)/'`tcdecode.c
@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/tcdecode-tcdecode.Tpo $(DEPDIR)/tcdecode-tcdecode.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='tcdecode.c' object='tcdecode-tcdecode.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) $(tcdecode_CFLAGS) $(CFLAGS) -c -o tcdecode-tcdecode.o `test -f 'tcdecode.c' || echo '$(srcdir)/'`tcdecode.c
tcdecode-tcdecode.obj: tcdecode.c
@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(tcdecode_CFLAGS) $(CFLAGS) -MT tcdecode-tcdecode.obj -MD -MP -MF $(DEPDIR)/tcdecode-tcdecode.Tpo -c -o tcdecode-tcdecode.obj `if test -f 'tcdecode.c'; then $(CYGPATH_W) 'tcdecode.c'; else $(CYGPATH_W) '$(srcdir)/tcdecode.c'; fi`
@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/tcdecode-tcdecode.Tpo $(DEPDIR)/tcdecode-tcdecode.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='tcdecode.c' object='tcdecode-tcdecode.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) $(tcdecode_CFLAGS) $(CFLAGS) -c -o tcdecode-tcdecode.obj `if test -f 'tcdecode.c'; then $(CYGPATH_W) 'tcdecode.c'; else $(CYGPATH_W) '$(srcdir)/tcdecode.c'; fi`
tcdecode-fileinfo.o: fileinfo.c
@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(tcdecode_CFLAGS) $(CFLAGS) -MT tcdecode-fileinfo.o -MD -MP -MF $(DEPDIR)/tcdecode-fileinfo.Tpo -c -o tcdecode-fileinfo.o `test -f 'fileinfo.c' || echo '$(srcdir)/'`fileinfo.c
@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/tcdecode-fileinfo.Tpo $(DEPDIR)/tcdecode-fileinfo.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='fileinfo.c' object='tcdecode-fileinfo.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) $(tcdecode_CFLAGS) $(CFLAGS) -c -o tcdecode-fileinfo.o `test -f 'fileinfo.c' || echo '$(srcdir)/'`fileinfo.c
tcdecode-fileinfo.obj: fileinfo.c
@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(tcdecode_CFLAGS) $(CFLAGS) -MT tcdecode-fileinfo.obj -MD -MP -MF $(DEPDIR)/tcdecode-fileinfo.Tpo -c -o tcdecode-fileinfo.obj `if test -f 'fileinfo.c'; then $(CYGPATH_W) 'fileinfo.c'; else $(CYGPATH_W) '$(srcdir)/fileinfo.c'; fi`
@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/tcdecode-fileinfo.Tpo $(DEPDIR)/tcdecode-fileinfo.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='fileinfo.c' object='tcdecode-fileinfo.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) $(tcdecode_CFLAGS) $(CFLAGS) -c -o tcdecode-fileinfo.obj `if test -f 'fileinfo.c'; then $(CYGPATH_W) 'fileinfo.c'; else $(CYGPATH_W) '$(srcdir)/fileinfo.c'; fi`
tcdecode-ioaux.o: ioaux.c
@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(tcdecode_CFLAGS) $(CFLAGS) -MT tcdecode-ioaux.o -MD -MP -MF $(DEPDIR)/tcdecode-ioaux.Tpo -c -o tcdecode-ioaux.o `test -f 'ioaux.c' || echo '$(srcdir)/'`ioaux.c
@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/tcdecode-ioaux.Tpo $(DEPDIR)/tcdecode-ioaux.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='ioaux.c' object='tcdecode-ioaux.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) $(tcdecode_CFLAGS) $(CFLAGS) -c -o tcdecode-ioaux.o `test -f 'ioaux.c' || echo '$(srcdir)/'`ioaux.c
tcdecode-ioaux.obj: ioaux.c
@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(tcdecode_CFLAGS) $(CFLAGS) -MT tcdecode-ioaux.obj -MD -MP -MF $(DEPDIR)/tcdecode-ioaux.Tpo -c -o tcdecode-ioaux.obj `if test -f 'ioaux.c'; then $(CYGPATH_W) 'ioaux.c'; else $(CYGPATH_W) '$(srcdir)/ioaux.c'; fi`
@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/tcdecode-ioaux.Tpo $(DEPDIR)/tcdecode-ioaux.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='ioaux.c' object='tcdecode-ioaux.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) $(tcdecode_CFLAGS) $(CFLAGS) -c -o tcdecode-ioaux.obj `if test -f 'ioaux.c'; then $(CYGPATH_W) 'ioaux.c'; else $(CYGPATH_W) '$(srcdir)/ioaux.c'; fi`
tcdecode-mpg123.o: mpg123.c
@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(tcdecode_CFLAGS) $(CFLAGS) -MT tcdecode-mpg123.o -MD -MP -MF $(DEPDIR)/tcdecode-mpg123.Tpo -c -o tcdecode-mpg123.o `test -f 'mpg123.c' || echo '$(srcdir)/'`mpg123.c
@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/tcdecode-mpg123.Tpo $(DEPDIR)/tcdecode-mpg123.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='mpg123.c' object='tcdecode-mpg123.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) $(tcdecode_CFLAGS) $(CFLAGS) -c -o tcdecode-mpg123.o `test -f 'mpg123.c' || echo '$(srcdir)/'`mpg123.c
tcdecode-mpg123.obj: mpg123.c
@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(tcdecode_CFLAGS) $(CFLAGS) -MT tcdecode-mpg123.obj -MD -MP -MF $(DEPDIR)/tcdecode-mpg123.Tpo -c -o tcdecode-mpg123.obj `if test -f 'mpg123.c'; then $(CYGPATH_W) 'mpg123.c'; else $(CYGPATH_W) '$(srcdir)/mpg123.c'; fi`
@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/tcdecode-mpg123.Tpo $(DEPDIR)/tcdecode-mpg123.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='mpg123.c' object='tcdecode-mpg123.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) $(tcdecode_CFLAGS) $(CFLAGS) -c -o tcdecode-mpg123.obj `if test -f 'mpg123.c'; then $(CYGPATH_W) 'mpg123.c'; else $(CYGPATH_W) '$(srcdir)/mpg123.c'; fi`
tcdecode-decode_a52.o: decode_a52.c
@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(tcdecode_CFLAGS) $(CFLAGS) -MT tcdecode-decode_a52.o -MD -MP -MF $(DEPDIR)/tcdecode-decode_a52.Tpo -c -o tcdecode-decode_a52.o `test -f 'decode_a52.c' || echo '$(srcdir)/'`decode_a52.c
@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/tcdecode-decode_a52.Tpo $(DEPDIR)/tcdecode-decode_a52.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='decode_a52.c' object='tcdecode-decode_a52.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) $(tcdecode_CFLAGS) $(CFLAGS) -c -o tcdecode-decode_a52.o `test -f 'decode_a52.c' || echo '$(srcdir)/'`decode_a52.c
tcdecode-decode_a52.obj: decode_a52.c
@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(tcdecode_CFLAGS) $(CFLAGS) -MT tcdecode-decode_a52.obj -MD -MP -MF $(DEPDIR)/tcdecode-decode_a52.Tpo -c -o tcdecode-decode_a52.obj `if test -f 'decode_a52.c'; then $(CYGPATH_W) 'decode_a52.c'; else $(CYGPATH_W) '$(srcdir)/decode_a52.c'; fi`
@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/tcdecode-decode_a52.Tpo $(DEPDIR)/tcdecode-decode_a52.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='decode_a52.c' object='tcdecode-decode_a52.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) $(tcdecode_CFLAGS) $(CFLAGS) -c -o tcdecode-decode_a52.obj `if test -f 'decode_a52.c'; then $(CYGPATH_W) 'decode_a52.c'; else $(CYGPATH_W) '$(srcdir)/decode_a52.c'; fi`
tcdecode-decode_dv.o: decode_dv.c
@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(tcdecode_CFLAGS) $(CFLAGS) -MT tcdecode-decode_dv.o -MD -MP -MF $(DEPDIR)/tcdecode-decode_dv.Tpo -c -o tcdecode-decode_dv.o `test -f 'decode_dv.c' || echo '$(srcdir)/'`decode_dv.c
@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/tcdecode-decode_dv.Tpo $(DEPDIR)/tcdecode-decode_dv.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='decode_dv.c' object='tcdecode-decode_dv.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) $(tcdecode_CFLAGS) $(CFLAGS) -c -o tcdecode-decode_dv.o `test -f 'decode_dv.c' || echo '$(srcdir)/'`decode_dv.c
tcdecode-decode_dv.obj: decode_dv.c
@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(tcdecode_CFLAGS) $(CFLAGS) -MT tcdecode-decode_dv.obj -MD -MP -MF $(DEPDIR)/tcdecode-decode_dv.Tpo -c -o tcdecode-decode_dv.obj `if test -f 'decode_dv.c'; then $(CYGPATH_W) 'decode_dv.c'; else $(CYGPATH_W) '$(srcdir)/decode_dv.c'; fi`
@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/tcdecode-decode_dv.Tpo $(DEPDIR)/tcdecode-decode_dv.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='decode_dv.c' object='tcdecode-decode_dv.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) $(tcdecode_CFLAGS) $(CFLAGS) -c -o tcdecode-decode_dv.obj `if test -f 'decode_dv.c'; then $(CYGPATH_W) 'decode_dv.c'; else $(CYGPATH_W) '$(srcdir)/decode_dv.c'; fi`
tcdecode-decode_lavc.o: decode_lavc.c
@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(tcdecode_CFLAGS) $(CFLAGS) -MT tcdecode-decode_lavc.o -MD -MP -MF $(DEPDIR)/tcdecode-decode_lavc.Tpo -c -o tcdecode-decode_lavc.o `test -f 'decode_lavc.c' || echo '$(srcdir)/'`decode_lavc.c
@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/tcdecode-decode_lavc.Tpo $(DEPDIR)/tcdecode-decode_lavc.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='decode_lavc.c' object='tcdecode-decode_lavc.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) $(tcdecode_CFLAGS) $(CFLAGS) -c -o tcdecode-decode_lavc.o `test -f 'decode_lavc.c' || echo '$(srcdir)/'`decode_lavc.c
tcdecode-decode_lavc.obj: decode_lavc.c
@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(tcdecode_CFLAGS) $(CFLAGS) -MT tcdecode-decode_lavc.obj -MD -MP -MF $(DEPDIR)/tcdecode-decode_lavc.Tpo -c -o tcdecode-decode_lavc.obj `if test -f 'decode_lavc.c'; then $(CYGPATH_W) 'decode_lavc.c'; else $(CYGPATH_W) '$(srcdir)/decode_lavc.c'; fi`
@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/tcdecode-decode_lavc.Tpo $(DEPDIR)/tcdecode-decode_lavc.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='decode_lavc.c' object='tcdecode-decode_lavc.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) $(tcdecode_CFLAGS) $(CFLAGS) -c -o tcdecode-decode_lavc.obj `if test -f 'decode_lavc.c'; then $(CYGPATH_W) 'decode_lavc.c'; else $(CYGPATH_W) '$(srcdir)/decode_lavc.c'; fi`
tcdecode-decode_lzo.o: decode_lzo.c
@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(tcdecode_CFLAGS) $(CFLAGS) -MT tcdecode-decode_lzo.o -MD -MP -MF $(DEPDIR)/tcdecode-decode_lzo.Tpo -c -o tcdecode-decode_lzo.o `test -f 'decode_lzo.c' || echo '$(srcdir)/'`decode_lzo.c
@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/tcdecode-decode_lzo.Tpo $(DEPDIR)/tcdecode-decode_lzo.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='decode_lzo.c' object='tcdecode-decode_lzo.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) $(tcdecode_CFLAGS) $(CFLAGS) -c -o tcdecode-decode_lzo.o `test -f 'decode_lzo.c' || echo '$(srcdir)/'`decode_lzo.c
tcdecode-decode_lzo.obj: decode_lzo.c
@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(tcdecode_CFLAGS) $(CFLAGS) -MT tcdecode-decode_lzo.obj -MD -MP -MF $(DEPDIR)/tcdecode-decode_lzo.Tpo -c -o tcdecode-decode_lzo.obj `if test -f 'decode_lzo.c'; then $(CYGPATH_W) 'decode_lzo.c'; else $(CYGPATH_W) '$(srcdir)/decode_lzo.c'; fi`
@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/tcdecode-decode_lzo.Tpo $(DEPDIR)/tcdecode-decode_lzo.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='decode_lzo.c' object='tcdecode-decode_lzo.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) $(tcdecode_CFLAGS) $(CFLAGS) -c -o tcdecode-decode_lzo.obj `if test -f 'decode_lzo.c'; then $(CYGPATH_W) 'decode_lzo.c'; else $(CYGPATH_W) '$(srcdir)/decode_lzo.c'; fi`
tcdecode-decode_mov.o: decode_mov.c
@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(tcdecode_CFLAGS) $(CFLAGS) -MT tcdecode-decode_mov.o -MD -MP -MF $(DEPDIR)/tcdecode-decode_mov.Tpo -c -o tcdecode-decode_mov.o `test -f 'decode_mov.c' || echo '$(srcdir)/'`decode_mov.c
@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/tcdecode-decode_mov.Tpo $(DEPDIR)/tcdecode-decode_mov.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='decode_mov.c' object='tcdecode-decode_mov.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) $(tcdecode_CFLAGS) $(CFLAGS) -c -o tcdecode-decode_mov.o `test -f 'decode_mov.c' || echo '$(srcdir)/'`decode_mov.c
tcdecode-decode_mov.obj: decode_mov.c
@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(tcdecode_CFLAGS) $(CFLAGS) -MT tcdecode-decode_mov.obj -MD -MP -MF $(DEPDIR)/tcdecode-decode_mov.Tpo -c -o tcdecode-decode_mov.obj `if test -f 'decode_mov.c'; then $(CYGPATH_W) 'decode_mov.c'; else $(CYGPATH_W) '$(srcdir)/decode_mov.c'; fi`
@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/tcdecode-decode_mov.Tpo $(DEPDIR)/tcdecode-decode_mov.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='decode_mov.c' object='tcdecode-decode_mov.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) $(tcdecode_CFLAGS) $(CFLAGS) -c -o tcdecode-decode_mov.obj `if test -f 'decode_mov.c'; then $(CYGPATH_W) 'decode_mov.c'; else $(CYGPATH_W) '$(srcdir)/decode_mov.c'; fi`
tcdecode-decode_mp3.o: decode_mp3.c
@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(tcdecode_CFLAGS) $(CFLAGS) -MT tcdecode-decode_mp3.o -MD -MP -MF $(DEPDIR)/tcdecode-decode_mp3.Tpo -c -o tcdecode-decode_mp3.o `test -f 'decode_mp3.c' || echo '$(srcdir)/'`decode_mp3.c
@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/tcdecode-decode_mp3.Tpo $(DEPDIR)/tcdecode-decode_mp3.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='decode_mp3.c' object='tcdecode-decode_mp3.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) $(tcdecode_CFLAGS) $(CFLAGS) -c -o tcdecode-decode_mp3.o `test -f 'decode_mp3.c' || echo '$(srcdir)/'`decode_mp3.c
tcdecode-decode_mp3.obj: decode_mp3.c
@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(tcdecode_CFLAGS) $(CFLAGS) -MT tcdecode-decode_mp3.obj -MD -MP -MF $(DEPDIR)/tcdecode-decode_mp3.Tpo -c -o tcdecode-decode_mp3.obj `if test -f 'decode_mp3.c'; then $(CYGPATH_W) 'decode_mp3.c'; else $(CYGPATH_W) '$(srcdir)/decode_mp3.c'; fi`
@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/tcdecode-decode_mp3.Tpo $(DEPDIR)/tcdecode-decode_mp3.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='decode_mp3.c' object='tcdecode-decode_mp3.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) $(tcdecode_CFLAGS) $(CFLAGS) -c -o tcdecode-decode_mp3.obj `if test -f 'decode_mp3.c'; then $(CYGPATH_W) 'decode_mp3.c'; else $(CYGPATH_W) '$(srcdir)/decode_mp3.c'; fi`
tcdecode-decode_mpeg2.o: decode_mpeg2.c
@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(tcdecode_CFLAGS) $(CFLAGS) -MT tcdecode-decode_mpeg2.o -MD -MP -MF $(DEPDIR)/tcdecode-decode_mpeg2.Tpo -c -o tcdecode-decode_mpeg2.o `test -f 'decode_mpeg2.c' || echo '$(srcdir)/'`decode_mpeg2.c
@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/tcdecode-decode_mpeg2.Tpo $(DEPDIR)/tcdecode-decode_mpeg2.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='decode_mpeg2.c' object='tcdecode-decode_mpeg2.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) $(tcdecode_CFLAGS) $(CFLAGS) -c -o tcdecode-decode_mpeg2.o `test -f 'decode_mpeg2.c' || echo '$(srcdir)/'`decode_mpeg2.c
tcdecode-decode_mpeg2.obj: decode_mpeg2.c
@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(tcdecode_CFLAGS) $(CFLAGS) -MT tcdecode-decode_mpeg2.obj -MD -MP -MF $(DEPDIR)/tcdecode-decode_mpeg2.Tpo -c -o tcdecode-decode_mpeg2.obj `if test -f 'decode_mpeg2.c'; then $(CYGPATH_W) 'decode_mpeg2.c'; else $(CYGPATH_W) '$(srcdir)/decode_mpeg2.c'; fi`
@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/tcdecode-decode_mpeg2.Tpo $(DEPDIR)/tcdecode-decode_mpeg2.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='decode_mpeg2.c' object='tcdecode-decode_mpeg2.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) $(tcdecode_CFLAGS) $(CFLAGS) -c -o tcdecode-decode_mpeg2.obj `if test -f 'decode_mpeg2.c'; then $(CYGPATH_W) 'decode_mpeg2.c'; else $(CYGPATH_W) '$(srcdir)/decode_mpeg2.c'; fi`
tcdecode-decode_ogg.o: decode_ogg.c
@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(tcdecode_CFLAGS) $(CFLAGS) -MT tcdecode-decode_ogg.o -MD -MP -MF $(DEPDIR)/tcdecode-decode_ogg.Tpo -c -o tcdecode-decode_ogg.o `test -f 'decode_ogg.c' || echo '$(srcdir)/'`decode_ogg.c
@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/tcdecode-decode_ogg.Tpo $(DEPDIR)/tcdecode-decode_ogg.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='decode_ogg.c' object='tcdecode-decode_ogg.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) $(tcdecode_CFLAGS) $(CFLAGS) -c -o tcdecode-decode_ogg.o `test -f 'decode_ogg.c' || echo '$(srcdir)/'`decode_ogg.c
tcdecode-decode_ogg.obj: decode_ogg.c
@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(tcdecode_CFLAGS) $(CFLAGS) -MT tcdecode-decode_ogg.obj -MD -MP -MF $(DEPDIR)/tcdecode-decode_ogg.Tpo -c -o tcdecode-decode_ogg.obj `if test -f 'decode_ogg.c'; then $(CYGPATH_W) 'decode_ogg.c'; else $(CYGPATH_W) '$(srcdir)/decode_ogg.c'; fi`
@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/tcdecode-decode_ogg.Tpo $(DEPDIR)/tcdecode-decode_ogg.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='decode_ogg.c' object='tcdecode-decode_ogg.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) $(tcdecode_CFLAGS) $(CFLAGS) -c -o tcdecode-decode_ogg.obj `if test -f 'decode_ogg.c'; then $(CYGPATH_W) 'decode_ogg.c'; else $(CYGPATH_W) '$(srcdir)/decode_ogg.c'; fi`
tcdecode-decode_yuv.o: decode_yuv.c
@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(tcdecode_CFLAGS) $(CFLAGS) -MT tcdecode-decode_yuv.o -MD -MP -MF $(DEPDIR)/tcdecode-decode_yuv.Tpo -c -o tcdecode-decode_yuv.o `test -f 'decode_yuv.c' || echo '$(srcdir)/'`decode_yuv.c
@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/tcdecode-decode_yuv.Tpo $(DEPDIR)/tcdecode-decode_yuv.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='decode_yuv.c' object='tcdecode-decode_yuv.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) $(tcdecode_CFLAGS) $(CFLAGS) -c -o tcdecode-decode_yuv.o `test -f 'decode_yuv.c' || echo '$(srcdir)/'`decode_yuv.c
tcdecode-decode_yuv.obj: decode_yuv.c
@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(tcdecode_CFLAGS) $(CFLAGS) -MT tcdecode-decode_yuv.obj -MD -MP -MF $(DEPDIR)/tcdecode-decode_yuv.Tpo -c -o tcdecode-decode_yuv.obj `if test -f 'decode_yuv.c'; then $(CYGPATH_W) 'decode_yuv.c'; else $(CYGPATH_W) '$(srcdir)/decode_yuv.c'; fi`
@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/tcdecode-decode_yuv.Tpo $(DEPDIR)/tcdecode-decode_yuv.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='decode_yuv.c' object='tcdecode-decode_yuv.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) $(tcdecode_CFLAGS) $(CFLAGS) -c -o tcdecode-decode_yuv.obj `if test -f 'decode_yuv.c'; then $(CYGPATH_W) 'decode_yuv.c'; else $(CYGPATH_W) '$(srcdir)/decode_yuv.c'; fi`
tcdemux-aux_pes.o: aux_pes.c
@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(tcdemux_CFLAGS) $(CFLAGS) -MT tcdemux-aux_pes.o -MD -MP -MF $(DEPDIR)/tcdemux-aux_pes.Tpo -c -o tcdemux-aux_pes.o `test -f 'aux_pes.c' || echo '$(srcdir)/'`aux_pes.c
@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/tcdemux-aux_pes.Tpo $(DEPDIR)/tcdemux-aux_pes.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='aux_pes.c' object='tcdemux-aux_pes.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) $(tcdemux_CFLAGS) $(CFLAGS) -c -o tcdemux-aux_pes.o `test -f 'aux_pes.c' || echo '$(srcdir)/'`aux_pes.c
tcdemux-aux_pes.obj: aux_pes.c
@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(tcdemux_CFLAGS) $(CFLAGS) -MT tcdemux-aux_pes.obj -MD -MP -MF $(DEPDIR)/tcdemux-aux_pes.Tpo -c -o tcdemux-aux_pes.obj `if test -f 'aux_pes.c'; then $(CYGPATH_W) 'aux_pes.c'; else $(CYGPATH_W) '$(srcdir)/aux_pes.c'; fi`
@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/tcdemux-aux_pes.Tpo $(DEPDIR)/tcdemux-aux_pes.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='aux_pes.c' object='tcdemux-aux_pes.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) $(tcdemux_CFLAGS) $(CFLAGS) -c -o tcdemux-aux_pes.obj `if test -f 'aux_pes.c'; then $(CYGPATH_W) 'aux_pes.c'; else $(CYGPATH_W) '$(srcdir)/aux_pes.c'; fi`
tcdemux-tcdemux.o: tcdemux.c
@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(tcdemux_CFLAGS) $(CFLAGS) -MT tcdemux-tcdemux.o -MD -MP -MF $(DEPDIR)/tcdemux-tcdemux.Tpo -c -o tcdemux-tcdemux.o `test -f 'tcdemux.c' || echo '$(srcdir)/'`tcdemux.c
@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/tcdemux-tcdemux.Tpo $(DEPDIR)/tcdemux-tcdemux.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='tcdemux.c' object='tcdemux-tcdemux.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) $(tcdemux_CFLAGS) $(CFLAGS) -c -o tcdemux-tcdemux.o `test -f 'tcdemux.c' || echo '$(srcdir)/'`tcdemux.c
tcdemux-tcdemux.obj: tcdemux.c
@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(tcdemux_CFLAGS) $(CFLAGS) -MT tcdemux-tcdemux.obj -MD -MP -MF $(DEPDIR)/tcdemux-tcdemux.Tpo -c -o tcdemux-tcdemux.obj `if test -f 'tcdemux.c'; then $(CYGPATH_W) 'tcdemux.c'; else $(CYGPATH_W) '$(srcdir)/tcdemux.c'; fi`
@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/tcdemux-tcdemux.Tpo $(DEPDIR)/tcdemux-tcdemux.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='tcdemux.c' object='tcdemux-tcdemux.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) $(tcdemux_CFLAGS) $(CFLAGS) -c -o tcdemux-tcdemux.obj `if test -f 'tcdemux.c'; then $(CYGPATH_W) 'tcdemux.c'; else $(CYGPATH_W) '$(srcdir)/tcdemux.c'; fi`
tcdemux-demux_pass.o: demux_pass.c
@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(tcdemux_CFLAGS) $(CFLAGS) -MT tcdemux-demux_pass.o -MD -MP -MF $(DEPDIR)/tcdemux-demux_pass.Tpo -c -o tcdemux-demux_pass.o `test -f 'demux_pass.c' || echo '$(srcdir)/'`demux_pass.c
@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/tcdemux-demux_pass.Tpo $(DEPDIR)/tcdemux-demux_pass.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='demux_pass.c' object='tcdemux-demux_pass.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) $(tcdemux_CFLAGS) $(CFLAGS) -c -o tcdemux-demux_pass.o `test -f 'demux_pass.c' || echo '$(srcdir)/'`demux_pass.c
tcdemux-demux_pass.obj: demux_pass.c
@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(tcdemux_CFLAGS) $(CFLAGS) -MT tcdemux-demux_pass.obj -MD -MP -MF $(DEPDIR)/tcdemux-demux_pass.Tpo -c -o tcdemux-demux_pass.obj `if test -f 'demux_pass.c'; then $(CYGPATH_W) 'demux_pass.c'; else $(CYGPATH_W) '$(srcdir)/demux_pass.c'; fi`
@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/tcdemux-demux_pass.Tpo $(DEPDIR)/tcdemux-demux_pass.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='demux_pass.c' object='tcdemux-demux_pass.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) $(tcdemux_CFLAGS) $(CFLAGS) -c -o tcdemux-demux_pass.obj `if test -f 'demux_pass.c'; then $(CYGPATH_W) 'demux_pass.c'; else $(CYGPATH_W) '$(srcdir)/demux_pass.c'; fi`
tcdemux-demuxer.o: demuxer.c
@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(tcdemux_CFLAGS) $(CFLAGS) -MT tcdemux-demuxer.o -MD -MP -MF $(DEPDIR)/tcdemux-demuxer.Tpo -c -o tcdemux-demuxer.o `test -f 'demuxer.c' || echo '$(srcdir)/'`demuxer.c
@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/tcdemux-demuxer.Tpo $(DEPDIR)/tcdemux-demuxer.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='demuxer.c' object='tcdemux-demuxer.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) $(tcdemux_CFLAGS) $(CFLAGS) -c -o tcdemux-demuxer.o `test -f 'demuxer.c' || echo '$(srcdir)/'`demuxer.c
tcdemux-demuxer.obj: demuxer.c
@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(tcdemux_CFLAGS) $(CFLAGS) -MT tcdemux-demuxer.obj -MD -MP -MF $(DEPDIR)/tcdemux-demuxer.Tpo -c -o tcdemux-demuxer.obj `if test -f 'demuxer.c'; then $(CYGPATH_W) 'demuxer.c'; else $(CYGPATH_W) '$(srcdir)/demuxer.c'; fi`
@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/tcdemux-demuxer.Tpo $(DEPDIR)/tcdemux-demuxer.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='demuxer.c' object='tcdemux-demuxer.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) $(tcdemux_CFLAGS) $(CFLAGS) -c -o tcdemux-demuxer.obj `if test -f 'demuxer.c'; then $(CYGPATH_W) 'demuxer.c'; else $(CYGPATH_W) '$(srcdir)/demuxer.c'; fi`
tcdemux-dvd_reader.o: dvd_reader.c
@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(tcdemux_CFLAGS) $(CFLAGS) -MT tcdemux-dvd_reader.o -MD -MP -MF $(DEPDIR)/tcdemux-dvd_reader.Tpo -c -o tcdemux-dvd_reader.o `test -f 'dvd_reader.c' || echo '$(srcdir)/'`dvd_reader.c
@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/tcdemux-dvd_reader.Tpo $(DEPDIR)/tcdemux-dvd_reader.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='dvd_reader.c' object='tcdemux-dvd_reader.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) $(tcdemux_CFLAGS) $(CFLAGS) -c -o tcdemux-dvd_reader.o `test -f 'dvd_reader.c' || echo '$(srcdir)/'`dvd_reader.c
tcdemux-dvd_reader.obj: dvd_reader.c
@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(tcdemux_CFLAGS) $(CFLAGS) -MT tcdemux-dvd_reader.obj -MD -MP -MF $(DEPDIR)/tcdemux-dvd_reader.Tpo -c -o tcdemux-dvd_reader.obj `if test -f 'dvd_reader.c'; then $(CYGPATH_W) 'dvd_reader.c'; else $(CYGPATH_W) '$(srcdir)/dvd_reader.c'; fi`
@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/tcdemux-dvd_reader.Tpo $(DEPDIR)/tcdemux-dvd_reader.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='dvd_reader.c' object='tcdemux-dvd_reader.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) $(tcdemux_CFLAGS) $(CFLAGS) -c -o tcdemux-dvd_reader.obj `if test -f 'dvd_reader.c'; then $(CYGPATH_W) 'dvd_reader.c'; else $(CYGPATH_W) '$(srcdir)/dvd_reader.c'; fi`
tcdemux-fileinfo.o: fileinfo.c
@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(tcdemux_CFLAGS) $(CFLAGS) -MT tcdemux-fileinfo.o -MD -MP -MF $(DEPDIR)/tcdemux-fileinfo.Tpo -c -o tcdemux-fileinfo.o `test -f 'fileinfo.c' || echo '$(srcdir)/'`fileinfo.c
@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/tcdemux-fileinfo.Tpo $(DEPDIR)/tcdemux-fileinfo.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='fileinfo.c' object='tcdemux-fileinfo.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) $(tcdemux_CFLAGS) $(CFLAGS) -c -o tcdemux-fileinfo.o `test -f 'fileinfo.c' || echo '$(srcdir)/'`fileinfo.c
tcdemux-fileinfo.obj: fileinfo.c
@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(tcdemux_CFLAGS) $(CFLAGS) -MT tcdemux-fileinfo.obj -MD -MP -MF $(DEPDIR)/tcdemux-fileinfo.Tpo -c -o tcdemux-fileinfo.obj `if test -f 'fileinfo.c'; then $(CYGPATH_W) 'fileinfo.c'; else $(CYGPATH_W) '$(srcdir)/fileinfo.c'; fi`
@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/tcdemux-fileinfo.Tpo $(DEPDIR)/tcdemux-fileinfo.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='fileinfo.c' object='tcdemux-fileinfo.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) $(tcdemux_CFLAGS) $(CFLAGS) -c -o tcdemux-fileinfo.obj `if test -f 'fileinfo.c'; then $(CYGPATH_W) 'fileinfo.c'; else $(CYGPATH_W) '$(srcdir)/fileinfo.c'; fi`
tcdemux-ioaux.o: ioaux.c
@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(tcdemux_CFLAGS) $(CFLAGS) -MT tcdemux-ioaux.o -MD -MP -MF $(DEPDIR)/tcdemux-ioaux.Tpo -c -o tcdemux-ioaux.o `test -f 'ioaux.c' || echo '$(srcdir)/'`ioaux.c
@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/tcdemux-ioaux.Tpo $(DEPDIR)/tcdemux-ioaux.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='ioaux.c' object='tcdemux-ioaux.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) $(tcdemux_CFLAGS) $(CFLAGS) -c -o tcdemux-ioaux.o `test -f 'ioaux.c' || echo '$(srcdir)/'`ioaux.c
tcdemux-ioaux.obj: ioaux.c
@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(tcdemux_CFLAGS) $(CFLAGS) -MT tcdemux-ioaux.obj -MD -MP -MF $(DEPDIR)/tcdemux-ioaux.Tpo -c -o tcdemux-ioaux.obj `if test -f 'ioaux.c'; then $(CYGPATH_W) 'ioaux.c'; else $(CYGPATH_W) '$(srcdir)/ioaux.c'; fi`
@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/tcdemux-ioaux.Tpo $(DEPDIR)/tcdemux-ioaux.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='ioaux.c' object='tcdemux-ioaux.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) $(tcdemux_CFLAGS) $(CFLAGS) -c -o tcdemux-ioaux.obj `if test -f 'ioaux.c'; then $(CYGPATH_W) 'ioaux.c'; else $(CYGPATH_W) '$(srcdir)/ioaux.c'; fi`
tcdemux-packets.o: packets.c
@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(tcdemux_CFLAGS) $(CFLAGS) -MT tcdemux-packets.o -MD -MP -MF $(DEPDIR)/tcdemux-packets.Tpo -c -o tcdemux-packets.o `test -f 'packets.c' || echo '$(srcdir)/'`packets.c
@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/tcdemux-packets.Tpo $(DEPDIR)/tcdemux-packets.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='packets.c' object='tcdemux-packets.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) $(tcdemux_CFLAGS) $(CFLAGS) -c -o tcdemux-packets.o `test -f 'packets.c' || echo '$(srcdir)/'`packets.c
tcdemux-packets.obj: packets.c
@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(tcdemux_CFLAGS) $(CFLAGS) -MT tcdemux-packets.obj -MD -MP -MF $(DEPDIR)/tcdemux-packets.Tpo -c -o tcdemux-packets.obj `if test -f 'packets.c'; then $(CYGPATH_W) 'packets.c'; else $(CYGPATH_W) '$(srcdir)/packets.c'; fi`
@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/tcdemux-packets.Tpo $(DEPDIR)/tcdemux-packets.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='packets.c' object='tcdemux-packets.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) $(tcdemux_CFLAGS) $(CFLAGS) -c -o tcdemux-packets.obj `if test -f 'packets.c'; then $(CYGPATH_W) 'packets.c'; else $(CYGPATH_W) '$(srcdir)/packets.c'; fi`
tcdemux-scan_pack.o: scan_pack.c
@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(tcdemux_CFLAGS) $(CFLAGS) -MT tcdemux-scan_pack.o -MD -MP -MF $(DEPDIR)/tcdemux-scan_pack.Tpo -c -o tcdemux-scan_pack.o `test -f 'scan_pack.c' || echo '$(srcdir)/'`scan_pack.c
@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/tcdemux-scan_pack.Tpo $(DEPDIR)/tcdemux-scan_pack.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='scan_pack.c' object='tcdemux-scan_pack.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) $(tcdemux_CFLAGS) $(CFLAGS) -c -o tcdemux-scan_pack.o `test -f 'scan_pack.c' || echo '$(srcdir)/'`scan_pack.c
tcdemux-scan_pack.obj: scan_pack.c
@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(tcdemux_CFLAGS) $(CFLAGS) -MT tcdemux-scan_pack.obj -MD -MP -MF $(DEPDIR)/tcdemux-scan_pack.Tpo -c -o tcdemux-scan_pack.obj `if test -f 'scan_pack.c'; then $(CYGPATH_W) 'scan_pack.c'; else $(CYGPATH_W) '$(srcdir)/scan_pack.c'; fi`
@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/tcdemux-scan_pack.Tpo $(DEPDIR)/tcdemux-scan_pack.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='scan_pack.c' object='tcdemux-scan_pack.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) $(tcdemux_CFLAGS) $(CFLAGS) -c -o tcdemux-scan_pack.obj `if test -f 'scan_pack.c'; then $(CYGPATH_W) 'scan_pack.c'; else $(CYGPATH_W) '$(srcdir)/scan_pack.c'; fi`
tcdemux-seqinfo.o: seqinfo.c
@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(tcdemux_CFLAGS) $(CFLAGS) -MT tcdemux-seqinfo.o -MD -MP -MF $(DEPDIR)/tcdemux-seqinfo.Tpo -c -o tcdemux-seqinfo.o `test -f 'seqinfo.c' || echo '$(srcdir)/'`seqinfo.c
@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/tcdemux-seqinfo.Tpo $(DEPDIR)/tcdemux-seqinfo.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='seqinfo.c' object='tcdemux-seqinfo.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) $(tcdemux_CFLAGS) $(CFLAGS) -c -o tcdemux-seqinfo.o `test -f 'seqinfo.c' || echo '$(srcdir)/'`seqinfo.c
tcdemux-seqinfo.obj: seqinfo.c
@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(tcdemux_CFLAGS) $(CFLAGS) -MT tcdemux-seqinfo.obj -MD -MP -MF $(DEPDIR)/tcdemux-seqinfo.Tpo -c -o tcdemux-seqinfo.obj `if test -f 'seqinfo.c'; then $(CYGPATH_W) 'seqinfo.c'; else $(CYGPATH_W) '$(srcdir)/seqinfo.c'; fi`
@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/tcdemux-seqinfo.Tpo $(DEPDIR)/tcdemux-seqinfo.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='seqinfo.c' object='tcdemux-seqinfo.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) $(tcdemux_CFLAGS) $(CFLAGS) -c -o tcdemux-seqinfo.obj `if test -f 'seqinfo.c'; then $(CYGPATH_W) 'seqinfo.c'; else $(CYGPATH_W) '$(srcdir)/seqinfo.c'; fi`
tcextract-tcextract.o: tcextract.c
@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(tcextract_CFLAGS) $(CFLAGS) -MT tcextract-tcextract.o -MD -MP -MF $(DEPDIR)/tcextract-tcextract.Tpo -c -o tcextract-tcextract.o `test -f 'tcextract.c' || echo '$(srcdir)/'`tcextract.c
@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/tcextract-tcextract.Tpo $(DEPDIR)/tcextract-tcextract.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='tcextract.c' object='tcextract-tcextract.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) $(tcextract_CFLAGS) $(CFLAGS) -c -o tcextract-tcextract.o `test -f 'tcextract.c' || echo '$(srcdir)/'`tcextract.c
tcextract-tcextract.obj: tcextract.c
@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(tcextract_CFLAGS) $(CFLAGS) -MT tcextract-tcextract.obj -MD -MP -MF $(DEPDIR)/tcextract-tcextract.Tpo -c -o tcextract-tcextract.obj `if test -f 'tcextract.c'; then $(CYGPATH_W) 'tcextract.c'; else $(CYGPATH_W) '$(srcdir)/tcextract.c'; fi`
@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/tcextract-tcextract.Tpo $(DEPDIR)/tcextract-tcextract.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='tcextract.c' object='tcextract-tcextract.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) $(tcextract_CFLAGS) $(CFLAGS) -c -o tcextract-tcextract.obj `if test -f 'tcextract.c'; then $(CYGPATH_W) 'tcextract.c'; else $(CYGPATH_W) '$(srcdir)/tcextract.c'; fi`
tcextract-aux_pes.o: aux_pes.c
@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(tcextract_CFLAGS) $(CFLAGS) -MT tcextract-aux_pes.o -MD -MP -MF $(DEPDIR)/tcextract-aux_pes.Tpo -c -o tcextract-aux_pes.o `test -f 'aux_pes.c' || echo '$(srcdir)/'`aux_pes.c
@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/tcextract-aux_pes.Tpo $(DEPDIR)/tcextract-aux_pes.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='aux_pes.c' object='tcextract-aux_pes.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) $(tcextract_CFLAGS) $(CFLAGS) -c -o tcextract-aux_pes.o `test -f 'aux_pes.c' || echo '$(srcdir)/'`aux_pes.c
tcextract-aux_pes.obj: aux_pes.c
@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(tcextract_CFLAGS) $(CFLAGS) -MT tcextract-aux_pes.obj -MD -MP -MF $(DEPDIR)/tcextract-aux_pes.Tpo -c -o tcextract-aux_pes.obj `if test -f 'aux_pes.c'; then $(CYGPATH_W) 'aux_pes.c'; else $(CYGPATH_W) '$(srcdir)/aux_pes.c'; fi`
@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/tcextract-aux_pes.Tpo $(DEPDIR)/tcextract-aux_pes.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='aux_pes.c' object='tcextract-aux_pes.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) $(tcextract_CFLAGS) $(CFLAGS) -c -o tcextract-aux_pes.obj `if test -f 'aux_pes.c'; then $(CYGPATH_W) 'aux_pes.c'; else $(CYGPATH_W) '$(srcdir)/aux_pes.c'; fi`
tcextract-fileinfo.o: fileinfo.c
@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(tcextract_CFLAGS) $(CFLAGS) -MT tcextract-fileinfo.o -MD -MP -MF $(DEPDIR)/tcextract-fileinfo.Tpo -c -o tcextract-fileinfo.o `test -f 'fileinfo.c' || echo '$(srcdir)/'`fileinfo.c
@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/tcextract-fileinfo.Tpo $(DEPDIR)/tcextract-fileinfo.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='fileinfo.c' object='tcextract-fileinfo.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) $(tcextract_CFLAGS) $(CFLAGS) -c -o tcextract-fileinfo.o `test -f 'fileinfo.c' || echo '$(srcdir)/'`fileinfo.c
tcextract-fileinfo.obj: fileinfo.c
@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(tcextract_CFLAGS) $(CFLAGS) -MT tcextract-fileinfo.obj -MD -MP -MF $(DEPDIR)/tcextract-fileinfo.Tpo -c -o tcextract-fileinfo.obj `if test -f 'fileinfo.c'; then $(CYGPATH_W) 'fileinfo.c'; else $(CYGPATH_W) '$(srcdir)/fileinfo.c'; fi`
@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/tcextract-fileinfo.Tpo $(DEPDIR)/tcextract-fileinfo.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='fileinfo.c' object='tcextract-fileinfo.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) $(tcextract_CFLAGS) $(CFLAGS) -c -o tcextract-fileinfo.obj `if test -f 'fileinfo.c'; then $(CYGPATH_W) 'fileinfo.c'; else $(CYGPATH_W) '$(srcdir)/fileinfo.c'; fi`
tcextract-ioaux.o: ioaux.c
@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(tcextract_CFLAGS) $(CFLAGS) -MT tcextract-ioaux.o -MD -MP -MF $(DEPDIR)/tcextract-ioaux.Tpo -c -o tcextract-ioaux.o `test -f 'ioaux.c' || echo '$(srcdir)/'`ioaux.c
@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/tcextract-ioaux.Tpo $(DEPDIR)/tcextract-ioaux.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='ioaux.c' object='tcextract-ioaux.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) $(tcextract_CFLAGS) $(CFLAGS) -c -o tcextract-ioaux.o `test -f 'ioaux.c' || echo '$(srcdir)/'`ioaux.c
tcextract-ioaux.obj: ioaux.c
@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(tcextract_CFLAGS) $(CFLAGS) -MT tcextract-ioaux.obj -MD -MP -MF $(DEPDIR)/tcextract-ioaux.Tpo -c -o tcextract-ioaux.obj `if test -f 'ioaux.c'; then $(CYGPATH_W) 'ioaux.c'; else $(CYGPATH_W) '$(srcdir)/ioaux.c'; fi`
@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/tcextract-ioaux.Tpo $(DEPDIR)/tcextract-ioaux.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='ioaux.c' object='tcextract-ioaux.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) $(tcextract_CFLAGS) $(CFLAGS) -c -o tcextract-ioaux.obj `if test -f 'ioaux.c'; then $(CYGPATH_W) 'ioaux.c'; else $(CYGPATH_W) '$(srcdir)/ioaux.c'; fi`
tcextract-extract_ac3.o: extract_ac3.c
@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(tcextract_CFLAGS) $(CFLAGS) -MT tcextract-extract_ac3.o -MD -MP -MF $(DEPDIR)/tcextract-extract_ac3.Tpo -c -o tcextract-extract_ac3.o `test -f 'extract_ac3.c' || echo '$(srcdir)/'`extract_ac3.c
@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/tcextract-extract_ac3.Tpo $(DEPDIR)/tcextract-extract_ac3.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='extract_ac3.c' object='tcextract-extract_ac3.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) $(tcextract_CFLAGS) $(CFLAGS) -c -o tcextract-extract_ac3.o `test -f 'extract_ac3.c' || echo '$(srcdir)/'`extract_ac3.c
tcextract-extract_ac3.obj: extract_ac3.c
@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(tcextract_CFLAGS) $(CFLAGS) -MT tcextract-extract_ac3.obj -MD -MP -MF $(DEPDIR)/tcextract-extract_ac3.Tpo -c -o tcextract-extract_ac3.obj `if test -f 'extract_ac3.c'; then $(CYGPATH_W) 'extract_ac3.c'; else $(CYGPATH_W) '$(srcdir)/extract_ac3.c'; fi`
@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/tcextract-extract_ac3.Tpo $(DEPDIR)/tcextract-extract_ac3.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='extract_ac3.c' object='tcextract-extract_ac3.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) $(tcextract_CFLAGS) $(CFLAGS) -c -o tcextract-extract_ac3.obj `if test -f 'extract_ac3.c'; then $(CYGPATH_W) 'extract_ac3.c'; else $(CYGPATH_W) '$(srcdir)/extract_ac3.c'; fi`
tcextract-extract_avi.o: extract_avi.c
@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(tcextract_CFLAGS) $(CFLAGS) -MT tcextract-extract_avi.o -MD -MP -MF $(DEPDIR)/tcextract-extract_avi.Tpo -c -o tcextract-extract_avi.o `test -f 'extract_avi.c' || echo '$(srcdir)/'`extract_avi.c
@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/tcextract-extract_avi.Tpo $(DEPDIR)/tcextract-extract_avi.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='extract_avi.c' object='tcextract-extract_avi.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) $(tcextract_CFLAGS) $(CFLAGS) -c -o tcextract-extract_avi.o `test -f 'extract_avi.c' || echo '$(srcdir)/'`extract_avi.c
tcextract-extract_avi.obj: extract_avi.c
@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(tcextract_CFLAGS) $(CFLAGS) -MT tcextract-extract_avi.obj -MD -MP -MF $(DEPDIR)/tcextract-extract_avi.Tpo -c -o tcextract-extract_avi.obj `if test -f 'extract_avi.c'; then $(CYGPATH_W) 'extract_avi.c'; else $(CYGPATH_W) '$(srcdir)/extract_avi.c'; fi`
@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/tcextract-extract_avi.Tpo $(DEPDIR)/tcextract-extract_avi.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='extract_avi.c' object='tcextract-extract_avi.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) $(tcextract_CFLAGS) $(CFLAGS) -c -o tcextract-extract_avi.obj `if test -f 'extract_avi.c'; then $(CYGPATH_W) 'extract_avi.c'; else $(CYGPATH_W) '$(srcdir)/extract_avi.c'; fi`
tcextract-extract_dv.o: extract_dv.c
@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(tcextract_CFLAGS) $(CFLAGS) -MT tcextract-extract_dv.o -MD -MP -MF $(DEPDIR)/tcextract-extract_dv.Tpo -c -o tcextract-extract_dv.o `test -f 'extract_dv.c' || echo '$(srcdir)/'`extract_dv.c
@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/tcextract-extract_dv.Tpo $(DEPDIR)/tcextract-extract_dv.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='extract_dv.c' object='tcextract-extract_dv.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) $(tcextract_CFLAGS) $(CFLAGS) -c -o tcextract-extract_dv.o `test -f 'extract_dv.c' || echo '$(srcdir)/'`extract_dv.c
tcextract-extract_dv.obj: extract_dv.c
@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(tcextract_CFLAGS) $(CFLAGS) -MT tcextract-extract_dv.obj -MD -MP -MF $(DEPDIR)/tcextract-extract_dv.Tpo -c -o tcextract-extract_dv.obj `if test -f 'extract_dv.c'; then $(CYGPATH_W) 'extract_dv.c'; else $(CYGPATH_W) '$(srcdir)/extract_dv.c'; fi`
@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/tcextract-extract_dv.Tpo $(DEPDIR)/tcextract-extract_dv.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='extract_dv.c' object='tcextract-extract_dv.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) $(tcextract_CFLAGS) $(CFLAGS) -c -o tcextract-extract_dv.obj `if test -f 'extract_dv.c'; then $(CYGPATH_W) 'extract_dv.c'; else $(CYGPATH_W) '$(srcdir)/extract_dv.c'; fi`
tcextract-extract_lzo.o: extract_lzo.c
@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(tcextract_CFLAGS) $(CFLAGS) -MT tcextract-extract_lzo.o -MD -MP -MF $(DEPDIR)/tcextract-extract_lzo.Tpo -c -o tcextract-extract_lzo.o `test -f 'extract_lzo.c' || echo '$(srcdir)/'`extract_lzo.c
@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/tcextract-extract_lzo.Tpo $(DEPDIR)/tcextract-extract_lzo.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='extract_lzo.c' object='tcextract-extract_lzo.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) $(tcextract_CFLAGS) $(CFLAGS) -c -o tcextract-extract_lzo.o `test -f 'extract_lzo.c' || echo '$(srcdir)/'`extract_lzo.c
tcextract-extract_lzo.obj: extract_lzo.c
@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(tcextract_CFLAGS) $(CFLAGS) -MT tcextract-extract_lzo.obj -MD -MP -MF $(DEPDIR)/tcextract-extract_lzo.Tpo -c -o tcextract-extract_lzo.obj `if test -f 'extract_lzo.c'; then $(CYGPATH_W) 'extract_lzo.c'; else $(CYGPATH_W) '$(srcdir)/extract_lzo.c'; fi`
@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/tcextract-extract_lzo.Tpo $(DEPDIR)/tcextract-extract_lzo.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='extract_lzo.c' object='tcextract-extract_lzo.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) $(tcextract_CFLAGS) $(CFLAGS) -c -o tcextract-extract_lzo.obj `if test -f 'extract_lzo.c'; then $(CYGPATH_W) 'extract_lzo.c'; else $(CYGPATH_W) '$(srcdir)/extract_lzo.c'; fi`
tcextract-extract_mp3.o: extract_mp3.c
@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(tcextract_CFLAGS) $(CFLAGS) -MT tcextract-extract_mp3.o -MD -MP -MF $(DEPDIR)/tcextract-extract_mp3.Tpo -c -o tcextract-extract_mp3.o `test -f 'extract_mp3.c' || echo '$(srcdir)/'`extract_mp3.c
@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/tcextract-extract_mp3.Tpo $(DEPDIR)/tcextract-extract_mp3.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='extract_mp3.c' object='tcextract-extract_mp3.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) $(tcextract_CFLAGS) $(CFLAGS) -c -o tcextract-extract_mp3.o `test -f 'extract_mp3.c' || echo '$(srcdir)/'`extract_mp3.c
tcextract-extract_mp3.obj: extract_mp3.c
@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(tcextract_CFLAGS) $(CFLAGS) -MT tcextract-extract_mp3.obj -MD -MP -MF $(DEPDIR)/tcextract-extract_mp3.Tpo -c -o tcextract-extract_mp3.obj `if test -f 'extract_mp3.c'; then $(CYGPATH_W) 'extract_mp3.c'; else $(CYGPATH_W) '$(srcdir)/extract_mp3.c'; fi`
@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/tcextract-extract_mp3.Tpo $(DEPDIR)/tcextract-extract_mp3.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='extract_mp3.c' object='tcextract-extract_mp3.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) $(tcextract_CFLAGS) $(CFLAGS) -c -o tcextract-extract_mp3.obj `if test -f 'extract_mp3.c'; then $(CYGPATH_W) 'extract_mp3.c'; else $(CYGPATH_W) '$(srcdir)/extract_mp3.c'; fi`
tcextract-extract_mpeg2.o: extract_mpeg2.c
@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(tcextract_CFLAGS) $(CFLAGS) -MT tcextract-extract_mpeg2.o -MD -MP -MF $(DEPDIR)/tcextract-extract_mpeg2.Tpo -c -o tcextract-extract_mpeg2.o `test -f 'extract_mpeg2.c' || echo '$(srcdir)/'`extract_mpeg2.c
@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/tcextract-extract_mpeg2.Tpo $(DEPDIR)/tcextract-extract_mpeg2.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='extract_mpeg2.c' object='tcextract-extract_mpeg2.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) $(tcextract_CFLAGS) $(CFLAGS) -c -o tcextract-extract_mpeg2.o `test -f 'extract_mpeg2.c' || echo '$(srcdir)/'`extract_mpeg2.c
tcextract-extract_mpeg2.obj: extract_mpeg2.c
@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(tcextract_CFLAGS) $(CFLAGS) -MT tcextract-extract_mpeg2.obj -MD -MP -MF $(DEPDIR)/tcextract-extract_mpeg2.Tpo -c -o tcextract-extract_mpeg2.obj `if test -f 'extract_mpeg2.c'; then $(CYGPATH_W) 'extract_mpeg2.c'; else $(CYGPATH_W) '$(srcdir)/extract_mpeg2.c'; fi`
@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/tcextract-extract_mpeg2.Tpo $(DEPDIR)/tcextract-extract_mpeg2.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='extract_mpeg2.c' object='tcextract-extract_mpeg2.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) $(tcextract_CFLAGS) $(CFLAGS) -c -o tcextract-extract_mpeg2.obj `if test -f 'extract_mpeg2.c'; then $(CYGPATH_W) 'extract_mpeg2.c'; else $(CYGPATH_W) '$(srcdir)/extract_mpeg2.c'; fi`
tcextract-extract_mxf.o: extract_mxf.c
@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(tcextract_CFLAGS) $(CFLAGS) -MT tcextract-extract_mxf.o -MD -MP -MF $(DEPDIR)/tcextract-extract_mxf.Tpo -c -o tcextract-extract_mxf.o `test -f 'extract_mxf.c' || echo '$(srcdir)/'`extract_mxf.c
@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/tcextract-extract_mxf.Tpo $(DEPDIR)/tcextract-extract_mxf.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='extract_mxf.c' object='tcextract-extract_mxf.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) $(tcextract_CFLAGS) $(CFLAGS) -c -o tcextract-extract_mxf.o `test -f 'extract_mxf.c' || echo '$(srcdir)/'`extract_mxf.c
tcextract-extract_mxf.obj: extract_mxf.c
@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(tcextract_CFLAGS) $(CFLAGS) -MT tcextract-extract_mxf.obj -MD -MP -MF $(DEPDIR)/tcextract-extract_mxf.Tpo -c -o tcextract-extract_mxf.obj `if test -f 'extract_mxf.c'; then $(CYGPATH_W) 'extract_mxf.c'; else $(CYGPATH_W) '$(srcdir)/extract_mxf.c'; fi`
@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/tcextract-extract_mxf.Tpo $(DEPDIR)/tcextract-extract_mxf.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='extract_mxf.c' object='tcextract-extract_mxf.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) $(tcextract_CFLAGS) $(CFLAGS) -c -o tcextract-extract_mxf.obj `if test -f 'extract_mxf.c'; then $(CYGPATH_W) 'extract_mxf.c'; else $(CYGPATH_W) '$(srcdir)/extract_mxf.c'; fi`
tcextract-extract_ogm.o: extract_ogm.c
@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(tcextract_CFLAGS) $(CFLAGS) -MT tcextract-extract_ogm.o -MD -MP -MF $(DEPDIR)/tcextract-extract_ogm.Tpo -c -o tcextract-extract_ogm.o `test -f 'extract_ogm.c' || echo '$(srcdir)/'`extract_ogm.c
@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/tcextract-extract_ogm.Tpo $(DEPDIR)/tcextract-extract_ogm.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='extract_ogm.c' object='tcextract-extract_ogm.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) $(tcextract_CFLAGS) $(CFLAGS) -c -o tcextract-extract_ogm.o `test -f 'extract_ogm.c' || echo '$(srcdir)/'`extract_ogm.c
tcextract-extract_ogm.obj: extract_ogm.c
@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(tcextract_CFLAGS) $(CFLAGS) -MT tcextract-extract_ogm.obj -MD -MP -MF $(DEPDIR)/tcextract-extract_ogm.Tpo -c -o tcextract-extract_ogm.obj `if test -f 'extract_ogm.c'; then $(CYGPATH_W) 'extract_ogm.c'; else $(CYGPATH_W) '$(srcdir)/extract_ogm.c'; fi`
@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/tcextract-extract_ogm.Tpo $(DEPDIR)/tcextract-extract_ogm.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='extract_ogm.c' object='tcextract-extract_ogm.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) $(tcextract_CFLAGS) $(CFLAGS) -c -o tcextract-extract_ogm.obj `if test -f 'extract_ogm.c'; then $(CYGPATH_W) 'extract_ogm.c'; else $(CYGPATH_W) '$(srcdir)/extract_ogm.c'; fi`
tcextract-extract_pcm.o: extract_pcm.c
@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(tcextract_CFLAGS) $(CFLAGS) -MT tcextract-extract_pcm.o -MD -MP -MF $(DEPDIR)/tcextract-extract_pcm.Tpo -c -o tcextract-extract_pcm.o `test -f 'extract_pcm.c' || echo '$(srcdir)/'`extract_pcm.c
@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/tcextract-extract_pcm.Tpo $(DEPDIR)/tcextract-extract_pcm.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='extract_pcm.c' object='tcextract-extract_pcm.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) $(tcextract_CFLAGS) $(CFLAGS) -c -o tcextract-extract_pcm.o `test -f 'extract_pcm.c' || echo '$(srcdir)/'`extract_pcm.c
tcextract-extract_pcm.obj: extract_pcm.c
@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(tcextract_CFLAGS) $(CFLAGS) -MT tcextract-extract_pcm.obj -MD -MP -MF $(DEPDIR)/tcextract-extract_pcm.Tpo -c -o tcextract-extract_pcm.obj `if test -f 'extract_pcm.c'; then $(CYGPATH_W) 'extract_pcm.c'; else $(CYGPATH_W) '$(srcdir)/extract_pcm.c'; fi`
@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/tcextract-extract_pcm.Tpo $(DEPDIR)/tcextract-extract_pcm.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='extract_pcm.c' object='tcextract-extract_pcm.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) $(tcextract_CFLAGS) $(CFLAGS) -c -o tcextract-extract_pcm.obj `if test -f 'extract_pcm.c'; then $(CYGPATH_W) 'extract_pcm.c'; else $(CYGPATH_W) '$(srcdir)/extract_pcm.c'; fi`
tcextract-extract_rgb.o: extract_rgb.c
@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(tcextract_CFLAGS) $(CFLAGS) -MT tcextract-extract_rgb.o -MD -MP -MF $(DEPDIR)/tcextract-extract_rgb.Tpo -c -o tcextract-extract_rgb.o `test -f 'extract_rgb.c' || echo '$(srcdir)/'`extract_rgb.c
@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/tcextract-extract_rgb.Tpo $(DEPDIR)/tcextract-extract_rgb.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='extract_rgb.c' object='tcextract-extract_rgb.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) $(tcextract_CFLAGS) $(CFLAGS) -c -o tcextract-extract_rgb.o `test -f 'extract_rgb.c' || echo '$(srcdir)/'`extract_rgb.c
tcextract-extract_rgb.obj: extract_rgb.c
@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(tcextract_CFLAGS) $(CFLAGS) -MT tcextract-extract_rgb.obj -MD -MP -MF $(DEPDIR)/tcextract-extract_rgb.Tpo -c -o tcextract-extract_rgb.obj `if test -f 'extract_rgb.c'; then $(CYGPATH_W) 'extract_rgb.c'; else $(CYGPATH_W) '$(srcdir)/extract_rgb.c'; fi`
@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/tcextract-extract_rgb.Tpo $(DEPDIR)/tcextract-extract_rgb.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='extract_rgb.c' object='tcextract-extract_rgb.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) $(tcextract_CFLAGS) $(CFLAGS) -c -o tcextract-extract_rgb.obj `if test -f 'extract_rgb.c'; then $(CYGPATH_W) 'extract_rgb.c'; else $(CYGPATH_W) '$(srcdir)/extract_rgb.c'; fi`
tcextract-extract_yuv.o: extract_yuv.c
@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(tcextract_CFLAGS) $(CFLAGS) -MT tcextract-extract_yuv.o -MD -MP -MF $(DEPDIR)/tcextract-extract_yuv.Tpo -c -o tcextract-extract_yuv.o `test -f 'extract_yuv.c' || echo '$(srcdir)/'`extract_yuv.c
@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/tcextract-extract_yuv.Tpo $(DEPDIR)/tcextract-extract_yuv.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='extract_yuv.c' object='tcextract-extract_yuv.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) $(tcextract_CFLAGS) $(CFLAGS) -c -o tcextract-extract_yuv.o `test -f 'extract_yuv.c' || echo '$(srcdir)/'`extract_yuv.c
tcextract-extract_yuv.obj: extract_yuv.c
@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(tcextract_CFLAGS) $(CFLAGS) -MT tcextract-extract_yuv.obj -MD -MP -MF $(DEPDIR)/tcextract-extract_yuv.Tpo -c -o tcextract-extract_yuv.obj `if test -f 'extract_yuv.c'; then $(CYGPATH_W) 'extract_yuv.c'; else $(CYGPATH_W) '$(srcdir)/extract_yuv.c'; fi`
@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/tcextract-extract_yuv.Tpo $(DEPDIR)/tcextract-extract_yuv.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='extract_yuv.c' object='tcextract-extract_yuv.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) $(tcextract_CFLAGS) $(CFLAGS) -c -o tcextract-extract_yuv.obj `if test -f 'extract_yuv.c'; then $(CYGPATH_W) 'extract_yuv.c'; else $(CYGPATH_W) '$(srcdir)/extract_yuv.c'; fi`
tcprobe-tcprobe.o: tcprobe.c
@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(tcprobe_CFLAGS) $(CFLAGS) -MT tcprobe-tcprobe.o -MD -MP -MF $(DEPDIR)/tcprobe-tcprobe.Tpo -c -o tcprobe-tcprobe.o `test -f 'tcprobe.c' || echo '$(srcdir)/'`tcprobe.c
@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/tcprobe-tcprobe.Tpo $(DEPDIR)/tcprobe-tcprobe.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='tcprobe.c' object='tcprobe-tcprobe.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) $(tcprobe_CFLAGS) $(CFLAGS) -c -o tcprobe-tcprobe.o `test -f 'tcprobe.c' || echo '$(srcdir)/'`tcprobe.c
tcprobe-tcprobe.obj: tcprobe.c
@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(tcprobe_CFLAGS) $(CFLAGS) -MT tcprobe-tcprobe.obj -MD -MP -MF $(DEPDIR)/tcprobe-tcprobe.Tpo -c -o tcprobe-tcprobe.obj `if test -f 'tcprobe.c'; then $(CYGPATH_W) 'tcprobe.c'; else $(CYGPATH_W) '$(srcdir)/tcprobe.c'; fi`
@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/tcprobe-tcprobe.Tpo $(DEPDIR)/tcprobe-tcprobe.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='tcprobe.c' object='tcprobe-tcprobe.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) $(tcprobe_CFLAGS) $(CFLAGS) -c -o tcprobe-tcprobe.obj `if test -f 'tcprobe.c'; then $(CYGPATH_W) 'tcprobe.c'; else $(CYGPATH_W) '$(srcdir)/tcprobe.c'; fi`
tcprobe-ac3scan.o: ac3scan.c
@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(tcprobe_CFLAGS) $(CFLAGS) -MT tcprobe-ac3scan.o -MD -MP -MF $(DEPDIR)/tcprobe-ac3scan.Tpo -c -o tcprobe-ac3scan.o `test -f 'ac3scan.c' || echo '$(srcdir)/'`ac3scan.c
@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/tcprobe-ac3scan.Tpo $(DEPDIR)/tcprobe-ac3scan.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='ac3scan.c' object='tcprobe-ac3scan.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) $(tcprobe_CFLAGS) $(CFLAGS) -c -o tcprobe-ac3scan.o `test -f 'ac3scan.c' || echo '$(srcdir)/'`ac3scan.c
tcprobe-ac3scan.obj: ac3scan.c
@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(tcprobe_CFLAGS) $(CFLAGS) -MT tcprobe-ac3scan.obj -MD -MP -MF $(DEPDIR)/tcprobe-ac3scan.Tpo -c -o tcprobe-ac3scan.obj `if test -f 'ac3scan.c'; then $(CYGPATH_W) 'ac3scan.c'; else $(CYGPATH_W) '$(srcdir)/ac3scan.c'; fi`
@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/tcprobe-ac3scan.Tpo $(DEPDIR)/tcprobe-ac3scan.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='ac3scan.c' object='tcprobe-ac3scan.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) $(tcprobe_CFLAGS) $(CFLAGS) -c -o tcprobe-ac3scan.obj `if test -f 'ac3scan.c'; then $(CYGPATH_W) 'ac3scan.c'; else $(CYGPATH_W) '$(srcdir)/ac3scan.c'; fi`
tcprobe-aux_pes.o: aux_pes.c
@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(tcprobe_CFLAGS) $(CFLAGS) -MT tcprobe-aux_pes.o -MD -MP -MF $(DEPDIR)/tcprobe-aux_pes.Tpo -c -o tcprobe-aux_pes.o `test -f 'aux_pes.c' || echo '$(srcdir)/'`aux_pes.c
@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/tcprobe-aux_pes.Tpo $(DEPDIR)/tcprobe-aux_pes.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='aux_pes.c' object='tcprobe-aux_pes.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) $(tcprobe_CFLAGS) $(CFLAGS) -c -o tcprobe-aux_pes.o `test -f 'aux_pes.c' || echo '$(srcdir)/'`aux_pes.c
tcprobe-aux_pes.obj: aux_pes.c
@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(tcprobe_CFLAGS) $(CFLAGS) -MT tcprobe-aux_pes.obj -MD -MP -MF $(DEPDIR)/tcprobe-aux_pes.Tpo -c -o tcprobe-aux_pes.obj `if test -f 'aux_pes.c'; then $(CYGPATH_W) 'aux_pes.c'; else $(CYGPATH_W) '$(srcdir)/aux_pes.c'; fi`
@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/tcprobe-aux_pes.Tpo $(DEPDIR)/tcprobe-aux_pes.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='aux_pes.c' object='tcprobe-aux_pes.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) $(tcprobe_CFLAGS) $(CFLAGS) -c -o tcprobe-aux_pes.obj `if test -f 'aux_pes.c'; then $(CYGPATH_W) 'aux_pes.c'; else $(CYGPATH_W) '$(srcdir)/aux_pes.c'; fi`
tcprobe-dvd_reader.o: dvd_reader.c
@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(tcprobe_CFLAGS) $(CFLAGS) -MT tcprobe-dvd_reader.o -MD -MP -MF $(DEPDIR)/tcprobe-dvd_reader.Tpo -c -o tcprobe-dvd_reader.o `test -f 'dvd_reader.c' || echo '$(srcdir)/'`dvd_reader.c
@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/tcprobe-dvd_reader.Tpo $(DEPDIR)/tcprobe-dvd_reader.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='dvd_reader.c' object='tcprobe-dvd_reader.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) $(tcprobe_CFLAGS) $(CFLAGS) -c -o tcprobe-dvd_reader.o `test -f 'dvd_reader.c' || echo '$(srcdir)/'`dvd_reader.c
tcprobe-dvd_reader.obj: dvd_reader.c
@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(tcprobe_CFLAGS) $(CFLAGS) -MT tcprobe-dvd_reader.obj -MD -MP -MF $(DEPDIR)/tcprobe-dvd_reader.Tpo -c -o tcprobe-dvd_reader.obj `if test -f 'dvd_reader.c'; then $(CYGPATH_W) 'dvd_reader.c'; else $(CYGPATH_W) '$(srcdir)/dvd_reader.c'; fi`
@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/tcprobe-dvd_reader.Tpo $(DEPDIR)/tcprobe-dvd_reader.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='dvd_reader.c' object='tcprobe-dvd_reader.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) $(tcprobe_CFLAGS) $(CFLAGS) -c -o tcprobe-dvd_reader.obj `if test -f 'dvd_reader.c'; then $(CYGPATH_W) 'dvd_reader.c'; else $(CYGPATH_W) '$(srcdir)/dvd_reader.c'; fi`
tcprobe-fileinfo.o: fileinfo.c
@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(tcprobe_CFLAGS) $(CFLAGS) -MT tcprobe-fileinfo.o -MD -MP -MF $(DEPDIR)/tcprobe-fileinfo.Tpo -c -o tcprobe-fileinfo.o `test -f 'fileinfo.c' || echo '$(srcdir)/'`fileinfo.c
@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/tcprobe-fileinfo.Tpo $(DEPDIR)/tcprobe-fileinfo.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='fileinfo.c' object='tcprobe-fileinfo.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) $(tcprobe_CFLAGS) $(CFLAGS) -c -o tcprobe-fileinfo.o `test -f 'fileinfo.c' || echo '$(srcdir)/'`fileinfo.c
tcprobe-fileinfo.obj: fileinfo.c
@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(tcprobe_CFLAGS) $(CFLAGS) -MT tcprobe-fileinfo.obj -MD -MP -MF $(DEPDIR)/tcprobe-fileinfo.Tpo -c -o tcprobe-fileinfo.obj `if test -f 'fileinfo.c'; then $(CYGPATH_W) 'fileinfo.c'; else $(CYGPATH_W) '$(srcdir)/fileinfo.c'; fi`
@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/tcprobe-fileinfo.Tpo $(DEPDIR)/tcprobe-fileinfo.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='fileinfo.c' object='tcprobe-fileinfo.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) $(tcprobe_CFLAGS) $(CFLAGS) -c -o tcprobe-fileinfo.obj `if test -f 'fileinfo.c'; then $(CYGPATH_W) 'fileinfo.c'; else $(CYGPATH_W) '$(srcdir)/fileinfo.c'; fi`
tcprobe-ioaux.o: ioaux.c
@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(tcprobe_CFLAGS) $(CFLAGS) -MT tcprobe-ioaux.o -MD -MP -MF $(DEPDIR)/tcprobe-ioaux.Tpo -c -o tcprobe-ioaux.o `test -f 'ioaux.c' || echo '$(srcdir)/'`ioaux.c
@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/tcprobe-ioaux.Tpo $(DEPDIR)/tcprobe-ioaux.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='ioaux.c' object='tcprobe-ioaux.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) $(tcprobe_CFLAGS) $(CFLAGS) -c -o tcprobe-ioaux.o `test -f 'ioaux.c' || echo '$(srcdir)/'`ioaux.c
tcprobe-ioaux.obj: ioaux.c
@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(tcprobe_CFLAGS) $(CFLAGS) -MT tcprobe-ioaux.obj -MD -MP -MF $(DEPDIR)/tcprobe-ioaux.Tpo -c -o tcprobe-ioaux.obj `if test -f 'ioaux.c'; then $(CYGPATH_W) 'ioaux.c'; else $(CYGPATH_W) '$(srcdir)/ioaux.c'; fi`
@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/tcprobe-ioaux.Tpo $(DEPDIR)/tcprobe-ioaux.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='ioaux.c' object='tcprobe-ioaux.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) $(tcprobe_CFLAGS) $(CFLAGS) -c -o tcprobe-ioaux.obj `if test -f 'ioaux.c'; then $(CYGPATH_W) 'ioaux.c'; else $(CYGPATH_W) '$(srcdir)/ioaux.c'; fi`
tcprobe-ioxml.o: ioxml.c
@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(tcprobe_CFLAGS) $(CFLAGS) -MT tcprobe-ioxml.o -MD -MP -MF $(DEPDIR)/tcprobe-ioxml.Tpo -c -o tcprobe-ioxml.o `test -f 'ioxml.c' || echo '$(srcdir)/'`ioxml.c
@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/tcprobe-ioxml.Tpo $(DEPDIR)/tcprobe-ioxml.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='ioxml.c' object='tcprobe-ioxml.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) $(tcprobe_CFLAGS) $(CFLAGS) -c -o tcprobe-ioxml.o `test -f 'ioxml.c' || echo '$(srcdir)/'`ioxml.c
tcprobe-ioxml.obj: ioxml.c
@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(tcprobe_CFLAGS) $(CFLAGS) -MT tcprobe-ioxml.obj -MD -MP -MF $(DEPDIR)/tcprobe-ioxml.Tpo -c -o tcprobe-ioxml.obj `if test -f 'ioxml.c'; then $(CYGPATH_W) 'ioxml.c'; else $(CYGPATH_W) '$(srcdir)/ioxml.c'; fi`
@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/tcprobe-ioxml.Tpo $(DEPDIR)/tcprobe-ioxml.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='ioxml.c' object='tcprobe-ioxml.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) $(tcprobe_CFLAGS) $(CFLAGS) -c -o tcprobe-ioxml.obj `if test -f 'ioxml.c'; then $(CYGPATH_W) 'ioxml.c'; else $(CYGPATH_W) '$(srcdir)/ioxml.c'; fi`
tcprobe-mpg123.o: mpg123.c
@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(tcprobe_CFLAGS) $(CFLAGS) -MT tcprobe-mpg123.o -MD -MP -MF $(DEPDIR)/tcprobe-mpg123.Tpo -c -o tcprobe-mpg123.o `test -f 'mpg123.c' || echo '$(srcdir)/'`mpg123.c
@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/tcprobe-mpg123.Tpo $(DEPDIR)/tcprobe-mpg123.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='mpg123.c' object='tcprobe-mpg123.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) $(tcprobe_CFLAGS) $(CFLAGS) -c -o tcprobe-mpg123.o `test -f 'mpg123.c' || echo '$(srcdir)/'`mpg123.c
tcprobe-mpg123.obj: mpg123.c
@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(tcprobe_CFLAGS) $(CFLAGS) -MT tcprobe-mpg123.obj -MD -MP -MF $(DEPDIR)/tcprobe-mpg123.Tpo -c -o tcprobe-mpg123.obj `if test -f 'mpg123.c'; then $(CYGPATH_W) 'mpg123.c'; else $(CYGPATH_W) '$(srcdir)/mpg123.c'; fi`
@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/tcprobe-mpg123.Tpo $(DEPDIR)/tcprobe-mpg123.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='mpg123.c' object='tcprobe-mpg123.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) $(tcprobe_CFLAGS) $(CFLAGS) -c -o tcprobe-mpg123.obj `if test -f 'mpg123.c'; then $(CYGPATH_W) 'mpg123.c'; else $(CYGPATH_W) '$(srcdir)/mpg123.c'; fi`
tcprobe-scan_pes.o: scan_pes.c
@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(tcprobe_CFLAGS) $(CFLAGS) -MT tcprobe-scan_pes.o -MD -MP -MF $(DEPDIR)/tcprobe-scan_pes.Tpo -c -o tcprobe-scan_pes.o `test -f 'scan_pes.c' || echo '$(srcdir)/'`scan_pes.c
@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/tcprobe-scan_pes.Tpo $(DEPDIR)/tcprobe-scan_pes.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='scan_pes.c' object='tcprobe-scan_pes.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) $(tcprobe_CFLAGS) $(CFLAGS) -c -o tcprobe-scan_pes.o `test -f 'scan_pes.c' || echo '$(srcdir)/'`scan_pes.c
tcprobe-scan_pes.obj: scan_pes.c
@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(tcprobe_CFLAGS) $(CFLAGS) -MT tcprobe-scan_pes.obj -MD -MP -MF $(DEPDIR)/tcprobe-scan_pes.Tpo -c -o tcprobe-scan_pes.obj `if test -f 'scan_pes.c'; then $(CYGPATH_W) 'scan_pes.c'; else $(CYGPATH_W) '$(srcdir)/scan_pes.c'; fi`
@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/tcprobe-scan_pes.Tpo $(DEPDIR)/tcprobe-scan_pes.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='scan_pes.c' object='tcprobe-scan_pes.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) $(tcprobe_CFLAGS) $(CFLAGS) -c -o tcprobe-scan_pes.obj `if test -f 'scan_pes.c'; then $(CYGPATH_W) 'scan_pes.c'; else $(CYGPATH_W) '$(srcdir)/scan_pes.c'; fi`
tcprobe-decode_dv.o: decode_dv.c
@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(tcprobe_CFLAGS) $(CFLAGS) -MT tcprobe-decode_dv.o -MD -MP -MF $(DEPDIR)/tcprobe-decode_dv.Tpo -c -o tcprobe-decode_dv.o `test -f 'decode_dv.c' || echo '$(srcdir)/'`decode_dv.c
@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/tcprobe-decode_dv.Tpo $(DEPDIR)/tcprobe-decode_dv.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='decode_dv.c' object='tcprobe-decode_dv.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) $(tcprobe_CFLAGS) $(CFLAGS) -c -o tcprobe-decode_dv.o `test -f 'decode_dv.c' || echo '$(srcdir)/'`decode_dv.c
tcprobe-decode_dv.obj: decode_dv.c
@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(tcprobe_CFLAGS) $(CFLAGS) -MT tcprobe-decode_dv.obj -MD -MP -MF $(DEPDIR)/tcprobe-decode_dv.Tpo -c -o tcprobe-decode_dv.obj `if test -f 'decode_dv.c'; then $(CYGPATH_W) 'decode_dv.c'; else $(CYGPATH_W) '$(srcdir)/decode_dv.c'; fi`
@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/tcprobe-decode_dv.Tpo $(DEPDIR)/tcprobe-decode_dv.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='decode_dv.c' object='tcprobe-decode_dv.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) $(tcprobe_CFLAGS) $(CFLAGS) -c -o tcprobe-decode_dv.obj `if test -f 'decode_dv.c'; then $(CYGPATH_W) 'decode_dv.c'; else $(CYGPATH_W) '$(srcdir)/decode_dv.c'; fi`
tcprobe-extract_avi.o: extract_avi.c
@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(tcprobe_CFLAGS) $(CFLAGS) -MT tcprobe-extract_avi.o -MD -MP -MF $(DEPDIR)/tcprobe-extract_avi.Tpo -c -o tcprobe-extract_avi.o `test -f 'extract_avi.c' || echo '$(srcdir)/'`extract_avi.c
@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/tcprobe-extract_avi.Tpo $(DEPDIR)/tcprobe-extract_avi.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='extract_avi.c' object='tcprobe-extract_avi.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) $(tcprobe_CFLAGS) $(CFLAGS) -c -o tcprobe-extract_avi.o `test -f 'extract_avi.c' || echo '$(srcdir)/'`extract_avi.c
tcprobe-extract_avi.obj: extract_avi.c
@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(tcprobe_CFLAGS) $(CFLAGS) -MT tcprobe-extract_avi.obj -MD -MP -MF $(DEPDIR)/tcprobe-extract_avi.Tpo -c -o tcprobe-extract_avi.obj `if test -f 'extract_avi.c'; then $(CYGPATH_W) 'extract_avi.c'; else $(CYGPATH_W) '$(srcdir)/extract_avi.c'; fi`
@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/tcprobe-extract_avi.Tpo $(DEPDIR)/tcprobe-extract_avi.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='extract_avi.c' object='tcprobe-extract_avi.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) $(tcprobe_CFLAGS) $(CFLAGS) -c -o tcprobe-extract_avi.obj `if test -f 'extract_avi.c'; then $(CYGPATH_W) 'extract_avi.c'; else $(CYGPATH_W) '$(srcdir)/extract_avi.c'; fi`
tcprobe-extract_mxf.o: extract_mxf.c
@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(tcprobe_CFLAGS) $(CFLAGS) -MT tcprobe-extract_mxf.o -MD -MP -MF $(DEPDIR)/tcprobe-extract_mxf.Tpo -c -o tcprobe-extract_mxf.o `test -f 'extract_mxf.c' || echo '$(srcdir)/'`extract_mxf.c
@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/tcprobe-extract_mxf.Tpo $(DEPDIR)/tcprobe-extract_mxf.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='extract_mxf.c' object='tcprobe-extract_mxf.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) $(tcprobe_CFLAGS) $(CFLAGS) -c -o tcprobe-extract_mxf.o `test -f 'extract_mxf.c' || echo '$(srcdir)/'`extract_mxf.c
tcprobe-extract_mxf.obj: extract_mxf.c
@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(tcprobe_CFLAGS) $(CFLAGS) -MT tcprobe-extract_mxf.obj -MD -MP -MF $(DEPDIR)/tcprobe-extract_mxf.Tpo -c -o tcprobe-extract_mxf.obj `if test -f 'extract_mxf.c'; then $(CYGPATH_W) 'extract_mxf.c'; else $(CYGPATH_W) '$(srcdir)/extract_mxf.c'; fi`
@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/tcprobe-extract_mxf.Tpo $(DEPDIR)/tcprobe-extract_mxf.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='extract_mxf.c' object='tcprobe-extract_mxf.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) $(tcprobe_CFLAGS) $(CFLAGS) -c -o tcprobe-extract_mxf.obj `if test -f 'extract_mxf.c'; then $(CYGPATH_W) 'extract_mxf.c'; else $(CYGPATH_W) '$(srcdir)/extract_mxf.c'; fi`
tcprobe-extract_yuv.o: extract_yuv.c
@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(tcprobe_CFLAGS) $(CFLAGS) -MT tcprobe-extract_yuv.o -MD -MP -MF $(DEPDIR)/tcprobe-extract_yuv.Tpo -c -o tcprobe-extract_yuv.o `test -f 'extract_yuv.c' || echo '$(srcdir)/'`extract_yuv.c
@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/tcprobe-extract_yuv.Tpo $(DEPDIR)/tcprobe-extract_yuv.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='extract_yuv.c' object='tcprobe-extract_yuv.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) $(tcprobe_CFLAGS) $(CFLAGS) -c -o tcprobe-extract_yuv.o `test -f 'extract_yuv.c' || echo '$(srcdir)/'`extract_yuv.c
tcprobe-extract_yuv.obj: extract_yuv.c
@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(tcprobe_CFLAGS) $(CFLAGS) -MT tcprobe-extract_yuv.obj -MD -MP -MF $(DEPDIR)/tcprobe-extract_yuv.Tpo -c -o tcprobe-extract_yuv.obj `if test -f 'extract_yuv.c'; then $(CYGPATH_W) 'extract_yuv.c'; else $(CYGPATH_W) '$(srcdir)/extract_yuv.c'; fi`
@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/tcprobe-extract_yuv.Tpo $(DEPDIR)/tcprobe-extract_yuv.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='extract_yuv.c' object='tcprobe-extract_yuv.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) $(tcprobe_CFLAGS) $(CFLAGS) -c -o tcprobe-extract_yuv.obj `if test -f 'extract_yuv.c'; then $(CYGPATH_W) 'extract_yuv.c'; else $(CYGPATH_W) '$(srcdir)/extract_yuv.c'; fi`
tcprobe-probe_bktr.o: probe_bktr.c
@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(tcprobe_CFLAGS) $(CFLAGS) -MT tcprobe-probe_bktr.o -MD -MP -MF $(DEPDIR)/tcprobe-probe_bktr.Tpo -c -o tcprobe-probe_bktr.o `test -f 'probe_bktr.c' || echo '$(srcdir)/'`probe_bktr.c
@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/tcprobe-probe_bktr.Tpo $(DEPDIR)/tcprobe-probe_bktr.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='probe_bktr.c' object='tcprobe-probe_bktr.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) $(tcprobe_CFLAGS) $(CFLAGS) -c -o tcprobe-probe_bktr.o `test -f 'probe_bktr.c' || echo '$(srcdir)/'`probe_bktr.c
tcprobe-probe_bktr.obj: probe_bktr.c
@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(tcprobe_CFLAGS) $(CFLAGS) -MT tcprobe-probe_bktr.obj -MD -MP -MF $(DEPDIR)/tcprobe-probe_bktr.Tpo -c -o tcprobe-probe_bktr.obj `if test -f 'probe_bktr.c'; then $(CYGPATH_W) 'probe_bktr.c'; else $(CYGPATH_W) '$(srcdir)/probe_bktr.c'; fi`
@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/tcprobe-probe_bktr.Tpo $(DEPDIR)/tcprobe-probe_bktr.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='probe_bktr.c' object='tcprobe-probe_bktr.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) $(tcprobe_CFLAGS) $(CFLAGS) -c -o tcprobe-probe_bktr.obj `if test -f 'probe_bktr.c'; then $(CYGPATH_W) 'probe_bktr.c'; else $(CYGPATH_W) '$(srcdir)/probe_bktr.c'; fi`
tcprobe-probe_bsdav.o: probe_bsdav.c
@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(tcprobe_CFLAGS) $(CFLAGS) -MT tcprobe-probe_bsdav.o -MD -MP -MF $(DEPDIR)/tcprobe-probe_bsdav.Tpo -c -o tcprobe-probe_bsdav.o `test -f 'probe_bsdav.c' || echo '$(srcdir)/'`probe_bsdav.c
@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/tcprobe-probe_bsdav.Tpo $(DEPDIR)/tcprobe-probe_bsdav.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='probe_bsdav.c' object='tcprobe-probe_bsdav.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) $(tcprobe_CFLAGS) $(CFLAGS) -c -o tcprobe-probe_bsdav.o `test -f 'probe_bsdav.c' || echo '$(srcdir)/'`probe_bsdav.c
tcprobe-probe_bsdav.obj: probe_bsdav.c
@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(tcprobe_CFLAGS) $(CFLAGS) -MT tcprobe-probe_bsdav.obj -MD -MP -MF $(DEPDIR)/tcprobe-probe_bsdav.Tpo -c -o tcprobe-probe_bsdav.obj `if test -f 'probe_bsdav.c'; then $(CYGPATH_W) 'probe_bsdav.c'; else $(CYGPATH_W) '$(srcdir)/probe_bsdav.c'; fi`
@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/tcprobe-probe_bsdav.Tpo $(DEPDIR)/tcprobe-probe_bsdav.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='probe_bsdav.c' object='tcprobe-probe_bsdav.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) $(tcprobe_CFLAGS) $(CFLAGS) -c -o tcprobe-probe_bsdav.obj `if test -f 'probe_bsdav.c'; then $(CYGPATH_W) 'probe_bsdav.c'; else $(CYGPATH_W) '$(srcdir)/probe_bsdav.c'; fi`
tcprobe-probe_dvd.o: probe_dvd.c
@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(tcprobe_CFLAGS) $(CFLAGS) -MT tcprobe-probe_dvd.o -MD -MP -MF $(DEPDIR)/tcprobe-probe_dvd.Tpo -c -o tcprobe-probe_dvd.o `test -f 'probe_dvd.c' || echo '$(srcdir)/'`probe_dvd.c
@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/tcprobe-probe_dvd.Tpo $(DEPDIR)/tcprobe-probe_dvd.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='probe_dvd.c' object='tcprobe-probe_dvd.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) $(tcprobe_CFLAGS) $(CFLAGS) -c -o tcprobe-probe_dvd.o `test -f 'probe_dvd.c' || echo '$(srcdir)/'`probe_dvd.c
tcprobe-probe_dvd.obj: probe_dvd.c
@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(tcprobe_CFLAGS) $(CFLAGS) -MT tcprobe-probe_dvd.obj -MD -MP -MF $(DEPDIR)/tcprobe-probe_dvd.Tpo -c -o tcprobe-probe_dvd.obj `if test -f 'probe_dvd.c'; then $(CYGPATH_W) 'probe_dvd.c'; else $(CYGPATH_W) '$(srcdir)/probe_dvd.c'; fi`
@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/tcprobe-probe_dvd.Tpo $(DEPDIR)/tcprobe-probe_dvd.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='probe_dvd.c' object='tcprobe-probe_dvd.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) $(tcprobe_CFLAGS) $(CFLAGS) -c -o tcprobe-probe_dvd.obj `if test -f 'probe_dvd.c'; then $(CYGPATH_W) 'probe_dvd.c'; else $(CYGPATH_W) '$(srcdir)/probe_dvd.c'; fi`
tcprobe-probe_im.o: probe_im.c
@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(tcprobe_CFLAGS) $(CFLAGS) -MT tcprobe-probe_im.o -MD -MP -MF $(DEPDIR)/tcprobe-probe_im.Tpo -c -o tcprobe-probe_im.o `test -f 'probe_im.c' || echo '$(srcdir)/'`probe_im.c
@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/tcprobe-probe_im.Tpo $(DEPDIR)/tcprobe-probe_im.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='probe_im.c' object='tcprobe-probe_im.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) $(tcprobe_CFLAGS) $(CFLAGS) -c -o tcprobe-probe_im.o `test -f 'probe_im.c' || echo '$(srcdir)/'`probe_im.c
tcprobe-probe_im.obj: probe_im.c
@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(tcprobe_CFLAGS) $(CFLAGS) -MT tcprobe-probe_im.obj -MD -MP -MF $(DEPDIR)/tcprobe-probe_im.Tpo -c -o tcprobe-probe_im.obj `if test -f 'probe_im.c'; then $(CYGPATH_W) 'probe_im.c'; else $(CYGPATH_W) '$(srcdir)/probe_im.c'; fi`
@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/tcprobe-probe_im.Tpo $(DEPDIR)/tcprobe-probe_im.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='probe_im.c' object='tcprobe-probe_im.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) $(tcprobe_CFLAGS) $(CFLAGS) -c -o tcprobe-probe_im.obj `if test -f 'probe_im.c'; then $(CYGPATH_W) 'probe_im.c'; else $(CYGPATH_W) '$(srcdir)/probe_im.c'; fi`
tcprobe-probe_mov.o: probe_mov.c
@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(tcprobe_CFLAGS) $(CFLAGS) -MT tcprobe-probe_mov.o -MD -MP -MF $(DEPDIR)/tcprobe-probe_mov.Tpo -c -o tcprobe-probe_mov.o `test -f 'probe_mov.c' || echo '$(srcdir)/'`probe_mov.c
@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/tcprobe-probe_mov.Tpo $(DEPDIR)/tcprobe-probe_mov.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='probe_mov.c' object='tcprobe-probe_mov.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) $(tcprobe_CFLAGS) $(CFLAGS) -c -o tcprobe-probe_mov.o `test -f 'probe_mov.c' || echo '$(srcdir)/'`probe_mov.c
tcprobe-probe_mov.obj: probe_mov.c
@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(tcprobe_CFLAGS) $(CFLAGS) -MT tcprobe-probe_mov.obj -MD -MP -MF $(DEPDIR)/tcprobe-probe_mov.Tpo -c -o tcprobe-probe_mov.obj `if test -f 'probe_mov.c'; then $(CYGPATH_W) 'probe_mov.c'; else $(CYGPATH_W) '$(srcdir)/probe_mov.c'; fi`
@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/tcprobe-probe_mov.Tpo $(DEPDIR)/tcprobe-probe_mov.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='probe_mov.c' object='tcprobe-probe_mov.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) $(tcprobe_CFLAGS) $(CFLAGS) -c -o tcprobe-probe_mov.obj `if test -f 'probe_mov.c'; then $(CYGPATH_W) 'probe_mov.c'; else $(CYGPATH_W) '$(srcdir)/probe_mov.c'; fi`
tcprobe-probe_nuv.o: probe_nuv.c
@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(tcprobe_CFLAGS) $(CFLAGS) -MT tcprobe-probe_nuv.o -MD -MP -MF $(DEPDIR)/tcprobe-probe_nuv.Tpo -c -o tcprobe-probe_nuv.o `test -f 'probe_nuv.c' || echo '$(srcdir)/'`probe_nuv.c
@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/tcprobe-probe_nuv.Tpo $(DEPDIR)/tcprobe-probe_nuv.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='probe_nuv.c' object='tcprobe-probe_nuv.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) $(tcprobe_CFLAGS) $(CFLAGS) -c -o tcprobe-probe_nuv.o `test -f 'probe_nuv.c' || echo '$(srcdir)/'`probe_nuv.c
tcprobe-probe_nuv.obj: probe_nuv.c
@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(tcprobe_CFLAGS) $(CFLAGS) -MT tcprobe-probe_nuv.obj -MD -MP -MF $(DEPDIR)/tcprobe-probe_nuv.Tpo -c -o tcprobe-probe_nuv.obj `if test -f 'probe_nuv.c'; then $(CYGPATH_W) 'probe_nuv.c'; else $(CYGPATH_W) '$(srcdir)/probe_nuv.c'; fi`
@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/tcprobe-probe_nuv.Tpo $(DEPDIR)/tcprobe-probe_nuv.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='probe_nuv.c' object='tcprobe-probe_nuv.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) $(tcprobe_CFLAGS) $(CFLAGS) -c -o tcprobe-probe_nuv.obj `if test -f 'probe_nuv.c'; then $(CYGPATH_W) 'probe_nuv.c'; else $(CYGPATH_W) '$(srcdir)/probe_nuv.c'; fi`
tcprobe-probe_ogg.o: probe_ogg.c
@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(tcprobe_CFLAGS) $(CFLAGS) -MT tcprobe-probe_ogg.o -MD -MP -MF $(DEPDIR)/tcprobe-probe_ogg.Tpo -c -o tcprobe-probe_ogg.o `test -f 'probe_ogg.c' || echo '$(srcdir)/'`probe_ogg.c
@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/tcprobe-probe_ogg.Tpo $(DEPDIR)/tcprobe-probe_ogg.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='probe_ogg.c' object='tcprobe-probe_ogg.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) $(tcprobe_CFLAGS) $(CFLAGS) -c -o tcprobe-probe_ogg.o `test -f 'probe_ogg.c' || echo '$(srcdir)/'`probe_ogg.c
tcprobe-probe_ogg.obj: probe_ogg.c
@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(tcprobe_CFLAGS) $(CFLAGS) -MT tcprobe-probe_ogg.obj -MD -MP -MF $(DEPDIR)/tcprobe-probe_ogg.Tpo -c -o tcprobe-probe_ogg.obj `if test -f 'probe_ogg.c'; then $(CYGPATH_W) 'probe_ogg.c'; else $(CYGPATH_W) '$(srcdir)/probe_ogg.c'; fi`
@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/tcprobe-probe_ogg.Tpo $(DEPDIR)/tcprobe-probe_ogg.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='probe_ogg.c' object='tcprobe-probe_ogg.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) $(tcprobe_CFLAGS) $(CFLAGS) -c -o tcprobe-probe_ogg.obj `if test -f 'probe_ogg.c'; then $(CYGPATH_W) 'probe_ogg.c'; else $(CYGPATH_W) '$(srcdir)/probe_ogg.c'; fi`
tcprobe-probe_oss.o: probe_oss.c
@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(tcprobe_CFLAGS) $(CFLAGS) -MT tcprobe-probe_oss.o -MD -MP -MF $(DEPDIR)/tcprobe-probe_oss.Tpo -c -o tcprobe-probe_oss.o `test -f 'probe_oss.c' || echo '$(srcdir)/'`probe_oss.c
@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/tcprobe-probe_oss.Tpo $(DEPDIR)/tcprobe-probe_oss.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='probe_oss.c' object='tcprobe-probe_oss.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) $(tcprobe_CFLAGS) $(CFLAGS) -c -o tcprobe-probe_oss.o `test -f 'probe_oss.c' || echo '$(srcdir)/'`probe_oss.c
tcprobe-probe_oss.obj: probe_oss.c
@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(tcprobe_CFLAGS) $(CFLAGS) -MT tcprobe-probe_oss.obj -MD -MP -MF $(DEPDIR)/tcprobe-probe_oss.Tpo -c -o tcprobe-probe_oss.obj `if test -f 'probe_oss.c'; then $(CYGPATH_W) 'probe_oss.c'; else $(CYGPATH_W) '$(srcdir)/probe_oss.c'; fi`
@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/tcprobe-probe_oss.Tpo $(DEPDIR)/tcprobe-probe_oss.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='probe_oss.c' object='tcprobe-probe_oss.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) $(tcprobe_CFLAGS) $(CFLAGS) -c -o tcprobe-probe_oss.obj `if test -f 'probe_oss.c'; then $(CYGPATH_W) 'probe_oss.c'; else $(CYGPATH_W) '$(srcdir)/probe_oss.c'; fi`
tcprobe-probe_pv3.o: probe_pv3.c
@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(tcprobe_CFLAGS) $(CFLAGS) -MT tcprobe-probe_pv3.o -MD -MP -MF $(DEPDIR)/tcprobe-probe_pv3.Tpo -c -o tcprobe-probe_pv3.o `test -f 'probe_pv3.c' || echo '$(srcdir)/'`probe_pv3.c
@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/tcprobe-probe_pv3.Tpo $(DEPDIR)/tcprobe-probe_pv3.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='probe_pv3.c' object='tcprobe-probe_pv3.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) $(tcprobe_CFLAGS) $(CFLAGS) -c -o tcprobe-probe_pv3.o `test -f 'probe_pv3.c' || echo '$(srcdir)/'`probe_pv3.c
tcprobe-probe_pv3.obj: probe_pv3.c
@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(tcprobe_CFLAGS) $(CFLAGS) -MT tcprobe-probe_pv3.obj -MD -MP -MF $(DEPDIR)/tcprobe-probe_pv3.Tpo -c -o tcprobe-probe_pv3.obj `if test -f 'probe_pv3.c'; then $(CYGPATH_W) 'probe_pv3.c'; else $(CYGPATH_W) '$(srcdir)/probe_pv3.c'; fi`
@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/tcprobe-probe_pv3.Tpo $(DEPDIR)/tcprobe-probe_pv3.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='probe_pv3.c' object='tcprobe-probe_pv3.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) $(tcprobe_CFLAGS) $(CFLAGS) -c -o tcprobe-probe_pv3.obj `if test -f 'probe_pv3.c'; then $(CYGPATH_W) 'probe_pv3.c'; else $(CYGPATH_W) '$(srcdir)/probe_pv3.c'; fi`
tcprobe-probe_stream.o: probe_stream.c
@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(tcprobe_CFLAGS) $(CFLAGS) -MT tcprobe-probe_stream.o -MD -MP -MF $(DEPDIR)/tcprobe-probe_stream.Tpo -c -o tcprobe-probe_stream.o `test -f 'probe_stream.c' || echo '$(srcdir)/'`probe_stream.c
@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/tcprobe-probe_stream.Tpo $(DEPDIR)/tcprobe-probe_stream.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='probe_stream.c' object='tcprobe-probe_stream.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) $(tcprobe_CFLAGS) $(CFLAGS) -c -o tcprobe-probe_stream.o `test -f 'probe_stream.c' || echo '$(srcdir)/'`probe_stream.c
tcprobe-probe_stream.obj: probe_stream.c
@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(tcprobe_CFLAGS) $(CFLAGS) -MT tcprobe-probe_stream.obj -MD -MP -MF $(DEPDIR)/tcprobe-probe_stream.Tpo -c -o tcprobe-probe_stream.obj `if test -f 'probe_stream.c'; then $(CYGPATH_W) 'probe_stream.c'; else $(CYGPATH_W) '$(srcdir)/probe_stream.c'; fi`
@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/tcprobe-probe_stream.Tpo $(DEPDIR)/tcprobe-probe_stream.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='probe_stream.c' object='tcprobe-probe_stream.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) $(tcprobe_CFLAGS) $(CFLAGS) -c -o tcprobe-probe_stream.obj `if test -f 'probe_stream.c'; then $(CYGPATH_W) 'probe_stream.c'; else $(CYGPATH_W) '$(srcdir)/probe_stream.c'; fi`
tcprobe-probe_sunau.o: probe_sunau.c
@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(tcprobe_CFLAGS) $(CFLAGS) -MT tcprobe-probe_sunau.o -MD -MP -MF $(DEPDIR)/tcprobe-probe_sunau.Tpo -c -o tcprobe-probe_sunau.o `test -f 'probe_sunau.c' || echo '$(srcdir)/'`probe_sunau.c
@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/tcprobe-probe_sunau.Tpo $(DEPDIR)/tcprobe-probe_sunau.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='probe_sunau.c' object='tcprobe-probe_sunau.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) $(tcprobe_CFLAGS) $(CFLAGS) -c -o tcprobe-probe_sunau.o `test -f 'probe_sunau.c' || echo '$(srcdir)/'`probe_sunau.c
tcprobe-probe_sunau.obj: probe_sunau.c
@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(tcprobe_CFLAGS) $(CFLAGS) -MT tcprobe-probe_sunau.obj -MD -MP -MF $(DEPDIR)/tcprobe-probe_sunau.Tpo -c -o tcprobe-probe_sunau.obj `if test -f 'probe_sunau.c'; then $(CYGPATH_W) 'probe_sunau.c'; else $(CYGPATH_W) '$(srcdir)/probe_sunau.c'; fi`
@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/tcprobe-probe_sunau.Tpo $(DEPDIR)/tcprobe-probe_sunau.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='probe_sunau.c' object='tcprobe-probe_sunau.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) $(tcprobe_CFLAGS) $(CFLAGS) -c -o tcprobe-probe_sunau.obj `if test -f 'probe_sunau.c'; then $(CYGPATH_W) 'probe_sunau.c'; else $(CYGPATH_W) '$(srcdir)/probe_sunau.c'; fi`
tcprobe-probe_v4l.o: probe_v4l.c
@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(tcprobe_CFLAGS) $(CFLAGS) -MT tcprobe-probe_v4l.o -MD -MP -MF $(DEPDIR)/tcprobe-probe_v4l.Tpo -c -o tcprobe-probe_v4l.o `test -f 'probe_v4l.c' || echo '$(srcdir)/'`probe_v4l.c
@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/tcprobe-probe_v4l.Tpo $(DEPDIR)/tcprobe-probe_v4l.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='probe_v4l.c' object='tcprobe-probe_v4l.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) $(tcprobe_CFLAGS) $(CFLAGS) -c -o tcprobe-probe_v4l.o `test -f 'probe_v4l.c' || echo '$(srcdir)/'`probe_v4l.c
tcprobe-probe_v4l.obj: probe_v4l.c
@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(tcprobe_CFLAGS) $(CFLAGS) -MT tcprobe-probe_v4l.obj -MD -MP -MF $(DEPDIR)/tcprobe-probe_v4l.Tpo -c -o tcprobe-probe_v4l.obj `if test -f 'probe_v4l.c'; then $(CYGPATH_W) 'probe_v4l.c'; else $(CYGPATH_W) '$(srcdir)/probe_v4l.c'; fi`
@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/tcprobe-probe_v4l.Tpo $(DEPDIR)/tcprobe-probe_v4l.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='probe_v4l.c' object='tcprobe-probe_v4l.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) $(tcprobe_CFLAGS) $(CFLAGS) -c -o tcprobe-probe_v4l.obj `if test -f 'probe_v4l.c'; then $(CYGPATH_W) 'probe_v4l.c'; else $(CYGPATH_W) '$(srcdir)/probe_v4l.c'; fi`
tcprobe-probe_vnc.o: probe_vnc.c
@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(tcprobe_CFLAGS) $(CFLAGS) -MT tcprobe-probe_vnc.o -MD -MP -MF $(DEPDIR)/tcprobe-probe_vnc.Tpo -c -o tcprobe-probe_vnc.o `test -f 'probe_vnc.c' || echo '$(srcdir)/'`probe_vnc.c
@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/tcprobe-probe_vnc.Tpo $(DEPDIR)/tcprobe-probe_vnc.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='probe_vnc.c' object='tcprobe-probe_vnc.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) $(tcprobe_CFLAGS) $(CFLAGS) -c -o tcprobe-probe_vnc.o `test -f 'probe_vnc.c' || echo '$(srcdir)/'`probe_vnc.c
tcprobe-probe_vnc.obj: probe_vnc.c
@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(tcprobe_CFLAGS) $(CFLAGS) -MT tcprobe-probe_vnc.obj -MD -MP -MF $(DEPDIR)/tcprobe-probe_vnc.Tpo -c -o tcprobe-probe_vnc.obj `if test -f 'probe_vnc.c'; then $(CYGPATH_W) 'probe_vnc.c'; else $(CYGPATH_W) '$(srcdir)/probe_vnc.c'; fi`
@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/tcprobe-probe_vnc.Tpo $(DEPDIR)/tcprobe-probe_vnc.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='probe_vnc.c' object='tcprobe-probe_vnc.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) $(tcprobe_CFLAGS) $(CFLAGS) -c -o tcprobe-probe_vnc.obj `if test -f 'probe_vnc.c'; then $(CYGPATH_W) 'probe_vnc.c'; else $(CYGPATH_W) '$(srcdir)/probe_vnc.c'; fi`
tcprobe-probe_wav.o: probe_wav.c
@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(tcprobe_CFLAGS) $(CFLAGS) -MT tcprobe-probe_wav.o -MD -MP -MF $(DEPDIR)/tcprobe-probe_wav.Tpo -c -o tcprobe-probe_wav.o `test -f 'probe_wav.c' || echo '$(srcdir)/'`probe_wav.c
@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/tcprobe-probe_wav.Tpo $(DEPDIR)/tcprobe-probe_wav.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='probe_wav.c' object='tcprobe-probe_wav.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) $(tcprobe_CFLAGS) $(CFLAGS) -c -o tcprobe-probe_wav.o `test -f 'probe_wav.c' || echo '$(srcdir)/'`probe_wav.c
tcprobe-probe_wav.obj: probe_wav.c
@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(tcprobe_CFLAGS) $(CFLAGS) -MT tcprobe-probe_wav.obj -MD -MP -MF $(DEPDIR)/tcprobe-probe_wav.Tpo -c -o tcprobe-probe_wav.obj `if test -f 'probe_wav.c'; then $(CYGPATH_W) 'probe_wav.c'; else $(CYGPATH_W) '$(srcdir)/probe_wav.c'; fi`
@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/tcprobe-probe_wav.Tpo $(DEPDIR)/tcprobe-probe_wav.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='probe_wav.c' object='tcprobe-probe_wav.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) $(tcprobe_CFLAGS) $(CFLAGS) -c -o tcprobe-probe_wav.obj `if test -f 'probe_wav.c'; then $(CYGPATH_W) 'probe_wav.c'; else $(CYGPATH_W) '$(srcdir)/probe_wav.c'; fi`
tcprobe-probe_xml.o: probe_xml.c
@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(tcprobe_CFLAGS) $(CFLAGS) -MT tcprobe-probe_xml.o -MD -MP -MF $(DEPDIR)/tcprobe-probe_xml.Tpo -c -o tcprobe-probe_xml.o `test -f 'probe_xml.c' || echo '$(srcdir)/'`probe_xml.c
@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/tcprobe-probe_xml.Tpo $(DEPDIR)/tcprobe-probe_xml.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='probe_xml.c' object='tcprobe-probe_xml.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) $(tcprobe_CFLAGS) $(CFLAGS) -c -o tcprobe-probe_xml.o `test -f 'probe_xml.c' || echo '$(srcdir)/'`probe_xml.c
tcprobe-probe_xml.obj: probe_xml.c
@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(tcprobe_CFLAGS) $(CFLAGS) -MT tcprobe-probe_xml.obj -MD -MP -MF $(DEPDIR)/tcprobe-probe_xml.Tpo -c -o tcprobe-probe_xml.obj `if test -f 'probe_xml.c'; then $(CYGPATH_W) 'probe_xml.c'; else $(CYGPATH_W) '$(srcdir)/probe_xml.c'; fi`
@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/tcprobe-probe_xml.Tpo $(DEPDIR)/tcprobe-probe_xml.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='probe_xml.c' object='tcprobe-probe_xml.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) $(tcprobe_CFLAGS) $(CFLAGS) -c -o tcprobe-probe_xml.obj `if test -f 'probe_xml.c'; then $(CYGPATH_W) 'probe_xml.c'; else $(CYGPATH_W) '$(srcdir)/probe_xml.c'; fi`
tcprobe-probe_mplayer.o: probe_mplayer.c
@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(tcprobe_CFLAGS) $(CFLAGS) -MT tcprobe-probe_mplayer.o -MD -MP -MF $(DEPDIR)/tcprobe-probe_mplayer.Tpo -c -o tcprobe-probe_mplayer.o `test -f 'probe_mplayer.c' || echo '$(srcdir)/'`probe_mplayer.c
@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/tcprobe-probe_mplayer.Tpo $(DEPDIR)/tcprobe-probe_mplayer.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='probe_mplayer.c' object='tcprobe-probe_mplayer.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) $(tcprobe_CFLAGS) $(CFLAGS) -c -o tcprobe-probe_mplayer.o `test -f 'probe_mplayer.c' || echo '$(srcdir)/'`probe_mplayer.c
tcprobe-probe_mplayer.obj: probe_mplayer.c
@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(tcprobe_CFLAGS) $(CFLAGS) -MT tcprobe-probe_mplayer.obj -MD -MP -MF $(DEPDIR)/tcprobe-probe_mplayer.Tpo -c -o tcprobe-probe_mplayer.obj `if test -f 'probe_mplayer.c'; then $(CYGPATH_W) 'probe_mplayer.c'; else $(CYGPATH_W) '$(srcdir)/probe_mplayer.c'; fi`
@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/tcprobe-probe_mplayer.Tpo $(DEPDIR)/tcprobe-probe_mplayer.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='probe_mplayer.c' object='tcprobe-probe_mplayer.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) $(tcprobe_CFLAGS) $(CFLAGS) -c -o tcprobe-probe_mplayer.obj `if test -f 'probe_mplayer.c'; then $(CYGPATH_W) 'probe_mplayer.c'; else $(CYGPATH_W) '$(srcdir)/probe_mplayer.c'; fi`
tcprobe-probe_ffmpeg.o: probe_ffmpeg.c
@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(tcprobe_CFLAGS) $(CFLAGS) -MT tcprobe-probe_ffmpeg.o -MD -MP -MF $(DEPDIR)/tcprobe-probe_ffmpeg.Tpo -c -o tcprobe-probe_ffmpeg.o `test -f 'probe_ffmpeg.c' || echo '$(srcdir)/'`probe_ffmpeg.c
@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/tcprobe-probe_ffmpeg.Tpo $(DEPDIR)/tcprobe-probe_ffmpeg.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='probe_ffmpeg.c' object='tcprobe-probe_ffmpeg.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) $(tcprobe_CFLAGS) $(CFLAGS) -c -o tcprobe-probe_ffmpeg.o `test -f 'probe_ffmpeg.c' || echo '$(srcdir)/'`probe_ffmpeg.c
tcprobe-probe_ffmpeg.obj: probe_ffmpeg.c
@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(tcprobe_CFLAGS) $(CFLAGS) -MT tcprobe-probe_ffmpeg.obj -MD -MP -MF $(DEPDIR)/tcprobe-probe_ffmpeg.Tpo -c -o tcprobe-probe_ffmpeg.obj `if test -f 'probe_ffmpeg.c'; then $(CYGPATH_W) 'probe_ffmpeg.c'; else $(CYGPATH_W) '$(srcdir)/probe_ffmpeg.c'; fi`
@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/tcprobe-probe_ffmpeg.Tpo $(DEPDIR)/tcprobe-probe_ffmpeg.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='probe_ffmpeg.c' object='tcprobe-probe_ffmpeg.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) $(tcprobe_CFLAGS) $(CFLAGS) -c -o tcprobe-probe_ffmpeg.obj `if test -f 'probe_ffmpeg.c'; then $(CYGPATH_W) 'probe_ffmpeg.c'; else $(CYGPATH_W) '$(srcdir)/probe_ffmpeg.c'; fi`
tcprobe-probe_x11.o: probe_x11.c
@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(tcprobe_CFLAGS) $(CFLAGS) -MT tcprobe-probe_x11.o -MD -MP -MF $(DEPDIR)/tcprobe-probe_x11.Tpo -c -o tcprobe-probe_x11.o `test -f 'probe_x11.c' || echo '$(srcdir)/'`probe_x11.c
@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/tcprobe-probe_x11.Tpo $(DEPDIR)/tcprobe-probe_x11.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='probe_x11.c' object='tcprobe-probe_x11.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) $(tcprobe_CFLAGS) $(CFLAGS) -c -o tcprobe-probe_x11.o `test -f 'probe_x11.c' || echo '$(srcdir)/'`probe_x11.c
tcprobe-probe_x11.obj: probe_x11.c
@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(tcprobe_CFLAGS) $(CFLAGS) -MT tcprobe-probe_x11.obj -MD -MP -MF $(DEPDIR)/tcprobe-probe_x11.Tpo -c -o tcprobe-probe_x11.obj `if test -f 'probe_x11.c'; then $(CYGPATH_W) 'probe_x11.c'; else $(CYGPATH_W) '$(srcdir)/probe_x11.c'; fi`
@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/tcprobe-probe_x11.Tpo $(DEPDIR)/tcprobe-probe_x11.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='probe_x11.c' object='tcprobe-probe_x11.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) $(tcprobe_CFLAGS) $(CFLAGS) -c -o tcprobe-probe_x11.obj `if test -f 'probe_x11.c'; then $(CYGPATH_W) 'probe_x11.c'; else $(CYGPATH_W) '$(srcdir)/probe_x11.c'; fi`
tcprobe-x11source.o: x11source.c
@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(tcprobe_CFLAGS) $(CFLAGS) -MT tcprobe-x11source.o -MD -MP -MF $(DEPDIR)/tcprobe-x11source.Tpo -c -o tcprobe-x11source.o `test -f 'x11source.c' || echo '$(srcdir)/'`x11source.c
@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/tcprobe-x11source.Tpo $(DEPDIR)/tcprobe-x11source.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='x11source.c' object='tcprobe-x11source.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) $(tcprobe_CFLAGS) $(CFLAGS) -c -o tcprobe-x11source.o `test -f 'x11source.c' || echo '$(srcdir)/'`x11source.c
tcprobe-x11source.obj: x11source.c
@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(tcprobe_CFLAGS) $(CFLAGS) -MT tcprobe-x11source.obj -MD -MP -MF $(DEPDIR)/tcprobe-x11source.Tpo -c -o tcprobe-x11source.obj `if test -f 'x11source.c'; then $(CYGPATH_W) 'x11source.c'; else $(CYGPATH_W) '$(srcdir)/x11source.c'; fi`
@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/tcprobe-x11source.Tpo $(DEPDIR)/tcprobe-x11source.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='x11source.c' object='tcprobe-x11source.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) $(tcprobe_CFLAGS) $(CFLAGS) -c -o tcprobe-x11source.obj `if test -f 'x11source.c'; then $(CYGPATH_W) 'x11source.c'; else $(CYGPATH_W) '$(srcdir)/x11source.c'; fi`
tcprobe-probe_pvn.o: probe_pvn.c
@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(tcprobe_CFLAGS) $(CFLAGS) -MT tcprobe-probe_pvn.o -MD -MP -MF $(DEPDIR)/tcprobe-probe_pvn.Tpo -c -o tcprobe-probe_pvn.o `test -f 'probe_pvn.c' || echo '$(srcdir)/'`probe_pvn.c
@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/tcprobe-probe_pvn.Tpo $(DEPDIR)/tcprobe-probe_pvn.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='probe_pvn.c' object='tcprobe-probe_pvn.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) $(tcprobe_CFLAGS) $(CFLAGS) -c -o tcprobe-probe_pvn.o `test -f 'probe_pvn.c' || echo '$(srcdir)/'`probe_pvn.c
tcprobe-probe_pvn.obj: probe_pvn.c
@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(tcprobe_CFLAGS) $(CFLAGS) -MT tcprobe-probe_pvn.obj -MD -MP -MF $(DEPDIR)/tcprobe-probe_pvn.Tpo -c -o tcprobe-probe_pvn.obj `if test -f 'probe_pvn.c'; then $(CYGPATH_W) 'probe_pvn.c'; else $(CYGPATH_W) '$(srcdir)/probe_pvn.c'; fi`
@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/tcprobe-probe_pvn.Tpo $(DEPDIR)/tcprobe-probe_pvn.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='probe_pvn.c' object='tcprobe-probe_pvn.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) $(tcprobe_CFLAGS) $(CFLAGS) -c -o tcprobe-probe_pvn.obj `if test -f 'probe_pvn.c'; then $(CYGPATH_W) 'probe_pvn.c'; else $(CYGPATH_W) '$(srcdir)/probe_pvn.c'; fi`
tcrequant-tcrequant.o: tcrequant.c
@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(tcrequant_CFLAGS) $(CFLAGS) -MT tcrequant-tcrequant.o -MD -MP -MF $(DEPDIR)/tcrequant-tcrequant.Tpo -c -o tcrequant-tcrequant.o `test -f 'tcrequant.c' || echo '$(srcdir)/'`tcrequant.c
@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/tcrequant-tcrequant.Tpo $(DEPDIR)/tcrequant-tcrequant.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='tcrequant.c' object='tcrequant-tcrequant.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) $(tcrequant_CFLAGS) $(CFLAGS) -c -o tcrequant-tcrequant.o `test -f 'tcrequant.c' || echo '$(srcdir)/'`tcrequant.c
tcrequant-tcrequant.obj: tcrequant.c
@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(tcrequant_CFLAGS) $(CFLAGS) -MT tcrequant-tcrequant.obj -MD -MP -MF $(DEPDIR)/tcrequant-tcrequant.Tpo -c -o tcrequant-tcrequant.obj `if test -f 'tcrequant.c'; then $(CYGPATH_W) 'tcrequant.c'; else $(CYGPATH_W) '$(srcdir)/tcrequant.c'; fi`
@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/tcrequant-tcrequant.Tpo $(DEPDIR)/tcrequant-tcrequant.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='tcrequant.c' object='tcrequant-tcrequant.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) $(tcrequant_CFLAGS) $(CFLAGS) -c -o tcrequant-tcrequant.obj `if test -f 'tcrequant.c'; then $(CYGPATH_W) 'tcrequant.c'; else $(CYGPATH_W) '$(srcdir)/tcrequant.c'; fi`
tcscan-tcscan.o: tcscan.c
@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(tcscan_CFLAGS) $(CFLAGS) -MT tcscan-tcscan.o -MD -MP -MF $(DEPDIR)/tcscan-tcscan.Tpo -c -o tcscan-tcscan.o `test -f 'tcscan.c' || echo '$(srcdir)/'`tcscan.c
@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/tcscan-tcscan.Tpo $(DEPDIR)/tcscan-tcscan.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='tcscan.c' object='tcscan-tcscan.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) $(tcscan_CFLAGS) $(CFLAGS) -c -o tcscan-tcscan.o `test -f 'tcscan.c' || echo '$(srcdir)/'`tcscan.c
tcscan-tcscan.obj: tcscan.c
@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(tcscan_CFLAGS) $(CFLAGS) -MT tcscan-tcscan.obj -MD -MP -MF $(DEPDIR)/tcscan-tcscan.Tpo -c -o tcscan-tcscan.obj `if test -f 'tcscan.c'; then $(CYGPATH_W) 'tcscan.c'; else $(CYGPATH_W) '$(srcdir)/tcscan.c'; fi`
@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/tcscan-tcscan.Tpo $(DEPDIR)/tcscan-tcscan.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='tcscan.c' object='tcscan-tcscan.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) $(tcscan_CFLAGS) $(CFLAGS) -c -o tcscan-tcscan.obj `if test -f 'tcscan.c'; then $(CYGPATH_W) 'tcscan.c'; else $(CYGPATH_W) '$(srcdir)/tcscan.c'; fi`
tcscan-ac3scan.o: ac3scan.c
@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(tcscan_CFLAGS) $(CFLAGS) -MT tcscan-ac3scan.o -MD -MP -MF $(DEPDIR)/tcscan-ac3scan.Tpo -c -o tcscan-ac3scan.o `test -f 'ac3scan.c' || echo '$(srcdir)/'`ac3scan.c
@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/tcscan-ac3scan.Tpo $(DEPDIR)/tcscan-ac3scan.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='ac3scan.c' object='tcscan-ac3scan.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) $(tcscan_CFLAGS) $(CFLAGS) -c -o tcscan-ac3scan.o `test -f 'ac3scan.c' || echo '$(srcdir)/'`ac3scan.c
tcscan-ac3scan.obj: ac3scan.c
@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(tcscan_CFLAGS) $(CFLAGS) -MT tcscan-ac3scan.obj -MD -MP -MF $(DEPDIR)/tcscan-ac3scan.Tpo -c -o tcscan-ac3scan.obj `if test -f 'ac3scan.c'; then $(CYGPATH_W) 'ac3scan.c'; else $(CYGPATH_W) '$(srcdir)/ac3scan.c'; fi`
@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/tcscan-ac3scan.Tpo $(DEPDIR)/tcscan-ac3scan.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='ac3scan.c' object='tcscan-ac3scan.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) $(tcscan_CFLAGS) $(CFLAGS) -c -o tcscan-ac3scan.obj `if test -f 'ac3scan.c'; then $(CYGPATH_W) 'ac3scan.c'; else $(CYGPATH_W) '$(srcdir)/ac3scan.c'; fi`
tcscan-aux_pes.o: aux_pes.c
@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(tcscan_CFLAGS) $(CFLAGS) -MT tcscan-aux_pes.o -MD -MP -MF $(DEPDIR)/tcscan-aux_pes.Tpo -c -o tcscan-aux_pes.o `test -f 'aux_pes.c' || echo '$(srcdir)/'`aux_pes.c
@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/tcscan-aux_pes.Tpo $(DEPDIR)/tcscan-aux_pes.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='aux_pes.c' object='tcscan-aux_pes.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) $(tcscan_CFLAGS) $(CFLAGS) -c -o tcscan-aux_pes.o `test -f 'aux_pes.c' || echo '$(srcdir)/'`aux_pes.c
tcscan-aux_pes.obj: aux_pes.c
@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(tcscan_CFLAGS) $(CFLAGS) -MT tcscan-aux_pes.obj -MD -MP -MF $(DEPDIR)/tcscan-aux_pes.Tpo -c -o tcscan-aux_pes.obj `if test -f 'aux_pes.c'; then $(CYGPATH_W) 'aux_pes.c'; else $(CYGPATH_W) '$(srcdir)/aux_pes.c'; fi`
@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/tcscan-aux_pes.Tpo $(DEPDIR)/tcscan-aux_pes.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='aux_pes.c' object='tcscan-aux_pes.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) $(tcscan_CFLAGS) $(CFLAGS) -c -o tcscan-aux_pes.obj `if test -f 'aux_pes.c'; then $(CYGPATH_W) 'aux_pes.c'; else $(CYGPATH_W) '$(srcdir)/aux_pes.c'; fi`
tcscan-fileinfo.o: fileinfo.c
@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(tcscan_CFLAGS) $(CFLAGS) -MT tcscan-fileinfo.o -MD -MP -MF $(DEPDIR)/tcscan-fileinfo.Tpo -c -o tcscan-fileinfo.o `test -f 'fileinfo.c' || echo '$(srcdir)/'`fileinfo.c
@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/tcscan-fileinfo.Tpo $(DEPDIR)/tcscan-fileinfo.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='fileinfo.c' object='tcscan-fileinfo.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) $(tcscan_CFLAGS) $(CFLAGS) -c -o tcscan-fileinfo.o `test -f 'fileinfo.c' || echo '$(srcdir)/'`fileinfo.c
tcscan-fileinfo.obj: fileinfo.c
@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(tcscan_CFLAGS) $(CFLAGS) -MT tcscan-fileinfo.obj -MD -MP -MF $(DEPDIR)/tcscan-fileinfo.Tpo -c -o tcscan-fileinfo.obj `if test -f 'fileinfo.c'; then $(CYGPATH_W) 'fileinfo.c'; else $(CYGPATH_W) '$(srcdir)/fileinfo.c'; fi`
@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/tcscan-fileinfo.Tpo $(DEPDIR)/tcscan-fileinfo.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='fileinfo.c' object='tcscan-fileinfo.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) $(tcscan_CFLAGS) $(CFLAGS) -c -o tcscan-fileinfo.obj `if test -f 'fileinfo.c'; then $(CYGPATH_W) 'fileinfo.c'; else $(CYGPATH_W) '$(srcdir)/fileinfo.c'; fi`
tcscan-ioaux.o: ioaux.c
@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(tcscan_CFLAGS) $(CFLAGS) -MT tcscan-ioaux.o -MD -MP -MF $(DEPDIR)/tcscan-ioaux.Tpo -c -o tcscan-ioaux.o `test -f 'ioaux.c' || echo '$(srcdir)/'`ioaux.c
@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/tcscan-ioaux.Tpo $(DEPDIR)/tcscan-ioaux.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='ioaux.c' object='tcscan-ioaux.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) $(tcscan_CFLAGS) $(CFLAGS) -c -o tcscan-ioaux.o `test -f 'ioaux.c' || echo '$(srcdir)/'`ioaux.c
tcscan-ioaux.obj: ioaux.c
@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(tcscan_CFLAGS) $(CFLAGS) -MT tcscan-ioaux.obj -MD -MP -MF $(DEPDIR)/tcscan-ioaux.Tpo -c -o tcscan-ioaux.obj `if test -f 'ioaux.c'; then $(CYGPATH_W) 'ioaux.c'; else $(CYGPATH_W) '$(srcdir)/ioaux.c'; fi`
@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/tcscan-ioaux.Tpo $(DEPDIR)/tcscan-ioaux.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='ioaux.c' object='tcscan-ioaux.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) $(tcscan_CFLAGS) $(CFLAGS) -c -o tcscan-ioaux.obj `if test -f 'ioaux.c'; then $(CYGPATH_W) 'ioaux.c'; else $(CYGPATH_W) '$(srcdir)/ioaux.c'; fi`
tcscan-mpg123.o: mpg123.c
@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(tcscan_CFLAGS) $(CFLAGS) -MT tcscan-mpg123.o -MD -MP -MF $(DEPDIR)/tcscan-mpg123.Tpo -c -o tcscan-mpg123.o `test -f 'mpg123.c' || echo '$(srcdir)/'`mpg123.c
@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/tcscan-mpg123.Tpo $(DEPDIR)/tcscan-mpg123.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='mpg123.c' object='tcscan-mpg123.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) $(tcscan_CFLAGS) $(CFLAGS) -c -o tcscan-mpg123.o `test -f 'mpg123.c' || echo '$(srcdir)/'`mpg123.c
tcscan-mpg123.obj: mpg123.c
@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(tcscan_CFLAGS) $(CFLAGS) -MT tcscan-mpg123.obj -MD -MP -MF $(DEPDIR)/tcscan-mpg123.Tpo -c -o tcscan-mpg123.obj `if test -f 'mpg123.c'; then $(CYGPATH_W) 'mpg123.c'; else $(CYGPATH_W) '$(srcdir)/mpg123.c'; fi`
@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/tcscan-mpg123.Tpo $(DEPDIR)/tcscan-mpg123.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='mpg123.c' object='tcscan-mpg123.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) $(tcscan_CFLAGS) $(CFLAGS) -c -o tcscan-mpg123.obj `if test -f 'mpg123.c'; then $(CYGPATH_W) 'mpg123.c'; else $(CYGPATH_W) '$(srcdir)/mpg123.c'; fi`
tcscan-scan_pes.o: scan_pes.c
@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(tcscan_CFLAGS) $(CFLAGS) -MT tcscan-scan_pes.o -MD -MP -MF $(DEPDIR)/tcscan-scan_pes.Tpo -c -o tcscan-scan_pes.o `test -f 'scan_pes.c' || echo '$(srcdir)/'`scan_pes.c
@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/tcscan-scan_pes.Tpo $(DEPDIR)/tcscan-scan_pes.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='scan_pes.c' object='tcscan-scan_pes.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) $(tcscan_CFLAGS) $(CFLAGS) -c -o tcscan-scan_pes.o `test -f 'scan_pes.c' || echo '$(srcdir)/'`scan_pes.c
tcscan-scan_pes.obj: scan_pes.c
@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(tcscan_CFLAGS) $(CFLAGS) -MT tcscan-scan_pes.obj -MD -MP -MF $(DEPDIR)/tcscan-scan_pes.Tpo -c -o tcscan-scan_pes.obj `if test -f 'scan_pes.c'; then $(CYGPATH_W) 'scan_pes.c'; else $(CYGPATH_W) '$(srcdir)/scan_pes.c'; fi`
@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/tcscan-scan_pes.Tpo $(DEPDIR)/tcscan-scan_pes.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='scan_pes.c' object='tcscan-scan_pes.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) $(tcscan_CFLAGS) $(CFLAGS) -c -o tcscan-scan_pes.obj `if test -f 'scan_pes.c'; then $(CYGPATH_W) 'scan_pes.c'; else $(CYGPATH_W) '$(srcdir)/scan_pes.c'; fi`
tcxmlcheck-tcxmlcheck.o: tcxmlcheck.c
@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(tcxmlcheck_CFLAGS) $(CFLAGS) -MT tcxmlcheck-tcxmlcheck.o -MD -MP -MF $(DEPDIR)/tcxmlcheck-tcxmlcheck.Tpo -c -o tcxmlcheck-tcxmlcheck.o `test -f 'tcxmlcheck.c' || echo '$(srcdir)/'`tcxmlcheck.c
@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/tcxmlcheck-tcxmlcheck.Tpo $(DEPDIR)/tcxmlcheck-tcxmlcheck.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='tcxmlcheck.c' object='tcxmlcheck-tcxmlcheck.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) $(tcxmlcheck_CFLAGS) $(CFLAGS) -c -o tcxmlcheck-tcxmlcheck.o `test -f 'tcxmlcheck.c' || echo '$(srcdir)/'`tcxmlcheck.c
tcxmlcheck-tcxmlcheck.obj: tcxmlcheck.c
@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(tcxmlcheck_CFLAGS) $(CFLAGS) -MT tcxmlcheck-tcxmlcheck.obj -MD -MP -MF $(DEPDIR)/tcxmlcheck-tcxmlcheck.Tpo -c -o tcxmlcheck-tcxmlcheck.obj `if test -f 'tcxmlcheck.c'; then $(CYGPATH_W) 'tcxmlcheck.c'; else $(CYGPATH_W) '$(srcdir)/tcxmlcheck.c'; fi`
@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/tcxmlcheck-tcxmlcheck.Tpo $(DEPDIR)/tcxmlcheck-tcxmlcheck.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='tcxmlcheck.c' object='tcxmlcheck-tcxmlcheck.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) $(tcxmlcheck_CFLAGS) $(CFLAGS) -c -o tcxmlcheck-tcxmlcheck.obj `if test -f 'tcxmlcheck.c'; then $(CYGPATH_W) 'tcxmlcheck.c'; else $(CYGPATH_W) '$(srcdir)/tcxmlcheck.c'; fi`
tcxmlcheck-fileinfo.o: fileinfo.c
@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(tcxmlcheck_CFLAGS) $(CFLAGS) -MT tcxmlcheck-fileinfo.o -MD -MP -MF $(DEPDIR)/tcxmlcheck-fileinfo.Tpo -c -o tcxmlcheck-fileinfo.o `test -f 'fileinfo.c' || echo '$(srcdir)/'`fileinfo.c
@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/tcxmlcheck-fileinfo.Tpo $(DEPDIR)/tcxmlcheck-fileinfo.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='fileinfo.c' object='tcxmlcheck-fileinfo.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) $(tcxmlcheck_CFLAGS) $(CFLAGS) -c -o tcxmlcheck-fileinfo.o `test -f 'fileinfo.c' || echo '$(srcdir)/'`fileinfo.c
tcxmlcheck-fileinfo.obj: fileinfo.c
@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(tcxmlcheck_CFLAGS) $(CFLAGS) -MT tcxmlcheck-fileinfo.obj -MD -MP -MF $(DEPDIR)/tcxmlcheck-fileinfo.Tpo -c -o tcxmlcheck-fileinfo.obj `if test -f 'fileinfo.c'; then $(CYGPATH_W) 'fileinfo.c'; else $(CYGPATH_W) '$(srcdir)/fileinfo.c'; fi`
@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/tcxmlcheck-fileinfo.Tpo $(DEPDIR)/tcxmlcheck-fileinfo.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='fileinfo.c' object='tcxmlcheck-fileinfo.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) $(tcxmlcheck_CFLAGS) $(CFLAGS) -c -o tcxmlcheck-fileinfo.obj `if test -f 'fileinfo.c'; then $(CYGPATH_W) 'fileinfo.c'; else $(CYGPATH_W) '$(srcdir)/fileinfo.c'; fi`
tcxmlcheck-ioaux.o: ioaux.c
@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(tcxmlcheck_CFLAGS) $(CFLAGS) -MT tcxmlcheck-ioaux.o -MD -MP -MF $(DEPDIR)/tcxmlcheck-ioaux.Tpo -c -o tcxmlcheck-ioaux.o `test -f 'ioaux.c' || echo '$(srcdir)/'`ioaux.c
@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/tcxmlcheck-ioaux.Tpo $(DEPDIR)/tcxmlcheck-ioaux.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='ioaux.c' object='tcxmlcheck-ioaux.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) $(tcxmlcheck_CFLAGS) $(CFLAGS) -c -o tcxmlcheck-ioaux.o `test -f 'ioaux.c' || echo '$(srcdir)/'`ioaux.c
tcxmlcheck-ioaux.obj: ioaux.c
@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(tcxmlcheck_CFLAGS) $(CFLAGS) -MT tcxmlcheck-ioaux.obj -MD -MP -MF $(DEPDIR)/tcxmlcheck-ioaux.Tpo -c -o tcxmlcheck-ioaux.obj `if test -f 'ioaux.c'; then $(CYGPATH_W) 'ioaux.c'; else $(CYGPATH_W) '$(srcdir)/ioaux.c'; fi`
@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/tcxmlcheck-ioaux.Tpo $(DEPDIR)/tcxmlcheck-ioaux.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='ioaux.c' object='tcxmlcheck-ioaux.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) $(tcxmlcheck_CFLAGS) $(CFLAGS) -c -o tcxmlcheck-ioaux.obj `if test -f 'ioaux.c'; then $(CYGPATH_W) 'ioaux.c'; else $(CYGPATH_W) '$(srcdir)/ioaux.c'; fi`
tcxmlcheck-ioxml.o: ioxml.c
@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(tcxmlcheck_CFLAGS) $(CFLAGS) -MT tcxmlcheck-ioxml.o -MD -MP -MF $(DEPDIR)/tcxmlcheck-ioxml.Tpo -c -o tcxmlcheck-ioxml.o `test -f 'ioxml.c' || echo '$(srcdir)/'`ioxml.c
@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/tcxmlcheck-ioxml.Tpo $(DEPDIR)/tcxmlcheck-ioxml.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='ioxml.c' object='tcxmlcheck-ioxml.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) $(tcxmlcheck_CFLAGS) $(CFLAGS) -c -o tcxmlcheck-ioxml.o `test -f 'ioxml.c' || echo '$(srcdir)/'`ioxml.c
tcxmlcheck-ioxml.obj: ioxml.c
@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(tcxmlcheck_CFLAGS) $(CFLAGS) -MT tcxmlcheck-ioxml.obj -MD -MP -MF $(DEPDIR)/tcxmlcheck-ioxml.Tpo -c -o tcxmlcheck-ioxml.obj `if test -f 'ioxml.c'; then $(CYGPATH_W) 'ioxml.c'; else $(CYGPATH_W) '$(srcdir)/ioxml.c'; fi`
@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/tcxmlcheck-ioxml.Tpo $(DEPDIR)/tcxmlcheck-ioxml.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='ioxml.c' object='tcxmlcheck-ioxml.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) $(tcxmlcheck_CFLAGS) $(CFLAGS) -c -o tcxmlcheck-ioxml.obj `if test -f 'ioxml.c'; then $(CYGPATH_W) 'ioxml.c'; else $(CYGPATH_W) '$(srcdir)/ioxml.c'; fi`
tcxmlcheck-probe_xml.o: probe_xml.c
@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(tcxmlcheck_CFLAGS) $(CFLAGS) -MT tcxmlcheck-probe_xml.o -MD -MP -MF $(DEPDIR)/tcxmlcheck-probe_xml.Tpo -c -o tcxmlcheck-probe_xml.o `test -f 'probe_xml.c' || echo '$(srcdir)/'`probe_xml.c
@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/tcxmlcheck-probe_xml.Tpo $(DEPDIR)/tcxmlcheck-probe_xml.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='probe_xml.c' object='tcxmlcheck-probe_xml.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) $(tcxmlcheck_CFLAGS) $(CFLAGS) -c -o tcxmlcheck-probe_xml.o `test -f 'probe_xml.c' || echo '$(srcdir)/'`probe_xml.c
tcxmlcheck-probe_xml.obj: probe_xml.c
@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(tcxmlcheck_CFLAGS) $(CFLAGS) -MT tcxmlcheck-probe_xml.obj -MD -MP -MF $(DEPDIR)/tcxmlcheck-probe_xml.Tpo -c -o tcxmlcheck-probe_xml.obj `if test -f 'probe_xml.c'; then $(CYGPATH_W) 'probe_xml.c'; else $(CYGPATH_W) '$(srcdir)/probe_xml.c'; fi`
@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/tcxmlcheck-probe_xml.Tpo $(DEPDIR)/tcxmlcheck-probe_xml.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='probe_xml.c' object='tcxmlcheck-probe_xml.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) $(tcxmlcheck_CFLAGS) $(CFLAGS) -c -o tcxmlcheck-probe_xml.obj `if test -f 'probe_xml.c'; then $(CYGPATH_W) 'probe_xml.c'; else $(CYGPATH_W) '$(srcdir)/probe_xml.c'; fi`
tcxpm2rgb-tcxpm2rgb.o: tcxpm2rgb.c
@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(tcxpm2rgb_CFLAGS) $(CFLAGS) -MT tcxpm2rgb-tcxpm2rgb.o -MD -MP -MF $(DEPDIR)/tcxpm2rgb-tcxpm2rgb.Tpo -c -o tcxpm2rgb-tcxpm2rgb.o `test -f 'tcxpm2rgb.c' || echo '$(srcdir)/'`tcxpm2rgb.c
@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/tcxpm2rgb-tcxpm2rgb.Tpo $(DEPDIR)/tcxpm2rgb-tcxpm2rgb.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='tcxpm2rgb.c' object='tcxpm2rgb-tcxpm2rgb.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) $(tcxpm2rgb_CFLAGS) $(CFLAGS) -c -o tcxpm2rgb-tcxpm2rgb.o `test -f 'tcxpm2rgb.c' || echo '$(srcdir)/'`tcxpm2rgb.c
tcxpm2rgb-tcxpm2rgb.obj: tcxpm2rgb.c
@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(tcxpm2rgb_CFLAGS) $(CFLAGS) -MT tcxpm2rgb-tcxpm2rgb.obj -MD -MP -MF $(DEPDIR)/tcxpm2rgb-tcxpm2rgb.Tpo -c -o tcxpm2rgb-tcxpm2rgb.obj `if test -f 'tcxpm2rgb.c'; then $(CYGPATH_W) 'tcxpm2rgb.c'; else $(CYGPATH_W) '$(srcdir)/tcxpm2rgb.c'; fi`
@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/tcxpm2rgb-tcxpm2rgb.Tpo $(DEPDIR)/tcxpm2rgb-tcxpm2rgb.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='tcxpm2rgb.c' object='tcxpm2rgb-tcxpm2rgb.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) $(tcxpm2rgb_CFLAGS) $(CFLAGS) -c -o tcxpm2rgb-tcxpm2rgb.obj `if test -f 'tcxpm2rgb.c'; then $(CYGPATH_W) 'tcxpm2rgb.c'; else $(CYGPATH_W) '$(srcdir)/tcxpm2rgb.c'; fi`
mostlyclean-libtool:
-rm -f *.lo
clean-libtool:
-rm -rf .libs _libs
# 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) $(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) $(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) $(TAGS_DEPENDENCIES) \
$(TAGS_FILES) $(LISP)
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; }; }'`; \
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
distdir: $(DISTFILES)
@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
check-am: all-am
check: check-recursive
all-am: Makefile $(LTLIBRARIES) $(PROGRAMS)
installdirs: installdirs-recursive
installdirs-am:
for dir in "$(DESTDIR)$(pkgdir)" "$(DESTDIR)$(bindir)"; do \
test -z "$$dir" || $(MKDIR_P) "$$dir"; \
done
install: 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:
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)
maintainer-clean-generic:
@echo "This command is intended for maintainers to use"
@echo "it deletes files that may require special tools to rebuild."
clean: clean-recursive
clean-am: clean-binPROGRAMS clean-generic clean-libtool \
clean-pkgLTLIBRARIES mostlyclean-am
distclean: distclean-recursive
-rm -rf ./$(DEPDIR)
-rm -f Makefile
distclean-am: clean-am distclean-compile distclean-generic \
distclean-tags
dvi: dvi-recursive
dvi-am:
html: html-recursive
html-am:
info: info-recursive
info-am:
install-data-am: install-pkgLTLIBRARIES
install-dvi: install-dvi-recursive
install-dvi-am:
install-exec-am: install-binPROGRAMS
install-html: install-html-recursive
install-html-am:
install-info: install-info-recursive
install-info-am:
install-man:
install-pdf: install-pdf-recursive
install-pdf-am:
install-ps: install-ps-recursive
install-ps-am:
installcheck-am:
maintainer-clean: maintainer-clean-recursive
-rm -rf ./$(DEPDIR)
-rm -f Makefile
maintainer-clean-am: distclean-am maintainer-clean-generic
mostlyclean: mostlyclean-recursive
mostlyclean-am: mostlyclean-compile mostlyclean-generic \
mostlyclean-libtool
pdf: pdf-recursive
pdf-am:
ps: ps-recursive
ps-am:
uninstall-am: uninstall-binPROGRAMS uninstall-pkgLTLIBRARIES
.MAKE: $(RECURSIVE_CLEAN_TARGETS) $(RECURSIVE_TARGETS) ctags-recursive \
install-am install-strip tags-recursive
.PHONY: $(RECURSIVE_CLEAN_TARGETS) $(RECURSIVE_TARGETS) CTAGS GTAGS \
all all-am check check-am clean clean-binPROGRAMS \
clean-generic clean-libtool clean-pkgLTLIBRARIES ctags \
ctags-recursive distclean distclean-compile distclean-generic \
distclean-libtool distclean-tags distdir 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-html install-html-am \
install-info install-info-am install-man install-pdf \
install-pdf-am install-pkgLTLIBRARIES install-ps install-ps-am \
install-strip installcheck installcheck-am installdirs \
installdirs-am maintainer-clean maintainer-clean-generic \
mostlyclean mostlyclean-compile mostlyclean-generic \
mostlyclean-libtool pdf pdf-am ps ps-am tags tags-recursive \
uninstall uninstall-am uninstall-binPROGRAMS \
uninstall-pkgLTLIBRARIES
# 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:
|