~siretart/vlc/ubuntu

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
# Makefile.in generated by automake 1.10.1 from Makefile.am.
# @configure_input@

# Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002,
# 2003, 2004, 2005, 2006, 2007, 2008  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@

###############################################################################
# Automake targets and declarations
###############################################################################



VPATH = @srcdir@
pkgdatadir = $(datadir)/@PACKAGE@
pkglibdir = $(libdir)/@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@
@HAVE_WIN32_TRUE@am__append_1 = -avoid-version
@HAVE_WIN32_TRUE@am__append_2 = libvlc_win32_rc.$(OBJEXT)
@HAVE_WIN32_TRUE@am__append_3 = -Wl,libvlc_win32_rc.$(OBJEXT)
@HAVE_WIN32_TRUE@am__append_4 = $(DATA_win32_rc_lib)
@HAVE_WIN32_TRUE@am__append_5 = -Wl,$(DATA_win32_rc_lib)
@HAVE_BEOS_TRUE@am__append_6 = $(SOURCES_libvlc_beos)
@HAVE_BEOS_FALSE@@HAVE_DARWIN_TRUE@am__append_7 = $(SOURCES_libvlc_darwin)
@HAVE_BEOS_FALSE@@HAVE_DARWIN_FALSE@@HAVE_LINUX_TRUE@am__append_8 = $(SOURCES_libvlc_linux)
@HAVE_BEOS_FALSE@@HAVE_DARWIN_FALSE@@HAVE_LINUX_FALSE@@HAVE_WIN32_TRUE@am__append_9 = $(SOURCES_libvlc_win32)
@HAVE_BEOS_FALSE@@HAVE_DARWIN_FALSE@@HAVE_LINUX_FALSE@@HAVE_WIN32_FALSE@@HAVE_WINCE_TRUE@am__append_10 = $(SOURCES_libvlc_win32)
@HAVE_BEOS_FALSE@@HAVE_DARWIN_FALSE@@HAVE_LINUX_FALSE@@HAVE_WIN32_FALSE@@HAVE_WINCE_FALSE@am__append_11 = $(SOURCES_libvlc_other)
@BUILD_DIRENT_TRUE@am__append_12 = $(SOURCES_libvlc_dirent)
@BUILD_GETOPT_TRUE@am__append_13 = $(SOURCES_libvlc_getopt)
@ENABLE_SOUT_TRUE@am__append_14 = $(SOURCES_libvlc_sout)
@ENABLE_SOUT_TRUE@@ENABLE_VLM_TRUE@am__append_15 = $(SOURCES_libvlc_vlm)
subdir = src
DIST_COMMON = $(dist_check_SCRIPTS) $(noinst_HEADERS) \
	$(pkginclude_HEADERS) $(pluginsinclude_HEADERS) \
	$(srcdir)/Makefile.am $(srcdir)/Makefile.in
ACLOCAL_M4 = $(top_srcdir)/aclocal.m4
am__aclocal_m4_deps = $(top_srcdir)/m4/flags.m4 \
	$(top_srcdir)/m4/gettext.m4 $(top_srcdir)/m4/iconv.m4 \
	$(top_srcdir)/m4/intlmacosx.m4 $(top_srcdir)/m4/lib-ld.m4 \
	$(top_srcdir)/m4/lib-link.m4 $(top_srcdir)/m4/lib-prefix.m4 \
	$(top_srcdir)/m4/nls.m4 $(top_srcdir)/m4/po.m4 \
	$(top_srcdir)/m4/progtest.m4 $(top_srcdir)/m4/vlc.m4 \
	$(top_srcdir)/configure.ac
am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \
	$(ACLOCAL_M4)
mkinstalldirs = $(install_sh) -d
CONFIG_HEADER = $(top_builddir)/config.h
CONFIG_CLEAN_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 = `echo $$p | sed -e 's|^.*/||'`;
am__installdirs = "$(DESTDIR)$(libdir)" "$(DESTDIR)$(pkgconfigdir)" \
	"$(DESTDIR)$(pkgincludedir)" "$(DESTDIR)$(pluginsincludedir)"
libLTLIBRARIES_INSTALL = $(INSTALL)
LTLIBRARIES = $(lib_LTLIBRARIES)
am__dirstamp = $(am__leading_dot)dirstamp
am__objects_1 = control/libvlc_la-core.lo control/libvlc_la-log.lo \
	control/libvlc_la-playlist.lo control/libvlc_la-vlm.lo \
	control/libvlc_la-video.lo control/libvlc_la-audio.lo \
	control/libvlc_la-event.lo \
	control/libvlc_la-flat_media_list_view.lo \
	control/libvlc_la-hierarchical_media_list_view.lo \
	control/libvlc_la-hierarchical_node_media_list_view.lo \
	control/libvlc_la-media.lo control/libvlc_la-media_player.lo \
	control/libvlc_la-media_list.lo \
	control/libvlc_la-media_list_player.lo \
	control/libvlc_la-media_list_view.lo \
	control/libvlc_la-media_library.lo \
	control/libvlc_la-mediacontrol_core.lo \
	control/libvlc_la-mediacontrol_util.lo \
	control/libvlc_la-mediacontrol_audio_video.lo \
	control/libvlc_la-media_discoverer.lo
am_libvlc_la_OBJECTS = $(am__objects_1)
libvlc_la_OBJECTS = $(am_libvlc_la_OBJECTS)
libvlc_la_LINK = $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) \
	$(LIBTOOLFLAGS) --mode=link $(CCLD) $(libvlc_la_CFLAGS) \
	$(CFLAGS) $(libvlc_la_LDFLAGS) $(LDFLAGS) -o $@
am__DEPENDENCIES_1 =
am__libvlccore_la_SOURCES_DIST = libvlc.c libvlc.h libvlc-module.c \
	version.c interface/interface.h interface/interface.c \
	interface/intf_eject.c interface/interaction.c \
	playlist/playlist_internal.h playlist/thread.c \
	playlist/control.c playlist/engine.c playlist/sort.c \
	playlist/loadsave.c playlist/tree.c playlist/item.c \
	playlist/search.c playlist/services_discovery.c input/item.c \
	input/access.c input/clock.c input/control.c input/decoder.c \
	input/decoder_synchro.c input/demux.c input/es_out.c \
	input/input.c input/meta.c input/input_internal.h \
	input/vlm_internal.h input/stream.c input/mem_stream.c \
	input/subtitles.c input/var.c video_output/video_output.c \
	video_output/vout_pictures.c video_output/vout_pictures.h \
	video_output/video_text.c video_output/video_widgets.c \
	video_output/vout_subpictures.c video_output/vout_intf.c \
	audio_output/aout_internal.h audio_output/common.c \
	audio_output/dec.c audio_output/filters.c audio_output/input.c \
	audio_output/mixer.c audio_output/output.c audio_output/intf.c \
	osd/osd.c osd/osd_text.c osd/osd_widgets.c network/acl.c \
	network/getaddrinfo.c network/io.c network/tcp.c network/udp.c \
	network/httpd.c network/rootbind.c network/tls.c \
	network/poll.c text/charset.c text/strings.c text/unicode.c \
	text/wincp.c text/iso_lang.c text/iso-639_def.h misc/md5.c \
	misc/rand.c misc/mtime.c misc/block.c misc/es_format.c \
	modules/modules.h modules/modules.c modules/cache.c \
	modules/entry.c modules/os.c misc/threads.c misc/stats.c \
	misc/cpu.c misc/action.c config/configuration.h config/core.c \
	config/dirs.c config/chain.c config/file.c config/intf.c \
	config/cmdline.c misc/events.c misc/image.c misc/messages.c \
	misc/objects.c misc/variables.h misc/variables.c misc/error.c \
	misc/update.h misc/update.c misc/xml.c misc/devices.c \
	extras/libc.c misc/filter_chain.c misc/darwin_specific.c \
	misc/linux_specific.c misc/win32_specific.c network/winsock.c \
	misc/not_specific.c extras/dirent.c extras/getopt.c \
	extras/getopt.h extras/getopt1.c stream_output/stream_output.c \
	stream_output/stream_output.h stream_output/announce.c \
	stream_output/sap.c stream_output/sdp.c input/vlm.c \
	input/vlmshell.c
am__objects_2 =
am__objects_3 = libvlccore_la-libvlc.lo libvlccore_la-libvlc-module.lo \
	libvlccore_la-version.lo interface/libvlccore_la-interface.lo \
	interface/libvlccore_la-intf_eject.lo \
	interface/libvlccore_la-interaction.lo \
	playlist/libvlccore_la-thread.lo \
	playlist/libvlccore_la-control.lo \
	playlist/libvlccore_la-engine.lo \
	playlist/libvlccore_la-sort.lo \
	playlist/libvlccore_la-loadsave.lo \
	playlist/libvlccore_la-tree.lo playlist/libvlccore_la-item.lo \
	playlist/libvlccore_la-search.lo \
	playlist/libvlccore_la-services_discovery.lo \
	input/libvlccore_la-item.lo input/libvlccore_la-access.lo \
	input/libvlccore_la-clock.lo input/libvlccore_la-control.lo \
	input/libvlccore_la-decoder.lo \
	input/libvlccore_la-decoder_synchro.lo \
	input/libvlccore_la-demux.lo input/libvlccore_la-es_out.lo \
	input/libvlccore_la-input.lo input/libvlccore_la-meta.lo \
	input/libvlccore_la-stream.lo \
	input/libvlccore_la-mem_stream.lo \
	input/libvlccore_la-subtitles.lo input/libvlccore_la-var.lo \
	video_output/libvlccore_la-video_output.lo \
	video_output/libvlccore_la-vout_pictures.lo \
	video_output/libvlccore_la-video_text.lo \
	video_output/libvlccore_la-video_widgets.lo \
	video_output/libvlccore_la-vout_subpictures.lo \
	video_output/libvlccore_la-vout_intf.lo \
	audio_output/libvlccore_la-common.lo \
	audio_output/libvlccore_la-dec.lo \
	audio_output/libvlccore_la-filters.lo \
	audio_output/libvlccore_la-input.lo \
	audio_output/libvlccore_la-mixer.lo \
	audio_output/libvlccore_la-output.lo \
	audio_output/libvlccore_la-intf.lo osd/libvlccore_la-osd.lo \
	osd/libvlccore_la-osd_text.lo osd/libvlccore_la-osd_widgets.lo \
	network/libvlccore_la-acl.lo \
	network/libvlccore_la-getaddrinfo.lo \
	network/libvlccore_la-io.lo network/libvlccore_la-tcp.lo \
	network/libvlccore_la-udp.lo network/libvlccore_la-httpd.lo \
	network/libvlccore_la-rootbind.lo network/libvlccore_la-tls.lo \
	network/libvlccore_la-poll.lo text/libvlccore_la-charset.lo \
	text/libvlccore_la-strings.lo text/libvlccore_la-unicode.lo \
	text/libvlccore_la-wincp.lo text/libvlccore_la-iso_lang.lo \
	misc/libvlccore_la-md5.lo misc/libvlccore_la-rand.lo \
	misc/libvlccore_la-mtime.lo misc/libvlccore_la-block.lo \
	misc/libvlccore_la-es_format.lo \
	modules/libvlccore_la-modules.lo \
	modules/libvlccore_la-cache.lo modules/libvlccore_la-entry.lo \
	modules/libvlccore_la-os.lo misc/libvlccore_la-threads.lo \
	misc/libvlccore_la-stats.lo misc/libvlccore_la-cpu.lo \
	misc/libvlccore_la-action.lo config/libvlccore_la-core.lo \
	config/libvlccore_la-dirs.lo config/libvlccore_la-chain.lo \
	config/libvlccore_la-file.lo config/libvlccore_la-intf.lo \
	config/libvlccore_la-cmdline.lo misc/libvlccore_la-events.lo \
	misc/libvlccore_la-image.lo misc/libvlccore_la-messages.lo \
	misc/libvlccore_la-objects.lo misc/libvlccore_la-variables.lo \
	misc/libvlccore_la-error.lo misc/libvlccore_la-update.lo \
	misc/libvlccore_la-xml.lo misc/libvlccore_la-devices.lo \
	extras/libvlccore_la-libc.lo \
	misc/libvlccore_la-filter_chain.lo $(am__objects_2)
am__objects_4 = $(am__objects_3) $(am__objects_2)
am__objects_5 = $(am__objects_2)
@HAVE_BEOS_TRUE@am__objects_6 = $(am__objects_5)
am__objects_7 = misc/libvlccore_la-darwin_specific.lo $(am__objects_2)
@HAVE_BEOS_FALSE@@HAVE_DARWIN_TRUE@am__objects_8 = $(am__objects_7)
am__objects_9 = misc/libvlccore_la-linux_specific.lo $(am__objects_2)
@HAVE_BEOS_FALSE@@HAVE_DARWIN_FALSE@@HAVE_LINUX_TRUE@am__objects_10 = $(am__objects_9)
am__objects_11 = misc/libvlccore_la-win32_specific.lo \
	network/libvlccore_la-winsock.lo $(am__objects_2)
@HAVE_BEOS_FALSE@@HAVE_DARWIN_FALSE@@HAVE_LINUX_FALSE@@HAVE_WIN32_TRUE@am__objects_12 = $(am__objects_11)
@HAVE_BEOS_FALSE@@HAVE_DARWIN_FALSE@@HAVE_LINUX_FALSE@@HAVE_WIN32_FALSE@@HAVE_WINCE_TRUE@am__objects_13 = $(am__objects_11)
am__objects_14 = misc/libvlccore_la-not_specific.lo
@HAVE_BEOS_FALSE@@HAVE_DARWIN_FALSE@@HAVE_LINUX_FALSE@@HAVE_WIN32_FALSE@@HAVE_WINCE_FALSE@am__objects_15 = $(am__objects_14)
am__objects_16 = extras/libvlccore_la-dirent.lo $(am__objects_2)
@BUILD_DIRENT_TRUE@am__objects_17 = $(am__objects_16)
am__objects_18 = extras/libvlccore_la-getopt.lo \
	extras/libvlccore_la-getopt1.lo $(am__objects_2)
@BUILD_GETOPT_TRUE@am__objects_19 = $(am__objects_18)
am__objects_20 = stream_output/libvlccore_la-stream_output.lo \
	stream_output/libvlccore_la-announce.lo \
	stream_output/libvlccore_la-sap.lo \
	stream_output/libvlccore_la-sdp.lo $(am__objects_2)
@ENABLE_SOUT_TRUE@am__objects_21 = $(am__objects_20)
am__objects_22 = input/libvlccore_la-vlm.lo \
	input/libvlccore_la-vlmshell.lo $(am__objects_2)
@ENABLE_SOUT_TRUE@@ENABLE_VLM_TRUE@am__objects_23 = $(am__objects_22)
am_libvlccore_la_OBJECTS = $(am__objects_4) $(am__objects_6) \
	$(am__objects_8) $(am__objects_10) $(am__objects_12) \
	$(am__objects_13) $(am__objects_15) $(am__objects_17) \
	$(am__objects_19) $(am__objects_21) $(am__objects_23)
nodist_libvlccore_la_OBJECTS = misc/libvlccore_la-revision.lo
libvlccore_la_OBJECTS = $(am_libvlccore_la_OBJECTS) \
	$(nodist_libvlccore_la_OBJECTS)
libvlccore_la_LINK = $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) \
	$(LIBTOOLFLAGS) --mode=link $(CCLD) $(libvlccore_la_CFLAGS) \
	$(CFLAGS) $(libvlccore_la_LDFLAGS) $(LDFLAGS) -o $@
DEFAULT_INCLUDES = -I.@am__isrc@ -I$(top_builddir)
depcomp = $(SHELL) $(top_srcdir)/autotools/depcomp
am__depfiles_maybe = depfiles
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 = $(libvlc_la_SOURCES) $(libvlccore_la_SOURCES) \
	$(EXTRA_libvlccore_la_SOURCES) $(nodist_libvlccore_la_SOURCES)
DIST_SOURCES = $(libvlc_la_SOURCES) $(am__libvlccore_la_SOURCES_DIST) \
	$(EXTRA_libvlccore_la_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
pkgconfigDATA_INSTALL = $(INSTALL_DATA)
DATA = $(pkgconfig_DATA)
pkgincludeHEADERS_INSTALL = $(INSTALL_HEADER)
pluginsincludeHEADERS_INSTALL = $(INSTALL_HEADER)
HEADERS = $(noinst_HEADERS) $(pkginclude_HEADERS) \
	$(pluginsinclude_HEADERS)
RECURSIVE_CLEAN_TARGETS = mostlyclean-recursive clean-recursive	\
  distclean-recursive maintainer-clean-recursive
ETAGS = etags
CTAGS = ctags
DIST_SUBDIRS = $(SUBDIRS)
DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST)

