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
|
# Makefile.in generated by automake 1.11.1 from Makefile.am.
# @configure_input@
# Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002,
# 2003, 2004, 2005, 2006, 2007, 2008, 2009 Free Software Foundation,
# Inc.
# This Makefile.in is free software; the Free Software Foundation
# gives unlimited permission to copy and/or distribute it,
# with or without modifications, as long as this notice is preserved.
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY, to the extent permitted by law; without
# even the implied warranty of MERCHANTABILITY or FITNESS FOR A
# PARTICULAR PURPOSE.
@SET_MAKE@
# modules/gui/qt4/Makefile.am automatically generated from modules/gui/qt4/Modules.am by modules/genmf
# DO NOT EDIT THIS FILE DIRECTLY! See Modules.am instead.
# Common code for VLC modules/.../Makefile.am
#
# Copyright (C) 2005-2007 the VideoLAN team
# Copyright (C) 2005-2008 Rémi Denis-Courmont
#
# Authors: Sam Hocevar <sam@zoy.org>
# vim:syntax=automake
# For each Q_OBJECT:
# - Add the .moc.cpp to BUILT_SOURCES and nodist_SOURCES_qt4
# - Add the .cpp to SOURCES_qt4
# - Add the .hpp to EXTRA_DIST
# For each UI
# - Add it to EXTRA_DIST
# - Add the .h to nodist_SOURCES_qt4
# For each ressource (icon, png, ...)
# - Add it to DEPS_res
VPATH = @srcdir@
pkgdatadir = $(datadir)/@PACKAGE@
pkgincludedir = $(includedir)/@PACKAGE@
pkglibdir = $(libdir)/@PACKAGE@
pkglibexecdir = $(libexecdir)/@PACKAGE@
am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd
install_sh_DATA = $(install_sh) -c -m 644
install_sh_PROGRAM = $(install_sh) -c
install_sh_SCRIPT = $(install_sh) -c
INSTALL_HEADER = $(INSTALL_DATA)
transform = $(program_transform_name)
NORMAL_INSTALL = :
PRE_INSTALL = :
POST_INSTALL = :
NORMAL_UNINSTALL = :
PRE_UNINSTALL = :
POST_UNINSTALL = :
build_triplet = @build@
host_triplet = @host@
DIST_COMMON = $(noinst_HEADERS) $(srcdir)/Makefile.am \
$(srcdir)/Makefile.in $(srcdir)/Modules.am \
$(top_srcdir)/modules/common.am
subdir = modules/gui/qt4
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/libtool.m4 $(top_srcdir)/m4/ltoptions.m4 \
$(top_srcdir)/m4/ltsugar.m4 $(top_srcdir)/m4/ltversion.m4 \
$(top_srcdir)/m4/lt~obsolete.m4 $(top_srcdir)/m4/nls.m4 \
$(top_srcdir)/m4/po.m4 $(top_srcdir)/m4/progtest.m4 \
$(top_srcdir)/m4/vlc.m4 $(top_srcdir)/m4/with_pkg.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 =
CONFIG_CLEAN_VPATH_FILES =
am__vpath_adj_setup = srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`;
am__vpath_adj = case $$p in \
$(srcdir)/*) f=`echo "$$p" | sed "s|^$$srcdirstrip/||"`;; \
*) f=$$p;; \
esac;
am__strip_dir = f=`echo $$p | sed -e 's|^.*/||'`;
am__install_max = 40
am__nobase_strip_setup = \
srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*|]/\\\\&/g'`
am__nobase_strip = \
for p in $$list; do echo "$$p"; done | sed -e "s|$$srcdirstrip/||"
am__nobase_list = $(am__nobase_strip_setup); \
for p in $$list; do echo "$$p $$p"; done | \
sed "s| $$srcdirstrip/| |;"' / .*\//!s/ .*/ ./; s,\( .*\)/[^/]*$$,\1,' | \
$(AWK) 'BEGIN { files["."] = "" } { files[$$2] = files[$$2] " " $$1; \
if (++n[$$2] == $(am__install_max)) \
{ print $$2, files[$$2]; n[$$2] = 0; files[$$2] = "" } } \
END { for (dir in files) print dir, files[dir] }'
am__base_list = \
sed '$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;s/\n/ /g' | \
sed '$$!N;$$!N;$$!N;$$!N;s/\n/ /g'
am__installdirs = "$(DESTDIR)$(libvlcdir)"
LTLIBRARIES = $(libvlc_LTLIBRARIES)
am__DEPENDENCIES_1 = `$(VLC_CONFIG) plugin $@` $(LTLIBVLCCORE) \
$(top_builddir)/compat/libcompat.la
am__dirstamp = $(am__leading_dot)dirstamp
am__objects_1 = libqt4_plugin_la-qt4.lo libqt4_plugin_la-menus.lo \
libqt4_plugin_la-main_interface.lo \
libqt4_plugin_la-main_interface_win32.lo \
libqt4_plugin_la-dialogs_provider.lo \
libqt4_plugin_la-input_manager.lo \
libqt4_plugin_la-actions_manager.lo \
libqt4_plugin_la-extensions_manager.lo \
libqt4_plugin_la-recents.lo libqt4_plugin_la-variables.lo \
dialogs/libqt4_plugin_la-playlist.lo \
dialogs/libqt4_plugin_la-bookmarks.lo \
dialogs/libqt4_plugin_la-preferences.lo \
dialogs/libqt4_plugin_la-mediainfo.lo \
dialogs/libqt4_plugin_la-epg.lo \
dialogs/libqt4_plugin_la-extended.lo \
dialogs/libqt4_plugin_la-messages.lo \
dialogs/libqt4_plugin_la-errors.lo \
dialogs/libqt4_plugin_la-external.lo \
dialogs/libqt4_plugin_la-plugins.lo \
dialogs/libqt4_plugin_la-sout.lo \
dialogs/libqt4_plugin_la-convert.lo \
dialogs/libqt4_plugin_la-help.lo \
dialogs/libqt4_plugin_la-gototime.lo \
dialogs/libqt4_plugin_la-toolbar.lo \
dialogs/libqt4_plugin_la-open.lo \
dialogs/libqt4_plugin_la-openurl.lo \
dialogs/libqt4_plugin_la-vlm.lo \
dialogs/libqt4_plugin_la-firstrun.lo \
dialogs/libqt4_plugin_la-podcast_configuration.lo \
dialogs/libqt4_plugin_la-extensions.lo \
components/libqt4_plugin_la-extended_panels.lo \
components/libqt4_plugin_la-info_panels.lo \
components/libqt4_plugin_la-preferences_widgets.lo \
components/libqt4_plugin_la-complete_preferences.lo \
components/libqt4_plugin_la-simple_preferences.lo \
components/libqt4_plugin_la-open_panels.lo \
components/libqt4_plugin_la-interface_widgets.lo \
components/libqt4_plugin_la-controller.lo \
components/libqt4_plugin_la-controller_widget.lo \
components/epg/libqt4_plugin_la-EPGChannels.lo \
components/epg/libqt4_plugin_la-EPGItem.lo \
components/epg/libqt4_plugin_la-EPGRuler.lo \
components/epg/libqt4_plugin_la-EPGView.lo \
components/epg/libqt4_plugin_la-EPGWidget.lo \
components/playlist/libqt4_plugin_la-icon_view.lo \
components/playlist/libqt4_plugin_la-playlist_model.lo \
components/playlist/libqt4_plugin_la-playlist_item.lo \
components/playlist/libqt4_plugin_la-standardpanel.lo \
components/playlist/libqt4_plugin_la-playlist.lo \
components/playlist/libqt4_plugin_la-selector.lo \
components/sout/libqt4_plugin_la-profile_selector.lo \
components/sout/libqt4_plugin_la-sout_widgets.lo \
util/libqt4_plugin_la-input_slider.lo \
util/libqt4_plugin_la-customwidgets.lo \
util/libqt4_plugin_la-registry.lo
am_libqt4_plugin_la_OBJECTS = $(am__objects_1)
am__objects_2 = libqt4_plugin_la-main_interface.moc.lo \
libqt4_plugin_la-menus.moc.lo \
libqt4_plugin_la-dialogs_provider.moc.lo \
libqt4_plugin_la-input_manager.moc.lo \
libqt4_plugin_la-actions_manager.moc.lo \
libqt4_plugin_la-extensions_manager.moc.lo \
libqt4_plugin_la-recents.moc.lo \
libqt4_plugin_la-variables.moc.lo \
dialogs/libqt4_plugin_la-playlist.moc.lo \
dialogs/libqt4_plugin_la-bookmarks.moc.lo \
dialogs/libqt4_plugin_la-mediainfo.moc.lo \
dialogs/libqt4_plugin_la-extended.moc.lo \
dialogs/libqt4_plugin_la-messages.moc.lo \
dialogs/libqt4_plugin_la-epg.moc.lo \
dialogs/libqt4_plugin_la-errors.moc.lo \
dialogs/libqt4_plugin_la-external.moc.lo \
dialogs/libqt4_plugin_la-plugins.moc.lo \
dialogs/libqt4_plugin_la-preferences.moc.lo \
dialogs/libqt4_plugin_la-sout.moc.lo \
dialogs/libqt4_plugin_la-convert.moc.lo \
dialogs/libqt4_plugin_la-help.moc.lo \
dialogs/libqt4_plugin_la-gototime.moc.lo \
dialogs/libqt4_plugin_la-toolbar.moc.lo \
dialogs/libqt4_plugin_la-open.moc.lo \
dialogs/libqt4_plugin_la-openurl.moc.lo \
dialogs/libqt4_plugin_la-podcast_configuration.moc.lo \
dialogs/libqt4_plugin_la-vlm.moc.lo \
dialogs/libqt4_plugin_la-firstrun.moc.lo \
dialogs/libqt4_plugin_la-extensions.moc.lo \
components/libqt4_plugin_la-extended_panels.moc.lo \
components/libqt4_plugin_la-info_panels.moc.lo \
components/libqt4_plugin_la-preferences_widgets.moc.lo \
components/libqt4_plugin_la-complete_preferences.moc.lo \
components/libqt4_plugin_la-simple_preferences.moc.lo \
components/libqt4_plugin_la-open_panels.moc.lo \
components/libqt4_plugin_la-interface_widgets.moc.lo \
components/libqt4_plugin_la-controller.moc.lo \
components/libqt4_plugin_la-controller_widget.moc.lo \
components/epg/libqt4_plugin_la-EPGChannels.moc.lo \
components/epg/libqt4_plugin_la-EPGRuler.moc.lo \
components/epg/libqt4_plugin_la-EPGView.moc.lo \
components/epg/libqt4_plugin_la-EPGWidget.moc.lo \
components/playlist/libqt4_plugin_la-icon_view.moc.lo \
components/playlist/libqt4_plugin_la-playlist_model.moc.lo \
components/playlist/libqt4_plugin_la-playlist.moc.lo \
components/playlist/libqt4_plugin_la-standardpanel.moc.lo \
components/playlist/libqt4_plugin_la-selector.moc.lo \
components/sout/libqt4_plugin_la-profile_selector.moc.lo \
components/sout/libqt4_plugin_la-sout_widgets.moc.lo \
util/libqt4_plugin_la-input_slider.moc.lo \
util/libqt4_plugin_la-customwidgets.moc.lo \
util/libqt4_plugin_la-qvlcapp.moc.lo \
libqt4_plugin_la-resources.lo
nodist_libqt4_plugin_la_OBJECTS = $(am__objects_2)
libqt4_plugin_la_OBJECTS = $(am_libqt4_plugin_la_OBJECTS) \
$(nodist_libqt4_plugin_la_OBJECTS)
AM_V_lt = $(am__v_lt_$(V))
am__v_lt_ = $(am__v_lt_$(AM_DEFAULT_VERBOSITY))
am__v_lt_0 = --silent
libqt4_plugin_la_LINK = $(LIBTOOL) $(AM_V_lt) --tag=CXX \
$(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=link $(CXXLD) \
$(libqt4_plugin_la_CXXFLAGS) $(CXXFLAGS) $(AM_LDFLAGS) \
$(LDFLAGS) -o $@
DEFAULT_INCLUDES = -I.@am__isrc@ -I$(top_builddir)
depcomp = $(SHELL) $(top_srcdir)/autotools/depcomp
am__depfiles_maybe = depfiles
am__mv = mv -f
CXXCOMPILE = $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) \
$(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS)
LTCXXCOMPILE = $(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) \
$(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) \
$(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) \
$(AM_CXXFLAGS) $(CXXFLAGS)
AM_V_CXX = $(am__v_CXX_$(V))
am__v_CXX_ = $(am__v_CXX_$(AM_DEFAULT_VERBOSITY))
am__v_CXX_0 = @echo " CXX " $@;
AM_V_at = $(am__v_at_$(V))
am__v_at_ = $(am__v_at_$(AM_DEFAULT_VERBOSITY))
am__v_at_0 = @
CXXLD = $(CXX)
CXXLINK = $(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) \
$(LIBTOOLFLAGS) --mode=link $(CXXLD) $(AM_CXXFLAGS) \
$(CXXFLAGS) $(AM_LDFLAGS) $(LDFLAGS) -o $@
AM_V_CXXLD = $(am__v_CXXLD_$(V))
am__v_CXXLD_ = $(am__v_CXXLD_$(AM_DEFAULT_VERBOSITY))
am__v_CXXLD_0 = @echo " CXXLD " $@;
COMPILE = $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) \
$(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS)
LTCOMPILE = $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) \
$(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) \
$(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) \
$(AM_CFLAGS) $(CFLAGS)
AM_V_CC = $(am__v_CC_$(V))
am__v_CC_ = $(am__v_CC_$(AM_DEFAULT_VERBOSITY))
am__v_CC_0 = @echo " CC " $@;
CCLD = $(CC)
LINK = $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) \
$(LIBTOOLFLAGS) --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) \
$(AM_LDFLAGS) $(LDFLAGS) -o $@
AM_V_CCLD = $(am__v_CCLD_$(V))
am__v_CCLD_ = $(am__v_CCLD_$(AM_DEFAULT_VERBOSITY))
am__v_CCLD_0 = @echo " CCLD " $@;
AM_V_GEN = $(am__v_GEN_$(V))
am__v_GEN_ = $(am__v_GEN_$(AM_DEFAULT_VERBOSITY))
am__v_GEN_0 = @echo " GEN " $@;
SOURCES = $(libqt4_plugin_la_SOURCES) \
$(nodist_libqt4_plugin_la_SOURCES)
DIST_SOURCES = $(libqt4_plugin_la_SOURCES)
HEADERS = $(noinst_HEADERS)
ETAGS = etags
CTAGS = ctags
DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST)
ACLOCAL = @ACLOCAL@
ALIASES = @ALIASES@
ALSA_CFLAGS = @ALSA_CFLAGS@
ALSA_LIBS = @ALSA_LIBS@
AMTAR = @AMTAR@
AM_CPPFLAGS = @AM_CPPFLAGS@
AM_DEFAULT_VERBOSITY = @AM_DEFAULT_VERBOSITY@
AR = @AR@
ARCH = @ARCH@
ARM_NEON_CFLAGS = @ARM_NEON_CFLAGS@
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_CFLAGS = @CACA_CFLAGS@
CACA_LIBS = @CACA_LIBS@
CC = @CC@
CCAS = @CCAS@
CCASDEPMODE = @CCASDEPMODE@
CCASFLAGS = @CCASFLAGS@
CCDEPMODE = @CCDEPMODE@
CFLAGS = @CFLAGS@
CONTRIB_DIR = @CONTRIB_DIR@
COPYRIGHT_MESSAGE = @COPYRIGHT_MESSAGE@
COPYRIGHT_YEARS = @COPYRIGHT_YEARS@
CPP = @CPP@
CPPFLAGS = @CPPFLAGS@
CXX = @CXX@
CXXCPP = @CXXCPP@
CXXDEPMODE = @CXXDEPMODE@
CXXFLAGS = @CXXFLAGS@
CYGPATH = @CYGPATH@
CYGPATH_W = @CYGPATH_W@
DBUS_CFLAGS = @DBUS_CFLAGS@
DBUS_LIBS = @DBUS_LIBS@
DC1394_CFLAGS = @DC1394_CFLAGS@
DC1394_LIBS = @DC1394_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@
DUMPBIN = @DUMPBIN@
DVDNAV_CONFIG = @DVDNAV_CONFIG@
DV_CFLAGS = @DV_CFLAGS@
DV_LIBS = @DV_LIBS@
ECHO_C = @ECHO_C@
ECHO_N = @ECHO_N@
ECHO_T = @ECHO_T@
EGREP = @EGREP@
EXEEXT = @EXEEXT@
FGREP = @FGREP@
FILE_LIBVLCCORE_DLL = @FILE_LIBVLCCORE_DLL@
FILE_LIBVLC_DLL = @FILE_LIBVLC_DLL@
FLAC_CFLAGS = @FLAC_CFLAGS@
FLAC_LIBS = @FLAC_LIBS@
FLUIDSYNTH_CFLAGS = @FLUIDSYNTH_CFLAGS@
FLUIDSYNTH_LIBS = @FLUIDSYNTH_LIBS@
FREETYPE_CFLAGS = @FREETYPE_CFLAGS@
FREETYPE_LIBS = @FREETYPE_LIBS@
FRIBIDI_CFLAGS = @FRIBIDI_CFLAGS@
FRIBIDI_LIBS = @FRIBIDI_LIBS@
GCRYPT_CFLAGS = @GCRYPT_CFLAGS@
GCRYPT_LIBS = @GCRYPT_LIBS@
GETTEXT_MACRO_VERSION = @GETTEXT_MACRO_VERSION@
GL_CFLAGS = @GL_CFLAGS@
GL_LIBS = @GL_LIBS@
GMSGFMT = @GMSGFMT@
GMSGFMT_015 = @GMSGFMT_015@
GNOMEVFS_CFLAGS = @GNOMEVFS_CFLAGS@
GNOMEVFS_LIBS = @GNOMEVFS_LIBS@
GNUGETOPT_LIBS = @GNUGETOPT_LIBS@
GNUTLS_CFLAGS = @GNUTLS_CFLAGS@
GNUTLS_LIBS = @GNUTLS_LIBS@
GOOM_CFLAGS = @GOOM_CFLAGS@
GOOM_LIBS = @GOOM_LIBS@
GREP = @GREP@
HILDON_CFLAGS = @HILDON_CFLAGS@
HILDON_FM_CFLAGS = @HILDON_FM_CFLAGS@
HILDON_FM_LIBS = @HILDON_FM_LIBS@
HILDON_LIBS = @HILDON_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@
JACK_CFLAGS = @JACK_CFLAGS@
JACK_LIBS = @JACK_LIBS@
KATE_CFLAGS = @KATE_CFLAGS@
KATE_LIBS = @KATE_LIBS@
KDE4_CONFIG = @KDE4_CONFIG@
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@
LIBDL = @LIBDL@
LIBEXT = @LIBEXT@
LIBICONV = @LIBICONV@
LIBINTL = @LIBINTL@
LIBMODPLUG_CFLAGS = @LIBMODPLUG_CFLAGS@
LIBMODPLUG_LIBS = @LIBMODPLUG_LIBS@
LIBMPEG2_CFLAGS = @LIBMPEG2_CFLAGS@
LIBMPEG2_LIBS = @LIBMPEG2_LIBS@
LIBOBJS = @LIBOBJS@
LIBPROXY_CFLAGS = @LIBPROXY_CFLAGS@
LIBPROXY_LIBS = @LIBPROXY_LIBS@
LIBS = @LIBS@
LIBTOOL = @LIBTOOL@
LIBV4L2_CFLAGS = @LIBV4L2_CFLAGS@
LIBV4L2_LIBS = @LIBV4L2_LIBS@
LIBV4L_CFLAGS = @LIBV4L_CFLAGS@
LIBV4L_LIBS = @LIBV4L_LIBS@
LIBVA_CFLAGS = @LIBVA_CFLAGS@
LIBVA_LIBS = @LIBVA_LIBS@
LIBVCDINFO_CFLAGS = @LIBVCDINFO_CFLAGS@
LIBVCDINFO_LIBS = @LIBVCDINFO_LIBS@
LIBXML2_CFLAGS = @LIBXML2_CFLAGS@
LIBXML2_LIBS = @LIBXML2_LIBS@
LIPO = @LIPO@
LN_S = @LN_S@
LTLIBICONV = @LTLIBICONV@
LTLIBINTL = @LTLIBINTL@
LTLIBOBJS = @LTLIBOBJS@
LTLIBa52tofloat32 = @LTLIBa52tofloat32@
LTLIBaa = @LTLIBaa@
LTLIBaccess_alsa = @LTLIBaccess_alsa@
LTLIBaccess_avio = @LTLIBaccess_avio@
LTLIBaccess_dv = @LTLIBaccess_dv@
LTLIBaccess_eyetv = @LTLIBaccess_eyetv@
LTLIBaccess_gnomevfs = @LTLIBaccess_gnomevfs@
LTLIBaccess_jack = @LTLIBaccess_jack@
LTLIBaccess_mmap = @LTLIBaccess_mmap@
LTLIBaccess_mtp = @LTLIBaccess_mtp@
LTLIBaccess_oss = @LTLIBaccess_oss@
LTLIBaccess_output_shout = @LTLIBaccess_output_shout@
LTLIBaccess_realrtsp = @LTLIBaccess_realrtsp@
LTLIBaccess_sftp = @LTLIBaccess_sftp@
LTLIBaccess_smb = @LTLIBaccess_smb@
LTLIBalsa = @LTLIBalsa@
LTLIBaout_directx = @LTLIBaout_directx@
LTLIBaout_sdl = @LTLIBaout_sdl@
LTLIBasademux = @LTLIBasademux@
LTLIBatmo = @LTLIBatmo@
LTLIBauhal = @LTLIBauhal@
LTLIBavcodec = @LTLIBavcodec@
LTLIBavformat = @LTLIBavformat@
LTLIBbda = @LTLIBbda@
LTLIBbonjour = @LTLIBbonjour@
LTLIBcaca = @LTLIBcaca@
LTLIBcdda = @LTLIBcdda@
LTLIBdbus = @LTLIBdbus@
LTLIBdc1394 = @LTLIBdc1394@
LTLIBdirac = @LTLIBdirac@
LTLIBdirect3d = @LTLIBdirect3d@
LTLIBdirectfb = @LTLIBdirectfb@
LTLIBdirectx = @LTLIBdirectx@
LTLIBdmo = @LTLIBdmo@
LTLIBdshow = @LTLIBdshow@
LTLIBdtstofloat32 = @LTLIBdtstofloat32@
LTLIBdvb = @LTLIBdvb@
LTLIBdvdnav = @LTLIBdvdnav@
LTLIBdvdread = @LTLIBdvdread@
LTLIBdynamicoverlay = @LTLIBdynamicoverlay@
LTLIBfaad = @LTLIBfaad@
LTLIBfb = @LTLIBfb@
LTLIBfbosd = @LTLIBfbosd@
LTLIBflac = @LTLIBflac@
LTLIBfluidsynth = @LTLIBfluidsynth@
LTLIBfreetype = @LTLIBfreetype@
LTLIBggi = @LTLIBggi@
LTLIBglobalhotkeys = @LTLIBglobalhotkeys@
LTLIBglwin32 = @LTLIBglwin32@
LTLIBgme = @LTLIBgme@
LTLIBgnutls = @LTLIBgnutls@
LTLIBgoom = @LTLIBgoom@
LTLIBgrowl = @LTLIBgrowl@
LTLIBgrowl_udp = @LTLIBgrowl_udp@
LTLIBhd1000a = @LTLIBhd1000a@
LTLIBhd1000v = @LTLIBhd1000v@
LTLIBhildon = @LTLIBhildon@
LTLIBid3tag = @LTLIBid3tag@
LTLIBinhibit = @LTLIBinhibit@
LTLIBjack = @LTLIBjack@
LTLIBkate = @LTLIBkate@
LTLIBlibass = @LTLIBlibass@
LTLIBlibmpeg2 = @LTLIBlibmpeg2@
LTLIBlirc = @LTLIBlirc@
LTLIBlive555 = @LTLIBlive555@
LTLIBmacosx = @LTLIBmacosx@
LTLIBmacosx_dialog_provider = @LTLIBmacosx_dialog_provider@
LTLIBminimal_macosx = @LTLIBminimal_macosx@
LTLIBmkv = @LTLIBmkv@
LTLIBmod = @LTLIBmod@
LTLIBmozilla = @LTLIBmozilla@
LTLIBmpc = @LTLIBmpc@
LTLIBmpgatofixed32 = @LTLIBmpgatofixed32@
LTLIBmtp = @LTLIBmtp@
LTLIBmux_ogg = @LTLIBmux_ogg@
LTLIBmux_ts = @LTLIBmux_ts@
LTLIBncurses = @LTLIBncurses@
LTLIBnotify = @LTLIBnotify@
LTLIBogg = @LTLIBogg@
LTLIBoldhttp = @LTLIBoldhttp@
LTLIBoldtelnet = @LTLIBoldtelnet@
LTLIBomapfb = @LTLIBomapfb@
LTLIBomxil = @LTLIBomxil@
LTLIBopencv_example = @LTLIBopencv_example@
LTLIBopencv_wrapper = @LTLIBopencv_wrapper@
LTLIBopengl = @LTLIBopengl@
LTLIBosd_parser = @LTLIBosd_parser@
LTLIBosdmenu = @LTLIBosdmenu@
LTLIBoss = @LTLIBoss@
LTLIBosso_screensaver = @LTLIBosso_screensaver@
LTLIBpanoramix = @LTLIBpanoramix@
LTLIBpng = @LTLIBpng@
LTLIBportaudio = @LTLIBportaudio@
LTLIBpostproc = @LTLIBpostproc@
LTLIBprojectm = @LTLIBprojectm@
LTLIBpulse = @LTLIBpulse@
LTLIBpvr = @LTLIBpvr@
LTLIBqt4 = @LTLIBqt4@
LTLIBqtcapture = @LTLIBqtcapture@
LTLIBquicktime = @LTLIBquicktime@
LTLIBrealvideo = @LTLIBrealvideo@
LTLIBremoteosd = @LTLIBremoteosd@
LTLIBschroedinger = @LTLIBschroedinger@
LTLIBscreen = @LTLIBscreen@
LTLIBscreensaver = @LTLIBscreensaver@
LTLIBsdl_image = @LTLIBsdl_image@
LTLIBshine = @LTLIBshine@
LTLIBskins2 = @LTLIBskins2@
LTLIBsnapshot = @LTLIBsnapshot@
LTLIBspeex = @LTLIBspeex@
LTLIBsqlite = @LTLIBsqlite@
LTLIBstream_out_raop = @LTLIBstream_out_raop@
LTLIBstream_out_switcher = @LTLIBstream_out_switcher@
LTLIBsvg = @LTLIBsvg@
LTLIBsvgalib = @LTLIBsvgalib@
LTLIBswscale = @LTLIBswscale@
LTLIBswscale_omap = @LTLIBswscale_omap@
LTLIBtaglib = @LTLIBtaglib@
LTLIBtelepathy = @LTLIBtelepathy@
LTLIBtelx = @LTLIBtelx@
LTLIBtheora = @LTLIBtheora@
LTLIBtremor = @LTLIBtremor@
LTLIBts = @LTLIBts@
LTLIBtwolame = @LTLIBtwolame@
LTLIBudev = @LTLIBudev@
LTLIBunzip = @LTLIBunzip@
LTLIBupnp_cc = @LTLIBupnp_cc@
LTLIBupnp_intel = @LTLIBupnp_intel@
LTLIBv4l = @LTLIBv4l@
LTLIBv4l2 = @LTLIBv4l2@
LTLIBvcd = @LTLIBvcd@
LTLIBvcdx = @LTLIBvcdx@
LTLIBvisual = @LTLIBvisual@
LTLIBvorbis = @LTLIBvorbis@
LTLIBvout_macosx = @LTLIBvout_macosx@
LTLIBvout_sdl = @LTLIBvout_sdl@
LTLIBwaveout = @LTLIBwaveout@
LTLIBwingapi = @LTLIBwingapi@
LTLIBwingdi = @LTLIBwingdi@
LTLIBwma_fixed = @LTLIBwma_fixed@
LTLIBx264 = @LTLIBx264@
LTLIBxcb_apps = @LTLIBxcb_apps@
LTLIBxcb_glx = @LTLIBxcb_glx@
LTLIBxcb_screen = @LTLIBxcb_screen@
LTLIBxcb_window = @LTLIBxcb_window@
LTLIBxcb_x11 = @LTLIBxcb_x11@
LTLIBxcb_xv = @LTLIBxcb_xv@
LTLIBxdg_screensaver = @LTLIBxdg_screensaver@
LTLIBxml = @LTLIBxml@
LTLIBxosd = @LTLIBxosd@
LTLIBzip = @LTLIBzip@
LTLIBzvbi = @LTLIBzvbi@
LUAC = @LUAC@
LUA_CFLAGS = @LUA_CFLAGS@
LUA_LIBS = @LUA_LIBS@
MACOSX_DEPLOYMENT_TARGET = @MACOSX_DEPLOYMENT_TARGET@
MAINT = @MAINT@
MAKEINFO = @MAKEINFO@
MIDL = @MIDL@
MINIZIP_CFLAGS = @MINIZIP_CFLAGS@
MINIZIP_LIBS = @MINIZIP_LIBS@
MKDIR_P = @MKDIR_P@
MMX_CFLAGS = @MMX_CFLAGS@
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@
MTP_CFLAGS = @MTP_CFLAGS@
MTP_LIBS = @MTP_LIBS@
MUX_OGG_CFLAGS = @MUX_OGG_CFLAGS@
MUX_OGG_LIBS = @MUX_OGG_LIBS@
NM = @NM@
NMEDIT = @NMEDIT@
NOTIFY_CFLAGS = @NOTIFY_CFLAGS@
NOTIFY_LIBS = @NOTIFY_LIBS@
OBJC = @OBJC@
OBJCDEPMODE = @OBJCDEPMODE@
OBJCFLAGS = @OBJCFLAGS@
OBJCOPY = @OBJCOPY@
OBJDUMP = @OBJDUMP@
OBJEXT = @OBJEXT@
OGG_CFLAGS = @OGG_CFLAGS@
OGG_LIBS = @OGG_LIBS@
OPENCV_CFLAGS = @OPENCV_CFLAGS@
OPENCV_LIBS = @OPENCV_LIBS@
OSSO_SCREENSAVER_CFLAGS = @OSSO_SCREENSAVER_CFLAGS@
OSSO_SCREENSAVER_LIBS = @OSSO_SCREENSAVER_LIBS@
OTOOL = @OTOOL@
OTOOL64 = @OTOOL64@
PACKAGE = @PACKAGE@
PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@
PACKAGE_NAME = @PACKAGE_NAME@
PACKAGE_STRING = @PACKAGE_STRING@
PACKAGE_TARNAME = @PACKAGE_TARNAME@
PACKAGE_URL = @PACKAGE_URL@
PACKAGE_VERSION = @PACKAGE_VERSION@
PATH_SEPARATOR = @PATH_SEPARATOR@
PCRE_CFLAGS = @PCRE_CFLAGS@
PCRE_LIBS = @PCRE_LIBS@
PEFLAGS = @PEFLAGS@
PKGDIR = @PKGDIR@
PKG_CONFIG = @PKG_CONFIG@
PKG_CONFIG_PATH = @PKG_CONFIG_PATH@
PORTAUDIO_CFLAGS = @PORTAUDIO_CFLAGS@
PORTAUDIO_LIBS = @PORTAUDIO_LIBS@
POSTPROC_CFLAGS = @POSTPROC_CFLAGS@
POSTPROC_LIBS = @POSTPROC_LIBS@
POSUB = @POSUB@
PROJECTM2_CFLAGS = @PROJECTM2_CFLAGS@
PROJECTM2_LIBS = @PROJECTM2_LIBS@
PROJECTM_CFLAGS = @PROJECTM_CFLAGS@
PROJECTM_LIBS = @PROJECTM_LIBS@
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@
SDL_CFLAGS = @SDL_CFLAGS@
SDL_IMAGE_CFLAGS = @SDL_IMAGE_CFLAGS@
SDL_IMAGE_LIBS = @SDL_IMAGE_LIBS@
SDL_LIBS = @SDL_LIBS@
SED = @SED@
SET_MAKE = @SET_MAKE@
SHELL = @SHELL@
SHOUT_CFLAGS = @SHOUT_CFLAGS@
SHOUT_LIBS = @SHOUT_LIBS@
SOCKET_LIBS = @SOCKET_LIBS@
SPEEX_CFLAGS = @SPEEX_CFLAGS@
SPEEX_LIBS = @SPEEX_LIBS@
SQLITE_CFLAGS = @SQLITE_CFLAGS@
SQLITE_LIBS = @SQLITE_LIBS@
SSE2_CFLAGS = @SSE2_CFLAGS@
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@
THEORA_CFLAGS = @THEORA_CFLAGS@
THEORA_LIBS = @THEORA_LIBS@
TIGER_CFLAGS = @TIGER_CFLAGS@
TIGER_LIBS = @TIGER_LIBS@
TWOLAME_CFLAGS = @TWOLAME_CFLAGS@
TWOLAME_LIBS = @TWOLAME_LIBS@
U2D = @U2D@
UDEV_CFLAGS = @UDEV_CFLAGS@
UDEV_LIBS = @UDEV_LIBS@
UIC = @UIC@
UPNP_CFLAGS = @UPNP_CFLAGS@
UPNP_LIBS = @UPNP_LIBS@
USE_NLS = @USE_NLS@
VERSION = @VERSION@
VERSION_EXTRA = @VERSION_EXTRA@
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@
VORBIS_CFLAGS = @VORBIS_CFLAGS@
VORBIS_LIBS = @VORBIS_LIBS@
WIDL = @WIDL@
WINDRES = @WINDRES@
WINE_SDK_PATH = @WINE_SDK_PATH@
X264_CFLAGS = @X264_CFLAGS@
X264_LIBS = @X264_LIBS@
XCB_CFLAGS = @XCB_CFLAGS@
XCB_KEYSYMS_CFLAGS = @XCB_KEYSYMS_CFLAGS@
XCB_KEYSYMS_LIBS = @XCB_KEYSYMS_LIBS@
XCB_LIBS = @XCB_LIBS@
XCB_RANDR_CFLAGS = @XCB_RANDR_CFLAGS@
XCB_RANDR_LIBS = @XCB_RANDR_LIBS@
XCB_SHM_CFLAGS = @XCB_SHM_CFLAGS@
XCB_SHM_LIBS = @XCB_SHM_LIBS@
XCB_XV_CFLAGS = @XCB_XV_CFLAGS@
XCB_XV_LIBS = @XCB_XV_LIBS@
XGETTEXT = @XGETTEXT@
XGETTEXT_015 = @XGETTEXT_015@
XGETTEXT_EXTRA_OPTIONS = @XGETTEXT_EXTRA_OPTIONS@
XLIB_XCB_CFLAGS = @XLIB_XCB_CFLAGS@
XLIB_XCB_LIBS = @XLIB_XCB_LIBS@
XMKMF = @XMKMF@
XPM_CFLAGS = @XPM_CFLAGS@
XPM_LIBS = @XPM_LIBS@
XPROTO_CFLAGS = @XPROTO_CFLAGS@
XPROTO_LIBS = @XPROTO_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_DUMPBIN = @ac_ct_DUMPBIN@
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@
lt_ECHO = @lt_ECHO@
mandir = @mandir@
mkdir_p = @mkdir_p@
oldincludedir = @oldincludedir@
pdfdir = @pdfdir@
prefix = @prefix@
program_transform_name = @program_transform_name@
psdir = @psdir@
sbindir = @sbindir@
sharedstatedir = @sharedstatedir@
soliddatadir = @soliddatadir@
srcdir = @srcdir@
sysconfdir = @sysconfdir@
target_alias = @target_alias@
top_build_prefix = @top_build_prefix@
top_builddir = @top_builddir@
top_srcdir = @top_srcdir@
vlcdatadir = @vlcdatadir@
vlclibdir = @vlclibdir@
basedir = gui
dir = gui/qt4
mods = qt4
libvlc_LTLIBRARIES = $(LTLIBqt4)
EXTRA_LTLIBRARIES = libqt4_plugin.la
NULL =
SUFFIXES = .ui .h .hpp .moc.cpp
libvlcdir = $(vlclibdir)/plugins/$(basedir)
EXTRA_DIST = Modules.am vlc.qrc ui/equalizer.ui ui/v4l2.ui \
ui/video_effects.ui ui/open_file.ui ui/open_disk.ui \
ui/open_net.ui ui/open_capture.ui ui/open.ui \
ui/podcast_configuration.ui ui/profiles.ui ui/sprefs_audio.ui \
ui/sprefs_input.ui ui/sprefs_interface.ui \
ui/sprefs_subtitles.ui ui/sprefs_video.ui ui/streampanel.ui \
ui/sout.ui ui/vlm.ui $(DEPS_res)
BUILT_SOURCES = $(nodist_SOURCES_qt4)
CLEANFILES = $(BUILT_SOURCES)
LTLIBVLCCORE = $(top_builddir)/src/libvlccore.la
AM_CFLAGS = `$(VLC_CONFIG) --cflags plugin $@`
AM_CXXFLAGS = `$(VLC_CONFIG) --cxxflags plugin $@`
AM_OBJCFLAGS = `$(VLC_CONFIG) --objcflags plugin $@`
AM_LDFLAGS = -rpath '$(libvlcdir)' \
-avoid-version -module \
-export-symbol-regex ^vlc_entry \
-shrext $(LIBEXT) \
-rpath "$(libvlcdir)" \
-no-undefined \
`$(VLC_CONFIG) --ldflags plugin $@`
AM_LIBADD = `$(VLC_CONFIG) -libs plugin $@` \
$(LTLIBVLCCORE) $(top_builddir)/compat/libcompat.la
AUTOMAKE_OPTIONS = subdir-objects
MOSTLYCLEANFILES = $(UIH)
nodist_SOURCES_qt4 = \
main_interface.moc.cpp \
menus.moc.cpp \
dialogs_provider.moc.cpp \
input_manager.moc.cpp \
actions_manager.moc.cpp \
extensions_manager.moc.cpp \
recents.moc.cpp \
variables.moc.cpp \
dialogs/playlist.moc.cpp \
dialogs/bookmarks.moc.cpp \
dialogs/mediainfo.moc.cpp \
dialogs/extended.moc.cpp \
dialogs/messages.moc.cpp \
dialogs/epg.moc.cpp \
dialogs/errors.moc.cpp \
dialogs/external.moc.cpp \
dialogs/plugins.moc.cpp \
dialogs/preferences.moc.cpp \
dialogs/sout.moc.cpp \
dialogs/convert.moc.cpp \
dialogs/help.moc.cpp \
dialogs/gototime.moc.cpp \
dialogs/toolbar.moc.cpp \
dialogs/open.moc.cpp \
dialogs/openurl.moc.cpp \
dialogs/podcast_configuration.moc.cpp \
dialogs/vlm.moc.cpp \
dialogs/firstrun.moc.cpp \
dialogs/extensions.moc.cpp \
components/extended_panels.moc.cpp \
components/info_panels.moc.cpp \
components/preferences_widgets.moc.cpp \
components/complete_preferences.moc.cpp \
components/simple_preferences.moc.cpp \
components/open_panels.moc.cpp \
components/interface_widgets.moc.cpp \
components/controller.moc.cpp \
components/controller_widget.moc.cpp \
components/epg/EPGChannels.moc.cpp \
components/epg/EPGRuler.moc.cpp \
components/epg/EPGView.moc.cpp \
components/epg/EPGWidget.moc.cpp \
components/playlist/icon_view.moc.cpp \
components/playlist/playlist_model.moc.cpp \
components/playlist/playlist.moc.cpp \
components/playlist/standardpanel.moc.cpp \
components/playlist/selector.moc.cpp \
components/sout/profile_selector.moc.cpp \
components/sout/sout_widgets.moc.cpp \
util/input_slider.moc.cpp \
util/customwidgets.moc.cpp \
util/qvlcapp.moc.cpp \
resources.cpp \
ui/equalizer.h \
ui/v4l2.h \
ui/video_effects.h \
ui/open_file.h \
ui/open_disk.h \
ui/open_net.h \
ui/open_capture.h \
ui/open.h \
ui/vlm.h \
ui/podcast_configuration.h \
ui/profiles.h \
ui/sprefs_audio.h \
ui/sprefs_input.h \
ui/sprefs_interface.h \
ui/sprefs_subtitles.h \
ui/sprefs_video.h \
ui/streampanel.h \
ui/sout.h
DEPS_res = \
pixmaps/arrow_down_dark.png \
pixmaps/clear.png \
pixmaps/eject.png \
pixmaps/faster.png \
pixmaps/go-next.png \
pixmaps/menus/help_16px.png \
pixmaps/menus/info_16px.png \
pixmaps/menus/messages_16px.png \
pixmaps/menus/playlist_16px.png \
pixmaps/menus/preferences_16px.png \
pixmaps/menus/quit_16px.png \
pixmaps/menus/settings_16px.png \
pixmaps/menus/stream_16px.png \
pixmaps/next.png \
pixmaps/next_16px.png \
pixmaps/noart-64.png \
pixmaps/noart.png \
pixmaps/pause.png \
pixmaps/pause_16px.png \
pixmaps/play.png \
pixmaps/play_16px.png \
pixmaps/playlist/add.png \
pixmaps/playlist/jumpto.png \
pixmaps/playlist/playlist.png \
pixmaps/playlist/remove.png \
pixmaps/playlist/repeat_all.png \
pixmaps/playlist/repeat_off.png \
pixmaps/playlist/repeat_one.png \
pixmaps/playlist/shuffle_off.png \
pixmaps/playlist/shuffle_on.png \
pixmaps/prefs/advprefs_audio.png \
pixmaps/prefs/advprefs_codec.png \
pixmaps/prefs/advprefs_extended.png \
pixmaps/prefs/advprefs_intf.png \
pixmaps/prefs/advprefs_playlist.png \
pixmaps/prefs/advprefs_sout.png \
pixmaps/prefs/advprefs_video.png \
pixmaps/prefs/spref_cone_Audio_64.png \
pixmaps/prefs/spref_cone_Hotkeys_64.png \
pixmaps/prefs/spref_cone_Input_64.png \
pixmaps/prefs/spref_cone_Interface_64.png \
pixmaps/prefs/spref_cone_Subtitles_64.png \
pixmaps/prefs/spref_cone_Video_64.png \
pixmaps/previous.png \
pixmaps/previous_16px.png \
pixmaps/profile_new.png \
pixmaps/sample_complete.png \
pixmaps/sample_minimal.png \
pixmaps/sample_skins.png \
pixmaps/slower.png \
pixmaps/space.png \
pixmaps/stop.png \
pixmaps/stop_16px.png \
pixmaps/toolbar/arrows.png \
pixmaps/toolbar/aspect-ratio.png \
pixmaps/toolbar/atob.png \
pixmaps/toolbar/atob_noa.png \
pixmaps/toolbar/atob_nob.png \
pixmaps/toolbar/defullscreen.png \
pixmaps/toolbar/dvd_menu.png \
pixmaps/toolbar/dvd_next.png \
pixmaps/toolbar/dvd_prev.png \
pixmaps/toolbar/extended_16px.png \
pixmaps/toolbar/frame-by-frame.png \
pixmaps/toolbar/fullscreen.png \
pixmaps/toolbar/play_reverse.png \
pixmaps/toolbar/record_16px.png \
pixmaps/toolbar/snapshot.png \
pixmaps/toolbar/skip_for.png \
pixmaps/toolbar/skip_back.png \
pixmaps/toolbar/tv.png \
pixmaps/toolbar/tvtelx.png \
pixmaps/toolbar/visu.png \
pixmaps/toolbar/volume-high.png \
pixmaps/toolbar/volume-low.png \
pixmaps/toolbar/volume-medium.png \
pixmaps/toolbar/volume-muted.png \
pixmaps/toolbar/volume-slider-inside.png \
pixmaps/toolbar/volume-slider-outside.png \
pixmaps/types/capture-card_16px.png \
pixmaps/types/cdda_16px.png \
pixmaps/types/disc_16px.png \
pixmaps/types/file-asym_16px.png \
pixmaps/types/file-wide_16px.png \
pixmaps/types/folder-blue_16px.png \
pixmaps/types/folder-grey_16px.png \
pixmaps/types/harddisk_16px.png \
pixmaps/types/network_16px.png \
pixmaps/types/tape_16px.png \
pixmaps/types/type_directory.png \
pixmaps/types/type_file.png \
pixmaps/types/type_net.png \
pixmaps/types/type_node.png \
pixmaps/types/type_playlist.png \
pixmaps/types/type_unknown.xpm \
pixmaps/win7/win7thumbnail_prev.png \
pixmaps/win7/win7thumbnail_next.png \
pixmaps/win7/win7thumbnail_play.png \
pixmaps/win7/win7thumbnail_pause.png \
pixmaps/update.png \
pixmaps/lock.png
moc_verbose = $(moc_verbose_$(V))
moc_verbose_ = $(moc_verbose__$(AM_DEFAULT_VERBOSITY))
moc_verbose_0 = @echo " MOC " $@;
moc_verbose__0 = $(moc_verbose_0)
uic_verbose = $(uic_verbose_$(V))
uic_verbose_ = $(uic_verbose__$(AM_DEFAULT_VERBOSITY))
uic_verbose_0 = @echo " UIC " $@;
uic_verbose__0 = $(uic_verbose_0)
SOURCES_qt4 = qt4.cpp \
menus.cpp \
main_interface.cpp \
main_interface_win32.cpp \
dialogs_provider.cpp \
input_manager.cpp \
actions_manager.cpp \
extensions_manager.cpp \
recents.cpp \
variables.cpp \
dialogs/playlist.cpp \
dialogs/bookmarks.cpp \
dialogs/preferences.cpp \
dialogs/mediainfo.cpp \
dialogs/epg.cpp \
dialogs/extended.cpp \
dialogs/messages.cpp \
dialogs/errors.cpp \
dialogs/external.cpp \
dialogs/plugins.cpp \
dialogs/sout.cpp \
dialogs/convert.cpp \
dialogs/help.cpp \
dialogs/gototime.cpp \
dialogs/toolbar.cpp \
dialogs/open.cpp \
dialogs/openurl.cpp \
dialogs/vlm.cpp \
dialogs/firstrun.cpp \
dialogs/podcast_configuration.cpp \
dialogs/extensions.cpp \
components/extended_panels.cpp \
components/info_panels.cpp \
components/preferences_widgets.cpp \
components/complete_preferences.cpp \
components/simple_preferences.cpp \
components/open_panels.cpp \
components/interface_widgets.cpp \
components/controller.cpp \
components/controller_widget.cpp \
components/epg/EPGChannels.cpp \
components/epg/EPGItem.cpp \
components/epg/EPGRuler.cpp \
components/epg/EPGView.cpp \
components/epg/EPGWidget.cpp \
components/playlist/icon_view.cpp \
components/playlist/playlist_model.cpp \
components/playlist/playlist_item.cpp \
components/playlist/standardpanel.cpp \
components/playlist/playlist.cpp \
components/playlist/selector.cpp \
components/sout/profile_selector.cpp \
components/sout/sout_widgets.cpp \
util/input_slider.cpp \
util/customwidgets.cpp \
util/registry.cpp
noinst_HEADERS = \
qt4.hpp \
menus.hpp \
main_interface.hpp \
dialogs_provider.hpp \
input_manager.hpp \
actions_manager.hpp \
extensions_manager.hpp \
recents.hpp \
variables.hpp \
dialogs/playlist.hpp \
dialogs/bookmarks.hpp \
dialogs/mediainfo.hpp \
dialogs/extended.hpp \
dialogs/messages.hpp \
dialogs/epg.hpp \
dialogs/errors.hpp \
dialogs/external.hpp \
dialogs/plugins.hpp \
dialogs/preferences.hpp \
dialogs/sout.hpp \
dialogs/convert.hpp \
dialogs/help.hpp \
dialogs/gototime.hpp \
dialogs/toolbar.hpp \
dialogs/open.hpp \
dialogs/openurl.hpp \
dialogs/vlm.hpp \
dialogs/firstrun.hpp \
dialogs/podcast_configuration.hpp \
dialogs/extensions.hpp \
components/extended_panels.hpp \
components/info_panels.hpp \
components/preferences_widgets.hpp \
components/complete_preferences.hpp \
components/simple_preferences.hpp \
components/open_panels.hpp \
components/interface_widgets.hpp \
components/controller.hpp \
components/controller_widget.hpp \
components/epg/EPGChannels.hpp \
components/epg/EPGEvent.hpp \
components/epg/EPGItem.hpp \
components/epg/EPGRuler.hpp \
components/epg/EPGView.hpp \
components/epg/EPGWidget.hpp \
components/playlist/icon_view.hpp \
components/playlist/playlist_model.hpp \
components/playlist/playlist_item.hpp \
components/playlist/standardpanel.hpp \
components/playlist/playlist.hpp \
components/playlist/selector.hpp \
components/playlist/sorting.h \
components/sout/profile_selector.hpp \
components/sout/sout_widgets.hpp \
components/sout/profiles.hpp \
util/input_slider.hpp \
util/customwidgets.hpp \
util/qvlcframe.hpp \
util/qvlcapp.hpp \
util/qt_dirs.hpp \
util/registry.hpp \
util/singleton.hpp
# The qt4 plugin
libqt4_plugin_la_SOURCES = $(SOURCES_qt4)
nodist_libqt4_plugin_la_SOURCES = $(nodist_SOURCES_qt4)
# Force per-target objects:
libqt4_plugin_la_CFLAGS = $(AM_CFLAGS)
libqt4_plugin_la_CXXFLAGS = $(AM_CXXFLAGS)
libqt4_plugin_la_OBJCFLAGS = $(AM_OBJCFLAGS)
# Set LIBADD and DEPENDENCIES manually:
libqt4_plugin_la_LIBADD = $(AM_LIBADD)
libqt4_plugin_la_DEPENDENCIES = $(top_srcdir)/src/libvlccore.sym
all: $(BUILT_SOURCES)
$(MAKE) $(AM_MAKEFLAGS) all-am
.SUFFIXES:
.SUFFIXES: .ui .h .hpp .moc.cpp .cpp .lo .o .obj
$(srcdir)/Makefile.in: @MAINTAINER_MODE_TRUE@ $(srcdir)/Makefile.am $(top_srcdir)/modules/common.am $(srcdir)/Modules.am $(am__configure_deps)
@for dep in $?; do \
case '$(am__configure_deps)' in \
*$$dep*) \
( cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh ) \
&& { if test -f $@; then exit 0; else break; fi; }; \
exit 1;; \
esac; \
done; \
echo ' cd $(top_srcdir) && $(AUTOMAKE) --gnu modules/gui/qt4/Makefile'; \
$(am__cd) $(top_srcdir) && \
$(AUTOMAKE) --gnu modules/gui/qt4/Makefile
.PRECIOUS: Makefile
Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status
@case '$?' in \
*config.status*) \
cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \
*) \
echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \
cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \
esac;
$(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES)
cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh
$(top_srcdir)/configure: @MAINTAINER_MODE_TRUE@ $(am__configure_deps)
cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh
$(ACLOCAL_M4): @MAINTAINER_MODE_TRUE@ $(am__aclocal_m4_deps)
cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh
$(am__aclocal_m4_deps):
install-libvlcLTLIBRARIES: $(libvlc_LTLIBRARIES)
@$(NORMAL_INSTALL)
test -z "$(libvlcdir)" || $(MKDIR_P) "$(DESTDIR)$(libvlcdir)"
@list='$(libvlc_LTLIBRARIES)'; test -n "$(libvlcdir)" || list=; \
list2=; for p in $$list; do \
if test -f $$p; then \
list2="$$list2 $$p"; \
else :; fi; \
done; \
test -z "$$list2" || { \
echo " $(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=install $(INSTALL) $(INSTALL_STRIP_FLAG) $$list2 '$(DESTDIR)$(libvlcdir)'"; \
$(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=install $(INSTALL) $(INSTALL_STRIP_FLAG) $$list2 "$(DESTDIR)$(libvlcdir)"; \
}
uninstall-libvlcLTLIBRARIES:
@$(NORMAL_UNINSTALL)
@list='$(libvlc_LTLIBRARIES)'; test -n "$(libvlcdir)" || list=; \
for p in $$list; do \
$(am__strip_dir) \
echo " $(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=uninstall rm -f '$(DESTDIR)$(libvlcdir)/$$f'"; \
$(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=uninstall rm -f "$(DESTDIR)$(libvlcdir)/$$f"; \
done
clean-libvlcLTLIBRARIES:
-test -z "$(libvlc_LTLIBRARIES)" || rm -f $(libvlc_LTLIBRARIES)
@list='$(libvlc_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
dialogs/$(am__dirstamp):
@$(MKDIR_P) dialogs
@: > dialogs/$(am__dirstamp)
dialogs/$(DEPDIR)/$(am__dirstamp):
@$(MKDIR_P) dialogs/$(DEPDIR)
@: > dialogs/$(DEPDIR)/$(am__dirstamp)
dialogs/libqt4_plugin_la-playlist.lo: dialogs/$(am__dirstamp) \
dialogs/$(DEPDIR)/$(am__dirstamp)
dialogs/libqt4_plugin_la-bookmarks.lo: dialogs/$(am__dirstamp) \
dialogs/$(DEPDIR)/$(am__dirstamp)
dialogs/libqt4_plugin_la-preferences.lo: dialogs/$(am__dirstamp) \
dialogs/$(DEPDIR)/$(am__dirstamp)
dialogs/libqt4_plugin_la-mediainfo.lo: dialogs/$(am__dirstamp) \
dialogs/$(DEPDIR)/$(am__dirstamp)
dialogs/libqt4_plugin_la-epg.lo: dialogs/$(am__dirstamp) \
dialogs/$(DEPDIR)/$(am__dirstamp)
dialogs/libqt4_plugin_la-extended.lo: dialogs/$(am__dirstamp) \
dialogs/$(DEPDIR)/$(am__dirstamp)
dialogs/libqt4_plugin_la-messages.lo: dialogs/$(am__dirstamp) \
dialogs/$(DEPDIR)/$(am__dirstamp)
dialogs/libqt4_plugin_la-errors.lo: dialogs/$(am__dirstamp) \
dialogs/$(DEPDIR)/$(am__dirstamp)
dialogs/libqt4_plugin_la-external.lo: dialogs/$(am__dirstamp) \
dialogs/$(DEPDIR)/$(am__dirstamp)
dialogs/libqt4_plugin_la-plugins.lo: dialogs/$(am__dirstamp) \
dialogs/$(DEPDIR)/$(am__dirstamp)
dialogs/libqt4_plugin_la-sout.lo: dialogs/$(am__dirstamp) \
dialogs/$(DEPDIR)/$(am__dirstamp)
dialogs/libqt4_plugin_la-convert.lo: dialogs/$(am__dirstamp) \
dialogs/$(DEPDIR)/$(am__dirstamp)
dialogs/libqt4_plugin_la-help.lo: dialogs/$(am__dirstamp) \
dialogs/$(DEPDIR)/$(am__dirstamp)
dialogs/libqt4_plugin_la-gototime.lo: dialogs/$(am__dirstamp) \
dialogs/$(DEPDIR)/$(am__dirstamp)
dialogs/libqt4_plugin_la-toolbar.lo: dialogs/$(am__dirstamp) \
dialogs/$(DEPDIR)/$(am__dirstamp)
dialogs/libqt4_plugin_la-open.lo: dialogs/$(am__dirstamp) \
dialogs/$(DEPDIR)/$(am__dirstamp)
dialogs/libqt4_plugin_la-openurl.lo: dialogs/$(am__dirstamp) \
dialogs/$(DEPDIR)/$(am__dirstamp)
dialogs/libqt4_plugin_la-vlm.lo: dialogs/$(am__dirstamp) \
dialogs/$(DEPDIR)/$(am__dirstamp)
dialogs/libqt4_plugin_la-firstrun.lo: dialogs/$(am__dirstamp) \
dialogs/$(DEPDIR)/$(am__dirstamp)
dialogs/libqt4_plugin_la-podcast_configuration.lo: \
dialogs/$(am__dirstamp) dialogs/$(DEPDIR)/$(am__dirstamp)
dialogs/libqt4_plugin_la-extensions.lo: dialogs/$(am__dirstamp) \
dialogs/$(DEPDIR)/$(am__dirstamp)
components/$(am__dirstamp):
@$(MKDIR_P) components
@: > components/$(am__dirstamp)
components/$(DEPDIR)/$(am__dirstamp):
@$(MKDIR_P) components/$(DEPDIR)
@: > components/$(DEPDIR)/$(am__dirstamp)
components/libqt4_plugin_la-extended_panels.lo: \
components/$(am__dirstamp) \
components/$(DEPDIR)/$(am__dirstamp)
components/libqt4_plugin_la-info_panels.lo: \
components/$(am__dirstamp) \
components/$(DEPDIR)/$(am__dirstamp)
components/libqt4_plugin_la-preferences_widgets.lo: \
components/$(am__dirstamp) \
components/$(DEPDIR)/$(am__dirstamp)
components/libqt4_plugin_la-complete_preferences.lo: \
components/$(am__dirstamp) \
components/$(DEPDIR)/$(am__dirstamp)
components/libqt4_plugin_la-simple_preferences.lo: \
components/$(am__dirstamp) \
components/$(DEPDIR)/$(am__dirstamp)
components/libqt4_plugin_la-open_panels.lo: \
components/$(am__dirstamp) \
components/$(DEPDIR)/$(am__dirstamp)
components/libqt4_plugin_la-interface_widgets.lo: \
components/$(am__dirstamp) \
components/$(DEPDIR)/$(am__dirstamp)
components/libqt4_plugin_la-controller.lo: components/$(am__dirstamp) \
components/$(DEPDIR)/$(am__dirstamp)
components/libqt4_plugin_la-controller_widget.lo: \
components/$(am__dirstamp) \
components/$(DEPDIR)/$(am__dirstamp)
components/epg/$(am__dirstamp):
@$(MKDIR_P) components/epg
@: > components/epg/$(am__dirstamp)
components/epg/$(DEPDIR)/$(am__dirstamp):
@$(MKDIR_P) components/epg/$(DEPDIR)
@: > components/epg/$(DEPDIR)/$(am__dirstamp)
components/epg/libqt4_plugin_la-EPGChannels.lo: \
components/epg/$(am__dirstamp) \
components/epg/$(DEPDIR)/$(am__dirstamp)
components/epg/libqt4_plugin_la-EPGItem.lo: \
components/epg/$(am__dirstamp) \
components/epg/$(DEPDIR)/$(am__dirstamp)
components/epg/libqt4_plugin_la-EPGRuler.lo: \
components/epg/$(am__dirstamp) \
components/epg/$(DEPDIR)/$(am__dirstamp)
components/epg/libqt4_plugin_la-EPGView.lo: \
components/epg/$(am__dirstamp) \
components/epg/$(DEPDIR)/$(am__dirstamp)
components/epg/libqt4_plugin_la-EPGWidget.lo: \
components/epg/$(am__dirstamp) \
components/epg/$(DEPDIR)/$(am__dirstamp)
components/playlist/$(am__dirstamp):
@$(MKDIR_P) components/playlist
@: > components/playlist/$(am__dirstamp)
components/playlist/$(DEPDIR)/$(am__dirstamp):
@$(MKDIR_P) components/playlist/$(DEPDIR)
@: > components/playlist/$(DEPDIR)/$(am__dirstamp)
components/playlist/libqt4_plugin_la-icon_view.lo: \
components/playlist/$(am__dirstamp) \
components/playlist/$(DEPDIR)/$(am__dirstamp)
components/playlist/libqt4_plugin_la-playlist_model.lo: \
components/playlist/$(am__dirstamp) \
components/playlist/$(DEPDIR)/$(am__dirstamp)
components/playlist/libqt4_plugin_la-playlist_item.lo: \
components/playlist/$(am__dirstamp) \
components/playlist/$(DEPDIR)/$(am__dirstamp)
components/playlist/libqt4_plugin_la-standardpanel.lo: \
components/playlist/$(am__dirstamp) \
components/playlist/$(DEPDIR)/$(am__dirstamp)
components/playlist/libqt4_plugin_la-playlist.lo: \
components/playlist/$(am__dirstamp) \
components/playlist/$(DEPDIR)/$(am__dirstamp)
components/playlist/libqt4_plugin_la-selector.lo: \
components/playlist/$(am__dirstamp) \
components/playlist/$(DEPDIR)/$(am__dirstamp)
components/sout/$(am__dirstamp):
@$(MKDIR_P) components/sout
@: > components/sout/$(am__dirstamp)
components/sout/$(DEPDIR)/$(am__dirstamp):
@$(MKDIR_P) components/sout/$(DEPDIR)
@: > components/sout/$(DEPDIR)/$(am__dirstamp)
components/sout/libqt4_plugin_la-profile_selector.lo: \
components/sout/$(am__dirstamp) \
components/sout/$(DEPDIR)/$(am__dirstamp)
components/sout/libqt4_plugin_la-sout_widgets.lo: \
components/sout/$(am__dirstamp) \
components/sout/$(DEPDIR)/$(am__dirstamp)
util/$(am__dirstamp):
@$(MKDIR_P) util
@: > util/$(am__dirstamp)
util/$(DEPDIR)/$(am__dirstamp):
@$(MKDIR_P) util/$(DEPDIR)
@: > util/$(DEPDIR)/$(am__dirstamp)
util/libqt4_plugin_la-input_slider.lo: util/$(am__dirstamp) \
util/$(DEPDIR)/$(am__dirstamp)
util/libqt4_plugin_la-customwidgets.lo: util/$(am__dirstamp) \
util/$(DEPDIR)/$(am__dirstamp)
util/libqt4_plugin_la-registry.lo: util/$(am__dirstamp) \
util/$(DEPDIR)/$(am__dirstamp)
dialogs/libqt4_plugin_la-playlist.moc.lo: dialogs/$(am__dirstamp) \
dialogs/$(DEPDIR)/$(am__dirstamp)
dialogs/libqt4_plugin_la-bookmarks.moc.lo: dialogs/$(am__dirstamp) \
dialogs/$(DEPDIR)/$(am__dirstamp)
dialogs/libqt4_plugin_la-mediainfo.moc.lo: dialogs/$(am__dirstamp) \
dialogs/$(DEPDIR)/$(am__dirstamp)
dialogs/libqt4_plugin_la-extended.moc.lo: dialogs/$(am__dirstamp) \
dialogs/$(DEPDIR)/$(am__dirstamp)
dialogs/libqt4_plugin_la-messages.moc.lo: dialogs/$(am__dirstamp) \
dialogs/$(DEPDIR)/$(am__dirstamp)
dialogs/libqt4_plugin_la-epg.moc.lo: dialogs/$(am__dirstamp) \
dialogs/$(DEPDIR)/$(am__dirstamp)
dialogs/libqt4_plugin_la-errors.moc.lo: dialogs/$(am__dirstamp) \
dialogs/$(DEPDIR)/$(am__dirstamp)
dialogs/libqt4_plugin_la-external.moc.lo: dialogs/$(am__dirstamp) \
dialogs/$(DEPDIR)/$(am__dirstamp)
dialogs/libqt4_plugin_la-plugins.moc.lo: dialogs/$(am__dirstamp) \
dialogs/$(DEPDIR)/$(am__dirstamp)
dialogs/libqt4_plugin_la-preferences.moc.lo: dialogs/$(am__dirstamp) \
dialogs/$(DEPDIR)/$(am__dirstamp)
dialogs/libqt4_plugin_la-sout.moc.lo: dialogs/$(am__dirstamp) \
dialogs/$(DEPDIR)/$(am__dirstamp)
dialogs/libqt4_plugin_la-convert.moc.lo: dialogs/$(am__dirstamp) \
dialogs/$(DEPDIR)/$(am__dirstamp)
dialogs/libqt4_plugin_la-help.moc.lo: dialogs/$(am__dirstamp) \
dialogs/$(DEPDIR)/$(am__dirstamp)
dialogs/libqt4_plugin_la-gototime.moc.lo: dialogs/$(am__dirstamp) \
dialogs/$(DEPDIR)/$(am__dirstamp)
dialogs/libqt4_plugin_la-toolbar.moc.lo: dialogs/$(am__dirstamp) \
dialogs/$(DEPDIR)/$(am__dirstamp)
dialogs/libqt4_plugin_la-open.moc.lo: dialogs/$(am__dirstamp) \
dialogs/$(DEPDIR)/$(am__dirstamp)
dialogs/libqt4_plugin_la-openurl.moc.lo: dialogs/$(am__dirstamp) \
dialogs/$(DEPDIR)/$(am__dirstamp)
dialogs/libqt4_plugin_la-podcast_configuration.moc.lo: \
dialogs/$(am__dirstamp) dialogs/$(DEPDIR)/$(am__dirstamp)
dialogs/libqt4_plugin_la-vlm.moc.lo: dialogs/$(am__dirstamp) \
dialogs/$(DEPDIR)/$(am__dirstamp)
dialogs/libqt4_plugin_la-firstrun.moc.lo: dialogs/$(am__dirstamp) \
dialogs/$(DEPDIR)/$(am__dirstamp)
dialogs/libqt4_plugin_la-extensions.moc.lo: dialogs/$(am__dirstamp) \
dialogs/$(DEPDIR)/$(am__dirstamp)
components/libqt4_plugin_la-extended_panels.moc.lo: \
components/$(am__dirstamp) \
components/$(DEPDIR)/$(am__dirstamp)
components/libqt4_plugin_la-info_panels.moc.lo: \
components/$(am__dirstamp) \
components/$(DEPDIR)/$(am__dirstamp)
components/libqt4_plugin_la-preferences_widgets.moc.lo: \
components/$(am__dirstamp) \
components/$(DEPDIR)/$(am__dirstamp)
components/libqt4_plugin_la-complete_preferences.moc.lo: \
components/$(am__dirstamp) \
components/$(DEPDIR)/$(am__dirstamp)
components/libqt4_plugin_la-simple_preferences.moc.lo: \
components/$(am__dirstamp) \
components/$(DEPDIR)/$(am__dirstamp)
components/libqt4_plugin_la-open_panels.moc.lo: \
components/$(am__dirstamp) \
components/$(DEPDIR)/$(am__dirstamp)
components/libqt4_plugin_la-interface_widgets.moc.lo: \
components/$(am__dirstamp) \
components/$(DEPDIR)/$(am__dirstamp)
components/libqt4_plugin_la-controller.moc.lo: \
components/$(am__dirstamp) \
components/$(DEPDIR)/$(am__dirstamp)
components/libqt4_plugin_la-controller_widget.moc.lo: \
components/$(am__dirstamp) \
components/$(DEPDIR)/$(am__dirstamp)
components/epg/libqt4_plugin_la-EPGChannels.moc.lo: \
components/epg/$(am__dirstamp) \
components/epg/$(DEPDIR)/$(am__dirstamp)
components/epg/libqt4_plugin_la-EPGRuler.moc.lo: \
components/epg/$(am__dirstamp) \
components/epg/$(DEPDIR)/$(am__dirstamp)
components/epg/libqt4_plugin_la-EPGView.moc.lo: \
components/epg/$(am__dirstamp) \
components/epg/$(DEPDIR)/$(am__dirstamp)
components/epg/libqt4_plugin_la-EPGWidget.moc.lo: \
components/epg/$(am__dirstamp) \
components/epg/$(DEPDIR)/$(am__dirstamp)
components/playlist/libqt4_plugin_la-icon_view.moc.lo: \
components/playlist/$(am__dirstamp) \
components/playlist/$(DEPDIR)/$(am__dirstamp)
components/playlist/libqt4_plugin_la-playlist_model.moc.lo: \
components/playlist/$(am__dirstamp) \
components/playlist/$(DEPDIR)/$(am__dirstamp)
components/playlist/libqt4_plugin_la-playlist.moc.lo: \
components/playlist/$(am__dirstamp) \
components/playlist/$(DEPDIR)/$(am__dirstamp)
components/playlist/libqt4_plugin_la-standardpanel.moc.lo: \
components/playlist/$(am__dirstamp) \
components/playlist/$(DEPDIR)/$(am__dirstamp)
components/playlist/libqt4_plugin_la-selector.moc.lo: \
components/playlist/$(am__dirstamp) \
components/playlist/$(DEPDIR)/$(am__dirstamp)
components/sout/libqt4_plugin_la-profile_selector.moc.lo: \
components/sout/$(am__dirstamp) \
components/sout/$(DEPDIR)/$(am__dirstamp)
components/sout/libqt4_plugin_la-sout_widgets.moc.lo: \
components/sout/$(am__dirstamp) \
components/sout/$(DEPDIR)/$(am__dirstamp)
util/libqt4_plugin_la-input_slider.moc.lo: util/$(am__dirstamp) \
util/$(DEPDIR)/$(am__dirstamp)
util/libqt4_plugin_la-customwidgets.moc.lo: util/$(am__dirstamp) \
util/$(DEPDIR)/$(am__dirstamp)
util/libqt4_plugin_la-qvlcapp.moc.lo: util/$(am__dirstamp) \
util/$(DEPDIR)/$(am__dirstamp)
libqt4_plugin.la: $(libqt4_plugin_la_OBJECTS) $(libqt4_plugin_la_DEPENDENCIES)
$(AM_V_CXXLD)$(libqt4_plugin_la_LINK) $(libqt4_plugin_la_OBJECTS) $(libqt4_plugin_la_LIBADD) $(LIBS)
mostlyclean-compile:
-rm -f *.$(OBJEXT)
-rm -f components/epg/libqt4_plugin_la-EPGChannels.$(OBJEXT)
-rm -f components/epg/libqt4_plugin_la-EPGChannels.lo
-rm -f components/epg/libqt4_plugin_la-EPGChannels.moc.$(OBJEXT)
-rm -f components/epg/libqt4_plugin_la-EPGChannels.moc.lo
-rm -f components/epg/libqt4_plugin_la-EPGItem.$(OBJEXT)
-rm -f components/epg/libqt4_plugin_la-EPGItem.lo
-rm -f components/epg/libqt4_plugin_la-EPGRuler.$(OBJEXT)
-rm -f components/epg/libqt4_plugin_la-EPGRuler.lo
-rm -f components/epg/libqt4_plugin_la-EPGRuler.moc.$(OBJEXT)
-rm -f components/epg/libqt4_plugin_la-EPGRuler.moc.lo
-rm -f components/epg/libqt4_plugin_la-EPGView.$(OBJEXT)
-rm -f components/epg/libqt4_plugin_la-EPGView.lo
-rm -f components/epg/libqt4_plugin_la-EPGView.moc.$(OBJEXT)
-rm -f components/epg/libqt4_plugin_la-EPGView.moc.lo
-rm -f components/epg/libqt4_plugin_la-EPGWidget.$(OBJEXT)
-rm -f components/epg/libqt4_plugin_la-EPGWidget.lo
-rm -f components/epg/libqt4_plugin_la-EPGWidget.moc.$(OBJEXT)
-rm -f components/epg/libqt4_plugin_la-EPGWidget.moc.lo
-rm -f components/libqt4_plugin_la-complete_preferences.$(OBJEXT)
-rm -f components/libqt4_plugin_la-complete_preferences.lo
-rm -f components/libqt4_plugin_la-complete_preferences.moc.$(OBJEXT)
-rm -f components/libqt4_plugin_la-complete_preferences.moc.lo
-rm -f components/libqt4_plugin_la-controller.$(OBJEXT)
-rm -f components/libqt4_plugin_la-controller.lo
-rm -f components/libqt4_plugin_la-controller.moc.$(OBJEXT)
-rm -f components/libqt4_plugin_la-controller.moc.lo
-rm -f components/libqt4_plugin_la-controller_widget.$(OBJEXT)
-rm -f components/libqt4_plugin_la-controller_widget.lo
-rm -f components/libqt4_plugin_la-controller_widget.moc.$(OBJEXT)
-rm -f components/libqt4_plugin_la-controller_widget.moc.lo
-rm -f components/libqt4_plugin_la-extended_panels.$(OBJEXT)
-rm -f components/libqt4_plugin_la-extended_panels.lo
-rm -f components/libqt4_plugin_la-extended_panels.moc.$(OBJEXT)
-rm -f components/libqt4_plugin_la-extended_panels.moc.lo
-rm -f components/libqt4_plugin_la-info_panels.$(OBJEXT)
-rm -f components/libqt4_plugin_la-info_panels.lo
-rm -f components/libqt4_plugin_la-info_panels.moc.$(OBJEXT)
-rm -f components/libqt4_plugin_la-info_panels.moc.lo
-rm -f components/libqt4_plugin_la-interface_widgets.$(OBJEXT)
-rm -f components/libqt4_plugin_la-interface_widgets.lo
-rm -f components/libqt4_plugin_la-interface_widgets.moc.$(OBJEXT)
-rm -f components/libqt4_plugin_la-interface_widgets.moc.lo
-rm -f components/libqt4_plugin_la-open_panels.$(OBJEXT)
-rm -f components/libqt4_plugin_la-open_panels.lo
-rm -f components/libqt4_plugin_la-open_panels.moc.$(OBJEXT)
-rm -f components/libqt4_plugin_la-open_panels.moc.lo
-rm -f components/libqt4_plugin_la-preferences_widgets.$(OBJEXT)
-rm -f components/libqt4_plugin_la-preferences_widgets.lo
-rm -f components/libqt4_plugin_la-preferences_widgets.moc.$(OBJEXT)
-rm -f components/libqt4_plugin_la-preferences_widgets.moc.lo
-rm -f components/libqt4_plugin_la-simple_preferences.$(OBJEXT)
-rm -f components/libqt4_plugin_la-simple_preferences.lo
-rm -f components/libqt4_plugin_la-simple_preferences.moc.$(OBJEXT)
-rm -f components/libqt4_plugin_la-simple_preferences.moc.lo
-rm -f components/playlist/libqt4_plugin_la-icon_view.$(OBJEXT)
-rm -f components/playlist/libqt4_plugin_la-icon_view.lo
-rm -f components/playlist/libqt4_plugin_la-icon_view.moc.$(OBJEXT)
-rm -f components/playlist/libqt4_plugin_la-icon_view.moc.lo
-rm -f components/playlist/libqt4_plugin_la-playlist.$(OBJEXT)
-rm -f components/playlist/libqt4_plugin_la-playlist.lo
-rm -f components/playlist/libqt4_plugin_la-playlist.moc.$(OBJEXT)
-rm -f components/playlist/libqt4_plugin_la-playlist.moc.lo
-rm -f components/playlist/libqt4_plugin_la-playlist_item.$(OBJEXT)
-rm -f components/playlist/libqt4_plugin_la-playlist_item.lo
-rm -f components/playlist/libqt4_plugin_la-playlist_model.$(OBJEXT)
-rm -f components/playlist/libqt4_plugin_la-playlist_model.lo
-rm -f components/playlist/libqt4_plugin_la-playlist_model.moc.$(OBJEXT)
-rm -f components/playlist/libqt4_plugin_la-playlist_model.moc.lo
-rm -f components/playlist/libqt4_plugin_la-selector.$(OBJEXT)
-rm -f components/playlist/libqt4_plugin_la-selector.lo
-rm -f components/playlist/libqt4_plugin_la-selector.moc.$(OBJEXT)
-rm -f components/playlist/libqt4_plugin_la-selector.moc.lo
-rm -f components/playlist/libqt4_plugin_la-standardpanel.$(OBJEXT)
-rm -f components/playlist/libqt4_plugin_la-standardpanel.lo
-rm -f components/playlist/libqt4_plugin_la-standardpanel.moc.$(OBJEXT)
-rm -f components/playlist/libqt4_plugin_la-standardpanel.moc.lo
-rm -f components/sout/libqt4_plugin_la-profile_selector.$(OBJEXT)
-rm -f components/sout/libqt4_plugin_la-profile_selector.lo
-rm -f components/sout/libqt4_plugin_la-profile_selector.moc.$(OBJEXT)
-rm -f components/sout/libqt4_plugin_la-profile_selector.moc.lo
-rm -f components/sout/libqt4_plugin_la-sout_widgets.$(OBJEXT)
-rm -f components/sout/libqt4_plugin_la-sout_widgets.lo
-rm -f components/sout/libqt4_plugin_la-sout_widgets.moc.$(OBJEXT)
-rm -f components/sout/libqt4_plugin_la-sout_widgets.moc.lo
-rm -f dialogs/libqt4_plugin_la-bookmarks.$(OBJEXT)
-rm -f dialogs/libqt4_plugin_la-bookmarks.lo
-rm -f dialogs/libqt4_plugin_la-bookmarks.moc.$(OBJEXT)
-rm -f dialogs/libqt4_plugin_la-bookmarks.moc.lo
-rm -f dialogs/libqt4_plugin_la-convert.$(OBJEXT)
-rm -f dialogs/libqt4_plugin_la-convert.lo
-rm -f dialogs/libqt4_plugin_la-convert.moc.$(OBJEXT)
-rm -f dialogs/libqt4_plugin_la-convert.moc.lo
-rm -f dialogs/libqt4_plugin_la-epg.$(OBJEXT)
-rm -f dialogs/libqt4_plugin_la-epg.lo
-rm -f dialogs/libqt4_plugin_la-epg.moc.$(OBJEXT)
-rm -f dialogs/libqt4_plugin_la-epg.moc.lo
-rm -f dialogs/libqt4_plugin_la-errors.$(OBJEXT)
-rm -f dialogs/libqt4_plugin_la-errors.lo
-rm -f dialogs/libqt4_plugin_la-errors.moc.$(OBJEXT)
-rm -f dialogs/libqt4_plugin_la-errors.moc.lo
-rm -f dialogs/libqt4_plugin_la-extended.$(OBJEXT)
-rm -f dialogs/libqt4_plugin_la-extended.lo
-rm -f dialogs/libqt4_plugin_la-extended.moc.$(OBJEXT)
-rm -f dialogs/libqt4_plugin_la-extended.moc.lo
-rm -f dialogs/libqt4_plugin_la-extensions.$(OBJEXT)
-rm -f dialogs/libqt4_plugin_la-extensions.lo
-rm -f dialogs/libqt4_plugin_la-extensions.moc.$(OBJEXT)
-rm -f dialogs/libqt4_plugin_la-extensions.moc.lo
-rm -f dialogs/libqt4_plugin_la-external.$(OBJEXT)
-rm -f dialogs/libqt4_plugin_la-external.lo
-rm -f dialogs/libqt4_plugin_la-external.moc.$(OBJEXT)
-rm -f dialogs/libqt4_plugin_la-external.moc.lo
-rm -f dialogs/libqt4_plugin_la-firstrun.$(OBJEXT)
-rm -f dialogs/libqt4_plugin_la-firstrun.lo
-rm -f dialogs/libqt4_plugin_la-firstrun.moc.$(OBJEXT)
-rm -f dialogs/libqt4_plugin_la-firstrun.moc.lo
-rm -f dialogs/libqt4_plugin_la-gototime.$(OBJEXT)
-rm -f dialogs/libqt4_plugin_la-gototime.lo
-rm -f dialogs/libqt4_plugin_la-gototime.moc.$(OBJEXT)
-rm -f dialogs/libqt4_plugin_la-gototime.moc.lo
-rm -f dialogs/libqt4_plugin_la-help.$(OBJEXT)
-rm -f dialogs/libqt4_plugin_la-help.lo
-rm -f dialogs/libqt4_plugin_la-help.moc.$(OBJEXT)
-rm -f dialogs/libqt4_plugin_la-help.moc.lo
-rm -f dialogs/libqt4_plugin_la-mediainfo.$(OBJEXT)
-rm -f dialogs/libqt4_plugin_la-mediainfo.lo
-rm -f dialogs/libqt4_plugin_la-mediainfo.moc.$(OBJEXT)
-rm -f dialogs/libqt4_plugin_la-mediainfo.moc.lo
-rm -f dialogs/libqt4_plugin_la-messages.$(OBJEXT)
-rm -f dialogs/libqt4_plugin_la-messages.lo
-rm -f dialogs/libqt4_plugin_la-messages.moc.$(OBJEXT)
-rm -f dialogs/libqt4_plugin_la-messages.moc.lo
-rm -f dialogs/libqt4_plugin_la-open.$(OBJEXT)
-rm -f dialogs/libqt4_plugin_la-open.lo
-rm -f dialogs/libqt4_plugin_la-open.moc.$(OBJEXT)
-rm -f dialogs/libqt4_plugin_la-open.moc.lo
-rm -f dialogs/libqt4_plugin_la-openurl.$(OBJEXT)
-rm -f dialogs/libqt4_plugin_la-openurl.lo
-rm -f dialogs/libqt4_plugin_la-openurl.moc.$(OBJEXT)
-rm -f dialogs/libqt4_plugin_la-openurl.moc.lo
-rm -f dialogs/libqt4_plugin_la-playlist.$(OBJEXT)
-rm -f dialogs/libqt4_plugin_la-playlist.lo
-rm -f dialogs/libqt4_plugin_la-playlist.moc.$(OBJEXT)
-rm -f dialogs/libqt4_plugin_la-playlist.moc.lo
-rm -f dialogs/libqt4_plugin_la-plugins.$(OBJEXT)
-rm -f dialogs/libqt4_plugin_la-plugins.lo
-rm -f dialogs/libqt4_plugin_la-plugins.moc.$(OBJEXT)
-rm -f dialogs/libqt4_plugin_la-plugins.moc.lo
-rm -f dialogs/libqt4_plugin_la-podcast_configuration.$(OBJEXT)
-rm -f dialogs/libqt4_plugin_la-podcast_configuration.lo
-rm -f dialogs/libqt4_plugin_la-podcast_configuration.moc.$(OBJEXT)
-rm -f dialogs/libqt4_plugin_la-podcast_configuration.moc.lo
-rm -f dialogs/libqt4_plugin_la-preferences.$(OBJEXT)
-rm -f dialogs/libqt4_plugin_la-preferences.lo
-rm -f dialogs/libqt4_plugin_la-preferences.moc.$(OBJEXT)
-rm -f dialogs/libqt4_plugin_la-preferences.moc.lo
-rm -f dialogs/libqt4_plugin_la-sout.$(OBJEXT)
-rm -f dialogs/libqt4_plugin_la-sout.lo
-rm -f dialogs/libqt4_plugin_la-sout.moc.$(OBJEXT)
-rm -f dialogs/libqt4_plugin_la-sout.moc.lo
-rm -f dialogs/libqt4_plugin_la-toolbar.$(OBJEXT)
-rm -f dialogs/libqt4_plugin_la-toolbar.lo
-rm -f dialogs/libqt4_plugin_la-toolbar.moc.$(OBJEXT)
-rm -f dialogs/libqt4_plugin_la-toolbar.moc.lo
-rm -f dialogs/libqt4_plugin_la-vlm.$(OBJEXT)
-rm -f dialogs/libqt4_plugin_la-vlm.lo
-rm -f dialogs/libqt4_plugin_la-vlm.moc.$(OBJEXT)
-rm -f dialogs/libqt4_plugin_la-vlm.moc.lo
-rm -f util/libqt4_plugin_la-customwidgets.$(OBJEXT)
-rm -f util/libqt4_plugin_la-customwidgets.lo
-rm -f util/libqt4_plugin_la-customwidgets.moc.$(OBJEXT)
-rm -f util/libqt4_plugin_la-customwidgets.moc.lo
-rm -f util/libqt4_plugin_la-input_slider.$(OBJEXT)
-rm -f util/libqt4_plugin_la-input_slider.lo
-rm -f util/libqt4_plugin_la-input_slider.moc.$(OBJEXT)
-rm -f util/libqt4_plugin_la-input_slider.moc.lo
-rm -f util/libqt4_plugin_la-qvlcapp.moc.$(OBJEXT)
-rm -f util/libqt4_plugin_la-qvlcapp.moc.lo
-rm -f util/libqt4_plugin_la-registry.$(OBJEXT)
-rm -f util/libqt4_plugin_la-registry.lo
distclean-compile:
-rm -f *.tab.c
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libqt4_plugin_la-actions_manager.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libqt4_plugin_la-actions_manager.moc.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libqt4_plugin_la-dialogs_provider.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libqt4_plugin_la-dialogs_provider.moc.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libqt4_plugin_la-extensions_manager.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libqt4_plugin_la-extensions_manager.moc.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libqt4_plugin_la-input_manager.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libqt4_plugin_la-input_manager.moc.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libqt4_plugin_la-main_interface.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libqt4_plugin_la-main_interface.moc.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libqt4_plugin_la-main_interface_win32.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libqt4_plugin_la-menus.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libqt4_plugin_la-menus.moc.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libqt4_plugin_la-qt4.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libqt4_plugin_la-recents.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libqt4_plugin_la-recents.moc.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libqt4_plugin_la-resources.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libqt4_plugin_la-variables.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libqt4_plugin_la-variables.moc.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@components/$(DEPDIR)/libqt4_plugin_la-complete_preferences.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@components/$(DEPDIR)/libqt4_plugin_la-complete_preferences.moc.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@components/$(DEPDIR)/libqt4_plugin_la-controller.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@components/$(DEPDIR)/libqt4_plugin_la-controller.moc.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@components/$(DEPDIR)/libqt4_plugin_la-controller_widget.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@components/$(DEPDIR)/libqt4_plugin_la-controller_widget.moc.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@components/$(DEPDIR)/libqt4_plugin_la-extended_panels.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@components/$(DEPDIR)/libqt4_plugin_la-extended_panels.moc.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@components/$(DEPDIR)/libqt4_plugin_la-info_panels.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@components/$(DEPDIR)/libqt4_plugin_la-info_panels.moc.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@components/$(DEPDIR)/libqt4_plugin_la-interface_widgets.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@components/$(DEPDIR)/libqt4_plugin_la-interface_widgets.moc.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@components/$(DEPDIR)/libqt4_plugin_la-open_panels.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@components/$(DEPDIR)/libqt4_plugin_la-open_panels.moc.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@components/$(DEPDIR)/libqt4_plugin_la-preferences_widgets.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@components/$(DEPDIR)/libqt4_plugin_la-preferences_widgets.moc.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@components/$(DEPDIR)/libqt4_plugin_la-simple_preferences.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@components/$(DEPDIR)/libqt4_plugin_la-simple_preferences.moc.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@components/epg/$(DEPDIR)/libqt4_plugin_la-EPGChannels.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@components/epg/$(DEPDIR)/libqt4_plugin_la-EPGChannels.moc.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@components/epg/$(DEPDIR)/libqt4_plugin_la-EPGItem.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@components/epg/$(DEPDIR)/libqt4_plugin_la-EPGRuler.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@components/epg/$(DEPDIR)/libqt4_plugin_la-EPGRuler.moc.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@components/epg/$(DEPDIR)/libqt4_plugin_la-EPGView.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@components/epg/$(DEPDIR)/libqt4_plugin_la-EPGView.moc.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@components/epg/$(DEPDIR)/libqt4_plugin_la-EPGWidget.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@components/epg/$(DEPDIR)/libqt4_plugin_la-EPGWidget.moc.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@components/playlist/$(DEPDIR)/libqt4_plugin_la-icon_view.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@components/playlist/$(DEPDIR)/libqt4_plugin_la-icon_view.moc.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@components/playlist/$(DEPDIR)/libqt4_plugin_la-playlist.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@components/playlist/$(DEPDIR)/libqt4_plugin_la-playlist.moc.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@components/playlist/$(DEPDIR)/libqt4_plugin_la-playlist_item.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@components/playlist/$(DEPDIR)/libqt4_plugin_la-playlist_model.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@components/playlist/$(DEPDIR)/libqt4_plugin_la-playlist_model.moc.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@components/playlist/$(DEPDIR)/libqt4_plugin_la-selector.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@components/playlist/$(DEPDIR)/libqt4_plugin_la-selector.moc.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@components/playlist/$(DEPDIR)/libqt4_plugin_la-standardpanel.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@components/playlist/$(DEPDIR)/libqt4_plugin_la-standardpanel.moc.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@components/sout/$(DEPDIR)/libqt4_plugin_la-profile_selector.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@components/sout/$(DEPDIR)/libqt4_plugin_la-profile_selector.moc.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@components/sout/$(DEPDIR)/libqt4_plugin_la-sout_widgets.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@components/sout/$(DEPDIR)/libqt4_plugin_la-sout_widgets.moc.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@dialogs/$(DEPDIR)/libqt4_plugin_la-bookmarks.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@dialogs/$(DEPDIR)/libqt4_plugin_la-bookmarks.moc.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@dialogs/$(DEPDIR)/libqt4_plugin_la-convert.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@dialogs/$(DEPDIR)/libqt4_plugin_la-convert.moc.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@dialogs/$(DEPDIR)/libqt4_plugin_la-epg.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@dialogs/$(DEPDIR)/libqt4_plugin_la-epg.moc.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@dialogs/$(DEPDIR)/libqt4_plugin_la-errors.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@dialogs/$(DEPDIR)/libqt4_plugin_la-errors.moc.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@dialogs/$(DEPDIR)/libqt4_plugin_la-extended.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@dialogs/$(DEPDIR)/libqt4_plugin_la-extended.moc.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@dialogs/$(DEPDIR)/libqt4_plugin_la-extensions.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@dialogs/$(DEPDIR)/libqt4_plugin_la-extensions.moc.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@dialogs/$(DEPDIR)/libqt4_plugin_la-external.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@dialogs/$(DEPDIR)/libqt4_plugin_la-external.moc.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@dialogs/$(DEPDIR)/libqt4_plugin_la-firstrun.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@dialogs/$(DEPDIR)/libqt4_plugin_la-firstrun.moc.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@dialogs/$(DEPDIR)/libqt4_plugin_la-gototime.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@dialogs/$(DEPDIR)/libqt4_plugin_la-gototime.moc.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@dialogs/$(DEPDIR)/libqt4_plugin_la-help.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@dialogs/$(DEPDIR)/libqt4_plugin_la-help.moc.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@dialogs/$(DEPDIR)/libqt4_plugin_la-mediainfo.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@dialogs/$(DEPDIR)/libqt4_plugin_la-mediainfo.moc.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@dialogs/$(DEPDIR)/libqt4_plugin_la-messages.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@dialogs/$(DEPDIR)/libqt4_plugin_la-messages.moc.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@dialogs/$(DEPDIR)/libqt4_plugin_la-open.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@dialogs/$(DEPDIR)/libqt4_plugin_la-open.moc.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@dialogs/$(DEPDIR)/libqt4_plugin_la-openurl.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@dialogs/$(DEPDIR)/libqt4_plugin_la-openurl.moc.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@dialogs/$(DEPDIR)/libqt4_plugin_la-playlist.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@dialogs/$(DEPDIR)/libqt4_plugin_la-playlist.moc.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@dialogs/$(DEPDIR)/libqt4_plugin_la-plugins.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@dialogs/$(DEPDIR)/libqt4_plugin_la-plugins.moc.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@dialogs/$(DEPDIR)/libqt4_plugin_la-podcast_configuration.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@dialogs/$(DEPDIR)/libqt4_plugin_la-podcast_configuration.moc.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@dialogs/$(DEPDIR)/libqt4_plugin_la-preferences.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@dialogs/$(DEPDIR)/libqt4_plugin_la-preferences.moc.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@dialogs/$(DEPDIR)/libqt4_plugin_la-sout.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@dialogs/$(DEPDIR)/libqt4_plugin_la-sout.moc.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@dialogs/$(DEPDIR)/libqt4_plugin_la-toolbar.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@dialogs/$(DEPDIR)/libqt4_plugin_la-toolbar.moc.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@dialogs/$(DEPDIR)/libqt4_plugin_la-vlm.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@dialogs/$(DEPDIR)/libqt4_plugin_la-vlm.moc.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@util/$(DEPDIR)/libqt4_plugin_la-customwidgets.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@util/$(DEPDIR)/libqt4_plugin_la-customwidgets.moc.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@util/$(DEPDIR)/libqt4_plugin_la-input_slider.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@util/$(DEPDIR)/libqt4_plugin_la-input_slider.moc.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@util/$(DEPDIR)/libqt4_plugin_la-qvlcapp.moc.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@util/$(DEPDIR)/libqt4_plugin_la-registry.Plo@am__quote@
.cpp.o:
@am__fastdepCXX_TRUE@ $(AM_V_CXX)depbase=`echo $@ | sed 's|[^/]*$$|$(DEPDIR)/&|;s|\.o$$||'`;\
@am__fastdepCXX_TRUE@ $(CXXCOMPILE) -MT $@ -MD -MP -MF $$depbase.Tpo -c -o $@ $< &&\
@am__fastdepCXX_TRUE@ $(am__mv) $$depbase.Tpo $$depbase.Po
@am__fastdepCXX_FALSE@ $(AM_V_CXX) @AM_BACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='$<' object='$@' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@ $(CXXCOMPILE) -c -o $@ $<
.cpp.obj:
@am__fastdepCXX_TRUE@ $(AM_V_CXX)depbase=`echo $@ | sed 's|[^/]*$$|$(DEPDIR)/&|;s|\.obj$$||'`;\
@am__fastdepCXX_TRUE@ $(CXXCOMPILE) -MT $@ -MD -MP -MF $$depbase.Tpo -c -o $@ `$(CYGPATH_W) '$<'` &&\
@am__fastdepCXX_TRUE@ $(am__mv) $$depbase.Tpo $$depbase.Po
@am__fastdepCXX_FALSE@ $(AM_V_CXX) @AM_BACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='$<' object='$@' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@ $(CXXCOMPILE) -c -o $@ `$(CYGPATH_W) '$<'`
.cpp.lo:
@am__fastdepCXX_TRUE@ $(AM_V_CXX)depbase=`echo $@ | sed 's|[^/]*$$|$(DEPDIR)/&|;s|\.lo$$||'`;\
@am__fastdepCXX_TRUE@ $(LTCXXCOMPILE) -MT $@ -MD -MP -MF $$depbase.Tpo -c -o $@ $< &&\
@am__fastdepCXX_TRUE@ $(am__mv) $$depbase.Tpo $$depbase.Plo
@am__fastdepCXX_FALSE@ $(AM_V_CXX) @AM_BACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='$<' object='$@' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@ $(LTCXXCOMPILE) -c -o $@ $<
libqt4_plugin_la-qt4.lo: qt4.cpp
@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libqt4_plugin_la_CXXFLAGS) $(CXXFLAGS) -MT libqt4_plugin_la-qt4.lo -MD -MP -MF $(DEPDIR)/libqt4_plugin_la-qt4.Tpo -c -o libqt4_plugin_la-qt4.lo `test -f 'qt4.cpp' || echo '$(srcdir)/'`qt4.cpp
@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libqt4_plugin_la-qt4.Tpo $(DEPDIR)/libqt4_plugin_la-qt4.Plo
@am__fastdepCXX_FALSE@ $(AM_V_CXX) @AM_BACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='qt4.cpp' object='libqt4_plugin_la-qt4.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@ $(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libqt4_plugin_la_CXXFLAGS) $(CXXFLAGS) -c -o libqt4_plugin_la-qt4.lo `test -f 'qt4.cpp' || echo '$(srcdir)/'`qt4.cpp
libqt4_plugin_la-menus.lo: menus.cpp
@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libqt4_plugin_la_CXXFLAGS) $(CXXFLAGS) -MT libqt4_plugin_la-menus.lo -MD -MP -MF $(DEPDIR)/libqt4_plugin_la-menus.Tpo -c -o libqt4_plugin_la-menus.lo `test -f 'menus.cpp' || echo '$(srcdir)/'`menus.cpp
@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libqt4_plugin_la-menus.Tpo $(DEPDIR)/libqt4_plugin_la-menus.Plo
@am__fastdepCXX_FALSE@ $(AM_V_CXX) @AM_BACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='menus.cpp' object='libqt4_plugin_la-menus.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@ $(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libqt4_plugin_la_CXXFLAGS) $(CXXFLAGS) -c -o libqt4_plugin_la-menus.lo `test -f 'menus.cpp' || echo '$(srcdir)/'`menus.cpp
libqt4_plugin_la-main_interface.lo: main_interface.cpp
@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libqt4_plugin_la_CXXFLAGS) $(CXXFLAGS) -MT libqt4_plugin_la-main_interface.lo -MD -MP -MF $(DEPDIR)/libqt4_plugin_la-main_interface.Tpo -c -o libqt4_plugin_la-main_interface.lo `test -f 'main_interface.cpp' || echo '$(srcdir)/'`main_interface.cpp
@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libqt4_plugin_la-main_interface.Tpo $(DEPDIR)/libqt4_plugin_la-main_interface.Plo
@am__fastdepCXX_FALSE@ $(AM_V_CXX) @AM_BACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='main_interface.cpp' object='libqt4_plugin_la-main_interface.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@ $(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libqt4_plugin_la_CXXFLAGS) $(CXXFLAGS) -c -o libqt4_plugin_la-main_interface.lo `test -f 'main_interface.cpp' || echo '$(srcdir)/'`main_interface.cpp
libqt4_plugin_la-main_interface_win32.lo: main_interface_win32.cpp
@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libqt4_plugin_la_CXXFLAGS) $(CXXFLAGS) -MT libqt4_plugin_la-main_interface_win32.lo -MD -MP -MF $(DEPDIR)/libqt4_plugin_la-main_interface_win32.Tpo -c -o libqt4_plugin_la-main_interface_win32.lo `test -f 'main_interface_win32.cpp' || echo '$(srcdir)/'`main_interface_win32.cpp
@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libqt4_plugin_la-main_interface_win32.Tpo $(DEPDIR)/libqt4_plugin_la-main_interface_win32.Plo
@am__fastdepCXX_FALSE@ $(AM_V_CXX) @AM_BACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='main_interface_win32.cpp' object='libqt4_plugin_la-main_interface_win32.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@ $(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libqt4_plugin_la_CXXFLAGS) $(CXXFLAGS) -c -o libqt4_plugin_la-main_interface_win32.lo `test -f 'main_interface_win32.cpp' || echo '$(srcdir)/'`main_interface_win32.cpp
libqt4_plugin_la-dialogs_provider.lo: dialogs_provider.cpp
@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libqt4_plugin_la_CXXFLAGS) $(CXXFLAGS) -MT libqt4_plugin_la-dialogs_provider.lo -MD -MP -MF $(DEPDIR)/libqt4_plugin_la-dialogs_provider.Tpo -c -o libqt4_plugin_la-dialogs_provider.lo `test -f 'dialogs_provider.cpp' || echo '$(srcdir)/'`dialogs_provider.cpp
@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libqt4_plugin_la-dialogs_provider.Tpo $(DEPDIR)/libqt4_plugin_la-dialogs_provider.Plo
@am__fastdepCXX_FALSE@ $(AM_V_CXX) @AM_BACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='dialogs_provider.cpp' object='libqt4_plugin_la-dialogs_provider.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@ $(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libqt4_plugin_la_CXXFLAGS) $(CXXFLAGS) -c -o libqt4_plugin_la-dialogs_provider.lo `test -f 'dialogs_provider.cpp' || echo '$(srcdir)/'`dialogs_provider.cpp
libqt4_plugin_la-input_manager.lo: input_manager.cpp
@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libqt4_plugin_la_CXXFLAGS) $(CXXFLAGS) -MT libqt4_plugin_la-input_manager.lo -MD -MP -MF $(DEPDIR)/libqt4_plugin_la-input_manager.Tpo -c -o libqt4_plugin_la-input_manager.lo `test -f 'input_manager.cpp' || echo '$(srcdir)/'`input_manager.cpp
@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libqt4_plugin_la-input_manager.Tpo $(DEPDIR)/libqt4_plugin_la-input_manager.Plo
@am__fastdepCXX_FALSE@ $(AM_V_CXX) @AM_BACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='input_manager.cpp' object='libqt4_plugin_la-input_manager.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@ $(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libqt4_plugin_la_CXXFLAGS) $(CXXFLAGS) -c -o libqt4_plugin_la-input_manager.lo `test -f 'input_manager.cpp' || echo '$(srcdir)/'`input_manager.cpp
libqt4_plugin_la-actions_manager.lo: actions_manager.cpp
@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libqt4_plugin_la_CXXFLAGS) $(CXXFLAGS) -MT libqt4_plugin_la-actions_manager.lo -MD -MP -MF $(DEPDIR)/libqt4_plugin_la-actions_manager.Tpo -c -o libqt4_plugin_la-actions_manager.lo `test -f 'actions_manager.cpp' || echo '$(srcdir)/'`actions_manager.cpp
@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libqt4_plugin_la-actions_manager.Tpo $(DEPDIR)/libqt4_plugin_la-actions_manager.Plo
@am__fastdepCXX_FALSE@ $(AM_V_CXX) @AM_BACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='actions_manager.cpp' object='libqt4_plugin_la-actions_manager.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@ $(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libqt4_plugin_la_CXXFLAGS) $(CXXFLAGS) -c -o libqt4_plugin_la-actions_manager.lo `test -f 'actions_manager.cpp' || echo '$(srcdir)/'`actions_manager.cpp
libqt4_plugin_la-extensions_manager.lo: extensions_manager.cpp
@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libqt4_plugin_la_CXXFLAGS) $(CXXFLAGS) -MT libqt4_plugin_la-extensions_manager.lo -MD -MP -MF $(DEPDIR)/libqt4_plugin_la-extensions_manager.Tpo -c -o libqt4_plugin_la-extensions_manager.lo `test -f 'extensions_manager.cpp' || echo '$(srcdir)/'`extensions_manager.cpp
@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libqt4_plugin_la-extensions_manager.Tpo $(DEPDIR)/libqt4_plugin_la-extensions_manager.Plo
@am__fastdepCXX_FALSE@ $(AM_V_CXX) @AM_BACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='extensions_manager.cpp' object='libqt4_plugin_la-extensions_manager.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@ $(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libqt4_plugin_la_CXXFLAGS) $(CXXFLAGS) -c -o libqt4_plugin_la-extensions_manager.lo `test -f 'extensions_manager.cpp' || echo '$(srcdir)/'`extensions_manager.cpp
libqt4_plugin_la-recents.lo: recents.cpp
@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libqt4_plugin_la_CXXFLAGS) $(CXXFLAGS) -MT libqt4_plugin_la-recents.lo -MD -MP -MF $(DEPDIR)/libqt4_plugin_la-recents.Tpo -c -o libqt4_plugin_la-recents.lo `test -f 'recents.cpp' || echo '$(srcdir)/'`recents.cpp
@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libqt4_plugin_la-recents.Tpo $(DEPDIR)/libqt4_plugin_la-recents.Plo
@am__fastdepCXX_FALSE@ $(AM_V_CXX) @AM_BACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='recents.cpp' object='libqt4_plugin_la-recents.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@ $(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libqt4_plugin_la_CXXFLAGS) $(CXXFLAGS) -c -o libqt4_plugin_la-recents.lo `test -f 'recents.cpp' || echo '$(srcdir)/'`recents.cpp
libqt4_plugin_la-variables.lo: variables.cpp
@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libqt4_plugin_la_CXXFLAGS) $(CXXFLAGS) -MT libqt4_plugin_la-variables.lo -MD -MP -MF $(DEPDIR)/libqt4_plugin_la-variables.Tpo -c -o libqt4_plugin_la-variables.lo `test -f 'variables.cpp' || echo '$(srcdir)/'`variables.cpp
@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libqt4_plugin_la-variables.Tpo $(DEPDIR)/libqt4_plugin_la-variables.Plo
@am__fastdepCXX_FALSE@ $(AM_V_CXX) @AM_BACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='variables.cpp' object='libqt4_plugin_la-variables.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@ $(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libqt4_plugin_la_CXXFLAGS) $(CXXFLAGS) -c -o libqt4_plugin_la-variables.lo `test -f 'variables.cpp' || echo '$(srcdir)/'`variables.cpp
dialogs/libqt4_plugin_la-playlist.lo: dialogs/playlist.cpp
@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libqt4_plugin_la_CXXFLAGS) $(CXXFLAGS) -MT dialogs/libqt4_plugin_la-playlist.lo -MD -MP -MF dialogs/$(DEPDIR)/libqt4_plugin_la-playlist.Tpo -c -o dialogs/libqt4_plugin_la-playlist.lo `test -f 'dialogs/playlist.cpp' || echo '$(srcdir)/'`dialogs/playlist.cpp
@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) dialogs/$(DEPDIR)/libqt4_plugin_la-playlist.Tpo dialogs/$(DEPDIR)/libqt4_plugin_la-playlist.Plo
@am__fastdepCXX_FALSE@ $(AM_V_CXX) @AM_BACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='dialogs/playlist.cpp' object='dialogs/libqt4_plugin_la-playlist.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@ $(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libqt4_plugin_la_CXXFLAGS) $(CXXFLAGS) -c -o dialogs/libqt4_plugin_la-playlist.lo `test -f 'dialogs/playlist.cpp' || echo '$(srcdir)/'`dialogs/playlist.cpp
dialogs/libqt4_plugin_la-bookmarks.lo: dialogs/bookmarks.cpp
@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libqt4_plugin_la_CXXFLAGS) $(CXXFLAGS) -MT dialogs/libqt4_plugin_la-bookmarks.lo -MD -MP -MF dialogs/$(DEPDIR)/libqt4_plugin_la-bookmarks.Tpo -c -o dialogs/libqt4_plugin_la-bookmarks.lo `test -f 'dialogs/bookmarks.cpp' || echo '$(srcdir)/'`dialogs/bookmarks.cpp
@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) dialogs/$(DEPDIR)/libqt4_plugin_la-bookmarks.Tpo dialogs/$(DEPDIR)/libqt4_plugin_la-bookmarks.Plo
@am__fastdepCXX_FALSE@ $(AM_V_CXX) @AM_BACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='dialogs/bookmarks.cpp' object='dialogs/libqt4_plugin_la-bookmarks.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@ $(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libqt4_plugin_la_CXXFLAGS) $(CXXFLAGS) -c -o dialogs/libqt4_plugin_la-bookmarks.lo `test -f 'dialogs/bookmarks.cpp' || echo '$(srcdir)/'`dialogs/bookmarks.cpp
dialogs/libqt4_plugin_la-preferences.lo: dialogs/preferences.cpp
@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libqt4_plugin_la_CXXFLAGS) $(CXXFLAGS) -MT dialogs/libqt4_plugin_la-preferences.lo -MD -MP -MF dialogs/$(DEPDIR)/libqt4_plugin_la-preferences.Tpo -c -o dialogs/libqt4_plugin_la-preferences.lo `test -f 'dialogs/preferences.cpp' || echo '$(srcdir)/'`dialogs/preferences.cpp
@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) dialogs/$(DEPDIR)/libqt4_plugin_la-preferences.Tpo dialogs/$(DEPDIR)/libqt4_plugin_la-preferences.Plo
@am__fastdepCXX_FALSE@ $(AM_V_CXX) @AM_BACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='dialogs/preferences.cpp' object='dialogs/libqt4_plugin_la-preferences.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@ $(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libqt4_plugin_la_CXXFLAGS) $(CXXFLAGS) -c -o dialogs/libqt4_plugin_la-preferences.lo `test -f 'dialogs/preferences.cpp' || echo '$(srcdir)/'`dialogs/preferences.cpp
dialogs/libqt4_plugin_la-mediainfo.lo: dialogs/mediainfo.cpp
@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libqt4_plugin_la_CXXFLAGS) $(CXXFLAGS) -MT dialogs/libqt4_plugin_la-mediainfo.lo -MD -MP -MF dialogs/$(DEPDIR)/libqt4_plugin_la-mediainfo.Tpo -c -o dialogs/libqt4_plugin_la-mediainfo.lo `test -f 'dialogs/mediainfo.cpp' || echo '$(srcdir)/'`dialogs/mediainfo.cpp
@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) dialogs/$(DEPDIR)/libqt4_plugin_la-mediainfo.Tpo dialogs/$(DEPDIR)/libqt4_plugin_la-mediainfo.Plo
@am__fastdepCXX_FALSE@ $(AM_V_CXX) @AM_BACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='dialogs/mediainfo.cpp' object='dialogs/libqt4_plugin_la-mediainfo.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@ $(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libqt4_plugin_la_CXXFLAGS) $(CXXFLAGS) -c -o dialogs/libqt4_plugin_la-mediainfo.lo `test -f 'dialogs/mediainfo.cpp' || echo '$(srcdir)/'`dialogs/mediainfo.cpp
dialogs/libqt4_plugin_la-epg.lo: dialogs/epg.cpp
@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libqt4_plugin_la_CXXFLAGS) $(CXXFLAGS) -MT dialogs/libqt4_plugin_la-epg.lo -MD -MP -MF dialogs/$(DEPDIR)/libqt4_plugin_la-epg.Tpo -c -o dialogs/libqt4_plugin_la-epg.lo `test -f 'dialogs/epg.cpp' || echo '$(srcdir)/'`dialogs/epg.cpp
@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) dialogs/$(DEPDIR)/libqt4_plugin_la-epg.Tpo dialogs/$(DEPDIR)/libqt4_plugin_la-epg.Plo
@am__fastdepCXX_FALSE@ $(AM_V_CXX) @AM_BACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='dialogs/epg.cpp' object='dialogs/libqt4_plugin_la-epg.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@ $(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libqt4_plugin_la_CXXFLAGS) $(CXXFLAGS) -c -o dialogs/libqt4_plugin_la-epg.lo `test -f 'dialogs/epg.cpp' || echo '$(srcdir)/'`dialogs/epg.cpp
dialogs/libqt4_plugin_la-extended.lo: dialogs/extended.cpp
@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libqt4_plugin_la_CXXFLAGS) $(CXXFLAGS) -MT dialogs/libqt4_plugin_la-extended.lo -MD -MP -MF dialogs/$(DEPDIR)/libqt4_plugin_la-extended.Tpo -c -o dialogs/libqt4_plugin_la-extended.lo `test -f 'dialogs/extended.cpp' || echo '$(srcdir)/'`dialogs/extended.cpp
@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) dialogs/$(DEPDIR)/libqt4_plugin_la-extended.Tpo dialogs/$(DEPDIR)/libqt4_plugin_la-extended.Plo
@am__fastdepCXX_FALSE@ $(AM_V_CXX) @AM_BACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='dialogs/extended.cpp' object='dialogs/libqt4_plugin_la-extended.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@ $(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libqt4_plugin_la_CXXFLAGS) $(CXXFLAGS) -c -o dialogs/libqt4_plugin_la-extended.lo `test -f 'dialogs/extended.cpp' || echo '$(srcdir)/'`dialogs/extended.cpp
dialogs/libqt4_plugin_la-messages.lo: dialogs/messages.cpp
@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libqt4_plugin_la_CXXFLAGS) $(CXXFLAGS) -MT dialogs/libqt4_plugin_la-messages.lo -MD -MP -MF dialogs/$(DEPDIR)/libqt4_plugin_la-messages.Tpo -c -o dialogs/libqt4_plugin_la-messages.lo `test -f 'dialogs/messages.cpp' || echo '$(srcdir)/'`dialogs/messages.cpp
@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) dialogs/$(DEPDIR)/libqt4_plugin_la-messages.Tpo dialogs/$(DEPDIR)/libqt4_plugin_la-messages.Plo
@am__fastdepCXX_FALSE@ $(AM_V_CXX) @AM_BACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='dialogs/messages.cpp' object='dialogs/libqt4_plugin_la-messages.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@ $(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libqt4_plugin_la_CXXFLAGS) $(CXXFLAGS) -c -o dialogs/libqt4_plugin_la-messages.lo `test -f 'dialogs/messages.cpp' || echo '$(srcdir)/'`dialogs/messages.cpp
dialogs/libqt4_plugin_la-errors.lo: dialogs/errors.cpp
@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libqt4_plugin_la_CXXFLAGS) $(CXXFLAGS) -MT dialogs/libqt4_plugin_la-errors.lo -MD -MP -MF dialogs/$(DEPDIR)/libqt4_plugin_la-errors.Tpo -c -o dialogs/libqt4_plugin_la-errors.lo `test -f 'dialogs/errors.cpp' || echo '$(srcdir)/'`dialogs/errors.cpp
@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) dialogs/$(DEPDIR)/libqt4_plugin_la-errors.Tpo dialogs/$(DEPDIR)/libqt4_plugin_la-errors.Plo
@am__fastdepCXX_FALSE@ $(AM_V_CXX) @AM_BACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='dialogs/errors.cpp' object='dialogs/libqt4_plugin_la-errors.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@ $(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libqt4_plugin_la_CXXFLAGS) $(CXXFLAGS) -c -o dialogs/libqt4_plugin_la-errors.lo `test -f 'dialogs/errors.cpp' || echo '$(srcdir)/'`dialogs/errors.cpp
dialogs/libqt4_plugin_la-external.lo: dialogs/external.cpp
@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libqt4_plugin_la_CXXFLAGS) $(CXXFLAGS) -MT dialogs/libqt4_plugin_la-external.lo -MD -MP -MF dialogs/$(DEPDIR)/libqt4_plugin_la-external.Tpo -c -o dialogs/libqt4_plugin_la-external.lo `test -f 'dialogs/external.cpp' || echo '$(srcdir)/'`dialogs/external.cpp
@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) dialogs/$(DEPDIR)/libqt4_plugin_la-external.Tpo dialogs/$(DEPDIR)/libqt4_plugin_la-external.Plo
@am__fastdepCXX_FALSE@ $(AM_V_CXX) @AM_BACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='dialogs/external.cpp' object='dialogs/libqt4_plugin_la-external.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@ $(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libqt4_plugin_la_CXXFLAGS) $(CXXFLAGS) -c -o dialogs/libqt4_plugin_la-external.lo `test -f 'dialogs/external.cpp' || echo '$(srcdir)/'`dialogs/external.cpp
dialogs/libqt4_plugin_la-plugins.lo: dialogs/plugins.cpp
@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libqt4_plugin_la_CXXFLAGS) $(CXXFLAGS) -MT dialogs/libqt4_plugin_la-plugins.lo -MD -MP -MF dialogs/$(DEPDIR)/libqt4_plugin_la-plugins.Tpo -c -o dialogs/libqt4_plugin_la-plugins.lo `test -f 'dialogs/plugins.cpp' || echo '$(srcdir)/'`dialogs/plugins.cpp
@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) dialogs/$(DEPDIR)/libqt4_plugin_la-plugins.Tpo dialogs/$(DEPDIR)/libqt4_plugin_la-plugins.Plo
@am__fastdepCXX_FALSE@ $(AM_V_CXX) @AM_BACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='dialogs/plugins.cpp' object='dialogs/libqt4_plugin_la-plugins.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@ $(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libqt4_plugin_la_CXXFLAGS) $(CXXFLAGS) -c -o dialogs/libqt4_plugin_la-plugins.lo `test -f 'dialogs/plugins.cpp' || echo '$(srcdir)/'`dialogs/plugins.cpp
dialogs/libqt4_plugin_la-sout.lo: dialogs/sout.cpp
@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libqt4_plugin_la_CXXFLAGS) $(CXXFLAGS) -MT dialogs/libqt4_plugin_la-sout.lo -MD -MP -MF dialogs/$(DEPDIR)/libqt4_plugin_la-sout.Tpo -c -o dialogs/libqt4_plugin_la-sout.lo `test -f 'dialogs/sout.cpp' || echo '$(srcdir)/'`dialogs/sout.cpp
@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) dialogs/$(DEPDIR)/libqt4_plugin_la-sout.Tpo dialogs/$(DEPDIR)/libqt4_plugin_la-sout.Plo
@am__fastdepCXX_FALSE@ $(AM_V_CXX) @AM_BACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='dialogs/sout.cpp' object='dialogs/libqt4_plugin_la-sout.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@ $(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libqt4_plugin_la_CXXFLAGS) $(CXXFLAGS) -c -o dialogs/libqt4_plugin_la-sout.lo `test -f 'dialogs/sout.cpp' || echo '$(srcdir)/'`dialogs/sout.cpp
dialogs/libqt4_plugin_la-convert.lo: dialogs/convert.cpp
@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libqt4_plugin_la_CXXFLAGS) $(CXXFLAGS) -MT dialogs/libqt4_plugin_la-convert.lo -MD -MP -MF dialogs/$(DEPDIR)/libqt4_plugin_la-convert.Tpo -c -o dialogs/libqt4_plugin_la-convert.lo `test -f 'dialogs/convert.cpp' || echo '$(srcdir)/'`dialogs/convert.cpp
@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) dialogs/$(DEPDIR)/libqt4_plugin_la-convert.Tpo dialogs/$(DEPDIR)/libqt4_plugin_la-convert.Plo
@am__fastdepCXX_FALSE@ $(AM_V_CXX) @AM_BACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='dialogs/convert.cpp' object='dialogs/libqt4_plugin_la-convert.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@ $(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libqt4_plugin_la_CXXFLAGS) $(CXXFLAGS) -c -o dialogs/libqt4_plugin_la-convert.lo `test -f 'dialogs/convert.cpp' || echo '$(srcdir)/'`dialogs/convert.cpp
dialogs/libqt4_plugin_la-help.lo: dialogs/help.cpp
@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libqt4_plugin_la_CXXFLAGS) $(CXXFLAGS) -MT dialogs/libqt4_plugin_la-help.lo -MD -MP -MF dialogs/$(DEPDIR)/libqt4_plugin_la-help.Tpo -c -o dialogs/libqt4_plugin_la-help.lo `test -f 'dialogs/help.cpp' || echo '$(srcdir)/'`dialogs/help.cpp
@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) dialogs/$(DEPDIR)/libqt4_plugin_la-help.Tpo dialogs/$(DEPDIR)/libqt4_plugin_la-help.Plo
@am__fastdepCXX_FALSE@ $(AM_V_CXX) @AM_BACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='dialogs/help.cpp' object='dialogs/libqt4_plugin_la-help.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@ $(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libqt4_plugin_la_CXXFLAGS) $(CXXFLAGS) -c -o dialogs/libqt4_plugin_la-help.lo `test -f 'dialogs/help.cpp' || echo '$(srcdir)/'`dialogs/help.cpp
dialogs/libqt4_plugin_la-gototime.lo: dialogs/gototime.cpp
@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libqt4_plugin_la_CXXFLAGS) $(CXXFLAGS) -MT dialogs/libqt4_plugin_la-gototime.lo -MD -MP -MF dialogs/$(DEPDIR)/libqt4_plugin_la-gototime.Tpo -c -o dialogs/libqt4_plugin_la-gototime.lo `test -f 'dialogs/gototime.cpp' || echo '$(srcdir)/'`dialogs/gototime.cpp
@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) dialogs/$(DEPDIR)/libqt4_plugin_la-gototime.Tpo dialogs/$(DEPDIR)/libqt4_plugin_la-gototime.Plo
@am__fastdepCXX_FALSE@ $(AM_V_CXX) @AM_BACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='dialogs/gototime.cpp' object='dialogs/libqt4_plugin_la-gototime.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@ $(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libqt4_plugin_la_CXXFLAGS) $(CXXFLAGS) -c -o dialogs/libqt4_plugin_la-gototime.lo `test -f 'dialogs/gototime.cpp' || echo '$(srcdir)/'`dialogs/gototime.cpp
dialogs/libqt4_plugin_la-toolbar.lo: dialogs/toolbar.cpp
@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libqt4_plugin_la_CXXFLAGS) $(CXXFLAGS) -MT dialogs/libqt4_plugin_la-toolbar.lo -MD -MP -MF dialogs/$(DEPDIR)/libqt4_plugin_la-toolbar.Tpo -c -o dialogs/libqt4_plugin_la-toolbar.lo `test -f 'dialogs/toolbar.cpp' || echo '$(srcdir)/'`dialogs/toolbar.cpp
@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) dialogs/$(DEPDIR)/libqt4_plugin_la-toolbar.Tpo dialogs/$(DEPDIR)/libqt4_plugin_la-toolbar.Plo
@am__fastdepCXX_FALSE@ $(AM_V_CXX) @AM_BACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='dialogs/toolbar.cpp' object='dialogs/libqt4_plugin_la-toolbar.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@ $(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libqt4_plugin_la_CXXFLAGS) $(CXXFLAGS) -c -o dialogs/libqt4_plugin_la-toolbar.lo `test -f 'dialogs/toolbar.cpp' || echo '$(srcdir)/'`dialogs/toolbar.cpp
dialogs/libqt4_plugin_la-open.lo: dialogs/open.cpp
@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libqt4_plugin_la_CXXFLAGS) $(CXXFLAGS) -MT dialogs/libqt4_plugin_la-open.lo -MD -MP -MF dialogs/$(DEPDIR)/libqt4_plugin_la-open.Tpo -c -o dialogs/libqt4_plugin_la-open.lo `test -f 'dialogs/open.cpp' || echo '$(srcdir)/'`dialogs/open.cpp
@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) dialogs/$(DEPDIR)/libqt4_plugin_la-open.Tpo dialogs/$(DEPDIR)/libqt4_plugin_la-open.Plo
@am__fastdepCXX_FALSE@ $(AM_V_CXX) @AM_BACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='dialogs/open.cpp' object='dialogs/libqt4_plugin_la-open.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@ $(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libqt4_plugin_la_CXXFLAGS) $(CXXFLAGS) -c -o dialogs/libqt4_plugin_la-open.lo `test -f 'dialogs/open.cpp' || echo '$(srcdir)/'`dialogs/open.cpp
dialogs/libqt4_plugin_la-openurl.lo: dialogs/openurl.cpp
@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libqt4_plugin_la_CXXFLAGS) $(CXXFLAGS) -MT dialogs/libqt4_plugin_la-openurl.lo -MD -MP -MF dialogs/$(DEPDIR)/libqt4_plugin_la-openurl.Tpo -c -o dialogs/libqt4_plugin_la-openurl.lo `test -f 'dialogs/openurl.cpp' || echo '$(srcdir)/'`dialogs/openurl.cpp
@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) dialogs/$(DEPDIR)/libqt4_plugin_la-openurl.Tpo dialogs/$(DEPDIR)/libqt4_plugin_la-openurl.Plo
@am__fastdepCXX_FALSE@ $(AM_V_CXX) @AM_BACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='dialogs/openurl.cpp' object='dialogs/libqt4_plugin_la-openurl.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@ $(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libqt4_plugin_la_CXXFLAGS) $(CXXFLAGS) -c -o dialogs/libqt4_plugin_la-openurl.lo `test -f 'dialogs/openurl.cpp' || echo '$(srcdir)/'`dialogs/openurl.cpp
dialogs/libqt4_plugin_la-vlm.lo: dialogs/vlm.cpp
@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libqt4_plugin_la_CXXFLAGS) $(CXXFLAGS) -MT dialogs/libqt4_plugin_la-vlm.lo -MD -MP -MF dialogs/$(DEPDIR)/libqt4_plugin_la-vlm.Tpo -c -o dialogs/libqt4_plugin_la-vlm.lo `test -f 'dialogs/vlm.cpp' || echo '$(srcdir)/'`dialogs/vlm.cpp
@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) dialogs/$(DEPDIR)/libqt4_plugin_la-vlm.Tpo dialogs/$(DEPDIR)/libqt4_plugin_la-vlm.Plo
@am__fastdepCXX_FALSE@ $(AM_V_CXX) @AM_BACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='dialogs/vlm.cpp' object='dialogs/libqt4_plugin_la-vlm.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@ $(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libqt4_plugin_la_CXXFLAGS) $(CXXFLAGS) -c -o dialogs/libqt4_plugin_la-vlm.lo `test -f 'dialogs/vlm.cpp' || echo '$(srcdir)/'`dialogs/vlm.cpp
dialogs/libqt4_plugin_la-firstrun.lo: dialogs/firstrun.cpp
@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libqt4_plugin_la_CXXFLAGS) $(CXXFLAGS) -MT dialogs/libqt4_plugin_la-firstrun.lo -MD -MP -MF dialogs/$(DEPDIR)/libqt4_plugin_la-firstrun.Tpo -c -o dialogs/libqt4_plugin_la-firstrun.lo `test -f 'dialogs/firstrun.cpp' || echo '$(srcdir)/'`dialogs/firstrun.cpp
@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) dialogs/$(DEPDIR)/libqt4_plugin_la-firstrun.Tpo dialogs/$(DEPDIR)/libqt4_plugin_la-firstrun.Plo
@am__fastdepCXX_FALSE@ $(AM_V_CXX) @AM_BACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='dialogs/firstrun.cpp' object='dialogs/libqt4_plugin_la-firstrun.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@ $(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libqt4_plugin_la_CXXFLAGS) $(CXXFLAGS) -c -o dialogs/libqt4_plugin_la-firstrun.lo `test -f 'dialogs/firstrun.cpp' || echo '$(srcdir)/'`dialogs/firstrun.cpp
dialogs/libqt4_plugin_la-podcast_configuration.lo: dialogs/podcast_configuration.cpp
@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libqt4_plugin_la_CXXFLAGS) $(CXXFLAGS) -MT dialogs/libqt4_plugin_la-podcast_configuration.lo -MD -MP -MF dialogs/$(DEPDIR)/libqt4_plugin_la-podcast_configuration.Tpo -c -o dialogs/libqt4_plugin_la-podcast_configuration.lo `test -f 'dialogs/podcast_configuration.cpp' || echo '$(srcdir)/'`dialogs/podcast_configuration.cpp
@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) dialogs/$(DEPDIR)/libqt4_plugin_la-podcast_configuration.Tpo dialogs/$(DEPDIR)/libqt4_plugin_la-podcast_configuration.Plo
@am__fastdepCXX_FALSE@ $(AM_V_CXX) @AM_BACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='dialogs/podcast_configuration.cpp' object='dialogs/libqt4_plugin_la-podcast_configuration.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@ $(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libqt4_plugin_la_CXXFLAGS) $(CXXFLAGS) -c -o dialogs/libqt4_plugin_la-podcast_configuration.lo `test -f 'dialogs/podcast_configuration.cpp' || echo '$(srcdir)/'`dialogs/podcast_configuration.cpp
dialogs/libqt4_plugin_la-extensions.lo: dialogs/extensions.cpp
@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libqt4_plugin_la_CXXFLAGS) $(CXXFLAGS) -MT dialogs/libqt4_plugin_la-extensions.lo -MD -MP -MF dialogs/$(DEPDIR)/libqt4_plugin_la-extensions.Tpo -c -o dialogs/libqt4_plugin_la-extensions.lo `test -f 'dialogs/extensions.cpp' || echo '$(srcdir)/'`dialogs/extensions.cpp
@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) dialogs/$(DEPDIR)/libqt4_plugin_la-extensions.Tpo dialogs/$(DEPDIR)/libqt4_plugin_la-extensions.Plo
@am__fastdepCXX_FALSE@ $(AM_V_CXX) @AM_BACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='dialogs/extensions.cpp' object='dialogs/libqt4_plugin_la-extensions.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@ $(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libqt4_plugin_la_CXXFLAGS) $(CXXFLAGS) -c -o dialogs/libqt4_plugin_la-extensions.lo `test -f 'dialogs/extensions.cpp' || echo '$(srcdir)/'`dialogs/extensions.cpp
components/libqt4_plugin_la-extended_panels.lo: components/extended_panels.cpp
@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libqt4_plugin_la_CXXFLAGS) $(CXXFLAGS) -MT components/libqt4_plugin_la-extended_panels.lo -MD -MP -MF components/$(DEPDIR)/libqt4_plugin_la-extended_panels.Tpo -c -o components/libqt4_plugin_la-extended_panels.lo `test -f 'components/extended_panels.cpp' || echo '$(srcdir)/'`components/extended_panels.cpp
@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) components/$(DEPDIR)/libqt4_plugin_la-extended_panels.Tpo components/$(DEPDIR)/libqt4_plugin_la-extended_panels.Plo
@am__fastdepCXX_FALSE@ $(AM_V_CXX) @AM_BACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='components/extended_panels.cpp' object='components/libqt4_plugin_la-extended_panels.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@ $(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libqt4_plugin_la_CXXFLAGS) $(CXXFLAGS) -c -o components/libqt4_plugin_la-extended_panels.lo `test -f 'components/extended_panels.cpp' || echo '$(srcdir)/'`components/extended_panels.cpp
components/libqt4_plugin_la-info_panels.lo: components/info_panels.cpp
@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libqt4_plugin_la_CXXFLAGS) $(CXXFLAGS) -MT components/libqt4_plugin_la-info_panels.lo -MD -MP -MF components/$(DEPDIR)/libqt4_plugin_la-info_panels.Tpo -c -o components/libqt4_plugin_la-info_panels.lo `test -f 'components/info_panels.cpp' || echo '$(srcdir)/'`components/info_panels.cpp
@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) components/$(DEPDIR)/libqt4_plugin_la-info_panels.Tpo components/$(DEPDIR)/libqt4_plugin_la-info_panels.Plo
@am__fastdepCXX_FALSE@ $(AM_V_CXX) @AM_BACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='components/info_panels.cpp' object='components/libqt4_plugin_la-info_panels.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@ $(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libqt4_plugin_la_CXXFLAGS) $(CXXFLAGS) -c -o components/libqt4_plugin_la-info_panels.lo `test -f 'components/info_panels.cpp' || echo '$(srcdir)/'`components/info_panels.cpp
components/libqt4_plugin_la-preferences_widgets.lo: components/preferences_widgets.cpp
@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libqt4_plugin_la_CXXFLAGS) $(CXXFLAGS) -MT components/libqt4_plugin_la-preferences_widgets.lo -MD -MP -MF components/$(DEPDIR)/libqt4_plugin_la-preferences_widgets.Tpo -c -o components/libqt4_plugin_la-preferences_widgets.lo `test -f 'components/preferences_widgets.cpp' || echo '$(srcdir)/'`components/preferences_widgets.cpp
@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) components/$(DEPDIR)/libqt4_plugin_la-preferences_widgets.Tpo components/$(DEPDIR)/libqt4_plugin_la-preferences_widgets.Plo
@am__fastdepCXX_FALSE@ $(AM_V_CXX) @AM_BACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='components/preferences_widgets.cpp' object='components/libqt4_plugin_la-preferences_widgets.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@ $(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libqt4_plugin_la_CXXFLAGS) $(CXXFLAGS) -c -o components/libqt4_plugin_la-preferences_widgets.lo `test -f 'components/preferences_widgets.cpp' || echo '$(srcdir)/'`components/preferences_widgets.cpp
components/libqt4_plugin_la-complete_preferences.lo: components/complete_preferences.cpp
@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libqt4_plugin_la_CXXFLAGS) $(CXXFLAGS) -MT components/libqt4_plugin_la-complete_preferences.lo -MD -MP -MF components/$(DEPDIR)/libqt4_plugin_la-complete_preferences.Tpo -c -o components/libqt4_plugin_la-complete_preferences.lo `test -f 'components/complete_preferences.cpp' || echo '$(srcdir)/'`components/complete_preferences.cpp
@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) components/$(DEPDIR)/libqt4_plugin_la-complete_preferences.Tpo components/$(DEPDIR)/libqt4_plugin_la-complete_preferences.Plo
@am__fastdepCXX_FALSE@ $(AM_V_CXX) @AM_BACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='components/complete_preferences.cpp' object='components/libqt4_plugin_la-complete_preferences.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@ $(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libqt4_plugin_la_CXXFLAGS) $(CXXFLAGS) -c -o components/libqt4_plugin_la-complete_preferences.lo `test -f 'components/complete_preferences.cpp' || echo '$(srcdir)/'`components/complete_preferences.cpp
components/libqt4_plugin_la-simple_preferences.lo: components/simple_preferences.cpp
@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libqt4_plugin_la_CXXFLAGS) $(CXXFLAGS) -MT components/libqt4_plugin_la-simple_preferences.lo -MD -MP -MF components/$(DEPDIR)/libqt4_plugin_la-simple_preferences.Tpo -c -o components/libqt4_plugin_la-simple_preferences.lo `test -f 'components/simple_preferences.cpp' || echo '$(srcdir)/'`components/simple_preferences.cpp
@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) components/$(DEPDIR)/libqt4_plugin_la-simple_preferences.Tpo components/$(DEPDIR)/libqt4_plugin_la-simple_preferences.Plo
@am__fastdepCXX_FALSE@ $(AM_V_CXX) @AM_BACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='components/simple_preferences.cpp' object='components/libqt4_plugin_la-simple_preferences.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@ $(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libqt4_plugin_la_CXXFLAGS) $(CXXFLAGS) -c -o components/libqt4_plugin_la-simple_preferences.lo `test -f 'components/simple_preferences.cpp' || echo '$(srcdir)/'`components/simple_preferences.cpp
components/libqt4_plugin_la-open_panels.lo: components/open_panels.cpp
@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libqt4_plugin_la_CXXFLAGS) $(CXXFLAGS) -MT components/libqt4_plugin_la-open_panels.lo -MD -MP -MF components/$(DEPDIR)/libqt4_plugin_la-open_panels.Tpo -c -o components/libqt4_plugin_la-open_panels.lo `test -f 'components/open_panels.cpp' || echo '$(srcdir)/'`components/open_panels.cpp
@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) components/$(DEPDIR)/libqt4_plugin_la-open_panels.Tpo components/$(DEPDIR)/libqt4_plugin_la-open_panels.Plo
@am__fastdepCXX_FALSE@ $(AM_V_CXX) @AM_BACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='components/open_panels.cpp' object='components/libqt4_plugin_la-open_panels.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@ $(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libqt4_plugin_la_CXXFLAGS) $(CXXFLAGS) -c -o components/libqt4_plugin_la-open_panels.lo `test -f 'components/open_panels.cpp' || echo '$(srcdir)/'`components/open_panels.cpp
components/libqt4_plugin_la-interface_widgets.lo: components/interface_widgets.cpp
@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libqt4_plugin_la_CXXFLAGS) $(CXXFLAGS) -MT components/libqt4_plugin_la-interface_widgets.lo -MD -MP -MF components/$(DEPDIR)/libqt4_plugin_la-interface_widgets.Tpo -c -o components/libqt4_plugin_la-interface_widgets.lo `test -f 'components/interface_widgets.cpp' || echo '$(srcdir)/'`components/interface_widgets.cpp
@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) components/$(DEPDIR)/libqt4_plugin_la-interface_widgets.Tpo components/$(DEPDIR)/libqt4_plugin_la-interface_widgets.Plo
@am__fastdepCXX_FALSE@ $(AM_V_CXX) @AM_BACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='components/interface_widgets.cpp' object='components/libqt4_plugin_la-interface_widgets.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@ $(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libqt4_plugin_la_CXXFLAGS) $(CXXFLAGS) -c -o components/libqt4_plugin_la-interface_widgets.lo `test -f 'components/interface_widgets.cpp' || echo '$(srcdir)/'`components/interface_widgets.cpp
components/libqt4_plugin_la-controller.lo: components/controller.cpp
@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libqt4_plugin_la_CXXFLAGS) $(CXXFLAGS) -MT components/libqt4_plugin_la-controller.lo -MD -MP -MF components/$(DEPDIR)/libqt4_plugin_la-controller.Tpo -c -o components/libqt4_plugin_la-controller.lo `test -f 'components/controller.cpp' || echo '$(srcdir)/'`components/controller.cpp
@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) components/$(DEPDIR)/libqt4_plugin_la-controller.Tpo components/$(DEPDIR)/libqt4_plugin_la-controller.Plo
@am__fastdepCXX_FALSE@ $(AM_V_CXX) @AM_BACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='components/controller.cpp' object='components/libqt4_plugin_la-controller.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@ $(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libqt4_plugin_la_CXXFLAGS) $(CXXFLAGS) -c -o components/libqt4_plugin_la-controller.lo `test -f 'components/controller.cpp' || echo '$(srcdir)/'`components/controller.cpp
components/libqt4_plugin_la-controller_widget.lo: components/controller_widget.cpp
@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libqt4_plugin_la_CXXFLAGS) $(CXXFLAGS) -MT components/libqt4_plugin_la-controller_widget.lo -MD -MP -MF components/$(DEPDIR)/libqt4_plugin_la-controller_widget.Tpo -c -o components/libqt4_plugin_la-controller_widget.lo `test -f 'components/controller_widget.cpp' || echo '$(srcdir)/'`components/controller_widget.cpp
@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) components/$(DEPDIR)/libqt4_plugin_la-controller_widget.Tpo components/$(DEPDIR)/libqt4_plugin_la-controller_widget.Plo
@am__fastdepCXX_FALSE@ $(AM_V_CXX) @AM_BACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='components/controller_widget.cpp' object='components/libqt4_plugin_la-controller_widget.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@ $(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libqt4_plugin_la_CXXFLAGS) $(CXXFLAGS) -c -o components/libqt4_plugin_la-controller_widget.lo `test -f 'components/controller_widget.cpp' || echo '$(srcdir)/'`components/controller_widget.cpp
components/epg/libqt4_plugin_la-EPGChannels.lo: components/epg/EPGChannels.cpp
@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libqt4_plugin_la_CXXFLAGS) $(CXXFLAGS) -MT components/epg/libqt4_plugin_la-EPGChannels.lo -MD -MP -MF components/epg/$(DEPDIR)/libqt4_plugin_la-EPGChannels.Tpo -c -o components/epg/libqt4_plugin_la-EPGChannels.lo `test -f 'components/epg/EPGChannels.cpp' || echo '$(srcdir)/'`components/epg/EPGChannels.cpp
@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) components/epg/$(DEPDIR)/libqt4_plugin_la-EPGChannels.Tpo components/epg/$(DEPDIR)/libqt4_plugin_la-EPGChannels.Plo
@am__fastdepCXX_FALSE@ $(AM_V_CXX) @AM_BACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='components/epg/EPGChannels.cpp' object='components/epg/libqt4_plugin_la-EPGChannels.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@ $(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libqt4_plugin_la_CXXFLAGS) $(CXXFLAGS) -c -o components/epg/libqt4_plugin_la-EPGChannels.lo `test -f 'components/epg/EPGChannels.cpp' || echo '$(srcdir)/'`components/epg/EPGChannels.cpp
components/epg/libqt4_plugin_la-EPGItem.lo: components/epg/EPGItem.cpp
@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libqt4_plugin_la_CXXFLAGS) $(CXXFLAGS) -MT components/epg/libqt4_plugin_la-EPGItem.lo -MD -MP -MF components/epg/$(DEPDIR)/libqt4_plugin_la-EPGItem.Tpo -c -o components/epg/libqt4_plugin_la-EPGItem.lo `test -f 'components/epg/EPGItem.cpp' || echo '$(srcdir)/'`components/epg/EPGItem.cpp
@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) components/epg/$(DEPDIR)/libqt4_plugin_la-EPGItem.Tpo components/epg/$(DEPDIR)/libqt4_plugin_la-EPGItem.Plo
@am__fastdepCXX_FALSE@ $(AM_V_CXX) @AM_BACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='components/epg/EPGItem.cpp' object='components/epg/libqt4_plugin_la-EPGItem.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@ $(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libqt4_plugin_la_CXXFLAGS) $(CXXFLAGS) -c -o components/epg/libqt4_plugin_la-EPGItem.lo `test -f 'components/epg/EPGItem.cpp' || echo '$(srcdir)/'`components/epg/EPGItem.cpp
components/epg/libqt4_plugin_la-EPGRuler.lo: components/epg/EPGRuler.cpp
@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libqt4_plugin_la_CXXFLAGS) $(CXXFLAGS) -MT components/epg/libqt4_plugin_la-EPGRuler.lo -MD -MP -MF components/epg/$(DEPDIR)/libqt4_plugin_la-EPGRuler.Tpo -c -o components/epg/libqt4_plugin_la-EPGRuler.lo `test -f 'components/epg/EPGRuler.cpp' || echo '$(srcdir)/'`components/epg/EPGRuler.cpp
@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) components/epg/$(DEPDIR)/libqt4_plugin_la-EPGRuler.Tpo components/epg/$(DEPDIR)/libqt4_plugin_la-EPGRuler.Plo
@am__fastdepCXX_FALSE@ $(AM_V_CXX) @AM_BACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='components/epg/EPGRuler.cpp' object='components/epg/libqt4_plugin_la-EPGRuler.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@ $(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libqt4_plugin_la_CXXFLAGS) $(CXXFLAGS) -c -o components/epg/libqt4_plugin_la-EPGRuler.lo `test -f 'components/epg/EPGRuler.cpp' || echo '$(srcdir)/'`components/epg/EPGRuler.cpp
components/epg/libqt4_plugin_la-EPGView.lo: components/epg/EPGView.cpp
@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libqt4_plugin_la_CXXFLAGS) $(CXXFLAGS) -MT components/epg/libqt4_plugin_la-EPGView.lo -MD -MP -MF components/epg/$(DEPDIR)/libqt4_plugin_la-EPGView.Tpo -c -o components/epg/libqt4_plugin_la-EPGView.lo `test -f 'components/epg/EPGView.cpp' || echo '$(srcdir)/'`components/epg/EPGView.cpp
@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) components/epg/$(DEPDIR)/libqt4_plugin_la-EPGView.Tpo components/epg/$(DEPDIR)/libqt4_plugin_la-EPGView.Plo
@am__fastdepCXX_FALSE@ $(AM_V_CXX) @AM_BACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='components/epg/EPGView.cpp' object='components/epg/libqt4_plugin_la-EPGView.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@ $(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libqt4_plugin_la_CXXFLAGS) $(CXXFLAGS) -c -o components/epg/libqt4_plugin_la-EPGView.lo `test -f 'components/epg/EPGView.cpp' || echo '$(srcdir)/'`components/epg/EPGView.cpp
components/epg/libqt4_plugin_la-EPGWidget.lo: components/epg/EPGWidget.cpp
@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libqt4_plugin_la_CXXFLAGS) $(CXXFLAGS) -MT components/epg/libqt4_plugin_la-EPGWidget.lo -MD -MP -MF components/epg/$(DEPDIR)/libqt4_plugin_la-EPGWidget.Tpo -c -o components/epg/libqt4_plugin_la-EPGWidget.lo `test -f 'components/epg/EPGWidget.cpp' || echo '$(srcdir)/'`components/epg/EPGWidget.cpp
@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) components/epg/$(DEPDIR)/libqt4_plugin_la-EPGWidget.Tpo components/epg/$(DEPDIR)/libqt4_plugin_la-EPGWidget.Plo
@am__fastdepCXX_FALSE@ $(AM_V_CXX) @AM_BACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='components/epg/EPGWidget.cpp' object='components/epg/libqt4_plugin_la-EPGWidget.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@ $(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libqt4_plugin_la_CXXFLAGS) $(CXXFLAGS) -c -o components/epg/libqt4_plugin_la-EPGWidget.lo `test -f 'components/epg/EPGWidget.cpp' || echo '$(srcdir)/'`components/epg/EPGWidget.cpp
components/playlist/libqt4_plugin_la-icon_view.lo: components/playlist/icon_view.cpp
@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libqt4_plugin_la_CXXFLAGS) $(CXXFLAGS) -MT components/playlist/libqt4_plugin_la-icon_view.lo -MD -MP -MF components/playlist/$(DEPDIR)/libqt4_plugin_la-icon_view.Tpo -c -o components/playlist/libqt4_plugin_la-icon_view.lo `test -f 'components/playlist/icon_view.cpp' || echo '$(srcdir)/'`components/playlist/icon_view.cpp
@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) components/playlist/$(DEPDIR)/libqt4_plugin_la-icon_view.Tpo components/playlist/$(DEPDIR)/libqt4_plugin_la-icon_view.Plo
@am__fastdepCXX_FALSE@ $(AM_V_CXX) @AM_BACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='components/playlist/icon_view.cpp' object='components/playlist/libqt4_plugin_la-icon_view.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@ $(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libqt4_plugin_la_CXXFLAGS) $(CXXFLAGS) -c -o components/playlist/libqt4_plugin_la-icon_view.lo `test -f 'components/playlist/icon_view.cpp' || echo '$(srcdir)/'`components/playlist/icon_view.cpp
components/playlist/libqt4_plugin_la-playlist_model.lo: components/playlist/playlist_model.cpp
@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libqt4_plugin_la_CXXFLAGS) $(CXXFLAGS) -MT components/playlist/libqt4_plugin_la-playlist_model.lo -MD -MP -MF components/playlist/$(DEPDIR)/libqt4_plugin_la-playlist_model.Tpo -c -o components/playlist/libqt4_plugin_la-playlist_model.lo `test -f 'components/playlist/playlist_model.cpp' || echo '$(srcdir)/'`components/playlist/playlist_model.cpp
@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) components/playlist/$(DEPDIR)/libqt4_plugin_la-playlist_model.Tpo components/playlist/$(DEPDIR)/libqt4_plugin_la-playlist_model.Plo
@am__fastdepCXX_FALSE@ $(AM_V_CXX) @AM_BACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='components/playlist/playlist_model.cpp' object='components/playlist/libqt4_plugin_la-playlist_model.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@ $(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libqt4_plugin_la_CXXFLAGS) $(CXXFLAGS) -c -o components/playlist/libqt4_plugin_la-playlist_model.lo `test -f 'components/playlist/playlist_model.cpp' || echo '$(srcdir)/'`components/playlist/playlist_model.cpp
components/playlist/libqt4_plugin_la-playlist_item.lo: components/playlist/playlist_item.cpp
@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libqt4_plugin_la_CXXFLAGS) $(CXXFLAGS) -MT components/playlist/libqt4_plugin_la-playlist_item.lo -MD -MP -MF components/playlist/$(DEPDIR)/libqt4_plugin_la-playlist_item.Tpo -c -o components/playlist/libqt4_plugin_la-playlist_item.lo `test -f 'components/playlist/playlist_item.cpp' || echo '$(srcdir)/'`components/playlist/playlist_item.cpp
@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) components/playlist/$(DEPDIR)/libqt4_plugin_la-playlist_item.Tpo components/playlist/$(DEPDIR)/libqt4_plugin_la-playlist_item.Plo
@am__fastdepCXX_FALSE@ $(AM_V_CXX) @AM_BACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='components/playlist/playlist_item.cpp' object='components/playlist/libqt4_plugin_la-playlist_item.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@ $(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libqt4_plugin_la_CXXFLAGS) $(CXXFLAGS) -c -o components/playlist/libqt4_plugin_la-playlist_item.lo `test -f 'components/playlist/playlist_item.cpp' || echo '$(srcdir)/'`components/playlist/playlist_item.cpp
components/playlist/libqt4_plugin_la-standardpanel.lo: components/playlist/standardpanel.cpp
@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libqt4_plugin_la_CXXFLAGS) $(CXXFLAGS) -MT components/playlist/libqt4_plugin_la-standardpanel.lo -MD -MP -MF components/playlist/$(DEPDIR)/libqt4_plugin_la-standardpanel.Tpo -c -o components/playlist/libqt4_plugin_la-standardpanel.lo `test -f 'components/playlist/standardpanel.cpp' || echo '$(srcdir)/'`components/playlist/standardpanel.cpp
@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) components/playlist/$(DEPDIR)/libqt4_plugin_la-standardpanel.Tpo components/playlist/$(DEPDIR)/libqt4_plugin_la-standardpanel.Plo
@am__fastdepCXX_FALSE@ $(AM_V_CXX) @AM_BACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='components/playlist/standardpanel.cpp' object='components/playlist/libqt4_plugin_la-standardpanel.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@ $(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libqt4_plugin_la_CXXFLAGS) $(CXXFLAGS) -c -o components/playlist/libqt4_plugin_la-standardpanel.lo `test -f 'components/playlist/standardpanel.cpp' || echo '$(srcdir)/'`components/playlist/standardpanel.cpp
components/playlist/libqt4_plugin_la-playlist.lo: components/playlist/playlist.cpp
@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libqt4_plugin_la_CXXFLAGS) $(CXXFLAGS) -MT components/playlist/libqt4_plugin_la-playlist.lo -MD -MP -MF components/playlist/$(DEPDIR)/libqt4_plugin_la-playlist.Tpo -c -o components/playlist/libqt4_plugin_la-playlist.lo `test -f 'components/playlist/playlist.cpp' || echo '$(srcdir)/'`components/playlist/playlist.cpp
@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) components/playlist/$(DEPDIR)/libqt4_plugin_la-playlist.Tpo components/playlist/$(DEPDIR)/libqt4_plugin_la-playlist.Plo
@am__fastdepCXX_FALSE@ $(AM_V_CXX) @AM_BACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='components/playlist/playlist.cpp' object='components/playlist/libqt4_plugin_la-playlist.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@ $(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libqt4_plugin_la_CXXFLAGS) $(CXXFLAGS) -c -o components/playlist/libqt4_plugin_la-playlist.lo `test -f 'components/playlist/playlist.cpp' || echo '$(srcdir)/'`components/playlist/playlist.cpp
components/playlist/libqt4_plugin_la-selector.lo: components/playlist/selector.cpp
@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libqt4_plugin_la_CXXFLAGS) $(CXXFLAGS) -MT components/playlist/libqt4_plugin_la-selector.lo -MD -MP -MF components/playlist/$(DEPDIR)/libqt4_plugin_la-selector.Tpo -c -o components/playlist/libqt4_plugin_la-selector.lo `test -f 'components/playlist/selector.cpp' || echo '$(srcdir)/'`components/playlist/selector.cpp
@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) components/playlist/$(DEPDIR)/libqt4_plugin_la-selector.Tpo components/playlist/$(DEPDIR)/libqt4_plugin_la-selector.Plo
@am__fastdepCXX_FALSE@ $(AM_V_CXX) @AM_BACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='components/playlist/selector.cpp' object='components/playlist/libqt4_plugin_la-selector.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@ $(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libqt4_plugin_la_CXXFLAGS) $(CXXFLAGS) -c -o components/playlist/libqt4_plugin_la-selector.lo `test -f 'components/playlist/selector.cpp' || echo '$(srcdir)/'`components/playlist/selector.cpp
components/sout/libqt4_plugin_la-profile_selector.lo: components/sout/profile_selector.cpp
@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libqt4_plugin_la_CXXFLAGS) $(CXXFLAGS) -MT components/sout/libqt4_plugin_la-profile_selector.lo -MD -MP -MF components/sout/$(DEPDIR)/libqt4_plugin_la-profile_selector.Tpo -c -o components/sout/libqt4_plugin_la-profile_selector.lo `test -f 'components/sout/profile_selector.cpp' || echo '$(srcdir)/'`components/sout/profile_selector.cpp
@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) components/sout/$(DEPDIR)/libqt4_plugin_la-profile_selector.Tpo components/sout/$(DEPDIR)/libqt4_plugin_la-profile_selector.Plo
@am__fastdepCXX_FALSE@ $(AM_V_CXX) @AM_BACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='components/sout/profile_selector.cpp' object='components/sout/libqt4_plugin_la-profile_selector.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@ $(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libqt4_plugin_la_CXXFLAGS) $(CXXFLAGS) -c -o components/sout/libqt4_plugin_la-profile_selector.lo `test -f 'components/sout/profile_selector.cpp' || echo '$(srcdir)/'`components/sout/profile_selector.cpp
components/sout/libqt4_plugin_la-sout_widgets.lo: components/sout/sout_widgets.cpp
@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libqt4_plugin_la_CXXFLAGS) $(CXXFLAGS) -MT components/sout/libqt4_plugin_la-sout_widgets.lo -MD -MP -MF components/sout/$(DEPDIR)/libqt4_plugin_la-sout_widgets.Tpo -c -o components/sout/libqt4_plugin_la-sout_widgets.lo `test -f 'components/sout/sout_widgets.cpp' || echo '$(srcdir)/'`components/sout/sout_widgets.cpp
@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) components/sout/$(DEPDIR)/libqt4_plugin_la-sout_widgets.Tpo components/sout/$(DEPDIR)/libqt4_plugin_la-sout_widgets.Plo
@am__fastdepCXX_FALSE@ $(AM_V_CXX) @AM_BACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='components/sout/sout_widgets.cpp' object='components/sout/libqt4_plugin_la-sout_widgets.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@ $(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libqt4_plugin_la_CXXFLAGS) $(CXXFLAGS) -c -o components/sout/libqt4_plugin_la-sout_widgets.lo `test -f 'components/sout/sout_widgets.cpp' || echo '$(srcdir)/'`components/sout/sout_widgets.cpp
util/libqt4_plugin_la-input_slider.lo: util/input_slider.cpp
@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libqt4_plugin_la_CXXFLAGS) $(CXXFLAGS) -MT util/libqt4_plugin_la-input_slider.lo -MD -MP -MF util/$(DEPDIR)/libqt4_plugin_la-input_slider.Tpo -c -o util/libqt4_plugin_la-input_slider.lo `test -f 'util/input_slider.cpp' || echo '$(srcdir)/'`util/input_slider.cpp
@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) util/$(DEPDIR)/libqt4_plugin_la-input_slider.Tpo util/$(DEPDIR)/libqt4_plugin_la-input_slider.Plo
@am__fastdepCXX_FALSE@ $(AM_V_CXX) @AM_BACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='util/input_slider.cpp' object='util/libqt4_plugin_la-input_slider.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@ $(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libqt4_plugin_la_CXXFLAGS) $(CXXFLAGS) -c -o util/libqt4_plugin_la-input_slider.lo `test -f 'util/input_slider.cpp' || echo '$(srcdir)/'`util/input_slider.cpp
util/libqt4_plugin_la-customwidgets.lo: util/customwidgets.cpp
@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libqt4_plugin_la_CXXFLAGS) $(CXXFLAGS) -MT util/libqt4_plugin_la-customwidgets.lo -MD -MP -MF util/$(DEPDIR)/libqt4_plugin_la-customwidgets.Tpo -c -o util/libqt4_plugin_la-customwidgets.lo `test -f 'util/customwidgets.cpp' || echo '$(srcdir)/'`util/customwidgets.cpp
@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) util/$(DEPDIR)/libqt4_plugin_la-customwidgets.Tpo util/$(DEPDIR)/libqt4_plugin_la-customwidgets.Plo
@am__fastdepCXX_FALSE@ $(AM_V_CXX) @AM_BACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='util/customwidgets.cpp' object='util/libqt4_plugin_la-customwidgets.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@ $(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libqt4_plugin_la_CXXFLAGS) $(CXXFLAGS) -c -o util/libqt4_plugin_la-customwidgets.lo `test -f 'util/customwidgets.cpp' || echo '$(srcdir)/'`util/customwidgets.cpp
util/libqt4_plugin_la-registry.lo: util/registry.cpp
@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libqt4_plugin_la_CXXFLAGS) $(CXXFLAGS) -MT util/libqt4_plugin_la-registry.lo -MD -MP -MF util/$(DEPDIR)/libqt4_plugin_la-registry.Tpo -c -o util/libqt4_plugin_la-registry.lo `test -f 'util/registry.cpp' || echo '$(srcdir)/'`util/registry.cpp
@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) util/$(DEPDIR)/libqt4_plugin_la-registry.Tpo util/$(DEPDIR)/libqt4_plugin_la-registry.Plo
@am__fastdepCXX_FALSE@ $(AM_V_CXX) @AM_BACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='util/registry.cpp' object='util/libqt4_plugin_la-registry.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@ $(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libqt4_plugin_la_CXXFLAGS) $(CXXFLAGS) -c -o util/libqt4_plugin_la-registry.lo `test -f 'util/registry.cpp' || echo '$(srcdir)/'`util/registry.cpp
libqt4_plugin_la-main_interface.moc.lo: main_interface.moc.cpp
@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libqt4_plugin_la_CXXFLAGS) $(CXXFLAGS) -MT libqt4_plugin_la-main_interface.moc.lo -MD -MP -MF $(DEPDIR)/libqt4_plugin_la-main_interface.moc.Tpo -c -o libqt4_plugin_la-main_interface.moc.lo `test -f 'main_interface.moc.cpp' || echo '$(srcdir)/'`main_interface.moc.cpp
@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libqt4_plugin_la-main_interface.moc.Tpo $(DEPDIR)/libqt4_plugin_la-main_interface.moc.Plo
@am__fastdepCXX_FALSE@ $(AM_V_CXX) @AM_BACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='main_interface.moc.cpp' object='libqt4_plugin_la-main_interface.moc.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@ $(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libqt4_plugin_la_CXXFLAGS) $(CXXFLAGS) -c -o libqt4_plugin_la-main_interface.moc.lo `test -f 'main_interface.moc.cpp' || echo '$(srcdir)/'`main_interface.moc.cpp
libqt4_plugin_la-menus.moc.lo: menus.moc.cpp
@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libqt4_plugin_la_CXXFLAGS) $(CXXFLAGS) -MT libqt4_plugin_la-menus.moc.lo -MD -MP -MF $(DEPDIR)/libqt4_plugin_la-menus.moc.Tpo -c -o libqt4_plugin_la-menus.moc.lo `test -f 'menus.moc.cpp' || echo '$(srcdir)/'`menus.moc.cpp
@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libqt4_plugin_la-menus.moc.Tpo $(DEPDIR)/libqt4_plugin_la-menus.moc.Plo
@am__fastdepCXX_FALSE@ $(AM_V_CXX) @AM_BACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='menus.moc.cpp' object='libqt4_plugin_la-menus.moc.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@ $(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libqt4_plugin_la_CXXFLAGS) $(CXXFLAGS) -c -o libqt4_plugin_la-menus.moc.lo `test -f 'menus.moc.cpp' || echo '$(srcdir)/'`menus.moc.cpp
libqt4_plugin_la-dialogs_provider.moc.lo: dialogs_provider.moc.cpp
@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libqt4_plugin_la_CXXFLAGS) $(CXXFLAGS) -MT libqt4_plugin_la-dialogs_provider.moc.lo -MD -MP -MF $(DEPDIR)/libqt4_plugin_la-dialogs_provider.moc.Tpo -c -o libqt4_plugin_la-dialogs_provider.moc.lo `test -f 'dialogs_provider.moc.cpp' || echo '$(srcdir)/'`dialogs_provider.moc.cpp
@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libqt4_plugin_la-dialogs_provider.moc.Tpo $(DEPDIR)/libqt4_plugin_la-dialogs_provider.moc.Plo
@am__fastdepCXX_FALSE@ $(AM_V_CXX) @AM_BACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='dialogs_provider.moc.cpp' object='libqt4_plugin_la-dialogs_provider.moc.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@ $(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libqt4_plugin_la_CXXFLAGS) $(CXXFLAGS) -c -o libqt4_plugin_la-dialogs_provider.moc.lo `test -f 'dialogs_provider.moc.cpp' || echo '$(srcdir)/'`dialogs_provider.moc.cpp
libqt4_plugin_la-input_manager.moc.lo: input_manager.moc.cpp
@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libqt4_plugin_la_CXXFLAGS) $(CXXFLAGS) -MT libqt4_plugin_la-input_manager.moc.lo -MD -MP -MF $(DEPDIR)/libqt4_plugin_la-input_manager.moc.Tpo -c -o libqt4_plugin_la-input_manager.moc.lo `test -f 'input_manager.moc.cpp' || echo '$(srcdir)/'`input_manager.moc.cpp
@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libqt4_plugin_la-input_manager.moc.Tpo $(DEPDIR)/libqt4_plugin_la-input_manager.moc.Plo
@am__fastdepCXX_FALSE@ $(AM_V_CXX) @AM_BACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='input_manager.moc.cpp' object='libqt4_plugin_la-input_manager.moc.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@ $(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libqt4_plugin_la_CXXFLAGS) $(CXXFLAGS) -c -o libqt4_plugin_la-input_manager.moc.lo `test -f 'input_manager.moc.cpp' || echo '$(srcdir)/'`input_manager.moc.cpp
libqt4_plugin_la-actions_manager.moc.lo: actions_manager.moc.cpp
@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libqt4_plugin_la_CXXFLAGS) $(CXXFLAGS) -MT libqt4_plugin_la-actions_manager.moc.lo -MD -MP -MF $(DEPDIR)/libqt4_plugin_la-actions_manager.moc.Tpo -c -o libqt4_plugin_la-actions_manager.moc.lo `test -f 'actions_manager.moc.cpp' || echo '$(srcdir)/'`actions_manager.moc.cpp
@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libqt4_plugin_la-actions_manager.moc.Tpo $(DEPDIR)/libqt4_plugin_la-actions_manager.moc.Plo
@am__fastdepCXX_FALSE@ $(AM_V_CXX) @AM_BACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='actions_manager.moc.cpp' object='libqt4_plugin_la-actions_manager.moc.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@ $(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libqt4_plugin_la_CXXFLAGS) $(CXXFLAGS) -c -o libqt4_plugin_la-actions_manager.moc.lo `test -f 'actions_manager.moc.cpp' || echo '$(srcdir)/'`actions_manager.moc.cpp
libqt4_plugin_la-extensions_manager.moc.lo: extensions_manager.moc.cpp
@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libqt4_plugin_la_CXXFLAGS) $(CXXFLAGS) -MT libqt4_plugin_la-extensions_manager.moc.lo -MD -MP -MF $(DEPDIR)/libqt4_plugin_la-extensions_manager.moc.Tpo -c -o libqt4_plugin_la-extensions_manager.moc.lo `test -f 'extensions_manager.moc.cpp' || echo '$(srcdir)/'`extensions_manager.moc.cpp
@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libqt4_plugin_la-extensions_manager.moc.Tpo $(DEPDIR)/libqt4_plugin_la-extensions_manager.moc.Plo
@am__fastdepCXX_FALSE@ $(AM_V_CXX) @AM_BACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='extensions_manager.moc.cpp' object='libqt4_plugin_la-extensions_manager.moc.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@ $(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libqt4_plugin_la_CXXFLAGS) $(CXXFLAGS) -c -o libqt4_plugin_la-extensions_manager.moc.lo `test -f 'extensions_manager.moc.cpp' || echo '$(srcdir)/'`extensions_manager.moc.cpp
libqt4_plugin_la-recents.moc.lo: recents.moc.cpp
@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libqt4_plugin_la_CXXFLAGS) $(CXXFLAGS) -MT libqt4_plugin_la-recents.moc.lo -MD -MP -MF $(DEPDIR)/libqt4_plugin_la-recents.moc.Tpo -c -o libqt4_plugin_la-recents.moc.lo `test -f 'recents.moc.cpp' || echo '$(srcdir)/'`recents.moc.cpp
@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libqt4_plugin_la-recents.moc.Tpo $(DEPDIR)/libqt4_plugin_la-recents.moc.Plo
@am__fastdepCXX_FALSE@ $(AM_V_CXX) @AM_BACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='recents.moc.cpp' object='libqt4_plugin_la-recents.moc.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@ $(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libqt4_plugin_la_CXXFLAGS) $(CXXFLAGS) -c -o libqt4_plugin_la-recents.moc.lo `test -f 'recents.moc.cpp' || echo '$(srcdir)/'`recents.moc.cpp
libqt4_plugin_la-variables.moc.lo: variables.moc.cpp
@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libqt4_plugin_la_CXXFLAGS) $(CXXFLAGS) -MT libqt4_plugin_la-variables.moc.lo -MD -MP -MF $(DEPDIR)/libqt4_plugin_la-variables.moc.Tpo -c -o libqt4_plugin_la-variables.moc.lo `test -f 'variables.moc.cpp' || echo '$(srcdir)/'`variables.moc.cpp
@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libqt4_plugin_la-variables.moc.Tpo $(DEPDIR)/libqt4_plugin_la-variables.moc.Plo
@am__fastdepCXX_FALSE@ $(AM_V_CXX) @AM_BACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='variables.moc.cpp' object='libqt4_plugin_la-variables.moc.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@ $(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libqt4_plugin_la_CXXFLAGS) $(CXXFLAGS) -c -o libqt4_plugin_la-variables.moc.lo `test -f 'variables.moc.cpp' || echo '$(srcdir)/'`variables.moc.cpp
dialogs/libqt4_plugin_la-playlist.moc.lo: dialogs/playlist.moc.cpp
@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libqt4_plugin_la_CXXFLAGS) $(CXXFLAGS) -MT dialogs/libqt4_plugin_la-playlist.moc.lo -MD -MP -MF dialogs/$(DEPDIR)/libqt4_plugin_la-playlist.moc.Tpo -c -o dialogs/libqt4_plugin_la-playlist.moc.lo `test -f 'dialogs/playlist.moc.cpp' || echo '$(srcdir)/'`dialogs/playlist.moc.cpp
@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) dialogs/$(DEPDIR)/libqt4_plugin_la-playlist.moc.Tpo dialogs/$(DEPDIR)/libqt4_plugin_la-playlist.moc.Plo
@am__fastdepCXX_FALSE@ $(AM_V_CXX) @AM_BACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='dialogs/playlist.moc.cpp' object='dialogs/libqt4_plugin_la-playlist.moc.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@ $(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libqt4_plugin_la_CXXFLAGS) $(CXXFLAGS) -c -o dialogs/libqt4_plugin_la-playlist.moc.lo `test -f 'dialogs/playlist.moc.cpp' || echo '$(srcdir)/'`dialogs/playlist.moc.cpp
dialogs/libqt4_plugin_la-bookmarks.moc.lo: dialogs/bookmarks.moc.cpp
@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libqt4_plugin_la_CXXFLAGS) $(CXXFLAGS) -MT dialogs/libqt4_plugin_la-bookmarks.moc.lo -MD -MP -MF dialogs/$(DEPDIR)/libqt4_plugin_la-bookmarks.moc.Tpo -c -o dialogs/libqt4_plugin_la-bookmarks.moc.lo `test -f 'dialogs/bookmarks.moc.cpp' || echo '$(srcdir)/'`dialogs/bookmarks.moc.cpp
@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) dialogs/$(DEPDIR)/libqt4_plugin_la-bookmarks.moc.Tpo dialogs/$(DEPDIR)/libqt4_plugin_la-bookmarks.moc.Plo
@am__fastdepCXX_FALSE@ $(AM_V_CXX) @AM_BACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='dialogs/bookmarks.moc.cpp' object='dialogs/libqt4_plugin_la-bookmarks.moc.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@ $(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libqt4_plugin_la_CXXFLAGS) $(CXXFLAGS) -c -o dialogs/libqt4_plugin_la-bookmarks.moc.lo `test -f 'dialogs/bookmarks.moc.cpp' || echo '$(srcdir)/'`dialogs/bookmarks.moc.cpp
dialogs/libqt4_plugin_la-mediainfo.moc.lo: dialogs/mediainfo.moc.cpp
@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libqt4_plugin_la_CXXFLAGS) $(CXXFLAGS) -MT dialogs/libqt4_plugin_la-mediainfo.moc.lo -MD -MP -MF dialogs/$(DEPDIR)/libqt4_plugin_la-mediainfo.moc.Tpo -c -o dialogs/libqt4_plugin_la-mediainfo.moc.lo `test -f 'dialogs/mediainfo.moc.cpp' || echo '$(srcdir)/'`dialogs/mediainfo.moc.cpp
@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) dialogs/$(DEPDIR)/libqt4_plugin_la-mediainfo.moc.Tpo dialogs/$(DEPDIR)/libqt4_plugin_la-mediainfo.moc.Plo
@am__fastdepCXX_FALSE@ $(AM_V_CXX) @AM_BACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='dialogs/mediainfo.moc.cpp' object='dialogs/libqt4_plugin_la-mediainfo.moc.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@ $(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libqt4_plugin_la_CXXFLAGS) $(CXXFLAGS) -c -o dialogs/libqt4_plugin_la-mediainfo.moc.lo `test -f 'dialogs/mediainfo.moc.cpp' || echo '$(srcdir)/'`dialogs/mediainfo.moc.cpp
dialogs/libqt4_plugin_la-extended.moc.lo: dialogs/extended.moc.cpp
@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libqt4_plugin_la_CXXFLAGS) $(CXXFLAGS) -MT dialogs/libqt4_plugin_la-extended.moc.lo -MD -MP -MF dialogs/$(DEPDIR)/libqt4_plugin_la-extended.moc.Tpo -c -o dialogs/libqt4_plugin_la-extended.moc.lo `test -f 'dialogs/extended.moc.cpp' || echo '$(srcdir)/'`dialogs/extended.moc.cpp
@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) dialogs/$(DEPDIR)/libqt4_plugin_la-extended.moc.Tpo dialogs/$(DEPDIR)/libqt4_plugin_la-extended.moc.Plo
@am__fastdepCXX_FALSE@ $(AM_V_CXX) @AM_BACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='dialogs/extended.moc.cpp' object='dialogs/libqt4_plugin_la-extended.moc.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@ $(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libqt4_plugin_la_CXXFLAGS) $(CXXFLAGS) -c -o dialogs/libqt4_plugin_la-extended.moc.lo `test -f 'dialogs/extended.moc.cpp' || echo '$(srcdir)/'`dialogs/extended.moc.cpp
dialogs/libqt4_plugin_la-messages.moc.lo: dialogs/messages.moc.cpp
@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libqt4_plugin_la_CXXFLAGS) $(CXXFLAGS) -MT dialogs/libqt4_plugin_la-messages.moc.lo -MD -MP -MF dialogs/$(DEPDIR)/libqt4_plugin_la-messages.moc.Tpo -c -o dialogs/libqt4_plugin_la-messages.moc.lo `test -f 'dialogs/messages.moc.cpp' || echo '$(srcdir)/'`dialogs/messages.moc.cpp
@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) dialogs/$(DEPDIR)/libqt4_plugin_la-messages.moc.Tpo dialogs/$(DEPDIR)/libqt4_plugin_la-messages.moc.Plo
@am__fastdepCXX_FALSE@ $(AM_V_CXX) @AM_BACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='dialogs/messages.moc.cpp' object='dialogs/libqt4_plugin_la-messages.moc.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@ $(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libqt4_plugin_la_CXXFLAGS) $(CXXFLAGS) -c -o dialogs/libqt4_plugin_la-messages.moc.lo `test -f 'dialogs/messages.moc.cpp' || echo '$(srcdir)/'`dialogs/messages.moc.cpp
dialogs/libqt4_plugin_la-epg.moc.lo: dialogs/epg.moc.cpp
@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libqt4_plugin_la_CXXFLAGS) $(CXXFLAGS) -MT dialogs/libqt4_plugin_la-epg.moc.lo -MD -MP -MF dialogs/$(DEPDIR)/libqt4_plugin_la-epg.moc.Tpo -c -o dialogs/libqt4_plugin_la-epg.moc.lo `test -f 'dialogs/epg.moc.cpp' || echo '$(srcdir)/'`dialogs/epg.moc.cpp
@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) dialogs/$(DEPDIR)/libqt4_plugin_la-epg.moc.Tpo dialogs/$(DEPDIR)/libqt4_plugin_la-epg.moc.Plo
@am__fastdepCXX_FALSE@ $(AM_V_CXX) @AM_BACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='dialogs/epg.moc.cpp' object='dialogs/libqt4_plugin_la-epg.moc.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@ $(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libqt4_plugin_la_CXXFLAGS) $(CXXFLAGS) -c -o dialogs/libqt4_plugin_la-epg.moc.lo `test -f 'dialogs/epg.moc.cpp' || echo '$(srcdir)/'`dialogs/epg.moc.cpp
dialogs/libqt4_plugin_la-errors.moc.lo: dialogs/errors.moc.cpp
@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libqt4_plugin_la_CXXFLAGS) $(CXXFLAGS) -MT dialogs/libqt4_plugin_la-errors.moc.lo -MD -MP -MF dialogs/$(DEPDIR)/libqt4_plugin_la-errors.moc.Tpo -c -o dialogs/libqt4_plugin_la-errors.moc.lo `test -f 'dialogs/errors.moc.cpp' || echo '$(srcdir)/'`dialogs/errors.moc.cpp
@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) dialogs/$(DEPDIR)/libqt4_plugin_la-errors.moc.Tpo dialogs/$(DEPDIR)/libqt4_plugin_la-errors.moc.Plo
@am__fastdepCXX_FALSE@ $(AM_V_CXX) @AM_BACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='dialogs/errors.moc.cpp' object='dialogs/libqt4_plugin_la-errors.moc.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@ $(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libqt4_plugin_la_CXXFLAGS) $(CXXFLAGS) -c -o dialogs/libqt4_plugin_la-errors.moc.lo `test -f 'dialogs/errors.moc.cpp' || echo '$(srcdir)/'`dialogs/errors.moc.cpp
dialogs/libqt4_plugin_la-external.moc.lo: dialogs/external.moc.cpp
@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libqt4_plugin_la_CXXFLAGS) $(CXXFLAGS) -MT dialogs/libqt4_plugin_la-external.moc.lo -MD -MP -MF dialogs/$(DEPDIR)/libqt4_plugin_la-external.moc.Tpo -c -o dialogs/libqt4_plugin_la-external.moc.lo `test -f 'dialogs/external.moc.cpp' || echo '$(srcdir)/'`dialogs/external.moc.cpp
@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) dialogs/$(DEPDIR)/libqt4_plugin_la-external.moc.Tpo dialogs/$(DEPDIR)/libqt4_plugin_la-external.moc.Plo
@am__fastdepCXX_FALSE@ $(AM_V_CXX) @AM_BACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='dialogs/external.moc.cpp' object='dialogs/libqt4_plugin_la-external.moc.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@ $(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libqt4_plugin_la_CXXFLAGS) $(CXXFLAGS) -c -o dialogs/libqt4_plugin_la-external.moc.lo `test -f 'dialogs/external.moc.cpp' || echo '$(srcdir)/'`dialogs/external.moc.cpp
dialogs/libqt4_plugin_la-plugins.moc.lo: dialogs/plugins.moc.cpp
@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libqt4_plugin_la_CXXFLAGS) $(CXXFLAGS) -MT dialogs/libqt4_plugin_la-plugins.moc.lo -MD -MP -MF dialogs/$(DEPDIR)/libqt4_plugin_la-plugins.moc.Tpo -c -o dialogs/libqt4_plugin_la-plugins.moc.lo `test -f 'dialogs/plugins.moc.cpp' || echo '$(srcdir)/'`dialogs/plugins.moc.cpp
@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) dialogs/$(DEPDIR)/libqt4_plugin_la-plugins.moc.Tpo dialogs/$(DEPDIR)/libqt4_plugin_la-plugins.moc.Plo
@am__fastdepCXX_FALSE@ $(AM_V_CXX) @AM_BACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='dialogs/plugins.moc.cpp' object='dialogs/libqt4_plugin_la-plugins.moc.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@ $(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libqt4_plugin_la_CXXFLAGS) $(CXXFLAGS) -c -o dialogs/libqt4_plugin_la-plugins.moc.lo `test -f 'dialogs/plugins.moc.cpp' || echo '$(srcdir)/'`dialogs/plugins.moc.cpp
dialogs/libqt4_plugin_la-preferences.moc.lo: dialogs/preferences.moc.cpp
@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libqt4_plugin_la_CXXFLAGS) $(CXXFLAGS) -MT dialogs/libqt4_plugin_la-preferences.moc.lo -MD -MP -MF dialogs/$(DEPDIR)/libqt4_plugin_la-preferences.moc.Tpo -c -o dialogs/libqt4_plugin_la-preferences.moc.lo `test -f 'dialogs/preferences.moc.cpp' || echo '$(srcdir)/'`dialogs/preferences.moc.cpp
@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) dialogs/$(DEPDIR)/libqt4_plugin_la-preferences.moc.Tpo dialogs/$(DEPDIR)/libqt4_plugin_la-preferences.moc.Plo
@am__fastdepCXX_FALSE@ $(AM_V_CXX) @AM_BACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='dialogs/preferences.moc.cpp' object='dialogs/libqt4_plugin_la-preferences.moc.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@ $(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libqt4_plugin_la_CXXFLAGS) $(CXXFLAGS) -c -o dialogs/libqt4_plugin_la-preferences.moc.lo `test -f 'dialogs/preferences.moc.cpp' || echo '$(srcdir)/'`dialogs/preferences.moc.cpp
dialogs/libqt4_plugin_la-sout.moc.lo: dialogs/sout.moc.cpp
@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libqt4_plugin_la_CXXFLAGS) $(CXXFLAGS) -MT dialogs/libqt4_plugin_la-sout.moc.lo -MD -MP -MF dialogs/$(DEPDIR)/libqt4_plugin_la-sout.moc.Tpo -c -o dialogs/libqt4_plugin_la-sout.moc.lo `test -f 'dialogs/sout.moc.cpp' || echo '$(srcdir)/'`dialogs/sout.moc.cpp
@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) dialogs/$(DEPDIR)/libqt4_plugin_la-sout.moc.Tpo dialogs/$(DEPDIR)/libqt4_plugin_la-sout.moc.Plo
@am__fastdepCXX_FALSE@ $(AM_V_CXX) @AM_BACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='dialogs/sout.moc.cpp' object='dialogs/libqt4_plugin_la-sout.moc.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@ $(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libqt4_plugin_la_CXXFLAGS) $(CXXFLAGS) -c -o dialogs/libqt4_plugin_la-sout.moc.lo `test -f 'dialogs/sout.moc.cpp' || echo '$(srcdir)/'`dialogs/sout.moc.cpp
dialogs/libqt4_plugin_la-convert.moc.lo: dialogs/convert.moc.cpp
@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libqt4_plugin_la_CXXFLAGS) $(CXXFLAGS) -MT dialogs/libqt4_plugin_la-convert.moc.lo -MD -MP -MF dialogs/$(DEPDIR)/libqt4_plugin_la-convert.moc.Tpo -c -o dialogs/libqt4_plugin_la-convert.moc.lo `test -f 'dialogs/convert.moc.cpp' || echo '$(srcdir)/'`dialogs/convert.moc.cpp
@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) dialogs/$(DEPDIR)/libqt4_plugin_la-convert.moc.Tpo dialogs/$(DEPDIR)/libqt4_plugin_la-convert.moc.Plo
@am__fastdepCXX_FALSE@ $(AM_V_CXX) @AM_BACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='dialogs/convert.moc.cpp' object='dialogs/libqt4_plugin_la-convert.moc.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@ $(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libqt4_plugin_la_CXXFLAGS) $(CXXFLAGS) -c -o dialogs/libqt4_plugin_la-convert.moc.lo `test -f 'dialogs/convert.moc.cpp' || echo '$(srcdir)/'`dialogs/convert.moc.cpp
dialogs/libqt4_plugin_la-help.moc.lo: dialogs/help.moc.cpp
@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libqt4_plugin_la_CXXFLAGS) $(CXXFLAGS) -MT dialogs/libqt4_plugin_la-help.moc.lo -MD -MP -MF dialogs/$(DEPDIR)/libqt4_plugin_la-help.moc.Tpo -c -o dialogs/libqt4_plugin_la-help.moc.lo `test -f 'dialogs/help.moc.cpp' || echo '$(srcdir)/'`dialogs/help.moc.cpp
@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) dialogs/$(DEPDIR)/libqt4_plugin_la-help.moc.Tpo dialogs/$(DEPDIR)/libqt4_plugin_la-help.moc.Plo
@am__fastdepCXX_FALSE@ $(AM_V_CXX) @AM_BACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='dialogs/help.moc.cpp' object='dialogs/libqt4_plugin_la-help.moc.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@ $(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libqt4_plugin_la_CXXFLAGS) $(CXXFLAGS) -c -o dialogs/libqt4_plugin_la-help.moc.lo `test -f 'dialogs/help.moc.cpp' || echo '$(srcdir)/'`dialogs/help.moc.cpp
dialogs/libqt4_plugin_la-gototime.moc.lo: dialogs/gototime.moc.cpp
@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libqt4_plugin_la_CXXFLAGS) $(CXXFLAGS) -MT dialogs/libqt4_plugin_la-gototime.moc.lo -MD -MP -MF dialogs/$(DEPDIR)/libqt4_plugin_la-gototime.moc.Tpo -c -o dialogs/libqt4_plugin_la-gototime.moc.lo `test -f 'dialogs/gototime.moc.cpp' || echo '$(srcdir)/'`dialogs/gototime.moc.cpp
@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) dialogs/$(DEPDIR)/libqt4_plugin_la-gototime.moc.Tpo dialogs/$(DEPDIR)/libqt4_plugin_la-gototime.moc.Plo
@am__fastdepCXX_FALSE@ $(AM_V_CXX) @AM_BACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='dialogs/gototime.moc.cpp' object='dialogs/libqt4_plugin_la-gototime.moc.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@ $(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libqt4_plugin_la_CXXFLAGS) $(CXXFLAGS) -c -o dialogs/libqt4_plugin_la-gototime.moc.lo `test -f 'dialogs/gototime.moc.cpp' || echo '$(srcdir)/'`dialogs/gototime.moc.cpp
dialogs/libqt4_plugin_la-toolbar.moc.lo: dialogs/toolbar.moc.cpp
@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libqt4_plugin_la_CXXFLAGS) $(CXXFLAGS) -MT dialogs/libqt4_plugin_la-toolbar.moc.lo -MD -MP -MF dialogs/$(DEPDIR)/libqt4_plugin_la-toolbar.moc.Tpo -c -o dialogs/libqt4_plugin_la-toolbar.moc.lo `test -f 'dialogs/toolbar.moc.cpp' || echo '$(srcdir)/'`dialogs/toolbar.moc.cpp
@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) dialogs/$(DEPDIR)/libqt4_plugin_la-toolbar.moc.Tpo dialogs/$(DEPDIR)/libqt4_plugin_la-toolbar.moc.Plo
@am__fastdepCXX_FALSE@ $(AM_V_CXX) @AM_BACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='dialogs/toolbar.moc.cpp' object='dialogs/libqt4_plugin_la-toolbar.moc.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@ $(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libqt4_plugin_la_CXXFLAGS) $(CXXFLAGS) -c -o dialogs/libqt4_plugin_la-toolbar.moc.lo `test -f 'dialogs/toolbar.moc.cpp' || echo '$(srcdir)/'`dialogs/toolbar.moc.cpp
dialogs/libqt4_plugin_la-open.moc.lo: dialogs/open.moc.cpp
@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libqt4_plugin_la_CXXFLAGS) $(CXXFLAGS) -MT dialogs/libqt4_plugin_la-open.moc.lo -MD -MP -MF dialogs/$(DEPDIR)/libqt4_plugin_la-open.moc.Tpo -c -o dialogs/libqt4_plugin_la-open.moc.lo `test -f 'dialogs/open.moc.cpp' || echo '$(srcdir)/'`dialogs/open.moc.cpp
@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) dialogs/$(DEPDIR)/libqt4_plugin_la-open.moc.Tpo dialogs/$(DEPDIR)/libqt4_plugin_la-open.moc.Plo
@am__fastdepCXX_FALSE@ $(AM_V_CXX) @AM_BACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='dialogs/open.moc.cpp' object='dialogs/libqt4_plugin_la-open.moc.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@ $(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libqt4_plugin_la_CXXFLAGS) $(CXXFLAGS) -c -o dialogs/libqt4_plugin_la-open.moc.lo `test -f 'dialogs/open.moc.cpp' || echo '$(srcdir)/'`dialogs/open.moc.cpp
dialogs/libqt4_plugin_la-openurl.moc.lo: dialogs/openurl.moc.cpp
@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libqt4_plugin_la_CXXFLAGS) $(CXXFLAGS) -MT dialogs/libqt4_plugin_la-openurl.moc.lo -MD -MP -MF dialogs/$(DEPDIR)/libqt4_plugin_la-openurl.moc.Tpo -c -o dialogs/libqt4_plugin_la-openurl.moc.lo `test -f 'dialogs/openurl.moc.cpp' || echo '$(srcdir)/'`dialogs/openurl.moc.cpp
@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) dialogs/$(DEPDIR)/libqt4_plugin_la-openurl.moc.Tpo dialogs/$(DEPDIR)/libqt4_plugin_la-openurl.moc.Plo
@am__fastdepCXX_FALSE@ $(AM_V_CXX) @AM_BACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='dialogs/openurl.moc.cpp' object='dialogs/libqt4_plugin_la-openurl.moc.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@ $(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libqt4_plugin_la_CXXFLAGS) $(CXXFLAGS) -c -o dialogs/libqt4_plugin_la-openurl.moc.lo `test -f 'dialogs/openurl.moc.cpp' || echo '$(srcdir)/'`dialogs/openurl.moc.cpp
dialogs/libqt4_plugin_la-podcast_configuration.moc.lo: dialogs/podcast_configuration.moc.cpp
@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libqt4_plugin_la_CXXFLAGS) $(CXXFLAGS) -MT dialogs/libqt4_plugin_la-podcast_configuration.moc.lo -MD -MP -MF dialogs/$(DEPDIR)/libqt4_plugin_la-podcast_configuration.moc.Tpo -c -o dialogs/libqt4_plugin_la-podcast_configuration.moc.lo `test -f 'dialogs/podcast_configuration.moc.cpp' || echo '$(srcdir)/'`dialogs/podcast_configuration.moc.cpp
@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) dialogs/$(DEPDIR)/libqt4_plugin_la-podcast_configuration.moc.Tpo dialogs/$(DEPDIR)/libqt4_plugin_la-podcast_configuration.moc.Plo
@am__fastdepCXX_FALSE@ $(AM_V_CXX) @AM_BACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='dialogs/podcast_configuration.moc.cpp' object='dialogs/libqt4_plugin_la-podcast_configuration.moc.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@ $(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libqt4_plugin_la_CXXFLAGS) $(CXXFLAGS) -c -o dialogs/libqt4_plugin_la-podcast_configuration.moc.lo `test -f 'dialogs/podcast_configuration.moc.cpp' || echo '$(srcdir)/'`dialogs/podcast_configuration.moc.cpp
dialogs/libqt4_plugin_la-vlm.moc.lo: dialogs/vlm.moc.cpp
@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libqt4_plugin_la_CXXFLAGS) $(CXXFLAGS) -MT dialogs/libqt4_plugin_la-vlm.moc.lo -MD -MP -MF dialogs/$(DEPDIR)/libqt4_plugin_la-vlm.moc.Tpo -c -o dialogs/libqt4_plugin_la-vlm.moc.lo `test -f 'dialogs/vlm.moc.cpp' || echo '$(srcdir)/'`dialogs/vlm.moc.cpp
@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) dialogs/$(DEPDIR)/libqt4_plugin_la-vlm.moc.Tpo dialogs/$(DEPDIR)/libqt4_plugin_la-vlm.moc.Plo
@am__fastdepCXX_FALSE@ $(AM_V_CXX) @AM_BACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='dialogs/vlm.moc.cpp' object='dialogs/libqt4_plugin_la-vlm.moc.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@ $(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libqt4_plugin_la_CXXFLAGS) $(CXXFLAGS) -c -o dialogs/libqt4_plugin_la-vlm.moc.lo `test -f 'dialogs/vlm.moc.cpp' || echo '$(srcdir)/'`dialogs/vlm.moc.cpp
dialogs/libqt4_plugin_la-firstrun.moc.lo: dialogs/firstrun.moc.cpp
@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libqt4_plugin_la_CXXFLAGS) $(CXXFLAGS) -MT dialogs/libqt4_plugin_la-firstrun.moc.lo -MD -MP -MF dialogs/$(DEPDIR)/libqt4_plugin_la-firstrun.moc.Tpo -c -o dialogs/libqt4_plugin_la-firstrun.moc.lo `test -f 'dialogs/firstrun.moc.cpp' || echo '$(srcdir)/'`dialogs/firstrun.moc.cpp
@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) dialogs/$(DEPDIR)/libqt4_plugin_la-firstrun.moc.Tpo dialogs/$(DEPDIR)/libqt4_plugin_la-firstrun.moc.Plo
@am__fastdepCXX_FALSE@ $(AM_V_CXX) @AM_BACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='dialogs/firstrun.moc.cpp' object='dialogs/libqt4_plugin_la-firstrun.moc.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@ $(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libqt4_plugin_la_CXXFLAGS) $(CXXFLAGS) -c -o dialogs/libqt4_plugin_la-firstrun.moc.lo `test -f 'dialogs/firstrun.moc.cpp' || echo '$(srcdir)/'`dialogs/firstrun.moc.cpp
dialogs/libqt4_plugin_la-extensions.moc.lo: dialogs/extensions.moc.cpp
@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libqt4_plugin_la_CXXFLAGS) $(CXXFLAGS) -MT dialogs/libqt4_plugin_la-extensions.moc.lo -MD -MP -MF dialogs/$(DEPDIR)/libqt4_plugin_la-extensions.moc.Tpo -c -o dialogs/libqt4_plugin_la-extensions.moc.lo `test -f 'dialogs/extensions.moc.cpp' || echo '$(srcdir)/'`dialogs/extensions.moc.cpp
@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) dialogs/$(DEPDIR)/libqt4_plugin_la-extensions.moc.Tpo dialogs/$(DEPDIR)/libqt4_plugin_la-extensions.moc.Plo
@am__fastdepCXX_FALSE@ $(AM_V_CXX) @AM_BACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='dialogs/extensions.moc.cpp' object='dialogs/libqt4_plugin_la-extensions.moc.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@ $(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libqt4_plugin_la_CXXFLAGS) $(CXXFLAGS) -c -o dialogs/libqt4_plugin_la-extensions.moc.lo `test -f 'dialogs/extensions.moc.cpp' || echo '$(srcdir)/'`dialogs/extensions.moc.cpp
components/libqt4_plugin_la-extended_panels.moc.lo: components/extended_panels.moc.cpp
@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libqt4_plugin_la_CXXFLAGS) $(CXXFLAGS) -MT components/libqt4_plugin_la-extended_panels.moc.lo -MD -MP -MF components/$(DEPDIR)/libqt4_plugin_la-extended_panels.moc.Tpo -c -o components/libqt4_plugin_la-extended_panels.moc.lo `test -f 'components/extended_panels.moc.cpp' || echo '$(srcdir)/'`components/extended_panels.moc.cpp
@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) components/$(DEPDIR)/libqt4_plugin_la-extended_panels.moc.Tpo components/$(DEPDIR)/libqt4_plugin_la-extended_panels.moc.Plo
@am__fastdepCXX_FALSE@ $(AM_V_CXX) @AM_BACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='components/extended_panels.moc.cpp' object='components/libqt4_plugin_la-extended_panels.moc.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@ $(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libqt4_plugin_la_CXXFLAGS) $(CXXFLAGS) -c -o components/libqt4_plugin_la-extended_panels.moc.lo `test -f 'components/extended_panels.moc.cpp' || echo '$(srcdir)/'`components/extended_panels.moc.cpp
components/libqt4_plugin_la-info_panels.moc.lo: components/info_panels.moc.cpp
@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libqt4_plugin_la_CXXFLAGS) $(CXXFLAGS) -MT components/libqt4_plugin_la-info_panels.moc.lo -MD -MP -MF components/$(DEPDIR)/libqt4_plugin_la-info_panels.moc.Tpo -c -o components/libqt4_plugin_la-info_panels.moc.lo `test -f 'components/info_panels.moc.cpp' || echo '$(srcdir)/'`components/info_panels.moc.cpp
@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) components/$(DEPDIR)/libqt4_plugin_la-info_panels.moc.Tpo components/$(DEPDIR)/libqt4_plugin_la-info_panels.moc.Plo
@am__fastdepCXX_FALSE@ $(AM_V_CXX) @AM_BACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='components/info_panels.moc.cpp' object='components/libqt4_plugin_la-info_panels.moc.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@ $(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libqt4_plugin_la_CXXFLAGS) $(CXXFLAGS) -c -o components/libqt4_plugin_la-info_panels.moc.lo `test -f 'components/info_panels.moc.cpp' || echo '$(srcdir)/'`components/info_panels.moc.cpp
components/libqt4_plugin_la-preferences_widgets.moc.lo: components/preferences_widgets.moc.cpp
@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libqt4_plugin_la_CXXFLAGS) $(CXXFLAGS) -MT components/libqt4_plugin_la-preferences_widgets.moc.lo -MD -MP -MF components/$(DEPDIR)/libqt4_plugin_la-preferences_widgets.moc.Tpo -c -o components/libqt4_plugin_la-preferences_widgets.moc.lo `test -f 'components/preferences_widgets.moc.cpp' || echo '$(srcdir)/'`components/preferences_widgets.moc.cpp
@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) components/$(DEPDIR)/libqt4_plugin_la-preferences_widgets.moc.Tpo components/$(DEPDIR)/libqt4_plugin_la-preferences_widgets.moc.Plo
@am__fastdepCXX_FALSE@ $(AM_V_CXX) @AM_BACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='components/preferences_widgets.moc.cpp' object='components/libqt4_plugin_la-preferences_widgets.moc.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@ $(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libqt4_plugin_la_CXXFLAGS) $(CXXFLAGS) -c -o components/libqt4_plugin_la-preferences_widgets.moc.lo `test -f 'components/preferences_widgets.moc.cpp' || echo '$(srcdir)/'`components/preferences_widgets.moc.cpp
components/libqt4_plugin_la-complete_preferences.moc.lo: components/complete_preferences.moc.cpp
@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libqt4_plugin_la_CXXFLAGS) $(CXXFLAGS) -MT components/libqt4_plugin_la-complete_preferences.moc.lo -MD -MP -MF components/$(DEPDIR)/libqt4_plugin_la-complete_preferences.moc.Tpo -c -o components/libqt4_plugin_la-complete_preferences.moc.lo `test -f 'components/complete_preferences.moc.cpp' || echo '$(srcdir)/'`components/complete_preferences.moc.cpp
@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) components/$(DEPDIR)/libqt4_plugin_la-complete_preferences.moc.Tpo components/$(DEPDIR)/libqt4_plugin_la-complete_preferences.moc.Plo
@am__fastdepCXX_FALSE@ $(AM_V_CXX) @AM_BACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='components/complete_preferences.moc.cpp' object='components/libqt4_plugin_la-complete_preferences.moc.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@ $(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libqt4_plugin_la_CXXFLAGS) $(CXXFLAGS) -c -o components/libqt4_plugin_la-complete_preferences.moc.lo `test -f 'components/complete_preferences.moc.cpp' || echo '$(srcdir)/'`components/complete_preferences.moc.cpp
components/libqt4_plugin_la-simple_preferences.moc.lo: components/simple_preferences.moc.cpp
@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libqt4_plugin_la_CXXFLAGS) $(CXXFLAGS) -MT components/libqt4_plugin_la-simple_preferences.moc.lo -MD -MP -MF components/$(DEPDIR)/libqt4_plugin_la-simple_preferences.moc.Tpo -c -o components/libqt4_plugin_la-simple_preferences.moc.lo `test -f 'components/simple_preferences.moc.cpp' || echo '$(srcdir)/'`components/simple_preferences.moc.cpp
@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) components/$(DEPDIR)/libqt4_plugin_la-simple_preferences.moc.Tpo components/$(DEPDIR)/libqt4_plugin_la-simple_preferences.moc.Plo
@am__fastdepCXX_FALSE@ $(AM_V_CXX) @AM_BACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='components/simple_preferences.moc.cpp' object='components/libqt4_plugin_la-simple_preferences.moc.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@ $(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libqt4_plugin_la_CXXFLAGS) $(CXXFLAGS) -c -o components/libqt4_plugin_la-simple_preferences.moc.lo `test -f 'components/simple_preferences.moc.cpp' || echo '$(srcdir)/'`components/simple_preferences.moc.cpp
components/libqt4_plugin_la-open_panels.moc.lo: components/open_panels.moc.cpp
@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libqt4_plugin_la_CXXFLAGS) $(CXXFLAGS) -MT components/libqt4_plugin_la-open_panels.moc.lo -MD -MP -MF components/$(DEPDIR)/libqt4_plugin_la-open_panels.moc.Tpo -c -o components/libqt4_plugin_la-open_panels.moc.lo `test -f 'components/open_panels.moc.cpp' || echo '$(srcdir)/'`components/open_panels.moc.cpp
@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) components/$(DEPDIR)/libqt4_plugin_la-open_panels.moc.Tpo components/$(DEPDIR)/libqt4_plugin_la-open_panels.moc.Plo
@am__fastdepCXX_FALSE@ $(AM_V_CXX) @AM_BACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='components/open_panels.moc.cpp' object='components/libqt4_plugin_la-open_panels.moc.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@ $(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libqt4_plugin_la_CXXFLAGS) $(CXXFLAGS) -c -o components/libqt4_plugin_la-open_panels.moc.lo `test -f 'components/open_panels.moc.cpp' || echo '$(srcdir)/'`components/open_panels.moc.cpp
components/libqt4_plugin_la-interface_widgets.moc.lo: components/interface_widgets.moc.cpp
@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libqt4_plugin_la_CXXFLAGS) $(CXXFLAGS) -MT components/libqt4_plugin_la-interface_widgets.moc.lo -MD -MP -MF components/$(DEPDIR)/libqt4_plugin_la-interface_widgets.moc.Tpo -c -o components/libqt4_plugin_la-interface_widgets.moc.lo `test -f 'components/interface_widgets.moc.cpp' || echo '$(srcdir)/'`components/interface_widgets.moc.cpp
@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) components/$(DEPDIR)/libqt4_plugin_la-interface_widgets.moc.Tpo components/$(DEPDIR)/libqt4_plugin_la-interface_widgets.moc.Plo
@am__fastdepCXX_FALSE@ $(AM_V_CXX) @AM_BACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='components/interface_widgets.moc.cpp' object='components/libqt4_plugin_la-interface_widgets.moc.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@ $(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libqt4_plugin_la_CXXFLAGS) $(CXXFLAGS) -c -o components/libqt4_plugin_la-interface_widgets.moc.lo `test -f 'components/interface_widgets.moc.cpp' || echo '$(srcdir)/'`components/interface_widgets.moc.cpp
components/libqt4_plugin_la-controller.moc.lo: components/controller.moc.cpp
@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libqt4_plugin_la_CXXFLAGS) $(CXXFLAGS) -MT components/libqt4_plugin_la-controller.moc.lo -MD -MP -MF components/$(DEPDIR)/libqt4_plugin_la-controller.moc.Tpo -c -o components/libqt4_plugin_la-controller.moc.lo `test -f 'components/controller.moc.cpp' || echo '$(srcdir)/'`components/controller.moc.cpp
@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) components/$(DEPDIR)/libqt4_plugin_la-controller.moc.Tpo components/$(DEPDIR)/libqt4_plugin_la-controller.moc.Plo
@am__fastdepCXX_FALSE@ $(AM_V_CXX) @AM_BACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='components/controller.moc.cpp' object='components/libqt4_plugin_la-controller.moc.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@ $(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libqt4_plugin_la_CXXFLAGS) $(CXXFLAGS) -c -o components/libqt4_plugin_la-controller.moc.lo `test -f 'components/controller.moc.cpp' || echo '$(srcdir)/'`components/controller.moc.cpp
components/libqt4_plugin_la-controller_widget.moc.lo: components/controller_widget.moc.cpp
@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libqt4_plugin_la_CXXFLAGS) $(CXXFLAGS) -MT components/libqt4_plugin_la-controller_widget.moc.lo -MD -MP -MF components/$(DEPDIR)/libqt4_plugin_la-controller_widget.moc.Tpo -c -o components/libqt4_plugin_la-controller_widget.moc.lo `test -f 'components/controller_widget.moc.cpp' || echo '$(srcdir)/'`components/controller_widget.moc.cpp
@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) components/$(DEPDIR)/libqt4_plugin_la-controller_widget.moc.Tpo components/$(DEPDIR)/libqt4_plugin_la-controller_widget.moc.Plo
@am__fastdepCXX_FALSE@ $(AM_V_CXX) @AM_BACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='components/controller_widget.moc.cpp' object='components/libqt4_plugin_la-controller_widget.moc.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@ $(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libqt4_plugin_la_CXXFLAGS) $(CXXFLAGS) -c -o components/libqt4_plugin_la-controller_widget.moc.lo `test -f 'components/controller_widget.moc.cpp' || echo '$(srcdir)/'`components/controller_widget.moc.cpp
components/epg/libqt4_plugin_la-EPGChannels.moc.lo: components/epg/EPGChannels.moc.cpp
@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libqt4_plugin_la_CXXFLAGS) $(CXXFLAGS) -MT components/epg/libqt4_plugin_la-EPGChannels.moc.lo -MD -MP -MF components/epg/$(DEPDIR)/libqt4_plugin_la-EPGChannels.moc.Tpo -c -o components/epg/libqt4_plugin_la-EPGChannels.moc.lo `test -f 'components/epg/EPGChannels.moc.cpp' || echo '$(srcdir)/'`components/epg/EPGChannels.moc.cpp
@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) components/epg/$(DEPDIR)/libqt4_plugin_la-EPGChannels.moc.Tpo components/epg/$(DEPDIR)/libqt4_plugin_la-EPGChannels.moc.Plo
@am__fastdepCXX_FALSE@ $(AM_V_CXX) @AM_BACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='components/epg/EPGChannels.moc.cpp' object='components/epg/libqt4_plugin_la-EPGChannels.moc.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@ $(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libqt4_plugin_la_CXXFLAGS) $(CXXFLAGS) -c -o components/epg/libqt4_plugin_la-EPGChannels.moc.lo `test -f 'components/epg/EPGChannels.moc.cpp' || echo '$(srcdir)/'`components/epg/EPGChannels.moc.cpp
components/epg/libqt4_plugin_la-EPGRuler.moc.lo: components/epg/EPGRuler.moc.cpp
@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libqt4_plugin_la_CXXFLAGS) $(CXXFLAGS) -MT components/epg/libqt4_plugin_la-EPGRuler.moc.lo -MD -MP -MF components/epg/$(DEPDIR)/libqt4_plugin_la-EPGRuler.moc.Tpo -c -o components/epg/libqt4_plugin_la-EPGRuler.moc.lo `test -f 'components/epg/EPGRuler.moc.cpp' || echo '$(srcdir)/'`components/epg/EPGRuler.moc.cpp
@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) components/epg/$(DEPDIR)/libqt4_plugin_la-EPGRuler.moc.Tpo components/epg/$(DEPDIR)/libqt4_plugin_la-EPGRuler.moc.Plo
@am__fastdepCXX_FALSE@ $(AM_V_CXX) @AM_BACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='components/epg/EPGRuler.moc.cpp' object='components/epg/libqt4_plugin_la-EPGRuler.moc.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@ $(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libqt4_plugin_la_CXXFLAGS) $(CXXFLAGS) -c -o components/epg/libqt4_plugin_la-EPGRuler.moc.lo `test -f 'components/epg/EPGRuler.moc.cpp' || echo '$(srcdir)/'`components/epg/EPGRuler.moc.cpp
components/epg/libqt4_plugin_la-EPGView.moc.lo: components/epg/EPGView.moc.cpp
@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libqt4_plugin_la_CXXFLAGS) $(CXXFLAGS) -MT components/epg/libqt4_plugin_la-EPGView.moc.lo -MD -MP -MF components/epg/$(DEPDIR)/libqt4_plugin_la-EPGView.moc.Tpo -c -o components/epg/libqt4_plugin_la-EPGView.moc.lo `test -f 'components/epg/EPGView.moc.cpp' || echo '$(srcdir)/'`components/epg/EPGView.moc.cpp
@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) components/epg/$(DEPDIR)/libqt4_plugin_la-EPGView.moc.Tpo components/epg/$(DEPDIR)/libqt4_plugin_la-EPGView.moc.Plo
@am__fastdepCXX_FALSE@ $(AM_V_CXX) @AM_BACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='components/epg/EPGView.moc.cpp' object='components/epg/libqt4_plugin_la-EPGView.moc.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@ $(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libqt4_plugin_la_CXXFLAGS) $(CXXFLAGS) -c -o components/epg/libqt4_plugin_la-EPGView.moc.lo `test -f 'components/epg/EPGView.moc.cpp' || echo '$(srcdir)/'`components/epg/EPGView.moc.cpp
components/epg/libqt4_plugin_la-EPGWidget.moc.lo: components/epg/EPGWidget.moc.cpp
@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libqt4_plugin_la_CXXFLAGS) $(CXXFLAGS) -MT components/epg/libqt4_plugin_la-EPGWidget.moc.lo -MD -MP -MF components/epg/$(DEPDIR)/libqt4_plugin_la-EPGWidget.moc.Tpo -c -o components/epg/libqt4_plugin_la-EPGWidget.moc.lo `test -f 'components/epg/EPGWidget.moc.cpp' || echo '$(srcdir)/'`components/epg/EPGWidget.moc.cpp
@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) components/epg/$(DEPDIR)/libqt4_plugin_la-EPGWidget.moc.Tpo components/epg/$(DEPDIR)/libqt4_plugin_la-EPGWidget.moc.Plo
@am__fastdepCXX_FALSE@ $(AM_V_CXX) @AM_BACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='components/epg/EPGWidget.moc.cpp' object='components/epg/libqt4_plugin_la-EPGWidget.moc.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@ $(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libqt4_plugin_la_CXXFLAGS) $(CXXFLAGS) -c -o components/epg/libqt4_plugin_la-EPGWidget.moc.lo `test -f 'components/epg/EPGWidget.moc.cpp' || echo '$(srcdir)/'`components/epg/EPGWidget.moc.cpp
components/playlist/libqt4_plugin_la-icon_view.moc.lo: components/playlist/icon_view.moc.cpp
@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libqt4_plugin_la_CXXFLAGS) $(CXXFLAGS) -MT components/playlist/libqt4_plugin_la-icon_view.moc.lo -MD -MP -MF components/playlist/$(DEPDIR)/libqt4_plugin_la-icon_view.moc.Tpo -c -o components/playlist/libqt4_plugin_la-icon_view.moc.lo `test -f 'components/playlist/icon_view.moc.cpp' || echo '$(srcdir)/'`components/playlist/icon_view.moc.cpp
@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) components/playlist/$(DEPDIR)/libqt4_plugin_la-icon_view.moc.Tpo components/playlist/$(DEPDIR)/libqt4_plugin_la-icon_view.moc.Plo
@am__fastdepCXX_FALSE@ $(AM_V_CXX) @AM_BACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='components/playlist/icon_view.moc.cpp' object='components/playlist/libqt4_plugin_la-icon_view.moc.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@ $(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libqt4_plugin_la_CXXFLAGS) $(CXXFLAGS) -c -o components/playlist/libqt4_plugin_la-icon_view.moc.lo `test -f 'components/playlist/icon_view.moc.cpp' || echo '$(srcdir)/'`components/playlist/icon_view.moc.cpp
components/playlist/libqt4_plugin_la-playlist_model.moc.lo: components/playlist/playlist_model.moc.cpp
@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libqt4_plugin_la_CXXFLAGS) $(CXXFLAGS) -MT components/playlist/libqt4_plugin_la-playlist_model.moc.lo -MD -MP -MF components/playlist/$(DEPDIR)/libqt4_plugin_la-playlist_model.moc.Tpo -c -o components/playlist/libqt4_plugin_la-playlist_model.moc.lo `test -f 'components/playlist/playlist_model.moc.cpp' || echo '$(srcdir)/'`components/playlist/playlist_model.moc.cpp
@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) components/playlist/$(DEPDIR)/libqt4_plugin_la-playlist_model.moc.Tpo components/playlist/$(DEPDIR)/libqt4_plugin_la-playlist_model.moc.Plo
@am__fastdepCXX_FALSE@ $(AM_V_CXX) @AM_BACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='components/playlist/playlist_model.moc.cpp' object='components/playlist/libqt4_plugin_la-playlist_model.moc.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@ $(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libqt4_plugin_la_CXXFLAGS) $(CXXFLAGS) -c -o components/playlist/libqt4_plugin_la-playlist_model.moc.lo `test -f 'components/playlist/playlist_model.moc.cpp' || echo '$(srcdir)/'`components/playlist/playlist_model.moc.cpp
components/playlist/libqt4_plugin_la-playlist.moc.lo: components/playlist/playlist.moc.cpp
@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libqt4_plugin_la_CXXFLAGS) $(CXXFLAGS) -MT components/playlist/libqt4_plugin_la-playlist.moc.lo -MD -MP -MF components/playlist/$(DEPDIR)/libqt4_plugin_la-playlist.moc.Tpo -c -o components/playlist/libqt4_plugin_la-playlist.moc.lo `test -f 'components/playlist/playlist.moc.cpp' || echo '$(srcdir)/'`components/playlist/playlist.moc.cpp
@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) components/playlist/$(DEPDIR)/libqt4_plugin_la-playlist.moc.Tpo components/playlist/$(DEPDIR)/libqt4_plugin_la-playlist.moc.Plo
@am__fastdepCXX_FALSE@ $(AM_V_CXX) @AM_BACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='components/playlist/playlist.moc.cpp' object='components/playlist/libqt4_plugin_la-playlist.moc.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@ $(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libqt4_plugin_la_CXXFLAGS) $(CXXFLAGS) -c -o components/playlist/libqt4_plugin_la-playlist.moc.lo `test -f 'components/playlist/playlist.moc.cpp' || echo '$(srcdir)/'`components/playlist/playlist.moc.cpp
components/playlist/libqt4_plugin_la-standardpanel.moc.lo: components/playlist/standardpanel.moc.cpp
@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libqt4_plugin_la_CXXFLAGS) $(CXXFLAGS) -MT components/playlist/libqt4_plugin_la-standardpanel.moc.lo -MD -MP -MF components/playlist/$(DEPDIR)/libqt4_plugin_la-standardpanel.moc.Tpo -c -o components/playlist/libqt4_plugin_la-standardpanel.moc.lo `test -f 'components/playlist/standardpanel.moc.cpp' || echo '$(srcdir)/'`components/playlist/standardpanel.moc.cpp
@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) components/playlist/$(DEPDIR)/libqt4_plugin_la-standardpanel.moc.Tpo components/playlist/$(DEPDIR)/libqt4_plugin_la-standardpanel.moc.Plo
@am__fastdepCXX_FALSE@ $(AM_V_CXX) @AM_BACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='components/playlist/standardpanel.moc.cpp' object='components/playlist/libqt4_plugin_la-standardpanel.moc.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@ $(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libqt4_plugin_la_CXXFLAGS) $(CXXFLAGS) -c -o components/playlist/libqt4_plugin_la-standardpanel.moc.lo `test -f 'components/playlist/standardpanel.moc.cpp' || echo '$(srcdir)/'`components/playlist/standardpanel.moc.cpp
components/playlist/libqt4_plugin_la-selector.moc.lo: components/playlist/selector.moc.cpp
@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libqt4_plugin_la_CXXFLAGS) $(CXXFLAGS) -MT components/playlist/libqt4_plugin_la-selector.moc.lo -MD -MP -MF components/playlist/$(DEPDIR)/libqt4_plugin_la-selector.moc.Tpo -c -o components/playlist/libqt4_plugin_la-selector.moc.lo `test -f 'components/playlist/selector.moc.cpp' || echo '$(srcdir)/'`components/playlist/selector.moc.cpp
@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) components/playlist/$(DEPDIR)/libqt4_plugin_la-selector.moc.Tpo components/playlist/$(DEPDIR)/libqt4_plugin_la-selector.moc.Plo
@am__fastdepCXX_FALSE@ $(AM_V_CXX) @AM_BACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='components/playlist/selector.moc.cpp' object='components/playlist/libqt4_plugin_la-selector.moc.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@ $(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libqt4_plugin_la_CXXFLAGS) $(CXXFLAGS) -c -o components/playlist/libqt4_plugin_la-selector.moc.lo `test -f 'components/playlist/selector.moc.cpp' || echo '$(srcdir)/'`components/playlist/selector.moc.cpp
components/sout/libqt4_plugin_la-profile_selector.moc.lo: components/sout/profile_selector.moc.cpp
@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libqt4_plugin_la_CXXFLAGS) $(CXXFLAGS) -MT components/sout/libqt4_plugin_la-profile_selector.moc.lo -MD -MP -MF components/sout/$(DEPDIR)/libqt4_plugin_la-profile_selector.moc.Tpo -c -o components/sout/libqt4_plugin_la-profile_selector.moc.lo `test -f 'components/sout/profile_selector.moc.cpp' || echo '$(srcdir)/'`components/sout/profile_selector.moc.cpp
@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) components/sout/$(DEPDIR)/libqt4_plugin_la-profile_selector.moc.Tpo components/sout/$(DEPDIR)/libqt4_plugin_la-profile_selector.moc.Plo
@am__fastdepCXX_FALSE@ $(AM_V_CXX) @AM_BACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='components/sout/profile_selector.moc.cpp' object='components/sout/libqt4_plugin_la-profile_selector.moc.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@ $(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libqt4_plugin_la_CXXFLAGS) $(CXXFLAGS) -c -o components/sout/libqt4_plugin_la-profile_selector.moc.lo `test -f 'components/sout/profile_selector.moc.cpp' || echo '$(srcdir)/'`components/sout/profile_selector.moc.cpp
components/sout/libqt4_plugin_la-sout_widgets.moc.lo: components/sout/sout_widgets.moc.cpp
@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libqt4_plugin_la_CXXFLAGS) $(CXXFLAGS) -MT components/sout/libqt4_plugin_la-sout_widgets.moc.lo -MD -MP -MF components/sout/$(DEPDIR)/libqt4_plugin_la-sout_widgets.moc.Tpo -c -o components/sout/libqt4_plugin_la-sout_widgets.moc.lo `test -f 'components/sout/sout_widgets.moc.cpp' || echo '$(srcdir)/'`components/sout/sout_widgets.moc.cpp
@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) components/sout/$(DEPDIR)/libqt4_plugin_la-sout_widgets.moc.Tpo components/sout/$(DEPDIR)/libqt4_plugin_la-sout_widgets.moc.Plo
@am__fastdepCXX_FALSE@ $(AM_V_CXX) @AM_BACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='components/sout/sout_widgets.moc.cpp' object='components/sout/libqt4_plugin_la-sout_widgets.moc.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@ $(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libqt4_plugin_la_CXXFLAGS) $(CXXFLAGS) -c -o components/sout/libqt4_plugin_la-sout_widgets.moc.lo `test -f 'components/sout/sout_widgets.moc.cpp' || echo '$(srcdir)/'`components/sout/sout_widgets.moc.cpp
util/libqt4_plugin_la-input_slider.moc.lo: util/input_slider.moc.cpp
@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libqt4_plugin_la_CXXFLAGS) $(CXXFLAGS) -MT util/libqt4_plugin_la-input_slider.moc.lo -MD -MP -MF util/$(DEPDIR)/libqt4_plugin_la-input_slider.moc.Tpo -c -o util/libqt4_plugin_la-input_slider.moc.lo `test -f 'util/input_slider.moc.cpp' || echo '$(srcdir)/'`util/input_slider.moc.cpp
@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) util/$(DEPDIR)/libqt4_plugin_la-input_slider.moc.Tpo util/$(DEPDIR)/libqt4_plugin_la-input_slider.moc.Plo
@am__fastdepCXX_FALSE@ $(AM_V_CXX) @AM_BACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='util/input_slider.moc.cpp' object='util/libqt4_plugin_la-input_slider.moc.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@ $(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libqt4_plugin_la_CXXFLAGS) $(CXXFLAGS) -c -o util/libqt4_plugin_la-input_slider.moc.lo `test -f 'util/input_slider.moc.cpp' || echo '$(srcdir)/'`util/input_slider.moc.cpp
util/libqt4_plugin_la-customwidgets.moc.lo: util/customwidgets.moc.cpp
@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libqt4_plugin_la_CXXFLAGS) $(CXXFLAGS) -MT util/libqt4_plugin_la-customwidgets.moc.lo -MD -MP -MF util/$(DEPDIR)/libqt4_plugin_la-customwidgets.moc.Tpo -c -o util/libqt4_plugin_la-customwidgets.moc.lo `test -f 'util/customwidgets.moc.cpp' || echo '$(srcdir)/'`util/customwidgets.moc.cpp
@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) util/$(DEPDIR)/libqt4_plugin_la-customwidgets.moc.Tpo util/$(DEPDIR)/libqt4_plugin_la-customwidgets.moc.Plo
@am__fastdepCXX_FALSE@ $(AM_V_CXX) @AM_BACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='util/customwidgets.moc.cpp' object='util/libqt4_plugin_la-customwidgets.moc.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@ $(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libqt4_plugin_la_CXXFLAGS) $(CXXFLAGS) -c -o util/libqt4_plugin_la-customwidgets.moc.lo `test -f 'util/customwidgets.moc.cpp' || echo '$(srcdir)/'`util/customwidgets.moc.cpp
util/libqt4_plugin_la-qvlcapp.moc.lo: util/qvlcapp.moc.cpp
@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libqt4_plugin_la_CXXFLAGS) $(CXXFLAGS) -MT util/libqt4_plugin_la-qvlcapp.moc.lo -MD -MP -MF util/$(DEPDIR)/libqt4_plugin_la-qvlcapp.moc.Tpo -c -o util/libqt4_plugin_la-qvlcapp.moc.lo `test -f 'util/qvlcapp.moc.cpp' || echo '$(srcdir)/'`util/qvlcapp.moc.cpp
@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) util/$(DEPDIR)/libqt4_plugin_la-qvlcapp.moc.Tpo util/$(DEPDIR)/libqt4_plugin_la-qvlcapp.moc.Plo
@am__fastdepCXX_FALSE@ $(AM_V_CXX) @AM_BACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='util/qvlcapp.moc.cpp' object='util/libqt4_plugin_la-qvlcapp.moc.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@ $(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libqt4_plugin_la_CXXFLAGS) $(CXXFLAGS) -c -o util/libqt4_plugin_la-qvlcapp.moc.lo `test -f 'util/qvlcapp.moc.cpp' || echo '$(srcdir)/'`util/qvlcapp.moc.cpp
libqt4_plugin_la-resources.lo: resources.cpp
@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libqt4_plugin_la_CXXFLAGS) $(CXXFLAGS) -MT libqt4_plugin_la-resources.lo -MD -MP -MF $(DEPDIR)/libqt4_plugin_la-resources.Tpo -c -o libqt4_plugin_la-resources.lo `test -f 'resources.cpp' || echo '$(srcdir)/'`resources.cpp
@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libqt4_plugin_la-resources.Tpo $(DEPDIR)/libqt4_plugin_la-resources.Plo
@am__fastdepCXX_FALSE@ $(AM_V_CXX) @AM_BACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='resources.cpp' object='libqt4_plugin_la-resources.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@ $(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libqt4_plugin_la_CXXFLAGS) $(CXXFLAGS) -c -o libqt4_plugin_la-resources.lo `test -f 'resources.cpp' || echo '$(srcdir)/'`resources.cpp
mostlyclean-libtool:
-rm -f *.lo
clean-libtool:
-rm -rf .libs _libs
-rm -rf components/.libs components/_libs
-rm -rf components/epg/.libs components/epg/_libs
-rm -rf components/playlist/.libs components/playlist/_libs
-rm -rf components/sout/.libs components/sout/_libs
-rm -rf dialogs/.libs dialogs/_libs
-rm -rf util/.libs util/_libs
ID: $(HEADERS) $(SOURCES) $(LISP) $(TAGS_FILES)
list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \
unique=`for i in $$list; do \
if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \
done | \
$(AWK) '{ files[$$0] = 1; nonempty = 1; } \
END { if (nonempty) { for (i in files) print i; }; }'`; \
mkid -fID $$unique
tags: TAGS
TAGS: $(HEADERS) $(SOURCES) $(TAGS_DEPENDENCIES) \
$(TAGS_FILES) $(LISP)
set x; \
here=`pwd`; \
list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \
unique=`for i in $$list; do \
if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \
done | \
$(AWK) '{ files[$$0] = 1; nonempty = 1; } \
END { if (nonempty) { for (i in files) print i; }; }'`; \
shift; \
if test -z "$(ETAGS_ARGS)$$*$$unique"; then :; else \
test -n "$$unique" || unique=$$empty_fix; \
if test $$# -gt 0; then \
$(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \
"$$@" $$unique; \
else \
$(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \
$$unique; \
fi; \
fi
ctags: CTAGS
CTAGS: $(HEADERS) $(SOURCES) $(TAGS_DEPENDENCIES) \
$(TAGS_FILES) $(LISP)
list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \
unique=`for i in $$list; do \
if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \
done | \
$(AWK) '{ files[$$0] = 1; nonempty = 1; } \
END { if (nonempty) { for (i in files) print i; }; }'`; \
test -z "$(CTAGS_ARGS)$$unique" \
|| $(CTAGS) $(CTAGSFLAGS) $(AM_CTAGSFLAGS) $(CTAGS_ARGS) \
$$unique
GTAGS:
here=`$(am__cd) $(top_builddir) && pwd` \
&& $(am__cd) $(top_srcdir) \
&& gtags -i $(GTAGS_ARGS) "$$here"
distclean-tags:
-rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags
distdir: $(DISTFILES)
@srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \
topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \
list='$(DISTFILES)'; \
dist_files=`for file in $$list; do echo $$file; done | \
sed -e "s|^$$srcdirstrip/||;t" \
-e "s|^$$topsrcdirstrip/|$(top_builddir)/|;t"`; \
case $$dist_files in \
*/*) $(MKDIR_P) `echo "$$dist_files" | \
sed '/\//!d;s|^|$(distdir)/|;s,/[^/]*$$,,' | \
sort -u` ;; \
esac; \
for file in $$dist_files; do \
if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \
if test -d $$d/$$file; then \
dir=`echo "/$$file" | sed -e 's,/[^/]*$$,,'`; \
if test -d "$(distdir)/$$file"; then \
find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \
fi; \
if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \
cp -fpR $(srcdir)/$$file "$(distdir)$$dir" || exit 1; \
find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \
fi; \
cp -fpR $$d/$$file "$(distdir)$$dir" || exit 1; \
else \
test -f "$(distdir)/$$file" \
|| cp -p $$d/$$file "$(distdir)/$$file" \
|| exit 1; \
fi; \
done
check-am: all-am
check: $(BUILT_SOURCES)
$(MAKE) $(AM_MAKEFLAGS) check-am
all-am: Makefile $(LTLIBRARIES) $(HEADERS)
installdirs:
for dir in "$(DESTDIR)$(libvlcdir)"; do \
test -z "$$dir" || $(MKDIR_P) "$$dir"; \
done
install: $(BUILT_SOURCES)
$(MAKE) $(AM_MAKEFLAGS) install-am
install-exec: install-exec-am
install-data: install-data-am
uninstall: uninstall-am
install-am: all-am
@$(MAKE) $(AM_MAKEFLAGS) install-exec-am install-data-am
installcheck: installcheck-am
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:
-test -z "$(MOSTLYCLEANFILES)" || rm -f $(MOSTLYCLEANFILES)
clean-generic:
-test -z "$(CLEANFILES)" || rm -f $(CLEANFILES)
distclean-generic:
-test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES)
-test . = "$(srcdir)" || test -z "$(CONFIG_CLEAN_VPATH_FILES)" || rm -f $(CONFIG_CLEAN_VPATH_FILES)
-rm -f components/$(DEPDIR)/$(am__dirstamp)
-rm -f components/$(am__dirstamp)
-rm -f components/epg/$(DEPDIR)/$(am__dirstamp)
-rm -f components/epg/$(am__dirstamp)
-rm -f components/playlist/$(DEPDIR)/$(am__dirstamp)
-rm -f components/playlist/$(am__dirstamp)
-rm -f components/sout/$(DEPDIR)/$(am__dirstamp)
-rm -f components/sout/$(am__dirstamp)
-rm -f dialogs/$(DEPDIR)/$(am__dirstamp)
-rm -f dialogs/$(am__dirstamp)
-rm -f util/$(DEPDIR)/$(am__dirstamp)
-rm -f util/$(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-am
clean-am: clean-generic clean-libtool clean-libvlcLTLIBRARIES \
mostlyclean-am
distclean: distclean-am
-rm -rf ./$(DEPDIR) components/$(DEPDIR) components/epg/$(DEPDIR) components/playlist/$(DEPDIR) components/sout/$(DEPDIR) dialogs/$(DEPDIR) util/$(DEPDIR)
-rm -f Makefile
distclean-am: clean-am distclean-compile distclean-generic \
distclean-tags
dvi: dvi-am
dvi-am:
html: html-am
html-am:
info: info-am
info-am:
install-data-am: install-libvlcLTLIBRARIES
install-dvi: install-dvi-am
install-dvi-am:
install-exec-am:
install-html: install-html-am
install-html-am:
install-info: install-info-am
install-info-am:
install-man:
install-pdf: install-pdf-am
install-pdf-am:
install-ps: install-ps-am
install-ps-am:
installcheck-am:
maintainer-clean: maintainer-clean-am
-rm -rf ./$(DEPDIR) components/$(DEPDIR) components/epg/$(DEPDIR) components/playlist/$(DEPDIR) components/sout/$(DEPDIR) dialogs/$(DEPDIR) util/$(DEPDIR)
-rm -f Makefile
maintainer-clean-am: distclean-am maintainer-clean-generic
mostlyclean: mostlyclean-am
mostlyclean-am: mostlyclean-compile mostlyclean-generic \
mostlyclean-libtool
pdf: pdf-am
pdf-am:
ps: ps-am
ps-am:
uninstall-am: uninstall-libvlcLTLIBRARIES
.MAKE: all check install install-am install-strip
.PHONY: CTAGS GTAGS all all-am check check-am clean clean-generic \
clean-libtool clean-libvlcLTLIBRARIES ctags 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-libvlcLTLIBRARIES install-man install-pdf \
install-pdf-am install-ps install-ps-am install-strip \
installcheck installcheck-am installdirs maintainer-clean \
maintainer-clean-generic mostlyclean mostlyclean-compile \
mostlyclean-generic mostlyclean-libtool pdf pdf-am ps ps-am \
tags uninstall uninstall-am uninstall-libvlcLTLIBRARIES
resources.cpp: vlc.qrc $(DEPS_res)
$(AM_V_GEN)$(RCC) -name vlc -o $@ $<
.hpp.moc.cpp:
$(moc_verbose)$(MOC) $(DEFS) $(CPPFLAGS) -I$(top_builddir) `$(VLC_CONFIG) --cppflags plugin qt4` -o $@ $<
.ui.h:
$(AM_V_at)mkdir -p -- ui
$(AM_V_at)rm -f $@ $@.tmp
$(AM_V_at)echo "#define Q_(a,b) QString::fromUtf8(_(a))" > $@.tmp
$(uic_verbose)$(UIC) -tr "Q_" $< >> $@.tmp
$(AM_V_at)sed -e 's/Q_(\"_(\\\"\(.*\)\\\")"/Q_("\1"/' $@.tmp >$@
$(AM_V_at)rm -f $@.tmp
@MAINTAINER_MODE_TRUE@$(srcdir)/Makefile.am: $(srcdir)/Modules.am $(top_srcdir)/modules/genmf
@MAINTAINER_MODE_TRUE@ $(AM_V_GEN)cd \$(top_srcdir) && \$(SHELL) modules/genmf $(dir)
# 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:
|