###############################################################################
# Headers
###############################################################################
pkgincludedir = $(includedir)/vlc
ACLOCAL = @ACLOCAL@
ALIASES = @ALIASES@
ALLOCA = @ALLOCA@
AMTAR = @AMTAR@
AM_CPPFLAGS = @AM_CPPFLAGS@
AR = @AR@
ARCH = @ARCH@
ARTS_CONFIG = @ARTS_CONFIG@
AS = @AS@
ASM = @ASM@
AUTOCONF = @AUTOCONF@
AUTOHEADER = @AUTOHEADER@
AUTOMAKE = @AUTOMAKE@
AVCODEC_CFLAGS = @AVCODEC_CFLAGS@
AVCODEC_LIBS = @AVCODEC_LIBS@
AVFORMAT_CFLAGS = @AVFORMAT_CFLAGS@
AVFORMAT_LIBS = @AVFORMAT_LIBS@
AWK = @AWK@
BONJOUR_CFLAGS = @BONJOUR_CFLAGS@
BONJOUR_LIBS = @BONJOUR_LIBS@
CACA_CONFIG = @CACA_CONFIG@
CC = @CC@
CCAS = @CCAS@
CCASDEPMODE = @CCASDEPMODE@
CCASFLAGS = @CCASFLAGS@
CCDEPMODE = @CCDEPMODE@
CFLAGS = @CFLAGS@
COPYRIGHT_MESSAGE = @COPYRIGHT_MESSAGE@
COPYRIGHT_YEARS = @COPYRIGHT_YEARS@
CPP = @CPP@
CPPFLAGS = @CPPFLAGS@
CSRI_CFLAGS = @CSRI_CFLAGS@
CSRI_LIBS = @CSRI_LIBS@
CXX = @CXX@
CXXCPP = @CXXCPP@
CXXDEPMODE = @CXXDEPMODE@
CXXFLAGS = @CXXFLAGS@
CYGPATH = @CYGPATH@
CYGPATH_W = @CYGPATH_W@
DBUS_CFLAGS = @DBUS_CFLAGS@
DBUS_LIBS = @DBUS_LIBS@
DCA_CFLAGS = @DCA_CFLAGS@
DCA_LIBS = @DCA_LIBS@
DEFS = @DEFS@
DEFS_BIGENDIAN = @DEFS_BIGENDIAN@
DEPDIR = @DEPDIR@
DIRAC_CFLAGS = @DIRAC_CFLAGS@
DIRAC_LIBS = @DIRAC_LIBS@
DIRECTFB_CFLAGS = @DIRECTFB_CFLAGS@
DIRECTFB_CONFIG = @DIRECTFB_CONFIG@
DIRECTFB_LIBS = @DIRECTFB_LIBS@
DLLTOOL = @DLLTOOL@
DSYMUTIL = @DSYMUTIL@
DVDNAV_CONFIG = @DVDNAV_CONFIG@
ECHO = @ECHO@
ECHO_C = @ECHO_C@
ECHO_N = @ECHO_N@
ECHO_T = @ECHO_T@
EGREP = @EGREP@
ESD_CONFIG = @ESD_CONFIG@
EXEEXT = @EXEEXT@
FILE_LIBVLCCORE_DLL = @FILE_LIBVLCCORE_DLL@
FILE_LIBVLC_DLL = @FILE_LIBVLC_DLL@
FLUIDSYNTH_CFLAGS = @FLUIDSYNTH_CFLAGS@
FLUIDSYNTH_LIBS = @FLUIDSYNTH_LIBS@
FREETYPE_CFLAGS = @FREETYPE_CFLAGS@
FREETYPE_LIBS = @FREETYPE_LIBS@
FRIBIDI_CFLAGS = @FRIBIDI_CFLAGS@
FRIBIDI_LIBS = @FRIBIDI_LIBS@
GETTEXT_MACRO_VERSION = @GETTEXT_MACRO_VERSION@
GLIB2_CFLAGS = @GLIB2_CFLAGS@
GLIB2_LIBS = @GLIB2_LIBS@
GMSGFMT = @GMSGFMT@
GMSGFMT_015 = @GMSGFMT_015@
GNOMEVFS_CFLAGS = @GNOMEVFS_CFLAGS@
GNOMEVFS_LIBS = @GNOMEVFS_LIBS@
GNUTLS_CFLAGS = @GNUTLS_CFLAGS@
GNUTLS_LIBS = @GNUTLS_LIBS@
GREP = @GREP@
GTK2_CFLAGS = @GTK2_CFLAGS@
GTK2_LIBS = @GTK2_LIBS@
HAL_CFLAGS = @HAL_CFLAGS@
HAL_LIBS = @HAL_LIBS@
IMGRESAMPLE_CFLAGS = @IMGRESAMPLE_CFLAGS@
IMGRESAMPLE_LIBS = @IMGRESAMPLE_LIBS@
INSTALL = @INSTALL@
INSTALL_DATA = @INSTALL_DATA@
INSTALL_PROGRAM = @INSTALL_PROGRAM@
INSTALL_SCRIPT = @INSTALL_SCRIPT@
INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@
INTLLIBS = @INTLLIBS@
INTL_MACOSX_LIBS = @INTL_MACOSX_LIBS@
KATE_CFLAGS = @KATE_CFLAGS@
KATE_LIBS = @KATE_LIBS@
LD = @LD@
LDFLAGS = @LDFLAGS@
LIBASS_CFLAGS = @LIBASS_CFLAGS@
LIBASS_LIBS = @LIBASS_LIBS@
LIBCDDB_CFLAGS = @LIBCDDB_CFLAGS@
LIBCDDB_LIBS = @LIBCDDB_LIBS@
LIBCDIO_CFLAGS = @LIBCDIO_CFLAGS@
LIBCDIO_LIBS = @LIBCDIO_LIBS@
LIBCDIO_PARANOIA_CFLAGS = @LIBCDIO_PARANOIA_CFLAGS@
LIBCDIO_PARANOIA_LIBS = @LIBCDIO_PARANOIA_LIBS@
LIBEXT = @LIBEXT@
LIBGCRYPT_CFLAGS = @LIBGCRYPT_CFLAGS@
LIBGCRYPT_CONFIG = @LIBGCRYPT_CONFIG@
LIBGCRYPT_LIBS = @LIBGCRYPT_LIBS@
LIBICONV = @LIBICONV@
LIBINTL = @LIBINTL@
LIBMPEG2_CFLAGS = @LIBMPEG2_CFLAGS@
LIBMPEG2_LIBS = @LIBMPEG2_LIBS@
LIBOBJS = @LIBOBJS@
LIBS = @LIBS@
LIBTOOL = @LIBTOOL@
LN_S = @LN_S@
LTLIBICONV = @LTLIBICONV@
LTLIBINTL = @LTLIBINTL@
LTLIBOBJS = @LTLIBOBJS@
LTLIBa52 = @LTLIBa52@
LTLIBa52tofloat32 = @LTLIBa52tofloat32@
LTLIBa52tospdif = @LTLIBa52tospdif@
LTLIBaa = @LTLIBaa@
LTLIBaccess_dv = @LTLIBaccess_dv@
LTLIBaccess_eyetv = @LTLIBaccess_eyetv@
LTLIBaccess_filter_bandwidth = @LTLIBaccess_filter_bandwidth@
LTLIBaccess_filter_dump = @LTLIBaccess_filter_dump@
LTLIBaccess_filter_record = @LTLIBaccess_filter_record@
LTLIBaccess_filter_timeshift = @LTLIBaccess_filter_timeshift@
LTLIBaccess_gnomevfs = @LTLIBaccess_gnomevfs@
LTLIBaccess_jack = @LTLIBaccess_jack@
LTLIBaccess_mmap = @LTLIBaccess_mmap@
LTLIBaccess_output_shout = @LTLIBaccess_output_shout@
LTLIBaccess_realrtsp = @LTLIBaccess_realrtsp@
LTLIBaccess_smb = @LTLIBaccess_smb@
LTLIBadjust = @LTLIBadjust@
LTLIBadpcm = @LTLIBadpcm@
LTLIBalphamask = @LTLIBalphamask@
LTLIBalsa = @LTLIBalsa@
LTLIBaout_directx = @LTLIBaout_directx@
LTLIBaout_file = @LTLIBaout_file@
LTLIBaout_sdl = @LTLIBaout_sdl@
LTLIBaraw = @LTLIBaraw@
LTLIBarts = @LTLIBarts@
LTLIBasademux = @LTLIBasademux@
LTLIBasf = @LTLIBasf@
LTLIBatmo = @LTLIBatmo@
LTLIBaudio_format = @LTLIBaudio_format@
LTLIBaudioscrobbler = @LTLIBaudioscrobbler@
LTLIBauhal = @LTLIBauhal@
LTLIBavcodec = @LTLIBavcodec@
LTLIBavformat = @LTLIBavformat@
LTLIBavi = @LTLIBavi@
LTLIBbandlimited_resampler = @LTLIBbandlimited_resampler@
LTLIBbda = @LTLIBbda@
LTLIBbeos = @LTLIBbeos@
LTLIBblend = @LTLIBblend@
LTLIBblendbench = @LTLIBblendbench@
LTLIBbluescreen = @LTLIBbluescreen@
LTLIBbonjour = @LTLIBbonjour@
LTLIBcaca = @LTLIBcaca@
LTLIBcanvas = @LTLIBcanvas@
LTLIBcc = @LTLIBcc@
LTLIBcdda = @LTLIBcdda@
LTLIBcddax = @LTLIBcddax@
LTLIBcdg = @LTLIBcdg@
LTLIBchain = @LTLIBchain@
LTLIBcinepak = @LTLIBcinepak@
LTLIBclone = @LTLIBclone@
LTLIBcmml = @LTLIBcmml@
LTLIBcolorthres = @LTLIBcolorthres@
LTLIBconverter_fixed = @LTLIBconverter_fixed@
LTLIBconverter_float = @LTLIBconverter_float@
LTLIBcrop = @LTLIBcrop@
LTLIBcroppadd = @LTLIBcroppadd@
LTLIBcsri = @LTLIBcsri@
LTLIBcvdsub = @LTLIBcvdsub@
LTLIBdbus = @LTLIBdbus@
LTLIBdc1394 = @LTLIBdc1394@
LTLIBdeinterlace = @LTLIBdeinterlace@
LTLIBdirac = @LTLIBdirac@
LTLIBdirect3d = @LTLIBdirect3d@
LTLIBdirectfb = @LTLIBdirectfb@
LTLIBdmo = @LTLIBdmo@
LTLIBdolby_surround_decoder = @LTLIBdolby_surround_decoder@
LTLIBdshow = @LTLIBdshow@
LTLIBdts = @LTLIBdts@
LTLIBdtstofloat32 = @LTLIBdtstofloat32@
LTLIBdtstospdif = @LTLIBdtstospdif@
LTLIBdummy = @LTLIBdummy@
LTLIBdvb = @LTLIBdvb@
LTLIBdvbsub = @LTLIBdvbsub@
LTLIBdvdnav = @LTLIBdvdnav@
LTLIBdvdread = @LTLIBdvdread@
LTLIBdynamicoverlay = @LTLIBdynamicoverlay@
LTLIBequalizer = @LTLIBequalizer@
LTLIBerase = @LTLIBerase@
LTLIBesd = @LTLIBesd@
LTLIBexport = @LTLIBexport@
LTLIBextract = @LTLIBextract@
LTLIBfaad = @LTLIBfaad@
LTLIBfake = @LTLIBfake@
LTLIBfb = @LTLIBfb@
LTLIBfbosd = @LTLIBfbosd@
LTLIBflac = @LTLIBflac@
LTLIBfloat32_mixer = @LTLIBfloat32_mixer@
LTLIBfluidsynth = @LTLIBfluidsynth@
LTLIBfolder = @LTLIBfolder@
LTLIBfreetype = @LTLIBfreetype@
LTLIBgalaktos = @LTLIBgalaktos@
LTLIBgaussianblur = @LTLIBgaussianblur@
LTLIBgestures = @LTLIBgestures@
LTLIBggi = @LTLIBggi@
LTLIBglwin32 = @LTLIBglwin32@
LTLIBglx = @LTLIBglx@
LTLIBgme = @LTLIBgme@
LTLIBgnome2_main = @LTLIBgnome2_main@
LTLIBgnome_main = @LTLIBgnome_main@
LTLIBgnutls = @LTLIBgnutls@
LTLIBgoom = @LTLIBgoom@
LTLIBgradient = @LTLIBgradient@
LTLIBgrain = @LTLIBgrain@
LTLIBgrey_yuv = @LTLIBgrey_yuv@
LTLIBgrowl = @LTLIBgrowl@
LTLIBgrowl_udp = @LTLIBgrowl_udp@
LTLIBgtk2_main = @LTLIBgtk2_main@
LTLIBgtk_main = @LTLIBgtk_main@
LTLIBh264 = @LTLIBh264@
LTLIBhal = @LTLIBhal@
LTLIBhd1000a = @LTLIBhd1000a@
LTLIBhd1000v = @LTLIBhd1000v@
LTLIBheadphone_channel_mixer = @LTLIBheadphone_channel_mixer@
LTLIBhotkeys = @LTLIBhotkeys@
LTLIBhttp = @LTLIBhttp@
LTLIBi420_rgb = @LTLIBi420_rgb@
LTLIBi420_rgb_mmx = @LTLIBi420_rgb_mmx@
LTLIBi420_rgb_sse2 = @LTLIBi420_rgb_sse2@
LTLIBi420_ymga = @LTLIBi420_ymga@
LTLIBi420_ymga_mmx = @LTLIBi420_ymga_mmx@
LTLIBi420_yuy2 = @LTLIBi420_yuy2@
LTLIBi420_yuy2_altivec = @LTLIBi420_yuy2_altivec@
LTLIBi420_yuy2_mmx = @LTLIBi420_yuy2_mmx@
LTLIBi420_yuy2_sse2 = @LTLIBi420_yuy2_sse2@
LTLIBi422_i420 = @LTLIBi422_i420@
LTLIBi422_yuy2 = @LTLIBi422_yuy2@
LTLIBi422_yuy2_mmx = @LTLIBi422_yuy2_mmx@
LTLIBi422_yuy2_sse2 = @LTLIBi422_yuy2_sse2@
LTLIBid3tag = @LTLIBid3tag@
LTLIBimage = @LTLIBimage@
LTLIBimgresample = @LTLIBimgresample@
LTLIBinhibit = @LTLIBinhibit@
LTLIBinvert = @LTLIBinvert@
LTLIBjack = @LTLIBjack@
LTLIBkate = @LTLIBkate@
LTLIBlibass = @LTLIBlibass@
LTLIBlibmpeg2 = @LTLIBlibmpeg2@
LTLIBlinear_resampler = @LTLIBlinear_resampler@
LTLIBlirc = @LTLIBlirc@
LTLIBlive555 = @LTLIBlive555@
LTLIBlogger = @LTLIBlogger@
LTLIBlogo = @LTLIBlogo@
LTLIBlpcm = @LTLIBlpcm@
LTLIBm4a = @LTLIBm4a@
LTLIBm4v = @LTLIBm4v@
LTLIBmacosx = @LTLIBmacosx@
LTLIBmagnify = @LTLIBmagnify@
LTLIBmarq = @LTLIBmarq@
LTLIBmemcpy = @LTLIBmemcpy@
LTLIBmemcpy3dn = @LTLIBmemcpy3dn@
LTLIBmemcpyaltivec = @LTLIBmemcpyaltivec@
LTLIBmemcpymmx = @LTLIBmemcpymmx@
LTLIBmemcpymmxext = @LTLIBmemcpymmxext@
LTLIBmga = @LTLIBmga@
LTLIBminimal_macosx = @LTLIBminimal_macosx@
LTLIBmkv = @LTLIBmkv@
LTLIBmod = @LTLIBmod@
LTLIBmono = @LTLIBmono@
LTLIBmosaic = @LTLIBmosaic@
LTLIBmotion = @LTLIBmotion@
LTLIBmotionblur = @LTLIBmotionblur@
LTLIBmotiondetect = @LTLIBmotiondetect@
LTLIBmozilla = @LTLIBmozilla@
LTLIBmp4 = @LTLIBmp4@
LTLIBmpc = @LTLIBmpc@
LTLIBmpeg_audio = @LTLIBmpeg_audio@
LTLIBmpga = @LTLIBmpga@
LTLIBmpgatofixed32 = @LTLIBmpgatofixed32@
LTLIBmpgv = @LTLIBmpgv@
LTLIBmsn = @LTLIBmsn@
LTLIBmux_ogg = @LTLIBmux_ogg@
LTLIBmux_ts = @LTLIBmux_ts@
LTLIBncurses = @LTLIBncurses@
LTLIBnoise = @LTLIBnoise@
LTLIBnormvol = @LTLIBnormvol@
LTLIBnotify = @LTLIBnotify@
LTLIBnsc = @LTLIBnsc@
LTLIBntservice = @LTLIBntservice@
LTLIBogg = @LTLIBogg@
LTLIBopencv_example = @LTLIBopencv_example@
LTLIBopencv_wrapper = @LTLIBopencv_wrapper@
LTLIBopengl = @LTLIBopengl@
LTLIBopengllayer = @LTLIBopengllayer@
LTLIBopie = @LTLIBopie@
LTLIBosd_parser = @LTLIBosd_parser@
LTLIBosdmenu = @LTLIBosdmenu@
LTLIBoss = @LTLIBoss@
LTLIBpanoramix = @LTLIBpanoramix@
LTLIBparam_eq = @LTLIBparam_eq@
LTLIBpda = @LTLIBpda@
LTLIBplaylist = @LTLIBplaylist@
LTLIBpng = @LTLIBpng@
LTLIBpodcast = @LTLIBpodcast@
LTLIBportaudio = @LTLIBportaudio@
LTLIBpostproc = @LTLIBpostproc@
LTLIBprobe_hal = @LTLIBprobe_hal@
LTLIBps = @LTLIBps@
LTLIBpsychedelic = @LTLIBpsychedelic@
LTLIBpulse = @LTLIBpulse@
LTLIBpuzzle = @LTLIBpuzzle@
LTLIBpvr = @LTLIBpvr@
LTLIBqnx = @LTLIBqnx@
LTLIBqt4 = @LTLIBqt4@
LTLIBqtcapture = @LTLIBqtcapture@
LTLIBqte = @LTLIBqte@
LTLIBqte_main = @LTLIBqte_main@
LTLIBquartztext = @LTLIBquartztext@
LTLIBquicktime = @LTLIBquicktime@
LTLIBrawvideo = @LTLIBrawvideo@
LTLIBrc = @LTLIBrc@
LTLIBrealaudio = @LTLIBrealaudio@
LTLIBrealvideo = @LTLIBrealvideo@
LTLIBremoteosd = @LTLIBremoteosd@
LTLIBripple = @LTLIBripple@
LTLIBrotate = @LTLIBrotate@
LTLIBrss = @LTLIBrss@
LTLIBrv32 = @LTLIBrv32@
LTLIBsap = @LTLIBsap@
LTLIBscale = @LTLIBscale@
LTLIBscaletempo = @LTLIBscaletempo@
LTLIBschroedinger = @LTLIBschroedinger@
LTLIBscreen = @LTLIBscreen@
LTLIBscreensaver = @LTLIBscreensaver@
LTLIBsdl_image = @LTLIBsdl_image@
LTLIBsharpen = @LTLIBsharpen@
LTLIBshout = @LTLIBshout@
LTLIBshowintf = @LTLIBshowintf@
LTLIBsignals = @LTLIBsignals@
LTLIBsimple_channel_mixer = @LTLIBsimple_channel_mixer@
LTLIBskins2 = @LTLIBskins2@
LTLIBsnapshot = @LTLIBsnapshot@
LTLIBspatializer = @LTLIBspatializer@
LTLIBspdif_mixer = @LTLIBspdif_mixer@
LTLIBspeex = @LTLIBspeex@
LTLIBspudec = @LTLIBspudec@
LTLIBstats = @LTLIBstats@
LTLIBsubsdec = @LTLIBsubsdec@
LTLIBsubsusf = @LTLIBsubsusf@
LTLIBsvcdsub = @LTLIBsvcdsub@
LTLIBsvg = @LTLIBsvg@
LTLIBsvgalib = @LTLIBsvgalib@
LTLIBswscale = @LTLIBswscale@
LTLIBt140 = @LTLIBt140@
LTLIBtaglib = @LTLIBtaglib@
LTLIBtarkin = @LTLIBtarkin@
LTLIBtelepathy = @LTLIBtelepathy@
LTLIBtelnet = @LTLIBtelnet@
LTLIBtelx = @LTLIBtelx@
LTLIBtest1 = @LTLIBtest1@
LTLIBtest2 = @LTLIBtest2@
LTLIBtest3 = @LTLIBtest3@
LTLIBtest4 = @LTLIBtest4@
LTLIBtheora = @LTLIBtheora@
LTLIBtransform = @LTLIBtransform@
LTLIBtremor = @LTLIBtremor@
LTLIBtrivial_channel_mixer = @LTLIBtrivial_channel_mixer@
LTLIBtrivial_mixer = @LTLIBtrivial_mixer@
LTLIBtrivial_resampler = @LTLIBtrivial_resampler@
LTLIBts = @LTLIBts@
LTLIBtwolame = @LTLIBtwolame@
LTLIBugly_resampler = @LTLIBugly_resampler@
LTLIBupnp_cc = @LTLIBupnp_cc@
LTLIBupnp_intel = @LTLIBupnp_intel@
LTLIBv4l = @LTLIBv4l@
LTLIBv4l2 = @LTLIBv4l2@
LTLIBvcd = @LTLIBvcd@
LTLIBvcdx = @LTLIBvcdx@
LTLIBvisual = @LTLIBvisual@
LTLIBvmem = @LTLIBvmem@
LTLIBvorbis = @LTLIBvorbis@
LTLIBvout_directx = @LTLIBvout_directx@
LTLIBvout_sdl = @LTLIBvout_sdl@
LTLIBwall = @LTLIBwall@
LTLIBwave = @LTLIBwave@
LTLIBwaveout = @LTLIBwaveout@
LTLIBwin32text = @LTLIBwin32text@
LTLIBwince = @LTLIBwince@
LTLIBwingapi = @LTLIBwingapi@
LTLIBwingdi = @LTLIBwingdi@
LTLIBx11 = @LTLIBx11@
LTLIBx264 = @LTLIBx264@
LTLIBxml = @LTLIBxml@
LTLIBxosd = @LTLIBxosd@
LTLIBxtag = @LTLIBxtag@
LTLIBxvideo = @LTLIBxvideo@
LTLIBxvmc = @LTLIBxvmc@
LTLIByuy2_i420 = @LTLIByuy2_i420@
LTLIByuy2_i422 = @LTLIByuy2_i422@
LTLIBzvbi = @LTLIBzvbi@
LUA_CFLAGS = @LUA_CFLAGS@
LUA_LIBS = @LUA_LIBS@
MACOSX_DEPLOYMENT_TARGET = @MACOSX_DEPLOYMENT_TARGET@
MAINT = @MAINT@
MAKEINFO = @MAKEINFO@
MIDL = @MIDL@
MKDIR_P = @MKDIR_P@
MOC = @MOC@
MOZILLA_CFLAGS = @MOZILLA_CFLAGS@
MOZILLA_CONFIG = @MOZILLA_CONFIG@
MOZILLA_LIBS = @MOZILLA_LIBS@
MOZILLA_SDK_PATH = @MOZILLA_SDK_PATH@
MSGFMT = @MSGFMT@
MSGFMT_015 = @MSGFMT_015@
MSGMERGE = @MSGMERGE@
NMEDIT = @NMEDIT@
NOTIFY_CFLAGS = @NOTIFY_CFLAGS@
NOTIFY_LIBS = @NOTIFY_LIBS@
OBJC = @OBJC@
OBJCDEPMODE = @OBJCDEPMODE@
OBJCFLAGS = @OBJCFLAGS@
OBJDUMP = @OBJDUMP@
OBJEXT = @OBJEXT@
OPENCV_CFLAGS = @OPENCV_CFLAGS@
OPENCV_LIBS = @OPENCV_LIBS@
PACKAGE = @PACKAGE@
PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@
PACKAGE_NAME = @PACKAGE_NAME@
PACKAGE_STRING = @PACKAGE_STRING@
PACKAGE_TARNAME = @PACKAGE_TARNAME@
PACKAGE_VERSION = @PACKAGE_VERSION@
PATH_SEPARATOR = @PATH_SEPARATOR@
PCRE_CFLAGS = @PCRE_CFLAGS@
PCRE_LIBS = @PCRE_LIBS@
PKG_CONFIG = @PKG_CONFIG@
PKG_CONFIG_PATH = @PKG_CONFIG_PATH@
POSTPROC_CFLAGS = @POSTPROC_CFLAGS@
POSTPROC_LIBS = @POSTPROC_LIBS@
POSUB = @POSUB@
PULSE_CFLAGS = @PULSE_CFLAGS@
PULSE_LIBS = @PULSE_LIBS@
QT4LOCALEDIR = @QT4LOCALEDIR@
QT4_CFLAGS = @QT4_CFLAGS@
QT4_LIBS = @QT4_LIBS@
RANLIB = @RANLIB@
RCC = @RCC@
SCHROEDINGER_CFLAGS = @SCHROEDINGER_CFLAGS@
SCHROEDINGER_LIBS = @SCHROEDINGER_LIBS@
SDL11_CONFIG = @SDL11_CONFIG@
SDL12_CONFIG = @SDL12_CONFIG@
SDL_CONFIG = @SDL_CONFIG@
SED = @SED@
SET_MAKE = @SET_MAKE@
SHELL = @SHELL@
SHOUT_CFLAGS = @SHOUT_CFLAGS@
SHOUT_LIBS = @SHOUT_LIBS@
STRIP = @STRIP@
SVG_CFLAGS = @SVG_CFLAGS@
SVG_LIBS = @SVG_LIBS@
SWSCALE_CFLAGS = @SWSCALE_CFLAGS@
SWSCALE_LIBS = @SWSCALE_LIBS@
SYS = @SYS@
TAGLIB_CFLAGS = @TAGLIB_CFLAGS@
TAGLIB_LIBS = @TAGLIB_LIBS@
UIC = @UIC@
USE_NLS = @USE_NLS@
VCDINFO_CFLAGS = @VCDINFO_CFLAGS@
VCDINFO_LIBS = @VCDINFO_LIBS@
VERSION = @VERSION@
VERSION_EXTRA_RC = @VERSION_EXTRA_RC@
VERSION_MAJOR = @VERSION_MAJOR@
VERSION_MESSAGE = @VERSION_MESSAGE@
VERSION_MINOR = @VERSION_MINOR@
VERSION_REVISION = @VERSION_REVISION@
VLC_CONFIG = @VLC_CONFIG@
WIDL = @WIDL@
WINDRES = @WINDRES@
WINE_SDK_PATH = @WINE_SDK_PATH@
X264_CFLAGS = @X264_CFLAGS@
X264_LIBS = @X264_LIBS@
XGETTEXT = @XGETTEXT@
XGETTEXT_015 = @XGETTEXT_015@
XGETTEXT_EXTRA_OPTIONS = @XGETTEXT_EXTRA_OPTIONS@
XMKMF = @XMKMF@
XML2_CONFIG = @XML2_CONFIG@
XPM_CFLAGS = @XPM_CFLAGS@
XPM_LIBS = @XPM_LIBS@
X_CFLAGS = @X_CFLAGS@
X_EXTRA_LIBS = @X_EXTRA_LIBS@
X_LIBS = @X_LIBS@
X_PRE_LIBS = @X_PRE_LIBS@
ZVBI_CFLAGS = @ZVBI_CFLAGS@
ZVBI_LIBS = @ZVBI_LIBS@
abs_builddir = @abs_builddir@
abs_srcdir = @abs_srcdir@
abs_top_builddir = @abs_top_builddir@
abs_top_srcdir = @abs_top_srcdir@
ac_ct_CC = @ac_ct_CC@
ac_ct_CXX = @ac_ct_CXX@
ac_ct_OBJC = @ac_ct_OBJC@
am__include = @am__include@
am__leading_dot = @am__leading_dot@
am__quote = @am__quote@
am__tar = @am__tar@
am__untar = @am__untar@
bindir = @bindir@
build = @build@
build_alias = @build_alias@
build_cpu = @build_cpu@
build_os = @build_os@
build_vendor = @build_vendor@
builddir = @builddir@
datadir = @datadir@
datarootdir = @datarootdir@
docdir = @docdir@
dvidir = @dvidir@
exec_prefix = @exec_prefix@
host = @host@
host_alias = @host_alias@
host_cpu = @host_cpu@
host_os = @host_os@
host_vendor = @host_vendor@
htmldir = @htmldir@
includedir = @includedir@
infodir = @infodir@
install_sh = @install_sh@
libdir = @libdir@
libexecdir = @libexecdir@
localedir = @localedir@
localstatedir = @localstatedir@
mandir = @mandir@
mkdir_p = @mkdir_p@
oldincludedir = @oldincludedir@
pdfdir = @pdfdir@
prefix = @prefix@
program_transform_name = @program_transform_name@
psdir = @psdir@
sbindir = @sbindir@
sharedstatedir = @sharedstatedir@
srcdir = @srcdir@
sysconfdir = @sysconfdir@
target_alias = @target_alias@
top_builddir = @top_builddir@
top_srcdir = @top_srcdir@
AUTOMAKE_OPTIONS = subdir-objects
SUBDIRS = . test
NULL = 
EXTRA_DIST = extras/COPYING modules/builtin.h.in \
	misc/beos_specific.cpp \
	libvlc.pc.in \
	vlc-plugin.pc.in \
	libvlc.sym \
	libvlccore.sym

BUILT_SOURCES = modules/builtin.h misc/revision.c ../include/vlc_about.h
CLEANFILES = $(BUILT_SOURCES) $(pkgconfig_DATA)
SUFFIXES = .pc.in .pc
pluginsincludedir = $(pkgincludedir)/plugins
pkginclude_HEADERS = \
	../include/vlc/vlc.h \
	../include/vlc/deprecated.h \
	../include/vlc/libvlc.h \
	../include/vlc/libvlc_structures.h \
	../include/vlc/libvlc_media_list.h \
	../include/vlc/libvlc_events.h \
	../include/vlc/libvlc_vlm.h \
	../include/vlc/mediacontrol.h \
	../include/vlc/mediacontrol_structures.h \
	$(NULL)

pluginsinclude_HEADERS = \
	../include/vlc_access.h \
	../include/vlc_acl.h \
	../include/vlc_aout.h \
	../include/vlc_arrays.h \
	../include/vlc_bits.h \
	../include/vlc_block.h \
	../include/vlc_block_helper.h \
	../include/vlc_charset.h \
	../include/vlc_codec.h \
	../include/vlc_common.h \
	../include/vlc_config.h \
	../include/vlc_config_cat.h \
	../include/vlc_configuration.h \
	../include/vlc_demux.h \
	../include/vlc_epg.h \
	../include/vlc_es.h \
	../include/vlc_es_out.h \
	../include/vlc_events.h \
	../include/vlc_filter.h \
	../include/vlc_gcrypt.h \
	../include/vlc_httpd.h \
	../include/vlc_image.h \
	../include/vlc_input.h \
	../include/vlc_main.h \
	../include/vlc_md5.h \
	../include/vlc_messages.h \
	../include/vlc_meta.h \
	../include/vlc_modules.h \
	../include/vlc_mtime.h \
	../include/vlc_objects.h \
	../include/vlc_playlist.h \
	../include/vlc_plugin.h \
	../include/vlc_rand.h \
	../include/vlc_services_discovery.h \
	../include/vlc_sout.h \
	../include/vlc_stream.h \
	../include/vlc_strings.h \
	../include/vlc_threads.h \
	../include/vlc_url.h \
	../include/vlc_variables.h \
	../include/vlc_vlm.h \
	../include/vlc_vout.h \
	../include/vlc_window.h \
	../include/vlc_xml.h \
	$(NULL)

noinst_HEADERS = \
	../include/mmx.h \
	../include/vlc_codec_synchro.h \
	../include/vlc_codecs.h \
	../include/vlc_devices.h \
	../include/vlc_fixups.h \
	../include/vlc_interface.h \
	../include/vlc_intf_strings.h \
	../include/vlc_iso_lang.h \
	../include/vlc_keys.h \
	../include/vlc_network.h \
	../include/vlc_osd.h \
	../include/vlc_pgpkey.h \
	../include/vlc_tls.h \
	../include/vlc_update.h \
	../include/vlc_vod.h \
	$(NULL)


###############################################################################
# pkg-config integration
###############################################################################
pkgconfigdir = $(libdir)/pkgconfig
pkgconfig_DATA = libvlc.pc vlc-plugin.pc
lib_LTLIBRARIES = libvlccore.la libvlc.la
AM_LDFLAGS = -no-undefined $(am__append_1)
libvlccore_la_SOURCES = $(SOURCES_libvlc) $(am__append_6) \
	$(am__append_7) $(am__append_8) $(am__append_9) \
	$(am__append_10) $(am__append_11) $(am__append_12) \
	$(am__append_13) $(am__append_14) $(am__append_15)
nodist_libvlccore_la_SOURCES = misc/revision.c
libvlccore_la_CFLAGS = `$(VLC_CONFIG) --cflags libvlc` \
	-DMODULE_STRING=\"main\" \
	-DLOCALEDIR=\"$(localedir)\" \
	-DSYSCONFDIR=\"$(sysconfdir)\" \
	-DDATA_PATH=\"$(pkgdatadir)\" \
	-DLIBDIR=\"$(libdir)\" \
	-DPLUGIN_PATH=\"$(pkglibdir)\"

libvlccore_la_LDFLAGS = `$(VLC_CONFIG) --ldflags libvlc` $(AM_LDFLAGS) \
	-export-symbols $(srcdir)/libvlccore.sym -version-info 0:2:0 \
	$(am__append_3)
libvlccore_la_LIBADD = `$(VLC_CONFIG) -libs libvlc` $(AM_LIBADD) $(LTLIBINTL)
libvlccore_la_DEPENDENCIES = libvlccore.sym $(am__append_2)
libvlc_la_SOURCES = $(SOURCES_libvlc_control)
libvlc_la_LIBADD = libvlccore.la
libvlc_la_CFLAGS = `$(VLC_CONFIG) --cflags libvlc` \
	-DMODULE_STRING=\"control\"

libvlc_la_LDFLAGS = $(AM_LDFLAGS) -version-info 2:2:0 -export-symbols \
	$(srcdir)/libvlc.sym $(am__append_5)
libvlc_la_DEPENDENCIES = libvlc.sym libvlccore.la $(am__append_4)
EXTRA_libvlccore_la_SOURCES = \
	$(SOURCES_libvlc_beos) \
	$(SOURCES_libvlc_darwin) \
	$(SOURCES_libvlc_linux) \
	$(SOURCES_libvlc_win32) \
	$(SOURCES_libvlc_other) \
	$(SOURCES_libvlc_dirent) \
	$(SOURCES_libvlc_getopt) \
	$(SOURCES_libvlc_sout) \
	$(SOURCES_libvlc_vlm) \
	$(NULL)

SOURCES_libvlc_beos = \
	$(NULL)

SOURCES_libvlc_darwin = \
	misc/darwin_specific.c \
	$(NULL)

SOURCES_libvlc_linux = \
	misc/linux_specific.c \
	$(NULL)

SOURCES_libvlc_win32 = \
	misc/win32_specific.c \
	network/winsock.c \
	$(NULL)

SOURCES_libvlc_other = misc/not_specific.c
SOURCES_libvlc_dirent = \
	extras/dirent.c \
	$(NULL)

SOURCES_libvlc_getopt = \
	extras/getopt.c \
	extras/getopt.h \
	extras/getopt1.c \
	$(NULL)

SOURCES_libvlc_common = \
	libvlc.c \
	libvlc.h \
	libvlc-module.c \
	version.c \
	interface/interface.h \
	interface/interface.c \
	interface/intf_eject.c \
	interface/interaction.c \
	playlist/playlist_internal.h \
	playlist/thread.c \
	playlist/control.c \
	playlist/engine.c \
	playlist/sort.c \
	playlist/loadsave.c \
	playlist/tree.c \
	playlist/item.c \
	playlist/search.c \
	playlist/services_discovery.c \
	input/item.c \
	input/access.c \
	input/clock.c \
	input/control.c \
	input/decoder.c \
	input/decoder_synchro.c \
	input/demux.c \
	input/es_out.c \
	input/input.c \
	input/meta.c \
	input/input_internal.h \
	input/vlm_internal.h \
	input/stream.c \
	input/mem_stream.c \
	input/subtitles.c \
	input/var.c \
	video_output/video_output.c \
	video_output/vout_pictures.c \
	video_output/vout_pictures.h \
	video_output/video_text.c \
	video_output/video_widgets.c \
	video_output/vout_subpictures.c \
	video_output/vout_intf.c \
	audio_output/aout_internal.h \
	audio_output/common.c \
	audio_output/dec.c \
	audio_output/filters.c \
	audio_output/input.c \
	audio_output/mixer.c \
	audio_output/output.c \
	audio_output/intf.c \
	osd/osd.c \
	osd/osd_text.c \
	osd/osd_widgets.c \
	network/acl.c \
	network/getaddrinfo.c \
	network/io.c \
	network/tcp.c \
	network/udp.c \
	network/httpd.c \
	network/rootbind.c \
	network/tls.c \
	network/poll.c \
	text/charset.c \
	text/strings.c \
	text/unicode.c \
	text/wincp.c \
	text/iso_lang.c \
	text/iso-639_def.h \
	misc/md5.c \
	misc/rand.c \
	misc/mtime.c \
	misc/block.c \
	misc/es_format.c \
	modules/modules.h \
	modules/modules.c \
	modules/cache.c \
	modules/entry.c \
	modules/os.c \
	misc/threads.c \
	misc/stats.c \
	misc/cpu.c \
	misc/action.c \
	config/configuration.h \
	config/core.c \
	config/dirs.c \
	config/chain.c \
	config/file.c \
	config/intf.c \
	config/cmdline.c \
	misc/events.c \
	misc/image.c \
	misc/messages.c \
	misc/objects.c \
	misc/variables.h \
	misc/variables.c \
	misc/error.c \
	misc/update.h \
	misc/update.c \
	misc/xml.c \
	misc/devices.c \
	extras/libc.c \
	misc/filter_chain.c \
	$(NULL)

SOURCES_libvlc_sout = \
	stream_output/stream_output.c \
	stream_output/stream_output.h \
	stream_output/announce.c \
	stream_output/sap.c \
	stream_output/sdp.c \
	$(NULL)

SOURCES_libvlc_vlm = \
	input/vlm.c \
	input/vlmshell.c \
	$(NULL)

SOURCES_libvlc = \
	$(SOURCES_libvlc_common) \
	$(OPT_SOURCES_libvlc_beos) \
	$(OPT_SOURCES_libvlc_darwin) \
	$(OPT_SOURCES_libvlc_win32) \
	$(OPT_SOURCES_libvlc_dirent) \
	$(OPT_SOURCES_libvlc_getopt) \
	$(NULL)

SOURCES_libvlc_control = \
	control/libvlc_internal.h \
	control/core.c \
	control/log.c \
	control/playlist.c \
	control/vlm.c \
	control/video.c \
	control/audio.c \
	control/event.c \
	control/flat_media_list_view.c \
	control/hierarchical_media_list_view.c \
	control/hierarchical_node_media_list_view.c \
	control/media.c \
	control/media_player.c \
	control/media_list.c \
	control/media_list_path.h \
	control/media_list_player.c \
	control/media_list_view.c \
	control/media_library.c \
	control/mediacontrol_internal.h \
	control/mediacontrol_core.c \
	control/mediacontrol_util.c \
	control/mediacontrol_audio_video.c \
	control/media_discoverer.c


###############################################################################
# Unit/regression test
###############################################################################
dist_check_SCRIPTS = check_symbols check_headers
TESTS = check_symbols
all: $(BUILT_SOURCES)
	$(MAKE) $(AM_MAKEFLAGS) all-recursive

.SUFFIXES:
.SUFFIXES: .pc.in .pc .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 \
		&& exit 0; \
	      exit 1;; \
	  esac; \
	done; \
	echo ' cd $(top_srcdir) && $(AUTOMAKE) --gnu  src/Makefile'; \
	cd $(top_srcdir) && \
	  $(AUTOMAKE) --gnu  src/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
install-libLTLIBRARIES: $(lib_LTLIBRARIES)
	@$(NORMAL_INSTALL)
	test -z "$(libdir)" || $(MKDIR_P) "$(DESTDIR)$(libdir)"
	@list='$(lib_LTLIBRARIES)'; for p in $$list; do \
	  if test -f $$p; then \
	    f=$(am__strip_dir) \
	    echo " $(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=install $(libLTLIBRARIES_INSTALL) $(INSTALL_STRIP_FLAG) '$$p' '$(DESTDIR)$(libdir)/$$f'"; \
	    $(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=install $(libLTLIBRARIES_INSTALL) $(INSTALL_STRIP_FLAG) "$$p" "$(DESTDIR)$(libdir)/$$f"; \
	  else :; fi; \
	done

uninstall-libLTLIBRARIES:
	@$(NORMAL_UNINSTALL)
	@list='$(lib_LTLIBRARIES)'; for p in $$list; do \
	  p=$(am__strip_dir) \
	  echo " $(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=uninstall rm -f '$(DESTDIR)$(libdir)/$$p'"; \
	  $(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=uninstall rm -f "$(DESTDIR)$(libdir)/$$p"; \
	done

clean-libLTLIBRARIES:
	-test -z "$(lib_LTLIBRARIES)" || rm -f $(lib_LTLIBRARIES)
	@list='$(lib_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
control/$(am__dirstamp):
	@$(MKDIR_P) control
	@: > control/$(am__dirstamp)
control/$(DEPDIR)/$(am__dirstamp):
	@$(MKDIR_P) control/$(DEPDIR)
	@: > control/$(DEPDIR)/$(am__dirstamp)
control/libvlc_la-core.lo: control/$(am__dirstamp) \
	control/$(DEPDIR)/$(am__dirstamp)
control/libvlc_la-log.lo: control/$(am__dirstamp) \
	control/$(DEPDIR)/$(am__dirstamp)
control/libvlc_la-playlist.lo: control/$(am__dirstamp) \
	control/$(DEPDIR)/$(am__dirstamp)
control/libvlc_la-vlm.lo: control/$(am__dirstamp) \
	control/$(DEPDIR)/$(am__dirstamp)
control/libvlc_la-video.lo: control/$(am__dirstamp) \
	control/$(DEPDIR)/$(am__dirstamp)
control/libvlc_la-audio.lo: control/$(am__dirstamp) \
	control/$(DEPDIR)/$(am__dirstamp)
control/libvlc_la-event.lo: control/$(am__dirstamp) \
	control/$(DEPDIR)/$(am__dirstamp)
control/libvlc_la-flat_media_list_view.lo: control/$(am__dirstamp) \
	control/$(DEPDIR)/$(am__dirstamp)
control/libvlc_la-hierarchical_media_list_view.lo:  \
	control/$(am__dirstamp) control/$(DEPDIR)/$(am__dirstamp)
control/libvlc_la-hierarchical_node_media_list_view.lo:  \
	control/$(am__dirstamp) control/$(DEPDIR)/$(am__dirstamp)
control/libvlc_la-media.lo: control/$(am__dirstamp) \
	control/$(DEPDIR)/$(am__dirstamp)
control/libvlc_la-media_player.lo: control/$(am__dirstamp) \
	control/$(DEPDIR)/$(am__dirstamp)
control/libvlc_la-media_list.lo: control/$(am__dirstamp) \
	control/$(DEPDIR)/$(am__dirstamp)
control/libvlc_la-media_list_player.lo: control/$(am__dirstamp) \
	control/$(DEPDIR)/$(am__dirstamp)
control/libvlc_la-media_list_view.lo: control/$(am__dirstamp) \
	control/$(DEPDIR)/$(am__dirstamp)
control/libvlc_la-media_library.lo: control/$(am__dirstamp) \
	control/$(DEPDIR)/$(am__dirstamp)
control/libvlc_la-mediacontrol_core.lo: control/$(am__dirstamp) \
	control/$(DEPDIR)/$(am__dirstamp)
control/libvlc_la-mediacontrol_util.lo: control/$(am__dirstamp) \
	control/$(DEPDIR)/$(am__dirstamp)
control/libvlc_la-mediacontrol_audio_video.lo:  \
	control/$(am__dirstamp) control/$(DEPDIR)/$(am__dirstamp)
control/libvlc_la-media_discoverer.lo: control/$(am__dirstamp) \
	control/$(DEPDIR)/$(am__dirstamp)
libvlc.la: $(libvlc_la_OBJECTS) $(libvlc_la_DEPENDENCIES) 
	$(libvlc_la_LINK) -rpath $(libdir) $(libvlc_la_OBJECTS) $(libvlc_la_LIBADD) $(LIBS)
interface/$(am__dirstamp):
	@$(MKDIR_P) interface
	@: > interface/$(am__dirstamp)
interface/$(DEPDIR)/$(am__dirstamp):
	@$(MKDIR_P) interface/$(DEPDIR)
	@: > interface/$(DEPDIR)/$(am__dirstamp)
interface/libvlccore_la-interface.lo: interface/$(am__dirstamp) \
	interface/$(DEPDIR)/$(am__dirstamp)
interface/libvlccore_la-intf_eject.lo: interface/$(am__dirstamp) \
	interface/$(DEPDIR)/$(am__dirstamp)
interface/libvlccore_la-interaction.lo: interface/$(am__dirstamp) \
	interface/$(DEPDIR)/$(am__dirstamp)
playlist/$(am__dirstamp):
	@$(MKDIR_P) playlist
	@: > playlist/$(am__dirstamp)
playlist/$(DEPDIR)/$(am__dirstamp):
	@$(MKDIR_P) playlist/$(DEPDIR)
	@: > playlist/$(DEPDIR)/$(am__dirstamp)
playlist/libvlccore_la-thread.lo: playlist/$(am__dirstamp) \
	playlist/$(DEPDIR)/$(am__dirstamp)
playlist/libvlccore_la-control.lo: playlist/$(am__dirstamp) \
	playlist/$(DEPDIR)/$(am__dirstamp)
playlist/libvlccore_la-engine.lo: playlist/$(am__dirstamp) \
	playlist/$(DEPDIR)/$(am__dirstamp)
playlist/libvlccore_la-sort.lo: playlist/$(am__dirstamp) \
	playlist/$(DEPDIR)/$(am__dirstamp)
playlist/libvlccore_la-loadsave.lo: playlist/$(am__dirstamp) \
	playlist/$(DEPDIR)/$(am__dirstamp)
playlist/libvlccore_la-tree.lo: playlist/$(am__dirstamp) \
	playlist/$(DEPDIR)/$(am__dirstamp)
playlist/libvlccore_la-item.lo: playlist/$(am__dirstamp) \
	playlist/$(DEPDIR)/$(am__dirstamp)
playlist/libvlccore_la-search.lo: playlist/$(am__dirstamp) \
	playlist/$(DEPDIR)/$(am__dirstamp)
playlist/libvlccore_la-services_discovery.lo:  \
	playlist/$(am__dirstamp) playlist/$(DEPDIR)/$(am__dirstamp)
input/$(am__dirstamp):
	@$(MKDIR_P) input
	@: > input/$(am__dirstamp)
input/$(DEPDIR)/$(am__dirstamp):
	@$(MKDIR_P) input/$(DEPDIR)
	@: > input/$(DEPDIR)/$(am__dirstamp)
input/libvlccore_la-item.lo: input/$(am__dirstamp) \
	input/$(DEPDIR)/$(am__dirstamp)
input/libvlccore_la-access.lo: input/$(am__dirstamp) \
	input/$(DEPDIR)/$(am__dirstamp)
input/libvlccore_la-clock.lo: input/$(am__dirstamp) \
	input/$(DEPDIR)/$(am__dirstamp)
input/libvlccore_la-control.lo: input/$(am__dirstamp) \
	input/$(DEPDIR)/$(am__dirstamp)
input/libvlccore_la-decoder.lo: input/$(am__dirstamp) \
	input/$(DEPDIR)/$(am__dirstamp)
input/libvlccore_la-decoder_synchro.lo: input/$(am__dirstamp) \
	input/$(DEPDIR)/$(am__dirstamp)
input/libvlccore_la-demux.lo: input/$(am__dirstamp) \
	input/$(DEPDIR)/$(am__dirstamp)
input/libvlccore_la-es_out.lo: input/$(am__dirstamp) \
	input/$(DEPDIR)/$(am__dirstamp)
input/libvlccore_la-input.lo: input/$(am__dirstamp) \
	input/$(DEPDIR)/$(am__dirstamp)
input/libvlccore_la-meta.lo: input/$(am__dirstamp) \
	input/$(DEPDIR)/$(am__dirstamp)
input/libvlccore_la-stream.lo: input/$(am__dirstamp) \
	input/$(DEPDIR)/$(am__dirstamp)
input/libvlccore_la-mem_stream.lo: input/$(am__dirstamp) \
	input/$(DEPDIR)/$(am__dirstamp)
input/libvlccore_la-subtitles.lo: input/$(am__dirstamp) \
	input/$(DEPDIR)/$(am__dirstamp)
input/libvlccore_la-var.lo: input/$(am__dirstamp) \
	input/$(DEPDIR)/$(am__dirstamp)
video_output/$(am__dirstamp):
	@$(MKDIR_P) video_output
	@: > video_output/$(am__dirstamp)
video_output/$(DEPDIR)/$(am__dirstamp):
	@$(MKDIR_P) video_output/$(DEPDIR)
	@: > video_output/$(DEPDIR)/$(am__dirstamp)
video_output/libvlccore_la-video_output.lo:  \
	video_output/$(am__dirstamp) \
	video_output/$(DEPDIR)/$(am__dirstamp)
video_output/libvlccore_la-vout_pictures.lo:  \
	video_output/$(am__dirstamp) \
	video_output/$(DEPDIR)/$(am__dirstamp)
video_output/libvlccore_la-video_text.lo:  \
	video_output/$(am__dirstamp) \
	video_output/$(DEPDIR)/$(am__dirstamp)
video_output/libvlccore_la-video_widgets.lo:  \
	video_output/$(am__dirstamp) \
	video_output/$(DEPDIR)/$(am__dirstamp)
video_output/libvlccore_la-vout_subpictures.lo:  \
	video_output/$(am__dirstamp) \
	video_output/$(DEPDIR)/$(am__dirstamp)
video_output/libvlccore_la-vout_intf.lo: video_output/$(am__dirstamp) \
	video_output/$(DEPDIR)/$(am__dirstamp)
audio_output/$(am__dirstamp):
	@$(MKDIR_P) audio_output
	@: > audio_output/$(am__dirstamp)
audio_output/$(DEPDIR)/$(am__dirstamp):
	@$(MKDIR_P) audio_output/$(DEPDIR)
	@: > audio_output/$(DEPDIR)/$(am__dirstamp)
audio_output/libvlccore_la-common.lo: audio_output/$(am__dirstamp) \
	audio_output/$(DEPDIR)/$(am__dirstamp)
audio_output/libvlccore_la-dec.lo: audio_output/$(am__dirstamp) \
	audio_output/$(DEPDIR)/$(am__dirstamp)
audio_output/libvlccore_la-filters.lo: audio_output/$(am__dirstamp) \
	audio_output/$(DEPDIR)/$(am__dirstamp)
audio_output/libvlccore_la-input.lo: audio_output/$(am__dirstamp) \
	audio_output/$(DEPDIR)/$(am__dirstamp)
audio_output/libvlccore_la-mixer.lo: audio_output/$(am__dirstamp) \
	audio_output/$(DEPDIR)/$(am__dirstamp)
audio_output/libvlccore_la-output.lo: audio_output/$(am__dirstamp) \
	audio_output/$(DEPDIR)/$(am__dirstamp)
audio_output/libvlccore_la-intf.lo: audio_output/$(am__dirstamp) \
	audio_output/$(DEPDIR)/$(am__dirstamp)
osd/$(am__dirstamp):
	@$(MKDIR_P) osd
	@: > osd/$(am__dirstamp)
osd/$(DEPDIR)/$(am__dirstamp):
	@$(MKDIR_P) osd/$(DEPDIR)
	@: > osd/$(DEPDIR)/$(am__dirstamp)
osd/libvlccore_la-osd.lo: osd/$(am__dirstamp) \
	osd/$(DEPDIR)/$(am__dirstamp)
osd/libvlccore_la-osd_text.lo: osd/$(am__dirstamp) \
	osd/$(DEPDIR)/$(am__dirstamp)
osd/libvlccore_la-osd_widgets.lo: osd/$(am__dirstamp) \
	osd/$(DEPDIR)/$(am__dirstamp)
network/$(am__dirstamp):
	@$(MKDIR_P) network
	@: > network/$(am__dirstamp)
network/$(DEPDIR)/$(am__dirstamp):
	@$(MKDIR_P) network/$(DEPDIR)
	@: > network/$(DEPDIR)/$(am__dirstamp)
network/libvlccore_la-acl.lo: network/$(am__dirstamp) \
	network/$(DEPDIR)/$(am__dirstamp)
network/libvlccore_la-getaddrinfo.lo: network/$(am__dirstamp) \
	network/$(DEPDIR)/$(am__dirstamp)
network/libvlccore_la-io.lo: network/$(am__dirstamp) \
	network/$(DEPDIR)/$(am__dirstamp)
network/libvlccore_la-tcp.lo: network/$(am__dirstamp) \
	network/$(DEPDIR)/$(am__dirstamp)
network/libvlccore_la-udp.lo: network/$(am__dirstamp) \
	network/$(DEPDIR)/$(am__dirstamp)
network/libvlccore_la-httpd.lo: network/$(am__dirstamp) \
	network/$(DEPDIR)/$(am__dirstamp)
network/libvlccore_la-rootbind.lo: network/$(am__dirstamp) \
	network/$(DEPDIR)/$(am__dirstamp)
network/libvlccore_la-tls.lo: network/$(am__dirstamp) \
	network/$(DEPDIR)/$(am__dirstamp)
network/libvlccore_la-poll.lo: network/$(am__dirstamp) \
	network/$(DEPDIR)/$(am__dirstamp)
text/$(am__dirstamp):
	@$(MKDIR_P) text
	@: > text/$(am__dirstamp)
text/$(DEPDIR)/$(am__dirstamp):
	@$(MKDIR_P) text/$(DEPDIR)
	@: > text/$(DEPDIR)/$(am__dirstamp)
text/libvlccore_la-charset.lo: text/$(am__dirstamp) \
	text/$(DEPDIR)/$(am__dirstamp)
text/libvlccore_la-strings.lo: text/$(am__dirstamp) \
	text/$(DEPDIR)/$(am__dirstamp)
text/libvlccore_la-unicode.lo: text/$(am__dirstamp) \
	text/$(DEPDIR)/$(am__dirstamp)
text/libvlccore_la-wincp.lo: text/$(am__dirstamp) \
	text/$(DEPDIR)/$(am__dirstamp)
text/libvlccore_la-iso_lang.lo: text/$(am__dirstamp) \
	text/$(DEPDIR)/$(am__dirstamp)
misc/$(am__dirstamp):
	@$(MKDIR_P) misc
	@: > misc/$(am__dirstamp)
misc/$(DEPDIR)/$(am__dirstamp):
	@$(MKDIR_P) misc/$(DEPDIR)
	@: > misc/$(DEPDIR)/$(am__dirstamp)
misc/libvlccore_la-md5.lo: misc/$(am__dirstamp) \
	misc/$(DEPDIR)/$(am__dirstamp)
misc/libvlccore_la-rand.lo: misc/$(am__dirstamp) \
	misc/$(DEPDIR)/$(am__dirstamp)
misc/libvlccore_la-mtime.lo: misc/$(am__dirstamp) \
	misc/$(DEPDIR)/$(am__dirstamp)
misc/libvlccore_la-block.lo: misc/$(am__dirstamp) \
	misc/$(DEPDIR)/$(am__dirstamp)
misc/libvlccore_la-es_format.lo: misc/$(am__dirstamp) \
	misc/$(DEPDIR)/$(am__dirstamp)
modules/$(am__dirstamp):
	@$(MKDIR_P) modules
	@: > modules/$(am__dirstamp)
modules/$(DEPDIR)/$(am__dirstamp):
	@$(MKDIR_P) modules/$(DEPDIR)
	@: > modules/$(DEPDIR)/$(am__dirstamp)
modules/libvlccore_la-modules.lo: modules/$(am__dirstamp) \
	modules/$(DEPDIR)/$(am__dirstamp)
modules/libvlccore_la-cache.lo: modules/$(am__dirstamp) \
	modules/$(DEPDIR)/$(am__dirstamp)
modules/libvlccore_la-entry.lo: modules/$(am__dirstamp) \
	modules/$(DEPDIR)/$(am__dirstamp)
modules/libvlccore_la-os.lo: modules/$(am__dirstamp) \
	modules/$(DEPDIR)/$(am__dirstamp)
misc/libvlccore_la-threads.lo: misc/$(am__dirstamp) \
	misc/$(DEPDIR)/$(am__dirstamp)
misc/libvlccore_la-stats.lo: misc/$(am__dirstamp) \
	misc/$(DEPDIR)/$(am__dirstamp)
misc/libvlccore_la-cpu.lo: misc/$(am__dirstamp) \
	misc/$(DEPDIR)/$(am__dirstamp)
misc/libvlccore_la-action.lo: misc/$(am__dirstamp) \
	misc/$(DEPDIR)/$(am__dirstamp)
config/$(am__dirstamp):
	@$(MKDIR_P) config
	@: > config/$(am__dirstamp)
config/$(DEPDIR)/$(am__dirstamp):
	@$(MKDIR_P) config/$(DEPDIR)
	@: > config/$(DEPDIR)/$(am__dirstamp)
config/libvlccore_la-core.lo: config/$(am__dirstamp) \
	config/$(DEPDIR)/$(am__dirstamp)
config/libvlccore_la-dirs.lo: config/$(am__dirstamp) \
	config/$(DEPDIR)/$(am__dirstamp)
config/libvlccore_la-chain.lo: config/$(am__dirstamp) \
	config/$(DEPDIR)/$(am__dirstamp)
config/libvlccore_la-file.lo: config/$(am__dirstamp) \
	config/$(DEPDIR)/$(am__dirstamp)
config/libvlccore_la-intf.lo: config/$(am__dirstamp) \
	config/$(DEPDIR)/$(am__dirstamp)
config/libvlccore_la-cmdline.lo: config/$(am__dirstamp) \
	config/$(DEPDIR)/$(am__dirstamp)
misc/libvlccore_la-events.lo: misc/$(am__dirstamp) \
	misc/$(DEPDIR)/$(am__dirstamp)
misc/libvlccore_la-image.lo: misc/$(am__dirstamp) \
	misc/$(DEPDIR)/$(am__dirstamp)
misc/libvlccore_la-messages.lo: misc/$(am__dirstamp) \
	misc/$(DEPDIR)/$(am__dirstamp)
misc/libvlccore_la-objects.lo: misc/$(am__dirstamp) \
	misc/$(DEPDIR)/$(am__dirstamp)
misc/libvlccore_la-variables.lo: misc/$(am__dirstamp) \
	misc/$(DEPDIR)/$(am__dirstamp)
misc/libvlccore_la-error.lo: misc/$(am__dirstamp) \
	misc/$(DEPDIR)/$(am__dirstamp)
misc/libvlccore_la-update.lo: misc/$(am__dirstamp) \
	misc/$(DEPDIR)/$(am__dirstamp)
misc/libvlccore_la-xml.lo: misc/$(am__dirstamp) \
	misc/$(DEPDIR)/$(am__dirstamp)
misc/libvlccore_la-devices.lo: misc/$(am__dirstamp) \
	misc/$(DEPDIR)/$(am__dirstamp)
extras/$(am__dirstamp):
	@$(MKDIR_P) extras
	@: > extras/$(am__dirstamp)
extras/$(DEPDIR)/$(am__dirstamp):
	@$(MKDIR_P) extras/$(DEPDIR)
	@: > extras/$(DEPDIR)/$(am__dirstamp)
extras/libvlccore_la-libc.lo: extras/$(am__dirstamp) \
	extras/$(DEPDIR)/$(am__dirstamp)
misc/libvlccore_la-filter_chain.lo: misc/$(am__dirstamp) \
	misc/$(DEPDIR)/$(am__dirstamp)
misc/libvlccore_la-darwin_specific.lo: misc/$(am__dirstamp) \
	misc/$(DEPDIR)/$(am__dirstamp)
misc/libvlccore_la-linux_specific.lo: misc/$(am__dirstamp) \
	misc/$(DEPDIR)/$(am__dirstamp)
misc/libvlccore_la-win32_specific.lo: misc/$(am__dirstamp) \
	misc/$(DEPDIR)/$(am__dirstamp)
network/libvlccore_la-winsock.lo: network/$(am__dirstamp) \
	network/$(DEPDIR)/$(am__dirstamp)
misc/libvlccore_la-not_specific.lo: misc/$(am__dirstamp) \
	misc/$(DEPDIR)/$(am__dirstamp)
extras/libvlccore_la-dirent.lo: extras/$(am__dirstamp) \
	extras/$(DEPDIR)/$(am__dirstamp)
extras/libvlccore_la-getopt.lo: extras/$(am__dirstamp) \
	extras/$(DEPDIR)/$(am__dirstamp)
extras/libvlccore_la-getopt1.lo: extras/$(am__dirstamp) \
	extras/$(DEPDIR)/$(am__dirstamp)
stream_output/$(am__dirstamp):
	@$(MKDIR_P) stream_output
	@: > stream_output/$(am__dirstamp)
stream_output/$(DEPDIR)/$(am__dirstamp):
	@$(MKDIR_P) stream_output/$(DEPDIR)
	@: > stream_output/$(DEPDIR)/$(am__dirstamp)
stream_output/libvlccore_la-stream_output.lo:  \
	stream_output/$(am__dirstamp) \
	stream_output/$(DEPDIR)/$(am__dirstamp)
stream_output/libvlccore_la-announce.lo:  \
	stream_output/$(am__dirstamp) \
	stream_output/$(DEPDIR)/$(am__dirstamp)
stream_output/libvlccore_la-sap.lo: stream_output/$(am__dirstamp) \
	stream_output/$(DEPDIR)/$(am__dirstamp)
stream_output/libvlccore_la-sdp.lo: stream_output/$(am__dirstamp) \
	stream_output/$(DEPDIR)/$(am__dirstamp)
input/libvlccore_la-vlm.lo: input/$(am__dirstamp) \
	input/$(DEPDIR)/$(am__dirstamp)
input/libvlccore_la-vlmshell.lo: input/$(am__dirstamp) \
	input/$(DEPDIR)/$(am__dirstamp)
misc/libvlccore_la-revision.lo: misc/$(am__dirstamp) \
	misc/$(DEPDIR)/$(am__dirstamp)
libvlccore.la: $(libvlccore_la_OBJECTS) $(libvlccore_la_DEPENDENCIES) 
	$(libvlccore_la_LINK) -rpath $(libdir) $(libvlccore_la_OBJECTS) $(libvlccore_la_LIBADD) $(LIBS)

mostlyclean-compile:
	-rm -f *.$(OBJEXT)
	-rm -f audio_output/libvlccore_la-common.$(OBJEXT)
	-rm -f audio_output/libvlccore_la-common.lo
	-rm -f audio_output/libvlccore_la-dec.$(OBJEXT)
	-rm -f audio_output/libvlccore_la-dec.lo
	-rm -f audio_output/libvlccore_la-filters.$(OBJEXT)
	-rm -f audio_output/libvlccore_la-filters.lo
	-rm -f audio_output/libvlccore_la-input.$(OBJEXT)
	-rm -f audio_output/libvlccore_la-input.lo
	-rm -f audio_output/libvlccore_la-intf.$(OBJEXT)
	-rm -f audio_output/libvlccore_la-intf.lo
	-rm -f audio_output/libvlccore_la-mixer.$(OBJEXT)
	-rm -f audio_output/libvlccore_la-mixer.lo
	-rm -f audio_output/libvlccore_la-output.$(OBJEXT)
	-rm -f audio_output/libvlccore_la-output.lo
	-rm -f config/libvlccore_la-chain.$(OBJEXT)
	-rm -f config/libvlccore_la-chain.lo
	-rm -f config/libvlccore_la-cmdline.$(OBJEXT)
	-rm -f config/libvlccore_la-cmdline.lo
	-rm -f config/libvlccore_la-core.$(OBJEXT)
	-rm -f config/libvlccore_la-core.lo
	-rm -f config/libvlccore_la-dirs.$(OBJEXT)
	-rm -f config/libvlccore_la-dirs.lo
	-rm -f config/libvlccore_la-file.$(OBJEXT)
	-rm -f config/libvlccore_la-file.lo
	-rm -f config/libvlccore_la-intf.$(OBJEXT)
	-rm -f config/libvlccore_la-intf.lo
	-rm -f control/libvlc_la-audio.$(OBJEXT)
	-rm -f control/libvlc_la-audio.lo
	-rm -f control/libvlc_la-core.$(OBJEXT)
	-rm -f control/libvlc_la-core.lo
	-rm -f control/libvlc_la-event.$(OBJEXT)
	-rm -f control/libvlc_la-event.lo
	-rm -f control/libvlc_la-flat_media_list_view.$(OBJEXT)
	-rm -f control/libvlc_la-flat_media_list_view.lo
	-rm -f control/libvlc_la-hierarchical_media_list_view.$(OBJEXT)
	-rm -f control/libvlc_la-hierarchical_media_list_view.lo
	-rm -f control/libvlc_la-hierarchical_node_media_list_view.$(OBJEXT)
	-rm -f control/libvlc_la-hierarchical_node_media_list_view.lo
	-rm -f control/libvlc_la-log.$(OBJEXT)
	-rm -f control/libvlc_la-log.lo
	-rm -f control/libvlc_la-media.$(OBJEXT)
	-rm -f control/libvlc_la-media.lo
	-rm -f control/libvlc_la-media_discoverer.$(OBJEXT)
	-rm -f control/libvlc_la-media_discoverer.lo
	-rm -f control/libvlc_la-media_library.$(OBJEXT)
	-rm -f control/libvlc_la-media_library.lo
	-rm -f control/libvlc_la-media_list.$(OBJEXT)
	-rm -f control/libvlc_la-media_list.lo
	-rm -f control/libvlc_la-media_list_player.$(OBJEXT)
	-rm -f control/libvlc_la-media_list_player.lo
	-rm -f control/libvlc_la-media_list_view.$(OBJEXT)
	-rm -f control/libvlc_la-media_list_view.lo
	-rm -f control/libvlc_la-media_player.$(OBJEXT)
	-rm -f control/libvlc_la-media_player.lo
	-rm -f control/libvlc_la-mediacontrol_audio_video.$(OBJEXT)
	-rm -f control/libvlc_la-mediacontrol_audio_video.lo
	-rm -f control/libvlc_la-mediacontrol_core.$(OBJEXT)
	-rm -f control/libvlc_la-mediacontrol_core.lo
	-rm -f control/libvlc_la-mediacontrol_util.$(OBJEXT)
	-rm -f control/libvlc_la-mediacontrol_util.lo
	-rm -f control/libvlc_la-playlist.$(OBJEXT)
	-rm -f control/libvlc_la-playlist.lo
	-rm -f control/libvlc_la-video.$(OBJEXT)
	-rm -f control/libvlc_la-video.lo
	-rm -f control/libvlc_la-vlm.$(OBJEXT)
	-rm -f control/libvlc_la-vlm.lo
	-rm -f extras/libvlccore_la-dirent.$(OBJEXT)
	-rm -f extras/libvlccore_la-dirent.lo
	-rm -f extras/libvlccore_la-getopt.$(OBJEXT)
	-rm -f extras/libvlccore_la-getopt.lo
	-rm -f extras/libvlccore_la-getopt1.$(OBJEXT)
	-rm -f extras/libvlccore_la-getopt1.lo
	-rm -f extras/libvlccore_la-libc.$(OBJEXT)
	-rm -f extras/libvlccore_la-libc.lo
	-rm -f input/libvlccore_la-access.$(OBJEXT)
	-rm -f input/libvlccore_la-access.lo
	-rm -f input/libvlccore_la-clock.$(OBJEXT)
	-rm -f input/libvlccore_la-clock.lo
	-rm -f input/libvlccore_la-control.$(OBJEXT)
	-rm -f input/libvlccore_la-control.lo
	-rm -f input/libvlccore_la-decoder.$(OBJEXT)
	-rm -f input/libvlccore_la-decoder.lo
	-rm -f input/libvlccore_la-decoder_synchro.$(OBJEXT)
	-rm -f input/libvlccore_la-decoder_synchro.lo
	-rm -f input/libvlccore_la-demux.$(OBJEXT)
	-rm -f input/libvlccore_la-demux.lo
	-rm -f input/libvlccore_la-es_out.$(OBJEXT)
	-rm -f input/libvlccore_la-es_out.lo
	-rm -f input/libvlccore_la-input.$(OBJEXT)
	-rm -f input/libvlccore_la-input.lo
	-rm -f input/libvlccore_la-item.$(OBJEXT)
	-rm -f input/libvlccore_la-item.lo
	-rm -f input/libvlccore_la-mem_stream.$(OBJEXT)
	-rm -f input/libvlccore_la-mem_stream.lo
	-rm -f input/libvlccore_la-meta.$(OBJEXT)
	-rm -f input/libvlccore_la-meta.lo
	-rm -f input/libvlccore_la-stream.$(OBJEXT)
	-rm -f input/libvlccore_la-stream.lo
	-rm -f input/libvlccore_la-subtitles.$(OBJEXT)
	-rm -f input/libvlccore_la-subtitles.lo
	-rm -f input/libvlccore_la-var.$(OBJEXT)
	-rm -f input/libvlccore_la-var.lo
	-rm -f input/libvlccore_la-vlm.$(OBJEXT)
	-rm -f input/libvlccore_la-vlm.lo
	-rm -f input/libvlccore_la-vlmshell.$(OBJEXT)
	-rm -f input/libvlccore_la-vlmshell.lo
	-rm -f interface/libvlccore_la-interaction.$(OBJEXT)
	-rm -f interface/libvlccore_la-interaction.lo
	-rm -f interface/libvlccore_la-interface.$(OBJEXT)
	-rm -f interface/libvlccore_la-interface.lo
	-rm -f interface/libvlccore_la-intf_eject.$(OBJEXT)
	-rm -f interface/libvlccore_la-intf_eject.lo
	-rm -f misc/libvlccore_la-action.$(OBJEXT)
	-rm -f misc/libvlccore_la-action.lo
	-rm -f misc/libvlccore_la-block.$(OBJEXT)
	-rm -f misc/libvlccore_la-block.lo
	-rm -f misc/libvlccore_la-cpu.$(OBJEXT)
	-rm -f misc/libvlccore_la-cpu.lo
	-rm -f misc/libvlccore_la-darwin_specific.$(OBJEXT)
	-rm -f misc/libvlccore_la-darwin_specific.lo
	-rm -f misc/libvlccore_la-devices.$(OBJEXT)
	-rm -f misc/libvlccore_la-devices.lo
	-rm -f misc/libvlccore_la-error.$(OBJEXT)
	-rm -f misc/libvlccore_la-error.lo
	-rm -f misc/libvlccore_la-es_format.$(OBJEXT)
	-rm -f misc/libvlccore_la-es_format.lo
	-rm -f misc/libvlccore_la-events.$(OBJEXT)
	-rm -f misc/libvlccore_la-events.lo
	-rm -f misc/libvlccore_la-filter_chain.$(OBJEXT)
	-rm -f misc/libvlccore_la-filter_chain.lo
	-rm -f misc/libvlccore_la-image.$(OBJEXT)
	-rm -f misc/libvlccore_la-image.lo
	-rm -f misc/libvlccore_la-linux_specific.$(OBJEXT)
	-rm -f misc/libvlccore_la-linux_specific.lo
	-rm -f misc/libvlccore_la-md5.$(OBJEXT)
	-rm -f misc/libvlccore_la-md5.lo
	-rm -f misc/libvlccore_la-messages.$(OBJEXT)
	-rm -f misc/libvlccore_la-messages.lo
	-rm -f misc/libvlccore_la-mtime.$(OBJEXT)
	-rm -f misc/libvlccore_la-mtime.lo
	-rm -f misc/libvlccore_la-not_specific.$(OBJEXT)
	-rm -f misc/libvlccore_la-not_specific.lo
	-rm -f misc/libvlccore_la-objects.$(OBJEXT)
	-rm -f misc/libvlccore_la-objects.lo
	-rm -f misc/libvlccore_la-rand.$(OBJEXT)
	-rm -f misc/libvlccore_la-rand.lo
	-rm -f misc/libvlccore_la-revision.$(OBJEXT)
	-rm -f misc/libvlccore_la-revision.lo
	-rm -f misc/libvlccore_la-stats.$(OBJEXT)
	-rm -f misc/libvlccore_la-stats.lo
	-rm -f misc/libvlccore_la-threads.$(OBJEXT)
	-rm -f misc/libvlccore_la-threads.lo
	-rm -f misc/libvlccore_la-update.$(OBJEXT)
	-rm -f misc/libvlccore_la-update.lo
	-rm -f misc/libvlccore_la-variables.$(OBJEXT)
	-rm -f misc/libvlccore_la-variables.lo
	-rm -f misc/libvlccore_la-win32_specific.$(OBJEXT)
	-rm -f misc/libvlccore_la-win32_specific.lo
	-rm -f misc/libvlccore_la-xml.$(OBJEXT)
	-rm -f misc/libvlccore_la-xml.lo
	-rm -f modules/libvlccore_la-cache.$(OBJEXT)
	-rm -f modules/libvlccore_la-cache.lo
	-rm -f modules/libvlccore_la-entry.$(OBJEXT)
	-rm -f modules/libvlccore_la-entry.lo
	-rm -f modules/libvlccore_la-modules.$(OBJEXT)
	-rm -f modules/libvlccore_la-modules.lo
	-rm -f modules/libvlccore_la-os.$(OBJEXT)
	-rm -f modules/libvlccore_la-os.lo
	-rm -f network/libvlccore_la-acl.$(OBJEXT)
	-rm -f network/libvlccore_la-acl.lo
	-rm -f network/libvlccore_la-getaddrinfo.$(OBJEXT)
	-rm -f network/libvlccore_la-getaddrinfo.lo
	-rm -f network/libvlccore_la-httpd.$(OBJEXT)
	-rm -f network/libvlccore_la-httpd.lo
	-rm -f network/libvlccore_la-io.$(OBJEXT)
	-rm -f network/libvlccore_la-io.lo
	-rm -f network/libvlccore_la-poll.$(OBJEXT)
	-rm -f network/libvlccore_la-poll.lo
	-rm -f network/libvlccore_la-rootbind.$(OBJEXT)
	-rm -f network/libvlccore_la-rootbind.lo
	-rm -f network/libvlccore_la-tcp.$(OBJEXT)
	-rm -f network/libvlccore_la-tcp.lo
	-rm -f network/libvlccore_la-tls.$(OBJEXT)
	-rm -f network/libvlccore_la-tls.lo
	-rm -f network/libvlccore_la-udp.$(OBJEXT)
	-rm -f network/libvlccore_la-udp.lo
	-rm -f network/libvlccore_la-winsock.$(OBJEXT)
	-rm -f network/libvlccore_la-winsock.lo
	-rm -f osd/libvlccore_la-osd.$(OBJEXT)
	-rm -f osd/libvlccore_la-osd.lo
	-rm -f osd/libvlccore_la-osd_text.$(OBJEXT)
	-rm -f osd/libvlccore_la-osd_text.lo
	-rm -f osd/libvlccore_la-osd_widgets.$(OBJEXT)
	-rm -f osd/libvlccore_la-osd_widgets.lo
	-rm -f playlist/libvlccore_la-control.$(OBJEXT)
	-rm -f playlist/libvlccore_la-control.lo
	-rm -f playlist/libvlccore_la-engine.$(OBJEXT)
	-rm -f playlist/libvlccore_la-engine.lo
	-rm -f playlist/libvlccore_la-item.$(OBJEXT)
	-rm -f playlist/libvlccore_la-item.lo
	-rm -f playlist/libvlccore_la-loadsave.$(OBJEXT)
	-rm -f playlist/libvlccore_la-loadsave.lo
	-rm -f playlist/libvlccore_la-search.$(OBJEXT)
	-rm -f playlist/libvlccore_la-search.lo
	-rm -f playlist/libvlccore_la-services_discovery.$(OBJEXT)
	-rm -f playlist/libvlccore_la-services_discovery.lo
	-rm -f playlist/libvlccore_la-sort.$(OBJEXT)
	-rm -f playlist/libvlccore_la-sort.lo
	-rm -f playlist/libvlccore_la-thread.$(OBJEXT)
	-rm -f playlist/libvlccore_la-thread.lo
	-rm -f playlist/libvlccore_la-tree.$(OBJEXT)
	-rm -f playlist/libvlccore_la-tree.lo
	-rm -f stream_output/libvlccore_la-announce.$(OBJEXT)
	-rm -f stream_output/libvlccore_la-announce.lo
	-rm -f stream_output/libvlccore_la-sap.$(OBJEXT)
	-rm -f stream_output/libvlccore_la-sap.lo
	-rm -f stream_output/libvlccore_la-sdp.$(OBJEXT)
	-rm -f stream_output/libvlccore_la-sdp.lo
	-rm -f stream_output/libvlccore_la-stream_output.$(OBJEXT)
	-rm -f stream_output/libvlccore_la-stream_output.lo
	-rm -f text/libvlccore_la-charset.$(OBJEXT)
	-rm -f text/libvlccore_la-charset.lo
	-rm -f text/libvlccore_la-iso_lang.$(OBJEXT)
	-rm -f text/libvlccore_la-iso_lang.lo
	-rm -f text/libvlccore_la-strings.$(OBJEXT)
	-rm -f text/libvlccore_la-strings.lo
	-rm -f text/libvlccore_la-unicode.$(OBJEXT)
	-rm -f text/libvlccore_la-unicode.lo
	-rm -f text/libvlccore_la-wincp.$(OBJEXT)
	-rm -f text/libvlccore_la-wincp.lo
	-rm -f video_output/libvlccore_la-video_output.$(OBJEXT)
	-rm -f video_output/libvlccore_la-video_output.lo
	-rm -f video_output/libvlccore_la-video_text.$(OBJEXT)
	-rm -f video_output/libvlccore_la-video_text.lo
	-rm -f video_output/libvlccore_la-video_widgets.$(OBJEXT)
	-rm -f video_output/libvlccore_la-video_widgets.lo
	-rm -f video_output/libvlccore_la-vout_intf.$(OBJEXT)
	-rm -f video_output/libvlccore_la-vout_intf.lo
	-rm -f video_output/libvlccore_la-vout_pictures.$(OBJEXT)
	-rm -f video_output/libvlccore_la-vout_pictures.lo
	-rm -f video_output/libvlccore_la-vout_subpictures.$(OBJEXT)
	-rm -f video_output/libvlccore_la-vout_subpictures.lo

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

@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libvlccore_la-libvlc-module.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libvlccore_la-libvlc.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libvlccore_la-version.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@audio_output/$(DEPDIR)/libvlccore_la-common.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@audio_output/$(DEPDIR)/libvlccore_la-dec.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@audio_output/$(DEPDIR)/libvlccore_la-filters.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@audio_output/$(DEPDIR)/libvlccore_la-input.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@audio_output/$(DEPDIR)/libvlccore_la-intf.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@audio_output/$(DEPDIR)/libvlccore_la-mixer.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@audio_output/$(DEPDIR)/libvlccore_la-output.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@config/$(DEPDIR)/libvlccore_la-chain.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@config/$(DEPDIR)/libvlccore_la-cmdline.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@config/$(DEPDIR)/libvlccore_la-core.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@config/$(DEPDIR)/libvlccore_la-dirs.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@config/$(DEPDIR)/libvlccore_la-file.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@config/$(DEPDIR)/libvlccore_la-intf.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@control/$(DEPDIR)/libvlc_la-audio.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@control/$(DEPDIR)/libvlc_la-core.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@control/$(DEPDIR)/libvlc_la-event.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@control/$(DEPDIR)/libvlc_la-flat_media_list_view.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@control/$(DEPDIR)/libvlc_la-hierarchical_media_list_view.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@control/$(DEPDIR)/libvlc_la-hierarchical_node_media_list_view.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@control/$(DEPDIR)/libvlc_la-log.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@control/$(DEPDIR)/libvlc_la-media.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@control/$(DEPDIR)/libvlc_la-media_discoverer.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@control/$(DEPDIR)/libvlc_la-media_library.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@control/$(DEPDIR)/libvlc_la-media_list.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@control/$(DEPDIR)/libvlc_la-media_list_player.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@control/$(DEPDIR)/libvlc_la-media_list_view.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@control/$(DEPDIR)/libvlc_la-media_player.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@control/$(DEPDIR)/libvlc_la-mediacontrol_audio_video.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@control/$(DEPDIR)/libvlc_la-mediacontrol_core.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@control/$(DEPDIR)/libvlc_la-mediacontrol_util.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@control/$(DEPDIR)/libvlc_la-playlist.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@control/$(DEPDIR)/libvlc_la-video.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@control/$(DEPDIR)/libvlc_la-vlm.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@extras/$(DEPDIR)/libvlccore_la-dirent.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@extras/$(DEPDIR)/libvlccore_la-getopt.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@extras/$(DEPDIR)/libvlccore_la-getopt1.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@extras/$(DEPDIR)/libvlccore_la-libc.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@input/$(DEPDIR)/libvlccore_la-access.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@input/$(DEPDIR)/libvlccore_la-clock.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@input/$(DEPDIR)/libvlccore_la-control.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@input/$(DEPDIR)/libvlccore_la-decoder.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@input/$(DEPDIR)/libvlccore_la-decoder_synchro.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@input/$(DEPDIR)/libvlccore_la-demux.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@input/$(DEPDIR)/libvlccore_la-es_out.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@input/$(DEPDIR)/libvlccore_la-input.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@input/$(DEPDIR)/libvlccore_la-item.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@input/$(DEPDIR)/libvlccore_la-mem_stream.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@input/$(DEPDIR)/libvlccore_la-meta.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@input/$(DEPDIR)/libvlccore_la-stream.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@input/$(DEPDIR)/libvlccore_la-subtitles.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@input/$(DEPDIR)/libvlccore_la-var.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@input/$(DEPDIR)/libvlccore_la-vlm.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@input/$(DEPDIR)/libvlccore_la-vlmshell.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@interface/$(DEPDIR)/libvlccore_la-interaction.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@interface/$(DEPDIR)/libvlccore_la-interface.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@interface/$(DEPDIR)/libvlccore_la-intf_eject.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@misc/$(DEPDIR)/libvlccore_la-action.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@misc/$(DEPDIR)/libvlccore_la-block.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@misc/$(DEPDIR)/libvlccore_la-cpu.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@misc/$(DEPDIR)/libvlccore_la-darwin_specific.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@misc/$(DEPDIR)/libvlccore_la-devices.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@misc/$(DEPDIR)/libvlccore_la-error.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@misc/$(DEPDIR)/libvlccore_la-es_format.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@misc/$(DEPDIR)/libvlccore_la-events.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@misc/$(DEPDIR)/libvlccore_la-filter_chain.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@misc/$(DEPDIR)/libvlccore_la-image.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@misc/$(DEPDIR)/libvlccore_la-linux_specific.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@misc/$(DEPDIR)/libvlccore_la-md5.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@misc/$(DEPDIR)/libvlccore_la-messages.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@misc/$(DEPDIR)/libvlccore_la-mtime.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@misc/$(DEPDIR)/libvlccore_la-not_specific.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@misc/$(DEPDIR)/libvlccore_la-objects.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@misc/$(DEPDIR)/libvlccore_la-rand.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@misc/$(DEPDIR)/libvlccore_la-revision.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@misc/$(DEPDIR)/libvlccore_la-stats.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@misc/$(DEPDIR)/libvlccore_la-threads.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@misc/$(DEPDIR)/libvlccore_la-update.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@misc/$(DEPDIR)/libvlccore_la-variables.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@misc/$(DEPDIR)/libvlccore_la-win32_specific.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@misc/$(DEPDIR)/libvlccore_la-xml.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@modules/$(DEPDIR)/libvlccore_la-cache.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@modules/$(DEPDIR)/libvlccore_la-entry.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@modules/$(DEPDIR)/libvlccore_la-modules.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@modules/$(DEPDIR)/libvlccore_la-os.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@network/$(DEPDIR)/libvlccore_la-acl.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@network/$(DEPDIR)/libvlccore_la-getaddrinfo.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@network/$(DEPDIR)/libvlccore_la-httpd.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@network/$(DEPDIR)/libvlccore_la-io.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@network/$(DEPDIR)/libvlccore_la-poll.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@network/$(DEPDIR)/libvlccore_la-rootbind.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@network/$(DEPDIR)/libvlccore_la-tcp.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@network/$(DEPDIR)/libvlccore_la-tls.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@network/$(DEPDIR)/libvlccore_la-udp.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@network/$(DEPDIR)/libvlccore_la-winsock.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@osd/$(DEPDIR)/libvlccore_la-osd.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@osd/$(DEPDIR)/libvlccore_la-osd_text.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@osd/$(DEPDIR)/libvlccore_la-osd_widgets.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@playlist/$(DEPDIR)/libvlccore_la-control.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@playlist/$(DEPDIR)/libvlccore_la-engine.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@playlist/$(DEPDIR)/libvlccore_la-item.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@playlist/$(DEPDIR)/libvlccore_la-loadsave.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@playlist/$(DEPDIR)/libvlccore_la-search.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@playlist/$(DEPDIR)/libvlccore_la-services_discovery.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@playlist/$(DEPDIR)/libvlccore_la-sort.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@playlist/$(DEPDIR)/libvlccore_la-thread.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@playlist/$(DEPDIR)/libvlccore_la-tree.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@stream_output/$(DEPDIR)/libvlccore_la-announce.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@stream_output/$(DEPDIR)/libvlccore_la-sap.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@stream_output/$(DEPDIR)/libvlccore_la-sdp.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@stream_output/$(DEPDIR)/libvlccore_la-stream_output.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@text/$(DEPDIR)/libvlccore_la-charset.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@text/$(DEPDIR)/libvlccore_la-iso_lang.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@text/$(DEPDIR)/libvlccore_la-strings.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@text/$(DEPDIR)/libvlccore_la-unicode.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@text/$(DEPDIR)/libvlccore_la-wincp.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@video_output/$(DEPDIR)/libvlccore_la-video_output.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@video_output/$(DEPDIR)/libvlccore_la-video_text.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@video_output/$(DEPDIR)/libvlccore_la-video_widgets.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@video_output/$(DEPDIR)/libvlccore_la-vout_intf.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@video_output/$(DEPDIR)/libvlccore_la-vout_pictures.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@video_output/$(DEPDIR)/libvlccore_la-vout_subpictures.Plo@am__quote@

.c.o:
@am__fastdepCC_TRUE@	depbase=`echo $@ | sed 's|[^/]*$$|$(DEPDIR)/&|;s|\.o$$||'`;\
@am__fastdepCC_TRUE@	$(COMPILE) -MT $@ -MD -MP -MF $$depbase.Tpo -c -o $@ $< &&\
@am__fastdepCC_TRUE@	mv -f $$depbase.Tpo $$depbase.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 -o $@ $<

.c.obj:
@am__fastdepCC_TRUE@	depbase=`echo $@ | sed 's|[^/]*$$|$(DEPDIR)/&|;s|\.obj$$||'`;\
@am__fastdepCC_TRUE@	$(COMPILE) -MT $@ -MD -MP -MF $$depbase.Tpo -c -o $@ `$(CYGPATH_W) '$<'` &&\
@am__fastdepCC_TRUE@	mv -f $$depbase.Tpo $$depbase.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 -o $@ `$(CYGPATH_W) '$<'`

.c.lo:
@am__fastdepCC_TRUE@	depbase=`echo $@ | sed 's|[^/]*$$|$(DEPDIR)/&|;s|\.lo$$||'`;\
@am__fastdepCC_TRUE@	$(LTCOMPILE) -MT $@ -MD -MP -MF $$depbase.Tpo -c -o $@ $< &&\
@am__fastdepCC_TRUE@	mv -f $$depbase.Tpo $$depbase.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 $@ $<

control/libvlc_la-core.lo: control/core.c
@am__fastdepCC_TRUE@	$(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libvlc_la_CFLAGS) $(CFLAGS) -MT control/libvlc_la-core.lo -MD -MP -MF control/$(DEPDIR)/libvlc_la-core.Tpo -c -o control/libvlc_la-core.lo `test -f 'control/core.c' || echo '$(srcdir)/'`control/core.c
@am__fastdepCC_TRUE@	mv -f control/$(DEPDIR)/libvlc_la-core.Tpo control/$(DEPDIR)/libvlc_la-core.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@	source='control/core.c' object='control/libvlc_la-core.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) $(AM_CPPFLAGS) $(CPPFLAGS) $(libvlc_la_CFLAGS) $(CFLAGS) -c -o control/libvlc_la-core.lo `test -f 'control/core.c' || echo '$(srcdir)/'`control/core.c

control/libvlc_la-log.lo: control/log.c
@am__fastdepCC_TRUE@	$(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libvlc_la_CFLAGS) $(CFLAGS) -MT control/libvlc_la-log.lo -MD -MP -MF control/$(DEPDIR)/libvlc_la-log.Tpo -c -o control/libvlc_la-log.lo `test -f 'control/log.c' || echo '$(srcdir)/'`control/log.c
@am__fastdepCC_TRUE@	mv -f control/$(DEPDIR)/libvlc_la-log.Tpo control/$(DEPDIR)/libvlc_la-log.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@	source='control/log.c' object='control/libvlc_la-log.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) $(AM_CPPFLAGS) $(CPPFLAGS) $(libvlc_la_CFLAGS) $(CFLAGS) -c -o control/libvlc_la-log.lo `test -f 'control/log.c' || echo '$(srcdir)/'`control/log.c

control/libvlc_la-playlist.lo: control/playlist.c
@am__fastdepCC_TRUE@	$(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libvlc_la_CFLAGS) $(CFLAGS) -MT control/libvlc_la-playlist.lo -MD -MP -MF control/$(DEPDIR)/libvlc_la-playlist.Tpo -c -o control/libvlc_la-playlist.lo `test -f 'control/playlist.c' || echo '$(srcdir)/'`control/playlist.c
@am__fastdepCC_TRUE@	mv -f control/$(DEPDIR)/libvlc_la-playlist.Tpo control/$(DEPDIR)/libvlc_la-playlist.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@	source='control/playlist.c' object='control/libvlc_la-playlist.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) $(AM_CPPFLAGS) $(CPPFLAGS) $(libvlc_la_CFLAGS) $(CFLAGS) -c -o control/libvlc_la-playlist.lo `test -f 'control/playlist.c' || echo '$(srcdir)/'`control/playlist.c

control/libvlc_la-vlm.lo: control/vlm.c
@am__fastdepCC_TRUE@	$(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libvlc_la_CFLAGS) $(CFLAGS) -MT control/libvlc_la-vlm.lo -MD -MP -MF control/$(DEPDIR)/libvlc_la-vlm.Tpo -c -o control/libvlc_la-vlm.lo `test -f 'control/vlm.c' || echo '$(srcdir)/'`control/vlm.c
@am__fastdepCC_TRUE@	mv -f control/$(DEPDIR)/libvlc_la-vlm.Tpo control/$(DEPDIR)/libvlc_la-vlm.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@	source='control/vlm.c' object='control/libvlc_la-vlm.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) $(AM_CPPFLAGS) $(CPPFLAGS) $(libvlc_la_CFLAGS) $(CFLAGS) -c -o control/libvlc_la-vlm.lo `test -f 'control/vlm.c' || echo '$(srcdir)/'`control/vlm.c

control/libvlc_la-video.lo: control/video.c
@am__fastdepCC_TRUE@	$(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libvlc_la_CFLAGS) $(CFLAGS) -MT control/libvlc_la-video.lo -MD -MP -MF control/$(DEPDIR)/libvlc_la-video.Tpo -c -o control/libvlc_la-video.lo `test -f 'control/video.c' || echo '$(srcdir)/'`control/video.c
@am__fastdepCC_TRUE@	mv -f control/$(DEPDIR)/libvlc_la-video.Tpo control/$(DEPDIR)/libvlc_la-video.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@	source='control/video.c' object='control/libvlc_la-video.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) $(AM_CPPFLAGS) $(CPPFLAGS) $(libvlc_la_CFLAGS) $(CFLAGS) -c -o control/libvlc_la-video.lo `test -f 'control/video.c' || echo '$(srcdir)/'`control/video.c

control/libvlc_la-audio.lo: control/audio.c
@am__fastdepCC_TRUE@	$(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libvlc_la_CFLAGS) $(CFLAGS) -MT control/libvlc_la-audio.lo -MD -MP -MF control/$(DEPDIR)/libvlc_la-audio.Tpo -c -o control/libvlc_la-audio.lo `test -f 'control/audio.c' || echo '$(srcdir)/'`control/audio.c
@am__fastdepCC_TRUE@	mv -f control/$(DEPDIR)/libvlc_la-audio.Tpo control/$(DEPDIR)/libvlc_la-audio.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@	source='control/audio.c' object='control/libvlc_la-audio.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) $(AM_CPPFLAGS) $(CPPFLAGS) $(libvlc_la_CFLAGS) $(CFLAGS) -c -o control/libvlc_la-audio.lo `test -f 'control/audio.c' || echo '$(srcdir)/'`control/audio.c

control/libvlc_la-event.lo: control/event.c
@am__fastdepCC_TRUE@	$(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libvlc_la_CFLAGS) $(CFLAGS) -MT control/libvlc_la-event.lo -MD -MP -MF control/$(DEPDIR)/libvlc_la-event.Tpo -c -o control/libvlc_la-event.lo `test -f 'control/event.c' || echo '$(srcdir)/'`control/event.c
@am__fastdepCC_TRUE@	mv -f control/$(DEPDIR)/libvlc_la-event.Tpo control/$(DEPDIR)/libvlc_la-event.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@	source='control/event.c' object='control/libvlc_la-event.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) $(AM_CPPFLAGS) $(CPPFLAGS) $(libvlc_la_CFLAGS) $(CFLAGS) -c -o control/libvlc_la-event.lo `test -f 'control/event.c' || echo '$(srcdir)/'`control/event.c

control/libvlc_la-flat_media_list_view.lo: control/flat_media_list_view.c
@am__fastdepCC_TRUE@	$(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libvlc_la_CFLAGS) $(CFLAGS) -MT control/libvlc_la-flat_media_list_view.lo -MD -MP -MF control/$(DEPDIR)/libvlc_la-flat_media_list_view.Tpo -c -o control/libvlc_la-flat_media_list_view.lo `test -f 'control/flat_media_list_view.c' || echo '$(srcdir)/'`control/flat_media_list_view.c
@am__fastdepCC_TRUE@	mv -f control/$(DEPDIR)/libvlc_la-flat_media_list_view.Tpo control/$(DEPDIR)/libvlc_la-flat_media_list_view.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@	source='control/flat_media_list_view.c' object='control/libvlc_la-flat_media_list_view.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) $(AM_CPPFLAGS) $(CPPFLAGS) $(libvlc_la_CFLAGS) $(CFLAGS) -c -o control/libvlc_la-flat_media_list_view.lo `test -f 'control/flat_media_list_view.c' || echo '$(srcdir)/'`control/flat_media_list_view.c

control/libvlc_la-hierarchical_media_list_view.lo: control/hierarchical_media_list_view.c
@am__fastdepCC_TRUE@	$(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libvlc_la_CFLAGS) $(CFLAGS) -MT control/libvlc_la-hierarchical_media_list_view.lo -MD -MP -MF control/$(DEPDIR)/libvlc_la-hierarchical_media_list_view.Tpo -c -o control/libvlc_la-hierarchical_media_list_view.lo `test -f 'control/hierarchical_media_list_view.c' || echo '$(srcdir)/'`control/hierarchical_media_list_view.c
@am__fastdepCC_TRUE@	mv -f control/$(DEPDIR)/libvlc_la-hierarchical_media_list_view.Tpo control/$(DEPDIR)/libvlc_la-hierarchical_media_list_view.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@	source='control/hierarchical_media_list_view.c' object='control/libvlc_la-hierarchical_media_list_view.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) $(AM_CPPFLAGS) $(CPPFLAGS) $(libvlc_la_CFLAGS) $(CFLAGS) -c -o control/libvlc_la-hierarchical_media_list_view.lo `test -f 'control/hierarchical_media_list_view.c' || echo '$(srcdir)/'`control/hierarchical_media_list_view.c

control/libvlc_la-hierarchical_node_media_list_view.lo: control/hierarchical_node_media_list_view.c
@am__fastdepCC_TRUE@	$(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libvlc_la_CFLAGS) $(CFLAGS) -MT control/libvlc_la-hierarchical_node_media_list_view.lo -MD -MP -MF control/$(DEPDIR)/libvlc_la-hierarchical_node_media_list_view.Tpo -c -o control/libvlc_la-hierarchical_node_media_list_view.lo `test -f 'control/hierarchical_node_media_list_view.c' || echo '$(srcdir)/'`control/hierarchical_node_media_list_view.c
@am__fastdepCC_TRUE@	mv -f control/$(DEPDIR)/libvlc_la-hierarchical_node_media_list_view.Tpo control/$(DEPDIR)/libvlc_la-hierarchical_node_media_list_view.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@	source='control/hierarchical_node_media_list_view.c' object='control/libvlc_la-hierarchical_node_media_list_view.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) $(AM_CPPFLAGS) $(CPPFLAGS) $(libvlc_la_CFLAGS) $(CFLAGS) -c -o control/libvlc_la-hierarchical_node_media_list_view.lo `test -f 'control/hierarchical_node_media_list_view.c' || echo '$(srcdir)/'`control/hierarchical_node_media_list_view.c

control/libvlc_la-media.lo: control/media.c
@am__fastdepCC_TRUE@	$(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libvlc_la_CFLAGS) $(CFLAGS) -MT control/libvlc_la-media.lo -MD -MP -MF control/$(DEPDIR)/libvlc_la-media.Tpo -c -o control/libvlc_la-media.lo `test -f 'control/media.c' || echo '$(srcdir)/'`control/media.c
@am__fastdepCC_TRUE@	mv -f control/$(DEPDIR)/libvlc_la-media.Tpo control/$(DEPDIR)/libvlc_la-media.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@	source='control/media.c' object='control/libvlc_la-media.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) $(AM_CPPFLAGS) $(CPPFLAGS) $(libvlc_la_CFLAGS) $(CFLAGS) -c -o control/libvlc_la-media.lo `test -f 'control/media.c' || echo '$(srcdir)/'`control/media.c

control/libvlc_la-media_player.lo: control/media_player.c
@am__fastdepCC_TRUE@	$(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libvlc_la_CFLAGS) $(CFLAGS) -MT control/libvlc_la-media_player.lo -MD -MP -MF control/$(DEPDIR)/libvlc_la-media_player.Tpo -c -o control/libvlc_la-media_player.lo `test -f 'control/media_player.c' || echo '$(srcdir)/'`control/media_player.c
@am__fastdepCC_TRUE@	mv -f control/$(DEPDIR)/libvlc_la-media_player.Tpo control/$(DEPDIR)/libvlc_la-media_player.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@	source='control/media_player.c' object='control/libvlc_la-media_player.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) $(AM_CPPFLAGS) $(CPPFLAGS) $(libvlc_la_CFLAGS) $(CFLAGS) -c -o control/libvlc_la-media_player.lo `test -f 'control/media_player.c' || echo '$(srcdir)/'`control/media_player.c

control/libvlc_la-media_list.lo: control/media_list.c
@am__fastdepCC_TRUE@	$(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libvlc_la_CFLAGS) $(CFLAGS) -MT control/libvlc_la-media_list.lo -MD -MP -MF control/$(DEPDIR)/libvlc_la-media_list.Tpo -c -o control/libvlc_la-media_list.lo `test -f 'control/media_list.c' || echo '$(srcdir)/'`control/media_list.c
@am__fastdepCC_TRUE@	mv -f control/$(DEPDIR)/libvlc_la-media_list.Tpo control/$(DEPDIR)/libvlc_la-media_list.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@	source='control/media_list.c' object='control/libvlc_la-media_list.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) $(AM_CPPFLAGS) $(CPPFLAGS) $(libvlc_la_CFLAGS) $(CFLAGS) -c -o control/libvlc_la-media_list.lo `test -f 'control/media_list.c' || echo '$(srcdir)/'`control/media_list.c

control/libvlc_la-media_list_player.lo: control/media_list_player.c
@am__fastdepCC_TRUE@	$(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libvlc_la_CFLAGS) $(CFLAGS) -MT control/libvlc_la-media_list_player.lo -MD -MP -MF control/$(DEPDIR)/libvlc_la-media_list_player.Tpo -c -o control/libvlc_la-media_list_player.lo `test -f 'control/media_list_player.c' || echo '$(srcdir)/'`control/media_list_player.c
@am__fastdepCC_TRUE@	mv -f control/$(DEPDIR)/libvlc_la-media_list_player.Tpo control/$(DEPDIR)/libvlc_la-media_list_player.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@	source='control/media_list_player.c' object='control/libvlc_la-media_list_player.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) $(AM_CPPFLAGS) $(CPPFLAGS) $(libvlc_la_CFLAGS) $(CFLAGS) -c -o control/libvlc_la-media_list_player.lo `test -f 'control/media_list_player.c' || echo '$(srcdir)/'`control/media_list_player.c

control/libvlc_la-media_list_view.lo: control/media_list_view.c
@am__fastdepCC_TRUE@	$(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libvlc_la_CFLAGS) $(CFLAGS) -MT control/libvlc_la-media_list_view.lo -MD -MP -MF control/$(DEPDIR)/libvlc_la-media_list_view.Tpo -c -o control/libvlc_la-media_list_view.lo `test -f 'control/media_list_view.c' || echo '$(srcdir)/'`control/media_list_view.c
@am__fastdepCC_TRUE@	mv -f control/$(DEPDIR)/libvlc_la-media_list_view.Tpo control/$(DEPDIR)/libvlc_la-media_list_view.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@	source='control/media_list_view.c' object='control/libvlc_la-media_list_view.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) $(AM_CPPFLAGS) $(CPPFLAGS) $(libvlc_la_CFLAGS) $(CFLAGS) -c -o control/libvlc_la-media_list_view.lo `test -f 'control/media_list_view.c' || echo '$(srcdir)/'`control/media_list_view.c

control/libvlc_la-media_library.lo: control/media_library.c
@am__fastdepCC_TRUE@	$(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libvlc_la_CFLAGS) $(CFLAGS) -MT control/libvlc_la-media_library.lo -MD -MP -MF control/$(DEPDIR)/libvlc_la-media_library.Tpo -c -o control/libvlc_la-media_library.lo `test -f 'control/media_library.c' || echo '$(srcdir)/'`control/media_library.c
@am__fastdepCC_TRUE@	mv -f control/$(DEPDIR)/libvlc_la-media_library.Tpo control/$(DEPDIR)/libvlc_la-media_library.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@	source='control/media_library.c' object='control/libvlc_la-media_library.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) $(AM_CPPFLAGS) $(CPPFLAGS) $(libvlc_la_CFLAGS) $(CFLAGS) -c -o control/libvlc_la-media_library.lo `test -f 'control/media_library.c' || echo '$(srcdir)/'`control/media_library.c

control/libvlc_la-mediacontrol_core.lo: control/mediacontrol_core.c
@am__fastdepCC_TRUE@	$(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libvlc_la_CFLAGS) $(CFLAGS) -MT control/libvlc_la-mediacontrol_core.lo -MD -MP -MF control/$(DEPDIR)/libvlc_la-mediacontrol_core.Tpo -c -o control/libvlc_la-mediacontrol_core.lo `test -f 'control/mediacontrol_core.c' || echo '$(srcdir)/'`control/mediacontrol_core.c
@am__fastdepCC_TRUE@	mv -f control/$(DEPDIR)/libvlc_la-mediacontrol_core.Tpo control/$(DEPDIR)/libvlc_la-mediacontrol_core.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@	source='control/mediacontrol_core.c' object='control/libvlc_la-mediacontrol_core.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) $(AM_CPPFLAGS) $(CPPFLAGS) $(libvlc_la_CFLAGS) $(CFLAGS) -c -o control/libvlc_la-mediacontrol_core.lo `test -f 'control/mediacontrol_core.c' || echo '$(srcdir)/'`control/mediacontrol_core.c

control/libvlc_la-mediacontrol_util.lo: control/mediacontrol_util.c
@am__fastdepCC_TRUE@	$(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libvlc_la_CFLAGS) $(CFLAGS) -MT control/libvlc_la-mediacontrol_util.lo -MD -MP -MF control/$(DEPDIR)/libvlc_la-mediacontrol_util.Tpo -c -o control/libvlc_la-mediacontrol_util.lo `test -f 'control/mediacontrol_util.c' || echo '$(srcdir)/'`control/mediacontrol_util.c
@am__fastdepCC_TRUE@	mv -f control/$(DEPDIR)/libvlc_la-mediacontrol_util.Tpo control/$(DEPDIR)/libvlc_la-mediacontrol_util.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@	source='control/mediacontrol_util.c' object='control/libvlc_la-mediacontrol_util.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) $(AM_CPPFLAGS) $(CPPFLAGS) $(libvlc_la_CFLAGS) $(CFLAGS) -c -o control/libvlc_la-mediacontrol_util.lo `test -f 'control/mediacontrol_util.c' || echo '$(srcdir)/'`control/mediacontrol_util.c

control/libvlc_la-mediacontrol_audio_video.lo: control/mediacontrol_audio_video.c
@am__fastdepCC_TRUE@	$(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libvlc_la_CFLAGS) $(CFLAGS) -MT control/libvlc_la-mediacontrol_audio_video.lo -MD -MP -MF control/$(DEPDIR)/libvlc_la-mediacontrol_audio_video.Tpo -c -o control/libvlc_la-mediacontrol_audio_video.lo `test -f 'control/mediacontrol_audio_video.c' || echo '$(srcdir)/'`control/mediacontrol_audio_video.c
@am__fastdepCC_TRUE@	mv -f control/$(DEPDIR)/libvlc_la-mediacontrol_audio_video.Tpo control/$(DEPDIR)/libvlc_la-mediacontrol_audio_video.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@	source='control/mediacontrol_audio_video.c' object='control/libvlc_la-mediacontrol_audio_video.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) $(AM_CPPFLAGS) $(CPPFLAGS) $(libvlc_la_CFLAGS) $(CFLAGS) -c -o control/libvlc_la-mediacontrol_audio_video.lo `test -f 'control/mediacontrol_audio_video.c' || echo '$(srcdir)/'`control/mediacontrol_audio_video.c

control/libvlc_la-media_discoverer.lo: control/media_discoverer.c
@am__fastdepCC_TRUE@	$(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libvlc_la_CFLAGS) $(CFLAGS) -MT control/libvlc_la-media_discoverer.lo -MD -MP -MF control/$(DEPDIR)/libvlc_la-media_discoverer.Tpo -c -o control/libvlc_la-media_discoverer.lo `test -f 'control/media_discoverer.c' || echo '$(srcdir)/'`control/media_discoverer.c
@am__fastdepCC_TRUE@	mv -f control/$(DEPDIR)/libvlc_la-media_discoverer.Tpo control/$(DEPDIR)/libvlc_la-media_discoverer.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@	source='control/media_discoverer.c' object='control/libvlc_la-media_discoverer.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) $(AM_CPPFLAGS) $(CPPFLAGS) $(libvlc_la_CFLAGS) $(CFLAGS) -c -o control/libvlc_la-media_discoverer.lo `test -f 'control/media_discoverer.c' || echo '$(srcdir)/'`control/media_discoverer.c

libvlccore_la-libvlc.lo: libvlc.c
@am__fastdepCC_TRUE@	$(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libvlccore_la_CFLAGS) $(CFLAGS) -MT libvlccore_la-libvlc.lo -MD -MP -MF $(DEPDIR)/libvlccore_la-libvlc.Tpo -c -o libvlccore_la-libvlc.lo `test -f 'libvlc.c' || echo '$(srcdir)/'`libvlc.c
@am__fastdepCC_TRUE@	mv -f $(DEPDIR)/libvlccore_la-libvlc.Tpo $(DEPDIR)/libvlccore_la-libvlc.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@	source='libvlc.c' object='libvlccore_la-libvlc.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) $(AM_CPPFLAGS) $(CPPFLAGS) $(libvlccore_la_CFLAGS) $(CFLAGS) -c -o libvlccore_la-libvlc.lo `test -f 'libvlc.c' || echo '$(srcdir)/'`libvlc.c

libvlccore_la-libvlc-module.lo: libvlc-module.c
@am__fastdepCC_TRUE@	$(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libvlccore_la_CFLAGS) $(CFLAGS) -MT libvlccore_la-libvlc-module.lo -MD -MP -MF $(DEPDIR)/libvlccore_la-libvlc-module.Tpo -c -o libvlccore_la-libvlc-module.lo `test -f 'libvlc-module.c' || echo '$(srcdir)/'`libvlc-module.c
@am__fastdepCC_TRUE@	mv -f $(DEPDIR)/libvlccore_la-libvlc-module.Tpo $(DEPDIR)/libvlccore_la-libvlc-module.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@	source='libvlc-module.c' object='libvlccore_la-libvlc-module.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) $(AM_CPPFLAGS) $(CPPFLAGS) $(libvlccore_la_CFLAGS) $(CFLAGS) -c -o libvlccore_la-libvlc-module.lo `test -f 'libvlc-module.c' || echo '$(srcdir)/'`libvlc-module.c

libvlccore_la-version.lo: version.c
@am__fastdepCC_TRUE@	$(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libvlccore_la_CFLAGS) $(CFLAGS) -MT libvlccore_la-version.lo -MD -MP -MF $(DEPDIR)/libvlccore_la-version.Tpo -c -o libvlccore_la-version.lo `test -f 'version.c' || echo '$(srcdir)/'`version.c
@am__fastdepCC_TRUE@	mv -f $(DEPDIR)/libvlccore_la-version.Tpo $(DEPDIR)/libvlccore_la-version.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@	source='version.c' object='libvlccore_la-version.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) $(AM_CPPFLAGS) $(CPPFLAGS) $(libvlccore_la_CFLAGS) $(CFLAGS) -c -o libvlccore_la-version.lo `test -f 'version.c' || echo '$(srcdir)/'`version.c

interface/libvlccore_la-interface.lo: interface/interface.c
@am__fastdepCC_TRUE@	$(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libvlccore_la_CFLAGS) $(CFLAGS) -MT interface/libvlccore_la-interface.lo -MD -MP -MF interface/$(DEPDIR)/libvlccore_la-interface.Tpo -c -o interface/libvlccore_la-interface.lo `test -f 'interface/interface.c' || echo '$(srcdir)/'`interface/interface.c
@am__fastdepCC_TRUE@	mv -f interface/$(DEPDIR)/libvlccore_la-interface.Tpo interface/$(DEPDIR)/libvlccore_la-interface.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@	source='interface/interface.c' object='interface/libvlccore_la-interface.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) $(AM_CPPFLAGS) $(CPPFLAGS) $(libvlccore_la_CFLAGS) $(CFLAGS) -c -o interface/libvlccore_la-interface.lo `test -f 'interface/interface.c' || echo '$(srcdir)/'`interface/interface.c

interface/libvlccore_la-intf_eject.lo: interface/intf_eject.c
@am__fastdepCC_TRUE@	$(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libvlccore_la_CFLAGS) $(CFLAGS) -MT interface/libvlccore_la-intf_eject.lo -MD -MP -MF interface/$(DEPDIR)/libvlccore_la-intf_eject.Tpo -c -o interface/libvlccore_la-intf_eject.lo `test -f 'interface/intf_eject.c' || echo '$(srcdir)/'`interface/intf_eject.c
@am__fastdepCC_TRUE@	mv -f interface/$(DEPDIR)/libvlccore_la-intf_eject.Tpo interface/$(DEPDIR)/libvlccore_la-intf_eject.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@	source='interface/intf_eject.c' object='interface/libvlccore_la-intf_eject.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) $(AM_CPPFLAGS) $(CPPFLAGS) $(libvlccore_la_CFLAGS) $(CFLAGS) -c -o interface/libvlccore_la-intf_eject.lo `test -f 'interface/intf_eject.c' || echo '$(srcdir)/'`interface/intf_eject.c

interface/libvlccore_la-interaction.lo: interface/interaction.c
@am__fastdepCC_TRUE@	$(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libvlccore_la_CFLAGS) $(CFLAGS) -MT interface/libvlccore_la-interaction.lo -MD -MP -MF interface/$(DEPDIR)/libvlccore_la-interaction.Tpo -c -o interface/libvlccore_la-interaction.lo `test -f 'interface/interaction.c' || echo '$(srcdir)/'`interface/interaction.c
@am__fastdepCC_TRUE@	mv -f interface/$(DEPDIR)/libvlccore_la-interaction.Tpo interface/$(DEPDIR)/libvlccore_la-interaction.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@	source='interface/interaction.c' object='interface/libvlccore_la-interaction.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) $(AM_CPPFLAGS) $(CPPFLAGS) $(libvlccore_la_CFLAGS) $(CFLAGS) -c -o interface/libvlccore_la-interaction.lo `test -f 'interface/interaction.c' || echo '$(srcdir)/'`interface/interaction.c

playlist/libvlccore_la-thread.lo: playlist/thread.c
@am__fastdepCC_TRUE@	$(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libvlccore_la_CFLAGS) $(CFLAGS) -MT playlist/libvlccore_la-thread.lo -MD -MP -MF playlist/$(DEPDIR)/libvlccore_la-thread.Tpo -c -o playlist/libvlccore_la-thread.lo `test -f 'playlist/thread.c' || echo '$(srcdir)/'`playlist/thread.c
@am__fastdepCC_TRUE@	mv -f playlist/$(DEPDIR)/libvlccore_la-thread.Tpo playlist/$(DEPDIR)/libvlccore_la-thread.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@	source='playlist/thread.c' object='playlist/libvlccore_la-thread.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) $(AM_CPPFLAGS) $(CPPFLAGS) $(libvlccore_la_CFLAGS) $(CFLAGS) -c -o playlist/libvlccore_la-thread.lo `test -f 'playlist/thread.c' || echo '$(srcdir)/'`playlist/thread.c

playlist/libvlccore_la-control.lo: playlist/control.c
@am__fastdepCC_TRUE@	$(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libvlccore_la_CFLAGS) $(CFLAGS) -MT playlist/libvlccore_la-control.lo -MD -MP -MF playlist/$(DEPDIR)/libvlccore_la-control.Tpo -c -o playlist/libvlccore_la-control.lo `test -f 'playlist/control.c' || echo '$(srcdir)/'`playlist/control.c
@am__fastdepCC_TRUE@	mv -f playlist/$(DEPDIR)/libvlccore_la-control.Tpo playlist/$(DEPDIR)/libvlccore_la-control.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@	source='playlist/control.c' object='playlist/libvlccore_la-control.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) $(AM_CPPFLAGS) $(CPPFLAGS) $(libvlccore_la_CFLAGS) $(CFLAGS) -c -o playlist/libvlccore_la-control.lo `test -f 'playlist/control.c' || echo '$(srcdir)/'`playlist/control.c

playlist/libvlccore_la-engine.lo: playlist/engine.c
@am__fastdepCC_TRUE@	$(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libvlccore_la_CFLAGS) $(CFLAGS) -MT playlist/libvlccore_la-engine.lo -MD -MP -MF playlist/$(DEPDIR)/libvlccore_la-engine.Tpo -c -o playlist/libvlccore_la-engine.lo `test -f 'playlist/engine.c' || echo '$(srcdir)/'`playlist/engine.c
@am__fastdepCC_TRUE@	mv -f playlist/$(DEPDIR)/libvlccore_la-engine.Tpo playlist/$(DEPDIR)/libvlccore_la-engine.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@	source='playlist/engine.c' object='playlist/libvlccore_la-engine.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) $(AM_CPPFLAGS) $(CPPFLAGS) $(libvlccore_la_CFLAGS) $(CFLAGS) -c -o playlist/libvlccore_la-engine.lo `test -f 'playlist/engine.c' || echo '$(srcdir)/'`playlist/engine.c

playlist/libvlccore_la-sort.lo: playlist/sort.c
@am__fastdepCC_TRUE@	$(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libvlccore_la_CFLAGS) $(CFLAGS) -MT playlist/libvlccore_la-sort.lo -MD -MP -MF playlist/$(DEPDIR)/libvlccore_la-sort.Tpo -c -o playlist/libvlccore_la-sort.lo `test -f 'playlist/sort.c' || echo '$(srcdir)/'`playlist/sort.c
@am__fastdepCC_TRUE@	mv -f playlist/$(DEPDIR)/libvlccore_la-sort.Tpo playlist/$(DEPDIR)/libvlccore_la-sort.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@	source='playlist/sort.c' object='playlist/libvlccore_la-sort.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) $(AM_CPPFLAGS) $(CPPFLAGS) $(libvlccore_la_CFLAGS) $(CFLAGS) -c -o playlist/libvlccore_la-sort.lo `test -f 'playlist/sort.c' || echo '$(srcdir)/'`playlist/sort.c

playlist/libvlccore_la-loadsave.lo: playlist/loadsave.c
@am__fastdepCC_TRUE@	$(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libvlccore_la_CFLAGS) $(CFLAGS) -MT playlist/libvlccore_la-loadsave.lo -MD -MP -MF playlist/$(DEPDIR)/libvlccore_la-loadsave.Tpo -c -o playlist/libvlccore_la-loadsave.lo `test -f 'playlist/loadsave.c' || echo '$(srcdir)/'`playlist/loadsave.c
@am__fastdepCC_TRUE@	mv -f playlist/$(DEPDIR)/libvlccore_la-loadsave.Tpo playlist/$(DEPDIR)/libvlccore_la-loadsave.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@	source='playlist/loadsave.c' object='playlist/libvlccore_la-loadsave.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) $(AM_CPPFLAGS) $(CPPFLAGS) $(libvlccore_la_CFLAGS) $(CFLAGS) -c -o playlist/libvlccore_la-loadsave.lo `test -f 'playlist/loadsave.c' || echo '$(srcdir)/'`playlist/loadsave.c

playlist/libvlccore_la-tree.lo: playlist/tree.c
@am__fastdepCC_TRUE@	$(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libvlccore_la_CFLAGS) $(CFLAGS) -MT playlist/libvlccore_la-tree.lo -MD -MP -MF playlist/$(DEPDIR)/libvlccore_la-tree.Tpo -c -o playlist/libvlccore_la-tree.lo `test -f 'playlist/tree.c' || echo '$(srcdir)/'`playlist/tree.c
@am__fastdepCC_TRUE@	mv -f playlist/$(DEPDIR)/libvlccore_la-tree.Tpo playlist/$(DEPDIR)/libvlccore_la-tree.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@	source='playlist/tree.c' object='playlist/libvlccore_la-tree.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) $(AM_CPPFLAGS) $(CPPFLAGS) $(libvlccore_la_CFLAGS) $(CFLAGS) -c -o playlist/libvlccore_la-tree.lo `test -f 'playlist/tree.c' || echo '$(srcdir)/'`playlist/tree.c

playlist/libvlccore_la-item.lo: playlist/item.c
@am__fastdepCC_TRUE@	$(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libvlccore_la_CFLAGS) $(CFLAGS) -MT playlist/libvlccore_la-item.lo -MD -MP -MF playlist/$(DEPDIR)/libvlccore_la-item.Tpo -c -o playlist/libvlccore_la-item.lo `test -f 'playlist/item.c' || echo '$(srcdir)/'`playlist/item.c
@am__fastdepCC_TRUE@	mv -f playlist/$(DEPDIR)/libvlccore_la-item.Tpo playlist/$(DEPDIR)/libvlccore_la-item.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@	source='playlist/item.c' object='playlist/libvlccore_la-item.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) $(AM_CPPFLAGS) $(CPPFLAGS) $(libvlccore_la_CFLAGS) $(CFLAGS) -c -o playlist/libvlccore_la-item.lo `test -f 'playlist/item.c' || echo '$(srcdir)/'`playlist/item.c

playlist/libvlccore_la-search.lo: playlist/search.c
@am__fastdepCC_TRUE@	$(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libvlccore_la_CFLAGS) $(CFLAGS) -MT playlist/libvlccore_la-search.lo -MD -MP -MF playlist/$(DEPDIR)/libvlccore_la-search.Tpo -c -o playlist/libvlccore_la-search.lo `test -f 'playlist/search.c' || echo '$(srcdir)/'`playlist/search.c
@am__fastdepCC_TRUE@	mv -f playlist/$(DEPDIR)/libvlccore_la-search.Tpo playlist/$(DEPDIR)/libvlccore_la-search.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@	source='playlist/search.c' object='playlist/libvlccore_la-search.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) $(AM_CPPFLAGS) $(CPPFLAGS) $(libvlccore_la_CFLAGS) $(CFLAGS) -c -o playlist/libvlccore_la-search.lo `test -f 'playlist/search.c' || echo '$(srcdir)/'`playlist/search.c

playlist/libvlccore_la-services_discovery.lo: playlist/services_discovery.c
@am__fastdepCC_TRUE@	$(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libvlccore_la_CFLAGS) $(CFLAGS) -MT playlist/libvlccore_la-services_discovery.lo -MD -MP -MF playlist/$(DEPDIR)/libvlccore_la-services_discovery.Tpo -c -o playlist/libvlccore_la-services_discovery.lo `test -f 'playlist/services_discovery.c' || echo '$(srcdir)/'`playlist/services_discovery.c
@am__fastdepCC_TRUE@	mv -f playlist/$(DEPDIR)/libvlccore_la-services_discovery.Tpo playlist/$(DEPDIR)/libvlccore_la-services_discovery.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@	source='playlist/services_discovery.c' object='playlist/libvlccore_la-services_discovery.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) $(AM_CPPFLAGS) $(CPPFLAGS) $(libvlccore_la_CFLAGS) $(CFLAGS) -c -o playlist/libvlccore_la-services_discovery.lo `test -f 'playlist/services_discovery.c' || echo '$(srcdir)/'`playlist/services_discovery.c

input/libvlccore_la-item.lo: input/item.c
@am__fastdepCC_TRUE@	$(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libvlccore_la_CFLAGS) $(CFLAGS) -MT input/libvlccore_la-item.lo -MD -MP -MF input/$(DEPDIR)/libvlccore_la-item.Tpo -c -o input/libvlccore_la-item.lo `test -f 'input/item.c' || echo '$(srcdir)/'`input/item.c
@am__fastdepCC_TRUE@	mv -f input/$(DEPDIR)/libvlccore_la-item.Tpo input/$(DEPDIR)/libvlccore_la-item.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@	source='input/item.c' object='input/libvlccore_la-item.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) $(AM_CPPFLAGS) $(CPPFLAGS) $(libvlccore_la_CFLAGS) $(CFLAGS) -c -o input/libvlccore_la-item.lo `test -f 'input/item.c' || echo '$(srcdir)/'`input/item.c

input/libvlccore_la-access.lo: input/access.c
@am__fastdepCC_TRUE@	$(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libvlccore_la_CFLAGS) $(CFLAGS) -MT input/libvlccore_la-access.lo -MD -MP -MF input/$(DEPDIR)/libvlccore_la-access.Tpo -c -o input/libvlccore_la-access.lo `test -f 'input/access.c' || echo '$(srcdir)/'`input/access.c
@am__fastdepCC_TRUE@	mv -f input/$(DEPDIR)/libvlccore_la-access.Tpo input/$(DEPDIR)/libvlccore_la-access.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@	source='input/access.c' object='input/libvlccore_la-access.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) $(AM_CPPFLAGS) $(CPPFLAGS) $(libvlccore_la_CFLAGS) $(CFLAGS) -c -o input/libvlccore_la-access.lo `test -f 'input/access.c' || echo '$(srcdir)/'`input/access.c

input/libvlccore_la-clock.lo: input/clock.c
@am__fastdepCC_TRUE@	$(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libvlccore_la_CFLAGS) $(CFLAGS) -MT input/libvlccore_la-clock.lo -MD -MP -MF input/$(DEPDIR)/libvlccore_la-clock.Tpo -c -o input/libvlccore_la-clock.lo `test -f 'input/clock.c' || echo '$(srcdir)/'`input/clock.c
@am__fastdepCC_TRUE@	mv -f input/$(DEPDIR)/libvlccore_la-clock.Tpo input/$(DEPDIR)/libvlccore_la-clock.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@	source='input/clock.c' object='input/libvlccore_la-clock.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) $(AM_CPPFLAGS) $(CPPFLAGS) $(libvlccore_la_CFLAGS) $(CFLAGS) -c -o input/libvlccore_la-clock.lo `test -f 'input/clock.c' || echo '$(srcdir)/'`input/clock.c

input/libvlccore_la-control.lo: input/control.c
@am__fastdepCC_TRUE@	$(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libvlccore_la_CFLAGS) $(CFLAGS) -MT input/libvlccore_la-control.lo -MD -MP -MF input/$(DEPDIR)/libvlccore_la-control.Tpo -c -o input/libvlccore_la-control.lo `test -f 'input/control.c' || echo '$(srcdir)/'`input/control.c
@am__fastdepCC_TRUE@	mv -f input/$(DEPDIR)/libvlccore_la-control.Tpo input/$(DEPDIR)/libvlccore_la-control.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@	source='input/control.c' object='input/libvlccore_la-control.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) $(AM_CPPFLAGS) $(CPPFLAGS) $(libvlccore_la_CFLAGS) $(CFLAGS) -c -o input/libvlccore_la-control.lo `test -f 'input/control.c' || echo '$(srcdir)/'`input/control.c

input/libvlccore_la-decoder.lo: input/decoder.c
@am__fastdepCC_TRUE@	$(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libvlccore_la_CFLAGS) $(CFLAGS) -MT input/libvlccore_la-decoder.lo -MD -MP -MF input/$(DEPDIR)/libvlccore_la-decoder.Tpo -c -o input/libvlccore_la-decoder.lo `test -f 'input/decoder.c' || echo '$(srcdir)/'`input/decoder.c
@am__fastdepCC_TRUE@	mv -f input/$(DEPDIR)/libvlccore_la-decoder.Tpo input/$(DEPDIR)/libvlccore_la-decoder.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@	source='input/decoder.c' object='input/libvlccore_la-decoder.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) $(AM_CPPFLAGS) $(CPPFLAGS) $(libvlccore_la_CFLAGS) $(CFLAGS) -c -o input/libvlccore_la-decoder.lo `test -f 'input/decoder.c' || echo '$(srcdir)/'`input/decoder.c

input/libvlccore_la-decoder_synchro.lo: input/decoder_synchro.c
@am__fastdepCC_TRUE@	$(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libvlccore_la_CFLAGS) $(CFLAGS) -MT input/libvlccore_la-decoder_synchro.lo -MD -MP -MF input/$(DEPDIR)/libvlccore_la-decoder_synchro.Tpo -c -o input/libvlccore_la-decoder_synchro.lo `test -f 'input/decoder_synchro.c' || echo '$(srcdir)/'`input/decoder_synchro.c
@am__fastdepCC_TRUE@	mv -f input/$(DEPDIR)/libvlccore_la-decoder_synchro.Tpo input/$(DEPDIR)/libvlccore_la-decoder_synchro.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@	source='input/decoder_synchro.c' object='input/libvlccore_la-decoder_synchro.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) $(AM_CPPFLAGS) $(CPPFLAGS) $(libvlccore_la_CFLAGS) $(CFLAGS) -c -o input/libvlccore_la-decoder_synchro.lo `test -f 'input/decoder_synchro.c' || echo '$(srcdir)/'`input/decoder_synchro.c

input/libvlccore_la-demux.lo: input/demux.c
@am__fastdepCC_TRUE@	$(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libvlccore_la_CFLAGS) $(CFLAGS) -MT input/libvlccore_la-demux.lo -MD -MP -MF input/$(DEPDIR)/libvlccore_la-demux.Tpo -c -o input/libvlccore_la-demux.lo `test -f 'input/demux.c' || echo '$(srcdir)/'`input/demux.c
@am__fastdepCC_TRUE@	mv -f input/$(DEPDIR)/libvlccore_la-demux.Tpo input/$(DEPDIR)/libvlccore_la-demux.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@	source='input/demux.c' object='input/libvlccore_la-demux.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) $(AM_CPPFLAGS) $(CPPFLAGS) $(libvlccore_la_CFLAGS) $(CFLAGS) -c -o input/libvlccore_la-demux.lo `test -f 'input/demux.c' || echo '$(srcdir)/'`input/demux.c

input/libvlccore_la-es_out.lo: input/es_out.c
@am__fastdepCC_TRUE@	$(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libvlccore_la_CFLAGS) $(CFLAGS) -MT input/libvlccore_la-es_out.lo -MD -MP -MF input/$(DEPDIR)/libvlccore_la-es_out.Tpo -c -o input/libvlccore_la-es_out.lo `test -f 'input/es_out.c' || echo '$(srcdir)/'`input/es_out.c
@am__fastdepCC_TRUE@	mv -f input/$(DEPDIR)/libvlccore_la-es_out.Tpo input/$(DEPDIR)/libvlccore_la-es_out.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@	source='input/es_out.c' object='input/libvlccore_la-es_out.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) $(AM_CPPFLAGS) $(CPPFLAGS) $(libvlccore_la_CFLAGS) $(CFLAGS) -c -o input/libvlccore_la-es_out.lo `test -f 'input/es_out.c' || echo '$(srcdir)/'`input/es_out.c

input/libvlccore_la-input.lo: input/input.c
@am__fastdepCC_TRUE@	$(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libvlccore_la_CFLAGS) $(CFLAGS) -MT input/libvlccore_la-input.lo -MD -MP -MF input/$(DEPDIR)/libvlccore_la-input.Tpo -c -o input/libvlccore_la-input.lo `test -f 'input/input.c' || echo '$(srcdir)/'`input/input.c
@am__fastdepCC_TRUE@	mv -f input/$(DEPDIR)/libvlccore_la-input.Tpo input/$(DEPDIR)/libvlccore_la-input.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@	source='input/input.c' object='input/libvlccore_la-input.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) $(AM_CPPFLAGS) $(CPPFLAGS) $(libvlccore_la_CFLAGS) $(CFLAGS) -c -o input/libvlccore_la-input.lo `test -f 'input/input.c' || echo '$(srcdir)/'`input/input.c

input/libvlccore_la-meta.lo: input/meta.c
@am__fastdepCC_TRUE@	$(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libvlccore_la_CFLAGS) $(CFLAGS) -MT input/libvlccore_la-meta.lo -MD -MP -MF input/$(DEPDIR)/libvlccore_la-meta.Tpo -c -o input/libvlccore_la-meta.lo `test -f 'input/meta.c' || echo '$(srcdir)/'`input/meta.c
@am__fastdepCC_TRUE@	mv -f input/$(DEPDIR)/libvlccore_la-meta.Tpo input/$(DEPDIR)/libvlccore_la-meta.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@	source='input/meta.c' object='input/libvlccore_la-meta.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) $(AM_CPPFLAGS) $(CPPFLAGS) $(libvlccore_la_CFLAGS) $(CFLAGS) -c -o input/libvlccore_la-meta.lo `test -f 'input/meta.c' || echo '$(srcdir)/'`input/meta.c

input/libvlccore_la-stream.lo: input/stream.c
@am__fastdepCC_TRUE@	$(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libvlccore_la_CFLAGS) $(CFLAGS) -MT input/libvlccore_la-stream.lo -MD -MP -MF input/$(DEPDIR)/libvlccore_la-stream.Tpo -c -o input/libvlccore_la-stream.lo `test -f 'input/stream.c' || echo '$(srcdir)/'`input/stream.c
@am__fastdepCC_TRUE@	mv -f input/$(DEPDIR)/libvlccore_la-stream.Tpo input/$(DEPDIR)/libvlccore_la-stream.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@	source='input/stream.c' object='input/libvlccore_la-stream.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) $(AM_CPPFLAGS) $(CPPFLAGS) $(libvlccore_la_CFLAGS) $(CFLAGS) -c -o input/libvlccore_la-stream.lo `test -f 'input/stream.c' || echo '$(srcdir)/'`input/stream.c

input/libvlccore_la-mem_stream.lo: input/mem_stream.c
@am__fastdepCC_TRUE@	$(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libvlccore_la_CFLAGS) $(CFLAGS) -MT input/libvlccore_la-mem_stream.lo -MD -MP -MF input/$(DEPDIR)/libvlccore_la-mem_stream.Tpo -c -o input/libvlccore_la-mem_stream.lo `test -f 'input/mem_stream.c' || echo '$(srcdir)/'`input/mem_stream.c
@am__fastdepCC_TRUE@	mv -f input/$(DEPDIR)/libvlccore_la-mem_stream.Tpo input/$(DEPDIR)/libvlccore_la-mem_stream.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@	source='input/mem_stream.c' object='input/libvlccore_la-mem_stream.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) $(AM_CPPFLAGS) $(CPPFLAGS) $(libvlccore_la_CFLAGS) $(CFLAGS) -c -o input/libvlccore_la-mem_stream.lo `test -f 'input/mem_stream.c' || echo '$(srcdir)/'`input/mem_stream.c

input/libvlccore_la-subtitles.lo: input/subtitles.c
@am__fastdepCC_TRUE@	$(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libvlccore_la_CFLAGS) $(CFLAGS) -MT input/libvlccore_la-subtitles.lo -MD -MP -MF input/$(DEPDIR)/libvlccore_la-subtitles.Tpo -c -o input/libvlccore_la-subtitles.lo `test -f 'input/subtitles.c' || echo '$(srcdir)/'`input/subtitles.c
@am__fastdepCC_TRUE@	mv -f input/$(DEPDIR)/libvlccore_la-subtitles.Tpo input/$(DEPDIR)/libvlccore_la-subtitles.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@	source='input/subtitles.c' object='input/libvlccore_la-subtitles.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) $(AM_CPPFLAGS) $(CPPFLAGS) $(libvlccore_la_CFLAGS) $(CFLAGS) -c -o input/libvlccore_la-subtitles.lo `test -f 'input/subtitles.c' || echo '$(srcdir)/'`input/subtitles.c

input/libvlccore_la-var.lo: input/var.c
@am__fastdepCC_TRUE@	$(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libvlccore_la_CFLAGS) $(CFLAGS) -MT input/libvlccore_la-var.lo -MD -MP -MF input/$(DEPDIR)/libvlccore_la-var.Tpo -c -o input/libvlccore_la-var.lo `test -f 'input/var.c' || echo '$(srcdir)/'`input/var.c
@am__fastdepCC_TRUE@	mv -f input/$(DEPDIR)/libvlccore_la-var.Tpo input/$(DEPDIR)/libvlccore_la-var.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@	source='input/var.c' object='input/libvlccore_la-var.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) $(AM_CPPFLAGS) $(CPPFLAGS) $(libvlccore_la_CFLAGS) $(CFLAGS) -c -o input/libvlccore_la-var.lo `test -f 'input/var.c' || echo '$(srcdir)/'`input/var.c

video_output/libvlccore_la-video_output.lo: video_output/video_output.c
@am__fastdepCC_TRUE@	$(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libvlccore_la_CFLAGS) $(CFLAGS) -MT video_output/libvlccore_la-video_output.lo -MD -MP -MF video_output/$(DEPDIR)/libvlccore_la-video_output.Tpo -c -o video_output/libvlccore_la-video_output.lo `test -f 'video_output/video_output.c' || echo '$(srcdir)/'`video_output/video_output.c
@am__fastdepCC_TRUE@	mv -f video_output/$(DEPDIR)/libvlccore_la-video_output.Tpo video_output/$(DEPDIR)/libvlccore_la-video_output.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@	source='video_output/video_output.c' object='video_output/libvlccore_la-video_output.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) $(AM_CPPFLAGS) $(CPPFLAGS) $(libvlccore_la_CFLAGS) $(CFLAGS) -c -o video_output/libvlccore_la-video_output.lo `test -f 'video_output/video_output.c' || echo '$(srcdir)/'`video_output/video_output.c

video_output/libvlccore_la-vout_pictures.lo: video_output/vout_pictures.c
@am__fastdepCC_TRUE@	$(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libvlccore_la_CFLAGS) $(CFLAGS) -MT video_output/libvlccore_la-vout_pictures.lo -MD -MP -MF video_output/$(DEPDIR)/libvlccore_la-vout_pictures.Tpo -c -o video_output/libvlccore_la-vout_pictures.lo `test -f 'video_output/vout_pictures.c' || echo '$(srcdir)/'`video_output/vout_pictures.c
@am__fastdepCC_TRUE@	mv -f video_output/$(DEPDIR)/libvlccore_la-vout_pictures.Tpo video_output/$(DEPDIR)/libvlccore_la-vout_pictures.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@	source='video_output/vout_pictures.c' object='video_output/libvlccore_la-vout_pictures.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) $(AM_CPPFLAGS) $(CPPFLAGS) $(libvlccore_la_CFLAGS) $(CFLAGS) -c -o video_output/libvlccore_la-vout_pictures.lo `test -f 'video_output/vout_pictures.c' || echo '$(srcdir)/'`video_output/vout_pictures.c

video_output/libvlccore_la-video_text.lo: video_output/video_text.c
@am__fastdepCC_TRUE@	$(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libvlccore_la_CFLAGS) $(CFLAGS) -MT video_output/libvlccore_la-video_text.lo -MD -MP -MF video_output/$(DEPDIR)/libvlccore_la-video_text.Tpo -c -o video_output/libvlccore_la-video_text.lo `test -f 'video_output/video_text.c' || echo '$(srcdir)/'`video_output/video_text.c
@am__fastdepCC_TRUE@	mv -f video_output/$(DEPDIR)/libvlccore_la-video_text.Tpo video_output/$(DEPDIR)/libvlccore_la-video_text.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@	source='video_output/video_text.c' object='video_output/libvlccore_la-video_text.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) $(AM_CPPFLAGS) $(CPPFLAGS) $(libvlccore_la_CFLAGS) $(CFLAGS) -c -o video_output/libvlccore_la-video_text.lo `test -f 'video_output/video_text.c' || echo '$(srcdir)/'`video_output/video_text.c

video_output/libvlccore_la-video_widgets.lo: video_output/video_widgets.c
@am__fastdepCC_TRUE@	$(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libvlccore_la_CFLAGS) $(CFLAGS) -MT video_output/libvlccore_la-video_widgets.lo -MD -MP -MF video_output/$(DEPDIR)/libvlccore_la-video_widgets.Tpo -c -o video_output/libvlccore_la-video_widgets.lo `test -f 'video_output/video_widgets.c' || echo '$(srcdir)/'`video_output/video_widgets.c
@am__fastdepCC_TRUE@	mv -f video_output/$(DEPDIR)/libvlccore_la-video_widgets.Tpo video_output/$(DEPDIR)/libvlccore_la-video_widgets.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@	source='video_output/video_widgets.c' object='video_output/libvlccore_la-video_widgets.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) $(AM_CPPFLAGS) $(CPPFLAGS) $(libvlccore_la_CFLAGS) $(CFLAGS) -c -o video_output/libvlccore_la-video_widgets.lo `test -f 'video_output/video_widgets.c' || echo '$(srcdir)/'`video_output/video_widgets.c

video_output/libvlccore_la-vout_subpictures.lo: video_output/vout_subpictures.c
@am__fastdepCC_TRUE@	$(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libvlccore_la_CFLAGS) $(CFLAGS) -MT video_output/libvlccore_la-vout_subpictures.lo -MD -MP -MF video_output/$(DEPDIR)/libvlccore_la-vout_subpictures.Tpo -c -o video_output/libvlccore_la-vout_subpictures.lo `test -f 'video_output/vout_subpictures.c' || echo '$(srcdir)/'`video_output/vout_subpictures.c
@am__fastdepCC_TRUE@	mv -f video_output/$(DEPDIR)/libvlccore_la-vout_subpictures.Tpo video_output/$(DEPDIR)/libvlccore_la-vout_subpictures.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@	source='video_output/vout_subpictures.c' object='video_output/libvlccore_la-vout_subpictures.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) $(AM_CPPFLAGS) $(CPPFLAGS) $(libvlccore_la_CFLAGS) $(CFLAGS) -c -o video_output/libvlccore_la-vout_subpictures.lo `test -f 'video_output/vout_subpictures.c' || echo '$(srcdir)/'`video_output/vout_subpictures.c

video_output/libvlccore_la-vout_intf.lo: video_output/vout_intf.c
@am__fastdepCC_TRUE@	$(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libvlccore_la_CFLAGS) $(CFLAGS) -MT video_output/libvlccore_la-vout_intf.lo -MD -MP -MF video_output/$(DEPDIR)/libvlccore_la-vout_intf.Tpo -c -o video_output/libvlccore_la-vout_intf.lo `test -f 'video_output/vout_intf.c' || echo '$(srcdir)/'`video_output/vout_intf.c
@am__fastdepCC_TRUE@	mv -f video_output/$(DEPDIR)/libvlccore_la-vout_intf.Tpo video_output/$(DEPDIR)/libvlccore_la-vout_intf.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@	source='video_output/vout_intf.c' object='video_output/libvlccore_la-vout_intf.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) $(AM_CPPFLAGS) $(CPPFLAGS) $(libvlccore_la_CFLAGS) $(CFLAGS) -c -o video_output/libvlccore_la-vout_intf.lo `test -f 'video_output/vout_intf.c' || echo '$(srcdir)/'`video_output/vout_intf.c

audio_output/libvlccore_la-common.lo: audio_output/common.c
@am__fastdepCC_TRUE@	$(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libvlccore_la_CFLAGS) $(CFLAGS) -MT audio_output/libvlccore_la-common.lo -MD -MP -MF audio_output/$(DEPDIR)/libvlccore_la-common.Tpo -c -o audio_output/libvlccore_la-common.lo `test -f 'audio_output/common.c' || echo '$(srcdir)/'`audio_output/common.c
@am__fastdepCC_TRUE@	mv -f audio_output/$(DEPDIR)/libvlccore_la-common.Tpo audio_output/$(DEPDIR)/libvlccore_la-common.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@	source='audio_output/common.c' object='audio_output/libvlccore_la-common.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) $(AM_CPPFLAGS) $(CPPFLAGS) $(libvlccore_la_CFLAGS) $(CFLAGS) -c -o audio_output/libvlccore_la-common.lo `test -f 'audio_output/common.c' || echo '$(srcdir)/'`audio_output/common.c

audio_output/libvlccore_la-dec.lo: audio_output/dec.c
@am__fastdepCC_TRUE@	$(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libvlccore_la_CFLAGS) $(CFLAGS) -MT audio_output/libvlccore_la-dec.lo -MD -MP -MF audio_output/$(DEPDIR)/libvlccore_la-dec.Tpo -c -o audio_output/libvlccore_la-dec.lo `test -f 'audio_output/dec.c' || echo '$(srcdir)/'`audio_output/dec.c
@am__fastdepCC_TRUE@	mv -f audio_output/$(DEPDIR)/libvlccore_la-dec.Tpo audio_output/$(DEPDIR)/libvlccore_la-dec.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@	source='audio_output/dec.c' object='audio_output/libvlccore_la-dec.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) $(AM_CPPFLAGS) $(CPPFLAGS) $(libvlccore_la_CFLAGS) $(CFLAGS) -c -o audio_output/libvlccore_la-dec.lo `test -f 'audio_output/dec.c' || echo '$(srcdir)/'`audio_output/dec.c

audio_output/libvlccore_la-filters.lo: audio_output/filters.c
@am__fastdepCC_TRUE@	$(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libvlccore_la_CFLAGS) $(CFLAGS) -MT audio_output/libvlccore_la-filters.lo -MD -MP -MF audio_output/$(DEPDIR)/libvlccore_la-filters.Tpo -c -o audio_output/libvlccore_la-filters.lo `test -f 'audio_output/filters.c' || echo '$(srcdir)/'`audio_output/filters.c
@am__fastdepCC_TRUE@	mv -f audio_output/$(DEPDIR)/libvlccore_la-filters.Tpo audio_output/$(DEPDIR)/libvlccore_la-filters.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@	source='audio_output/filters.c' object='audio_output/libvlccore_la-filters.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) $(AM_CPPFLAGS) $(CPPFLAGS) $(libvlccore_la_CFLAGS) $(CFLAGS) -c -o audio_output/libvlccore_la-filters.lo `test -f 'audio_output/filters.c' || echo '$(srcdir)/'`audio_output/filters.c

audio_output/libvlccore_la-input.lo: audio_output/input.c
@am__fastdepCC_TRUE@	$(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libvlccore_la_CFLAGS) $(CFLAGS) -MT audio_output/libvlccore_la-input.lo -MD -MP -MF audio_output/$(DEPDIR)/libvlccore_la-input.Tpo -c -o audio_output/libvlccore_la-input.lo `test -f 'audio_output/input.c' || echo '$(srcdir)/'`audio_output/input.c
@am__fastdepCC_TRUE@	mv -f audio_output/$(DEPDIR)/libvlccore_la-input.Tpo audio_output/$(DEPDIR)/libvlccore_la-input.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@	source='audio_output/input.c' object='audio_output/libvlccore_la-input.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) $(AM_CPPFLAGS) $(CPPFLAGS) $(libvlccore_la_CFLAGS) $(CFLAGS) -c -o audio_output/libvlccore_la-input.lo `test -f 'audio_output/input.c' || echo '$(srcdir)/'`audio_output/input.c

audio_output/libvlccore_la-mixer.lo: audio_output/mixer.c
@am__fastdepCC_TRUE@	$(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libvlccore_la_CFLAGS) $(CFLAGS) -MT audio_output/libvlccore_la-mixer.lo -MD -MP -MF audio_output/$(DEPDIR)/libvlccore_la-mixer.Tpo -c -o audio_output/libvlccore_la-mixer.lo `test -f 'audio_output/mixer.c' || echo '$(srcdir)/'`audio_output/mixer.c
@am__fastdepCC_TRUE@	mv -f audio_output/$(DEPDIR)/libvlccore_la-mixer.Tpo audio_output/$(DEPDIR)/libvlccore_la-mixer.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@	source='audio_output/mixer.c' object='audio_output/libvlccore_la-mixer.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) $(AM_CPPFLAGS) $(CPPFLAGS) $(libvlccore_la_CFLAGS) $(CFLAGS) -c -o audio_output/libvlccore_la-mixer.lo `test -f 'audio_output/mixer.c' || echo '$(srcdir)/'`audio_output/mixer.c

audio_output/libvlccore_la-output.lo: audio_output/output.c
@am__fastdepCC_TRUE@	$(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libvlccore_la_CFLAGS) $(CFLAGS) -MT audio_output/libvlccore_la-output.lo -MD -MP -MF audio_output/$(DEPDIR)/libvlccore_la-output.Tpo -c -o audio_output/libvlccore_la-output.lo `test -f 'audio_output/output.c' || echo '$(srcdir)/'`audio_output/output.c
@am__fastdepCC_TRUE@	mv -f audio_output/$(DEPDIR)/libvlccore_la-output.Tpo audio_output/$(DEPDIR)/libvlccore_la-output.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@	source='audio_output/output.c' object='audio_output/libvlccore_la-output.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) $(AM_CPPFLAGS) $(CPPFLAGS) $(libvlccore_la_CFLAGS) $(CFLAGS) -c -o audio_output/libvlccore_la-output.lo `test -f 'audio_output/output.c' || echo '$(srcdir)/'`audio_output/output.c

audio_output/libvlccore_la-intf.lo: audio_output/intf.c
@am__fastdepCC_TRUE@	$(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libvlccore_la_CFLAGS) $(CFLAGS) -MT audio_output/libvlccore_la-intf.lo -MD -MP -MF audio_output/$(DEPDIR)/libvlccore_la-intf.Tpo -c -o audio_output/libvlccore_la-intf.lo `test -f 'audio_output/intf.c' || echo '$(srcdir)/'`audio_output/intf.c
@am__fastdepCC_TRUE@	mv -f audio_output/$(DEPDIR)/libvlccore_la-intf.Tpo audio_output/$(DEPDIR)/libvlccore_la-intf.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@	source='audio_output/intf.c' object='audio_output/libvlccore_la-intf.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) $(AM_CPPFLAGS) $(CPPFLAGS) $(libvlccore_la_CFLAGS) $(CFLAGS) -c -o audio_output/libvlccore_la-intf.lo `test -f 'audio_output/intf.c' || echo '$(srcdir)/'`audio_output/intf.c

osd/libvlccore_la-osd.lo: osd/osd.c
@am__fastdepCC_TRUE@	$(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libvlccore_la_CFLAGS) $(CFLAGS) -MT osd/libvlccore_la-osd.lo -MD -MP -MF osd/$(DEPDIR)/libvlccore_la-osd.Tpo -c -o osd/libvlccore_la-osd.lo `test -f 'osd/osd.c' || echo '$(srcdir)/'`osd/osd.c
@am__fastdepCC_TRUE@	mv -f osd/$(DEPDIR)/libvlccore_la-osd.Tpo osd/$(DEPDIR)/libvlccore_la-osd.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@	source='osd/osd.c' object='osd/libvlccore_la-osd.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) $(AM_CPPFLAGS) $(CPPFLAGS) $(libvlccore_la_CFLAGS) $(CFLAGS) -c -o osd/libvlccore_la-osd.lo `test -f 'osd/osd.c' || echo '$(srcdir)/'`osd/osd.c

osd/libvlccore_la-osd_text.lo: osd/osd_text.c
@am__fastdepCC_TRUE@	$(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libvlccore_la_CFLAGS) $(CFLAGS) -MT osd/libvlccore_la-osd_text.lo -MD -MP -MF osd/$(DEPDIR)/libvlccore_la-osd_text.Tpo -c -o osd/libvlccore_la-osd_text.lo `test -f 'osd/osd_text.c' || echo '$(srcdir)/'`osd/osd_text.c
@am__fastdepCC_TRUE@	mv -f osd/$(DEPDIR)/libvlccore_la-osd_text.Tpo osd/$(DEPDIR)/libvlccore_la-osd_text.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@	source='osd/osd_text.c' object='osd/libvlccore_la-osd_text.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) $(AM_CPPFLAGS) $(CPPFLAGS) $(libvlccore_la_CFLAGS) $(CFLAGS) -c -o osd/libvlccore_la-osd_text.lo `test -f 'osd/osd_text.c' || echo '$(srcdir)/'`osd/osd_text.c

osd/libvlccore_la-osd_widgets.lo: osd/osd_widgets.c
@am__fastdepCC_TRUE@	$(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libvlccore_la_CFLAGS) $(CFLAGS) -MT osd/libvlccore_la-osd_widgets.lo -MD -MP -MF osd/$(DEPDIR)/libvlccore_la-osd_widgets.Tpo -c -o osd/libvlccore_la-osd_widgets.lo `test -f 'osd/osd_widgets.c' || echo '$(srcdir)/'`osd/osd_widgets.c
@am__fastdepCC_TRUE@	mv -f osd/$(DEPDIR)/libvlccore_la-osd_widgets.Tpo osd/$(DEPDIR)/libvlccore_la-osd_widgets.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@	source='osd/osd_widgets.c' object='osd/libvlccore_la-osd_widgets.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) $(AM_CPPFLAGS) $(CPPFLAGS) $(libvlccore_la_CFLAGS) $(CFLAGS) -c -o osd/libvlccore_la-osd_widgets.lo `test -f 'osd/osd_widgets.c' || echo '$(srcdir)/'`osd/osd_widgets.c

network/libvlccore_la-acl.lo: network/acl.c
@am__fastdepCC_TRUE@	$(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libvlccore_la_CFLAGS) $(CFLAGS) -MT network/libvlccore_la-acl.lo -MD -MP -MF network/$(DEPDIR)/libvlccore_la-acl.Tpo -c -o network/libvlccore_la-acl.lo `test -f 'network/acl.c' || echo '$(srcdir)/'`network/acl.c
@am__fastdepCC_TRUE@	mv -f network/$(DEPDIR)/libvlccore_la-acl.Tpo network/$(DEPDIR)/libvlccore_la-acl.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@	source='network/acl.c' object='network/libvlccore_la-acl.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) $(AM_CPPFLAGS) $(CPPFLAGS) $(libvlccore_la_CFLAGS) $(CFLAGS) -c -o network/libvlccore_la-acl.lo `test -f 'network/acl.c' || echo '$(srcdir)/'`network/acl.c

network/libvlccore_la-getaddrinfo.lo: network/getaddrinfo.c
@am__fastdepCC_TRUE@	$(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libvlccore_la_CFLAGS) $(CFLAGS) -MT network/libvlccore_la-getaddrinfo.lo -MD -MP -MF network/$(DEPDIR)/libvlccore_la-getaddrinfo.Tpo -c -o network/libvlccore_la-getaddrinfo.lo `test -f 'network/getaddrinfo.c' || echo '$(srcdir)/'`network/getaddrinfo.c
@am__fastdepCC_TRUE@	mv -f network/$(DEPDIR)/libvlccore_la-getaddrinfo.Tpo network/$(DEPDIR)/libvlccore_la-getaddrinfo.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@	source='network/getaddrinfo.c' object='network/libvlccore_la-getaddrinfo.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) $(AM_CPPFLAGS) $(CPPFLAGS) $(libvlccore_la_CFLAGS) $(CFLAGS) -c -o network/libvlccore_la-getaddrinfo.lo `test -f 'network/getaddrinfo.c' || echo '$(srcdir)/'`network/getaddrinfo.c

network/libvlccore_la-io.lo: network/io.c
@am__fastdepCC_TRUE@	$(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libvlccore_la_CFLAGS) $(CFLAGS) -MT network/libvlccore_la-io.lo -MD -MP -MF network/$(DEPDIR)/libvlccore_la-io.Tpo -c -o network/libvlccore_la-io.lo `test -f 'network/io.c' || echo '$(srcdir)/'`network/io.c
@am__fastdepCC_TRUE@	mv -f network/$(DEPDIR)/libvlccore_la-io.Tpo network/$(DEPDIR)/libvlccore_la-io.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@	source='network/io.c' object='network/libvlccore_la-io.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) $(AM_CPPFLAGS) $(CPPFLAGS) $(libvlccore_la_CFLAGS) $(CFLAGS) -c -o network/libvlccore_la-io.lo `test -f 'network/io.c' || echo '$(srcdir)/'`network/io.c

network/libvlccore_la-tcp.lo: network/tcp.c
@am__fastdepCC_TRUE@	$(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libvlccore_la_CFLAGS) $(CFLAGS) -MT network/libvlccore_la-tcp.lo -MD -MP -MF network/$(DEPDIR)/libvlccore_la-tcp.Tpo -c -o network/libvlccore_la-tcp.lo `test -f 'network/tcp.c' || echo '$(srcdir)/'`network/tcp.c
@am__fastdepCC_TRUE@	mv -f network/$(DEPDIR)/libvlccore_la-tcp.Tpo network/$(DEPDIR)/libvlccore_la-tcp.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@	source='network/tcp.c' object='network/libvlccore_la-tcp.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) $(AM_CPPFLAGS) $(CPPFLAGS) $(libvlccore_la_CFLAGS) $(CFLAGS) -c -o network/libvlccore_la-tcp.lo `test -f 'network/tcp.c' || echo '$(srcdir)/'`network/tcp.c

network/libvlccore_la-udp.lo: network/udp.c
@am__fastdepCC_TRUE@	$(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libvlccore_la_CFLAGS) $(CFLAGS) -MT network/libvlccore_la-udp.lo -MD -MP -MF network/$(DEPDIR)/libvlccore_la-udp.Tpo -c -o network/libvlccore_la-udp.lo `test -f 'network/udp.c' || echo '$(srcdir)/'`network/udp.c
@am__fastdepCC_TRUE@	mv -f network/$(DEPDIR)/libvlccore_la-udp.Tpo network/$(DEPDIR)/libvlccore_la-udp.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@	source='network/udp.c' object='network/libvlccore_la-udp.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) $(AM_CPPFLAGS) $(CPPFLAGS) $(libvlccore_la_CFLAGS) $(CFLAGS) -c -o network/libvlccore_la-udp.lo `test -f 'network/udp.c' || echo '$(srcdir)/'`network/udp.c

network/libvlccore_la-httpd.lo: network/httpd.c
@am__fastdepCC_TRUE@	$(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libvlccore_la_CFLAGS) $(CFLAGS) -MT network/libvlccore_la-httpd.lo -MD -MP -MF network/$(DEPDIR)/libvlccore_la-httpd.Tpo -c -o network/libvlccore_la-httpd.lo `test -f 'network/httpd.c' || echo '$(srcdir)/'`network/httpd.c
@am__fastdepCC_TRUE@	mv -f network/$(DEPDIR)/libvlccore_la-httpd.Tpo network/$(DEPDIR)/libvlccore_la-httpd.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@	source='network/httpd.c' object='network/libvlccore_la-httpd.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) $(AM_CPPFLAGS) $(CPPFLAGS) $(libvlccore_la_CFLAGS) $(CFLAGS) -c -o network/libvlccore_la-httpd.lo `test -f 'network/httpd.c' || echo '$(srcdir)/'`network/httpd.c

network/libvlccore_la-rootbind.lo: network/rootbind.c
@am__fastdepCC_TRUE@	$(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libvlccore_la_CFLAGS) $(CFLAGS) -MT network/libvlccore_la-rootbind.lo -MD -MP -MF network/$(DEPDIR)/libvlccore_la-rootbind.Tpo -c -o network/libvlccore_la-rootbind.lo `test -f 'network/rootbind.c' || echo '$(srcdir)/'`network/rootbind.c
@am__fastdepCC_TRUE@	mv -f network/$(DEPDIR)/libvlccore_la-rootbind.Tpo network/$(DEPDIR)/libvlccore_la-rootbind.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@	source='network/rootbind.c' object='network/libvlccore_la-rootbind.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) $(AM_CPPFLAGS) $(CPPFLAGS) $(libvlccore_la_CFLAGS) $(CFLAGS) -c -o network/libvlccore_la-rootbind.lo `test -f 'network/rootbind.c' || echo '$(srcdir)/'`network/rootbind.c

network/libvlccore_la-tls.lo: network/tls.c
@am__fastdepCC_TRUE@	$(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libvlccore_la_CFLAGS) $(CFLAGS) -MT network/libvlccore_la-tls.lo -MD -MP -MF network/$(DEPDIR)/libvlccore_la-tls.Tpo -c -o network/libvlccore_la-tls.lo `test -f 'network/tls.c' || echo '$(srcdir)/'`network/tls.c
@am__fastdepCC_TRUE@	mv -f network/$(DEPDIR)/libvlccore_la-tls.Tpo network/$(DEPDIR)/libvlccore_la-tls.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@	source='network/tls.c' object='network/libvlccore_la-tls.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) $(AM_CPPFLAGS) $(CPPFLAGS) $(libvlccore_la_CFLAGS) $(CFLAGS) -c -o network/libvlccore_la-tls.lo `test -f 'network/tls.c' || echo '$(srcdir)/'`network/tls.c

network/libvlccore_la-poll.lo: network/poll.c
@am__fastdepCC_TRUE@	$(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libvlccore_la_CFLAGS) $(CFLAGS) -MT network/libvlccore_la-poll.lo -MD -MP -MF network/$(DEPDIR)/libvlccore_la-poll.Tpo -c -o network/libvlccore_la-poll.lo `test -f 'network/poll.c' || echo '$(srcdir)/'`network/poll.c
@am__fastdepCC_TRUE@	mv -f network/$(DEPDIR)/libvlccore_la-poll.Tpo network/$(DEPDIR)/libvlccore_la-poll.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@	source='network/poll.c' object='network/libvlccore_la-poll.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) $(AM_CPPFLAGS) $(CPPFLAGS) $(libvlccore_la_CFLAGS) $(CFLAGS) -c -o network/libvlccore_la-poll.lo `test -f 'network/poll.c' || echo '$(srcdir)/'`network/poll.c

text/libvlccore_la-charset.lo: text/charset.c
@am__fastdepCC_TRUE@	$(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libvlccore_la_CFLAGS) $(CFLAGS) -MT text/libvlccore_la-charset.lo -MD -MP -MF text/$(DEPDIR)/libvlccore_la-charset.Tpo -c -o text/libvlccore_la-charset.lo `test -f 'text/charset.c' || echo '$(srcdir)/'`text/charset.c
@am__fastdepCC_TRUE@	mv -f text/$(DEPDIR)/libvlccore_la-charset.Tpo text/$(DEPDIR)/libvlccore_la-charset.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@	source='text/charset.c' object='text/libvlccore_la-charset.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) $(AM_CPPFLAGS) $(CPPFLAGS) $(libvlccore_la_CFLAGS) $(CFLAGS) -c -o text/libvlccore_la-charset.lo `test -f 'text/charset.c' || echo '$(srcdir)/'`text/charset.c

text/libvlccore_la-strings.lo: text/strings.c
@am__fastdepCC_TRUE@	$(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libvlccore_la_CFLAGS) $(CFLAGS) -MT text/libvlccore_la-strings.lo -MD -MP -MF text/$(DEPDIR)/libvlccore_la-strings.Tpo -c -o text/libvlccore_la-strings.lo `test -f 'text/strings.c' || echo '$(srcdir)/'`text/strings.c
@am__fastdepCC_TRUE@	mv -f text/$(DEPDIR)/libvlccore_la-strings.Tpo text/$(DEPDIR)/libvlccore_la-strings.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@	source='text/strings.c' object='text/libvlccore_la-strings.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) $(AM_CPPFLAGS) $(CPPFLAGS) $(libvlccore_la_CFLAGS) $(CFLAGS) -c -o text/libvlccore_la-strings.lo `test -f 'text/strings.c' || echo '$(srcdir)/'`text/strings.c

text/libvlccore_la-unicode.lo: text/unicode.c
@am__fastdepCC_TRUE@	$(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libvlccore_la_CFLAGS) $(CFLAGS) -MT text/libvlccore_la-unicode.lo -MD -MP -MF text/$(DEPDIR)/libvlccore_la-unicode.Tpo -c -o text/libvlccore_la-unicode.lo `test -f 'text/unicode.c' || echo '$(srcdir)/'`text/unicode.c
@am__fastdepCC_TRUE@	mv -f text/$(DEPDIR)/libvlccore_la-unicode.Tpo text/$(DEPDIR)/libvlccore_la-unicode.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@	source='text/unicode.c' object='text/libvlccore_la-unicode.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) $(AM_CPPFLAGS) $(CPPFLAGS) $(libvlccore_la_CFLAGS) $(CFLAGS) -c -o text/libvlccore_la-unicode.lo `test -f 'text/unicode.c' || echo '$(srcdir)/'`text/unicode.c

text/libvlccore_la-wincp.lo: text/wincp.c
@am__fastdepCC_TRUE@	$(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libvlccore_la_CFLAGS) $(CFLAGS) -MT text/libvlccore_la-wincp.lo -MD -MP -MF text/$(DEPDIR)/libvlccore_la-wincp.Tpo -c -o text/libvlccore_la-wincp.lo `test -f 'text/wincp.c' || echo '$(srcdir)/'`text/wincp.c
@am__fastdepCC_TRUE@	mv -f text/$(DEPDIR)/libvlccore_la-wincp.Tpo text/$(DEPDIR)/libvlccore_la-wincp.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@	source='text/wincp.c' object='text/libvlccore_la-wincp.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) $(AM_CPPFLAGS) $(CPPFLAGS) $(libvlccore_la_CFLAGS) $(CFLAGS) -c -o text/libvlccore_la-wincp.lo `test -f 'text/wincp.c' || echo '$(srcdir)/'`text/wincp.c

text/libvlccore_la-iso_lang.lo: text/iso_lang.c
@am__fastdepCC_TRUE@	$(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libvlccore_la_CFLAGS) $(CFLAGS) -MT text/libvlccore_la-iso_lang.lo -MD -MP -MF text/$(DEPDIR)/libvlccore_la-iso_lang.Tpo -c -o text/libvlccore_la-iso_lang.lo `test -f 'text/iso_lang.c' || echo '$(srcdir)/'`text/iso_lang.c
@am__fastdepCC_TRUE@	mv -f text/$(DEPDIR)/libvlccore_la-iso_lang.Tpo text/$(DEPDIR)/libvlccore_la-iso_lang.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@	source='text/iso_lang.c' object='text/libvlccore_la-iso_lang.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) $(AM_CPPFLAGS) $(CPPFLAGS) $(libvlccore_la_CFLAGS) $(CFLAGS) -c -o text/libvlccore_la-iso_lang.lo `test -f 'text/iso_lang.c' || echo '$(srcdir)/'`text/iso_lang.c

misc/libvlccore_la-md5.lo: misc/md5.c
@am__fastdepCC_TRUE@	$(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libvlccore_la_CFLAGS) $(CFLAGS) -MT misc/libvlccore_la-md5.lo -MD -MP -MF misc/$(DEPDIR)/libvlccore_la-md5.Tpo -c -o misc/libvlccore_la-md5.lo `test -f 'misc/md5.c' || echo '$(srcdir)/'`misc/md5.c
@am__fastdepCC_TRUE@	mv -f misc/$(DEPDIR)/libvlccore_la-md5.Tpo misc/$(DEPDIR)/libvlccore_la-md5.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@	source='misc/md5.c' object='misc/libvlccore_la-md5.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) $(AM_CPPFLAGS) $(CPPFLAGS) $(libvlccore_la_CFLAGS) $(CFLAGS) -c -o misc/libvlccore_la-md5.lo `test -f 'misc/md5.c' || echo '$(srcdir)/'`misc/md5.c

misc/libvlccore_la-rand.lo: misc/rand.c
@am__fastdepCC_TRUE@	$(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libvlccore_la_CFLAGS) $(CFLAGS) -MT misc/libvlccore_la-rand.lo -MD -MP -MF misc/$(DEPDIR)/libvlccore_la-rand.Tpo -c -o misc/libvlccore_la-rand.lo `test -f 'misc/rand.c' || echo '$(srcdir)/'`misc/rand.c
@am__fastdepCC_TRUE@	mv -f misc/$(DEPDIR)/libvlccore_la-rand.Tpo misc/$(DEPDIR)/libvlccore_la-rand.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@	source='misc/rand.c' object='misc/libvlccore_la-rand.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) $(AM_CPPFLAGS) $(CPPFLAGS) $(libvlccore_la_CFLAGS) $(CFLAGS) -c -o misc/libvlccore_la-rand.lo `test -f 'misc/rand.c' || echo '$(srcdir)/'`misc/rand.c

misc/libvlccore_la-mtime.lo: misc/mtime.c
@am__fastdepCC_TRUE@	$(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libvlccore_la_CFLAGS) $(CFLAGS) -MT misc/libvlccore_la-mtime.lo -MD -MP -MF misc/$(DEPDIR)/libvlccore_la-mtime.Tpo -c -o misc/libvlccore_la-mtime.lo `test -f 'misc/mtime.c' || echo '$(srcdir)/'`misc/mtime.c
@am__fastdepCC_TRUE@	mv -f misc/$(DEPDIR)/libvlccore_la-mtime.Tpo misc/$(DEPDIR)/libvlccore_la-mtime.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@	source='misc/mtime.c' object='misc/libvlccore_la-mtime.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) $(AM_CPPFLAGS) $(CPPFLAGS) $(libvlccore_la_CFLAGS) $(CFLAGS) -c -o misc/libvlccore_la-mtime.lo `test -f 'misc/mtime.c' || echo '$(srcdir)/'`misc/mtime.c

misc/libvlccore_la-block.lo: misc/block.c
@am__fastdepCC_TRUE@	$(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libvlccore_la_CFLAGS) $(CFLAGS) -MT misc/libvlccore_la-block.lo -MD -MP -MF misc/$(DEPDIR)/libvlccore_la-block.Tpo -c -o misc/libvlccore_la-block.lo `test -f 'misc/block.c' || echo '$(srcdir)/'`misc/block.c
@am__fastdepCC_TRUE@	mv -f misc/$(DEPDIR)/libvlccore_la-block.Tpo misc/$(DEPDIR)/libvlccore_la-block.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@	source='misc/block.c' object='misc/libvlccore_la-block.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) $(AM_CPPFLAGS) $(CPPFLAGS) $(libvlccore_la_CFLAGS) $(CFLAGS) -c -o misc/libvlccore_la-block.lo `test -f 'misc/block.c' || echo '$(srcdir)/'`misc/block.c

misc/libvlccore_la-es_format.lo: misc/es_format.c
@am__fastdepCC_TRUE@	$(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libvlccore_la_CFLAGS) $(CFLAGS) -MT misc/libvlccore_la-es_format.lo -MD -MP -MF misc/$(DEPDIR)/libvlccore_la-es_format.Tpo -c -o misc/libvlccore_la-es_format.lo `test -f 'misc/es_format.c' || echo '$(srcdir)/'`misc/es_format.c
@am__fastdepCC_TRUE@	mv -f misc/$(DEPDIR)/libvlccore_la-es_format.Tpo misc/$(DEPDIR)/libvlccore_la-es_format.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@	source='misc/es_format.c' object='misc/libvlccore_la-es_format.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) $(AM_CPPFLAGS) $(CPPFLAGS) $(libvlccore_la_CFLAGS) $(CFLAGS) -c -o misc/libvlccore_la-es_format.lo `test -f 'misc/es_format.c' || echo '$(srcdir)/'`misc/es_format.c

modules/libvlccore_la-modules.lo: modules/modules.c
@am__fastdepCC_TRUE@	$(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libvlccore_la_CFLAGS) $(CFLAGS) -MT modules/libvlccore_la-modules.lo -MD -MP -MF modules/$(DEPDIR)/libvlccore_la-modules.Tpo -c -o modules/libvlccore_la-modules.lo `test -f 'modules/modules.c' || echo '$(srcdir)/'`modules/modules.c
@am__fastdepCC_TRUE@	mv -f modules/$(DEPDIR)/libvlccore_la-modules.Tpo modules/$(DEPDIR)/libvlccore_la-modules.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@	source='modules/modules.c' object='modules/libvlccore_la-modules.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) $(AM_CPPFLAGS) $(CPPFLAGS) $(libvlccore_la_CFLAGS) $(CFLAGS) -c -o modules/libvlccore_la-modules.lo `test -f 'modules/modules.c' || echo '$(srcdir)/'`modules/modules.c

modules/libvlccore_la-cache.lo: modules/cache.c
@am__fastdepCC_TRUE@	$(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libvlccore_la_CFLAGS) $(CFLAGS) -MT modules/libvlccore_la-cache.lo -MD -MP -MF modules/$(DEPDIR)/libvlccore_la-cache.Tpo -c -o modules/libvlccore_la-cache.lo `test -f 'modules/cache.c' || echo '$(srcdir)/'`modules/cache.c
@am__fastdepCC_TRUE@	mv -f modules/$(DEPDIR)/libvlccore_la-cache.Tpo modules/$(DEPDIR)/libvlccore_la-cache.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@	source='modules/cache.c' object='modules/libvlccore_la-cache.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) $(AM_CPPFLAGS) $(CPPFLAGS) $(libvlccore_la_CFLAGS) $(CFLAGS) -c -o modules/libvlccore_la-cache.lo `test -f 'modules/cache.c' || echo '$(srcdir)/'`modules/cache.c

modules/libvlccore_la-entry.lo: modules/entry.c
@am__fastdepCC_TRUE@	$(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libvlccore_la_CFLAGS) $(CFLAGS) -MT modules/libvlccore_la-entry.lo -MD -MP -MF modules/$(DEPDIR)/libvlccore_la-entry.Tpo -c -o modules/libvlccore_la-entry.lo `test -f 'modules/entry.c' || echo '$(srcdir)/'`modules/entry.c
@am__fastdepCC_TRUE@	mv -f modules/$(DEPDIR)/libvlccore_la-entry.Tpo modules/$(DEPDIR)/libvlccore_la-entry.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@	source='modules/entry.c' object='modules/libvlccore_la-entry.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) $(AM_CPPFLAGS) $(CPPFLAGS) $(libvlccore_la_CFLAGS) $(CFLAGS) -c -o modules/libvlccore_la-entry.lo `test -f 'modules/entry.c' || echo '$(srcdir)/'`modules/entry.c

modules/libvlccore_la-os.lo: modules/os.c
@am__fastdepCC_TRUE@	$(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libvlccore_la_CFLAGS) $(CFLAGS) -MT modules/libvlccore_la-os.lo -MD -MP -MF modules/$(DEPDIR)/libvlccore_la-os.Tpo -c -o modules/libvlccore_la-os.lo `test -f 'modules/os.c' || echo '$(srcdir)/'`modules/os.c
@am__fastdepCC_TRUE@	mv -f modules/$(DEPDIR)/libvlccore_la-os.Tpo modules/$(DEPDIR)/libvlccore_la-os.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@	source='modules/os.c' object='modules/libvlccore_la-os.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) $(AM_CPPFLAGS) $(CPPFLAGS) $(libvlccore_la_CFLAGS) $(CFLAGS) -c -o modules/libvlccore_la-os.lo `test -f 'modules/os.c' || echo '$(srcdir)/'`modules/os.c

misc/libvlccore_la-threads.lo: misc/threads.c
@am__fastdepCC_TRUE@	$(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libvlccore_la_CFLAGS) $(CFLAGS) -MT misc/libvlccore_la-threads.lo -MD -MP -MF misc/$(DEPDIR)/libvlccore_la-threads.Tpo -c -o misc/libvlccore_la-threads.lo `test -f 'misc/threads.c' || echo '$(srcdir)/'`misc/threads.c
@am__fastdepCC_TRUE@	mv -f misc/$(DEPDIR)/libvlccore_la-threads.Tpo misc/$(DEPDIR)/libvlccore_la-threads.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@	source='misc/threads.c' object='misc/libvlccore_la-threads.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) $(AM_CPPFLAGS) $(CPPFLAGS) $(libvlccore_la_CFLAGS) $(CFLAGS) -c -o misc/libvlccore_la-threads.lo `test -f 'misc/threads.c' || echo '$(srcdir)/'`misc/threads.c

misc/libvlccore_la-stats.lo: misc/stats.c
@am__fastdepCC_TRUE@	$(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libvlccore_la_CFLAGS) $(CFLAGS) -MT misc/libvlccore_la-stats.lo -MD -MP -MF misc/$(DEPDIR)/libvlccore_la-stats.Tpo -c -o misc/libvlccore_la-stats.lo `test -f 'misc/stats.c' || echo '$(srcdir)/'`misc/stats.c
@am__fastdepCC_TRUE@	mv -f misc/$(DEPDIR)/libvlccore_la-stats.Tpo misc/$(DEPDIR)/libvlccore_la-stats.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@	source='misc/stats.c' object='misc/libvlccore_la-stats.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) $(AM_CPPFLAGS) $(CPPFLAGS) $(libvlccore_la_CFLAGS) $(CFLAGS) -c -o misc/libvlccore_la-stats.lo `test -f 'misc/stats.c' || echo '$(srcdir)/'`misc/stats.c

misc/libvlccore_la-cpu.lo: misc/cpu.c
@am__fastdepCC_TRUE@	$(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libvlccore_la_CFLAGS) $(CFLAGS) -MT misc/libvlccore_la-cpu.lo -MD -MP -MF misc/$(DEPDIR)/libvlccore_la-cpu.Tpo -c -o misc/libvlccore_la-cpu.lo `test -f 'misc/cpu.c' || echo '$(srcdir)/'`misc/cpu.c
@am__fastdepCC_TRUE@	mv -f misc/$(DEPDIR)/libvlccore_la-cpu.Tpo misc/$(DEPDIR)/libvlccore_la-cpu.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@	source='misc/cpu.c' object='misc/libvlccore_la-cpu.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) $(AM_CPPFLAGS) $(CPPFLAGS) $(libvlccore_la_CFLAGS) $(CFLAGS) -c -o misc/libvlccore_la-cpu.lo `test -f 'misc/cpu.c' || echo '$(srcdir)/'`misc/cpu.c

misc/libvlccore_la-action.lo: misc/action.c
@am__fastdepCC_TRUE@	$(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libvlccore_la_CFLAGS) $(CFLAGS) -MT misc/libvlccore_la-action.lo -MD -MP -MF misc/$(DEPDIR)/libvlccore_la-action.Tpo -c -o misc/libvlccore_la-action.lo `test -f 'misc/action.c' || echo '$(srcdir)/'`misc/action.c
@am__fastdepCC_TRUE@	mv -f misc/$(DEPDIR)/libvlccore_la-action.Tpo misc/$(DEPDIR)/libvlccore_la-action.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@	source='misc/action.c' object='misc/libvlccore_la-action.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) $(AM_CPPFLAGS) $(CPPFLAGS) $(libvlccore_la_CFLAGS) $(CFLAGS) -c -o misc/libvlccore_la-action.lo `test -f 'misc/action.c' || echo '$(srcdir)/'`misc/action.c

config/libvlccore_la-core.lo: config/core.c
@am__fastdepCC_TRUE@	$(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libvlccore_la_CFLAGS) $(CFLAGS) -MT config/libvlccore_la-core.lo -MD -MP -MF config/$(DEPDIR)/libvlccore_la-core.Tpo -c -o config/libvlccore_la-core.lo `test -f 'config/core.c' || echo '$(srcdir)/'`config/core.c
@am__fastdepCC_TRUE@	mv -f config/$(DEPDIR)/libvlccore_la-core.Tpo config/$(DEPDIR)/libvlccore_la-core.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@	source='config/core.c' object='config/libvlccore_la-core.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) $(AM_CPPFLAGS) $(CPPFLAGS) $(libvlccore_la_CFLAGS) $(CFLAGS) -c -o config/libvlccore_la-core.lo `test -f 'config/core.c' || echo '$(srcdir)/'`config/core.c

config/libvlccore_la-dirs.lo: config/dirs.c
@am__fastdepCC_TRUE@	$(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libvlccore_la_CFLAGS) $(CFLAGS) -MT config/libvlccore_la-dirs.lo -MD -MP -MF config/$(DEPDIR)/libvlccore_la-dirs.Tpo -c -o config/libvlccore_la-dirs.lo `test -f 'config/dirs.c' || echo '$(srcdir)/'`config/dirs.c
@am__fastdepCC_TRUE@	mv -f config/$(DEPDIR)/libvlccore_la-dirs.Tpo config/$(DEPDIR)/libvlccore_la-dirs.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@	source='config/dirs.c' object='config/libvlccore_la-dirs.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) $(AM_CPPFLAGS) $(CPPFLAGS) $(libvlccore_la_CFLAGS) $(CFLAGS) -c -o config/libvlccore_la-dirs.lo `test -f 'config/dirs.c' || echo '$(srcdir)/'`config/dirs.c

config/libvlccore_la-chain.lo: config/chain.c
@am__fastdepCC_TRUE@	$(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libvlccore_la_CFLAGS) $(CFLAGS) -MT config/libvlccore_la-chain.lo -MD -MP -MF config/$(DEPDIR)/libvlccore_la-chain.Tpo -c -o config/libvlccore_la-chain.lo `test -f 'config/chain.c' || echo '$(srcdir)/'`config/chain.c
@am__fastdepCC_TRUE@	mv -f config/$(DEPDIR)/libvlccore_la-chain.Tpo config/$(DEPDIR)/libvlccore_la-chain.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@	source='config/chain.c' object='config/libvlccore_la-chain.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) $(AM_CPPFLAGS) $(CPPFLAGS) $(libvlccore_la_CFLAGS) $(CFLAGS) -c -o config/libvlccore_la-chain.lo `test -f 'config/chain.c' || echo '$(srcdir)/'`config/chain.c

config/libvlccore_la-file.lo: config/file.c
@am__fastdepCC_TRUE@	$(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libvlccore_la_CFLAGS) $(CFLAGS) -MT config/libvlccore_la-file.lo -MD -MP -MF config/$(DEPDIR)/libvlccore_la-file.Tpo -c -o config/libvlccore_la-file.lo `test -f 'config/file.c' || echo '$(srcdir)/'`config/file.c
@am__fastdepCC_TRUE@	mv -f config/$(DEPDIR)/libvlccore_la-file.Tpo config/$(DEPDIR)/libvlccore_la-file.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@	source='config/file.c' object='config/libvlccore_la-file.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) $(AM_CPPFLAGS) $(CPPFLAGS) $(libvlccore_la_CFLAGS) $(CFLAGS) -c -o config/libvlccore_la-file.lo `test -f 'config/file.c' || echo '$(srcdir)/'`config/file.c

config/libvlccore_la-intf.lo: config/intf.c
@am__fastdepCC_TRUE@	$(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libvlccore_la_CFLAGS) $(CFLAGS) -MT config/libvlccore_la-intf.lo -MD -MP -MF config/$(DEPDIR)/libvlccore_la-intf.Tpo -c -o config/libvlccore_la-intf.lo `test -f 'config/intf.c' || echo '$(srcdir)/'`config/intf.c
@am__fastdepCC_TRUE@	mv -f config/$(DEPDIR)/libvlccore_la-intf.Tpo config/$(DEPDIR)/libvlccore_la-intf.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@	source='config/intf.c' object='config/libvlccore_la-intf.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) $(AM_CPPFLAGS) $(CPPFLAGS) $(libvlccore_la_CFLAGS) $(CFLAGS) -c -o config/libvlccore_la-intf.lo `test -f 'config/intf.c' || echo '$(srcdir)/'`config/intf.c

config/libvlccore_la-cmdline.lo: config/cmdline.c
@am__fastdepCC_TRUE@	$(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libvlccore_la_CFLAGS) $(CFLAGS) -MT config/libvlccore_la-cmdline.lo -MD -MP -MF config/$(DEPDIR)/libvlccore_la-cmdline.Tpo -c -o config/libvlccore_la-cmdline.lo `test -f 'config/cmdline.c' || echo '$(srcdir)/'`config/cmdline.c
@am__fastdepCC_TRUE@	mv -f config/$(DEPDIR)/libvlccore_la-cmdline.Tpo config/$(DEPDIR)/libvlccore_la-cmdline.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@	source='config/cmdline.c' object='config/libvlccore_la-cmdline.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) $(AM_CPPFLAGS) $(CPPFLAGS) $(libvlccore_la_CFLAGS) $(CFLAGS) -c -o config/libvlccore_la-cmdline.lo `test -f 'config/cmdline.c' || echo '$(srcdir)/'`config/cmdline.c

misc/libvlccore_la-events.lo: misc/events.c
@am__fastdepCC_TRUE@	$(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libvlccore_la_CFLAGS) $(CFLAGS) -MT misc/libvlccore_la-events.lo -MD -MP -MF misc/$(DEPDIR)/libvlccore_la-events.Tpo -c -o misc/libvlccore_la-events.lo `test -f 'misc/events.c' || echo '$(srcdir)/'`misc/events.c
@am__fastdepCC_TRUE@	mv -f misc/$(DEPDIR)/libvlccore_la-events.Tpo misc/$(DEPDIR)/libvlccore_la-events.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@	source='misc/events.c' object='misc/libvlccore_la-events.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) $(AM_CPPFLAGS) $(CPPFLAGS) $(libvlccore_la_CFLAGS) $(CFLAGS) -c -o misc/libvlccore_la-events.lo `test -f 'misc/events.c' || echo '$(srcdir)/'`misc/events.c

misc/libvlccore_la-image.lo: misc/image.c
@am__fastdepCC_TRUE@	$(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libvlccore_la_CFLAGS) $(CFLAGS) -MT misc/libvlccore_la-image.lo -MD -MP -MF misc/$(DEPDIR)/libvlccore_la-image.Tpo -c -o misc/libvlccore_la-image.lo `test -f 'misc/image.c' || echo '$(srcdir)/'`misc/image.c
@am__fastdepCC_TRUE@	mv -f misc/$(DEPDIR)/libvlccore_la-image.Tpo misc/$(DEPDIR)/libvlccore_la-image.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@	source='misc/image.c' object='misc/libvlccore_la-image.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) $(AM_CPPFLAGS) $(CPPFLAGS) $(libvlccore_la_CFLAGS) $(CFLAGS) -c -o misc/libvlccore_la-image.lo `test -f 'misc/image.c' || echo '$(srcdir)/'`misc/image.c

misc/libvlccore_la-messages.lo: misc/messages.c
@am__fastdepCC_TRUE@	$(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libvlccore_la_CFLAGS) $(CFLAGS) -MT misc/libvlccore_la-messages.lo -MD -MP -MF misc/$(DEPDIR)/libvlccore_la-messages.Tpo -c -o misc/libvlccore_la-messages.lo `test -f 'misc/messages.c' || echo '$(srcdir)/'`misc/messages.c
@am__fastdepCC_TRUE@	mv -f misc/$(DEPDIR)/libvlccore_la-messages.Tpo misc/$(DEPDIR)/libvlccore_la-messages.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@	source='misc/messages.c' object='misc/libvlccore_la-messages.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) $(AM_CPPFLAGS) $(CPPFLAGS) $(libvlccore_la_CFLAGS) $(CFLAGS) -c -o misc/libvlccore_la-messages.lo `test -f 'misc/messages.c' || echo '$(srcdir)/'`misc/messages.c

misc/libvlccore_la-objects.lo: misc/objects.c
@am__fastdepCC_TRUE@	$(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libvlccore_la_CFLAGS) $(CFLAGS) -MT misc/libvlccore_la-objects.lo -MD -MP -MF misc/$(DEPDIR)/libvlccore_la-objects.Tpo -c -o misc/libvlccore_la-objects.lo `test -f 'misc/objects.c' || echo '$(srcdir)/'`misc/objects.c
@am__fastdepCC_TRUE@	mv -f misc/$(DEPDIR)/libvlccore_la-objects.Tpo misc/$(DEPDIR)/libvlccore_la-objects.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@	source='misc/objects.c' object='misc/libvlccore_la-objects.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) $(AM_CPPFLAGS) $(CPPFLAGS) $(libvlccore_la_CFLAGS) $(CFLAGS) -c -o misc/libvlccore_la-objects.lo `test -f 'misc/objects.c' || echo '$(srcdir)/'`misc/objects.c

misc/libvlccore_la-variables.lo: misc/variables.c
@am__fastdepCC_TRUE@	$(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libvlccore_la_CFLAGS) $(CFLAGS) -MT misc/libvlccore_la-variables.lo -MD -MP -MF misc/$(DEPDIR)/libvlccore_la-variables.Tpo -c -o misc/libvlccore_la-variables.lo `test -f 'misc/variables.c' || echo '$(srcdir)/'`misc/variables.c
@am__fastdepCC_TRUE@	mv -f misc/$(DEPDIR)/libvlccore_la-variables.Tpo misc/$(DEPDIR)/libvlccore_la-variables.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@	source='misc/variables.c' object='misc/libvlccore_la-variables.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) $(AM_CPPFLAGS) $(CPPFLAGS) $(libvlccore_la_CFLAGS) $(CFLAGS) -c -o misc/libvlccore_la-variables.lo `test -f 'misc/variables.c' || echo '$(srcdir)/'`misc/variables.c

misc/libvlccore_la-error.lo: misc/error.c
@am__fastdepCC_TRUE@	$(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libvlccore_la_CFLAGS) $(CFLAGS) -MT misc/libvlccore_la-error.lo -MD -MP -MF misc/$(DEPDIR)/libvlccore_la-error.Tpo -c -o misc/libvlccore_la-error.lo `test -f 'misc/error.c' || echo '$(srcdir)/'`misc/error.c
@am__fastdepCC_TRUE@	mv -f misc/$(DEPDIR)/libvlccore_la-error.Tpo misc/$(DEPDIR)/libvlccore_la-error.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@	source='misc/error.c' object='misc/libvlccore_la-error.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) $(AM_CPPFLAGS) $(CPPFLAGS) $(libvlccore_la_CFLAGS) $(CFLAGS) -c -o misc/libvlccore_la-error.lo `test -f 'misc/error.c' || echo '$(srcdir)/'`misc/error.c

misc/libvlccore_la-update.lo: misc/update.c
@am__fastdepCC_TRUE@	$(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libvlccore_la_CFLAGS) $(CFLAGS) -MT misc/libvlccore_la-update.lo -MD -MP -MF misc/$(DEPDIR)/libvlccore_la-update.Tpo -c -o misc/libvlccore_la-update.lo `test -f 'misc/update.c' || echo '$(srcdir)/'`misc/update.c
@am__fastdepCC_TRUE@	mv -f misc/$(DEPDIR)/libvlccore_la-update.Tpo misc/$(DEPDIR)/libvlccore_la-update.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@	source='misc/update.c' object='misc/libvlccore_la-update.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) $(AM_CPPFLAGS) $(CPPFLAGS) $(libvlccore_la_CFLAGS) $(CFLAGS) -c -o misc/libvlccore_la-update.lo `test -f 'misc/update.c' || echo '$(srcdir)/'`misc/update.c

misc/libvlccore_la-xml.lo: misc/xml.c
@am__fastdepCC_TRUE@	$(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libvlccore_la_CFLAGS) $(CFLAGS) -MT misc/libvlccore_la-xml.lo -MD -MP -MF misc/$(DEPDIR)/libvlccore_la-xml.Tpo -c -o misc/libvlccore_la-xml.lo `test -f 'misc/xml.c' || echo '$(srcdir)/'`misc/xml.c
@am__fastdepCC_TRUE@	mv -f misc/$(DEPDIR)/libvlccore_la-xml.Tpo misc/$(DEPDIR)/libvlccore_la-xml.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@	source='misc/xml.c' object='misc/libvlccore_la-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) $(AM_CPPFLAGS) $(CPPFLAGS) $(libvlccore_la_CFLAGS) $(CFLAGS) -c -o misc/libvlccore_la-xml.lo `test -f 'misc/xml.c' || echo '$(srcdir)/'`misc/xml.c

misc/libvlccore_la-devices.lo: misc/devices.c
@am__fastdepCC_TRUE@	$(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libvlccore_la_CFLAGS) $(CFLAGS) -MT misc/libvlccore_la-devices.lo -MD -MP -MF misc/$(DEPDIR)/libvlccore_la-devices.Tpo -c -o misc/libvlccore_la-devices.lo `test -f 'misc/devices.c' || echo '$(srcdir)/'`misc/devices.c
@am__fastdepCC_TRUE@	mv -f misc/$(DEPDIR)/libvlccore_la-devices.Tpo misc/$(DEPDIR)/libvlccore_la-devices.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@	source='misc/devices.c' object='misc/libvlccore_la-devices.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) $(AM_CPPFLAGS) $(CPPFLAGS) $(libvlccore_la_CFLAGS) $(CFLAGS) -c -o misc/libvlccore_la-devices.lo `test -f 'misc/devices.c' || echo '$(srcdir)/'`misc/devices.c

extras/libvlccore_la-libc.lo: extras/libc.c
@am__fastdepCC_TRUE@	$(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libvlccore_la_CFLAGS) $(CFLAGS) -MT extras/libvlccore_la-libc.lo -MD -MP -MF extras/$(DEPDIR)/libvlccore_la-libc.Tpo -c -o extras/libvlccore_la-libc.lo `test -f 'extras/libc.c' || echo '$(srcdir)/'`extras/libc.c
@am__fastdepCC_TRUE@	mv -f extras/$(DEPDIR)/libvlccore_la-libc.Tpo extras/$(DEPDIR)/libvlccore_la-libc.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@	source='extras/libc.c' object='extras/libvlccore_la-libc.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) $(AM_CPPFLAGS) $(CPPFLAGS) $(libvlccore_la_CFLAGS) $(CFLAGS) -c -o extras/libvlccore_la-libc.lo `test -f 'extras/libc.c' || echo '$(srcdir)/'`extras/libc.c

misc/libvlccore_la-filter_chain.lo: misc/filter_chain.c
@am__fastdepCC_TRUE@	$(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libvlccore_la_CFLAGS) $(CFLAGS) -MT misc/libvlccore_la-filter_chain.lo -MD -MP -MF misc/$(DEPDIR)/libvlccore_la-filter_chain.Tpo -c -o misc/libvlccore_la-filter_chain.lo `test -f 'misc/filter_chain.c' || echo '$(srcdir)/'`misc/filter_chain.c
@am__fastdepCC_TRUE@	mv -f misc/$(DEPDIR)/libvlccore_la-filter_chain.Tpo misc/$(DEPDIR)/libvlccore_la-filter_chain.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@	source='misc/filter_chain.c' object='misc/libvlccore_la-filter_chain.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) $(AM_CPPFLAGS) $(CPPFLAGS) $(libvlccore_la_CFLAGS) $(CFLAGS) -c -o misc/libvlccore_la-filter_chain.lo `test -f 'misc/filter_chain.c' || echo '$(srcdir)/'`misc/filter_chain.c

misc/libvlccore_la-darwin_specific.lo: misc/darwin_specific.c
@am__fastdepCC_TRUE@	$(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libvlccore_la_CFLAGS) $(CFLAGS) -MT misc/libvlccore_la-darwin_specific.lo -MD -MP -MF misc/$(DEPDIR)/libvlccore_la-darwin_specific.Tpo -c -o misc/libvlccore_la-darwin_specific.lo `test -f 'misc/darwin_specific.c' || echo '$(srcdir)/'`misc/darwin_specific.c
@am__fastdepCC_TRUE@	mv -f misc/$(DEPDIR)/libvlccore_la-darwin_specific.Tpo misc/$(DEPDIR)/libvlccore_la-darwin_specific.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@	source='misc/darwin_specific.c' object='misc/libvlccore_la-darwin_specific.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) $(AM_CPPFLAGS) $(CPPFLAGS) $(libvlccore_la_CFLAGS) $(CFLAGS) -c -o misc/libvlccore_la-darwin_specific.lo `test -f 'misc/darwin_specific.c' || echo '$(srcdir)/'`misc/darwin_specific.c

misc/libvlccore_la-linux_specific.lo: misc/linux_specific.c
@am__fastdepCC_TRUE@	$(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libvlccore_la_CFLAGS) $(CFLAGS) -MT misc/libvlccore_la-linux_specific.lo -MD -MP -MF misc/$(DEPDIR)/libvlccore_la-linux_specific.Tpo -c -o misc/libvlccore_la-linux_specific.lo `test -f 'misc/linux_specific.c' || echo '$(srcdir)/'`misc/linux_specific.c
@am__fastdepCC_TRUE@	mv -f misc/$(DEPDIR)/libvlccore_la-linux_specific.Tpo misc/$(DEPDIR)/libvlccore_la-linux_specific.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@	source='misc/linux_specific.c' object='misc/libvlccore_la-linux_specific.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) $(AM_CPPFLAGS) $(CPPFLAGS) $(libvlccore_la_CFLAGS) $(CFLAGS) -c -o misc/libvlccore_la-linux_specific.lo `test -f 'misc/linux_specific.c' || echo '$(srcdir)/'`misc/linux_specific.c

misc/libvlccore_la-win32_specific.lo: misc/win32_specific.c
@am__fastdepCC_TRUE@	$(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libvlccore_la_CFLAGS) $(CFLAGS) -MT misc/libvlccore_la-win32_specific.lo -MD -MP -MF misc/$(DEPDIR)/libvlccore_la-win32_specific.Tpo -c -o misc/libvlccore_la-win32_specific.lo `test -f 'misc/win32_specific.c' || echo '$(srcdir)/'`misc/win32_specific.c
@am__fastdepCC_TRUE@	mv -f misc/$(DEPDIR)/libvlccore_la-win32_specific.Tpo misc/$(DEPDIR)/libvlccore_la-win32_specific.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@	source='misc/win32_specific.c' object='misc/libvlccore_la-win32_specific.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) $(AM_CPPFLAGS) $(CPPFLAGS) $(libvlccore_la_CFLAGS) $(CFLAGS) -c -o misc/libvlccore_la-win32_specific.lo `test -f 'misc/win32_specific.c' || echo '$(srcdir)/'`misc/win32_specific.c

network/libvlccore_la-winsock.lo: network/winsock.c
@am__fastdepCC_TRUE@	$(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libvlccore_la_CFLAGS) $(CFLAGS) -MT network/libvlccore_la-winsock.lo -MD -MP -MF network/$(DEPDIR)/libvlccore_la-winsock.Tpo -c -o network/libvlccore_la-winsock.lo `test -f 'network/winsock.c' || echo '$(srcdir)/'`network/winsock.c
@am__fastdepCC_TRUE@	mv -f network/$(DEPDIR)/libvlccore_la-winsock.Tpo network/$(DEPDIR)/libvlccore_la-winsock.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@	source='network/winsock.c' object='network/libvlccore_la-winsock.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) $(AM_CPPFLAGS) $(CPPFLAGS) $(libvlccore_la_CFLAGS) $(CFLAGS) -c -o network/libvlccore_la-winsock.lo `test -f 'network/winsock.c' || echo '$(srcdir)/'`network/winsock.c

misc/libvlccore_la-not_specific.lo: misc/not_specific.c
@am__fastdepCC_TRUE@	$(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libvlccore_la_CFLAGS) $(CFLAGS) -MT misc/libvlccore_la-not_specific.lo -MD -MP -MF misc/$(DEPDIR)/libvlccore_la-not_specific.Tpo -c -o misc/libvlccore_la-not_specific.lo `test -f 'misc/not_specific.c' || echo '$(srcdir)/'`misc/not_specific.c
@am__fastdepCC_TRUE@	mv -f misc/$(DEPDIR)/libvlccore_la-not_specific.Tpo misc/$(DEPDIR)/libvlccore_la-not_specific.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@	source='misc/not_specific.c' object='misc/libvlccore_la-not_specific.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) $(AM_CPPFLAGS) $(CPPFLAGS) $(libvlccore_la_CFLAGS) $(CFLAGS) -c -o misc/libvlccore_la-not_specific.lo `test -f 'misc/not_specific.c' || echo '$(srcdir)/'`misc/not_specific.c

extras/libvlccore_la-dirent.lo: extras/dirent.c
@am__fastdepCC_TRUE@	$(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libvlccore_la_CFLAGS) $(CFLAGS) -MT extras/libvlccore_la-dirent.lo -MD -MP -MF extras/$(DEPDIR)/libvlccore_la-dirent.Tpo -c -o extras/libvlccore_la-dirent.lo `test -f 'extras/dirent.c' || echo '$(srcdir)/'`extras/dirent.c
@am__fastdepCC_TRUE@	mv -f extras/$(DEPDIR)/libvlccore_la-dirent.Tpo extras/$(DEPDIR)/libvlccore_la-dirent.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@	source='extras/dirent.c' object='extras/libvlccore_la-dirent.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) $(AM_CPPFLAGS) $(CPPFLAGS) $(libvlccore_la_CFLAGS) $(CFLAGS) -c -o extras/libvlccore_la-dirent.lo `test -f 'extras/dirent.c' || echo '$(srcdir)/'`extras/dirent.c

extras/libvlccore_la-getopt.lo: extras/getopt.c
@am__fastdepCC_TRUE@	$(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libvlccore_la_CFLAGS) $(CFLAGS) -MT extras/libvlccore_la-getopt.lo -MD -MP -MF extras/$(DEPDIR)/libvlccore_la-getopt.Tpo -c -o extras/libvlccore_la-getopt.lo `test -f 'extras/getopt.c' || echo '$(srcdir)/'`extras/getopt.c
@am__fastdepCC_TRUE@	mv -f extras/$(DEPDIR)/libvlccore_la-getopt.Tpo extras/$(DEPDIR)/libvlccore_la-getopt.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@	source='extras/getopt.c' object='extras/libvlccore_la-getopt.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) $(AM_CPPFLAGS) $(CPPFLAGS) $(libvlccore_la_CFLAGS) $(CFLAGS) -c -o extras/libvlccore_la-getopt.lo `test -f 'extras/getopt.c' || echo '$(srcdir)/'`extras/getopt.c

extras/libvlccore_la-getopt1.lo: extras/getopt1.c
@am__fastdepCC_TRUE@	$(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libvlccore_la_CFLAGS) $(CFLAGS) -MT extras/libvlccore_la-getopt1.lo -MD -MP -MF extras/$(DEPDIR)/libvlccore_la-getopt1.Tpo -c -o extras/libvlccore_la-getopt1.lo `test -f 'extras/getopt1.c' || echo '$(srcdir)/'`extras/getopt1.c
@am__fastdepCC_TRUE@	mv -f extras/$(DEPDIR)/libvlccore_la-getopt1.Tpo extras/$(DEPDIR)/libvlccore_la-getopt1.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@	source='extras/getopt1.c' object='extras/libvlccore_la-getopt1.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) $(AM_CPPFLAGS) $(CPPFLAGS) $(libvlccore_la_CFLAGS) $(CFLAGS) -c -o extras/libvlccore_la-getopt1.lo `test -f 'extras/getopt1.c' || echo '$(srcdir)/'`extras/getopt1.c

stream_output/libvlccore_la-stream_output.lo: stream_output/stream_output.c
@am__fastdepCC_TRUE@	$(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libvlccore_la_CFLAGS) $(CFLAGS) -MT stream_output/libvlccore_la-stream_output.lo -MD -MP -MF stream_output/$(DEPDIR)/libvlccore_la-stream_output.Tpo -c -o stream_output/libvlccore_la-stream_output.lo `test -f 'stream_output/stream_output.c' || echo '$(srcdir)/'`stream_output/stream_output.c
@am__fastdepCC_TRUE@	mv -f stream_output/$(DEPDIR)/libvlccore_la-stream_output.Tpo stream_output/$(DEPDIR)/libvlccore_la-stream_output.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@	source='stream_output/stream_output.c' object='stream_output/libvlccore_la-stream_output.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) $(AM_CPPFLAGS) $(CPPFLAGS) $(libvlccore_la_CFLAGS) $(CFLAGS) -c -o stream_output/libvlccore_la-stream_output.lo `test -f 'stream_output/stream_output.c' || echo '$(srcdir)/'`stream_output/stream_output.c

stream_output/libvlccore_la-announce.lo: stream_output/announce.c
@am__fastdepCC_TRUE@	$(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libvlccore_la_CFLAGS) $(CFLAGS) -MT stream_output/libvlccore_la-announce.lo -MD -MP -MF stream_output/$(DEPDIR)/libvlccore_la-announce.Tpo -c -o stream_output/libvlccore_la-announce.lo `test -f 'stream_output/announce.c' || echo '$(srcdir)/'`stream_output/announce.c
@am__fastdepCC_TRUE@	mv -f stream_output/$(DEPDIR)/libvlccore_la-announce.Tpo stream_output/$(DEPDIR)/libvlccore_la-announce.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@	source='stream_output/announce.c' object='stream_output/libvlccore_la-announce.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) $(AM_CPPFLAGS) $(CPPFLAGS) $(libvlccore_la_CFLAGS) $(CFLAGS) -c -o stream_output/libvlccore_la-announce.lo `test -f 'stream_output/announce.c' || echo '$(srcdir)/'`stream_output/announce.c

stream_output/libvlccore_la-sap.lo: stream_output/sap.c
@am__fastdepCC_TRUE@	$(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libvlccore_la_CFLAGS) $(CFLAGS) -MT stream_output/libvlccore_la-sap.lo -MD -MP -MF stream_output/$(DEPDIR)/libvlccore_la-sap.Tpo -c -o stream_output/libvlccore_la-sap.lo `test -f 'stream_output/sap.c' || echo '$(srcdir)/'`stream_output/sap.c
@am__fastdepCC_TRUE@	mv -f stream_output/$(DEPDIR)/libvlccore_la-sap.Tpo stream_output/$(DEPDIR)/libvlccore_la-sap.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@	source='stream_output/sap.c' object='stream_output/libvlccore_la-sap.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) $(AM_CPPFLAGS) $(CPPFLAGS) $(libvlccore_la_CFLAGS) $(CFLAGS) -c -o stream_output/libvlccore_la-sap.lo `test -f 'stream_output/sap.c' || echo '$(srcdir)/'`stream_output/sap.c

stream_output/libvlccore_la-sdp.lo: stream_output/sdp.c
@am__fastdepCC_TRUE@	$(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libvlccore_la_CFLAGS) $(CFLAGS) -MT stream_output/libvlccore_la-sdp.lo -MD -MP -MF stream_output/$(DEPDIR)/libvlccore_la-sdp.Tpo -c -o stream_output/libvlccore_la-sdp.lo `test -f 'stream_output/sdp.c' || echo '$(srcdir)/'`stream_output/sdp.c
@am__fastdepCC_TRUE@	mv -f stream_output/$(DEPDIR)/libvlccore_la-sdp.Tpo stream_output/$(DEPDIR)/libvlccore_la-sdp.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@	source='stream_output/sdp.c' object='stream_output/libvlccore_la-sdp.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) $(AM_CPPFLAGS) $(CPPFLAGS) $(libvlccore_la_CFLAGS) $(CFLAGS) -c -o stream_output/libvlccore_la-sdp.lo `test -f 'stream_output/sdp.c' || echo '$(srcdir)/'`stream_output/sdp.c

input/libvlccore_la-vlm.lo: input/vlm.c
@am__fastdepCC_TRUE@	$(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libvlccore_la_CFLAGS) $(CFLAGS) -MT input/libvlccore_la-vlm.lo -MD -MP -MF input/$(DEPDIR)/libvlccore_la-vlm.Tpo -c -o input/libvlccore_la-vlm.lo `test -f 'input/vlm.c' || echo '$(srcdir)/'`input/vlm.c
@am__fastdepCC_TRUE@	mv -f input/$(DEPDIR)/libvlccore_la-vlm.Tpo input/$(DEPDIR)/libvlccore_la-vlm.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@	source='input/vlm.c' object='input/libvlccore_la-vlm.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) $(AM_CPPFLAGS) $(CPPFLAGS) $(libvlccore_la_CFLAGS) $(CFLAGS) -c -o input/libvlccore_la-vlm.lo `test -f 'input/vlm.c' || echo '$(srcdir)/'`input/vlm.c

input/libvlccore_la-vlmshell.lo: input/vlmshell.c
@am__fastdepCC_TRUE@	$(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libvlccore_la_CFLAGS) $(CFLAGS) -MT input/libvlccore_la-vlmshell.lo -MD -MP -MF input/$(DEPDIR)/libvlccore_la-vlmshell.Tpo -c -o input/libvlccore_la-vlmshell.lo `test -f 'input/vlmshell.c' || echo '$(srcdir)/'`input/vlmshell.c
@am__fastdepCC_TRUE@	mv -f input/$(DEPDIR)/libvlccore_la-vlmshell.Tpo input/$(DEPDIR)/libvlccore_la-vlmshell.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@	source='input/vlmshell.c' object='input/libvlccore_la-vlmshell.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) $(AM_CPPFLAGS) $(CPPFLAGS) $(libvlccore_la_CFLAGS) $(CFLAGS) -c -o input/libvlccore_la-vlmshell.lo `test -f 'input/vlmshell.c' || echo '$(srcdir)/'`input/vlmshell.c

misc/libvlccore_la-revision.lo: misc/revision.c
@am__fastdepCC_TRUE@	$(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libvlccore_la_CFLAGS) $(CFLAGS) -MT misc/libvlccore_la-revision.lo -MD -MP -MF misc/$(DEPDIR)/libvlccore_la-revision.Tpo -c -o misc/libvlccore_la-revision.lo `test -f 'misc/revision.c' || echo '$(srcdir)/'`misc/revision.c
@am__fastdepCC_TRUE@	mv -f misc/$(DEPDIR)/libvlccore_la-revision.Tpo misc/$(DEPDIR)/libvlccore_la-revision.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@	source='misc/revision.c' object='misc/libvlccore_la-revision.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) $(AM_CPPFLAGS) $(CPPFLAGS) $(libvlccore_la_CFLAGS) $(CFLAGS) -c -o misc/libvlccore_la-revision.lo `test -f 'misc/revision.c' || echo '$(srcdir)/'`misc/revision.c

mostlyclean-libtool:
	-rm -f *.lo

clean-libtool:
	-rm -rf .libs _libs
	-rm -rf audio_output/.libs audio_output/_libs
	-rm -rf config/.libs config/_libs
	-rm -rf control/.libs control/_libs
	-rm -rf extras/.libs extras/_libs
	-rm -rf input/.libs input/_libs
	-rm -rf interface/.libs interface/_libs
	-rm -rf misc/.libs misc/_libs
	-rm -rf modules/.libs modules/_libs
	-rm -rf network/.libs network/_libs
	-rm -rf osd/.libs osd/_libs
	-rm -rf playlist/.libs playlist/_libs
	-rm -rf stream_output/.libs stream_output/_libs
	-rm -rf text/.libs text/_libs
	-rm -rf video_output/.libs video_output/_libs
install-pkgconfigDATA: $(pkgconfig_DATA)
	@$(NORMAL_INSTALL)
	test -z "$(pkgconfigdir)" || $(MKDIR_P) "$(DESTDIR)$(pkgconfigdir)"
	@list='$(pkgconfig_DATA)'; for p in $$list; do \
	  if test -f "$$p"; then d=; else d="$(srcdir)/"; fi; \
	  f=$(am__strip_dir) \
	  echo " $(pkgconfigDATA_INSTALL) '$$d$$p' '$(DESTDIR)$(pkgconfigdir)/$$f'"; \
	  $(pkgconfigDATA_INSTALL) "$$d$$p" "$(DESTDIR)$(pkgconfigdir)/$$f"; \
	done

uninstall-pkgconfigDATA:
	@$(NORMAL_UNINSTALL)
	@list='$(pkgconfig_DATA)'; for p in $$list; do \
	  f=$(am__strip_dir) \
	  echo " rm -f '$(DESTDIR)$(pkgconfigdir)/$$f'"; \
	  rm -f "$(DESTDIR)$(pkgconfigdir)/$$f"; \
	done
install-pkgincludeHEADERS: $(pkginclude_HEADERS)
	@$(NORMAL_INSTALL)
	test -z "$(pkgincludedir)" || $(MKDIR_P) "$(DESTDIR)$(pkgincludedir)"
	@list='$(pkginclude_HEADERS)'; for p in $$list; do \
	  if test -f "$$p"; then d=; else d="$(srcdir)/"; fi; \
	  f=$(am__strip_dir) \
	  echo " $(pkgincludeHEADERS_INSTALL) '$$d$$p' '$(DESTDIR)$(pkgincludedir)/$$f'"; \
	  $(pkgincludeHEADERS_INSTALL) "$$d$$p" "$(DESTDIR)$(pkgincludedir)/$$f"; \
	done

uninstall-pkgincludeHEADERS:
	@$(NORMAL_UNINSTALL)
	@list='$(pkginclude_HEADERS)'; for p in $$list; do \
	  f=$(am__strip_dir) \
	  echo " rm -f '$(DESTDIR)$(pkgincludedir)/$$f'"; \
	  rm -f "$(DESTDIR)$(pkgincludedir)/$$f"; \
	done
install-pluginsincludeHEADERS: $(pluginsinclude_HEADERS)
	@$(NORMAL_INSTALL)
	test -z "$(pluginsincludedir)" || $(MKDIR_P) "$(DESTDIR)$(pluginsincludedir)"
	@list='$(pluginsinclude_HEADERS)'; for p in $$list; do \
	  if test -f "$$p"; then d=; else d="$(srcdir)/"; fi; \
	  f=$(am__strip_dir) \
	  echo " $(pluginsincludeHEADERS_INSTALL) '$$d$$p' '$(DESTDIR)$(pluginsincludedir)/$$f'"; \
	  $(pluginsincludeHEADERS_INSTALL) "$$d$$p" "$(DESTDIR)$(pluginsincludedir)/$$f"; \
	done

uninstall-pluginsincludeHEADERS:
	@$(NORMAL_UNINSTALL)
	@list='$(pluginsinclude_HEADERS)'; for p in $$list; do \
	  f=$(am__strip_dir) \
	  echo " rm -f '$(DESTDIR)$(pluginsincludedir)/$$f'"; \
	  rm -f "$(DESTDIR)$(pluginsincludedir)/$$f"; \
	done

# 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):
	@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; \
	  (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):
	@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; \
	  (cd $$subdir && $(MAKE) $(AM_MAKEFLAGS) $$local_target) \
	  || eval $$failcom; \
	done && test -z "$$fail"
tags-recursive:
	list='$(SUBDIRS)'; for subdir in $$list; do \
	  test "$$subdir" = . || (cd $$subdir && $(MAKE) $(AM_MAKEFLAGS) tags); \
	done
ctags-recursive:
	list='$(SUBDIRS)'; for subdir in $$list; do \
	  test "$$subdir" = . || (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; nonemtpy = 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)
	tags=; \
	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 || \
	      tags="$$tags $$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; }; }'`; \
	if test -z "$(ETAGS_ARGS)$$tags$$unique"; then :; else \
	  test -n "$$unique" || unique=$$empty_fix; \
	  $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \
	    $$tags $$unique; \
	fi
ctags: CTAGS
CTAGS: ctags-recursive $(HEADERS) $(SOURCES)  $(TAGS_DEPENDENCIES) \
		$(TAGS_FILES) $(LISP)
	tags=; \
	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)$$tags$$unique" \
	  || $(CTAGS) $(CTAGSFLAGS) $(AM_CTAGSFLAGS) $(CTAGS_ARGS) \
	     $$tags $$unique

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

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

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

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 $(srcdir)/$$file && test $$d != $(srcdir); then \
	      cp -pR $(srcdir)/$$file $(distdir)$$dir || exit 1; \
	    fi; \
	    cp -pR $$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; \
	    distdir=`$(am__cd) $(distdir) && pwd`; \
	    top_distdir=`$(am__cd) $(top_distdir) && pwd`; \
	    (cd $$subdir && \
	      $(MAKE) $(AM_MAKEFLAGS) \
	        top_distdir="$$top_distdir" \
	        distdir="$$distdir/$$subdir" \
		am__remove_distdir=: \
		am__skip_length_check=: \
	        distdir) \
	      || exit 1; \
	  fi; \
	done
check-am: all-am
	$(MAKE) $(AM_MAKEFLAGS) $(dist_check_SCRIPTS)
	$(MAKE) $(AM_MAKEFLAGS) check-TESTS check-local
check: $(BUILT_SOURCES)
	$(MAKE) $(AM_MAKEFLAGS) check-recursive
all-am: Makefile $(LTLIBRARIES) $(DATA) $(HEADERS)
installdirs: installdirs-recursive
installdirs-am:
	for dir in "$(DESTDIR)$(libdir)" "$(DESTDIR)$(pkgconfigdir)" "$(DESTDIR)$(pkgincludedir)" "$(DESTDIR)$(pluginsincludedir)"; do \
	  test -z "$$dir" || $(MKDIR_P) "$$dir"; \
	done
install: $(BUILT_SOURCES)
	$(MAKE) $(AM_MAKEFLAGS) install-recursive
install-exec: install-exec-recursive
install-data: install-data-recursive
uninstall: uninstall-recursive

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

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

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

distclean-generic:
	-test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES)
	-rm -f audio_output/$(DEPDIR)/$(am__dirstamp)
	-rm -f audio_output/$(am__dirstamp)
	-rm -f config/$(DEPDIR)/$(am__dirstamp)
	-rm -f config/$(am__dirstamp)
	-rm -f control/$(DEPDIR)/$(am__dirstamp)
	-rm -f control/$(am__dirstamp)
	-rm -f extras/$(DEPDIR)/$(am__dirstamp)
	-rm -f extras/$(am__dirstamp)
	-rm -f input/$(DEPDIR)/$(am__dirstamp)
	-rm -f input/$(am__dirstamp)
	-rm -f interface/$(DEPDIR)/$(am__dirstamp)
	-rm -f interface/$(am__dirstamp)
	-rm -f misc/$(DEPDIR)/$(am__dirstamp)
	-rm -f misc/$(am__dirstamp)
	-rm -f modules/$(DEPDIR)/$(am__dirstamp)
	-rm -f modules/$(am__dirstamp)
	-rm -f network/$(DEPDIR)/$(am__dirstamp)
	-rm -f network/$(am__dirstamp)
	-rm -f osd/$(DEPDIR)/$(am__dirstamp)
	-rm -f osd/$(am__dirstamp)
	-rm -f playlist/$(DEPDIR)/$(am__dirstamp)
	-rm -f playlist/$(am__dirstamp)
	-rm -f stream_output/$(DEPDIR)/$(am__dirstamp)
	-rm -f stream_output/$(am__dirstamp)
	-rm -f text/$(DEPDIR)/$(am__dirstamp)
	-rm -f text/$(am__dirstamp)
	-rm -f video_output/$(DEPDIR)/$(am__dirstamp)
	-rm -f video_output/$(am__dirstamp)

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

clean-am: clean-generic clean-libLTLIBRARIES clean-libtool \
	mostlyclean-am

distclean: distclean-recursive
	-rm -rf ./$(DEPDIR) audio_output/$(DEPDIR) config/$(DEPDIR) control/$(DEPDIR) extras/$(DEPDIR) input/$(DEPDIR) interface/$(DEPDIR) misc/$(DEPDIR) modules/$(DEPDIR) network/$(DEPDIR) osd/$(DEPDIR) playlist/$(DEPDIR) stream_output/$(DEPDIR) text/$(DEPDIR) video_output/$(DEPDIR)
	-rm -f Makefile
distclean-am: clean-am distclean-compile distclean-generic \
	distclean-tags

dvi: dvi-recursive

dvi-am:

html: html-recursive

info: info-recursive

info-am:

install-data-am: install-pkgconfigDATA install-pkgincludeHEADERS \
	install-pluginsincludeHEADERS

install-dvi: install-dvi-recursive

install-exec-am: install-libLTLIBRARIES

install-html: install-html-recursive

install-info: install-info-recursive

install-man:

install-pdf: install-pdf-recursive

install-ps: install-ps-recursive

installcheck-am:

maintainer-clean: maintainer-clean-recursive
	-rm -rf ./$(DEPDIR) audio_output/$(DEPDIR) config/$(DEPDIR) control/$(DEPDIR) extras/$(DEPDIR) input/$(DEPDIR) interface/$(DEPDIR) misc/$(DEPDIR) modules/$(DEPDIR) network/$(DEPDIR) osd/$(DEPDIR) playlist/$(DEPDIR) stream_output/$(DEPDIR) text/$(DEPDIR) video_output/$(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-libLTLIBRARIES uninstall-pkgconfigDATA \
	uninstall-pkgincludeHEADERS uninstall-pluginsincludeHEADERS

.MAKE: $(RECURSIVE_CLEAN_TARGETS) $(RECURSIVE_TARGETS) install-am \
	install-strip

.PHONY: $(RECURSIVE_CLEAN_TARGETS) $(RECURSIVE_TARGETS) CTAGS GTAGS \
	all all-am check check-TESTS check-am check-local clean \
	clean-generic clean-libLTLIBRARIES clean-libtool 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-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-libLTLIBRARIES install-man install-pdf \
	install-pdf-am install-pkgconfigDATA install-pkgincludeHEADERS \
	install-pluginsincludeHEADERS 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-libLTLIBRARIES \
	uninstall-pkgconfigDATA uninstall-pkgincludeHEADERS \
	uninstall-pluginsincludeHEADERS


modules/builtin.h: modules/builtin.h.in ../vlc-config Makefile.am
	rm -f -- "$@.tmp"
	cat "$(srcdir)/modules/builtin.h.in" > "$@.tmp"
@HAVE_PLUGINS_FALSE@	plugins="$$($(VLC_CONFIG) --list plugin)" ; \
@HAVE_PLUGINS_FALSE@	test -n "$${plugins}" && \
@HAVE_PLUGINS_FALSE@	for p in $${plugins}; do \
@HAVE_PLUGINS_FALSE@		echo "int vlc_entry__$$p (module_t *);" ; \
@HAVE_PLUGINS_FALSE@	done >> "$@.tmp"
	echo "#define ALLOCATE_ALL_BUILTINS() \\" >> "$@.tmp"
	echo "    do \\" >> "$@.tmp"
	echo "    { \\" >> "$@.tmp"
@HAVE_PLUGINS_FALSE@	plugins="$$($(VLC_CONFIG) --list plugin)" ; \
@HAVE_PLUGINS_FALSE@	test -n "$${plugins}" && \
@HAVE_PLUGINS_FALSE@	for p in $${plugins}; do \
@HAVE_PLUGINS_FALSE@		echo "        ALLOCATE_BUILTIN($$p); \\" ; \
@HAVE_PLUGINS_FALSE@	done >> "$@.tmp"
	echo '    } while( 0 );' >> "$@.tmp"
	mv -f -- "$@.tmp" "$@"

modules/modules.c: modules/builtin.h

../include/vlc_about.h: Makefile.am $(top_srcdir)/COPYING $(top_srcdir)/THANKS $(top_srcdir)/AUTHORS
	rm -f -- "$@.tmp"
	mkdir -p -- ../include
	echo "/* Automatically generated file - DO NOT EDIT */" > "$@.tmp"
	echo "static const char psz_license[] =" >> "$@.tmp"
	cat $(top_srcdir)/COPYING | sed s/'"'/'\\"'/g | $(AWK) '{ print "\""$$0"\\n\"" }' >> "$@.tmp"
	echo ";" >> "$@.tmp"
	echo "static const char psz_thanks[] =" >> "$@.tmp"
	grep -v '$$Id:'  $(top_srcdir)/THANKS | sed s/'"'/'\\"'/g | $(AWK) '{ print "\""$$0"\\n\"" }'|sed s/"<.*.> "// >> "$@.tmp"
	echo ";" >> "$@.tmp"
	echo "static const char psz_authors[] =" >> "$@.tmp"
	grep N: $(top_srcdir)/AUTHORS | cut -d" " -f 2- | sed s/'"'/'\\"'/g | $(AWK) '{ print "\""$$0"\\n\"" }' >> "$@.tmp"
	echo ";" >> "$@.tmp"
	mv -f -- "$@.tmp" "$@"

.pc.in.pc: $(top_builddir)/config.status
	cd "$(top_builddir)" && \
	$(SHELL) ./config.status --file="src/$@"

###############################################################################
# Building libvlc
###############################################################################

nice:
	$(top_builddir)/compile

libvlc_win32_rc.$(OBJEXT): $(top_builddir)/share/libvlc_win32_rc.rc
	$(WINDRES) --include-dir $(top_srcdir)/share -i $< -o $@

###############################################################################
# Stamp rules
###############################################################################

misc/revision.c:
	rm -f $@ $@.tmp
	echo "/* AUTOGENERATED FILE - DO NOT EDIT */" > $@.tmp
	REVISION="$$(LANG=C git --git-dir=$(top_srcdir)/.git show-ref --head -s HEAD 2>/dev/null || echo exported)"; \
	REVISION="$$(echo $$REVISION|cut -b -10)"; \
	echo "const char psz_vlc_changeset[] = \"$$REVISION\";" >> $@.tmp
	mv -f $@.tmp $@

check-local:
	for h in `echo $(pkginclude_HEADERS) | sed -e s,\.\./include/,,g`; \
	do \
		echo grep - "#include <$$h>" $(srcdir)/test/headers.c ; \
		if ! grep -- "#include <$$h>" $(srcdir)/test/headers.c ; \
		then \
			echo "Header $$h not included in test/headers.c!"; \
			exit 1; \
		fi ; \
	done
	$(srcdir)/check_headers $(pkginclude_HEADERS)
	$(srcdir)/check_headers $(pluginsinclude_HEADERS)

FORCE:
	@echo "Generated source cannot be phony. Go away." >&2
	@exit 1

.PHONY: FORCE
# 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: