1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 1468 1469 1470 1471 1472 1473 1474 1475 1476 1477 1478 1479 1480 1481 1482 1483 1484 1485 1486 1487 1488 1489 1490 1491 1492 1493 1494 1495 1496 1497 1498 1499 1500 1501 1502 1503 1504 1505 1506 1507 1508 1509 1510 1511 1512 1513 1514 1515 1516 1517 1518 1519 1520 1521 1522 1523 1524 1525 1526 1527 1528 1529 1530 1531 1532 1533 1534 1535 1536 1537 1538 1539 1540 1541 1542 1543 1544 1545 1546 1547 1548 1549 1550 1551 1552 1553 1554 1555 1556 1557 1558 1559 1560 1561 1562 1563 1564 1565 1566 1567 1568 1569 1570 1571 1572 1573 1574 1575 1576 1577 1578 1579 1580 1581 1582 1583 1584 1585 1586 1587 1588 1589 1590 1591 1592 1593 1594 1595 1596 1597 1598 1599 1600 1601 1602 1603 1604 1605 1606 1607 1608 1609 1610 1611 1612 1613 1614 1615 1616 1617 1618 1619 1620 1621 1622 1623 1624 1625 1626 1627 1628 1629 1630 1631 1632 1633 1634 1635 1636 1637 1638 1639 1640 1641 1642 1643 1644 1645 1646 1647 1648 1649 1650 1651 1652 1653 1654 1655 1656 1657 1658 1659 1660 1661 1662 1663 1664 1665 1666 1667 1668 1669 1670 1671 1672 1673 1674 1675 1676 1677 1678 1679 1680 1681 1682 1683 1684 1685 1686 1687 1688 1689 1690 1691 1692 1693 1694 1695 1696 1697 1698 1699 1700 1701 1702 1703 1704 1705 1706 1707 1708 1709 1710 1711 1712 1713 1714 1715 1716 1717 1718 1719 1720 1721 1722 1723 1724 1725 1726 1727 1728 1729 1730 1731 1732 1733 1734 1735 1736 1737 1738 1739 1740 1741 1742 1743 1744 1745 1746 1747 1748 1749 1750 1751 1752 1753 1754 1755 1756 1757 1758 1759 1760 1761 1762 1763 1764 1765 1766 1767 1768 1769 1770 1771 1772 1773 1774 1775 1776 1777 1778 1779 1780 1781 1782 1783 1784 1785 1786 1787 1788 1789 1790 1791 1792 1793 1794 1795 1796 1797 1798 1799 1800 1801 1802 1803 1804 1805 1806 1807 1808 1809 1810 1811 1812 1813 1814 1815 1816 1817 1818 1819 1820 1821 1822 1823 1824 1825 1826 1827 1828 1829 1830 1831 1832 1833 1834 1835 1836 1837 1838 1839 1840 1841 1842 1843 1844 1845 1846 1847 1848 1849 1850 1851 1852 1853 1854 1855 1856 1857 1858 1859 1860 1861 1862 1863 1864 1865 1866 1867 1868 1869 1870 1871 1872 1873 1874 1875 1876 1877 1878 1879 1880 1881 1882 1883 1884 1885 1886 1887 1888 1889 1890 1891 1892 1893 1894 1895 1896 1897 1898 1899 1900 1901 1902 1903 1904 1905 1906 1907 1908 1909 1910 1911 1912 1913 1914 1915 1916 1917 1918 1919 1920 1921 1922 1923 1924 1925 1926 1927 1928 1929 1930 1931 1932 1933 1934 1935 1936 1937 1938 1939 1940 1941 1942 1943 1944 1945 1946 1947 1948 1949 1950 1951 1952 1953 1954 1955 1956 1957 1958 1959 1960 1961 1962 1963 1964 1965 1966 1967 1968 1969 1970 1971 1972 1973 1974 1975 1976 1977 1978 1979 1980 1981 1982 1983 1984 1985 1986 1987 1988 1989 1990 1991 1992 1993 1994 1995 1996 1997 1998 1999 2000 2001 2002 2003 2004 2005 2006 2007 2008 2009 2010 2011 2012 2013 2014 2015 2016 2017 2018 2019 2020 2021 2022 2023 2024 2025 2026 2027 2028 2029 2030 2031 2032 2033 2034 2035 2036 2037 2038 2039 2040 2041 2042 2043 2044 2045 2046 2047 2048 2049 2050 2051 2052 2053 2054 2055 2056 2057 2058 2059 2060 2061 2062 2063 2064 2065 2066 2067 2068 2069 2070 2071 2072 2073 2074 2075 2076 2077 2078 2079 2080 2081 2082 2083 2084 2085 2086 2087 2088 2089 2090 2091 2092 2093 2094 2095 2096 2097 2098 2099 2100 2101 2102 2103 2104 2105 2106 2107 2108 2109 2110 2111 2112 2113 2114 2115 2116 2117 2118 2119 2120 2121 2122 2123 2124 2125 2126 2127 2128 2129 2130 2131 2132 2133 2134 2135 2136 2137 2138 2139 2140 2141 2142 2143 2144 2145 2146 2147 2148 2149 2150 2151 2152 2153 2154 2155 2156 2157 2158 2159 2160 2161 2162 2163 2164 2165 2166 2167 2168 2169 2170 2171 2172 2173 2174 2175 2176 2177 2178 2179 2180 2181 2182 2183 2184 2185 2186 2187 2188 2189 2190 2191 2192 2193 2194 2195 2196 2197 2198 2199 2200 2201 2202 2203 2204 2205 2206 2207 2208 2209 2210 2211 2212 2213 2214 2215 2216 2217 2218 2219 2220 2221 2222 2223 2224 2225 2226 2227 2228 2229 2230 2231 2232 2233 2234 2235 2236 2237 2238 2239 2240 2241 2242 2243 2244 2245 2246 2247 2248 2249 2250 2251 2252 2253 2254 2255 2256 2257 2258 2259 2260 2261 2262 2263 2264 2265 2266 2267 2268 2269 2270 2271 2272 2273 2274 2275 2276 2277 2278 2279 2280 2281 2282 2283 2284 2285 2286 2287 2288 2289 2290 2291 2292 2293 2294 2295 2296 2297 2298 2299 2300 2301 2302 2303 2304 2305 2306 2307 2308 2309 2310 2311 2312 2313 2314 2315 2316 2317 2318 2319 2320 2321 2322 2323 2324 2325 2326 2327 2328 2329 2330 2331 2332 2333 2334 2335 2336 2337 2338 2339 2340 2341 2342 2343 2344 2345 2346 2347 2348 2349 2350 2351 2352 2353 2354 2355 2356 2357 2358 2359 2360 2361 2362 2363 2364 2365 2366 2367 2368 2369 2370 2371 2372 2373 2374 2375 2376 2377 2378 2379 2380 2381 2382 2383 2384 2385 2386 2387 2388 2389 2390 2391 2392 2393 2394 2395 2396 2397 2398 2399 2400 2401 2402 2403 2404 2405 2406 2407 2408 2409 2410 2411 2412 2413 2414 2415 2416 2417 2418 2419 2420 2421 2422 2423 2424 2425 2426 2427 2428 2429 2430 2431 2432 2433 2434 2435 2436 2437 2438 2439 2440 2441 2442 2443 2444 2445 2446 2447 2448 2449 2450 2451 2452 2453 2454 2455 2456 2457 2458 2459 2460 2461 2462 2463 2464 2465 2466 2467 2468 2469 2470 2471 2472 2473 2474 2475 2476 2477 2478 2479 2480 2481 2482 2483 2484 2485 2486 2487 2488 2489 2490 2491 2492 2493 2494 2495 2496 2497 2498 2499 2500 2501 2502 2503 2504 2505 2506 2507 2508 2509 2510 2511 2512 2513 2514 2515 2516 2517 2518 2519 2520 2521 2522 2523 2524 2525 2526 2527 2528 2529 2530 2531 2532 2533 2534 2535 2536 2537 2538 2539 2540 2541 2542 2543 2544 2545 2546 2547 2548 2549 2550 2551 2552 2553 2554 2555 2556 2557 2558 2559 2560 2561 2562 2563 2564 2565 2566 2567 2568 2569 2570 2571 2572 2573 2574 2575 2576 2577 2578 2579 2580 2581 2582 2583 2584 2585 2586 2587 2588 2589 2590 2591 2592 2593 2594 2595 2596 2597 2598 2599 2600 2601 2602 2603 2604 2605 2606 2607 2608 2609 2610 2611 2612 2613 2614 2615 2616 2617 2618 2619 2620 2621 2622 2623 2624 2625 2626 2627 2628 2629 2630 2631 2632 2633 2634 2635 2636 2637 2638 2639 2640 2641 2642 2643 2644 2645 2646 2647 2648 2649 2650 2651 2652 2653 2654 2655 2656 2657 2658 2659 2660 2661 2662 2663 2664 2665 2666 2667 2668 2669 2670 2671 2672 2673 2674 2675 2676 2677 2678 2679 2680 2681 2682 2683 2684 2685 2686 2687 2688 2689 2690 2691 2692 2693 2694 2695 2696 2697 2698 2699 2700 2701 2702 2703 2704 2705 2706 2707 2708 2709 2710 2711 2712 2713 2714 2715 2716 2717 2718 2719 2720 2721 2722 2723 2724 2725 2726 2727 2728 2729 2730 2731 2732 2733 2734 2735 2736 2737 2738 2739 2740 2741 2742 2743 2744 2745 2746 2747 2748 2749 2750 2751 2752 2753 2754 2755 2756 2757 2758 2759 2760 2761 2762 2763 2764 2765 2766 2767 2768 2769 2770 2771 2772 2773 2774 2775 2776 2777 2778 2779 2780 2781 2782 2783 2784 2785 2786 2787 2788 2789 2790 2791 2792 2793 2794 2795 2796 2797 2798 2799 2800 2801 2802 2803 2804 2805 2806 2807 2808 2809 2810 2811 2812 2813 2814 2815 2816 2817 2818 2819 2820 2821 2822 2823 2824 2825 2826 2827 2828 2829 2830 2831 2832 2833 2834 2835 2836 2837 2838 2839 2840 2841 2842 2843 2844 2845 2846 2847 2848 2849 2850 2851 2852 2853 2854 2855 2856 2857 2858 2859 2860 2861 2862 2863 2864 2865 2866 2867 2868 2869 2870 2871 2872 2873 2874 2875 2876 2877 2878 2879 2880 2881 2882 2883 2884 2885 2886 2887 2888 2889 2890 2891 2892 2893 2894 2895 2896 2897 2898 2899 2900 2901 2902 2903 2904 2905 2906 2907 2908 2909 2910 2911 2912 2913 2914 2915 2916 2917 2918 2919 2920 2921 2922 2923 2924 2925 2926 2927 2928 2929 2930 2931 2932 2933 2934 2935 2936 2937 2938 2939 2940 2941 2942 2943 2944 2945 2946 2947 2948 2949 2950 2951 2952 2953 2954 2955 2956 2957 2958 2959 2960 2961 2962 2963 2964 2965 2966 2967 2968 2969 2970 2971 2972 2973 2974 2975 2976 2977 2978 2979 2980 2981 2982 2983 2984 2985 2986 2987 2988 2989 2990 2991 2992 2993 2994 2995 2996 2997 2998 2999 3000 3001 3002 3003 3004 3005 3006 3007 3008 3009 3010 3011 3012 3013 3014 3015 3016 3017 3018 3019 3020 3021 3022 3023 3024 3025 3026 3027 3028 3029 3030 3031 3032 3033 3034 3035 3036 3037 3038 3039 3040 3041 3042 3043 3044 3045 3046 3047 3048 3049
|
# Makefile.in generated by automake 1.17 from Makefile.am.
# @configure_input@
# Copyright (C) 1994-2024 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@
VPATH = @srcdir@
am__is_gnu_make = { \
if test -z '$(MAKELEVEL)'; then \
false; \
elif test -n '$(MAKE_HOST)'; then \
true; \
elif test -n '$(MAKE_VERSION)' && test -n '$(CURDIR)'; then \
true; \
else \
false; \
fi; \
}
am__make_running_with_option = \
case $${target_option-} in \
?) ;; \
*) echo "am__make_running_with_option: internal error: invalid" \
"target option '$${target_option-}' specified" >&2; \
exit 1;; \
esac; \
has_opt=no; \
sane_makeflags=$$MAKEFLAGS; \
if $(am__is_gnu_make); then \
sane_makeflags=$$MFLAGS; \
else \
case $$MAKEFLAGS in \
*\\[\ \ ]*) \
bs=\\; \
sane_makeflags=`printf '%s\n' "$$MAKEFLAGS" \
| sed "s/$$bs$$bs[$$bs $$bs ]*//g"`;; \
esac; \
fi; \
skip_next=no; \
strip_trailopt () \
{ \
flg=`printf '%s\n' "$$flg" | sed "s/$$1.*$$//"`; \
}; \
for flg in $$sane_makeflags; do \
test $$skip_next = yes && { skip_next=no; continue; }; \
case $$flg in \
*=*|--*) continue;; \
-*I) strip_trailopt 'I'; skip_next=yes;; \
-*I?*) strip_trailopt 'I';; \
-*O) strip_trailopt 'O'; skip_next=yes;; \
-*O?*) strip_trailopt 'O';; \
-*l) strip_trailopt 'l'; skip_next=yes;; \
-*l?*) strip_trailopt 'l';; \
-[dEDm]) skip_next=yes;; \
-[JT]) skip_next=yes;; \
esac; \
case $$flg in \
*$$target_option*) has_opt=yes; break;; \
esac; \
done; \
test $$has_opt = yes
am__make_dryrun = (target_option=n; $(am__make_running_with_option))
am__make_keepgoing = (target_option=k; $(am__make_running_with_option))
am__rm_f = rm -f $(am__rm_f_notfound)
am__rm_rf = rm -rf $(am__rm_f_notfound)
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@
TESTS = LibTorrent_Test_Torrent_Net$(EXEEXT) \
LibTorrent_Test_Torrent_Utils$(EXEEXT) \
LibTorrent_Test_Torrent$(EXEEXT) LibTorrent_Test_Data$(EXEEXT) \
LibTorrent_Test_Net$(EXEEXT) LibTorrent_Test_Tracker$(EXEEXT) \
LibTorrent_Test$(EXEEXT)
check_PROGRAMS = $(am__EXEEXT_1)
subdir = test
ACLOCAL_M4 = $(top_srcdir)/aclocal.m4
am__aclocal_m4_deps = $(top_srcdir)/scripts/attributes.m4 \
$(top_srcdir)/scripts/ax_cxx_compile_stdcxx.m4 \
$(top_srcdir)/scripts/ax_execinfo.m4 \
$(top_srcdir)/scripts/ax_pthread.m4 \
$(top_srcdir)/scripts/check_atomic.m4 \
$(top_srcdir)/scripts/checks.m4 \
$(top_srcdir)/scripts/common.m4 \
$(top_srcdir)/scripts/libtool.m4 \
$(top_srcdir)/scripts/ltoptions.m4 \
$(top_srcdir)/scripts/ltsugar.m4 \
$(top_srcdir)/scripts/ltversion.m4 \
$(top_srcdir)/scripts/lt~obsolete.m4 \
$(top_srcdir)/scripts/rak_compiler.m4 \
$(top_srcdir)/scripts/ssl.m4 $(top_srcdir)/configure.ac
am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \
$(ACLOCAL_M4)
DIST_COMMON = $(srcdir)/Makefile.am $(am__DIST_COMMON)
mkinstalldirs = $(install_sh) -d
CONFIG_HEADER = $(top_builddir)/config.h
CONFIG_CLEAN_FILES =
CONFIG_CLEAN_VPATH_FILES =
am__EXEEXT_1 = LibTorrent_Test_Torrent_Net$(EXEEXT) \
LibTorrent_Test_Torrent_Utils$(EXEEXT) \
LibTorrent_Test_Torrent$(EXEEXT) LibTorrent_Test_Data$(EXEEXT) \
LibTorrent_Test_Net$(EXEEXT) LibTorrent_Test_Tracker$(EXEEXT) \
LibTorrent_Test$(EXEEXT)
am__dirstamp = $(am__leading_dot)dirstamp
am__objects_1 = LibTorrent_Test-main.$(OBJEXT) \
helpers/LibTorrent_Test-mock_function.$(OBJEXT) \
helpers/LibTorrent_Test-network.$(OBJEXT) \
helpers/LibTorrent_Test-progress_listener.$(OBJEXT) \
helpers/LibTorrent_Test-protectors.$(OBJEXT) \
helpers/LibTorrent_Test-test_fixture.$(OBJEXT) \
helpers/LibTorrent_Test-test_main_thread.$(OBJEXT) \
helpers/LibTorrent_Test-test_thread.$(OBJEXT) \
helpers/LibTorrent_Test-tracker_test.$(OBJEXT)
am_LibTorrent_Test_OBJECTS = $(am__objects_1) \
rak/LibTorrent_Test-allocators_test.$(OBJEXT) \
rak/LibTorrent_Test-ranges_test.$(OBJEXT) \
protocol/LibTorrent_Test-test_request_list.$(OBJEXT)
LibTorrent_Test_OBJECTS = $(am_LibTorrent_Test_OBJECTS)
LibTorrent_Test_DEPENDENCIES = ../src/libtorrent.la \
../src/libtorrent_other.la \
../src/torrent/libtorrent_torrent.la
AM_V_lt = $(am__v_lt_@AM_V@)
am__v_lt_ = $(am__v_lt_@AM_DEFAULT_V@)
am__v_lt_0 = --silent
am__v_lt_1 =
LibTorrent_Test_LINK = $(LIBTOOL) $(AM_V_lt) --tag=CXX \
$(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=link $(CXXLD) \
$(LibTorrent_Test_CXXFLAGS) $(CXXFLAGS) \
$(LibTorrent_Test_LDFLAGS) $(LDFLAGS) -o $@
am__objects_2 = LibTorrent_Test_Data-main.$(OBJEXT) \
helpers/LibTorrent_Test_Data-mock_function.$(OBJEXT) \
helpers/LibTorrent_Test_Data-network.$(OBJEXT) \
helpers/LibTorrent_Test_Data-progress_listener.$(OBJEXT) \
helpers/LibTorrent_Test_Data-protectors.$(OBJEXT) \
helpers/LibTorrent_Test_Data-test_fixture.$(OBJEXT) \
helpers/LibTorrent_Test_Data-test_main_thread.$(OBJEXT) \
helpers/LibTorrent_Test_Data-test_thread.$(OBJEXT) \
helpers/LibTorrent_Test_Data-tracker_test.$(OBJEXT)
am_LibTorrent_Test_Data_OBJECTS = $(am__objects_2) \
data/LibTorrent_Test_Data-test_chunk_list.$(OBJEXT) \
data/LibTorrent_Test_Data-test_hash_check_queue.$(OBJEXT) \
data/LibTorrent_Test_Data-test_hash_queue.$(OBJEXT)
LibTorrent_Test_Data_OBJECTS = $(am_LibTorrent_Test_Data_OBJECTS)
LibTorrent_Test_Data_DEPENDENCIES = $(LibTorrent_Test_LDADD)
LibTorrent_Test_Data_LINK = $(LIBTOOL) $(AM_V_lt) --tag=CXX \
$(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=link $(CXXLD) \
$(LibTorrent_Test_Data_CXXFLAGS) $(CXXFLAGS) \
$(LibTorrent_Test_Data_LDFLAGS) $(LDFLAGS) -o $@
am__objects_3 = LibTorrent_Test_Net-main.$(OBJEXT) \
helpers/LibTorrent_Test_Net-mock_function.$(OBJEXT) \
helpers/LibTorrent_Test_Net-network.$(OBJEXT) \
helpers/LibTorrent_Test_Net-progress_listener.$(OBJEXT) \
helpers/LibTorrent_Test_Net-protectors.$(OBJEXT) \
helpers/LibTorrent_Test_Net-test_fixture.$(OBJEXT) \
helpers/LibTorrent_Test_Net-test_main_thread.$(OBJEXT) \
helpers/LibTorrent_Test_Net-test_thread.$(OBJEXT) \
helpers/LibTorrent_Test_Net-tracker_test.$(OBJEXT)
am_LibTorrent_Test_Net_OBJECTS = $(am__objects_3) \
net/LibTorrent_Test_Net-test_socket_listen.$(OBJEXT)
LibTorrent_Test_Net_OBJECTS = $(am_LibTorrent_Test_Net_OBJECTS)
LibTorrent_Test_Net_DEPENDENCIES = $(LibTorrent_Test_LDADD)
LibTorrent_Test_Net_LINK = $(LIBTOOL) $(AM_V_lt) --tag=CXX \
$(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=link $(CXXLD) \
$(LibTorrent_Test_Net_CXXFLAGS) $(CXXFLAGS) \
$(LibTorrent_Test_Net_LDFLAGS) $(LDFLAGS) -o $@
am__objects_4 = LibTorrent_Test_Torrent-main.$(OBJEXT) \
helpers/LibTorrent_Test_Torrent-mock_function.$(OBJEXT) \
helpers/LibTorrent_Test_Torrent-network.$(OBJEXT) \
helpers/LibTorrent_Test_Torrent-progress_listener.$(OBJEXT) \
helpers/LibTorrent_Test_Torrent-protectors.$(OBJEXT) \
helpers/LibTorrent_Test_Torrent-test_fixture.$(OBJEXT) \
helpers/LibTorrent_Test_Torrent-test_main_thread.$(OBJEXT) \
helpers/LibTorrent_Test_Torrent-test_thread.$(OBJEXT) \
helpers/LibTorrent_Test_Torrent-tracker_test.$(OBJEXT)
am_LibTorrent_Test_Torrent_OBJECTS = $(am__objects_4) \
torrent/LibTorrent_Test_Torrent-test_http.$(OBJEXT) \
torrent/LibTorrent_Test_Torrent-object_test.$(OBJEXT) \
torrent/LibTorrent_Test_Torrent-object_test_utils.$(OBJEXT) \
torrent/LibTorrent_Test_Torrent-object_static_map_test.$(OBJEXT) \
torrent/LibTorrent_Test_Torrent-object_stream_test.$(OBJEXT) \
torrent/LibTorrent_Test_Torrent-test_tracker_controller.$(OBJEXT) \
torrent/LibTorrent_Test_Torrent-test_tracker_controller_features.$(OBJEXT) \
torrent/LibTorrent_Test_Torrent-test_tracker_controller_requesting.$(OBJEXT) \
torrent/LibTorrent_Test_Torrent-test_tracker_list.$(OBJEXT) \
torrent/LibTorrent_Test_Torrent-test_tracker_list_features.$(OBJEXT) \
torrent/LibTorrent_Test_Torrent-test_tracker_timeout.$(OBJEXT)
LibTorrent_Test_Torrent_OBJECTS = \
$(am_LibTorrent_Test_Torrent_OBJECTS)
LibTorrent_Test_Torrent_DEPENDENCIES = $(LibTorrent_Test_LDADD)
LibTorrent_Test_Torrent_LINK = $(LIBTOOL) $(AM_V_lt) --tag=CXX \
$(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=link $(CXXLD) \
$(LibTorrent_Test_Torrent_CXXFLAGS) $(CXXFLAGS) \
$(LibTorrent_Test_Torrent_LDFLAGS) $(LDFLAGS) -o $@
am__objects_5 = LibTorrent_Test_Torrent_Net-main.$(OBJEXT) \
helpers/LibTorrent_Test_Torrent_Net-mock_function.$(OBJEXT) \
helpers/LibTorrent_Test_Torrent_Net-network.$(OBJEXT) \
helpers/LibTorrent_Test_Torrent_Net-progress_listener.$(OBJEXT) \
helpers/LibTorrent_Test_Torrent_Net-protectors.$(OBJEXT) \
helpers/LibTorrent_Test_Torrent_Net-test_fixture.$(OBJEXT) \
helpers/LibTorrent_Test_Torrent_Net-test_main_thread.$(OBJEXT) \
helpers/LibTorrent_Test_Torrent_Net-test_thread.$(OBJEXT) \
helpers/LibTorrent_Test_Torrent_Net-tracker_test.$(OBJEXT)
am_LibTorrent_Test_Torrent_Net_OBJECTS = $(am__objects_5) \
torrent/net/LibTorrent_Test_Torrent_Net-test_address_info.$(OBJEXT) \
torrent/net/LibTorrent_Test_Torrent_Net-test_fd.$(OBJEXT) \
torrent/net/LibTorrent_Test_Torrent_Net-test_socket_address.$(OBJEXT)
LibTorrent_Test_Torrent_Net_OBJECTS = \
$(am_LibTorrent_Test_Torrent_Net_OBJECTS)
LibTorrent_Test_Torrent_Net_DEPENDENCIES = $(LibTorrent_Test_LDADD)
LibTorrent_Test_Torrent_Net_LINK = $(LIBTOOL) $(AM_V_lt) --tag=CXX \
$(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=link $(CXXLD) \
$(LibTorrent_Test_Torrent_Net_CXXFLAGS) $(CXXFLAGS) \
$(LibTorrent_Test_Torrent_Net_LDFLAGS) $(LDFLAGS) -o $@
am__objects_6 = LibTorrent_Test_Torrent_Utils-main.$(OBJEXT) \
helpers/LibTorrent_Test_Torrent_Utils-mock_function.$(OBJEXT) \
helpers/LibTorrent_Test_Torrent_Utils-network.$(OBJEXT) \
helpers/LibTorrent_Test_Torrent_Utils-progress_listener.$(OBJEXT) \
helpers/LibTorrent_Test_Torrent_Utils-protectors.$(OBJEXT) \
helpers/LibTorrent_Test_Torrent_Utils-test_fixture.$(OBJEXT) \
helpers/LibTorrent_Test_Torrent_Utils-test_main_thread.$(OBJEXT) \
helpers/LibTorrent_Test_Torrent_Utils-test_thread.$(OBJEXT) \
helpers/LibTorrent_Test_Torrent_Utils-tracker_test.$(OBJEXT)
am_LibTorrent_Test_Torrent_Utils_OBJECTS = $(am__objects_6) \
torrent/utils/LibTorrent_Test_Torrent_Utils-test_extents.$(OBJEXT) \
torrent/utils/LibTorrent_Test_Torrent_Utils-test_log.$(OBJEXT) \
torrent/utils/LibTorrent_Test_Torrent_Utils-test_log_buffer.$(OBJEXT) \
torrent/utils/LibTorrent_Test_Torrent_Utils-test_option_strings.$(OBJEXT) \
torrent/utils/LibTorrent_Test_Torrent_Utils-test_queue_buckets.$(OBJEXT) \
torrent/utils/LibTorrent_Test_Torrent_Utils-test_signal_bitfield.$(OBJEXT) \
torrent/utils/LibTorrent_Test_Torrent_Utils-test_signal_interrupt.$(OBJEXT) \
torrent/utils/LibTorrent_Test_Torrent_Utils-test_thread_base.$(OBJEXT) \
torrent/utils/LibTorrent_Test_Torrent_Utils-test_uri_parser.$(OBJEXT)
LibTorrent_Test_Torrent_Utils_OBJECTS = \
$(am_LibTorrent_Test_Torrent_Utils_OBJECTS)
LibTorrent_Test_Torrent_Utils_DEPENDENCIES = $(LibTorrent_Test_LDADD)
LibTorrent_Test_Torrent_Utils_LINK = $(LIBTOOL) $(AM_V_lt) --tag=CXX \
$(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=link $(CXXLD) \
$(LibTorrent_Test_Torrent_Utils_CXXFLAGS) $(CXXFLAGS) \
$(LibTorrent_Test_Torrent_Utils_LDFLAGS) $(LDFLAGS) -o $@
am__objects_7 = LibTorrent_Test_Tracker-main.$(OBJEXT) \
helpers/LibTorrent_Test_Tracker-mock_function.$(OBJEXT) \
helpers/LibTorrent_Test_Tracker-network.$(OBJEXT) \
helpers/LibTorrent_Test_Tracker-progress_listener.$(OBJEXT) \
helpers/LibTorrent_Test_Tracker-protectors.$(OBJEXT) \
helpers/LibTorrent_Test_Tracker-test_fixture.$(OBJEXT) \
helpers/LibTorrent_Test_Tracker-test_main_thread.$(OBJEXT) \
helpers/LibTorrent_Test_Tracker-test_thread.$(OBJEXT) \
helpers/LibTorrent_Test_Tracker-tracker_test.$(OBJEXT)
am_LibTorrent_Test_Tracker_OBJECTS = $(am__objects_7) \
tracker/LibTorrent_Test_Tracker-test_tracker_http.$(OBJEXT)
LibTorrent_Test_Tracker_OBJECTS = \
$(am_LibTorrent_Test_Tracker_OBJECTS)
LibTorrent_Test_Tracker_DEPENDENCIES = $(LibTorrent_Test_LDADD)
LibTorrent_Test_Tracker_LINK = $(LIBTOOL) $(AM_V_lt) --tag=CXX \
$(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=link $(CXXLD) \
$(LibTorrent_Test_Tracker_CXXFLAGS) $(CXXFLAGS) \
$(LibTorrent_Test_Tracker_LDFLAGS) $(LDFLAGS) -o $@
AM_V_P = $(am__v_P_@AM_V@)
am__v_P_ = $(am__v_P_@AM_DEFAULT_V@)
am__v_P_0 = false
am__v_P_1 = :
AM_V_GEN = $(am__v_GEN_@AM_V@)
am__v_GEN_ = $(am__v_GEN_@AM_DEFAULT_V@)
am__v_GEN_0 = @echo " GEN " $@;
am__v_GEN_1 =
AM_V_at = $(am__v_at_@AM_V@)
am__v_at_ = $(am__v_at_@AM_DEFAULT_V@)
am__v_at_0 = @
am__v_at_1 =
DEFAULT_INCLUDES = -I.@am__isrc@ -I$(top_builddir)
depcomp = $(SHELL) $(top_srcdir)/depcomp
am__maybe_remake_depfiles = depfiles
am__depfiles_remade = ./$(DEPDIR)/LibTorrent_Test-main.Po \
./$(DEPDIR)/LibTorrent_Test_Data-main.Po \
./$(DEPDIR)/LibTorrent_Test_Net-main.Po \
./$(DEPDIR)/LibTorrent_Test_Torrent-main.Po \
./$(DEPDIR)/LibTorrent_Test_Torrent_Net-main.Po \
./$(DEPDIR)/LibTorrent_Test_Torrent_Utils-main.Po \
./$(DEPDIR)/LibTorrent_Test_Tracker-main.Po \
data/$(DEPDIR)/LibTorrent_Test_Data-test_chunk_list.Po \
data/$(DEPDIR)/LibTorrent_Test_Data-test_hash_check_queue.Po \
data/$(DEPDIR)/LibTorrent_Test_Data-test_hash_queue.Po \
helpers/$(DEPDIR)/LibTorrent_Test-mock_function.Po \
helpers/$(DEPDIR)/LibTorrent_Test-network.Po \
helpers/$(DEPDIR)/LibTorrent_Test-progress_listener.Po \
helpers/$(DEPDIR)/LibTorrent_Test-protectors.Po \
helpers/$(DEPDIR)/LibTorrent_Test-test_fixture.Po \
helpers/$(DEPDIR)/LibTorrent_Test-test_main_thread.Po \
helpers/$(DEPDIR)/LibTorrent_Test-test_thread.Po \
helpers/$(DEPDIR)/LibTorrent_Test-tracker_test.Po \
helpers/$(DEPDIR)/LibTorrent_Test_Data-mock_function.Po \
helpers/$(DEPDIR)/LibTorrent_Test_Data-network.Po \
helpers/$(DEPDIR)/LibTorrent_Test_Data-progress_listener.Po \
helpers/$(DEPDIR)/LibTorrent_Test_Data-protectors.Po \
helpers/$(DEPDIR)/LibTorrent_Test_Data-test_fixture.Po \
helpers/$(DEPDIR)/LibTorrent_Test_Data-test_main_thread.Po \
helpers/$(DEPDIR)/LibTorrent_Test_Data-test_thread.Po \
helpers/$(DEPDIR)/LibTorrent_Test_Data-tracker_test.Po \
helpers/$(DEPDIR)/LibTorrent_Test_Net-mock_function.Po \
helpers/$(DEPDIR)/LibTorrent_Test_Net-network.Po \
helpers/$(DEPDIR)/LibTorrent_Test_Net-progress_listener.Po \
helpers/$(DEPDIR)/LibTorrent_Test_Net-protectors.Po \
helpers/$(DEPDIR)/LibTorrent_Test_Net-test_fixture.Po \
helpers/$(DEPDIR)/LibTorrent_Test_Net-test_main_thread.Po \
helpers/$(DEPDIR)/LibTorrent_Test_Net-test_thread.Po \
helpers/$(DEPDIR)/LibTorrent_Test_Net-tracker_test.Po \
helpers/$(DEPDIR)/LibTorrent_Test_Torrent-mock_function.Po \
helpers/$(DEPDIR)/LibTorrent_Test_Torrent-network.Po \
helpers/$(DEPDIR)/LibTorrent_Test_Torrent-progress_listener.Po \
helpers/$(DEPDIR)/LibTorrent_Test_Torrent-protectors.Po \
helpers/$(DEPDIR)/LibTorrent_Test_Torrent-test_fixture.Po \
helpers/$(DEPDIR)/LibTorrent_Test_Torrent-test_main_thread.Po \
helpers/$(DEPDIR)/LibTorrent_Test_Torrent-test_thread.Po \
helpers/$(DEPDIR)/LibTorrent_Test_Torrent-tracker_test.Po \
helpers/$(DEPDIR)/LibTorrent_Test_Torrent_Net-mock_function.Po \
helpers/$(DEPDIR)/LibTorrent_Test_Torrent_Net-network.Po \
helpers/$(DEPDIR)/LibTorrent_Test_Torrent_Net-progress_listener.Po \
helpers/$(DEPDIR)/LibTorrent_Test_Torrent_Net-protectors.Po \
helpers/$(DEPDIR)/LibTorrent_Test_Torrent_Net-test_fixture.Po \
helpers/$(DEPDIR)/LibTorrent_Test_Torrent_Net-test_main_thread.Po \
helpers/$(DEPDIR)/LibTorrent_Test_Torrent_Net-test_thread.Po \
helpers/$(DEPDIR)/LibTorrent_Test_Torrent_Net-tracker_test.Po \
helpers/$(DEPDIR)/LibTorrent_Test_Torrent_Utils-mock_function.Po \
helpers/$(DEPDIR)/LibTorrent_Test_Torrent_Utils-network.Po \
helpers/$(DEPDIR)/LibTorrent_Test_Torrent_Utils-progress_listener.Po \
helpers/$(DEPDIR)/LibTorrent_Test_Torrent_Utils-protectors.Po \
helpers/$(DEPDIR)/LibTorrent_Test_Torrent_Utils-test_fixture.Po \
helpers/$(DEPDIR)/LibTorrent_Test_Torrent_Utils-test_main_thread.Po \
helpers/$(DEPDIR)/LibTorrent_Test_Torrent_Utils-test_thread.Po \
helpers/$(DEPDIR)/LibTorrent_Test_Torrent_Utils-tracker_test.Po \
helpers/$(DEPDIR)/LibTorrent_Test_Tracker-mock_function.Po \
helpers/$(DEPDIR)/LibTorrent_Test_Tracker-network.Po \
helpers/$(DEPDIR)/LibTorrent_Test_Tracker-progress_listener.Po \
helpers/$(DEPDIR)/LibTorrent_Test_Tracker-protectors.Po \
helpers/$(DEPDIR)/LibTorrent_Test_Tracker-test_fixture.Po \
helpers/$(DEPDIR)/LibTorrent_Test_Tracker-test_main_thread.Po \
helpers/$(DEPDIR)/LibTorrent_Test_Tracker-test_thread.Po \
helpers/$(DEPDIR)/LibTorrent_Test_Tracker-tracker_test.Po \
net/$(DEPDIR)/LibTorrent_Test_Net-test_socket_listen.Po \
protocol/$(DEPDIR)/LibTorrent_Test-test_request_list.Po \
rak/$(DEPDIR)/LibTorrent_Test-allocators_test.Po \
rak/$(DEPDIR)/LibTorrent_Test-ranges_test.Po \
torrent/$(DEPDIR)/LibTorrent_Test_Torrent-object_static_map_test.Po \
torrent/$(DEPDIR)/LibTorrent_Test_Torrent-object_stream_test.Po \
torrent/$(DEPDIR)/LibTorrent_Test_Torrent-object_test.Po \
torrent/$(DEPDIR)/LibTorrent_Test_Torrent-object_test_utils.Po \
torrent/$(DEPDIR)/LibTorrent_Test_Torrent-test_http.Po \
torrent/$(DEPDIR)/LibTorrent_Test_Torrent-test_tracker_controller.Po \
torrent/$(DEPDIR)/LibTorrent_Test_Torrent-test_tracker_controller_features.Po \
torrent/$(DEPDIR)/LibTorrent_Test_Torrent-test_tracker_controller_requesting.Po \
torrent/$(DEPDIR)/LibTorrent_Test_Torrent-test_tracker_list.Po \
torrent/$(DEPDIR)/LibTorrent_Test_Torrent-test_tracker_list_features.Po \
torrent/$(DEPDIR)/LibTorrent_Test_Torrent-test_tracker_timeout.Po \
torrent/net/$(DEPDIR)/LibTorrent_Test_Torrent_Net-test_address_info.Po \
torrent/net/$(DEPDIR)/LibTorrent_Test_Torrent_Net-test_fd.Po \
torrent/net/$(DEPDIR)/LibTorrent_Test_Torrent_Net-test_socket_address.Po \
torrent/utils/$(DEPDIR)/LibTorrent_Test_Torrent_Utils-test_extents.Po \
torrent/utils/$(DEPDIR)/LibTorrent_Test_Torrent_Utils-test_log.Po \
torrent/utils/$(DEPDIR)/LibTorrent_Test_Torrent_Utils-test_log_buffer.Po \
torrent/utils/$(DEPDIR)/LibTorrent_Test_Torrent_Utils-test_option_strings.Po \
torrent/utils/$(DEPDIR)/LibTorrent_Test_Torrent_Utils-test_queue_buckets.Po \
torrent/utils/$(DEPDIR)/LibTorrent_Test_Torrent_Utils-test_signal_bitfield.Po \
torrent/utils/$(DEPDIR)/LibTorrent_Test_Torrent_Utils-test_signal_interrupt.Po \
torrent/utils/$(DEPDIR)/LibTorrent_Test_Torrent_Utils-test_thread_base.Po \
torrent/utils/$(DEPDIR)/LibTorrent_Test_Torrent_Utils-test_uri_parser.Po \
tracker/$(DEPDIR)/LibTorrent_Test_Tracker-test_tracker_http.Po
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_@AM_V@)
am__v_CXX_ = $(am__v_CXX_@AM_DEFAULT_V@)
am__v_CXX_0 = @echo " CXX " $@;
am__v_CXX_1 =
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_@AM_V@)
am__v_CXXLD_ = $(am__v_CXXLD_@AM_DEFAULT_V@)
am__v_CXXLD_0 = @echo " CXXLD " $@;
am__v_CXXLD_1 =
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_@AM_V@)
am__v_CC_ = $(am__v_CC_@AM_DEFAULT_V@)
am__v_CC_0 = @echo " CC " $@;
am__v_CC_1 =
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_@AM_V@)
am__v_CCLD_ = $(am__v_CCLD_@AM_DEFAULT_V@)
am__v_CCLD_0 = @echo " CCLD " $@;
am__v_CCLD_1 =
SOURCES = $(LibTorrent_Test_SOURCES) $(LibTorrent_Test_Data_SOURCES) \
$(LibTorrent_Test_Net_SOURCES) \
$(LibTorrent_Test_Torrent_SOURCES) \
$(LibTorrent_Test_Torrent_Net_SOURCES) \
$(LibTorrent_Test_Torrent_Utils_SOURCES) \
$(LibTorrent_Test_Tracker_SOURCES)
DIST_SOURCES = $(LibTorrent_Test_SOURCES) \
$(LibTorrent_Test_Data_SOURCES) $(LibTorrent_Test_Net_SOURCES) \
$(LibTorrent_Test_Torrent_SOURCES) \
$(LibTorrent_Test_Torrent_Net_SOURCES) \
$(LibTorrent_Test_Torrent_Utils_SOURCES) \
$(LibTorrent_Test_Tracker_SOURCES)
am__can_run_installinfo = \
case $$AM_UPDATE_INFO_DIR in \
n|no|NO) false;; \
*) (install-info --version) >/dev/null 2>&1;; \
esac
am__tagged_files = $(HEADERS) $(SOURCES) $(TAGS_FILES) $(LISP)
# Read a list of newline-separated strings from the standard input,
# and print each of them once, without duplicates. Input order is
# *not* preserved.
am__uniquify_input = $(AWK) '\
BEGIN { nonempty = 0; } \
{ items[$$0] = 1; nonempty = 1; } \
END { if (nonempty) { for (i in items) print i; }; } \
'
# Make sure the list of sources is unique. This is necessary because,
# e.g., the same source file might be shared among _SOURCES variables
# for different programs/libraries.
am__define_uniq_tagged_files = \
list='$(am__tagged_files)'; \
unique=`for i in $$list; do \
if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \
done | $(am__uniquify_input)`
am__tty_colors_dummy = \
mgn= red= grn= lgn= blu= brg= std=; \
am__color_tests=no
am__tty_colors = { \
$(am__tty_colors_dummy); \
if test "X$(AM_COLOR_TESTS)" = Xno; then \
am__color_tests=no; \
elif test "X$(AM_COLOR_TESTS)" = Xalways; then \
am__color_tests=yes; \
elif test "X$$TERM" != Xdumb && { test -t 1; } 2>/dev/null; then \
am__color_tests=yes; \
fi; \
if test $$am__color_tests = yes; then \
red='[0;31m'; \
grn='[0;32m'; \
lgn='[1;32m'; \
blu='[1;34m'; \
mgn='[0;35m'; \
brg='[1m'; \
std='[m'; \
fi; \
}
am__DIST_COMMON = $(srcdir)/Makefile.in $(top_srcdir)/depcomp
DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST)
ACLOCAL = @ACLOCAL@
AMTAR = @AMTAR@
AM_DEFAULT_VERBOSITY = @AM_DEFAULT_VERBOSITY@
AR = @AR@
ATOMIC_LIBS = @ATOMIC_LIBS@
AUTOCONF = @AUTOCONF@
AUTOHEADER = @AUTOHEADER@
AUTOMAKE = @AUTOMAKE@
AWK = @AWK@
CC = @CC@
CCDEPMODE = @CCDEPMODE@
CFLAGS = @CFLAGS@
CPP = @CPP@
CPPFLAGS = @CPPFLAGS@
CPPUNIT_CFLAGS = @CPPUNIT_CFLAGS@
CPPUNIT_LIBS = @CPPUNIT_LIBS@
CSCOPE = @CSCOPE@
CTAGS = @CTAGS@
CXX = @CXX@
CXXCPP = @CXXCPP@
CXXDEPMODE = @CXXDEPMODE@
CXXFLAGS = @CXXFLAGS@
CYGPATH_W = @CYGPATH_W@
DEFS = @DEFS@
DEPDIR = @DEPDIR@
DLLTOOL = @DLLTOOL@
DSYMUTIL = @DSYMUTIL@
DUMPBIN = @DUMPBIN@
ECHO_C = @ECHO_C@
ECHO_N = @ECHO_N@
ECHO_T = @ECHO_T@
EGREP = @EGREP@
ETAGS = @ETAGS@
EXEEXT = @EXEEXT@
FGREP = @FGREP@
FILECMD = @FILECMD@
GREP = @GREP@
HAVE_CXX17 = @HAVE_CXX17@
INSTALL = @INSTALL@
INSTALL_DATA = @INSTALL_DATA@
INSTALL_PROGRAM = @INSTALL_PROGRAM@
INSTALL_SCRIPT = @INSTALL_SCRIPT@
INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@
LD = @LD@
LDFLAGS = @LDFLAGS@
LIBOBJS = @LIBOBJS@
LIBS = @LIBS@
LIBTOOL = @LIBTOOL@
LIBTORRENT_CFLAGS = @LIBTORRENT_CFLAGS@
LIBTORRENT_CURRENT = @LIBTORRENT_CURRENT@
LIBTORRENT_INTERFACE_VERSION_INFO = @LIBTORRENT_INTERFACE_VERSION_INFO@
LIBTORRENT_INTERFACE_VERSION_NO = @LIBTORRENT_INTERFACE_VERSION_NO@
LIBTORRENT_LIBS = @LIBTORRENT_LIBS@
LIPO = @LIPO@
LN_S = @LN_S@
LTLIBOBJS = @LTLIBOBJS@
LT_SYS_LIBRARY_PATH = @LT_SYS_LIBRARY_PATH@
MAKEINFO = @MAKEINFO@
MANIFEST_TOOL = @MANIFEST_TOOL@
MKDIR_P = @MKDIR_P@
NM = @NM@
NMEDIT = @NMEDIT@
OBJDUMP = @OBJDUMP@
OBJEXT = @OBJEXT@
OPENSSL_CFLAGS = @OPENSSL_CFLAGS@
OPENSSL_LIBS = @OPENSSL_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@
PKG_CONFIG = @PKG_CONFIG@
PKG_CONFIG_LIBDIR = @PKG_CONFIG_LIBDIR@
PKG_CONFIG_PATH = @PKG_CONFIG_PATH@
PTHREAD_CC = @PTHREAD_CC@
PTHREAD_CFLAGS = @PTHREAD_CFLAGS@
PTHREAD_CXX = @PTHREAD_CXX@
PTHREAD_LIBS = @PTHREAD_LIBS@
RANLIB = @RANLIB@
SED = @SED@
SET_MAKE = @SET_MAKE@
SHELL = @SHELL@
STRIP = @STRIP@
VERSION = @VERSION@
ZLIB_CFLAGS = @ZLIB_CFLAGS@
ZLIB_LIBS = @ZLIB_LIBS@
abs_builddir = @abs_builddir@
abs_srcdir = @abs_srcdir@
abs_top_builddir = @abs_top_builddir@
abs_top_srcdir = @abs_top_srcdir@
ac_ct_AR = @ac_ct_AR@
ac_ct_CC = @ac_ct_CC@
ac_ct_CXX = @ac_ct_CXX@
ac_ct_DUMPBIN = @ac_ct_DUMPBIN@
am__include = @am__include@
am__leading_dot = @am__leading_dot@
am__quote = @am__quote@
am__rm_f_notfound = @am__rm_f_notfound@
am__tar = @am__tar@
am__untar = @am__untar@
am__xargs_n = @am__xargs_n@
ax_pthread_config = @ax_pthread_config@
bindir = @bindir@
build = @build@
build_alias = @build_alias@
build_cpu = @build_cpu@
build_os = @build_os@
build_vendor = @build_vendor@
builddir = @builddir@
datadir = @datadir@
datarootdir = @datarootdir@
docdir = @docdir@
dvidir = @dvidir@
exec_prefix = @exec_prefix@
host = @host@
host_alias = @host_alias@
host_cpu = @host_cpu@
host_os = @host_os@
host_vendor = @host_vendor@
htmldir = @htmldir@
includedir = @includedir@
infodir = @infodir@
install_sh = @install_sh@
libdir = @libdir@
libexecdir = @libexecdir@
localedir = @localedir@
localstatedir = @localstatedir@
mandir = @mandir@
mkdir_p = @mkdir_p@
oldincludedir = @oldincludedir@
pdfdir = @pdfdir@
prefix = @prefix@
program_transform_name = @program_transform_name@
psdir = @psdir@
runstatedir = @runstatedir@
sbindir = @sbindir@
sharedstatedir = @sharedstatedir@
srcdir = @srcdir@
sysconfdir = @sysconfdir@
target_alias = @target_alias@
top_build_prefix = @top_build_prefix@
top_builddir = @top_builddir@
top_srcdir = @top_srcdir@
# This can cause duplicate symbols, so export anything that causes issues.
# LibTorrent_Test_LDADD = ../src/libtorrent.la
LibTorrent_Test_LDADD = \
../src/libtorrent.la \
../src/libtorrent_other.la \
../src/torrent/libtorrent_torrent.la
LibTorrent_Test_Torrent_Net_LDADD = $(LibTorrent_Test_LDADD)
LibTorrent_Test_Torrent_Utils_LDADD = $(LibTorrent_Test_LDADD)
LibTorrent_Test_Torrent_LDADD = $(LibTorrent_Test_LDADD)
LibTorrent_Test_Data_LDADD = $(LibTorrent_Test_LDADD)
LibTorrent_Test_Net_LDADD = $(LibTorrent_Test_LDADD)
LibTorrent_Test_Tracker_LDADD = $(LibTorrent_Test_LDADD)
LibTorrent_Test_Common = \
main.cc \
helpers/expect_fd.h \
helpers/expect_utils.h \
helpers/mock_compare.h \
helpers/mock_function.cc \
helpers/mock_function.h \
helpers/network.cc \
helpers/network.h \
helpers/progress_listener.cc \
helpers/progress_listener.h \
helpers/protectors.cc \
helpers/protectors.h \
helpers/test_fixture.cc \
helpers/test_fixture.h \
helpers/test_main_thread.cc \
helpers/test_main_thread.h \
helpers/test_thread.cc \
helpers/test_thread.h \
helpers/test_utils.h \
helpers/tracker_test.cc \
helpers/tracker_test.h \
helpers/utils.h
LibTorrent_Test_Torrent_Net_SOURCES = $(LibTorrent_Test_Common) \
torrent/net/test_address_info.cc \
torrent/net/test_address_info.h \
torrent/net/test_fd.cc \
torrent/net/test_fd.h \
torrent/net/test_socket_address.cc \
torrent/net/test_socket_address.h
LibTorrent_Test_Torrent_Utils_SOURCES = $(LibTorrent_Test_Common) \
torrent/utils/test_extents.cc \
torrent/utils/test_extents.h \
torrent/utils/test_log.cc \
torrent/utils/test_log.h \
torrent/utils/test_log_buffer.cc \
torrent/utils/test_log_buffer.h \
torrent/utils/test_option_strings.cc \
torrent/utils/test_option_strings.h \
torrent/utils/test_queue_buckets.cc \
torrent/utils/test_queue_buckets.h \
torrent/utils/test_signal_bitfield.cc \
torrent/utils/test_signal_bitfield.h \
torrent/utils/test_signal_interrupt.cc \
torrent/utils/test_signal_interrupt.h \
torrent/utils/test_thread_base.cc \
torrent/utils/test_thread_base.h \
torrent/utils/test_uri_parser.cc \
torrent/utils/test_uri_parser.h
LibTorrent_Test_Torrent_SOURCES = $(LibTorrent_Test_Common) \
torrent/test_http.cc \
torrent/test_http.h \
\
torrent/object_test.cc \
torrent/object_test.h \
torrent/object_test_utils.cc \
torrent/object_test_utils.h \
torrent/object_static_map_test.cc \
torrent/object_static_map_test.h \
torrent/object_stream_test.cc \
torrent/object_stream_test.h \
torrent/test_tracker_controller.cc \
torrent/test_tracker_controller.h \
torrent/test_tracker_controller_features.cc \
torrent/test_tracker_controller_features.h \
torrent/test_tracker_controller_requesting.cc \
torrent/test_tracker_controller_requesting.h \
torrent/test_tracker_list.cc \
torrent/test_tracker_list.h \
torrent/test_tracker_list_features.cc \
torrent/test_tracker_list_features.h \
torrent/test_tracker_timeout.cc \
torrent/test_tracker_timeout.h
LibTorrent_Test_Data_SOURCES = $(LibTorrent_Test_Common) \
data/test_chunk_list.cc \
data/test_chunk_list.h \
data/test_hash_check_queue.cc \
data/test_hash_check_queue.h \
data/test_hash_queue.cc \
data/test_hash_queue.h
LibTorrent_Test_Net_SOURCES = $(LibTorrent_Test_Common) \
net/test_socket_listen.cc \
net/test_socket_listen.h
LibTorrent_Test_Tracker_SOURCES = $(LibTorrent_Test_Common) \
tracker/test_tracker_http.cc \
tracker/test_tracker_http.h
LibTorrent_Test_SOURCES = $(LibTorrent_Test_Common) \
\
rak/allocators_test.cc \
rak/allocators_test.h \
rak/ranges_test.cc \
rak/ranges_test.h \
\
protocol/test_request_list.cc \
protocol/test_request_list.h
LibTorrent_Test_Torrent_Net_CXXFLAGS = $(CPPUNIT_CFLAGS)
LibTorrent_Test_Torrent_Net_LDFLAGS = $(CPPUNIT_LIBS)
LibTorrent_Test_Torrent_Utils_CXXFLAGS = $(CPPUNIT_CFLAGS)
LibTorrent_Test_Torrent_Utils_LDFLAGS = $(CPPUNIT_LIBS)
LibTorrent_Test_Torrent_CXXFLAGS = $(CPPUNIT_CFLAGS)
LibTorrent_Test_Torrent_LDFLAGS = $(CPPUNIT_LIBS)
LibTorrent_Test_Data_CXXFLAGS = $(CPPUNIT_CFLAGS)
LibTorrent_Test_Data_LDFLAGS = $(CPPUNIT_LIBS)
LibTorrent_Test_Net_CXXFLAGS = $(CPPUNIT_CFLAGS)
LibTorrent_Test_Net_LDFLAGS = $(CPPUNIT_LIBS)
LibTorrent_Test_Tracker_CXXFLAGS = $(CPPUNIT_CFLAGS)
LibTorrent_Test_Tracker_LDFLAGS = $(CPPUNIT_LIBS)
LibTorrent_Test_CXXFLAGS = $(CPPUNIT_CFLAGS)
LibTorrent_Test_LDFLAGS = $(CPPUNIT_LIBS)
AM_CPPFLAGS = -I$(srcdir) -I$(top_srcdir) -I$(top_srcdir)/src
all: all-am
.SUFFIXES:
.SUFFIXES: .cc .lo .o .obj
$(srcdir)/Makefile.in: $(srcdir)/Makefile.am $(am__configure_deps)
@for dep in $?; do \
case '$(am__configure_deps)' in \
*$$dep*) \
( cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh ) \
&& { if test -f $@; then exit 0; else break; fi; }; \
exit 1;; \
esac; \
done; \
echo ' cd $(top_srcdir) && $(AUTOMAKE) --foreign test/Makefile'; \
$(am__cd) $(top_srcdir) && \
$(AUTOMAKE) --foreign test/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__maybe_remake_depfiles)'; \
cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__maybe_remake_depfiles);; \
esac;
$(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES)
cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh
$(top_srcdir)/configure: $(am__configure_deps)
cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh
$(ACLOCAL_M4): $(am__aclocal_m4_deps)
cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh
$(am__aclocal_m4_deps):
clean-checkPROGRAMS:
$(am__rm_f) $(check_PROGRAMS)
test -z "$(EXEEXT)" || $(am__rm_f) $(check_PROGRAMS:$(EXEEXT)=)
helpers/$(am__dirstamp):
@$(MKDIR_P) helpers
@: >>helpers/$(am__dirstamp)
helpers/$(DEPDIR)/$(am__dirstamp):
@$(MKDIR_P) helpers/$(DEPDIR)
@: >>helpers/$(DEPDIR)/$(am__dirstamp)
helpers/LibTorrent_Test-mock_function.$(OBJEXT): \
helpers/$(am__dirstamp) helpers/$(DEPDIR)/$(am__dirstamp)
helpers/LibTorrent_Test-network.$(OBJEXT): helpers/$(am__dirstamp) \
helpers/$(DEPDIR)/$(am__dirstamp)
helpers/LibTorrent_Test-progress_listener.$(OBJEXT): \
helpers/$(am__dirstamp) helpers/$(DEPDIR)/$(am__dirstamp)
helpers/LibTorrent_Test-protectors.$(OBJEXT): helpers/$(am__dirstamp) \
helpers/$(DEPDIR)/$(am__dirstamp)
helpers/LibTorrent_Test-test_fixture.$(OBJEXT): \
helpers/$(am__dirstamp) helpers/$(DEPDIR)/$(am__dirstamp)
helpers/LibTorrent_Test-test_main_thread.$(OBJEXT): \
helpers/$(am__dirstamp) helpers/$(DEPDIR)/$(am__dirstamp)
helpers/LibTorrent_Test-test_thread.$(OBJEXT): \
helpers/$(am__dirstamp) helpers/$(DEPDIR)/$(am__dirstamp)
helpers/LibTorrent_Test-tracker_test.$(OBJEXT): \
helpers/$(am__dirstamp) helpers/$(DEPDIR)/$(am__dirstamp)
rak/$(am__dirstamp):
@$(MKDIR_P) rak
@: >>rak/$(am__dirstamp)
rak/$(DEPDIR)/$(am__dirstamp):
@$(MKDIR_P) rak/$(DEPDIR)
@: >>rak/$(DEPDIR)/$(am__dirstamp)
rak/LibTorrent_Test-allocators_test.$(OBJEXT): rak/$(am__dirstamp) \
rak/$(DEPDIR)/$(am__dirstamp)
rak/LibTorrent_Test-ranges_test.$(OBJEXT): rak/$(am__dirstamp) \
rak/$(DEPDIR)/$(am__dirstamp)
protocol/$(am__dirstamp):
@$(MKDIR_P) protocol
@: >>protocol/$(am__dirstamp)
protocol/$(DEPDIR)/$(am__dirstamp):
@$(MKDIR_P) protocol/$(DEPDIR)
@: >>protocol/$(DEPDIR)/$(am__dirstamp)
protocol/LibTorrent_Test-test_request_list.$(OBJEXT): \
protocol/$(am__dirstamp) protocol/$(DEPDIR)/$(am__dirstamp)
LibTorrent_Test$(EXEEXT): $(LibTorrent_Test_OBJECTS) $(LibTorrent_Test_DEPENDENCIES) $(EXTRA_LibTorrent_Test_DEPENDENCIES)
@rm -f LibTorrent_Test$(EXEEXT)
$(AM_V_CXXLD)$(LibTorrent_Test_LINK) $(LibTorrent_Test_OBJECTS) $(LibTorrent_Test_LDADD) $(LIBS)
helpers/LibTorrent_Test_Data-mock_function.$(OBJEXT): \
helpers/$(am__dirstamp) helpers/$(DEPDIR)/$(am__dirstamp)
helpers/LibTorrent_Test_Data-network.$(OBJEXT): \
helpers/$(am__dirstamp) helpers/$(DEPDIR)/$(am__dirstamp)
helpers/LibTorrent_Test_Data-progress_listener.$(OBJEXT): \
helpers/$(am__dirstamp) helpers/$(DEPDIR)/$(am__dirstamp)
helpers/LibTorrent_Test_Data-protectors.$(OBJEXT): \
helpers/$(am__dirstamp) helpers/$(DEPDIR)/$(am__dirstamp)
helpers/LibTorrent_Test_Data-test_fixture.$(OBJEXT): \
helpers/$(am__dirstamp) helpers/$(DEPDIR)/$(am__dirstamp)
helpers/LibTorrent_Test_Data-test_main_thread.$(OBJEXT): \
helpers/$(am__dirstamp) helpers/$(DEPDIR)/$(am__dirstamp)
helpers/LibTorrent_Test_Data-test_thread.$(OBJEXT): \
helpers/$(am__dirstamp) helpers/$(DEPDIR)/$(am__dirstamp)
helpers/LibTorrent_Test_Data-tracker_test.$(OBJEXT): \
helpers/$(am__dirstamp) helpers/$(DEPDIR)/$(am__dirstamp)
data/$(am__dirstamp):
@$(MKDIR_P) data
@: >>data/$(am__dirstamp)
data/$(DEPDIR)/$(am__dirstamp):
@$(MKDIR_P) data/$(DEPDIR)
@: >>data/$(DEPDIR)/$(am__dirstamp)
data/LibTorrent_Test_Data-test_chunk_list.$(OBJEXT): \
data/$(am__dirstamp) data/$(DEPDIR)/$(am__dirstamp)
data/LibTorrent_Test_Data-test_hash_check_queue.$(OBJEXT): \
data/$(am__dirstamp) data/$(DEPDIR)/$(am__dirstamp)
data/LibTorrent_Test_Data-test_hash_queue.$(OBJEXT): \
data/$(am__dirstamp) data/$(DEPDIR)/$(am__dirstamp)
LibTorrent_Test_Data$(EXEEXT): $(LibTorrent_Test_Data_OBJECTS) $(LibTorrent_Test_Data_DEPENDENCIES) $(EXTRA_LibTorrent_Test_Data_DEPENDENCIES)
@rm -f LibTorrent_Test_Data$(EXEEXT)
$(AM_V_CXXLD)$(LibTorrent_Test_Data_LINK) $(LibTorrent_Test_Data_OBJECTS) $(LibTorrent_Test_Data_LDADD) $(LIBS)
helpers/LibTorrent_Test_Net-mock_function.$(OBJEXT): \
helpers/$(am__dirstamp) helpers/$(DEPDIR)/$(am__dirstamp)
helpers/LibTorrent_Test_Net-network.$(OBJEXT): \
helpers/$(am__dirstamp) helpers/$(DEPDIR)/$(am__dirstamp)
helpers/LibTorrent_Test_Net-progress_listener.$(OBJEXT): \
helpers/$(am__dirstamp) helpers/$(DEPDIR)/$(am__dirstamp)
helpers/LibTorrent_Test_Net-protectors.$(OBJEXT): \
helpers/$(am__dirstamp) helpers/$(DEPDIR)/$(am__dirstamp)
helpers/LibTorrent_Test_Net-test_fixture.$(OBJEXT): \
helpers/$(am__dirstamp) helpers/$(DEPDIR)/$(am__dirstamp)
helpers/LibTorrent_Test_Net-test_main_thread.$(OBJEXT): \
helpers/$(am__dirstamp) helpers/$(DEPDIR)/$(am__dirstamp)
helpers/LibTorrent_Test_Net-test_thread.$(OBJEXT): \
helpers/$(am__dirstamp) helpers/$(DEPDIR)/$(am__dirstamp)
helpers/LibTorrent_Test_Net-tracker_test.$(OBJEXT): \
helpers/$(am__dirstamp) helpers/$(DEPDIR)/$(am__dirstamp)
net/$(am__dirstamp):
@$(MKDIR_P) net
@: >>net/$(am__dirstamp)
net/$(DEPDIR)/$(am__dirstamp):
@$(MKDIR_P) net/$(DEPDIR)
@: >>net/$(DEPDIR)/$(am__dirstamp)
net/LibTorrent_Test_Net-test_socket_listen.$(OBJEXT): \
net/$(am__dirstamp) net/$(DEPDIR)/$(am__dirstamp)
LibTorrent_Test_Net$(EXEEXT): $(LibTorrent_Test_Net_OBJECTS) $(LibTorrent_Test_Net_DEPENDENCIES) $(EXTRA_LibTorrent_Test_Net_DEPENDENCIES)
@rm -f LibTorrent_Test_Net$(EXEEXT)
$(AM_V_CXXLD)$(LibTorrent_Test_Net_LINK) $(LibTorrent_Test_Net_OBJECTS) $(LibTorrent_Test_Net_LDADD) $(LIBS)
helpers/LibTorrent_Test_Torrent-mock_function.$(OBJEXT): \
helpers/$(am__dirstamp) helpers/$(DEPDIR)/$(am__dirstamp)
helpers/LibTorrent_Test_Torrent-network.$(OBJEXT): \
helpers/$(am__dirstamp) helpers/$(DEPDIR)/$(am__dirstamp)
helpers/LibTorrent_Test_Torrent-progress_listener.$(OBJEXT): \
helpers/$(am__dirstamp) helpers/$(DEPDIR)/$(am__dirstamp)
helpers/LibTorrent_Test_Torrent-protectors.$(OBJEXT): \
helpers/$(am__dirstamp) helpers/$(DEPDIR)/$(am__dirstamp)
helpers/LibTorrent_Test_Torrent-test_fixture.$(OBJEXT): \
helpers/$(am__dirstamp) helpers/$(DEPDIR)/$(am__dirstamp)
helpers/LibTorrent_Test_Torrent-test_main_thread.$(OBJEXT): \
helpers/$(am__dirstamp) helpers/$(DEPDIR)/$(am__dirstamp)
helpers/LibTorrent_Test_Torrent-test_thread.$(OBJEXT): \
helpers/$(am__dirstamp) helpers/$(DEPDIR)/$(am__dirstamp)
helpers/LibTorrent_Test_Torrent-tracker_test.$(OBJEXT): \
helpers/$(am__dirstamp) helpers/$(DEPDIR)/$(am__dirstamp)
torrent/$(am__dirstamp):
@$(MKDIR_P) torrent
@: >>torrent/$(am__dirstamp)
torrent/$(DEPDIR)/$(am__dirstamp):
@$(MKDIR_P) torrent/$(DEPDIR)
@: >>torrent/$(DEPDIR)/$(am__dirstamp)
torrent/LibTorrent_Test_Torrent-test_http.$(OBJEXT): \
torrent/$(am__dirstamp) torrent/$(DEPDIR)/$(am__dirstamp)
torrent/LibTorrent_Test_Torrent-object_test.$(OBJEXT): \
torrent/$(am__dirstamp) torrent/$(DEPDIR)/$(am__dirstamp)
torrent/LibTorrent_Test_Torrent-object_test_utils.$(OBJEXT): \
torrent/$(am__dirstamp) torrent/$(DEPDIR)/$(am__dirstamp)
torrent/LibTorrent_Test_Torrent-object_static_map_test.$(OBJEXT): \
torrent/$(am__dirstamp) torrent/$(DEPDIR)/$(am__dirstamp)
torrent/LibTorrent_Test_Torrent-object_stream_test.$(OBJEXT): \
torrent/$(am__dirstamp) torrent/$(DEPDIR)/$(am__dirstamp)
torrent/LibTorrent_Test_Torrent-test_tracker_controller.$(OBJEXT): \
torrent/$(am__dirstamp) torrent/$(DEPDIR)/$(am__dirstamp)
torrent/LibTorrent_Test_Torrent-test_tracker_controller_features.$(OBJEXT): \
torrent/$(am__dirstamp) torrent/$(DEPDIR)/$(am__dirstamp)
torrent/LibTorrent_Test_Torrent-test_tracker_controller_requesting.$(OBJEXT): \
torrent/$(am__dirstamp) torrent/$(DEPDIR)/$(am__dirstamp)
torrent/LibTorrent_Test_Torrent-test_tracker_list.$(OBJEXT): \
torrent/$(am__dirstamp) torrent/$(DEPDIR)/$(am__dirstamp)
torrent/LibTorrent_Test_Torrent-test_tracker_list_features.$(OBJEXT): \
torrent/$(am__dirstamp) torrent/$(DEPDIR)/$(am__dirstamp)
torrent/LibTorrent_Test_Torrent-test_tracker_timeout.$(OBJEXT): \
torrent/$(am__dirstamp) torrent/$(DEPDIR)/$(am__dirstamp)
LibTorrent_Test_Torrent$(EXEEXT): $(LibTorrent_Test_Torrent_OBJECTS) $(LibTorrent_Test_Torrent_DEPENDENCIES) $(EXTRA_LibTorrent_Test_Torrent_DEPENDENCIES)
@rm -f LibTorrent_Test_Torrent$(EXEEXT)
$(AM_V_CXXLD)$(LibTorrent_Test_Torrent_LINK) $(LibTorrent_Test_Torrent_OBJECTS) $(LibTorrent_Test_Torrent_LDADD) $(LIBS)
helpers/LibTorrent_Test_Torrent_Net-mock_function.$(OBJEXT): \
helpers/$(am__dirstamp) helpers/$(DEPDIR)/$(am__dirstamp)
helpers/LibTorrent_Test_Torrent_Net-network.$(OBJEXT): \
helpers/$(am__dirstamp) helpers/$(DEPDIR)/$(am__dirstamp)
helpers/LibTorrent_Test_Torrent_Net-progress_listener.$(OBJEXT): \
helpers/$(am__dirstamp) helpers/$(DEPDIR)/$(am__dirstamp)
helpers/LibTorrent_Test_Torrent_Net-protectors.$(OBJEXT): \
helpers/$(am__dirstamp) helpers/$(DEPDIR)/$(am__dirstamp)
helpers/LibTorrent_Test_Torrent_Net-test_fixture.$(OBJEXT): \
helpers/$(am__dirstamp) helpers/$(DEPDIR)/$(am__dirstamp)
helpers/LibTorrent_Test_Torrent_Net-test_main_thread.$(OBJEXT): \
helpers/$(am__dirstamp) helpers/$(DEPDIR)/$(am__dirstamp)
helpers/LibTorrent_Test_Torrent_Net-test_thread.$(OBJEXT): \
helpers/$(am__dirstamp) helpers/$(DEPDIR)/$(am__dirstamp)
helpers/LibTorrent_Test_Torrent_Net-tracker_test.$(OBJEXT): \
helpers/$(am__dirstamp) helpers/$(DEPDIR)/$(am__dirstamp)
torrent/net/$(am__dirstamp):
@$(MKDIR_P) torrent/net
@: >>torrent/net/$(am__dirstamp)
torrent/net/$(DEPDIR)/$(am__dirstamp):
@$(MKDIR_P) torrent/net/$(DEPDIR)
@: >>torrent/net/$(DEPDIR)/$(am__dirstamp)
torrent/net/LibTorrent_Test_Torrent_Net-test_address_info.$(OBJEXT): \
torrent/net/$(am__dirstamp) \
torrent/net/$(DEPDIR)/$(am__dirstamp)
torrent/net/LibTorrent_Test_Torrent_Net-test_fd.$(OBJEXT): \
torrent/net/$(am__dirstamp) \
torrent/net/$(DEPDIR)/$(am__dirstamp)
torrent/net/LibTorrent_Test_Torrent_Net-test_socket_address.$(OBJEXT): \
torrent/net/$(am__dirstamp) \
torrent/net/$(DEPDIR)/$(am__dirstamp)
LibTorrent_Test_Torrent_Net$(EXEEXT): $(LibTorrent_Test_Torrent_Net_OBJECTS) $(LibTorrent_Test_Torrent_Net_DEPENDENCIES) $(EXTRA_LibTorrent_Test_Torrent_Net_DEPENDENCIES)
@rm -f LibTorrent_Test_Torrent_Net$(EXEEXT)
$(AM_V_CXXLD)$(LibTorrent_Test_Torrent_Net_LINK) $(LibTorrent_Test_Torrent_Net_OBJECTS) $(LibTorrent_Test_Torrent_Net_LDADD) $(LIBS)
helpers/LibTorrent_Test_Torrent_Utils-mock_function.$(OBJEXT): \
helpers/$(am__dirstamp) helpers/$(DEPDIR)/$(am__dirstamp)
helpers/LibTorrent_Test_Torrent_Utils-network.$(OBJEXT): \
helpers/$(am__dirstamp) helpers/$(DEPDIR)/$(am__dirstamp)
helpers/LibTorrent_Test_Torrent_Utils-progress_listener.$(OBJEXT): \
helpers/$(am__dirstamp) helpers/$(DEPDIR)/$(am__dirstamp)
helpers/LibTorrent_Test_Torrent_Utils-protectors.$(OBJEXT): \
helpers/$(am__dirstamp) helpers/$(DEPDIR)/$(am__dirstamp)
helpers/LibTorrent_Test_Torrent_Utils-test_fixture.$(OBJEXT): \
helpers/$(am__dirstamp) helpers/$(DEPDIR)/$(am__dirstamp)
helpers/LibTorrent_Test_Torrent_Utils-test_main_thread.$(OBJEXT): \
helpers/$(am__dirstamp) helpers/$(DEPDIR)/$(am__dirstamp)
helpers/LibTorrent_Test_Torrent_Utils-test_thread.$(OBJEXT): \
helpers/$(am__dirstamp) helpers/$(DEPDIR)/$(am__dirstamp)
helpers/LibTorrent_Test_Torrent_Utils-tracker_test.$(OBJEXT): \
helpers/$(am__dirstamp) helpers/$(DEPDIR)/$(am__dirstamp)
torrent/utils/$(am__dirstamp):
@$(MKDIR_P) torrent/utils
@: >>torrent/utils/$(am__dirstamp)
torrent/utils/$(DEPDIR)/$(am__dirstamp):
@$(MKDIR_P) torrent/utils/$(DEPDIR)
@: >>torrent/utils/$(DEPDIR)/$(am__dirstamp)
torrent/utils/LibTorrent_Test_Torrent_Utils-test_extents.$(OBJEXT): \
torrent/utils/$(am__dirstamp) \
torrent/utils/$(DEPDIR)/$(am__dirstamp)
torrent/utils/LibTorrent_Test_Torrent_Utils-test_log.$(OBJEXT): \
torrent/utils/$(am__dirstamp) \
torrent/utils/$(DEPDIR)/$(am__dirstamp)
torrent/utils/LibTorrent_Test_Torrent_Utils-test_log_buffer.$(OBJEXT): \
torrent/utils/$(am__dirstamp) \
torrent/utils/$(DEPDIR)/$(am__dirstamp)
torrent/utils/LibTorrent_Test_Torrent_Utils-test_option_strings.$(OBJEXT): \
torrent/utils/$(am__dirstamp) \
torrent/utils/$(DEPDIR)/$(am__dirstamp)
torrent/utils/LibTorrent_Test_Torrent_Utils-test_queue_buckets.$(OBJEXT): \
torrent/utils/$(am__dirstamp) \
torrent/utils/$(DEPDIR)/$(am__dirstamp)
torrent/utils/LibTorrent_Test_Torrent_Utils-test_signal_bitfield.$(OBJEXT): \
torrent/utils/$(am__dirstamp) \
torrent/utils/$(DEPDIR)/$(am__dirstamp)
torrent/utils/LibTorrent_Test_Torrent_Utils-test_signal_interrupt.$(OBJEXT): \
torrent/utils/$(am__dirstamp) \
torrent/utils/$(DEPDIR)/$(am__dirstamp)
torrent/utils/LibTorrent_Test_Torrent_Utils-test_thread_base.$(OBJEXT): \
torrent/utils/$(am__dirstamp) \
torrent/utils/$(DEPDIR)/$(am__dirstamp)
torrent/utils/LibTorrent_Test_Torrent_Utils-test_uri_parser.$(OBJEXT): \
torrent/utils/$(am__dirstamp) \
torrent/utils/$(DEPDIR)/$(am__dirstamp)
LibTorrent_Test_Torrent_Utils$(EXEEXT): $(LibTorrent_Test_Torrent_Utils_OBJECTS) $(LibTorrent_Test_Torrent_Utils_DEPENDENCIES) $(EXTRA_LibTorrent_Test_Torrent_Utils_DEPENDENCIES)
@rm -f LibTorrent_Test_Torrent_Utils$(EXEEXT)
$(AM_V_CXXLD)$(LibTorrent_Test_Torrent_Utils_LINK) $(LibTorrent_Test_Torrent_Utils_OBJECTS) $(LibTorrent_Test_Torrent_Utils_LDADD) $(LIBS)
helpers/LibTorrent_Test_Tracker-mock_function.$(OBJEXT): \
helpers/$(am__dirstamp) helpers/$(DEPDIR)/$(am__dirstamp)
helpers/LibTorrent_Test_Tracker-network.$(OBJEXT): \
helpers/$(am__dirstamp) helpers/$(DEPDIR)/$(am__dirstamp)
helpers/LibTorrent_Test_Tracker-progress_listener.$(OBJEXT): \
helpers/$(am__dirstamp) helpers/$(DEPDIR)/$(am__dirstamp)
helpers/LibTorrent_Test_Tracker-protectors.$(OBJEXT): \
helpers/$(am__dirstamp) helpers/$(DEPDIR)/$(am__dirstamp)
helpers/LibTorrent_Test_Tracker-test_fixture.$(OBJEXT): \
helpers/$(am__dirstamp) helpers/$(DEPDIR)/$(am__dirstamp)
helpers/LibTorrent_Test_Tracker-test_main_thread.$(OBJEXT): \
helpers/$(am__dirstamp) helpers/$(DEPDIR)/$(am__dirstamp)
helpers/LibTorrent_Test_Tracker-test_thread.$(OBJEXT): \
helpers/$(am__dirstamp) helpers/$(DEPDIR)/$(am__dirstamp)
helpers/LibTorrent_Test_Tracker-tracker_test.$(OBJEXT): \
helpers/$(am__dirstamp) helpers/$(DEPDIR)/$(am__dirstamp)
tracker/$(am__dirstamp):
@$(MKDIR_P) tracker
@: >>tracker/$(am__dirstamp)
tracker/$(DEPDIR)/$(am__dirstamp):
@$(MKDIR_P) tracker/$(DEPDIR)
@: >>tracker/$(DEPDIR)/$(am__dirstamp)
tracker/LibTorrent_Test_Tracker-test_tracker_http.$(OBJEXT): \
tracker/$(am__dirstamp) tracker/$(DEPDIR)/$(am__dirstamp)
LibTorrent_Test_Tracker$(EXEEXT): $(LibTorrent_Test_Tracker_OBJECTS) $(LibTorrent_Test_Tracker_DEPENDENCIES) $(EXTRA_LibTorrent_Test_Tracker_DEPENDENCIES)
@rm -f LibTorrent_Test_Tracker$(EXEEXT)
$(AM_V_CXXLD)$(LibTorrent_Test_Tracker_LINK) $(LibTorrent_Test_Tracker_OBJECTS) $(LibTorrent_Test_Tracker_LDADD) $(LIBS)
mostlyclean-compile:
-rm -f *.$(OBJEXT)
-rm -f data/*.$(OBJEXT)
-rm -f helpers/*.$(OBJEXT)
-rm -f net/*.$(OBJEXT)
-rm -f protocol/*.$(OBJEXT)
-rm -f rak/*.$(OBJEXT)
-rm -f torrent/*.$(OBJEXT)
-rm -f torrent/net/*.$(OBJEXT)
-rm -f torrent/utils/*.$(OBJEXT)
-rm -f tracker/*.$(OBJEXT)
distclean-compile:
-rm -f *.tab.c
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/LibTorrent_Test-main.Po@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/LibTorrent_Test_Data-main.Po@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/LibTorrent_Test_Net-main.Po@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/LibTorrent_Test_Torrent-main.Po@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/LibTorrent_Test_Torrent_Net-main.Po@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/LibTorrent_Test_Torrent_Utils-main.Po@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/LibTorrent_Test_Tracker-main.Po@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@data/$(DEPDIR)/LibTorrent_Test_Data-test_chunk_list.Po@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@data/$(DEPDIR)/LibTorrent_Test_Data-test_hash_check_queue.Po@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@data/$(DEPDIR)/LibTorrent_Test_Data-test_hash_queue.Po@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@helpers/$(DEPDIR)/LibTorrent_Test-mock_function.Po@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@helpers/$(DEPDIR)/LibTorrent_Test-network.Po@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@helpers/$(DEPDIR)/LibTorrent_Test-progress_listener.Po@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@helpers/$(DEPDIR)/LibTorrent_Test-protectors.Po@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@helpers/$(DEPDIR)/LibTorrent_Test-test_fixture.Po@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@helpers/$(DEPDIR)/LibTorrent_Test-test_main_thread.Po@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@helpers/$(DEPDIR)/LibTorrent_Test-test_thread.Po@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@helpers/$(DEPDIR)/LibTorrent_Test-tracker_test.Po@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@helpers/$(DEPDIR)/LibTorrent_Test_Data-mock_function.Po@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@helpers/$(DEPDIR)/LibTorrent_Test_Data-network.Po@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@helpers/$(DEPDIR)/LibTorrent_Test_Data-progress_listener.Po@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@helpers/$(DEPDIR)/LibTorrent_Test_Data-protectors.Po@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@helpers/$(DEPDIR)/LibTorrent_Test_Data-test_fixture.Po@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@helpers/$(DEPDIR)/LibTorrent_Test_Data-test_main_thread.Po@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@helpers/$(DEPDIR)/LibTorrent_Test_Data-test_thread.Po@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@helpers/$(DEPDIR)/LibTorrent_Test_Data-tracker_test.Po@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@helpers/$(DEPDIR)/LibTorrent_Test_Net-mock_function.Po@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@helpers/$(DEPDIR)/LibTorrent_Test_Net-network.Po@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@helpers/$(DEPDIR)/LibTorrent_Test_Net-progress_listener.Po@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@helpers/$(DEPDIR)/LibTorrent_Test_Net-protectors.Po@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@helpers/$(DEPDIR)/LibTorrent_Test_Net-test_fixture.Po@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@helpers/$(DEPDIR)/LibTorrent_Test_Net-test_main_thread.Po@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@helpers/$(DEPDIR)/LibTorrent_Test_Net-test_thread.Po@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@helpers/$(DEPDIR)/LibTorrent_Test_Net-tracker_test.Po@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@helpers/$(DEPDIR)/LibTorrent_Test_Torrent-mock_function.Po@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@helpers/$(DEPDIR)/LibTorrent_Test_Torrent-network.Po@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@helpers/$(DEPDIR)/LibTorrent_Test_Torrent-progress_listener.Po@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@helpers/$(DEPDIR)/LibTorrent_Test_Torrent-protectors.Po@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@helpers/$(DEPDIR)/LibTorrent_Test_Torrent-test_fixture.Po@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@helpers/$(DEPDIR)/LibTorrent_Test_Torrent-test_main_thread.Po@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@helpers/$(DEPDIR)/LibTorrent_Test_Torrent-test_thread.Po@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@helpers/$(DEPDIR)/LibTorrent_Test_Torrent-tracker_test.Po@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@helpers/$(DEPDIR)/LibTorrent_Test_Torrent_Net-mock_function.Po@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@helpers/$(DEPDIR)/LibTorrent_Test_Torrent_Net-network.Po@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@helpers/$(DEPDIR)/LibTorrent_Test_Torrent_Net-progress_listener.Po@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@helpers/$(DEPDIR)/LibTorrent_Test_Torrent_Net-protectors.Po@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@helpers/$(DEPDIR)/LibTorrent_Test_Torrent_Net-test_fixture.Po@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@helpers/$(DEPDIR)/LibTorrent_Test_Torrent_Net-test_main_thread.Po@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@helpers/$(DEPDIR)/LibTorrent_Test_Torrent_Net-test_thread.Po@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@helpers/$(DEPDIR)/LibTorrent_Test_Torrent_Net-tracker_test.Po@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@helpers/$(DEPDIR)/LibTorrent_Test_Torrent_Utils-mock_function.Po@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@helpers/$(DEPDIR)/LibTorrent_Test_Torrent_Utils-network.Po@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@helpers/$(DEPDIR)/LibTorrent_Test_Torrent_Utils-progress_listener.Po@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@helpers/$(DEPDIR)/LibTorrent_Test_Torrent_Utils-protectors.Po@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@helpers/$(DEPDIR)/LibTorrent_Test_Torrent_Utils-test_fixture.Po@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@helpers/$(DEPDIR)/LibTorrent_Test_Torrent_Utils-test_main_thread.Po@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@helpers/$(DEPDIR)/LibTorrent_Test_Torrent_Utils-test_thread.Po@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@helpers/$(DEPDIR)/LibTorrent_Test_Torrent_Utils-tracker_test.Po@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@helpers/$(DEPDIR)/LibTorrent_Test_Tracker-mock_function.Po@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@helpers/$(DEPDIR)/LibTorrent_Test_Tracker-network.Po@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@helpers/$(DEPDIR)/LibTorrent_Test_Tracker-progress_listener.Po@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@helpers/$(DEPDIR)/LibTorrent_Test_Tracker-protectors.Po@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@helpers/$(DEPDIR)/LibTorrent_Test_Tracker-test_fixture.Po@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@helpers/$(DEPDIR)/LibTorrent_Test_Tracker-test_main_thread.Po@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@helpers/$(DEPDIR)/LibTorrent_Test_Tracker-test_thread.Po@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@helpers/$(DEPDIR)/LibTorrent_Test_Tracker-tracker_test.Po@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@net/$(DEPDIR)/LibTorrent_Test_Net-test_socket_listen.Po@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@protocol/$(DEPDIR)/LibTorrent_Test-test_request_list.Po@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@rak/$(DEPDIR)/LibTorrent_Test-allocators_test.Po@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@rak/$(DEPDIR)/LibTorrent_Test-ranges_test.Po@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@torrent/$(DEPDIR)/LibTorrent_Test_Torrent-object_static_map_test.Po@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@torrent/$(DEPDIR)/LibTorrent_Test_Torrent-object_stream_test.Po@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@torrent/$(DEPDIR)/LibTorrent_Test_Torrent-object_test.Po@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@torrent/$(DEPDIR)/LibTorrent_Test_Torrent-object_test_utils.Po@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@torrent/$(DEPDIR)/LibTorrent_Test_Torrent-test_http.Po@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@torrent/$(DEPDIR)/LibTorrent_Test_Torrent-test_tracker_controller.Po@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@torrent/$(DEPDIR)/LibTorrent_Test_Torrent-test_tracker_controller_features.Po@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@torrent/$(DEPDIR)/LibTorrent_Test_Torrent-test_tracker_controller_requesting.Po@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@torrent/$(DEPDIR)/LibTorrent_Test_Torrent-test_tracker_list.Po@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@torrent/$(DEPDIR)/LibTorrent_Test_Torrent-test_tracker_list_features.Po@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@torrent/$(DEPDIR)/LibTorrent_Test_Torrent-test_tracker_timeout.Po@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@torrent/net/$(DEPDIR)/LibTorrent_Test_Torrent_Net-test_address_info.Po@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@torrent/net/$(DEPDIR)/LibTorrent_Test_Torrent_Net-test_fd.Po@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@torrent/net/$(DEPDIR)/LibTorrent_Test_Torrent_Net-test_socket_address.Po@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@torrent/utils/$(DEPDIR)/LibTorrent_Test_Torrent_Utils-test_extents.Po@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@torrent/utils/$(DEPDIR)/LibTorrent_Test_Torrent_Utils-test_log.Po@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@torrent/utils/$(DEPDIR)/LibTorrent_Test_Torrent_Utils-test_log_buffer.Po@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@torrent/utils/$(DEPDIR)/LibTorrent_Test_Torrent_Utils-test_option_strings.Po@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@torrent/utils/$(DEPDIR)/LibTorrent_Test_Torrent_Utils-test_queue_buckets.Po@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@torrent/utils/$(DEPDIR)/LibTorrent_Test_Torrent_Utils-test_signal_bitfield.Po@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@torrent/utils/$(DEPDIR)/LibTorrent_Test_Torrent_Utils-test_signal_interrupt.Po@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@torrent/utils/$(DEPDIR)/LibTorrent_Test_Torrent_Utils-test_thread_base.Po@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@torrent/utils/$(DEPDIR)/LibTorrent_Test_Torrent_Utils-test_uri_parser.Po@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@tracker/$(DEPDIR)/LibTorrent_Test_Tracker-test_tracker_http.Po@am__quote@ # am--include-marker
$(am__depfiles_remade):
@$(MKDIR_P) $(@D)
@: >>$@
am--depfiles: $(am__depfiles_remade)
.cc.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
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='$<' object='$@' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXXCOMPILE) -c -o $@ $<
.cc.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
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='$<' object='$@' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXXCOMPILE) -c -o $@ `$(CYGPATH_W) '$<'`
.cc.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
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='$<' object='$@' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(LTCXXCOMPILE) -c -o $@ $<
LibTorrent_Test-main.o: main.cc
@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(LibTorrent_Test_CXXFLAGS) $(CXXFLAGS) -MT LibTorrent_Test-main.o -MD -MP -MF $(DEPDIR)/LibTorrent_Test-main.Tpo -c -o LibTorrent_Test-main.o `test -f 'main.cc' || echo '$(srcdir)/'`main.cc
@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/LibTorrent_Test-main.Tpo $(DEPDIR)/LibTorrent_Test-main.Po
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='main.cc' object='LibTorrent_Test-main.o' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(LibTorrent_Test_CXXFLAGS) $(CXXFLAGS) -c -o LibTorrent_Test-main.o `test -f 'main.cc' || echo '$(srcdir)/'`main.cc
LibTorrent_Test-main.obj: main.cc
@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(LibTorrent_Test_CXXFLAGS) $(CXXFLAGS) -MT LibTorrent_Test-main.obj -MD -MP -MF $(DEPDIR)/LibTorrent_Test-main.Tpo -c -o LibTorrent_Test-main.obj `if test -f 'main.cc'; then $(CYGPATH_W) 'main.cc'; else $(CYGPATH_W) '$(srcdir)/main.cc'; fi`
@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/LibTorrent_Test-main.Tpo $(DEPDIR)/LibTorrent_Test-main.Po
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='main.cc' object='LibTorrent_Test-main.obj' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(LibTorrent_Test_CXXFLAGS) $(CXXFLAGS) -c -o LibTorrent_Test-main.obj `if test -f 'main.cc'; then $(CYGPATH_W) 'main.cc'; else $(CYGPATH_W) '$(srcdir)/main.cc'; fi`
helpers/LibTorrent_Test-mock_function.o: helpers/mock_function.cc
@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(LibTorrent_Test_CXXFLAGS) $(CXXFLAGS) -MT helpers/LibTorrent_Test-mock_function.o -MD -MP -MF helpers/$(DEPDIR)/LibTorrent_Test-mock_function.Tpo -c -o helpers/LibTorrent_Test-mock_function.o `test -f 'helpers/mock_function.cc' || echo '$(srcdir)/'`helpers/mock_function.cc
@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) helpers/$(DEPDIR)/LibTorrent_Test-mock_function.Tpo helpers/$(DEPDIR)/LibTorrent_Test-mock_function.Po
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='helpers/mock_function.cc' object='helpers/LibTorrent_Test-mock_function.o' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(LibTorrent_Test_CXXFLAGS) $(CXXFLAGS) -c -o helpers/LibTorrent_Test-mock_function.o `test -f 'helpers/mock_function.cc' || echo '$(srcdir)/'`helpers/mock_function.cc
helpers/LibTorrent_Test-mock_function.obj: helpers/mock_function.cc
@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(LibTorrent_Test_CXXFLAGS) $(CXXFLAGS) -MT helpers/LibTorrent_Test-mock_function.obj -MD -MP -MF helpers/$(DEPDIR)/LibTorrent_Test-mock_function.Tpo -c -o helpers/LibTorrent_Test-mock_function.obj `if test -f 'helpers/mock_function.cc'; then $(CYGPATH_W) 'helpers/mock_function.cc'; else $(CYGPATH_W) '$(srcdir)/helpers/mock_function.cc'; fi`
@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) helpers/$(DEPDIR)/LibTorrent_Test-mock_function.Tpo helpers/$(DEPDIR)/LibTorrent_Test-mock_function.Po
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='helpers/mock_function.cc' object='helpers/LibTorrent_Test-mock_function.obj' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(LibTorrent_Test_CXXFLAGS) $(CXXFLAGS) -c -o helpers/LibTorrent_Test-mock_function.obj `if test -f 'helpers/mock_function.cc'; then $(CYGPATH_W) 'helpers/mock_function.cc'; else $(CYGPATH_W) '$(srcdir)/helpers/mock_function.cc'; fi`
helpers/LibTorrent_Test-network.o: helpers/network.cc
@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(LibTorrent_Test_CXXFLAGS) $(CXXFLAGS) -MT helpers/LibTorrent_Test-network.o -MD -MP -MF helpers/$(DEPDIR)/LibTorrent_Test-network.Tpo -c -o helpers/LibTorrent_Test-network.o `test -f 'helpers/network.cc' || echo '$(srcdir)/'`helpers/network.cc
@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) helpers/$(DEPDIR)/LibTorrent_Test-network.Tpo helpers/$(DEPDIR)/LibTorrent_Test-network.Po
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='helpers/network.cc' object='helpers/LibTorrent_Test-network.o' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(LibTorrent_Test_CXXFLAGS) $(CXXFLAGS) -c -o helpers/LibTorrent_Test-network.o `test -f 'helpers/network.cc' || echo '$(srcdir)/'`helpers/network.cc
helpers/LibTorrent_Test-network.obj: helpers/network.cc
@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(LibTorrent_Test_CXXFLAGS) $(CXXFLAGS) -MT helpers/LibTorrent_Test-network.obj -MD -MP -MF helpers/$(DEPDIR)/LibTorrent_Test-network.Tpo -c -o helpers/LibTorrent_Test-network.obj `if test -f 'helpers/network.cc'; then $(CYGPATH_W) 'helpers/network.cc'; else $(CYGPATH_W) '$(srcdir)/helpers/network.cc'; fi`
@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) helpers/$(DEPDIR)/LibTorrent_Test-network.Tpo helpers/$(DEPDIR)/LibTorrent_Test-network.Po
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='helpers/network.cc' object='helpers/LibTorrent_Test-network.obj' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(LibTorrent_Test_CXXFLAGS) $(CXXFLAGS) -c -o helpers/LibTorrent_Test-network.obj `if test -f 'helpers/network.cc'; then $(CYGPATH_W) 'helpers/network.cc'; else $(CYGPATH_W) '$(srcdir)/helpers/network.cc'; fi`
helpers/LibTorrent_Test-progress_listener.o: helpers/progress_listener.cc
@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(LibTorrent_Test_CXXFLAGS) $(CXXFLAGS) -MT helpers/LibTorrent_Test-progress_listener.o -MD -MP -MF helpers/$(DEPDIR)/LibTorrent_Test-progress_listener.Tpo -c -o helpers/LibTorrent_Test-progress_listener.o `test -f 'helpers/progress_listener.cc' || echo '$(srcdir)/'`helpers/progress_listener.cc
@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) helpers/$(DEPDIR)/LibTorrent_Test-progress_listener.Tpo helpers/$(DEPDIR)/LibTorrent_Test-progress_listener.Po
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='helpers/progress_listener.cc' object='helpers/LibTorrent_Test-progress_listener.o' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(LibTorrent_Test_CXXFLAGS) $(CXXFLAGS) -c -o helpers/LibTorrent_Test-progress_listener.o `test -f 'helpers/progress_listener.cc' || echo '$(srcdir)/'`helpers/progress_listener.cc
helpers/LibTorrent_Test-progress_listener.obj: helpers/progress_listener.cc
@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(LibTorrent_Test_CXXFLAGS) $(CXXFLAGS) -MT helpers/LibTorrent_Test-progress_listener.obj -MD -MP -MF helpers/$(DEPDIR)/LibTorrent_Test-progress_listener.Tpo -c -o helpers/LibTorrent_Test-progress_listener.obj `if test -f 'helpers/progress_listener.cc'; then $(CYGPATH_W) 'helpers/progress_listener.cc'; else $(CYGPATH_W) '$(srcdir)/helpers/progress_listener.cc'; fi`
@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) helpers/$(DEPDIR)/LibTorrent_Test-progress_listener.Tpo helpers/$(DEPDIR)/LibTorrent_Test-progress_listener.Po
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='helpers/progress_listener.cc' object='helpers/LibTorrent_Test-progress_listener.obj' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(LibTorrent_Test_CXXFLAGS) $(CXXFLAGS) -c -o helpers/LibTorrent_Test-progress_listener.obj `if test -f 'helpers/progress_listener.cc'; then $(CYGPATH_W) 'helpers/progress_listener.cc'; else $(CYGPATH_W) '$(srcdir)/helpers/progress_listener.cc'; fi`
helpers/LibTorrent_Test-protectors.o: helpers/protectors.cc
@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(LibTorrent_Test_CXXFLAGS) $(CXXFLAGS) -MT helpers/LibTorrent_Test-protectors.o -MD -MP -MF helpers/$(DEPDIR)/LibTorrent_Test-protectors.Tpo -c -o helpers/LibTorrent_Test-protectors.o `test -f 'helpers/protectors.cc' || echo '$(srcdir)/'`helpers/protectors.cc
@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) helpers/$(DEPDIR)/LibTorrent_Test-protectors.Tpo helpers/$(DEPDIR)/LibTorrent_Test-protectors.Po
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='helpers/protectors.cc' object='helpers/LibTorrent_Test-protectors.o' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(LibTorrent_Test_CXXFLAGS) $(CXXFLAGS) -c -o helpers/LibTorrent_Test-protectors.o `test -f 'helpers/protectors.cc' || echo '$(srcdir)/'`helpers/protectors.cc
helpers/LibTorrent_Test-protectors.obj: helpers/protectors.cc
@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(LibTorrent_Test_CXXFLAGS) $(CXXFLAGS) -MT helpers/LibTorrent_Test-protectors.obj -MD -MP -MF helpers/$(DEPDIR)/LibTorrent_Test-protectors.Tpo -c -o helpers/LibTorrent_Test-protectors.obj `if test -f 'helpers/protectors.cc'; then $(CYGPATH_W) 'helpers/protectors.cc'; else $(CYGPATH_W) '$(srcdir)/helpers/protectors.cc'; fi`
@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) helpers/$(DEPDIR)/LibTorrent_Test-protectors.Tpo helpers/$(DEPDIR)/LibTorrent_Test-protectors.Po
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='helpers/protectors.cc' object='helpers/LibTorrent_Test-protectors.obj' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(LibTorrent_Test_CXXFLAGS) $(CXXFLAGS) -c -o helpers/LibTorrent_Test-protectors.obj `if test -f 'helpers/protectors.cc'; then $(CYGPATH_W) 'helpers/protectors.cc'; else $(CYGPATH_W) '$(srcdir)/helpers/protectors.cc'; fi`
helpers/LibTorrent_Test-test_fixture.o: helpers/test_fixture.cc
@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(LibTorrent_Test_CXXFLAGS) $(CXXFLAGS) -MT helpers/LibTorrent_Test-test_fixture.o -MD -MP -MF helpers/$(DEPDIR)/LibTorrent_Test-test_fixture.Tpo -c -o helpers/LibTorrent_Test-test_fixture.o `test -f 'helpers/test_fixture.cc' || echo '$(srcdir)/'`helpers/test_fixture.cc
@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) helpers/$(DEPDIR)/LibTorrent_Test-test_fixture.Tpo helpers/$(DEPDIR)/LibTorrent_Test-test_fixture.Po
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='helpers/test_fixture.cc' object='helpers/LibTorrent_Test-test_fixture.o' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(LibTorrent_Test_CXXFLAGS) $(CXXFLAGS) -c -o helpers/LibTorrent_Test-test_fixture.o `test -f 'helpers/test_fixture.cc' || echo '$(srcdir)/'`helpers/test_fixture.cc
helpers/LibTorrent_Test-test_fixture.obj: helpers/test_fixture.cc
@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(LibTorrent_Test_CXXFLAGS) $(CXXFLAGS) -MT helpers/LibTorrent_Test-test_fixture.obj -MD -MP -MF helpers/$(DEPDIR)/LibTorrent_Test-test_fixture.Tpo -c -o helpers/LibTorrent_Test-test_fixture.obj `if test -f 'helpers/test_fixture.cc'; then $(CYGPATH_W) 'helpers/test_fixture.cc'; else $(CYGPATH_W) '$(srcdir)/helpers/test_fixture.cc'; fi`
@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) helpers/$(DEPDIR)/LibTorrent_Test-test_fixture.Tpo helpers/$(DEPDIR)/LibTorrent_Test-test_fixture.Po
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='helpers/test_fixture.cc' object='helpers/LibTorrent_Test-test_fixture.obj' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(LibTorrent_Test_CXXFLAGS) $(CXXFLAGS) -c -o helpers/LibTorrent_Test-test_fixture.obj `if test -f 'helpers/test_fixture.cc'; then $(CYGPATH_W) 'helpers/test_fixture.cc'; else $(CYGPATH_W) '$(srcdir)/helpers/test_fixture.cc'; fi`
helpers/LibTorrent_Test-test_main_thread.o: helpers/test_main_thread.cc
@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(LibTorrent_Test_CXXFLAGS) $(CXXFLAGS) -MT helpers/LibTorrent_Test-test_main_thread.o -MD -MP -MF helpers/$(DEPDIR)/LibTorrent_Test-test_main_thread.Tpo -c -o helpers/LibTorrent_Test-test_main_thread.o `test -f 'helpers/test_main_thread.cc' || echo '$(srcdir)/'`helpers/test_main_thread.cc
@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) helpers/$(DEPDIR)/LibTorrent_Test-test_main_thread.Tpo helpers/$(DEPDIR)/LibTorrent_Test-test_main_thread.Po
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='helpers/test_main_thread.cc' object='helpers/LibTorrent_Test-test_main_thread.o' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(LibTorrent_Test_CXXFLAGS) $(CXXFLAGS) -c -o helpers/LibTorrent_Test-test_main_thread.o `test -f 'helpers/test_main_thread.cc' || echo '$(srcdir)/'`helpers/test_main_thread.cc
helpers/LibTorrent_Test-test_main_thread.obj: helpers/test_main_thread.cc
@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(LibTorrent_Test_CXXFLAGS) $(CXXFLAGS) -MT helpers/LibTorrent_Test-test_main_thread.obj -MD -MP -MF helpers/$(DEPDIR)/LibTorrent_Test-test_main_thread.Tpo -c -o helpers/LibTorrent_Test-test_main_thread.obj `if test -f 'helpers/test_main_thread.cc'; then $(CYGPATH_W) 'helpers/test_main_thread.cc'; else $(CYGPATH_W) '$(srcdir)/helpers/test_main_thread.cc'; fi`
@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) helpers/$(DEPDIR)/LibTorrent_Test-test_main_thread.Tpo helpers/$(DEPDIR)/LibTorrent_Test-test_main_thread.Po
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='helpers/test_main_thread.cc' object='helpers/LibTorrent_Test-test_main_thread.obj' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(LibTorrent_Test_CXXFLAGS) $(CXXFLAGS) -c -o helpers/LibTorrent_Test-test_main_thread.obj `if test -f 'helpers/test_main_thread.cc'; then $(CYGPATH_W) 'helpers/test_main_thread.cc'; else $(CYGPATH_W) '$(srcdir)/helpers/test_main_thread.cc'; fi`
helpers/LibTorrent_Test-test_thread.o: helpers/test_thread.cc
@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(LibTorrent_Test_CXXFLAGS) $(CXXFLAGS) -MT helpers/LibTorrent_Test-test_thread.o -MD -MP -MF helpers/$(DEPDIR)/LibTorrent_Test-test_thread.Tpo -c -o helpers/LibTorrent_Test-test_thread.o `test -f 'helpers/test_thread.cc' || echo '$(srcdir)/'`helpers/test_thread.cc
@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) helpers/$(DEPDIR)/LibTorrent_Test-test_thread.Tpo helpers/$(DEPDIR)/LibTorrent_Test-test_thread.Po
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='helpers/test_thread.cc' object='helpers/LibTorrent_Test-test_thread.o' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(LibTorrent_Test_CXXFLAGS) $(CXXFLAGS) -c -o helpers/LibTorrent_Test-test_thread.o `test -f 'helpers/test_thread.cc' || echo '$(srcdir)/'`helpers/test_thread.cc
helpers/LibTorrent_Test-test_thread.obj: helpers/test_thread.cc
@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(LibTorrent_Test_CXXFLAGS) $(CXXFLAGS) -MT helpers/LibTorrent_Test-test_thread.obj -MD -MP -MF helpers/$(DEPDIR)/LibTorrent_Test-test_thread.Tpo -c -o helpers/LibTorrent_Test-test_thread.obj `if test -f 'helpers/test_thread.cc'; then $(CYGPATH_W) 'helpers/test_thread.cc'; else $(CYGPATH_W) '$(srcdir)/helpers/test_thread.cc'; fi`
@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) helpers/$(DEPDIR)/LibTorrent_Test-test_thread.Tpo helpers/$(DEPDIR)/LibTorrent_Test-test_thread.Po
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='helpers/test_thread.cc' object='helpers/LibTorrent_Test-test_thread.obj' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(LibTorrent_Test_CXXFLAGS) $(CXXFLAGS) -c -o helpers/LibTorrent_Test-test_thread.obj `if test -f 'helpers/test_thread.cc'; then $(CYGPATH_W) 'helpers/test_thread.cc'; else $(CYGPATH_W) '$(srcdir)/helpers/test_thread.cc'; fi`
helpers/LibTorrent_Test-tracker_test.o: helpers/tracker_test.cc
@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(LibTorrent_Test_CXXFLAGS) $(CXXFLAGS) -MT helpers/LibTorrent_Test-tracker_test.o -MD -MP -MF helpers/$(DEPDIR)/LibTorrent_Test-tracker_test.Tpo -c -o helpers/LibTorrent_Test-tracker_test.o `test -f 'helpers/tracker_test.cc' || echo '$(srcdir)/'`helpers/tracker_test.cc
@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) helpers/$(DEPDIR)/LibTorrent_Test-tracker_test.Tpo helpers/$(DEPDIR)/LibTorrent_Test-tracker_test.Po
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='helpers/tracker_test.cc' object='helpers/LibTorrent_Test-tracker_test.o' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(LibTorrent_Test_CXXFLAGS) $(CXXFLAGS) -c -o helpers/LibTorrent_Test-tracker_test.o `test -f 'helpers/tracker_test.cc' || echo '$(srcdir)/'`helpers/tracker_test.cc
helpers/LibTorrent_Test-tracker_test.obj: helpers/tracker_test.cc
@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(LibTorrent_Test_CXXFLAGS) $(CXXFLAGS) -MT helpers/LibTorrent_Test-tracker_test.obj -MD -MP -MF helpers/$(DEPDIR)/LibTorrent_Test-tracker_test.Tpo -c -o helpers/LibTorrent_Test-tracker_test.obj `if test -f 'helpers/tracker_test.cc'; then $(CYGPATH_W) 'helpers/tracker_test.cc'; else $(CYGPATH_W) '$(srcdir)/helpers/tracker_test.cc'; fi`
@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) helpers/$(DEPDIR)/LibTorrent_Test-tracker_test.Tpo helpers/$(DEPDIR)/LibTorrent_Test-tracker_test.Po
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='helpers/tracker_test.cc' object='helpers/LibTorrent_Test-tracker_test.obj' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(LibTorrent_Test_CXXFLAGS) $(CXXFLAGS) -c -o helpers/LibTorrent_Test-tracker_test.obj `if test -f 'helpers/tracker_test.cc'; then $(CYGPATH_W) 'helpers/tracker_test.cc'; else $(CYGPATH_W) '$(srcdir)/helpers/tracker_test.cc'; fi`
rak/LibTorrent_Test-allocators_test.o: rak/allocators_test.cc
@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(LibTorrent_Test_CXXFLAGS) $(CXXFLAGS) -MT rak/LibTorrent_Test-allocators_test.o -MD -MP -MF rak/$(DEPDIR)/LibTorrent_Test-allocators_test.Tpo -c -o rak/LibTorrent_Test-allocators_test.o `test -f 'rak/allocators_test.cc' || echo '$(srcdir)/'`rak/allocators_test.cc
@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) rak/$(DEPDIR)/LibTorrent_Test-allocators_test.Tpo rak/$(DEPDIR)/LibTorrent_Test-allocators_test.Po
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='rak/allocators_test.cc' object='rak/LibTorrent_Test-allocators_test.o' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(LibTorrent_Test_CXXFLAGS) $(CXXFLAGS) -c -o rak/LibTorrent_Test-allocators_test.o `test -f 'rak/allocators_test.cc' || echo '$(srcdir)/'`rak/allocators_test.cc
rak/LibTorrent_Test-allocators_test.obj: rak/allocators_test.cc
@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(LibTorrent_Test_CXXFLAGS) $(CXXFLAGS) -MT rak/LibTorrent_Test-allocators_test.obj -MD -MP -MF rak/$(DEPDIR)/LibTorrent_Test-allocators_test.Tpo -c -o rak/LibTorrent_Test-allocators_test.obj `if test -f 'rak/allocators_test.cc'; then $(CYGPATH_W) 'rak/allocators_test.cc'; else $(CYGPATH_W) '$(srcdir)/rak/allocators_test.cc'; fi`
@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) rak/$(DEPDIR)/LibTorrent_Test-allocators_test.Tpo rak/$(DEPDIR)/LibTorrent_Test-allocators_test.Po
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='rak/allocators_test.cc' object='rak/LibTorrent_Test-allocators_test.obj' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(LibTorrent_Test_CXXFLAGS) $(CXXFLAGS) -c -o rak/LibTorrent_Test-allocators_test.obj `if test -f 'rak/allocators_test.cc'; then $(CYGPATH_W) 'rak/allocators_test.cc'; else $(CYGPATH_W) '$(srcdir)/rak/allocators_test.cc'; fi`
rak/LibTorrent_Test-ranges_test.o: rak/ranges_test.cc
@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(LibTorrent_Test_CXXFLAGS) $(CXXFLAGS) -MT rak/LibTorrent_Test-ranges_test.o -MD -MP -MF rak/$(DEPDIR)/LibTorrent_Test-ranges_test.Tpo -c -o rak/LibTorrent_Test-ranges_test.o `test -f 'rak/ranges_test.cc' || echo '$(srcdir)/'`rak/ranges_test.cc
@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) rak/$(DEPDIR)/LibTorrent_Test-ranges_test.Tpo rak/$(DEPDIR)/LibTorrent_Test-ranges_test.Po
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='rak/ranges_test.cc' object='rak/LibTorrent_Test-ranges_test.o' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(LibTorrent_Test_CXXFLAGS) $(CXXFLAGS) -c -o rak/LibTorrent_Test-ranges_test.o `test -f 'rak/ranges_test.cc' || echo '$(srcdir)/'`rak/ranges_test.cc
rak/LibTorrent_Test-ranges_test.obj: rak/ranges_test.cc
@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(LibTorrent_Test_CXXFLAGS) $(CXXFLAGS) -MT rak/LibTorrent_Test-ranges_test.obj -MD -MP -MF rak/$(DEPDIR)/LibTorrent_Test-ranges_test.Tpo -c -o rak/LibTorrent_Test-ranges_test.obj `if test -f 'rak/ranges_test.cc'; then $(CYGPATH_W) 'rak/ranges_test.cc'; else $(CYGPATH_W) '$(srcdir)/rak/ranges_test.cc'; fi`
@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) rak/$(DEPDIR)/LibTorrent_Test-ranges_test.Tpo rak/$(DEPDIR)/LibTorrent_Test-ranges_test.Po
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='rak/ranges_test.cc' object='rak/LibTorrent_Test-ranges_test.obj' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(LibTorrent_Test_CXXFLAGS) $(CXXFLAGS) -c -o rak/LibTorrent_Test-ranges_test.obj `if test -f 'rak/ranges_test.cc'; then $(CYGPATH_W) 'rak/ranges_test.cc'; else $(CYGPATH_W) '$(srcdir)/rak/ranges_test.cc'; fi`
protocol/LibTorrent_Test-test_request_list.o: protocol/test_request_list.cc
@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(LibTorrent_Test_CXXFLAGS) $(CXXFLAGS) -MT protocol/LibTorrent_Test-test_request_list.o -MD -MP -MF protocol/$(DEPDIR)/LibTorrent_Test-test_request_list.Tpo -c -o protocol/LibTorrent_Test-test_request_list.o `test -f 'protocol/test_request_list.cc' || echo '$(srcdir)/'`protocol/test_request_list.cc
@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) protocol/$(DEPDIR)/LibTorrent_Test-test_request_list.Tpo protocol/$(DEPDIR)/LibTorrent_Test-test_request_list.Po
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='protocol/test_request_list.cc' object='protocol/LibTorrent_Test-test_request_list.o' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(LibTorrent_Test_CXXFLAGS) $(CXXFLAGS) -c -o protocol/LibTorrent_Test-test_request_list.o `test -f 'protocol/test_request_list.cc' || echo '$(srcdir)/'`protocol/test_request_list.cc
protocol/LibTorrent_Test-test_request_list.obj: protocol/test_request_list.cc
@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(LibTorrent_Test_CXXFLAGS) $(CXXFLAGS) -MT protocol/LibTorrent_Test-test_request_list.obj -MD -MP -MF protocol/$(DEPDIR)/LibTorrent_Test-test_request_list.Tpo -c -o protocol/LibTorrent_Test-test_request_list.obj `if test -f 'protocol/test_request_list.cc'; then $(CYGPATH_W) 'protocol/test_request_list.cc'; else $(CYGPATH_W) '$(srcdir)/protocol/test_request_list.cc'; fi`
@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) protocol/$(DEPDIR)/LibTorrent_Test-test_request_list.Tpo protocol/$(DEPDIR)/LibTorrent_Test-test_request_list.Po
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='protocol/test_request_list.cc' object='protocol/LibTorrent_Test-test_request_list.obj' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(LibTorrent_Test_CXXFLAGS) $(CXXFLAGS) -c -o protocol/LibTorrent_Test-test_request_list.obj `if test -f 'protocol/test_request_list.cc'; then $(CYGPATH_W) 'protocol/test_request_list.cc'; else $(CYGPATH_W) '$(srcdir)/protocol/test_request_list.cc'; fi`
LibTorrent_Test_Data-main.o: main.cc
@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(LibTorrent_Test_Data_CXXFLAGS) $(CXXFLAGS) -MT LibTorrent_Test_Data-main.o -MD -MP -MF $(DEPDIR)/LibTorrent_Test_Data-main.Tpo -c -o LibTorrent_Test_Data-main.o `test -f 'main.cc' || echo '$(srcdir)/'`main.cc
@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/LibTorrent_Test_Data-main.Tpo $(DEPDIR)/LibTorrent_Test_Data-main.Po
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='main.cc' object='LibTorrent_Test_Data-main.o' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(LibTorrent_Test_Data_CXXFLAGS) $(CXXFLAGS) -c -o LibTorrent_Test_Data-main.o `test -f 'main.cc' || echo '$(srcdir)/'`main.cc
LibTorrent_Test_Data-main.obj: main.cc
@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(LibTorrent_Test_Data_CXXFLAGS) $(CXXFLAGS) -MT LibTorrent_Test_Data-main.obj -MD -MP -MF $(DEPDIR)/LibTorrent_Test_Data-main.Tpo -c -o LibTorrent_Test_Data-main.obj `if test -f 'main.cc'; then $(CYGPATH_W) 'main.cc'; else $(CYGPATH_W) '$(srcdir)/main.cc'; fi`
@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/LibTorrent_Test_Data-main.Tpo $(DEPDIR)/LibTorrent_Test_Data-main.Po
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='main.cc' object='LibTorrent_Test_Data-main.obj' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(LibTorrent_Test_Data_CXXFLAGS) $(CXXFLAGS) -c -o LibTorrent_Test_Data-main.obj `if test -f 'main.cc'; then $(CYGPATH_W) 'main.cc'; else $(CYGPATH_W) '$(srcdir)/main.cc'; fi`
helpers/LibTorrent_Test_Data-mock_function.o: helpers/mock_function.cc
@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(LibTorrent_Test_Data_CXXFLAGS) $(CXXFLAGS) -MT helpers/LibTorrent_Test_Data-mock_function.o -MD -MP -MF helpers/$(DEPDIR)/LibTorrent_Test_Data-mock_function.Tpo -c -o helpers/LibTorrent_Test_Data-mock_function.o `test -f 'helpers/mock_function.cc' || echo '$(srcdir)/'`helpers/mock_function.cc
@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) helpers/$(DEPDIR)/LibTorrent_Test_Data-mock_function.Tpo helpers/$(DEPDIR)/LibTorrent_Test_Data-mock_function.Po
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='helpers/mock_function.cc' object='helpers/LibTorrent_Test_Data-mock_function.o' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(LibTorrent_Test_Data_CXXFLAGS) $(CXXFLAGS) -c -o helpers/LibTorrent_Test_Data-mock_function.o `test -f 'helpers/mock_function.cc' || echo '$(srcdir)/'`helpers/mock_function.cc
helpers/LibTorrent_Test_Data-mock_function.obj: helpers/mock_function.cc
@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(LibTorrent_Test_Data_CXXFLAGS) $(CXXFLAGS) -MT helpers/LibTorrent_Test_Data-mock_function.obj -MD -MP -MF helpers/$(DEPDIR)/LibTorrent_Test_Data-mock_function.Tpo -c -o helpers/LibTorrent_Test_Data-mock_function.obj `if test -f 'helpers/mock_function.cc'; then $(CYGPATH_W) 'helpers/mock_function.cc'; else $(CYGPATH_W) '$(srcdir)/helpers/mock_function.cc'; fi`
@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) helpers/$(DEPDIR)/LibTorrent_Test_Data-mock_function.Tpo helpers/$(DEPDIR)/LibTorrent_Test_Data-mock_function.Po
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='helpers/mock_function.cc' object='helpers/LibTorrent_Test_Data-mock_function.obj' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(LibTorrent_Test_Data_CXXFLAGS) $(CXXFLAGS) -c -o helpers/LibTorrent_Test_Data-mock_function.obj `if test -f 'helpers/mock_function.cc'; then $(CYGPATH_W) 'helpers/mock_function.cc'; else $(CYGPATH_W) '$(srcdir)/helpers/mock_function.cc'; fi`
helpers/LibTorrent_Test_Data-network.o: helpers/network.cc
@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(LibTorrent_Test_Data_CXXFLAGS) $(CXXFLAGS) -MT helpers/LibTorrent_Test_Data-network.o -MD -MP -MF helpers/$(DEPDIR)/LibTorrent_Test_Data-network.Tpo -c -o helpers/LibTorrent_Test_Data-network.o `test -f 'helpers/network.cc' || echo '$(srcdir)/'`helpers/network.cc
@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) helpers/$(DEPDIR)/LibTorrent_Test_Data-network.Tpo helpers/$(DEPDIR)/LibTorrent_Test_Data-network.Po
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='helpers/network.cc' object='helpers/LibTorrent_Test_Data-network.o' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(LibTorrent_Test_Data_CXXFLAGS) $(CXXFLAGS) -c -o helpers/LibTorrent_Test_Data-network.o `test -f 'helpers/network.cc' || echo '$(srcdir)/'`helpers/network.cc
helpers/LibTorrent_Test_Data-network.obj: helpers/network.cc
@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(LibTorrent_Test_Data_CXXFLAGS) $(CXXFLAGS) -MT helpers/LibTorrent_Test_Data-network.obj -MD -MP -MF helpers/$(DEPDIR)/LibTorrent_Test_Data-network.Tpo -c -o helpers/LibTorrent_Test_Data-network.obj `if test -f 'helpers/network.cc'; then $(CYGPATH_W) 'helpers/network.cc'; else $(CYGPATH_W) '$(srcdir)/helpers/network.cc'; fi`
@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) helpers/$(DEPDIR)/LibTorrent_Test_Data-network.Tpo helpers/$(DEPDIR)/LibTorrent_Test_Data-network.Po
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='helpers/network.cc' object='helpers/LibTorrent_Test_Data-network.obj' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(LibTorrent_Test_Data_CXXFLAGS) $(CXXFLAGS) -c -o helpers/LibTorrent_Test_Data-network.obj `if test -f 'helpers/network.cc'; then $(CYGPATH_W) 'helpers/network.cc'; else $(CYGPATH_W) '$(srcdir)/helpers/network.cc'; fi`
helpers/LibTorrent_Test_Data-progress_listener.o: helpers/progress_listener.cc
@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(LibTorrent_Test_Data_CXXFLAGS) $(CXXFLAGS) -MT helpers/LibTorrent_Test_Data-progress_listener.o -MD -MP -MF helpers/$(DEPDIR)/LibTorrent_Test_Data-progress_listener.Tpo -c -o helpers/LibTorrent_Test_Data-progress_listener.o `test -f 'helpers/progress_listener.cc' || echo '$(srcdir)/'`helpers/progress_listener.cc
@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) helpers/$(DEPDIR)/LibTorrent_Test_Data-progress_listener.Tpo helpers/$(DEPDIR)/LibTorrent_Test_Data-progress_listener.Po
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='helpers/progress_listener.cc' object='helpers/LibTorrent_Test_Data-progress_listener.o' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(LibTorrent_Test_Data_CXXFLAGS) $(CXXFLAGS) -c -o helpers/LibTorrent_Test_Data-progress_listener.o `test -f 'helpers/progress_listener.cc' || echo '$(srcdir)/'`helpers/progress_listener.cc
helpers/LibTorrent_Test_Data-progress_listener.obj: helpers/progress_listener.cc
@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(LibTorrent_Test_Data_CXXFLAGS) $(CXXFLAGS) -MT helpers/LibTorrent_Test_Data-progress_listener.obj -MD -MP -MF helpers/$(DEPDIR)/LibTorrent_Test_Data-progress_listener.Tpo -c -o helpers/LibTorrent_Test_Data-progress_listener.obj `if test -f 'helpers/progress_listener.cc'; then $(CYGPATH_W) 'helpers/progress_listener.cc'; else $(CYGPATH_W) '$(srcdir)/helpers/progress_listener.cc'; fi`
@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) helpers/$(DEPDIR)/LibTorrent_Test_Data-progress_listener.Tpo helpers/$(DEPDIR)/LibTorrent_Test_Data-progress_listener.Po
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='helpers/progress_listener.cc' object='helpers/LibTorrent_Test_Data-progress_listener.obj' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(LibTorrent_Test_Data_CXXFLAGS) $(CXXFLAGS) -c -o helpers/LibTorrent_Test_Data-progress_listener.obj `if test -f 'helpers/progress_listener.cc'; then $(CYGPATH_W) 'helpers/progress_listener.cc'; else $(CYGPATH_W) '$(srcdir)/helpers/progress_listener.cc'; fi`
helpers/LibTorrent_Test_Data-protectors.o: helpers/protectors.cc
@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(LibTorrent_Test_Data_CXXFLAGS) $(CXXFLAGS) -MT helpers/LibTorrent_Test_Data-protectors.o -MD -MP -MF helpers/$(DEPDIR)/LibTorrent_Test_Data-protectors.Tpo -c -o helpers/LibTorrent_Test_Data-protectors.o `test -f 'helpers/protectors.cc' || echo '$(srcdir)/'`helpers/protectors.cc
@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) helpers/$(DEPDIR)/LibTorrent_Test_Data-protectors.Tpo helpers/$(DEPDIR)/LibTorrent_Test_Data-protectors.Po
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='helpers/protectors.cc' object='helpers/LibTorrent_Test_Data-protectors.o' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(LibTorrent_Test_Data_CXXFLAGS) $(CXXFLAGS) -c -o helpers/LibTorrent_Test_Data-protectors.o `test -f 'helpers/protectors.cc' || echo '$(srcdir)/'`helpers/protectors.cc
helpers/LibTorrent_Test_Data-protectors.obj: helpers/protectors.cc
@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(LibTorrent_Test_Data_CXXFLAGS) $(CXXFLAGS) -MT helpers/LibTorrent_Test_Data-protectors.obj -MD -MP -MF helpers/$(DEPDIR)/LibTorrent_Test_Data-protectors.Tpo -c -o helpers/LibTorrent_Test_Data-protectors.obj `if test -f 'helpers/protectors.cc'; then $(CYGPATH_W) 'helpers/protectors.cc'; else $(CYGPATH_W) '$(srcdir)/helpers/protectors.cc'; fi`
@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) helpers/$(DEPDIR)/LibTorrent_Test_Data-protectors.Tpo helpers/$(DEPDIR)/LibTorrent_Test_Data-protectors.Po
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='helpers/protectors.cc' object='helpers/LibTorrent_Test_Data-protectors.obj' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(LibTorrent_Test_Data_CXXFLAGS) $(CXXFLAGS) -c -o helpers/LibTorrent_Test_Data-protectors.obj `if test -f 'helpers/protectors.cc'; then $(CYGPATH_W) 'helpers/protectors.cc'; else $(CYGPATH_W) '$(srcdir)/helpers/protectors.cc'; fi`
helpers/LibTorrent_Test_Data-test_fixture.o: helpers/test_fixture.cc
@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(LibTorrent_Test_Data_CXXFLAGS) $(CXXFLAGS) -MT helpers/LibTorrent_Test_Data-test_fixture.o -MD -MP -MF helpers/$(DEPDIR)/LibTorrent_Test_Data-test_fixture.Tpo -c -o helpers/LibTorrent_Test_Data-test_fixture.o `test -f 'helpers/test_fixture.cc' || echo '$(srcdir)/'`helpers/test_fixture.cc
@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) helpers/$(DEPDIR)/LibTorrent_Test_Data-test_fixture.Tpo helpers/$(DEPDIR)/LibTorrent_Test_Data-test_fixture.Po
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='helpers/test_fixture.cc' object='helpers/LibTorrent_Test_Data-test_fixture.o' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(LibTorrent_Test_Data_CXXFLAGS) $(CXXFLAGS) -c -o helpers/LibTorrent_Test_Data-test_fixture.o `test -f 'helpers/test_fixture.cc' || echo '$(srcdir)/'`helpers/test_fixture.cc
helpers/LibTorrent_Test_Data-test_fixture.obj: helpers/test_fixture.cc
@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(LibTorrent_Test_Data_CXXFLAGS) $(CXXFLAGS) -MT helpers/LibTorrent_Test_Data-test_fixture.obj -MD -MP -MF helpers/$(DEPDIR)/LibTorrent_Test_Data-test_fixture.Tpo -c -o helpers/LibTorrent_Test_Data-test_fixture.obj `if test -f 'helpers/test_fixture.cc'; then $(CYGPATH_W) 'helpers/test_fixture.cc'; else $(CYGPATH_W) '$(srcdir)/helpers/test_fixture.cc'; fi`
@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) helpers/$(DEPDIR)/LibTorrent_Test_Data-test_fixture.Tpo helpers/$(DEPDIR)/LibTorrent_Test_Data-test_fixture.Po
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='helpers/test_fixture.cc' object='helpers/LibTorrent_Test_Data-test_fixture.obj' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(LibTorrent_Test_Data_CXXFLAGS) $(CXXFLAGS) -c -o helpers/LibTorrent_Test_Data-test_fixture.obj `if test -f 'helpers/test_fixture.cc'; then $(CYGPATH_W) 'helpers/test_fixture.cc'; else $(CYGPATH_W) '$(srcdir)/helpers/test_fixture.cc'; fi`
helpers/LibTorrent_Test_Data-test_main_thread.o: helpers/test_main_thread.cc
@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(LibTorrent_Test_Data_CXXFLAGS) $(CXXFLAGS) -MT helpers/LibTorrent_Test_Data-test_main_thread.o -MD -MP -MF helpers/$(DEPDIR)/LibTorrent_Test_Data-test_main_thread.Tpo -c -o helpers/LibTorrent_Test_Data-test_main_thread.o `test -f 'helpers/test_main_thread.cc' || echo '$(srcdir)/'`helpers/test_main_thread.cc
@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) helpers/$(DEPDIR)/LibTorrent_Test_Data-test_main_thread.Tpo helpers/$(DEPDIR)/LibTorrent_Test_Data-test_main_thread.Po
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='helpers/test_main_thread.cc' object='helpers/LibTorrent_Test_Data-test_main_thread.o' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(LibTorrent_Test_Data_CXXFLAGS) $(CXXFLAGS) -c -o helpers/LibTorrent_Test_Data-test_main_thread.o `test -f 'helpers/test_main_thread.cc' || echo '$(srcdir)/'`helpers/test_main_thread.cc
helpers/LibTorrent_Test_Data-test_main_thread.obj: helpers/test_main_thread.cc
@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(LibTorrent_Test_Data_CXXFLAGS) $(CXXFLAGS) -MT helpers/LibTorrent_Test_Data-test_main_thread.obj -MD -MP -MF helpers/$(DEPDIR)/LibTorrent_Test_Data-test_main_thread.Tpo -c -o helpers/LibTorrent_Test_Data-test_main_thread.obj `if test -f 'helpers/test_main_thread.cc'; then $(CYGPATH_W) 'helpers/test_main_thread.cc'; else $(CYGPATH_W) '$(srcdir)/helpers/test_main_thread.cc'; fi`
@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) helpers/$(DEPDIR)/LibTorrent_Test_Data-test_main_thread.Tpo helpers/$(DEPDIR)/LibTorrent_Test_Data-test_main_thread.Po
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='helpers/test_main_thread.cc' object='helpers/LibTorrent_Test_Data-test_main_thread.obj' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(LibTorrent_Test_Data_CXXFLAGS) $(CXXFLAGS) -c -o helpers/LibTorrent_Test_Data-test_main_thread.obj `if test -f 'helpers/test_main_thread.cc'; then $(CYGPATH_W) 'helpers/test_main_thread.cc'; else $(CYGPATH_W) '$(srcdir)/helpers/test_main_thread.cc'; fi`
helpers/LibTorrent_Test_Data-test_thread.o: helpers/test_thread.cc
@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(LibTorrent_Test_Data_CXXFLAGS) $(CXXFLAGS) -MT helpers/LibTorrent_Test_Data-test_thread.o -MD -MP -MF helpers/$(DEPDIR)/LibTorrent_Test_Data-test_thread.Tpo -c -o helpers/LibTorrent_Test_Data-test_thread.o `test -f 'helpers/test_thread.cc' || echo '$(srcdir)/'`helpers/test_thread.cc
@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) helpers/$(DEPDIR)/LibTorrent_Test_Data-test_thread.Tpo helpers/$(DEPDIR)/LibTorrent_Test_Data-test_thread.Po
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='helpers/test_thread.cc' object='helpers/LibTorrent_Test_Data-test_thread.o' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(LibTorrent_Test_Data_CXXFLAGS) $(CXXFLAGS) -c -o helpers/LibTorrent_Test_Data-test_thread.o `test -f 'helpers/test_thread.cc' || echo '$(srcdir)/'`helpers/test_thread.cc
helpers/LibTorrent_Test_Data-test_thread.obj: helpers/test_thread.cc
@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(LibTorrent_Test_Data_CXXFLAGS) $(CXXFLAGS) -MT helpers/LibTorrent_Test_Data-test_thread.obj -MD -MP -MF helpers/$(DEPDIR)/LibTorrent_Test_Data-test_thread.Tpo -c -o helpers/LibTorrent_Test_Data-test_thread.obj `if test -f 'helpers/test_thread.cc'; then $(CYGPATH_W) 'helpers/test_thread.cc'; else $(CYGPATH_W) '$(srcdir)/helpers/test_thread.cc'; fi`
@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) helpers/$(DEPDIR)/LibTorrent_Test_Data-test_thread.Tpo helpers/$(DEPDIR)/LibTorrent_Test_Data-test_thread.Po
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='helpers/test_thread.cc' object='helpers/LibTorrent_Test_Data-test_thread.obj' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(LibTorrent_Test_Data_CXXFLAGS) $(CXXFLAGS) -c -o helpers/LibTorrent_Test_Data-test_thread.obj `if test -f 'helpers/test_thread.cc'; then $(CYGPATH_W) 'helpers/test_thread.cc'; else $(CYGPATH_W) '$(srcdir)/helpers/test_thread.cc'; fi`
helpers/LibTorrent_Test_Data-tracker_test.o: helpers/tracker_test.cc
@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(LibTorrent_Test_Data_CXXFLAGS) $(CXXFLAGS) -MT helpers/LibTorrent_Test_Data-tracker_test.o -MD -MP -MF helpers/$(DEPDIR)/LibTorrent_Test_Data-tracker_test.Tpo -c -o helpers/LibTorrent_Test_Data-tracker_test.o `test -f 'helpers/tracker_test.cc' || echo '$(srcdir)/'`helpers/tracker_test.cc
@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) helpers/$(DEPDIR)/LibTorrent_Test_Data-tracker_test.Tpo helpers/$(DEPDIR)/LibTorrent_Test_Data-tracker_test.Po
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='helpers/tracker_test.cc' object='helpers/LibTorrent_Test_Data-tracker_test.o' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(LibTorrent_Test_Data_CXXFLAGS) $(CXXFLAGS) -c -o helpers/LibTorrent_Test_Data-tracker_test.o `test -f 'helpers/tracker_test.cc' || echo '$(srcdir)/'`helpers/tracker_test.cc
helpers/LibTorrent_Test_Data-tracker_test.obj: helpers/tracker_test.cc
@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(LibTorrent_Test_Data_CXXFLAGS) $(CXXFLAGS) -MT helpers/LibTorrent_Test_Data-tracker_test.obj -MD -MP -MF helpers/$(DEPDIR)/LibTorrent_Test_Data-tracker_test.Tpo -c -o helpers/LibTorrent_Test_Data-tracker_test.obj `if test -f 'helpers/tracker_test.cc'; then $(CYGPATH_W) 'helpers/tracker_test.cc'; else $(CYGPATH_W) '$(srcdir)/helpers/tracker_test.cc'; fi`
@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) helpers/$(DEPDIR)/LibTorrent_Test_Data-tracker_test.Tpo helpers/$(DEPDIR)/LibTorrent_Test_Data-tracker_test.Po
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='helpers/tracker_test.cc' object='helpers/LibTorrent_Test_Data-tracker_test.obj' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(LibTorrent_Test_Data_CXXFLAGS) $(CXXFLAGS) -c -o helpers/LibTorrent_Test_Data-tracker_test.obj `if test -f 'helpers/tracker_test.cc'; then $(CYGPATH_W) 'helpers/tracker_test.cc'; else $(CYGPATH_W) '$(srcdir)/helpers/tracker_test.cc'; fi`
data/LibTorrent_Test_Data-test_chunk_list.o: data/test_chunk_list.cc
@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(LibTorrent_Test_Data_CXXFLAGS) $(CXXFLAGS) -MT data/LibTorrent_Test_Data-test_chunk_list.o -MD -MP -MF data/$(DEPDIR)/LibTorrent_Test_Data-test_chunk_list.Tpo -c -o data/LibTorrent_Test_Data-test_chunk_list.o `test -f 'data/test_chunk_list.cc' || echo '$(srcdir)/'`data/test_chunk_list.cc
@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) data/$(DEPDIR)/LibTorrent_Test_Data-test_chunk_list.Tpo data/$(DEPDIR)/LibTorrent_Test_Data-test_chunk_list.Po
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='data/test_chunk_list.cc' object='data/LibTorrent_Test_Data-test_chunk_list.o' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(LibTorrent_Test_Data_CXXFLAGS) $(CXXFLAGS) -c -o data/LibTorrent_Test_Data-test_chunk_list.o `test -f 'data/test_chunk_list.cc' || echo '$(srcdir)/'`data/test_chunk_list.cc
data/LibTorrent_Test_Data-test_chunk_list.obj: data/test_chunk_list.cc
@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(LibTorrent_Test_Data_CXXFLAGS) $(CXXFLAGS) -MT data/LibTorrent_Test_Data-test_chunk_list.obj -MD -MP -MF data/$(DEPDIR)/LibTorrent_Test_Data-test_chunk_list.Tpo -c -o data/LibTorrent_Test_Data-test_chunk_list.obj `if test -f 'data/test_chunk_list.cc'; then $(CYGPATH_W) 'data/test_chunk_list.cc'; else $(CYGPATH_W) '$(srcdir)/data/test_chunk_list.cc'; fi`
@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) data/$(DEPDIR)/LibTorrent_Test_Data-test_chunk_list.Tpo data/$(DEPDIR)/LibTorrent_Test_Data-test_chunk_list.Po
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='data/test_chunk_list.cc' object='data/LibTorrent_Test_Data-test_chunk_list.obj' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(LibTorrent_Test_Data_CXXFLAGS) $(CXXFLAGS) -c -o data/LibTorrent_Test_Data-test_chunk_list.obj `if test -f 'data/test_chunk_list.cc'; then $(CYGPATH_W) 'data/test_chunk_list.cc'; else $(CYGPATH_W) '$(srcdir)/data/test_chunk_list.cc'; fi`
data/LibTorrent_Test_Data-test_hash_check_queue.o: data/test_hash_check_queue.cc
@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(LibTorrent_Test_Data_CXXFLAGS) $(CXXFLAGS) -MT data/LibTorrent_Test_Data-test_hash_check_queue.o -MD -MP -MF data/$(DEPDIR)/LibTorrent_Test_Data-test_hash_check_queue.Tpo -c -o data/LibTorrent_Test_Data-test_hash_check_queue.o `test -f 'data/test_hash_check_queue.cc' || echo '$(srcdir)/'`data/test_hash_check_queue.cc
@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) data/$(DEPDIR)/LibTorrent_Test_Data-test_hash_check_queue.Tpo data/$(DEPDIR)/LibTorrent_Test_Data-test_hash_check_queue.Po
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='data/test_hash_check_queue.cc' object='data/LibTorrent_Test_Data-test_hash_check_queue.o' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(LibTorrent_Test_Data_CXXFLAGS) $(CXXFLAGS) -c -o data/LibTorrent_Test_Data-test_hash_check_queue.o `test -f 'data/test_hash_check_queue.cc' || echo '$(srcdir)/'`data/test_hash_check_queue.cc
data/LibTorrent_Test_Data-test_hash_check_queue.obj: data/test_hash_check_queue.cc
@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(LibTorrent_Test_Data_CXXFLAGS) $(CXXFLAGS) -MT data/LibTorrent_Test_Data-test_hash_check_queue.obj -MD -MP -MF data/$(DEPDIR)/LibTorrent_Test_Data-test_hash_check_queue.Tpo -c -o data/LibTorrent_Test_Data-test_hash_check_queue.obj `if test -f 'data/test_hash_check_queue.cc'; then $(CYGPATH_W) 'data/test_hash_check_queue.cc'; else $(CYGPATH_W) '$(srcdir)/data/test_hash_check_queue.cc'; fi`
@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) data/$(DEPDIR)/LibTorrent_Test_Data-test_hash_check_queue.Tpo data/$(DEPDIR)/LibTorrent_Test_Data-test_hash_check_queue.Po
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='data/test_hash_check_queue.cc' object='data/LibTorrent_Test_Data-test_hash_check_queue.obj' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(LibTorrent_Test_Data_CXXFLAGS) $(CXXFLAGS) -c -o data/LibTorrent_Test_Data-test_hash_check_queue.obj `if test -f 'data/test_hash_check_queue.cc'; then $(CYGPATH_W) 'data/test_hash_check_queue.cc'; else $(CYGPATH_W) '$(srcdir)/data/test_hash_check_queue.cc'; fi`
data/LibTorrent_Test_Data-test_hash_queue.o: data/test_hash_queue.cc
@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(LibTorrent_Test_Data_CXXFLAGS) $(CXXFLAGS) -MT data/LibTorrent_Test_Data-test_hash_queue.o -MD -MP -MF data/$(DEPDIR)/LibTorrent_Test_Data-test_hash_queue.Tpo -c -o data/LibTorrent_Test_Data-test_hash_queue.o `test -f 'data/test_hash_queue.cc' || echo '$(srcdir)/'`data/test_hash_queue.cc
@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) data/$(DEPDIR)/LibTorrent_Test_Data-test_hash_queue.Tpo data/$(DEPDIR)/LibTorrent_Test_Data-test_hash_queue.Po
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='data/test_hash_queue.cc' object='data/LibTorrent_Test_Data-test_hash_queue.o' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(LibTorrent_Test_Data_CXXFLAGS) $(CXXFLAGS) -c -o data/LibTorrent_Test_Data-test_hash_queue.o `test -f 'data/test_hash_queue.cc' || echo '$(srcdir)/'`data/test_hash_queue.cc
data/LibTorrent_Test_Data-test_hash_queue.obj: data/test_hash_queue.cc
@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(LibTorrent_Test_Data_CXXFLAGS) $(CXXFLAGS) -MT data/LibTorrent_Test_Data-test_hash_queue.obj -MD -MP -MF data/$(DEPDIR)/LibTorrent_Test_Data-test_hash_queue.Tpo -c -o data/LibTorrent_Test_Data-test_hash_queue.obj `if test -f 'data/test_hash_queue.cc'; then $(CYGPATH_W) 'data/test_hash_queue.cc'; else $(CYGPATH_W) '$(srcdir)/data/test_hash_queue.cc'; fi`
@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) data/$(DEPDIR)/LibTorrent_Test_Data-test_hash_queue.Tpo data/$(DEPDIR)/LibTorrent_Test_Data-test_hash_queue.Po
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='data/test_hash_queue.cc' object='data/LibTorrent_Test_Data-test_hash_queue.obj' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(LibTorrent_Test_Data_CXXFLAGS) $(CXXFLAGS) -c -o data/LibTorrent_Test_Data-test_hash_queue.obj `if test -f 'data/test_hash_queue.cc'; then $(CYGPATH_W) 'data/test_hash_queue.cc'; else $(CYGPATH_W) '$(srcdir)/data/test_hash_queue.cc'; fi`
LibTorrent_Test_Net-main.o: main.cc
@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(LibTorrent_Test_Net_CXXFLAGS) $(CXXFLAGS) -MT LibTorrent_Test_Net-main.o -MD -MP -MF $(DEPDIR)/LibTorrent_Test_Net-main.Tpo -c -o LibTorrent_Test_Net-main.o `test -f 'main.cc' || echo '$(srcdir)/'`main.cc
@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/LibTorrent_Test_Net-main.Tpo $(DEPDIR)/LibTorrent_Test_Net-main.Po
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='main.cc' object='LibTorrent_Test_Net-main.o' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(LibTorrent_Test_Net_CXXFLAGS) $(CXXFLAGS) -c -o LibTorrent_Test_Net-main.o `test -f 'main.cc' || echo '$(srcdir)/'`main.cc
LibTorrent_Test_Net-main.obj: main.cc
@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(LibTorrent_Test_Net_CXXFLAGS) $(CXXFLAGS) -MT LibTorrent_Test_Net-main.obj -MD -MP -MF $(DEPDIR)/LibTorrent_Test_Net-main.Tpo -c -o LibTorrent_Test_Net-main.obj `if test -f 'main.cc'; then $(CYGPATH_W) 'main.cc'; else $(CYGPATH_W) '$(srcdir)/main.cc'; fi`
@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/LibTorrent_Test_Net-main.Tpo $(DEPDIR)/LibTorrent_Test_Net-main.Po
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='main.cc' object='LibTorrent_Test_Net-main.obj' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(LibTorrent_Test_Net_CXXFLAGS) $(CXXFLAGS) -c -o LibTorrent_Test_Net-main.obj `if test -f 'main.cc'; then $(CYGPATH_W) 'main.cc'; else $(CYGPATH_W) '$(srcdir)/main.cc'; fi`
helpers/LibTorrent_Test_Net-mock_function.o: helpers/mock_function.cc
@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(LibTorrent_Test_Net_CXXFLAGS) $(CXXFLAGS) -MT helpers/LibTorrent_Test_Net-mock_function.o -MD -MP -MF helpers/$(DEPDIR)/LibTorrent_Test_Net-mock_function.Tpo -c -o helpers/LibTorrent_Test_Net-mock_function.o `test -f 'helpers/mock_function.cc' || echo '$(srcdir)/'`helpers/mock_function.cc
@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) helpers/$(DEPDIR)/LibTorrent_Test_Net-mock_function.Tpo helpers/$(DEPDIR)/LibTorrent_Test_Net-mock_function.Po
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='helpers/mock_function.cc' object='helpers/LibTorrent_Test_Net-mock_function.o' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(LibTorrent_Test_Net_CXXFLAGS) $(CXXFLAGS) -c -o helpers/LibTorrent_Test_Net-mock_function.o `test -f 'helpers/mock_function.cc' || echo '$(srcdir)/'`helpers/mock_function.cc
helpers/LibTorrent_Test_Net-mock_function.obj: helpers/mock_function.cc
@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(LibTorrent_Test_Net_CXXFLAGS) $(CXXFLAGS) -MT helpers/LibTorrent_Test_Net-mock_function.obj -MD -MP -MF helpers/$(DEPDIR)/LibTorrent_Test_Net-mock_function.Tpo -c -o helpers/LibTorrent_Test_Net-mock_function.obj `if test -f 'helpers/mock_function.cc'; then $(CYGPATH_W) 'helpers/mock_function.cc'; else $(CYGPATH_W) '$(srcdir)/helpers/mock_function.cc'; fi`
@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) helpers/$(DEPDIR)/LibTorrent_Test_Net-mock_function.Tpo helpers/$(DEPDIR)/LibTorrent_Test_Net-mock_function.Po
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='helpers/mock_function.cc' object='helpers/LibTorrent_Test_Net-mock_function.obj' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(LibTorrent_Test_Net_CXXFLAGS) $(CXXFLAGS) -c -o helpers/LibTorrent_Test_Net-mock_function.obj `if test -f 'helpers/mock_function.cc'; then $(CYGPATH_W) 'helpers/mock_function.cc'; else $(CYGPATH_W) '$(srcdir)/helpers/mock_function.cc'; fi`
helpers/LibTorrent_Test_Net-network.o: helpers/network.cc
@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(LibTorrent_Test_Net_CXXFLAGS) $(CXXFLAGS) -MT helpers/LibTorrent_Test_Net-network.o -MD -MP -MF helpers/$(DEPDIR)/LibTorrent_Test_Net-network.Tpo -c -o helpers/LibTorrent_Test_Net-network.o `test -f 'helpers/network.cc' || echo '$(srcdir)/'`helpers/network.cc
@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) helpers/$(DEPDIR)/LibTorrent_Test_Net-network.Tpo helpers/$(DEPDIR)/LibTorrent_Test_Net-network.Po
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='helpers/network.cc' object='helpers/LibTorrent_Test_Net-network.o' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(LibTorrent_Test_Net_CXXFLAGS) $(CXXFLAGS) -c -o helpers/LibTorrent_Test_Net-network.o `test -f 'helpers/network.cc' || echo '$(srcdir)/'`helpers/network.cc
helpers/LibTorrent_Test_Net-network.obj: helpers/network.cc
@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(LibTorrent_Test_Net_CXXFLAGS) $(CXXFLAGS) -MT helpers/LibTorrent_Test_Net-network.obj -MD -MP -MF helpers/$(DEPDIR)/LibTorrent_Test_Net-network.Tpo -c -o helpers/LibTorrent_Test_Net-network.obj `if test -f 'helpers/network.cc'; then $(CYGPATH_W) 'helpers/network.cc'; else $(CYGPATH_W) '$(srcdir)/helpers/network.cc'; fi`
@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) helpers/$(DEPDIR)/LibTorrent_Test_Net-network.Tpo helpers/$(DEPDIR)/LibTorrent_Test_Net-network.Po
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='helpers/network.cc' object='helpers/LibTorrent_Test_Net-network.obj' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(LibTorrent_Test_Net_CXXFLAGS) $(CXXFLAGS) -c -o helpers/LibTorrent_Test_Net-network.obj `if test -f 'helpers/network.cc'; then $(CYGPATH_W) 'helpers/network.cc'; else $(CYGPATH_W) '$(srcdir)/helpers/network.cc'; fi`
helpers/LibTorrent_Test_Net-progress_listener.o: helpers/progress_listener.cc
@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(LibTorrent_Test_Net_CXXFLAGS) $(CXXFLAGS) -MT helpers/LibTorrent_Test_Net-progress_listener.o -MD -MP -MF helpers/$(DEPDIR)/LibTorrent_Test_Net-progress_listener.Tpo -c -o helpers/LibTorrent_Test_Net-progress_listener.o `test -f 'helpers/progress_listener.cc' || echo '$(srcdir)/'`helpers/progress_listener.cc
@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) helpers/$(DEPDIR)/LibTorrent_Test_Net-progress_listener.Tpo helpers/$(DEPDIR)/LibTorrent_Test_Net-progress_listener.Po
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='helpers/progress_listener.cc' object='helpers/LibTorrent_Test_Net-progress_listener.o' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(LibTorrent_Test_Net_CXXFLAGS) $(CXXFLAGS) -c -o helpers/LibTorrent_Test_Net-progress_listener.o `test -f 'helpers/progress_listener.cc' || echo '$(srcdir)/'`helpers/progress_listener.cc
helpers/LibTorrent_Test_Net-progress_listener.obj: helpers/progress_listener.cc
@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(LibTorrent_Test_Net_CXXFLAGS) $(CXXFLAGS) -MT helpers/LibTorrent_Test_Net-progress_listener.obj -MD -MP -MF helpers/$(DEPDIR)/LibTorrent_Test_Net-progress_listener.Tpo -c -o helpers/LibTorrent_Test_Net-progress_listener.obj `if test -f 'helpers/progress_listener.cc'; then $(CYGPATH_W) 'helpers/progress_listener.cc'; else $(CYGPATH_W) '$(srcdir)/helpers/progress_listener.cc'; fi`
@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) helpers/$(DEPDIR)/LibTorrent_Test_Net-progress_listener.Tpo helpers/$(DEPDIR)/LibTorrent_Test_Net-progress_listener.Po
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='helpers/progress_listener.cc' object='helpers/LibTorrent_Test_Net-progress_listener.obj' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(LibTorrent_Test_Net_CXXFLAGS) $(CXXFLAGS) -c -o helpers/LibTorrent_Test_Net-progress_listener.obj `if test -f 'helpers/progress_listener.cc'; then $(CYGPATH_W) 'helpers/progress_listener.cc'; else $(CYGPATH_W) '$(srcdir)/helpers/progress_listener.cc'; fi`
helpers/LibTorrent_Test_Net-protectors.o: helpers/protectors.cc
@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(LibTorrent_Test_Net_CXXFLAGS) $(CXXFLAGS) -MT helpers/LibTorrent_Test_Net-protectors.o -MD -MP -MF helpers/$(DEPDIR)/LibTorrent_Test_Net-protectors.Tpo -c -o helpers/LibTorrent_Test_Net-protectors.o `test -f 'helpers/protectors.cc' || echo '$(srcdir)/'`helpers/protectors.cc
@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) helpers/$(DEPDIR)/LibTorrent_Test_Net-protectors.Tpo helpers/$(DEPDIR)/LibTorrent_Test_Net-protectors.Po
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='helpers/protectors.cc' object='helpers/LibTorrent_Test_Net-protectors.o' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(LibTorrent_Test_Net_CXXFLAGS) $(CXXFLAGS) -c -o helpers/LibTorrent_Test_Net-protectors.o `test -f 'helpers/protectors.cc' || echo '$(srcdir)/'`helpers/protectors.cc
helpers/LibTorrent_Test_Net-protectors.obj: helpers/protectors.cc
@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(LibTorrent_Test_Net_CXXFLAGS) $(CXXFLAGS) -MT helpers/LibTorrent_Test_Net-protectors.obj -MD -MP -MF helpers/$(DEPDIR)/LibTorrent_Test_Net-protectors.Tpo -c -o helpers/LibTorrent_Test_Net-protectors.obj `if test -f 'helpers/protectors.cc'; then $(CYGPATH_W) 'helpers/protectors.cc'; else $(CYGPATH_W) '$(srcdir)/helpers/protectors.cc'; fi`
@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) helpers/$(DEPDIR)/LibTorrent_Test_Net-protectors.Tpo helpers/$(DEPDIR)/LibTorrent_Test_Net-protectors.Po
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='helpers/protectors.cc' object='helpers/LibTorrent_Test_Net-protectors.obj' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(LibTorrent_Test_Net_CXXFLAGS) $(CXXFLAGS) -c -o helpers/LibTorrent_Test_Net-protectors.obj `if test -f 'helpers/protectors.cc'; then $(CYGPATH_W) 'helpers/protectors.cc'; else $(CYGPATH_W) '$(srcdir)/helpers/protectors.cc'; fi`
helpers/LibTorrent_Test_Net-test_fixture.o: helpers/test_fixture.cc
@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(LibTorrent_Test_Net_CXXFLAGS) $(CXXFLAGS) -MT helpers/LibTorrent_Test_Net-test_fixture.o -MD -MP -MF helpers/$(DEPDIR)/LibTorrent_Test_Net-test_fixture.Tpo -c -o helpers/LibTorrent_Test_Net-test_fixture.o `test -f 'helpers/test_fixture.cc' || echo '$(srcdir)/'`helpers/test_fixture.cc
@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) helpers/$(DEPDIR)/LibTorrent_Test_Net-test_fixture.Tpo helpers/$(DEPDIR)/LibTorrent_Test_Net-test_fixture.Po
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='helpers/test_fixture.cc' object='helpers/LibTorrent_Test_Net-test_fixture.o' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(LibTorrent_Test_Net_CXXFLAGS) $(CXXFLAGS) -c -o helpers/LibTorrent_Test_Net-test_fixture.o `test -f 'helpers/test_fixture.cc' || echo '$(srcdir)/'`helpers/test_fixture.cc
helpers/LibTorrent_Test_Net-test_fixture.obj: helpers/test_fixture.cc
@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(LibTorrent_Test_Net_CXXFLAGS) $(CXXFLAGS) -MT helpers/LibTorrent_Test_Net-test_fixture.obj -MD -MP -MF helpers/$(DEPDIR)/LibTorrent_Test_Net-test_fixture.Tpo -c -o helpers/LibTorrent_Test_Net-test_fixture.obj `if test -f 'helpers/test_fixture.cc'; then $(CYGPATH_W) 'helpers/test_fixture.cc'; else $(CYGPATH_W) '$(srcdir)/helpers/test_fixture.cc'; fi`
@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) helpers/$(DEPDIR)/LibTorrent_Test_Net-test_fixture.Tpo helpers/$(DEPDIR)/LibTorrent_Test_Net-test_fixture.Po
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='helpers/test_fixture.cc' object='helpers/LibTorrent_Test_Net-test_fixture.obj' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(LibTorrent_Test_Net_CXXFLAGS) $(CXXFLAGS) -c -o helpers/LibTorrent_Test_Net-test_fixture.obj `if test -f 'helpers/test_fixture.cc'; then $(CYGPATH_W) 'helpers/test_fixture.cc'; else $(CYGPATH_W) '$(srcdir)/helpers/test_fixture.cc'; fi`
helpers/LibTorrent_Test_Net-test_main_thread.o: helpers/test_main_thread.cc
@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(LibTorrent_Test_Net_CXXFLAGS) $(CXXFLAGS) -MT helpers/LibTorrent_Test_Net-test_main_thread.o -MD -MP -MF helpers/$(DEPDIR)/LibTorrent_Test_Net-test_main_thread.Tpo -c -o helpers/LibTorrent_Test_Net-test_main_thread.o `test -f 'helpers/test_main_thread.cc' || echo '$(srcdir)/'`helpers/test_main_thread.cc
@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) helpers/$(DEPDIR)/LibTorrent_Test_Net-test_main_thread.Tpo helpers/$(DEPDIR)/LibTorrent_Test_Net-test_main_thread.Po
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='helpers/test_main_thread.cc' object='helpers/LibTorrent_Test_Net-test_main_thread.o' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(LibTorrent_Test_Net_CXXFLAGS) $(CXXFLAGS) -c -o helpers/LibTorrent_Test_Net-test_main_thread.o `test -f 'helpers/test_main_thread.cc' || echo '$(srcdir)/'`helpers/test_main_thread.cc
helpers/LibTorrent_Test_Net-test_main_thread.obj: helpers/test_main_thread.cc
@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(LibTorrent_Test_Net_CXXFLAGS) $(CXXFLAGS) -MT helpers/LibTorrent_Test_Net-test_main_thread.obj -MD -MP -MF helpers/$(DEPDIR)/LibTorrent_Test_Net-test_main_thread.Tpo -c -o helpers/LibTorrent_Test_Net-test_main_thread.obj `if test -f 'helpers/test_main_thread.cc'; then $(CYGPATH_W) 'helpers/test_main_thread.cc'; else $(CYGPATH_W) '$(srcdir)/helpers/test_main_thread.cc'; fi`
@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) helpers/$(DEPDIR)/LibTorrent_Test_Net-test_main_thread.Tpo helpers/$(DEPDIR)/LibTorrent_Test_Net-test_main_thread.Po
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='helpers/test_main_thread.cc' object='helpers/LibTorrent_Test_Net-test_main_thread.obj' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(LibTorrent_Test_Net_CXXFLAGS) $(CXXFLAGS) -c -o helpers/LibTorrent_Test_Net-test_main_thread.obj `if test -f 'helpers/test_main_thread.cc'; then $(CYGPATH_W) 'helpers/test_main_thread.cc'; else $(CYGPATH_W) '$(srcdir)/helpers/test_main_thread.cc'; fi`
helpers/LibTorrent_Test_Net-test_thread.o: helpers/test_thread.cc
@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(LibTorrent_Test_Net_CXXFLAGS) $(CXXFLAGS) -MT helpers/LibTorrent_Test_Net-test_thread.o -MD -MP -MF helpers/$(DEPDIR)/LibTorrent_Test_Net-test_thread.Tpo -c -o helpers/LibTorrent_Test_Net-test_thread.o `test -f 'helpers/test_thread.cc' || echo '$(srcdir)/'`helpers/test_thread.cc
@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) helpers/$(DEPDIR)/LibTorrent_Test_Net-test_thread.Tpo helpers/$(DEPDIR)/LibTorrent_Test_Net-test_thread.Po
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='helpers/test_thread.cc' object='helpers/LibTorrent_Test_Net-test_thread.o' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(LibTorrent_Test_Net_CXXFLAGS) $(CXXFLAGS) -c -o helpers/LibTorrent_Test_Net-test_thread.o `test -f 'helpers/test_thread.cc' || echo '$(srcdir)/'`helpers/test_thread.cc
helpers/LibTorrent_Test_Net-test_thread.obj: helpers/test_thread.cc
@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(LibTorrent_Test_Net_CXXFLAGS) $(CXXFLAGS) -MT helpers/LibTorrent_Test_Net-test_thread.obj -MD -MP -MF helpers/$(DEPDIR)/LibTorrent_Test_Net-test_thread.Tpo -c -o helpers/LibTorrent_Test_Net-test_thread.obj `if test -f 'helpers/test_thread.cc'; then $(CYGPATH_W) 'helpers/test_thread.cc'; else $(CYGPATH_W) '$(srcdir)/helpers/test_thread.cc'; fi`
@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) helpers/$(DEPDIR)/LibTorrent_Test_Net-test_thread.Tpo helpers/$(DEPDIR)/LibTorrent_Test_Net-test_thread.Po
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='helpers/test_thread.cc' object='helpers/LibTorrent_Test_Net-test_thread.obj' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(LibTorrent_Test_Net_CXXFLAGS) $(CXXFLAGS) -c -o helpers/LibTorrent_Test_Net-test_thread.obj `if test -f 'helpers/test_thread.cc'; then $(CYGPATH_W) 'helpers/test_thread.cc'; else $(CYGPATH_W) '$(srcdir)/helpers/test_thread.cc'; fi`
helpers/LibTorrent_Test_Net-tracker_test.o: helpers/tracker_test.cc
@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(LibTorrent_Test_Net_CXXFLAGS) $(CXXFLAGS) -MT helpers/LibTorrent_Test_Net-tracker_test.o -MD -MP -MF helpers/$(DEPDIR)/LibTorrent_Test_Net-tracker_test.Tpo -c -o helpers/LibTorrent_Test_Net-tracker_test.o `test -f 'helpers/tracker_test.cc' || echo '$(srcdir)/'`helpers/tracker_test.cc
@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) helpers/$(DEPDIR)/LibTorrent_Test_Net-tracker_test.Tpo helpers/$(DEPDIR)/LibTorrent_Test_Net-tracker_test.Po
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='helpers/tracker_test.cc' object='helpers/LibTorrent_Test_Net-tracker_test.o' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(LibTorrent_Test_Net_CXXFLAGS) $(CXXFLAGS) -c -o helpers/LibTorrent_Test_Net-tracker_test.o `test -f 'helpers/tracker_test.cc' || echo '$(srcdir)/'`helpers/tracker_test.cc
helpers/LibTorrent_Test_Net-tracker_test.obj: helpers/tracker_test.cc
@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(LibTorrent_Test_Net_CXXFLAGS) $(CXXFLAGS) -MT helpers/LibTorrent_Test_Net-tracker_test.obj -MD -MP -MF helpers/$(DEPDIR)/LibTorrent_Test_Net-tracker_test.Tpo -c -o helpers/LibTorrent_Test_Net-tracker_test.obj `if test -f 'helpers/tracker_test.cc'; then $(CYGPATH_W) 'helpers/tracker_test.cc'; else $(CYGPATH_W) '$(srcdir)/helpers/tracker_test.cc'; fi`
@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) helpers/$(DEPDIR)/LibTorrent_Test_Net-tracker_test.Tpo helpers/$(DEPDIR)/LibTorrent_Test_Net-tracker_test.Po
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='helpers/tracker_test.cc' object='helpers/LibTorrent_Test_Net-tracker_test.obj' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(LibTorrent_Test_Net_CXXFLAGS) $(CXXFLAGS) -c -o helpers/LibTorrent_Test_Net-tracker_test.obj `if test -f 'helpers/tracker_test.cc'; then $(CYGPATH_W) 'helpers/tracker_test.cc'; else $(CYGPATH_W) '$(srcdir)/helpers/tracker_test.cc'; fi`
net/LibTorrent_Test_Net-test_socket_listen.o: net/test_socket_listen.cc
@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(LibTorrent_Test_Net_CXXFLAGS) $(CXXFLAGS) -MT net/LibTorrent_Test_Net-test_socket_listen.o -MD -MP -MF net/$(DEPDIR)/LibTorrent_Test_Net-test_socket_listen.Tpo -c -o net/LibTorrent_Test_Net-test_socket_listen.o `test -f 'net/test_socket_listen.cc' || echo '$(srcdir)/'`net/test_socket_listen.cc
@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) net/$(DEPDIR)/LibTorrent_Test_Net-test_socket_listen.Tpo net/$(DEPDIR)/LibTorrent_Test_Net-test_socket_listen.Po
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='net/test_socket_listen.cc' object='net/LibTorrent_Test_Net-test_socket_listen.o' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(LibTorrent_Test_Net_CXXFLAGS) $(CXXFLAGS) -c -o net/LibTorrent_Test_Net-test_socket_listen.o `test -f 'net/test_socket_listen.cc' || echo '$(srcdir)/'`net/test_socket_listen.cc
net/LibTorrent_Test_Net-test_socket_listen.obj: net/test_socket_listen.cc
@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(LibTorrent_Test_Net_CXXFLAGS) $(CXXFLAGS) -MT net/LibTorrent_Test_Net-test_socket_listen.obj -MD -MP -MF net/$(DEPDIR)/LibTorrent_Test_Net-test_socket_listen.Tpo -c -o net/LibTorrent_Test_Net-test_socket_listen.obj `if test -f 'net/test_socket_listen.cc'; then $(CYGPATH_W) 'net/test_socket_listen.cc'; else $(CYGPATH_W) '$(srcdir)/net/test_socket_listen.cc'; fi`
@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) net/$(DEPDIR)/LibTorrent_Test_Net-test_socket_listen.Tpo net/$(DEPDIR)/LibTorrent_Test_Net-test_socket_listen.Po
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='net/test_socket_listen.cc' object='net/LibTorrent_Test_Net-test_socket_listen.obj' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(LibTorrent_Test_Net_CXXFLAGS) $(CXXFLAGS) -c -o net/LibTorrent_Test_Net-test_socket_listen.obj `if test -f 'net/test_socket_listen.cc'; then $(CYGPATH_W) 'net/test_socket_listen.cc'; else $(CYGPATH_W) '$(srcdir)/net/test_socket_listen.cc'; fi`
LibTorrent_Test_Torrent-main.o: main.cc
@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(LibTorrent_Test_Torrent_CXXFLAGS) $(CXXFLAGS) -MT LibTorrent_Test_Torrent-main.o -MD -MP -MF $(DEPDIR)/LibTorrent_Test_Torrent-main.Tpo -c -o LibTorrent_Test_Torrent-main.o `test -f 'main.cc' || echo '$(srcdir)/'`main.cc
@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/LibTorrent_Test_Torrent-main.Tpo $(DEPDIR)/LibTorrent_Test_Torrent-main.Po
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='main.cc' object='LibTorrent_Test_Torrent-main.o' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(LibTorrent_Test_Torrent_CXXFLAGS) $(CXXFLAGS) -c -o LibTorrent_Test_Torrent-main.o `test -f 'main.cc' || echo '$(srcdir)/'`main.cc
LibTorrent_Test_Torrent-main.obj: main.cc
@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(LibTorrent_Test_Torrent_CXXFLAGS) $(CXXFLAGS) -MT LibTorrent_Test_Torrent-main.obj -MD -MP -MF $(DEPDIR)/LibTorrent_Test_Torrent-main.Tpo -c -o LibTorrent_Test_Torrent-main.obj `if test -f 'main.cc'; then $(CYGPATH_W) 'main.cc'; else $(CYGPATH_W) '$(srcdir)/main.cc'; fi`
@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/LibTorrent_Test_Torrent-main.Tpo $(DEPDIR)/LibTorrent_Test_Torrent-main.Po
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='main.cc' object='LibTorrent_Test_Torrent-main.obj' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(LibTorrent_Test_Torrent_CXXFLAGS) $(CXXFLAGS) -c -o LibTorrent_Test_Torrent-main.obj `if test -f 'main.cc'; then $(CYGPATH_W) 'main.cc'; else $(CYGPATH_W) '$(srcdir)/main.cc'; fi`
helpers/LibTorrent_Test_Torrent-mock_function.o: helpers/mock_function.cc
@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(LibTorrent_Test_Torrent_CXXFLAGS) $(CXXFLAGS) -MT helpers/LibTorrent_Test_Torrent-mock_function.o -MD -MP -MF helpers/$(DEPDIR)/LibTorrent_Test_Torrent-mock_function.Tpo -c -o helpers/LibTorrent_Test_Torrent-mock_function.o `test -f 'helpers/mock_function.cc' || echo '$(srcdir)/'`helpers/mock_function.cc
@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) helpers/$(DEPDIR)/LibTorrent_Test_Torrent-mock_function.Tpo helpers/$(DEPDIR)/LibTorrent_Test_Torrent-mock_function.Po
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='helpers/mock_function.cc' object='helpers/LibTorrent_Test_Torrent-mock_function.o' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(LibTorrent_Test_Torrent_CXXFLAGS) $(CXXFLAGS) -c -o helpers/LibTorrent_Test_Torrent-mock_function.o `test -f 'helpers/mock_function.cc' || echo '$(srcdir)/'`helpers/mock_function.cc
helpers/LibTorrent_Test_Torrent-mock_function.obj: helpers/mock_function.cc
@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(LibTorrent_Test_Torrent_CXXFLAGS) $(CXXFLAGS) -MT helpers/LibTorrent_Test_Torrent-mock_function.obj -MD -MP -MF helpers/$(DEPDIR)/LibTorrent_Test_Torrent-mock_function.Tpo -c -o helpers/LibTorrent_Test_Torrent-mock_function.obj `if test -f 'helpers/mock_function.cc'; then $(CYGPATH_W) 'helpers/mock_function.cc'; else $(CYGPATH_W) '$(srcdir)/helpers/mock_function.cc'; fi`
@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) helpers/$(DEPDIR)/LibTorrent_Test_Torrent-mock_function.Tpo helpers/$(DEPDIR)/LibTorrent_Test_Torrent-mock_function.Po
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='helpers/mock_function.cc' object='helpers/LibTorrent_Test_Torrent-mock_function.obj' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(LibTorrent_Test_Torrent_CXXFLAGS) $(CXXFLAGS) -c -o helpers/LibTorrent_Test_Torrent-mock_function.obj `if test -f 'helpers/mock_function.cc'; then $(CYGPATH_W) 'helpers/mock_function.cc'; else $(CYGPATH_W) '$(srcdir)/helpers/mock_function.cc'; fi`
helpers/LibTorrent_Test_Torrent-network.o: helpers/network.cc
@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(LibTorrent_Test_Torrent_CXXFLAGS) $(CXXFLAGS) -MT helpers/LibTorrent_Test_Torrent-network.o -MD -MP -MF helpers/$(DEPDIR)/LibTorrent_Test_Torrent-network.Tpo -c -o helpers/LibTorrent_Test_Torrent-network.o `test -f 'helpers/network.cc' || echo '$(srcdir)/'`helpers/network.cc
@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) helpers/$(DEPDIR)/LibTorrent_Test_Torrent-network.Tpo helpers/$(DEPDIR)/LibTorrent_Test_Torrent-network.Po
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='helpers/network.cc' object='helpers/LibTorrent_Test_Torrent-network.o' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(LibTorrent_Test_Torrent_CXXFLAGS) $(CXXFLAGS) -c -o helpers/LibTorrent_Test_Torrent-network.o `test -f 'helpers/network.cc' || echo '$(srcdir)/'`helpers/network.cc
helpers/LibTorrent_Test_Torrent-network.obj: helpers/network.cc
@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(LibTorrent_Test_Torrent_CXXFLAGS) $(CXXFLAGS) -MT helpers/LibTorrent_Test_Torrent-network.obj -MD -MP -MF helpers/$(DEPDIR)/LibTorrent_Test_Torrent-network.Tpo -c -o helpers/LibTorrent_Test_Torrent-network.obj `if test -f 'helpers/network.cc'; then $(CYGPATH_W) 'helpers/network.cc'; else $(CYGPATH_W) '$(srcdir)/helpers/network.cc'; fi`
@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) helpers/$(DEPDIR)/LibTorrent_Test_Torrent-network.Tpo helpers/$(DEPDIR)/LibTorrent_Test_Torrent-network.Po
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='helpers/network.cc' object='helpers/LibTorrent_Test_Torrent-network.obj' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(LibTorrent_Test_Torrent_CXXFLAGS) $(CXXFLAGS) -c -o helpers/LibTorrent_Test_Torrent-network.obj `if test -f 'helpers/network.cc'; then $(CYGPATH_W) 'helpers/network.cc'; else $(CYGPATH_W) '$(srcdir)/helpers/network.cc'; fi`
helpers/LibTorrent_Test_Torrent-progress_listener.o: helpers/progress_listener.cc
@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(LibTorrent_Test_Torrent_CXXFLAGS) $(CXXFLAGS) -MT helpers/LibTorrent_Test_Torrent-progress_listener.o -MD -MP -MF helpers/$(DEPDIR)/LibTorrent_Test_Torrent-progress_listener.Tpo -c -o helpers/LibTorrent_Test_Torrent-progress_listener.o `test -f 'helpers/progress_listener.cc' || echo '$(srcdir)/'`helpers/progress_listener.cc
@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) helpers/$(DEPDIR)/LibTorrent_Test_Torrent-progress_listener.Tpo helpers/$(DEPDIR)/LibTorrent_Test_Torrent-progress_listener.Po
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='helpers/progress_listener.cc' object='helpers/LibTorrent_Test_Torrent-progress_listener.o' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(LibTorrent_Test_Torrent_CXXFLAGS) $(CXXFLAGS) -c -o helpers/LibTorrent_Test_Torrent-progress_listener.o `test -f 'helpers/progress_listener.cc' || echo '$(srcdir)/'`helpers/progress_listener.cc
helpers/LibTorrent_Test_Torrent-progress_listener.obj: helpers/progress_listener.cc
@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(LibTorrent_Test_Torrent_CXXFLAGS) $(CXXFLAGS) -MT helpers/LibTorrent_Test_Torrent-progress_listener.obj -MD -MP -MF helpers/$(DEPDIR)/LibTorrent_Test_Torrent-progress_listener.Tpo -c -o helpers/LibTorrent_Test_Torrent-progress_listener.obj `if test -f 'helpers/progress_listener.cc'; then $(CYGPATH_W) 'helpers/progress_listener.cc'; else $(CYGPATH_W) '$(srcdir)/helpers/progress_listener.cc'; fi`
@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) helpers/$(DEPDIR)/LibTorrent_Test_Torrent-progress_listener.Tpo helpers/$(DEPDIR)/LibTorrent_Test_Torrent-progress_listener.Po
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='helpers/progress_listener.cc' object='helpers/LibTorrent_Test_Torrent-progress_listener.obj' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(LibTorrent_Test_Torrent_CXXFLAGS) $(CXXFLAGS) -c -o helpers/LibTorrent_Test_Torrent-progress_listener.obj `if test -f 'helpers/progress_listener.cc'; then $(CYGPATH_W) 'helpers/progress_listener.cc'; else $(CYGPATH_W) '$(srcdir)/helpers/progress_listener.cc'; fi`
helpers/LibTorrent_Test_Torrent-protectors.o: helpers/protectors.cc
@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(LibTorrent_Test_Torrent_CXXFLAGS) $(CXXFLAGS) -MT helpers/LibTorrent_Test_Torrent-protectors.o -MD -MP -MF helpers/$(DEPDIR)/LibTorrent_Test_Torrent-protectors.Tpo -c -o helpers/LibTorrent_Test_Torrent-protectors.o `test -f 'helpers/protectors.cc' || echo '$(srcdir)/'`helpers/protectors.cc
@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) helpers/$(DEPDIR)/LibTorrent_Test_Torrent-protectors.Tpo helpers/$(DEPDIR)/LibTorrent_Test_Torrent-protectors.Po
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='helpers/protectors.cc' object='helpers/LibTorrent_Test_Torrent-protectors.o' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(LibTorrent_Test_Torrent_CXXFLAGS) $(CXXFLAGS) -c -o helpers/LibTorrent_Test_Torrent-protectors.o `test -f 'helpers/protectors.cc' || echo '$(srcdir)/'`helpers/protectors.cc
helpers/LibTorrent_Test_Torrent-protectors.obj: helpers/protectors.cc
@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(LibTorrent_Test_Torrent_CXXFLAGS) $(CXXFLAGS) -MT helpers/LibTorrent_Test_Torrent-protectors.obj -MD -MP -MF helpers/$(DEPDIR)/LibTorrent_Test_Torrent-protectors.Tpo -c -o helpers/LibTorrent_Test_Torrent-protectors.obj `if test -f 'helpers/protectors.cc'; then $(CYGPATH_W) 'helpers/protectors.cc'; else $(CYGPATH_W) '$(srcdir)/helpers/protectors.cc'; fi`
@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) helpers/$(DEPDIR)/LibTorrent_Test_Torrent-protectors.Tpo helpers/$(DEPDIR)/LibTorrent_Test_Torrent-protectors.Po
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='helpers/protectors.cc' object='helpers/LibTorrent_Test_Torrent-protectors.obj' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(LibTorrent_Test_Torrent_CXXFLAGS) $(CXXFLAGS) -c -o helpers/LibTorrent_Test_Torrent-protectors.obj `if test -f 'helpers/protectors.cc'; then $(CYGPATH_W) 'helpers/protectors.cc'; else $(CYGPATH_W) '$(srcdir)/helpers/protectors.cc'; fi`
helpers/LibTorrent_Test_Torrent-test_fixture.o: helpers/test_fixture.cc
@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(LibTorrent_Test_Torrent_CXXFLAGS) $(CXXFLAGS) -MT helpers/LibTorrent_Test_Torrent-test_fixture.o -MD -MP -MF helpers/$(DEPDIR)/LibTorrent_Test_Torrent-test_fixture.Tpo -c -o helpers/LibTorrent_Test_Torrent-test_fixture.o `test -f 'helpers/test_fixture.cc' || echo '$(srcdir)/'`helpers/test_fixture.cc
@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) helpers/$(DEPDIR)/LibTorrent_Test_Torrent-test_fixture.Tpo helpers/$(DEPDIR)/LibTorrent_Test_Torrent-test_fixture.Po
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='helpers/test_fixture.cc' object='helpers/LibTorrent_Test_Torrent-test_fixture.o' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(LibTorrent_Test_Torrent_CXXFLAGS) $(CXXFLAGS) -c -o helpers/LibTorrent_Test_Torrent-test_fixture.o `test -f 'helpers/test_fixture.cc' || echo '$(srcdir)/'`helpers/test_fixture.cc
helpers/LibTorrent_Test_Torrent-test_fixture.obj: helpers/test_fixture.cc
@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(LibTorrent_Test_Torrent_CXXFLAGS) $(CXXFLAGS) -MT helpers/LibTorrent_Test_Torrent-test_fixture.obj -MD -MP -MF helpers/$(DEPDIR)/LibTorrent_Test_Torrent-test_fixture.Tpo -c -o helpers/LibTorrent_Test_Torrent-test_fixture.obj `if test -f 'helpers/test_fixture.cc'; then $(CYGPATH_W) 'helpers/test_fixture.cc'; else $(CYGPATH_W) '$(srcdir)/helpers/test_fixture.cc'; fi`
@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) helpers/$(DEPDIR)/LibTorrent_Test_Torrent-test_fixture.Tpo helpers/$(DEPDIR)/LibTorrent_Test_Torrent-test_fixture.Po
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='helpers/test_fixture.cc' object='helpers/LibTorrent_Test_Torrent-test_fixture.obj' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(LibTorrent_Test_Torrent_CXXFLAGS) $(CXXFLAGS) -c -o helpers/LibTorrent_Test_Torrent-test_fixture.obj `if test -f 'helpers/test_fixture.cc'; then $(CYGPATH_W) 'helpers/test_fixture.cc'; else $(CYGPATH_W) '$(srcdir)/helpers/test_fixture.cc'; fi`
helpers/LibTorrent_Test_Torrent-test_main_thread.o: helpers/test_main_thread.cc
@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(LibTorrent_Test_Torrent_CXXFLAGS) $(CXXFLAGS) -MT helpers/LibTorrent_Test_Torrent-test_main_thread.o -MD -MP -MF helpers/$(DEPDIR)/LibTorrent_Test_Torrent-test_main_thread.Tpo -c -o helpers/LibTorrent_Test_Torrent-test_main_thread.o `test -f 'helpers/test_main_thread.cc' || echo '$(srcdir)/'`helpers/test_main_thread.cc
@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) helpers/$(DEPDIR)/LibTorrent_Test_Torrent-test_main_thread.Tpo helpers/$(DEPDIR)/LibTorrent_Test_Torrent-test_main_thread.Po
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='helpers/test_main_thread.cc' object='helpers/LibTorrent_Test_Torrent-test_main_thread.o' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(LibTorrent_Test_Torrent_CXXFLAGS) $(CXXFLAGS) -c -o helpers/LibTorrent_Test_Torrent-test_main_thread.o `test -f 'helpers/test_main_thread.cc' || echo '$(srcdir)/'`helpers/test_main_thread.cc
helpers/LibTorrent_Test_Torrent-test_main_thread.obj: helpers/test_main_thread.cc
@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(LibTorrent_Test_Torrent_CXXFLAGS) $(CXXFLAGS) -MT helpers/LibTorrent_Test_Torrent-test_main_thread.obj -MD -MP -MF helpers/$(DEPDIR)/LibTorrent_Test_Torrent-test_main_thread.Tpo -c -o helpers/LibTorrent_Test_Torrent-test_main_thread.obj `if test -f 'helpers/test_main_thread.cc'; then $(CYGPATH_W) 'helpers/test_main_thread.cc'; else $(CYGPATH_W) '$(srcdir)/helpers/test_main_thread.cc'; fi`
@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) helpers/$(DEPDIR)/LibTorrent_Test_Torrent-test_main_thread.Tpo helpers/$(DEPDIR)/LibTorrent_Test_Torrent-test_main_thread.Po
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='helpers/test_main_thread.cc' object='helpers/LibTorrent_Test_Torrent-test_main_thread.obj' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(LibTorrent_Test_Torrent_CXXFLAGS) $(CXXFLAGS) -c -o helpers/LibTorrent_Test_Torrent-test_main_thread.obj `if test -f 'helpers/test_main_thread.cc'; then $(CYGPATH_W) 'helpers/test_main_thread.cc'; else $(CYGPATH_W) '$(srcdir)/helpers/test_main_thread.cc'; fi`
helpers/LibTorrent_Test_Torrent-test_thread.o: helpers/test_thread.cc
@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(LibTorrent_Test_Torrent_CXXFLAGS) $(CXXFLAGS) -MT helpers/LibTorrent_Test_Torrent-test_thread.o -MD -MP -MF helpers/$(DEPDIR)/LibTorrent_Test_Torrent-test_thread.Tpo -c -o helpers/LibTorrent_Test_Torrent-test_thread.o `test -f 'helpers/test_thread.cc' || echo '$(srcdir)/'`helpers/test_thread.cc
@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) helpers/$(DEPDIR)/LibTorrent_Test_Torrent-test_thread.Tpo helpers/$(DEPDIR)/LibTorrent_Test_Torrent-test_thread.Po
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='helpers/test_thread.cc' object='helpers/LibTorrent_Test_Torrent-test_thread.o' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(LibTorrent_Test_Torrent_CXXFLAGS) $(CXXFLAGS) -c -o helpers/LibTorrent_Test_Torrent-test_thread.o `test -f 'helpers/test_thread.cc' || echo '$(srcdir)/'`helpers/test_thread.cc
helpers/LibTorrent_Test_Torrent-test_thread.obj: helpers/test_thread.cc
@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(LibTorrent_Test_Torrent_CXXFLAGS) $(CXXFLAGS) -MT helpers/LibTorrent_Test_Torrent-test_thread.obj -MD -MP -MF helpers/$(DEPDIR)/LibTorrent_Test_Torrent-test_thread.Tpo -c -o helpers/LibTorrent_Test_Torrent-test_thread.obj `if test -f 'helpers/test_thread.cc'; then $(CYGPATH_W) 'helpers/test_thread.cc'; else $(CYGPATH_W) '$(srcdir)/helpers/test_thread.cc'; fi`
@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) helpers/$(DEPDIR)/LibTorrent_Test_Torrent-test_thread.Tpo helpers/$(DEPDIR)/LibTorrent_Test_Torrent-test_thread.Po
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='helpers/test_thread.cc' object='helpers/LibTorrent_Test_Torrent-test_thread.obj' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(LibTorrent_Test_Torrent_CXXFLAGS) $(CXXFLAGS) -c -o helpers/LibTorrent_Test_Torrent-test_thread.obj `if test -f 'helpers/test_thread.cc'; then $(CYGPATH_W) 'helpers/test_thread.cc'; else $(CYGPATH_W) '$(srcdir)/helpers/test_thread.cc'; fi`
helpers/LibTorrent_Test_Torrent-tracker_test.o: helpers/tracker_test.cc
@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(LibTorrent_Test_Torrent_CXXFLAGS) $(CXXFLAGS) -MT helpers/LibTorrent_Test_Torrent-tracker_test.o -MD -MP -MF helpers/$(DEPDIR)/LibTorrent_Test_Torrent-tracker_test.Tpo -c -o helpers/LibTorrent_Test_Torrent-tracker_test.o `test -f 'helpers/tracker_test.cc' || echo '$(srcdir)/'`helpers/tracker_test.cc
@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) helpers/$(DEPDIR)/LibTorrent_Test_Torrent-tracker_test.Tpo helpers/$(DEPDIR)/LibTorrent_Test_Torrent-tracker_test.Po
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='helpers/tracker_test.cc' object='helpers/LibTorrent_Test_Torrent-tracker_test.o' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(LibTorrent_Test_Torrent_CXXFLAGS) $(CXXFLAGS) -c -o helpers/LibTorrent_Test_Torrent-tracker_test.o `test -f 'helpers/tracker_test.cc' || echo '$(srcdir)/'`helpers/tracker_test.cc
helpers/LibTorrent_Test_Torrent-tracker_test.obj: helpers/tracker_test.cc
@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(LibTorrent_Test_Torrent_CXXFLAGS) $(CXXFLAGS) -MT helpers/LibTorrent_Test_Torrent-tracker_test.obj -MD -MP -MF helpers/$(DEPDIR)/LibTorrent_Test_Torrent-tracker_test.Tpo -c -o helpers/LibTorrent_Test_Torrent-tracker_test.obj `if test -f 'helpers/tracker_test.cc'; then $(CYGPATH_W) 'helpers/tracker_test.cc'; else $(CYGPATH_W) '$(srcdir)/helpers/tracker_test.cc'; fi`
@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) helpers/$(DEPDIR)/LibTorrent_Test_Torrent-tracker_test.Tpo helpers/$(DEPDIR)/LibTorrent_Test_Torrent-tracker_test.Po
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='helpers/tracker_test.cc' object='helpers/LibTorrent_Test_Torrent-tracker_test.obj' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(LibTorrent_Test_Torrent_CXXFLAGS) $(CXXFLAGS) -c -o helpers/LibTorrent_Test_Torrent-tracker_test.obj `if test -f 'helpers/tracker_test.cc'; then $(CYGPATH_W) 'helpers/tracker_test.cc'; else $(CYGPATH_W) '$(srcdir)/helpers/tracker_test.cc'; fi`
torrent/LibTorrent_Test_Torrent-test_http.o: torrent/test_http.cc
@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(LibTorrent_Test_Torrent_CXXFLAGS) $(CXXFLAGS) -MT torrent/LibTorrent_Test_Torrent-test_http.o -MD -MP -MF torrent/$(DEPDIR)/LibTorrent_Test_Torrent-test_http.Tpo -c -o torrent/LibTorrent_Test_Torrent-test_http.o `test -f 'torrent/test_http.cc' || echo '$(srcdir)/'`torrent/test_http.cc
@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) torrent/$(DEPDIR)/LibTorrent_Test_Torrent-test_http.Tpo torrent/$(DEPDIR)/LibTorrent_Test_Torrent-test_http.Po
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='torrent/test_http.cc' object='torrent/LibTorrent_Test_Torrent-test_http.o' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(LibTorrent_Test_Torrent_CXXFLAGS) $(CXXFLAGS) -c -o torrent/LibTorrent_Test_Torrent-test_http.o `test -f 'torrent/test_http.cc' || echo '$(srcdir)/'`torrent/test_http.cc
torrent/LibTorrent_Test_Torrent-test_http.obj: torrent/test_http.cc
@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(LibTorrent_Test_Torrent_CXXFLAGS) $(CXXFLAGS) -MT torrent/LibTorrent_Test_Torrent-test_http.obj -MD -MP -MF torrent/$(DEPDIR)/LibTorrent_Test_Torrent-test_http.Tpo -c -o torrent/LibTorrent_Test_Torrent-test_http.obj `if test -f 'torrent/test_http.cc'; then $(CYGPATH_W) 'torrent/test_http.cc'; else $(CYGPATH_W) '$(srcdir)/torrent/test_http.cc'; fi`
@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) torrent/$(DEPDIR)/LibTorrent_Test_Torrent-test_http.Tpo torrent/$(DEPDIR)/LibTorrent_Test_Torrent-test_http.Po
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='torrent/test_http.cc' object='torrent/LibTorrent_Test_Torrent-test_http.obj' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(LibTorrent_Test_Torrent_CXXFLAGS) $(CXXFLAGS) -c -o torrent/LibTorrent_Test_Torrent-test_http.obj `if test -f 'torrent/test_http.cc'; then $(CYGPATH_W) 'torrent/test_http.cc'; else $(CYGPATH_W) '$(srcdir)/torrent/test_http.cc'; fi`
torrent/LibTorrent_Test_Torrent-object_test.o: torrent/object_test.cc
@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(LibTorrent_Test_Torrent_CXXFLAGS) $(CXXFLAGS) -MT torrent/LibTorrent_Test_Torrent-object_test.o -MD -MP -MF torrent/$(DEPDIR)/LibTorrent_Test_Torrent-object_test.Tpo -c -o torrent/LibTorrent_Test_Torrent-object_test.o `test -f 'torrent/object_test.cc' || echo '$(srcdir)/'`torrent/object_test.cc
@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) torrent/$(DEPDIR)/LibTorrent_Test_Torrent-object_test.Tpo torrent/$(DEPDIR)/LibTorrent_Test_Torrent-object_test.Po
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='torrent/object_test.cc' object='torrent/LibTorrent_Test_Torrent-object_test.o' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(LibTorrent_Test_Torrent_CXXFLAGS) $(CXXFLAGS) -c -o torrent/LibTorrent_Test_Torrent-object_test.o `test -f 'torrent/object_test.cc' || echo '$(srcdir)/'`torrent/object_test.cc
torrent/LibTorrent_Test_Torrent-object_test.obj: torrent/object_test.cc
@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(LibTorrent_Test_Torrent_CXXFLAGS) $(CXXFLAGS) -MT torrent/LibTorrent_Test_Torrent-object_test.obj -MD -MP -MF torrent/$(DEPDIR)/LibTorrent_Test_Torrent-object_test.Tpo -c -o torrent/LibTorrent_Test_Torrent-object_test.obj `if test -f 'torrent/object_test.cc'; then $(CYGPATH_W) 'torrent/object_test.cc'; else $(CYGPATH_W) '$(srcdir)/torrent/object_test.cc'; fi`
@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) torrent/$(DEPDIR)/LibTorrent_Test_Torrent-object_test.Tpo torrent/$(DEPDIR)/LibTorrent_Test_Torrent-object_test.Po
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='torrent/object_test.cc' object='torrent/LibTorrent_Test_Torrent-object_test.obj' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(LibTorrent_Test_Torrent_CXXFLAGS) $(CXXFLAGS) -c -o torrent/LibTorrent_Test_Torrent-object_test.obj `if test -f 'torrent/object_test.cc'; then $(CYGPATH_W) 'torrent/object_test.cc'; else $(CYGPATH_W) '$(srcdir)/torrent/object_test.cc'; fi`
torrent/LibTorrent_Test_Torrent-object_test_utils.o: torrent/object_test_utils.cc
@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(LibTorrent_Test_Torrent_CXXFLAGS) $(CXXFLAGS) -MT torrent/LibTorrent_Test_Torrent-object_test_utils.o -MD -MP -MF torrent/$(DEPDIR)/LibTorrent_Test_Torrent-object_test_utils.Tpo -c -o torrent/LibTorrent_Test_Torrent-object_test_utils.o `test -f 'torrent/object_test_utils.cc' || echo '$(srcdir)/'`torrent/object_test_utils.cc
@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) torrent/$(DEPDIR)/LibTorrent_Test_Torrent-object_test_utils.Tpo torrent/$(DEPDIR)/LibTorrent_Test_Torrent-object_test_utils.Po
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='torrent/object_test_utils.cc' object='torrent/LibTorrent_Test_Torrent-object_test_utils.o' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(LibTorrent_Test_Torrent_CXXFLAGS) $(CXXFLAGS) -c -o torrent/LibTorrent_Test_Torrent-object_test_utils.o `test -f 'torrent/object_test_utils.cc' || echo '$(srcdir)/'`torrent/object_test_utils.cc
torrent/LibTorrent_Test_Torrent-object_test_utils.obj: torrent/object_test_utils.cc
@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(LibTorrent_Test_Torrent_CXXFLAGS) $(CXXFLAGS) -MT torrent/LibTorrent_Test_Torrent-object_test_utils.obj -MD -MP -MF torrent/$(DEPDIR)/LibTorrent_Test_Torrent-object_test_utils.Tpo -c -o torrent/LibTorrent_Test_Torrent-object_test_utils.obj `if test -f 'torrent/object_test_utils.cc'; then $(CYGPATH_W) 'torrent/object_test_utils.cc'; else $(CYGPATH_W) '$(srcdir)/torrent/object_test_utils.cc'; fi`
@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) torrent/$(DEPDIR)/LibTorrent_Test_Torrent-object_test_utils.Tpo torrent/$(DEPDIR)/LibTorrent_Test_Torrent-object_test_utils.Po
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='torrent/object_test_utils.cc' object='torrent/LibTorrent_Test_Torrent-object_test_utils.obj' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(LibTorrent_Test_Torrent_CXXFLAGS) $(CXXFLAGS) -c -o torrent/LibTorrent_Test_Torrent-object_test_utils.obj `if test -f 'torrent/object_test_utils.cc'; then $(CYGPATH_W) 'torrent/object_test_utils.cc'; else $(CYGPATH_W) '$(srcdir)/torrent/object_test_utils.cc'; fi`
torrent/LibTorrent_Test_Torrent-object_static_map_test.o: torrent/object_static_map_test.cc
@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(LibTorrent_Test_Torrent_CXXFLAGS) $(CXXFLAGS) -MT torrent/LibTorrent_Test_Torrent-object_static_map_test.o -MD -MP -MF torrent/$(DEPDIR)/LibTorrent_Test_Torrent-object_static_map_test.Tpo -c -o torrent/LibTorrent_Test_Torrent-object_static_map_test.o `test -f 'torrent/object_static_map_test.cc' || echo '$(srcdir)/'`torrent/object_static_map_test.cc
@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) torrent/$(DEPDIR)/LibTorrent_Test_Torrent-object_static_map_test.Tpo torrent/$(DEPDIR)/LibTorrent_Test_Torrent-object_static_map_test.Po
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='torrent/object_static_map_test.cc' object='torrent/LibTorrent_Test_Torrent-object_static_map_test.o' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(LibTorrent_Test_Torrent_CXXFLAGS) $(CXXFLAGS) -c -o torrent/LibTorrent_Test_Torrent-object_static_map_test.o `test -f 'torrent/object_static_map_test.cc' || echo '$(srcdir)/'`torrent/object_static_map_test.cc
torrent/LibTorrent_Test_Torrent-object_static_map_test.obj: torrent/object_static_map_test.cc
@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(LibTorrent_Test_Torrent_CXXFLAGS) $(CXXFLAGS) -MT torrent/LibTorrent_Test_Torrent-object_static_map_test.obj -MD -MP -MF torrent/$(DEPDIR)/LibTorrent_Test_Torrent-object_static_map_test.Tpo -c -o torrent/LibTorrent_Test_Torrent-object_static_map_test.obj `if test -f 'torrent/object_static_map_test.cc'; then $(CYGPATH_W) 'torrent/object_static_map_test.cc'; else $(CYGPATH_W) '$(srcdir)/torrent/object_static_map_test.cc'; fi`
@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) torrent/$(DEPDIR)/LibTorrent_Test_Torrent-object_static_map_test.Tpo torrent/$(DEPDIR)/LibTorrent_Test_Torrent-object_static_map_test.Po
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='torrent/object_static_map_test.cc' object='torrent/LibTorrent_Test_Torrent-object_static_map_test.obj' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(LibTorrent_Test_Torrent_CXXFLAGS) $(CXXFLAGS) -c -o torrent/LibTorrent_Test_Torrent-object_static_map_test.obj `if test -f 'torrent/object_static_map_test.cc'; then $(CYGPATH_W) 'torrent/object_static_map_test.cc'; else $(CYGPATH_W) '$(srcdir)/torrent/object_static_map_test.cc'; fi`
torrent/LibTorrent_Test_Torrent-object_stream_test.o: torrent/object_stream_test.cc
@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(LibTorrent_Test_Torrent_CXXFLAGS) $(CXXFLAGS) -MT torrent/LibTorrent_Test_Torrent-object_stream_test.o -MD -MP -MF torrent/$(DEPDIR)/LibTorrent_Test_Torrent-object_stream_test.Tpo -c -o torrent/LibTorrent_Test_Torrent-object_stream_test.o `test -f 'torrent/object_stream_test.cc' || echo '$(srcdir)/'`torrent/object_stream_test.cc
@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) torrent/$(DEPDIR)/LibTorrent_Test_Torrent-object_stream_test.Tpo torrent/$(DEPDIR)/LibTorrent_Test_Torrent-object_stream_test.Po
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='torrent/object_stream_test.cc' object='torrent/LibTorrent_Test_Torrent-object_stream_test.o' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(LibTorrent_Test_Torrent_CXXFLAGS) $(CXXFLAGS) -c -o torrent/LibTorrent_Test_Torrent-object_stream_test.o `test -f 'torrent/object_stream_test.cc' || echo '$(srcdir)/'`torrent/object_stream_test.cc
torrent/LibTorrent_Test_Torrent-object_stream_test.obj: torrent/object_stream_test.cc
@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(LibTorrent_Test_Torrent_CXXFLAGS) $(CXXFLAGS) -MT torrent/LibTorrent_Test_Torrent-object_stream_test.obj -MD -MP -MF torrent/$(DEPDIR)/LibTorrent_Test_Torrent-object_stream_test.Tpo -c -o torrent/LibTorrent_Test_Torrent-object_stream_test.obj `if test -f 'torrent/object_stream_test.cc'; then $(CYGPATH_W) 'torrent/object_stream_test.cc'; else $(CYGPATH_W) '$(srcdir)/torrent/object_stream_test.cc'; fi`
@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) torrent/$(DEPDIR)/LibTorrent_Test_Torrent-object_stream_test.Tpo torrent/$(DEPDIR)/LibTorrent_Test_Torrent-object_stream_test.Po
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='torrent/object_stream_test.cc' object='torrent/LibTorrent_Test_Torrent-object_stream_test.obj' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(LibTorrent_Test_Torrent_CXXFLAGS) $(CXXFLAGS) -c -o torrent/LibTorrent_Test_Torrent-object_stream_test.obj `if test -f 'torrent/object_stream_test.cc'; then $(CYGPATH_W) 'torrent/object_stream_test.cc'; else $(CYGPATH_W) '$(srcdir)/torrent/object_stream_test.cc'; fi`
torrent/LibTorrent_Test_Torrent-test_tracker_controller.o: torrent/test_tracker_controller.cc
@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(LibTorrent_Test_Torrent_CXXFLAGS) $(CXXFLAGS) -MT torrent/LibTorrent_Test_Torrent-test_tracker_controller.o -MD -MP -MF torrent/$(DEPDIR)/LibTorrent_Test_Torrent-test_tracker_controller.Tpo -c -o torrent/LibTorrent_Test_Torrent-test_tracker_controller.o `test -f 'torrent/test_tracker_controller.cc' || echo '$(srcdir)/'`torrent/test_tracker_controller.cc
@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) torrent/$(DEPDIR)/LibTorrent_Test_Torrent-test_tracker_controller.Tpo torrent/$(DEPDIR)/LibTorrent_Test_Torrent-test_tracker_controller.Po
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='torrent/test_tracker_controller.cc' object='torrent/LibTorrent_Test_Torrent-test_tracker_controller.o' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(LibTorrent_Test_Torrent_CXXFLAGS) $(CXXFLAGS) -c -o torrent/LibTorrent_Test_Torrent-test_tracker_controller.o `test -f 'torrent/test_tracker_controller.cc' || echo '$(srcdir)/'`torrent/test_tracker_controller.cc
torrent/LibTorrent_Test_Torrent-test_tracker_controller.obj: torrent/test_tracker_controller.cc
@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(LibTorrent_Test_Torrent_CXXFLAGS) $(CXXFLAGS) -MT torrent/LibTorrent_Test_Torrent-test_tracker_controller.obj -MD -MP -MF torrent/$(DEPDIR)/LibTorrent_Test_Torrent-test_tracker_controller.Tpo -c -o torrent/LibTorrent_Test_Torrent-test_tracker_controller.obj `if test -f 'torrent/test_tracker_controller.cc'; then $(CYGPATH_W) 'torrent/test_tracker_controller.cc'; else $(CYGPATH_W) '$(srcdir)/torrent/test_tracker_controller.cc'; fi`
@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) torrent/$(DEPDIR)/LibTorrent_Test_Torrent-test_tracker_controller.Tpo torrent/$(DEPDIR)/LibTorrent_Test_Torrent-test_tracker_controller.Po
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='torrent/test_tracker_controller.cc' object='torrent/LibTorrent_Test_Torrent-test_tracker_controller.obj' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(LibTorrent_Test_Torrent_CXXFLAGS) $(CXXFLAGS) -c -o torrent/LibTorrent_Test_Torrent-test_tracker_controller.obj `if test -f 'torrent/test_tracker_controller.cc'; then $(CYGPATH_W) 'torrent/test_tracker_controller.cc'; else $(CYGPATH_W) '$(srcdir)/torrent/test_tracker_controller.cc'; fi`
torrent/LibTorrent_Test_Torrent-test_tracker_controller_features.o: torrent/test_tracker_controller_features.cc
@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(LibTorrent_Test_Torrent_CXXFLAGS) $(CXXFLAGS) -MT torrent/LibTorrent_Test_Torrent-test_tracker_controller_features.o -MD -MP -MF torrent/$(DEPDIR)/LibTorrent_Test_Torrent-test_tracker_controller_features.Tpo -c -o torrent/LibTorrent_Test_Torrent-test_tracker_controller_features.o `test -f 'torrent/test_tracker_controller_features.cc' || echo '$(srcdir)/'`torrent/test_tracker_controller_features.cc
@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) torrent/$(DEPDIR)/LibTorrent_Test_Torrent-test_tracker_controller_features.Tpo torrent/$(DEPDIR)/LibTorrent_Test_Torrent-test_tracker_controller_features.Po
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='torrent/test_tracker_controller_features.cc' object='torrent/LibTorrent_Test_Torrent-test_tracker_controller_features.o' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(LibTorrent_Test_Torrent_CXXFLAGS) $(CXXFLAGS) -c -o torrent/LibTorrent_Test_Torrent-test_tracker_controller_features.o `test -f 'torrent/test_tracker_controller_features.cc' || echo '$(srcdir)/'`torrent/test_tracker_controller_features.cc
torrent/LibTorrent_Test_Torrent-test_tracker_controller_features.obj: torrent/test_tracker_controller_features.cc
@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(LibTorrent_Test_Torrent_CXXFLAGS) $(CXXFLAGS) -MT torrent/LibTorrent_Test_Torrent-test_tracker_controller_features.obj -MD -MP -MF torrent/$(DEPDIR)/LibTorrent_Test_Torrent-test_tracker_controller_features.Tpo -c -o torrent/LibTorrent_Test_Torrent-test_tracker_controller_features.obj `if test -f 'torrent/test_tracker_controller_features.cc'; then $(CYGPATH_W) 'torrent/test_tracker_controller_features.cc'; else $(CYGPATH_W) '$(srcdir)/torrent/test_tracker_controller_features.cc'; fi`
@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) torrent/$(DEPDIR)/LibTorrent_Test_Torrent-test_tracker_controller_features.Tpo torrent/$(DEPDIR)/LibTorrent_Test_Torrent-test_tracker_controller_features.Po
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='torrent/test_tracker_controller_features.cc' object='torrent/LibTorrent_Test_Torrent-test_tracker_controller_features.obj' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(LibTorrent_Test_Torrent_CXXFLAGS) $(CXXFLAGS) -c -o torrent/LibTorrent_Test_Torrent-test_tracker_controller_features.obj `if test -f 'torrent/test_tracker_controller_features.cc'; then $(CYGPATH_W) 'torrent/test_tracker_controller_features.cc'; else $(CYGPATH_W) '$(srcdir)/torrent/test_tracker_controller_features.cc'; fi`
torrent/LibTorrent_Test_Torrent-test_tracker_controller_requesting.o: torrent/test_tracker_controller_requesting.cc
@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(LibTorrent_Test_Torrent_CXXFLAGS) $(CXXFLAGS) -MT torrent/LibTorrent_Test_Torrent-test_tracker_controller_requesting.o -MD -MP -MF torrent/$(DEPDIR)/LibTorrent_Test_Torrent-test_tracker_controller_requesting.Tpo -c -o torrent/LibTorrent_Test_Torrent-test_tracker_controller_requesting.o `test -f 'torrent/test_tracker_controller_requesting.cc' || echo '$(srcdir)/'`torrent/test_tracker_controller_requesting.cc
@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) torrent/$(DEPDIR)/LibTorrent_Test_Torrent-test_tracker_controller_requesting.Tpo torrent/$(DEPDIR)/LibTorrent_Test_Torrent-test_tracker_controller_requesting.Po
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='torrent/test_tracker_controller_requesting.cc' object='torrent/LibTorrent_Test_Torrent-test_tracker_controller_requesting.o' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(LibTorrent_Test_Torrent_CXXFLAGS) $(CXXFLAGS) -c -o torrent/LibTorrent_Test_Torrent-test_tracker_controller_requesting.o `test -f 'torrent/test_tracker_controller_requesting.cc' || echo '$(srcdir)/'`torrent/test_tracker_controller_requesting.cc
torrent/LibTorrent_Test_Torrent-test_tracker_controller_requesting.obj: torrent/test_tracker_controller_requesting.cc
@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(LibTorrent_Test_Torrent_CXXFLAGS) $(CXXFLAGS) -MT torrent/LibTorrent_Test_Torrent-test_tracker_controller_requesting.obj -MD -MP -MF torrent/$(DEPDIR)/LibTorrent_Test_Torrent-test_tracker_controller_requesting.Tpo -c -o torrent/LibTorrent_Test_Torrent-test_tracker_controller_requesting.obj `if test -f 'torrent/test_tracker_controller_requesting.cc'; then $(CYGPATH_W) 'torrent/test_tracker_controller_requesting.cc'; else $(CYGPATH_W) '$(srcdir)/torrent/test_tracker_controller_requesting.cc'; fi`
@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) torrent/$(DEPDIR)/LibTorrent_Test_Torrent-test_tracker_controller_requesting.Tpo torrent/$(DEPDIR)/LibTorrent_Test_Torrent-test_tracker_controller_requesting.Po
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='torrent/test_tracker_controller_requesting.cc' object='torrent/LibTorrent_Test_Torrent-test_tracker_controller_requesting.obj' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(LibTorrent_Test_Torrent_CXXFLAGS) $(CXXFLAGS) -c -o torrent/LibTorrent_Test_Torrent-test_tracker_controller_requesting.obj `if test -f 'torrent/test_tracker_controller_requesting.cc'; then $(CYGPATH_W) 'torrent/test_tracker_controller_requesting.cc'; else $(CYGPATH_W) '$(srcdir)/torrent/test_tracker_controller_requesting.cc'; fi`
torrent/LibTorrent_Test_Torrent-test_tracker_list.o: torrent/test_tracker_list.cc
@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(LibTorrent_Test_Torrent_CXXFLAGS) $(CXXFLAGS) -MT torrent/LibTorrent_Test_Torrent-test_tracker_list.o -MD -MP -MF torrent/$(DEPDIR)/LibTorrent_Test_Torrent-test_tracker_list.Tpo -c -o torrent/LibTorrent_Test_Torrent-test_tracker_list.o `test -f 'torrent/test_tracker_list.cc' || echo '$(srcdir)/'`torrent/test_tracker_list.cc
@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) torrent/$(DEPDIR)/LibTorrent_Test_Torrent-test_tracker_list.Tpo torrent/$(DEPDIR)/LibTorrent_Test_Torrent-test_tracker_list.Po
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='torrent/test_tracker_list.cc' object='torrent/LibTorrent_Test_Torrent-test_tracker_list.o' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(LibTorrent_Test_Torrent_CXXFLAGS) $(CXXFLAGS) -c -o torrent/LibTorrent_Test_Torrent-test_tracker_list.o `test -f 'torrent/test_tracker_list.cc' || echo '$(srcdir)/'`torrent/test_tracker_list.cc
torrent/LibTorrent_Test_Torrent-test_tracker_list.obj: torrent/test_tracker_list.cc
@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(LibTorrent_Test_Torrent_CXXFLAGS) $(CXXFLAGS) -MT torrent/LibTorrent_Test_Torrent-test_tracker_list.obj -MD -MP -MF torrent/$(DEPDIR)/LibTorrent_Test_Torrent-test_tracker_list.Tpo -c -o torrent/LibTorrent_Test_Torrent-test_tracker_list.obj `if test -f 'torrent/test_tracker_list.cc'; then $(CYGPATH_W) 'torrent/test_tracker_list.cc'; else $(CYGPATH_W) '$(srcdir)/torrent/test_tracker_list.cc'; fi`
@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) torrent/$(DEPDIR)/LibTorrent_Test_Torrent-test_tracker_list.Tpo torrent/$(DEPDIR)/LibTorrent_Test_Torrent-test_tracker_list.Po
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='torrent/test_tracker_list.cc' object='torrent/LibTorrent_Test_Torrent-test_tracker_list.obj' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(LibTorrent_Test_Torrent_CXXFLAGS) $(CXXFLAGS) -c -o torrent/LibTorrent_Test_Torrent-test_tracker_list.obj `if test -f 'torrent/test_tracker_list.cc'; then $(CYGPATH_W) 'torrent/test_tracker_list.cc'; else $(CYGPATH_W) '$(srcdir)/torrent/test_tracker_list.cc'; fi`
torrent/LibTorrent_Test_Torrent-test_tracker_list_features.o: torrent/test_tracker_list_features.cc
@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(LibTorrent_Test_Torrent_CXXFLAGS) $(CXXFLAGS) -MT torrent/LibTorrent_Test_Torrent-test_tracker_list_features.o -MD -MP -MF torrent/$(DEPDIR)/LibTorrent_Test_Torrent-test_tracker_list_features.Tpo -c -o torrent/LibTorrent_Test_Torrent-test_tracker_list_features.o `test -f 'torrent/test_tracker_list_features.cc' || echo '$(srcdir)/'`torrent/test_tracker_list_features.cc
@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) torrent/$(DEPDIR)/LibTorrent_Test_Torrent-test_tracker_list_features.Tpo torrent/$(DEPDIR)/LibTorrent_Test_Torrent-test_tracker_list_features.Po
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='torrent/test_tracker_list_features.cc' object='torrent/LibTorrent_Test_Torrent-test_tracker_list_features.o' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(LibTorrent_Test_Torrent_CXXFLAGS) $(CXXFLAGS) -c -o torrent/LibTorrent_Test_Torrent-test_tracker_list_features.o `test -f 'torrent/test_tracker_list_features.cc' || echo '$(srcdir)/'`torrent/test_tracker_list_features.cc
torrent/LibTorrent_Test_Torrent-test_tracker_list_features.obj: torrent/test_tracker_list_features.cc
@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(LibTorrent_Test_Torrent_CXXFLAGS) $(CXXFLAGS) -MT torrent/LibTorrent_Test_Torrent-test_tracker_list_features.obj -MD -MP -MF torrent/$(DEPDIR)/LibTorrent_Test_Torrent-test_tracker_list_features.Tpo -c -o torrent/LibTorrent_Test_Torrent-test_tracker_list_features.obj `if test -f 'torrent/test_tracker_list_features.cc'; then $(CYGPATH_W) 'torrent/test_tracker_list_features.cc'; else $(CYGPATH_W) '$(srcdir)/torrent/test_tracker_list_features.cc'; fi`
@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) torrent/$(DEPDIR)/LibTorrent_Test_Torrent-test_tracker_list_features.Tpo torrent/$(DEPDIR)/LibTorrent_Test_Torrent-test_tracker_list_features.Po
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='torrent/test_tracker_list_features.cc' object='torrent/LibTorrent_Test_Torrent-test_tracker_list_features.obj' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(LibTorrent_Test_Torrent_CXXFLAGS) $(CXXFLAGS) -c -o torrent/LibTorrent_Test_Torrent-test_tracker_list_features.obj `if test -f 'torrent/test_tracker_list_features.cc'; then $(CYGPATH_W) 'torrent/test_tracker_list_features.cc'; else $(CYGPATH_W) '$(srcdir)/torrent/test_tracker_list_features.cc'; fi`
torrent/LibTorrent_Test_Torrent-test_tracker_timeout.o: torrent/test_tracker_timeout.cc
@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(LibTorrent_Test_Torrent_CXXFLAGS) $(CXXFLAGS) -MT torrent/LibTorrent_Test_Torrent-test_tracker_timeout.o -MD -MP -MF torrent/$(DEPDIR)/LibTorrent_Test_Torrent-test_tracker_timeout.Tpo -c -o torrent/LibTorrent_Test_Torrent-test_tracker_timeout.o `test -f 'torrent/test_tracker_timeout.cc' || echo '$(srcdir)/'`torrent/test_tracker_timeout.cc
@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) torrent/$(DEPDIR)/LibTorrent_Test_Torrent-test_tracker_timeout.Tpo torrent/$(DEPDIR)/LibTorrent_Test_Torrent-test_tracker_timeout.Po
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='torrent/test_tracker_timeout.cc' object='torrent/LibTorrent_Test_Torrent-test_tracker_timeout.o' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(LibTorrent_Test_Torrent_CXXFLAGS) $(CXXFLAGS) -c -o torrent/LibTorrent_Test_Torrent-test_tracker_timeout.o `test -f 'torrent/test_tracker_timeout.cc' || echo '$(srcdir)/'`torrent/test_tracker_timeout.cc
torrent/LibTorrent_Test_Torrent-test_tracker_timeout.obj: torrent/test_tracker_timeout.cc
@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(LibTorrent_Test_Torrent_CXXFLAGS) $(CXXFLAGS) -MT torrent/LibTorrent_Test_Torrent-test_tracker_timeout.obj -MD -MP -MF torrent/$(DEPDIR)/LibTorrent_Test_Torrent-test_tracker_timeout.Tpo -c -o torrent/LibTorrent_Test_Torrent-test_tracker_timeout.obj `if test -f 'torrent/test_tracker_timeout.cc'; then $(CYGPATH_W) 'torrent/test_tracker_timeout.cc'; else $(CYGPATH_W) '$(srcdir)/torrent/test_tracker_timeout.cc'; fi`
@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) torrent/$(DEPDIR)/LibTorrent_Test_Torrent-test_tracker_timeout.Tpo torrent/$(DEPDIR)/LibTorrent_Test_Torrent-test_tracker_timeout.Po
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='torrent/test_tracker_timeout.cc' object='torrent/LibTorrent_Test_Torrent-test_tracker_timeout.obj' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(LibTorrent_Test_Torrent_CXXFLAGS) $(CXXFLAGS) -c -o torrent/LibTorrent_Test_Torrent-test_tracker_timeout.obj `if test -f 'torrent/test_tracker_timeout.cc'; then $(CYGPATH_W) 'torrent/test_tracker_timeout.cc'; else $(CYGPATH_W) '$(srcdir)/torrent/test_tracker_timeout.cc'; fi`
LibTorrent_Test_Torrent_Net-main.o: main.cc
@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(LibTorrent_Test_Torrent_Net_CXXFLAGS) $(CXXFLAGS) -MT LibTorrent_Test_Torrent_Net-main.o -MD -MP -MF $(DEPDIR)/LibTorrent_Test_Torrent_Net-main.Tpo -c -o LibTorrent_Test_Torrent_Net-main.o `test -f 'main.cc' || echo '$(srcdir)/'`main.cc
@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/LibTorrent_Test_Torrent_Net-main.Tpo $(DEPDIR)/LibTorrent_Test_Torrent_Net-main.Po
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='main.cc' object='LibTorrent_Test_Torrent_Net-main.o' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(LibTorrent_Test_Torrent_Net_CXXFLAGS) $(CXXFLAGS) -c -o LibTorrent_Test_Torrent_Net-main.o `test -f 'main.cc' || echo '$(srcdir)/'`main.cc
LibTorrent_Test_Torrent_Net-main.obj: main.cc
@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(LibTorrent_Test_Torrent_Net_CXXFLAGS) $(CXXFLAGS) -MT LibTorrent_Test_Torrent_Net-main.obj -MD -MP -MF $(DEPDIR)/LibTorrent_Test_Torrent_Net-main.Tpo -c -o LibTorrent_Test_Torrent_Net-main.obj `if test -f 'main.cc'; then $(CYGPATH_W) 'main.cc'; else $(CYGPATH_W) '$(srcdir)/main.cc'; fi`
@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/LibTorrent_Test_Torrent_Net-main.Tpo $(DEPDIR)/LibTorrent_Test_Torrent_Net-main.Po
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='main.cc' object='LibTorrent_Test_Torrent_Net-main.obj' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(LibTorrent_Test_Torrent_Net_CXXFLAGS) $(CXXFLAGS) -c -o LibTorrent_Test_Torrent_Net-main.obj `if test -f 'main.cc'; then $(CYGPATH_W) 'main.cc'; else $(CYGPATH_W) '$(srcdir)/main.cc'; fi`
helpers/LibTorrent_Test_Torrent_Net-mock_function.o: helpers/mock_function.cc
@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(LibTorrent_Test_Torrent_Net_CXXFLAGS) $(CXXFLAGS) -MT helpers/LibTorrent_Test_Torrent_Net-mock_function.o -MD -MP -MF helpers/$(DEPDIR)/LibTorrent_Test_Torrent_Net-mock_function.Tpo -c -o helpers/LibTorrent_Test_Torrent_Net-mock_function.o `test -f 'helpers/mock_function.cc' || echo '$(srcdir)/'`helpers/mock_function.cc
@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) helpers/$(DEPDIR)/LibTorrent_Test_Torrent_Net-mock_function.Tpo helpers/$(DEPDIR)/LibTorrent_Test_Torrent_Net-mock_function.Po
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='helpers/mock_function.cc' object='helpers/LibTorrent_Test_Torrent_Net-mock_function.o' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(LibTorrent_Test_Torrent_Net_CXXFLAGS) $(CXXFLAGS) -c -o helpers/LibTorrent_Test_Torrent_Net-mock_function.o `test -f 'helpers/mock_function.cc' || echo '$(srcdir)/'`helpers/mock_function.cc
helpers/LibTorrent_Test_Torrent_Net-mock_function.obj: helpers/mock_function.cc
@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(LibTorrent_Test_Torrent_Net_CXXFLAGS) $(CXXFLAGS) -MT helpers/LibTorrent_Test_Torrent_Net-mock_function.obj -MD -MP -MF helpers/$(DEPDIR)/LibTorrent_Test_Torrent_Net-mock_function.Tpo -c -o helpers/LibTorrent_Test_Torrent_Net-mock_function.obj `if test -f 'helpers/mock_function.cc'; then $(CYGPATH_W) 'helpers/mock_function.cc'; else $(CYGPATH_W) '$(srcdir)/helpers/mock_function.cc'; fi`
@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) helpers/$(DEPDIR)/LibTorrent_Test_Torrent_Net-mock_function.Tpo helpers/$(DEPDIR)/LibTorrent_Test_Torrent_Net-mock_function.Po
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='helpers/mock_function.cc' object='helpers/LibTorrent_Test_Torrent_Net-mock_function.obj' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(LibTorrent_Test_Torrent_Net_CXXFLAGS) $(CXXFLAGS) -c -o helpers/LibTorrent_Test_Torrent_Net-mock_function.obj `if test -f 'helpers/mock_function.cc'; then $(CYGPATH_W) 'helpers/mock_function.cc'; else $(CYGPATH_W) '$(srcdir)/helpers/mock_function.cc'; fi`
helpers/LibTorrent_Test_Torrent_Net-network.o: helpers/network.cc
@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(LibTorrent_Test_Torrent_Net_CXXFLAGS) $(CXXFLAGS) -MT helpers/LibTorrent_Test_Torrent_Net-network.o -MD -MP -MF helpers/$(DEPDIR)/LibTorrent_Test_Torrent_Net-network.Tpo -c -o helpers/LibTorrent_Test_Torrent_Net-network.o `test -f 'helpers/network.cc' || echo '$(srcdir)/'`helpers/network.cc
@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) helpers/$(DEPDIR)/LibTorrent_Test_Torrent_Net-network.Tpo helpers/$(DEPDIR)/LibTorrent_Test_Torrent_Net-network.Po
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='helpers/network.cc' object='helpers/LibTorrent_Test_Torrent_Net-network.o' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(LibTorrent_Test_Torrent_Net_CXXFLAGS) $(CXXFLAGS) -c -o helpers/LibTorrent_Test_Torrent_Net-network.o `test -f 'helpers/network.cc' || echo '$(srcdir)/'`helpers/network.cc
helpers/LibTorrent_Test_Torrent_Net-network.obj: helpers/network.cc
@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(LibTorrent_Test_Torrent_Net_CXXFLAGS) $(CXXFLAGS) -MT helpers/LibTorrent_Test_Torrent_Net-network.obj -MD -MP -MF helpers/$(DEPDIR)/LibTorrent_Test_Torrent_Net-network.Tpo -c -o helpers/LibTorrent_Test_Torrent_Net-network.obj `if test -f 'helpers/network.cc'; then $(CYGPATH_W) 'helpers/network.cc'; else $(CYGPATH_W) '$(srcdir)/helpers/network.cc'; fi`
@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) helpers/$(DEPDIR)/LibTorrent_Test_Torrent_Net-network.Tpo helpers/$(DEPDIR)/LibTorrent_Test_Torrent_Net-network.Po
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='helpers/network.cc' object='helpers/LibTorrent_Test_Torrent_Net-network.obj' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(LibTorrent_Test_Torrent_Net_CXXFLAGS) $(CXXFLAGS) -c -o helpers/LibTorrent_Test_Torrent_Net-network.obj `if test -f 'helpers/network.cc'; then $(CYGPATH_W) 'helpers/network.cc'; else $(CYGPATH_W) '$(srcdir)/helpers/network.cc'; fi`
helpers/LibTorrent_Test_Torrent_Net-progress_listener.o: helpers/progress_listener.cc
@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(LibTorrent_Test_Torrent_Net_CXXFLAGS) $(CXXFLAGS) -MT helpers/LibTorrent_Test_Torrent_Net-progress_listener.o -MD -MP -MF helpers/$(DEPDIR)/LibTorrent_Test_Torrent_Net-progress_listener.Tpo -c -o helpers/LibTorrent_Test_Torrent_Net-progress_listener.o `test -f 'helpers/progress_listener.cc' || echo '$(srcdir)/'`helpers/progress_listener.cc
@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) helpers/$(DEPDIR)/LibTorrent_Test_Torrent_Net-progress_listener.Tpo helpers/$(DEPDIR)/LibTorrent_Test_Torrent_Net-progress_listener.Po
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='helpers/progress_listener.cc' object='helpers/LibTorrent_Test_Torrent_Net-progress_listener.o' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(LibTorrent_Test_Torrent_Net_CXXFLAGS) $(CXXFLAGS) -c -o helpers/LibTorrent_Test_Torrent_Net-progress_listener.o `test -f 'helpers/progress_listener.cc' || echo '$(srcdir)/'`helpers/progress_listener.cc
helpers/LibTorrent_Test_Torrent_Net-progress_listener.obj: helpers/progress_listener.cc
@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(LibTorrent_Test_Torrent_Net_CXXFLAGS) $(CXXFLAGS) -MT helpers/LibTorrent_Test_Torrent_Net-progress_listener.obj -MD -MP -MF helpers/$(DEPDIR)/LibTorrent_Test_Torrent_Net-progress_listener.Tpo -c -o helpers/LibTorrent_Test_Torrent_Net-progress_listener.obj `if test -f 'helpers/progress_listener.cc'; then $(CYGPATH_W) 'helpers/progress_listener.cc'; else $(CYGPATH_W) '$(srcdir)/helpers/progress_listener.cc'; fi`
@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) helpers/$(DEPDIR)/LibTorrent_Test_Torrent_Net-progress_listener.Tpo helpers/$(DEPDIR)/LibTorrent_Test_Torrent_Net-progress_listener.Po
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='helpers/progress_listener.cc' object='helpers/LibTorrent_Test_Torrent_Net-progress_listener.obj' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(LibTorrent_Test_Torrent_Net_CXXFLAGS) $(CXXFLAGS) -c -o helpers/LibTorrent_Test_Torrent_Net-progress_listener.obj `if test -f 'helpers/progress_listener.cc'; then $(CYGPATH_W) 'helpers/progress_listener.cc'; else $(CYGPATH_W) '$(srcdir)/helpers/progress_listener.cc'; fi`
helpers/LibTorrent_Test_Torrent_Net-protectors.o: helpers/protectors.cc
@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(LibTorrent_Test_Torrent_Net_CXXFLAGS) $(CXXFLAGS) -MT helpers/LibTorrent_Test_Torrent_Net-protectors.o -MD -MP -MF helpers/$(DEPDIR)/LibTorrent_Test_Torrent_Net-protectors.Tpo -c -o helpers/LibTorrent_Test_Torrent_Net-protectors.o `test -f 'helpers/protectors.cc' || echo '$(srcdir)/'`helpers/protectors.cc
@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) helpers/$(DEPDIR)/LibTorrent_Test_Torrent_Net-protectors.Tpo helpers/$(DEPDIR)/LibTorrent_Test_Torrent_Net-protectors.Po
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='helpers/protectors.cc' object='helpers/LibTorrent_Test_Torrent_Net-protectors.o' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(LibTorrent_Test_Torrent_Net_CXXFLAGS) $(CXXFLAGS) -c -o helpers/LibTorrent_Test_Torrent_Net-protectors.o `test -f 'helpers/protectors.cc' || echo '$(srcdir)/'`helpers/protectors.cc
helpers/LibTorrent_Test_Torrent_Net-protectors.obj: helpers/protectors.cc
@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(LibTorrent_Test_Torrent_Net_CXXFLAGS) $(CXXFLAGS) -MT helpers/LibTorrent_Test_Torrent_Net-protectors.obj -MD -MP -MF helpers/$(DEPDIR)/LibTorrent_Test_Torrent_Net-protectors.Tpo -c -o helpers/LibTorrent_Test_Torrent_Net-protectors.obj `if test -f 'helpers/protectors.cc'; then $(CYGPATH_W) 'helpers/protectors.cc'; else $(CYGPATH_W) '$(srcdir)/helpers/protectors.cc'; fi`
@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) helpers/$(DEPDIR)/LibTorrent_Test_Torrent_Net-protectors.Tpo helpers/$(DEPDIR)/LibTorrent_Test_Torrent_Net-protectors.Po
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='helpers/protectors.cc' object='helpers/LibTorrent_Test_Torrent_Net-protectors.obj' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(LibTorrent_Test_Torrent_Net_CXXFLAGS) $(CXXFLAGS) -c -o helpers/LibTorrent_Test_Torrent_Net-protectors.obj `if test -f 'helpers/protectors.cc'; then $(CYGPATH_W) 'helpers/protectors.cc'; else $(CYGPATH_W) '$(srcdir)/helpers/protectors.cc'; fi`
helpers/LibTorrent_Test_Torrent_Net-test_fixture.o: helpers/test_fixture.cc
@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(LibTorrent_Test_Torrent_Net_CXXFLAGS) $(CXXFLAGS) -MT helpers/LibTorrent_Test_Torrent_Net-test_fixture.o -MD -MP -MF helpers/$(DEPDIR)/LibTorrent_Test_Torrent_Net-test_fixture.Tpo -c -o helpers/LibTorrent_Test_Torrent_Net-test_fixture.o `test -f 'helpers/test_fixture.cc' || echo '$(srcdir)/'`helpers/test_fixture.cc
@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) helpers/$(DEPDIR)/LibTorrent_Test_Torrent_Net-test_fixture.Tpo helpers/$(DEPDIR)/LibTorrent_Test_Torrent_Net-test_fixture.Po
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='helpers/test_fixture.cc' object='helpers/LibTorrent_Test_Torrent_Net-test_fixture.o' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(LibTorrent_Test_Torrent_Net_CXXFLAGS) $(CXXFLAGS) -c -o helpers/LibTorrent_Test_Torrent_Net-test_fixture.o `test -f 'helpers/test_fixture.cc' || echo '$(srcdir)/'`helpers/test_fixture.cc
helpers/LibTorrent_Test_Torrent_Net-test_fixture.obj: helpers/test_fixture.cc
@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(LibTorrent_Test_Torrent_Net_CXXFLAGS) $(CXXFLAGS) -MT helpers/LibTorrent_Test_Torrent_Net-test_fixture.obj -MD -MP -MF helpers/$(DEPDIR)/LibTorrent_Test_Torrent_Net-test_fixture.Tpo -c -o helpers/LibTorrent_Test_Torrent_Net-test_fixture.obj `if test -f 'helpers/test_fixture.cc'; then $(CYGPATH_W) 'helpers/test_fixture.cc'; else $(CYGPATH_W) '$(srcdir)/helpers/test_fixture.cc'; fi`
@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) helpers/$(DEPDIR)/LibTorrent_Test_Torrent_Net-test_fixture.Tpo helpers/$(DEPDIR)/LibTorrent_Test_Torrent_Net-test_fixture.Po
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='helpers/test_fixture.cc' object='helpers/LibTorrent_Test_Torrent_Net-test_fixture.obj' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(LibTorrent_Test_Torrent_Net_CXXFLAGS) $(CXXFLAGS) -c -o helpers/LibTorrent_Test_Torrent_Net-test_fixture.obj `if test -f 'helpers/test_fixture.cc'; then $(CYGPATH_W) 'helpers/test_fixture.cc'; else $(CYGPATH_W) '$(srcdir)/helpers/test_fixture.cc'; fi`
helpers/LibTorrent_Test_Torrent_Net-test_main_thread.o: helpers/test_main_thread.cc
@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(LibTorrent_Test_Torrent_Net_CXXFLAGS) $(CXXFLAGS) -MT helpers/LibTorrent_Test_Torrent_Net-test_main_thread.o -MD -MP -MF helpers/$(DEPDIR)/LibTorrent_Test_Torrent_Net-test_main_thread.Tpo -c -o helpers/LibTorrent_Test_Torrent_Net-test_main_thread.o `test -f 'helpers/test_main_thread.cc' || echo '$(srcdir)/'`helpers/test_main_thread.cc
@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) helpers/$(DEPDIR)/LibTorrent_Test_Torrent_Net-test_main_thread.Tpo helpers/$(DEPDIR)/LibTorrent_Test_Torrent_Net-test_main_thread.Po
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='helpers/test_main_thread.cc' object='helpers/LibTorrent_Test_Torrent_Net-test_main_thread.o' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(LibTorrent_Test_Torrent_Net_CXXFLAGS) $(CXXFLAGS) -c -o helpers/LibTorrent_Test_Torrent_Net-test_main_thread.o `test -f 'helpers/test_main_thread.cc' || echo '$(srcdir)/'`helpers/test_main_thread.cc
helpers/LibTorrent_Test_Torrent_Net-test_main_thread.obj: helpers/test_main_thread.cc
@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(LibTorrent_Test_Torrent_Net_CXXFLAGS) $(CXXFLAGS) -MT helpers/LibTorrent_Test_Torrent_Net-test_main_thread.obj -MD -MP -MF helpers/$(DEPDIR)/LibTorrent_Test_Torrent_Net-test_main_thread.Tpo -c -o helpers/LibTorrent_Test_Torrent_Net-test_main_thread.obj `if test -f 'helpers/test_main_thread.cc'; then $(CYGPATH_W) 'helpers/test_main_thread.cc'; else $(CYGPATH_W) '$(srcdir)/helpers/test_main_thread.cc'; fi`
@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) helpers/$(DEPDIR)/LibTorrent_Test_Torrent_Net-test_main_thread.Tpo helpers/$(DEPDIR)/LibTorrent_Test_Torrent_Net-test_main_thread.Po
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='helpers/test_main_thread.cc' object='helpers/LibTorrent_Test_Torrent_Net-test_main_thread.obj' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(LibTorrent_Test_Torrent_Net_CXXFLAGS) $(CXXFLAGS) -c -o helpers/LibTorrent_Test_Torrent_Net-test_main_thread.obj `if test -f 'helpers/test_main_thread.cc'; then $(CYGPATH_W) 'helpers/test_main_thread.cc'; else $(CYGPATH_W) '$(srcdir)/helpers/test_main_thread.cc'; fi`
helpers/LibTorrent_Test_Torrent_Net-test_thread.o: helpers/test_thread.cc
@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(LibTorrent_Test_Torrent_Net_CXXFLAGS) $(CXXFLAGS) -MT helpers/LibTorrent_Test_Torrent_Net-test_thread.o -MD -MP -MF helpers/$(DEPDIR)/LibTorrent_Test_Torrent_Net-test_thread.Tpo -c -o helpers/LibTorrent_Test_Torrent_Net-test_thread.o `test -f 'helpers/test_thread.cc' || echo '$(srcdir)/'`helpers/test_thread.cc
@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) helpers/$(DEPDIR)/LibTorrent_Test_Torrent_Net-test_thread.Tpo helpers/$(DEPDIR)/LibTorrent_Test_Torrent_Net-test_thread.Po
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='helpers/test_thread.cc' object='helpers/LibTorrent_Test_Torrent_Net-test_thread.o' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(LibTorrent_Test_Torrent_Net_CXXFLAGS) $(CXXFLAGS) -c -o helpers/LibTorrent_Test_Torrent_Net-test_thread.o `test -f 'helpers/test_thread.cc' || echo '$(srcdir)/'`helpers/test_thread.cc
helpers/LibTorrent_Test_Torrent_Net-test_thread.obj: helpers/test_thread.cc
@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(LibTorrent_Test_Torrent_Net_CXXFLAGS) $(CXXFLAGS) -MT helpers/LibTorrent_Test_Torrent_Net-test_thread.obj -MD -MP -MF helpers/$(DEPDIR)/LibTorrent_Test_Torrent_Net-test_thread.Tpo -c -o helpers/LibTorrent_Test_Torrent_Net-test_thread.obj `if test -f 'helpers/test_thread.cc'; then $(CYGPATH_W) 'helpers/test_thread.cc'; else $(CYGPATH_W) '$(srcdir)/helpers/test_thread.cc'; fi`
@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) helpers/$(DEPDIR)/LibTorrent_Test_Torrent_Net-test_thread.Tpo helpers/$(DEPDIR)/LibTorrent_Test_Torrent_Net-test_thread.Po
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='helpers/test_thread.cc' object='helpers/LibTorrent_Test_Torrent_Net-test_thread.obj' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(LibTorrent_Test_Torrent_Net_CXXFLAGS) $(CXXFLAGS) -c -o helpers/LibTorrent_Test_Torrent_Net-test_thread.obj `if test -f 'helpers/test_thread.cc'; then $(CYGPATH_W) 'helpers/test_thread.cc'; else $(CYGPATH_W) '$(srcdir)/helpers/test_thread.cc'; fi`
helpers/LibTorrent_Test_Torrent_Net-tracker_test.o: helpers/tracker_test.cc
@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(LibTorrent_Test_Torrent_Net_CXXFLAGS) $(CXXFLAGS) -MT helpers/LibTorrent_Test_Torrent_Net-tracker_test.o -MD -MP -MF helpers/$(DEPDIR)/LibTorrent_Test_Torrent_Net-tracker_test.Tpo -c -o helpers/LibTorrent_Test_Torrent_Net-tracker_test.o `test -f 'helpers/tracker_test.cc' || echo '$(srcdir)/'`helpers/tracker_test.cc
@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) helpers/$(DEPDIR)/LibTorrent_Test_Torrent_Net-tracker_test.Tpo helpers/$(DEPDIR)/LibTorrent_Test_Torrent_Net-tracker_test.Po
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='helpers/tracker_test.cc' object='helpers/LibTorrent_Test_Torrent_Net-tracker_test.o' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(LibTorrent_Test_Torrent_Net_CXXFLAGS) $(CXXFLAGS) -c -o helpers/LibTorrent_Test_Torrent_Net-tracker_test.o `test -f 'helpers/tracker_test.cc' || echo '$(srcdir)/'`helpers/tracker_test.cc
helpers/LibTorrent_Test_Torrent_Net-tracker_test.obj: helpers/tracker_test.cc
@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(LibTorrent_Test_Torrent_Net_CXXFLAGS) $(CXXFLAGS) -MT helpers/LibTorrent_Test_Torrent_Net-tracker_test.obj -MD -MP -MF helpers/$(DEPDIR)/LibTorrent_Test_Torrent_Net-tracker_test.Tpo -c -o helpers/LibTorrent_Test_Torrent_Net-tracker_test.obj `if test -f 'helpers/tracker_test.cc'; then $(CYGPATH_W) 'helpers/tracker_test.cc'; else $(CYGPATH_W) '$(srcdir)/helpers/tracker_test.cc'; fi`
@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) helpers/$(DEPDIR)/LibTorrent_Test_Torrent_Net-tracker_test.Tpo helpers/$(DEPDIR)/LibTorrent_Test_Torrent_Net-tracker_test.Po
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='helpers/tracker_test.cc' object='helpers/LibTorrent_Test_Torrent_Net-tracker_test.obj' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(LibTorrent_Test_Torrent_Net_CXXFLAGS) $(CXXFLAGS) -c -o helpers/LibTorrent_Test_Torrent_Net-tracker_test.obj `if test -f 'helpers/tracker_test.cc'; then $(CYGPATH_W) 'helpers/tracker_test.cc'; else $(CYGPATH_W) '$(srcdir)/helpers/tracker_test.cc'; fi`
torrent/net/LibTorrent_Test_Torrent_Net-test_address_info.o: torrent/net/test_address_info.cc
@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(LibTorrent_Test_Torrent_Net_CXXFLAGS) $(CXXFLAGS) -MT torrent/net/LibTorrent_Test_Torrent_Net-test_address_info.o -MD -MP -MF torrent/net/$(DEPDIR)/LibTorrent_Test_Torrent_Net-test_address_info.Tpo -c -o torrent/net/LibTorrent_Test_Torrent_Net-test_address_info.o `test -f 'torrent/net/test_address_info.cc' || echo '$(srcdir)/'`torrent/net/test_address_info.cc
@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) torrent/net/$(DEPDIR)/LibTorrent_Test_Torrent_Net-test_address_info.Tpo torrent/net/$(DEPDIR)/LibTorrent_Test_Torrent_Net-test_address_info.Po
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='torrent/net/test_address_info.cc' object='torrent/net/LibTorrent_Test_Torrent_Net-test_address_info.o' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(LibTorrent_Test_Torrent_Net_CXXFLAGS) $(CXXFLAGS) -c -o torrent/net/LibTorrent_Test_Torrent_Net-test_address_info.o `test -f 'torrent/net/test_address_info.cc' || echo '$(srcdir)/'`torrent/net/test_address_info.cc
torrent/net/LibTorrent_Test_Torrent_Net-test_address_info.obj: torrent/net/test_address_info.cc
@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(LibTorrent_Test_Torrent_Net_CXXFLAGS) $(CXXFLAGS) -MT torrent/net/LibTorrent_Test_Torrent_Net-test_address_info.obj -MD -MP -MF torrent/net/$(DEPDIR)/LibTorrent_Test_Torrent_Net-test_address_info.Tpo -c -o torrent/net/LibTorrent_Test_Torrent_Net-test_address_info.obj `if test -f 'torrent/net/test_address_info.cc'; then $(CYGPATH_W) 'torrent/net/test_address_info.cc'; else $(CYGPATH_W) '$(srcdir)/torrent/net/test_address_info.cc'; fi`
@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) torrent/net/$(DEPDIR)/LibTorrent_Test_Torrent_Net-test_address_info.Tpo torrent/net/$(DEPDIR)/LibTorrent_Test_Torrent_Net-test_address_info.Po
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='torrent/net/test_address_info.cc' object='torrent/net/LibTorrent_Test_Torrent_Net-test_address_info.obj' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(LibTorrent_Test_Torrent_Net_CXXFLAGS) $(CXXFLAGS) -c -o torrent/net/LibTorrent_Test_Torrent_Net-test_address_info.obj `if test -f 'torrent/net/test_address_info.cc'; then $(CYGPATH_W) 'torrent/net/test_address_info.cc'; else $(CYGPATH_W) '$(srcdir)/torrent/net/test_address_info.cc'; fi`
torrent/net/LibTorrent_Test_Torrent_Net-test_fd.o: torrent/net/test_fd.cc
@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(LibTorrent_Test_Torrent_Net_CXXFLAGS) $(CXXFLAGS) -MT torrent/net/LibTorrent_Test_Torrent_Net-test_fd.o -MD -MP -MF torrent/net/$(DEPDIR)/LibTorrent_Test_Torrent_Net-test_fd.Tpo -c -o torrent/net/LibTorrent_Test_Torrent_Net-test_fd.o `test -f 'torrent/net/test_fd.cc' || echo '$(srcdir)/'`torrent/net/test_fd.cc
@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) torrent/net/$(DEPDIR)/LibTorrent_Test_Torrent_Net-test_fd.Tpo torrent/net/$(DEPDIR)/LibTorrent_Test_Torrent_Net-test_fd.Po
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='torrent/net/test_fd.cc' object='torrent/net/LibTorrent_Test_Torrent_Net-test_fd.o' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(LibTorrent_Test_Torrent_Net_CXXFLAGS) $(CXXFLAGS) -c -o torrent/net/LibTorrent_Test_Torrent_Net-test_fd.o `test -f 'torrent/net/test_fd.cc' || echo '$(srcdir)/'`torrent/net/test_fd.cc
torrent/net/LibTorrent_Test_Torrent_Net-test_fd.obj: torrent/net/test_fd.cc
@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(LibTorrent_Test_Torrent_Net_CXXFLAGS) $(CXXFLAGS) -MT torrent/net/LibTorrent_Test_Torrent_Net-test_fd.obj -MD -MP -MF torrent/net/$(DEPDIR)/LibTorrent_Test_Torrent_Net-test_fd.Tpo -c -o torrent/net/LibTorrent_Test_Torrent_Net-test_fd.obj `if test -f 'torrent/net/test_fd.cc'; then $(CYGPATH_W) 'torrent/net/test_fd.cc'; else $(CYGPATH_W) '$(srcdir)/torrent/net/test_fd.cc'; fi`
@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) torrent/net/$(DEPDIR)/LibTorrent_Test_Torrent_Net-test_fd.Tpo torrent/net/$(DEPDIR)/LibTorrent_Test_Torrent_Net-test_fd.Po
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='torrent/net/test_fd.cc' object='torrent/net/LibTorrent_Test_Torrent_Net-test_fd.obj' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(LibTorrent_Test_Torrent_Net_CXXFLAGS) $(CXXFLAGS) -c -o torrent/net/LibTorrent_Test_Torrent_Net-test_fd.obj `if test -f 'torrent/net/test_fd.cc'; then $(CYGPATH_W) 'torrent/net/test_fd.cc'; else $(CYGPATH_W) '$(srcdir)/torrent/net/test_fd.cc'; fi`
torrent/net/LibTorrent_Test_Torrent_Net-test_socket_address.o: torrent/net/test_socket_address.cc
@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(LibTorrent_Test_Torrent_Net_CXXFLAGS) $(CXXFLAGS) -MT torrent/net/LibTorrent_Test_Torrent_Net-test_socket_address.o -MD -MP -MF torrent/net/$(DEPDIR)/LibTorrent_Test_Torrent_Net-test_socket_address.Tpo -c -o torrent/net/LibTorrent_Test_Torrent_Net-test_socket_address.o `test -f 'torrent/net/test_socket_address.cc' || echo '$(srcdir)/'`torrent/net/test_socket_address.cc
@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) torrent/net/$(DEPDIR)/LibTorrent_Test_Torrent_Net-test_socket_address.Tpo torrent/net/$(DEPDIR)/LibTorrent_Test_Torrent_Net-test_socket_address.Po
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='torrent/net/test_socket_address.cc' object='torrent/net/LibTorrent_Test_Torrent_Net-test_socket_address.o' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(LibTorrent_Test_Torrent_Net_CXXFLAGS) $(CXXFLAGS) -c -o torrent/net/LibTorrent_Test_Torrent_Net-test_socket_address.o `test -f 'torrent/net/test_socket_address.cc' || echo '$(srcdir)/'`torrent/net/test_socket_address.cc
torrent/net/LibTorrent_Test_Torrent_Net-test_socket_address.obj: torrent/net/test_socket_address.cc
@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(LibTorrent_Test_Torrent_Net_CXXFLAGS) $(CXXFLAGS) -MT torrent/net/LibTorrent_Test_Torrent_Net-test_socket_address.obj -MD -MP -MF torrent/net/$(DEPDIR)/LibTorrent_Test_Torrent_Net-test_socket_address.Tpo -c -o torrent/net/LibTorrent_Test_Torrent_Net-test_socket_address.obj `if test -f 'torrent/net/test_socket_address.cc'; then $(CYGPATH_W) 'torrent/net/test_socket_address.cc'; else $(CYGPATH_W) '$(srcdir)/torrent/net/test_socket_address.cc'; fi`
@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) torrent/net/$(DEPDIR)/LibTorrent_Test_Torrent_Net-test_socket_address.Tpo torrent/net/$(DEPDIR)/LibTorrent_Test_Torrent_Net-test_socket_address.Po
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='torrent/net/test_socket_address.cc' object='torrent/net/LibTorrent_Test_Torrent_Net-test_socket_address.obj' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(LibTorrent_Test_Torrent_Net_CXXFLAGS) $(CXXFLAGS) -c -o torrent/net/LibTorrent_Test_Torrent_Net-test_socket_address.obj `if test -f 'torrent/net/test_socket_address.cc'; then $(CYGPATH_W) 'torrent/net/test_socket_address.cc'; else $(CYGPATH_W) '$(srcdir)/torrent/net/test_socket_address.cc'; fi`
LibTorrent_Test_Torrent_Utils-main.o: main.cc
@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(LibTorrent_Test_Torrent_Utils_CXXFLAGS) $(CXXFLAGS) -MT LibTorrent_Test_Torrent_Utils-main.o -MD -MP -MF $(DEPDIR)/LibTorrent_Test_Torrent_Utils-main.Tpo -c -o LibTorrent_Test_Torrent_Utils-main.o `test -f 'main.cc' || echo '$(srcdir)/'`main.cc
@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/LibTorrent_Test_Torrent_Utils-main.Tpo $(DEPDIR)/LibTorrent_Test_Torrent_Utils-main.Po
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='main.cc' object='LibTorrent_Test_Torrent_Utils-main.o' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(LibTorrent_Test_Torrent_Utils_CXXFLAGS) $(CXXFLAGS) -c -o LibTorrent_Test_Torrent_Utils-main.o `test -f 'main.cc' || echo '$(srcdir)/'`main.cc
LibTorrent_Test_Torrent_Utils-main.obj: main.cc
@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(LibTorrent_Test_Torrent_Utils_CXXFLAGS) $(CXXFLAGS) -MT LibTorrent_Test_Torrent_Utils-main.obj -MD -MP -MF $(DEPDIR)/LibTorrent_Test_Torrent_Utils-main.Tpo -c -o LibTorrent_Test_Torrent_Utils-main.obj `if test -f 'main.cc'; then $(CYGPATH_W) 'main.cc'; else $(CYGPATH_W) '$(srcdir)/main.cc'; fi`
@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/LibTorrent_Test_Torrent_Utils-main.Tpo $(DEPDIR)/LibTorrent_Test_Torrent_Utils-main.Po
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='main.cc' object='LibTorrent_Test_Torrent_Utils-main.obj' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(LibTorrent_Test_Torrent_Utils_CXXFLAGS) $(CXXFLAGS) -c -o LibTorrent_Test_Torrent_Utils-main.obj `if test -f 'main.cc'; then $(CYGPATH_W) 'main.cc'; else $(CYGPATH_W) '$(srcdir)/main.cc'; fi`
helpers/LibTorrent_Test_Torrent_Utils-mock_function.o: helpers/mock_function.cc
@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(LibTorrent_Test_Torrent_Utils_CXXFLAGS) $(CXXFLAGS) -MT helpers/LibTorrent_Test_Torrent_Utils-mock_function.o -MD -MP -MF helpers/$(DEPDIR)/LibTorrent_Test_Torrent_Utils-mock_function.Tpo -c -o helpers/LibTorrent_Test_Torrent_Utils-mock_function.o `test -f 'helpers/mock_function.cc' || echo '$(srcdir)/'`helpers/mock_function.cc
@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) helpers/$(DEPDIR)/LibTorrent_Test_Torrent_Utils-mock_function.Tpo helpers/$(DEPDIR)/LibTorrent_Test_Torrent_Utils-mock_function.Po
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='helpers/mock_function.cc' object='helpers/LibTorrent_Test_Torrent_Utils-mock_function.o' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(LibTorrent_Test_Torrent_Utils_CXXFLAGS) $(CXXFLAGS) -c -o helpers/LibTorrent_Test_Torrent_Utils-mock_function.o `test -f 'helpers/mock_function.cc' || echo '$(srcdir)/'`helpers/mock_function.cc
helpers/LibTorrent_Test_Torrent_Utils-mock_function.obj: helpers/mock_function.cc
@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(LibTorrent_Test_Torrent_Utils_CXXFLAGS) $(CXXFLAGS) -MT helpers/LibTorrent_Test_Torrent_Utils-mock_function.obj -MD -MP -MF helpers/$(DEPDIR)/LibTorrent_Test_Torrent_Utils-mock_function.Tpo -c -o helpers/LibTorrent_Test_Torrent_Utils-mock_function.obj `if test -f 'helpers/mock_function.cc'; then $(CYGPATH_W) 'helpers/mock_function.cc'; else $(CYGPATH_W) '$(srcdir)/helpers/mock_function.cc'; fi`
@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) helpers/$(DEPDIR)/LibTorrent_Test_Torrent_Utils-mock_function.Tpo helpers/$(DEPDIR)/LibTorrent_Test_Torrent_Utils-mock_function.Po
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='helpers/mock_function.cc' object='helpers/LibTorrent_Test_Torrent_Utils-mock_function.obj' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(LibTorrent_Test_Torrent_Utils_CXXFLAGS) $(CXXFLAGS) -c -o helpers/LibTorrent_Test_Torrent_Utils-mock_function.obj `if test -f 'helpers/mock_function.cc'; then $(CYGPATH_W) 'helpers/mock_function.cc'; else $(CYGPATH_W) '$(srcdir)/helpers/mock_function.cc'; fi`
helpers/LibTorrent_Test_Torrent_Utils-network.o: helpers/network.cc
@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(LibTorrent_Test_Torrent_Utils_CXXFLAGS) $(CXXFLAGS) -MT helpers/LibTorrent_Test_Torrent_Utils-network.o -MD -MP -MF helpers/$(DEPDIR)/LibTorrent_Test_Torrent_Utils-network.Tpo -c -o helpers/LibTorrent_Test_Torrent_Utils-network.o `test -f 'helpers/network.cc' || echo '$(srcdir)/'`helpers/network.cc
@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) helpers/$(DEPDIR)/LibTorrent_Test_Torrent_Utils-network.Tpo helpers/$(DEPDIR)/LibTorrent_Test_Torrent_Utils-network.Po
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='helpers/network.cc' object='helpers/LibTorrent_Test_Torrent_Utils-network.o' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(LibTorrent_Test_Torrent_Utils_CXXFLAGS) $(CXXFLAGS) -c -o helpers/LibTorrent_Test_Torrent_Utils-network.o `test -f 'helpers/network.cc' || echo '$(srcdir)/'`helpers/network.cc
helpers/LibTorrent_Test_Torrent_Utils-network.obj: helpers/network.cc
@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(LibTorrent_Test_Torrent_Utils_CXXFLAGS) $(CXXFLAGS) -MT helpers/LibTorrent_Test_Torrent_Utils-network.obj -MD -MP -MF helpers/$(DEPDIR)/LibTorrent_Test_Torrent_Utils-network.Tpo -c -o helpers/LibTorrent_Test_Torrent_Utils-network.obj `if test -f 'helpers/network.cc'; then $(CYGPATH_W) 'helpers/network.cc'; else $(CYGPATH_W) '$(srcdir)/helpers/network.cc'; fi`
@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) helpers/$(DEPDIR)/LibTorrent_Test_Torrent_Utils-network.Tpo helpers/$(DEPDIR)/LibTorrent_Test_Torrent_Utils-network.Po
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='helpers/network.cc' object='helpers/LibTorrent_Test_Torrent_Utils-network.obj' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(LibTorrent_Test_Torrent_Utils_CXXFLAGS) $(CXXFLAGS) -c -o helpers/LibTorrent_Test_Torrent_Utils-network.obj `if test -f 'helpers/network.cc'; then $(CYGPATH_W) 'helpers/network.cc'; else $(CYGPATH_W) '$(srcdir)/helpers/network.cc'; fi`
helpers/LibTorrent_Test_Torrent_Utils-progress_listener.o: helpers/progress_listener.cc
@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(LibTorrent_Test_Torrent_Utils_CXXFLAGS) $(CXXFLAGS) -MT helpers/LibTorrent_Test_Torrent_Utils-progress_listener.o -MD -MP -MF helpers/$(DEPDIR)/LibTorrent_Test_Torrent_Utils-progress_listener.Tpo -c -o helpers/LibTorrent_Test_Torrent_Utils-progress_listener.o `test -f 'helpers/progress_listener.cc' || echo '$(srcdir)/'`helpers/progress_listener.cc
@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) helpers/$(DEPDIR)/LibTorrent_Test_Torrent_Utils-progress_listener.Tpo helpers/$(DEPDIR)/LibTorrent_Test_Torrent_Utils-progress_listener.Po
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='helpers/progress_listener.cc' object='helpers/LibTorrent_Test_Torrent_Utils-progress_listener.o' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(LibTorrent_Test_Torrent_Utils_CXXFLAGS) $(CXXFLAGS) -c -o helpers/LibTorrent_Test_Torrent_Utils-progress_listener.o `test -f 'helpers/progress_listener.cc' || echo '$(srcdir)/'`helpers/progress_listener.cc
helpers/LibTorrent_Test_Torrent_Utils-progress_listener.obj: helpers/progress_listener.cc
@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(LibTorrent_Test_Torrent_Utils_CXXFLAGS) $(CXXFLAGS) -MT helpers/LibTorrent_Test_Torrent_Utils-progress_listener.obj -MD -MP -MF helpers/$(DEPDIR)/LibTorrent_Test_Torrent_Utils-progress_listener.Tpo -c -o helpers/LibTorrent_Test_Torrent_Utils-progress_listener.obj `if test -f 'helpers/progress_listener.cc'; then $(CYGPATH_W) 'helpers/progress_listener.cc'; else $(CYGPATH_W) '$(srcdir)/helpers/progress_listener.cc'; fi`
@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) helpers/$(DEPDIR)/LibTorrent_Test_Torrent_Utils-progress_listener.Tpo helpers/$(DEPDIR)/LibTorrent_Test_Torrent_Utils-progress_listener.Po
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='helpers/progress_listener.cc' object='helpers/LibTorrent_Test_Torrent_Utils-progress_listener.obj' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(LibTorrent_Test_Torrent_Utils_CXXFLAGS) $(CXXFLAGS) -c -o helpers/LibTorrent_Test_Torrent_Utils-progress_listener.obj `if test -f 'helpers/progress_listener.cc'; then $(CYGPATH_W) 'helpers/progress_listener.cc'; else $(CYGPATH_W) '$(srcdir)/helpers/progress_listener.cc'; fi`
helpers/LibTorrent_Test_Torrent_Utils-protectors.o: helpers/protectors.cc
@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(LibTorrent_Test_Torrent_Utils_CXXFLAGS) $(CXXFLAGS) -MT helpers/LibTorrent_Test_Torrent_Utils-protectors.o -MD -MP -MF helpers/$(DEPDIR)/LibTorrent_Test_Torrent_Utils-protectors.Tpo -c -o helpers/LibTorrent_Test_Torrent_Utils-protectors.o `test -f 'helpers/protectors.cc' || echo '$(srcdir)/'`helpers/protectors.cc
@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) helpers/$(DEPDIR)/LibTorrent_Test_Torrent_Utils-protectors.Tpo helpers/$(DEPDIR)/LibTorrent_Test_Torrent_Utils-protectors.Po
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='helpers/protectors.cc' object='helpers/LibTorrent_Test_Torrent_Utils-protectors.o' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(LibTorrent_Test_Torrent_Utils_CXXFLAGS) $(CXXFLAGS) -c -o helpers/LibTorrent_Test_Torrent_Utils-protectors.o `test -f 'helpers/protectors.cc' || echo '$(srcdir)/'`helpers/protectors.cc
helpers/LibTorrent_Test_Torrent_Utils-protectors.obj: helpers/protectors.cc
@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(LibTorrent_Test_Torrent_Utils_CXXFLAGS) $(CXXFLAGS) -MT helpers/LibTorrent_Test_Torrent_Utils-protectors.obj -MD -MP -MF helpers/$(DEPDIR)/LibTorrent_Test_Torrent_Utils-protectors.Tpo -c -o helpers/LibTorrent_Test_Torrent_Utils-protectors.obj `if test -f 'helpers/protectors.cc'; then $(CYGPATH_W) 'helpers/protectors.cc'; else $(CYGPATH_W) '$(srcdir)/helpers/protectors.cc'; fi`
@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) helpers/$(DEPDIR)/LibTorrent_Test_Torrent_Utils-protectors.Tpo helpers/$(DEPDIR)/LibTorrent_Test_Torrent_Utils-protectors.Po
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='helpers/protectors.cc' object='helpers/LibTorrent_Test_Torrent_Utils-protectors.obj' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(LibTorrent_Test_Torrent_Utils_CXXFLAGS) $(CXXFLAGS) -c -o helpers/LibTorrent_Test_Torrent_Utils-protectors.obj `if test -f 'helpers/protectors.cc'; then $(CYGPATH_W) 'helpers/protectors.cc'; else $(CYGPATH_W) '$(srcdir)/helpers/protectors.cc'; fi`
helpers/LibTorrent_Test_Torrent_Utils-test_fixture.o: helpers/test_fixture.cc
@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(LibTorrent_Test_Torrent_Utils_CXXFLAGS) $(CXXFLAGS) -MT helpers/LibTorrent_Test_Torrent_Utils-test_fixture.o -MD -MP -MF helpers/$(DEPDIR)/LibTorrent_Test_Torrent_Utils-test_fixture.Tpo -c -o helpers/LibTorrent_Test_Torrent_Utils-test_fixture.o `test -f 'helpers/test_fixture.cc' || echo '$(srcdir)/'`helpers/test_fixture.cc
@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) helpers/$(DEPDIR)/LibTorrent_Test_Torrent_Utils-test_fixture.Tpo helpers/$(DEPDIR)/LibTorrent_Test_Torrent_Utils-test_fixture.Po
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='helpers/test_fixture.cc' object='helpers/LibTorrent_Test_Torrent_Utils-test_fixture.o' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(LibTorrent_Test_Torrent_Utils_CXXFLAGS) $(CXXFLAGS) -c -o helpers/LibTorrent_Test_Torrent_Utils-test_fixture.o `test -f 'helpers/test_fixture.cc' || echo '$(srcdir)/'`helpers/test_fixture.cc
helpers/LibTorrent_Test_Torrent_Utils-test_fixture.obj: helpers/test_fixture.cc
@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(LibTorrent_Test_Torrent_Utils_CXXFLAGS) $(CXXFLAGS) -MT helpers/LibTorrent_Test_Torrent_Utils-test_fixture.obj -MD -MP -MF helpers/$(DEPDIR)/LibTorrent_Test_Torrent_Utils-test_fixture.Tpo -c -o helpers/LibTorrent_Test_Torrent_Utils-test_fixture.obj `if test -f 'helpers/test_fixture.cc'; then $(CYGPATH_W) 'helpers/test_fixture.cc'; else $(CYGPATH_W) '$(srcdir)/helpers/test_fixture.cc'; fi`
@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) helpers/$(DEPDIR)/LibTorrent_Test_Torrent_Utils-test_fixture.Tpo helpers/$(DEPDIR)/LibTorrent_Test_Torrent_Utils-test_fixture.Po
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='helpers/test_fixture.cc' object='helpers/LibTorrent_Test_Torrent_Utils-test_fixture.obj' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(LibTorrent_Test_Torrent_Utils_CXXFLAGS) $(CXXFLAGS) -c -o helpers/LibTorrent_Test_Torrent_Utils-test_fixture.obj `if test -f 'helpers/test_fixture.cc'; then $(CYGPATH_W) 'helpers/test_fixture.cc'; else $(CYGPATH_W) '$(srcdir)/helpers/test_fixture.cc'; fi`
helpers/LibTorrent_Test_Torrent_Utils-test_main_thread.o: helpers/test_main_thread.cc
@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(LibTorrent_Test_Torrent_Utils_CXXFLAGS) $(CXXFLAGS) -MT helpers/LibTorrent_Test_Torrent_Utils-test_main_thread.o -MD -MP -MF helpers/$(DEPDIR)/LibTorrent_Test_Torrent_Utils-test_main_thread.Tpo -c -o helpers/LibTorrent_Test_Torrent_Utils-test_main_thread.o `test -f 'helpers/test_main_thread.cc' || echo '$(srcdir)/'`helpers/test_main_thread.cc
@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) helpers/$(DEPDIR)/LibTorrent_Test_Torrent_Utils-test_main_thread.Tpo helpers/$(DEPDIR)/LibTorrent_Test_Torrent_Utils-test_main_thread.Po
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='helpers/test_main_thread.cc' object='helpers/LibTorrent_Test_Torrent_Utils-test_main_thread.o' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(LibTorrent_Test_Torrent_Utils_CXXFLAGS) $(CXXFLAGS) -c -o helpers/LibTorrent_Test_Torrent_Utils-test_main_thread.o `test -f 'helpers/test_main_thread.cc' || echo '$(srcdir)/'`helpers/test_main_thread.cc
helpers/LibTorrent_Test_Torrent_Utils-test_main_thread.obj: helpers/test_main_thread.cc
@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(LibTorrent_Test_Torrent_Utils_CXXFLAGS) $(CXXFLAGS) -MT helpers/LibTorrent_Test_Torrent_Utils-test_main_thread.obj -MD -MP -MF helpers/$(DEPDIR)/LibTorrent_Test_Torrent_Utils-test_main_thread.Tpo -c -o helpers/LibTorrent_Test_Torrent_Utils-test_main_thread.obj `if test -f 'helpers/test_main_thread.cc'; then $(CYGPATH_W) 'helpers/test_main_thread.cc'; else $(CYGPATH_W) '$(srcdir)/helpers/test_main_thread.cc'; fi`
@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) helpers/$(DEPDIR)/LibTorrent_Test_Torrent_Utils-test_main_thread.Tpo helpers/$(DEPDIR)/LibTorrent_Test_Torrent_Utils-test_main_thread.Po
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='helpers/test_main_thread.cc' object='helpers/LibTorrent_Test_Torrent_Utils-test_main_thread.obj' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(LibTorrent_Test_Torrent_Utils_CXXFLAGS) $(CXXFLAGS) -c -o helpers/LibTorrent_Test_Torrent_Utils-test_main_thread.obj `if test -f 'helpers/test_main_thread.cc'; then $(CYGPATH_W) 'helpers/test_main_thread.cc'; else $(CYGPATH_W) '$(srcdir)/helpers/test_main_thread.cc'; fi`
helpers/LibTorrent_Test_Torrent_Utils-test_thread.o: helpers/test_thread.cc
@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(LibTorrent_Test_Torrent_Utils_CXXFLAGS) $(CXXFLAGS) -MT helpers/LibTorrent_Test_Torrent_Utils-test_thread.o -MD -MP -MF helpers/$(DEPDIR)/LibTorrent_Test_Torrent_Utils-test_thread.Tpo -c -o helpers/LibTorrent_Test_Torrent_Utils-test_thread.o `test -f 'helpers/test_thread.cc' || echo '$(srcdir)/'`helpers/test_thread.cc
@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) helpers/$(DEPDIR)/LibTorrent_Test_Torrent_Utils-test_thread.Tpo helpers/$(DEPDIR)/LibTorrent_Test_Torrent_Utils-test_thread.Po
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='helpers/test_thread.cc' object='helpers/LibTorrent_Test_Torrent_Utils-test_thread.o' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(LibTorrent_Test_Torrent_Utils_CXXFLAGS) $(CXXFLAGS) -c -o helpers/LibTorrent_Test_Torrent_Utils-test_thread.o `test -f 'helpers/test_thread.cc' || echo '$(srcdir)/'`helpers/test_thread.cc
helpers/LibTorrent_Test_Torrent_Utils-test_thread.obj: helpers/test_thread.cc
@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(LibTorrent_Test_Torrent_Utils_CXXFLAGS) $(CXXFLAGS) -MT helpers/LibTorrent_Test_Torrent_Utils-test_thread.obj -MD -MP -MF helpers/$(DEPDIR)/LibTorrent_Test_Torrent_Utils-test_thread.Tpo -c -o helpers/LibTorrent_Test_Torrent_Utils-test_thread.obj `if test -f 'helpers/test_thread.cc'; then $(CYGPATH_W) 'helpers/test_thread.cc'; else $(CYGPATH_W) '$(srcdir)/helpers/test_thread.cc'; fi`
@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) helpers/$(DEPDIR)/LibTorrent_Test_Torrent_Utils-test_thread.Tpo helpers/$(DEPDIR)/LibTorrent_Test_Torrent_Utils-test_thread.Po
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='helpers/test_thread.cc' object='helpers/LibTorrent_Test_Torrent_Utils-test_thread.obj' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(LibTorrent_Test_Torrent_Utils_CXXFLAGS) $(CXXFLAGS) -c -o helpers/LibTorrent_Test_Torrent_Utils-test_thread.obj `if test -f 'helpers/test_thread.cc'; then $(CYGPATH_W) 'helpers/test_thread.cc'; else $(CYGPATH_W) '$(srcdir)/helpers/test_thread.cc'; fi`
helpers/LibTorrent_Test_Torrent_Utils-tracker_test.o: helpers/tracker_test.cc
@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(LibTorrent_Test_Torrent_Utils_CXXFLAGS) $(CXXFLAGS) -MT helpers/LibTorrent_Test_Torrent_Utils-tracker_test.o -MD -MP -MF helpers/$(DEPDIR)/LibTorrent_Test_Torrent_Utils-tracker_test.Tpo -c -o helpers/LibTorrent_Test_Torrent_Utils-tracker_test.o `test -f 'helpers/tracker_test.cc' || echo '$(srcdir)/'`helpers/tracker_test.cc
@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) helpers/$(DEPDIR)/LibTorrent_Test_Torrent_Utils-tracker_test.Tpo helpers/$(DEPDIR)/LibTorrent_Test_Torrent_Utils-tracker_test.Po
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='helpers/tracker_test.cc' object='helpers/LibTorrent_Test_Torrent_Utils-tracker_test.o' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(LibTorrent_Test_Torrent_Utils_CXXFLAGS) $(CXXFLAGS) -c -o helpers/LibTorrent_Test_Torrent_Utils-tracker_test.o `test -f 'helpers/tracker_test.cc' || echo '$(srcdir)/'`helpers/tracker_test.cc
helpers/LibTorrent_Test_Torrent_Utils-tracker_test.obj: helpers/tracker_test.cc
@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(LibTorrent_Test_Torrent_Utils_CXXFLAGS) $(CXXFLAGS) -MT helpers/LibTorrent_Test_Torrent_Utils-tracker_test.obj -MD -MP -MF helpers/$(DEPDIR)/LibTorrent_Test_Torrent_Utils-tracker_test.Tpo -c -o helpers/LibTorrent_Test_Torrent_Utils-tracker_test.obj `if test -f 'helpers/tracker_test.cc'; then $(CYGPATH_W) 'helpers/tracker_test.cc'; else $(CYGPATH_W) '$(srcdir)/helpers/tracker_test.cc'; fi`
@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) helpers/$(DEPDIR)/LibTorrent_Test_Torrent_Utils-tracker_test.Tpo helpers/$(DEPDIR)/LibTorrent_Test_Torrent_Utils-tracker_test.Po
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='helpers/tracker_test.cc' object='helpers/LibTorrent_Test_Torrent_Utils-tracker_test.obj' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(LibTorrent_Test_Torrent_Utils_CXXFLAGS) $(CXXFLAGS) -c -o helpers/LibTorrent_Test_Torrent_Utils-tracker_test.obj `if test -f 'helpers/tracker_test.cc'; then $(CYGPATH_W) 'helpers/tracker_test.cc'; else $(CYGPATH_W) '$(srcdir)/helpers/tracker_test.cc'; fi`
torrent/utils/LibTorrent_Test_Torrent_Utils-test_extents.o: torrent/utils/test_extents.cc
@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(LibTorrent_Test_Torrent_Utils_CXXFLAGS) $(CXXFLAGS) -MT torrent/utils/LibTorrent_Test_Torrent_Utils-test_extents.o -MD -MP -MF torrent/utils/$(DEPDIR)/LibTorrent_Test_Torrent_Utils-test_extents.Tpo -c -o torrent/utils/LibTorrent_Test_Torrent_Utils-test_extents.o `test -f 'torrent/utils/test_extents.cc' || echo '$(srcdir)/'`torrent/utils/test_extents.cc
@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) torrent/utils/$(DEPDIR)/LibTorrent_Test_Torrent_Utils-test_extents.Tpo torrent/utils/$(DEPDIR)/LibTorrent_Test_Torrent_Utils-test_extents.Po
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='torrent/utils/test_extents.cc' object='torrent/utils/LibTorrent_Test_Torrent_Utils-test_extents.o' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(LibTorrent_Test_Torrent_Utils_CXXFLAGS) $(CXXFLAGS) -c -o torrent/utils/LibTorrent_Test_Torrent_Utils-test_extents.o `test -f 'torrent/utils/test_extents.cc' || echo '$(srcdir)/'`torrent/utils/test_extents.cc
torrent/utils/LibTorrent_Test_Torrent_Utils-test_extents.obj: torrent/utils/test_extents.cc
@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(LibTorrent_Test_Torrent_Utils_CXXFLAGS) $(CXXFLAGS) -MT torrent/utils/LibTorrent_Test_Torrent_Utils-test_extents.obj -MD -MP -MF torrent/utils/$(DEPDIR)/LibTorrent_Test_Torrent_Utils-test_extents.Tpo -c -o torrent/utils/LibTorrent_Test_Torrent_Utils-test_extents.obj `if test -f 'torrent/utils/test_extents.cc'; then $(CYGPATH_W) 'torrent/utils/test_extents.cc'; else $(CYGPATH_W) '$(srcdir)/torrent/utils/test_extents.cc'; fi`
@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) torrent/utils/$(DEPDIR)/LibTorrent_Test_Torrent_Utils-test_extents.Tpo torrent/utils/$(DEPDIR)/LibTorrent_Test_Torrent_Utils-test_extents.Po
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='torrent/utils/test_extents.cc' object='torrent/utils/LibTorrent_Test_Torrent_Utils-test_extents.obj' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(LibTorrent_Test_Torrent_Utils_CXXFLAGS) $(CXXFLAGS) -c -o torrent/utils/LibTorrent_Test_Torrent_Utils-test_extents.obj `if test -f 'torrent/utils/test_extents.cc'; then $(CYGPATH_W) 'torrent/utils/test_extents.cc'; else $(CYGPATH_W) '$(srcdir)/torrent/utils/test_extents.cc'; fi`
torrent/utils/LibTorrent_Test_Torrent_Utils-test_log.o: torrent/utils/test_log.cc
@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(LibTorrent_Test_Torrent_Utils_CXXFLAGS) $(CXXFLAGS) -MT torrent/utils/LibTorrent_Test_Torrent_Utils-test_log.o -MD -MP -MF torrent/utils/$(DEPDIR)/LibTorrent_Test_Torrent_Utils-test_log.Tpo -c -o torrent/utils/LibTorrent_Test_Torrent_Utils-test_log.o `test -f 'torrent/utils/test_log.cc' || echo '$(srcdir)/'`torrent/utils/test_log.cc
@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) torrent/utils/$(DEPDIR)/LibTorrent_Test_Torrent_Utils-test_log.Tpo torrent/utils/$(DEPDIR)/LibTorrent_Test_Torrent_Utils-test_log.Po
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='torrent/utils/test_log.cc' object='torrent/utils/LibTorrent_Test_Torrent_Utils-test_log.o' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(LibTorrent_Test_Torrent_Utils_CXXFLAGS) $(CXXFLAGS) -c -o torrent/utils/LibTorrent_Test_Torrent_Utils-test_log.o `test -f 'torrent/utils/test_log.cc' || echo '$(srcdir)/'`torrent/utils/test_log.cc
torrent/utils/LibTorrent_Test_Torrent_Utils-test_log.obj: torrent/utils/test_log.cc
@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(LibTorrent_Test_Torrent_Utils_CXXFLAGS) $(CXXFLAGS) -MT torrent/utils/LibTorrent_Test_Torrent_Utils-test_log.obj -MD -MP -MF torrent/utils/$(DEPDIR)/LibTorrent_Test_Torrent_Utils-test_log.Tpo -c -o torrent/utils/LibTorrent_Test_Torrent_Utils-test_log.obj `if test -f 'torrent/utils/test_log.cc'; then $(CYGPATH_W) 'torrent/utils/test_log.cc'; else $(CYGPATH_W) '$(srcdir)/torrent/utils/test_log.cc'; fi`
@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) torrent/utils/$(DEPDIR)/LibTorrent_Test_Torrent_Utils-test_log.Tpo torrent/utils/$(DEPDIR)/LibTorrent_Test_Torrent_Utils-test_log.Po
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='torrent/utils/test_log.cc' object='torrent/utils/LibTorrent_Test_Torrent_Utils-test_log.obj' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(LibTorrent_Test_Torrent_Utils_CXXFLAGS) $(CXXFLAGS) -c -o torrent/utils/LibTorrent_Test_Torrent_Utils-test_log.obj `if test -f 'torrent/utils/test_log.cc'; then $(CYGPATH_W) 'torrent/utils/test_log.cc'; else $(CYGPATH_W) '$(srcdir)/torrent/utils/test_log.cc'; fi`
torrent/utils/LibTorrent_Test_Torrent_Utils-test_log_buffer.o: torrent/utils/test_log_buffer.cc
@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(LibTorrent_Test_Torrent_Utils_CXXFLAGS) $(CXXFLAGS) -MT torrent/utils/LibTorrent_Test_Torrent_Utils-test_log_buffer.o -MD -MP -MF torrent/utils/$(DEPDIR)/LibTorrent_Test_Torrent_Utils-test_log_buffer.Tpo -c -o torrent/utils/LibTorrent_Test_Torrent_Utils-test_log_buffer.o `test -f 'torrent/utils/test_log_buffer.cc' || echo '$(srcdir)/'`torrent/utils/test_log_buffer.cc
@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) torrent/utils/$(DEPDIR)/LibTorrent_Test_Torrent_Utils-test_log_buffer.Tpo torrent/utils/$(DEPDIR)/LibTorrent_Test_Torrent_Utils-test_log_buffer.Po
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='torrent/utils/test_log_buffer.cc' object='torrent/utils/LibTorrent_Test_Torrent_Utils-test_log_buffer.o' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(LibTorrent_Test_Torrent_Utils_CXXFLAGS) $(CXXFLAGS) -c -o torrent/utils/LibTorrent_Test_Torrent_Utils-test_log_buffer.o `test -f 'torrent/utils/test_log_buffer.cc' || echo '$(srcdir)/'`torrent/utils/test_log_buffer.cc
torrent/utils/LibTorrent_Test_Torrent_Utils-test_log_buffer.obj: torrent/utils/test_log_buffer.cc
@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(LibTorrent_Test_Torrent_Utils_CXXFLAGS) $(CXXFLAGS) -MT torrent/utils/LibTorrent_Test_Torrent_Utils-test_log_buffer.obj -MD -MP -MF torrent/utils/$(DEPDIR)/LibTorrent_Test_Torrent_Utils-test_log_buffer.Tpo -c -o torrent/utils/LibTorrent_Test_Torrent_Utils-test_log_buffer.obj `if test -f 'torrent/utils/test_log_buffer.cc'; then $(CYGPATH_W) 'torrent/utils/test_log_buffer.cc'; else $(CYGPATH_W) '$(srcdir)/torrent/utils/test_log_buffer.cc'; fi`
@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) torrent/utils/$(DEPDIR)/LibTorrent_Test_Torrent_Utils-test_log_buffer.Tpo torrent/utils/$(DEPDIR)/LibTorrent_Test_Torrent_Utils-test_log_buffer.Po
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='torrent/utils/test_log_buffer.cc' object='torrent/utils/LibTorrent_Test_Torrent_Utils-test_log_buffer.obj' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(LibTorrent_Test_Torrent_Utils_CXXFLAGS) $(CXXFLAGS) -c -o torrent/utils/LibTorrent_Test_Torrent_Utils-test_log_buffer.obj `if test -f 'torrent/utils/test_log_buffer.cc'; then $(CYGPATH_W) 'torrent/utils/test_log_buffer.cc'; else $(CYGPATH_W) '$(srcdir)/torrent/utils/test_log_buffer.cc'; fi`
torrent/utils/LibTorrent_Test_Torrent_Utils-test_option_strings.o: torrent/utils/test_option_strings.cc
@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(LibTorrent_Test_Torrent_Utils_CXXFLAGS) $(CXXFLAGS) -MT torrent/utils/LibTorrent_Test_Torrent_Utils-test_option_strings.o -MD -MP -MF torrent/utils/$(DEPDIR)/LibTorrent_Test_Torrent_Utils-test_option_strings.Tpo -c -o torrent/utils/LibTorrent_Test_Torrent_Utils-test_option_strings.o `test -f 'torrent/utils/test_option_strings.cc' || echo '$(srcdir)/'`torrent/utils/test_option_strings.cc
@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) torrent/utils/$(DEPDIR)/LibTorrent_Test_Torrent_Utils-test_option_strings.Tpo torrent/utils/$(DEPDIR)/LibTorrent_Test_Torrent_Utils-test_option_strings.Po
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='torrent/utils/test_option_strings.cc' object='torrent/utils/LibTorrent_Test_Torrent_Utils-test_option_strings.o' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(LibTorrent_Test_Torrent_Utils_CXXFLAGS) $(CXXFLAGS) -c -o torrent/utils/LibTorrent_Test_Torrent_Utils-test_option_strings.o `test -f 'torrent/utils/test_option_strings.cc' || echo '$(srcdir)/'`torrent/utils/test_option_strings.cc
torrent/utils/LibTorrent_Test_Torrent_Utils-test_option_strings.obj: torrent/utils/test_option_strings.cc
@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(LibTorrent_Test_Torrent_Utils_CXXFLAGS) $(CXXFLAGS) -MT torrent/utils/LibTorrent_Test_Torrent_Utils-test_option_strings.obj -MD -MP -MF torrent/utils/$(DEPDIR)/LibTorrent_Test_Torrent_Utils-test_option_strings.Tpo -c -o torrent/utils/LibTorrent_Test_Torrent_Utils-test_option_strings.obj `if test -f 'torrent/utils/test_option_strings.cc'; then $(CYGPATH_W) 'torrent/utils/test_option_strings.cc'; else $(CYGPATH_W) '$(srcdir)/torrent/utils/test_option_strings.cc'; fi`
@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) torrent/utils/$(DEPDIR)/LibTorrent_Test_Torrent_Utils-test_option_strings.Tpo torrent/utils/$(DEPDIR)/LibTorrent_Test_Torrent_Utils-test_option_strings.Po
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='torrent/utils/test_option_strings.cc' object='torrent/utils/LibTorrent_Test_Torrent_Utils-test_option_strings.obj' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(LibTorrent_Test_Torrent_Utils_CXXFLAGS) $(CXXFLAGS) -c -o torrent/utils/LibTorrent_Test_Torrent_Utils-test_option_strings.obj `if test -f 'torrent/utils/test_option_strings.cc'; then $(CYGPATH_W) 'torrent/utils/test_option_strings.cc'; else $(CYGPATH_W) '$(srcdir)/torrent/utils/test_option_strings.cc'; fi`
torrent/utils/LibTorrent_Test_Torrent_Utils-test_queue_buckets.o: torrent/utils/test_queue_buckets.cc
@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(LibTorrent_Test_Torrent_Utils_CXXFLAGS) $(CXXFLAGS) -MT torrent/utils/LibTorrent_Test_Torrent_Utils-test_queue_buckets.o -MD -MP -MF torrent/utils/$(DEPDIR)/LibTorrent_Test_Torrent_Utils-test_queue_buckets.Tpo -c -o torrent/utils/LibTorrent_Test_Torrent_Utils-test_queue_buckets.o `test -f 'torrent/utils/test_queue_buckets.cc' || echo '$(srcdir)/'`torrent/utils/test_queue_buckets.cc
@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) torrent/utils/$(DEPDIR)/LibTorrent_Test_Torrent_Utils-test_queue_buckets.Tpo torrent/utils/$(DEPDIR)/LibTorrent_Test_Torrent_Utils-test_queue_buckets.Po
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='torrent/utils/test_queue_buckets.cc' object='torrent/utils/LibTorrent_Test_Torrent_Utils-test_queue_buckets.o' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(LibTorrent_Test_Torrent_Utils_CXXFLAGS) $(CXXFLAGS) -c -o torrent/utils/LibTorrent_Test_Torrent_Utils-test_queue_buckets.o `test -f 'torrent/utils/test_queue_buckets.cc' || echo '$(srcdir)/'`torrent/utils/test_queue_buckets.cc
torrent/utils/LibTorrent_Test_Torrent_Utils-test_queue_buckets.obj: torrent/utils/test_queue_buckets.cc
@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(LibTorrent_Test_Torrent_Utils_CXXFLAGS) $(CXXFLAGS) -MT torrent/utils/LibTorrent_Test_Torrent_Utils-test_queue_buckets.obj -MD -MP -MF torrent/utils/$(DEPDIR)/LibTorrent_Test_Torrent_Utils-test_queue_buckets.Tpo -c -o torrent/utils/LibTorrent_Test_Torrent_Utils-test_queue_buckets.obj `if test -f 'torrent/utils/test_queue_buckets.cc'; then $(CYGPATH_W) 'torrent/utils/test_queue_buckets.cc'; else $(CYGPATH_W) '$(srcdir)/torrent/utils/test_queue_buckets.cc'; fi`
@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) torrent/utils/$(DEPDIR)/LibTorrent_Test_Torrent_Utils-test_queue_buckets.Tpo torrent/utils/$(DEPDIR)/LibTorrent_Test_Torrent_Utils-test_queue_buckets.Po
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='torrent/utils/test_queue_buckets.cc' object='torrent/utils/LibTorrent_Test_Torrent_Utils-test_queue_buckets.obj' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(LibTorrent_Test_Torrent_Utils_CXXFLAGS) $(CXXFLAGS) -c -o torrent/utils/LibTorrent_Test_Torrent_Utils-test_queue_buckets.obj `if test -f 'torrent/utils/test_queue_buckets.cc'; then $(CYGPATH_W) 'torrent/utils/test_queue_buckets.cc'; else $(CYGPATH_W) '$(srcdir)/torrent/utils/test_queue_buckets.cc'; fi`
torrent/utils/LibTorrent_Test_Torrent_Utils-test_signal_bitfield.o: torrent/utils/test_signal_bitfield.cc
@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(LibTorrent_Test_Torrent_Utils_CXXFLAGS) $(CXXFLAGS) -MT torrent/utils/LibTorrent_Test_Torrent_Utils-test_signal_bitfield.o -MD -MP -MF torrent/utils/$(DEPDIR)/LibTorrent_Test_Torrent_Utils-test_signal_bitfield.Tpo -c -o torrent/utils/LibTorrent_Test_Torrent_Utils-test_signal_bitfield.o `test -f 'torrent/utils/test_signal_bitfield.cc' || echo '$(srcdir)/'`torrent/utils/test_signal_bitfield.cc
@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) torrent/utils/$(DEPDIR)/LibTorrent_Test_Torrent_Utils-test_signal_bitfield.Tpo torrent/utils/$(DEPDIR)/LibTorrent_Test_Torrent_Utils-test_signal_bitfield.Po
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='torrent/utils/test_signal_bitfield.cc' object='torrent/utils/LibTorrent_Test_Torrent_Utils-test_signal_bitfield.o' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(LibTorrent_Test_Torrent_Utils_CXXFLAGS) $(CXXFLAGS) -c -o torrent/utils/LibTorrent_Test_Torrent_Utils-test_signal_bitfield.o `test -f 'torrent/utils/test_signal_bitfield.cc' || echo '$(srcdir)/'`torrent/utils/test_signal_bitfield.cc
torrent/utils/LibTorrent_Test_Torrent_Utils-test_signal_bitfield.obj: torrent/utils/test_signal_bitfield.cc
@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(LibTorrent_Test_Torrent_Utils_CXXFLAGS) $(CXXFLAGS) -MT torrent/utils/LibTorrent_Test_Torrent_Utils-test_signal_bitfield.obj -MD -MP -MF torrent/utils/$(DEPDIR)/LibTorrent_Test_Torrent_Utils-test_signal_bitfield.Tpo -c -o torrent/utils/LibTorrent_Test_Torrent_Utils-test_signal_bitfield.obj `if test -f 'torrent/utils/test_signal_bitfield.cc'; then $(CYGPATH_W) 'torrent/utils/test_signal_bitfield.cc'; else $(CYGPATH_W) '$(srcdir)/torrent/utils/test_signal_bitfield.cc'; fi`
@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) torrent/utils/$(DEPDIR)/LibTorrent_Test_Torrent_Utils-test_signal_bitfield.Tpo torrent/utils/$(DEPDIR)/LibTorrent_Test_Torrent_Utils-test_signal_bitfield.Po
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='torrent/utils/test_signal_bitfield.cc' object='torrent/utils/LibTorrent_Test_Torrent_Utils-test_signal_bitfield.obj' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(LibTorrent_Test_Torrent_Utils_CXXFLAGS) $(CXXFLAGS) -c -o torrent/utils/LibTorrent_Test_Torrent_Utils-test_signal_bitfield.obj `if test -f 'torrent/utils/test_signal_bitfield.cc'; then $(CYGPATH_W) 'torrent/utils/test_signal_bitfield.cc'; else $(CYGPATH_W) '$(srcdir)/torrent/utils/test_signal_bitfield.cc'; fi`
torrent/utils/LibTorrent_Test_Torrent_Utils-test_signal_interrupt.o: torrent/utils/test_signal_interrupt.cc
@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(LibTorrent_Test_Torrent_Utils_CXXFLAGS) $(CXXFLAGS) -MT torrent/utils/LibTorrent_Test_Torrent_Utils-test_signal_interrupt.o -MD -MP -MF torrent/utils/$(DEPDIR)/LibTorrent_Test_Torrent_Utils-test_signal_interrupt.Tpo -c -o torrent/utils/LibTorrent_Test_Torrent_Utils-test_signal_interrupt.o `test -f 'torrent/utils/test_signal_interrupt.cc' || echo '$(srcdir)/'`torrent/utils/test_signal_interrupt.cc
@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) torrent/utils/$(DEPDIR)/LibTorrent_Test_Torrent_Utils-test_signal_interrupt.Tpo torrent/utils/$(DEPDIR)/LibTorrent_Test_Torrent_Utils-test_signal_interrupt.Po
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='torrent/utils/test_signal_interrupt.cc' object='torrent/utils/LibTorrent_Test_Torrent_Utils-test_signal_interrupt.o' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(LibTorrent_Test_Torrent_Utils_CXXFLAGS) $(CXXFLAGS) -c -o torrent/utils/LibTorrent_Test_Torrent_Utils-test_signal_interrupt.o `test -f 'torrent/utils/test_signal_interrupt.cc' || echo '$(srcdir)/'`torrent/utils/test_signal_interrupt.cc
torrent/utils/LibTorrent_Test_Torrent_Utils-test_signal_interrupt.obj: torrent/utils/test_signal_interrupt.cc
@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(LibTorrent_Test_Torrent_Utils_CXXFLAGS) $(CXXFLAGS) -MT torrent/utils/LibTorrent_Test_Torrent_Utils-test_signal_interrupt.obj -MD -MP -MF torrent/utils/$(DEPDIR)/LibTorrent_Test_Torrent_Utils-test_signal_interrupt.Tpo -c -o torrent/utils/LibTorrent_Test_Torrent_Utils-test_signal_interrupt.obj `if test -f 'torrent/utils/test_signal_interrupt.cc'; then $(CYGPATH_W) 'torrent/utils/test_signal_interrupt.cc'; else $(CYGPATH_W) '$(srcdir)/torrent/utils/test_signal_interrupt.cc'; fi`
@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) torrent/utils/$(DEPDIR)/LibTorrent_Test_Torrent_Utils-test_signal_interrupt.Tpo torrent/utils/$(DEPDIR)/LibTorrent_Test_Torrent_Utils-test_signal_interrupt.Po
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='torrent/utils/test_signal_interrupt.cc' object='torrent/utils/LibTorrent_Test_Torrent_Utils-test_signal_interrupt.obj' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(LibTorrent_Test_Torrent_Utils_CXXFLAGS) $(CXXFLAGS) -c -o torrent/utils/LibTorrent_Test_Torrent_Utils-test_signal_interrupt.obj `if test -f 'torrent/utils/test_signal_interrupt.cc'; then $(CYGPATH_W) 'torrent/utils/test_signal_interrupt.cc'; else $(CYGPATH_W) '$(srcdir)/torrent/utils/test_signal_interrupt.cc'; fi`
torrent/utils/LibTorrent_Test_Torrent_Utils-test_thread_base.o: torrent/utils/test_thread_base.cc
@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(LibTorrent_Test_Torrent_Utils_CXXFLAGS) $(CXXFLAGS) -MT torrent/utils/LibTorrent_Test_Torrent_Utils-test_thread_base.o -MD -MP -MF torrent/utils/$(DEPDIR)/LibTorrent_Test_Torrent_Utils-test_thread_base.Tpo -c -o torrent/utils/LibTorrent_Test_Torrent_Utils-test_thread_base.o `test -f 'torrent/utils/test_thread_base.cc' || echo '$(srcdir)/'`torrent/utils/test_thread_base.cc
@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) torrent/utils/$(DEPDIR)/LibTorrent_Test_Torrent_Utils-test_thread_base.Tpo torrent/utils/$(DEPDIR)/LibTorrent_Test_Torrent_Utils-test_thread_base.Po
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='torrent/utils/test_thread_base.cc' object='torrent/utils/LibTorrent_Test_Torrent_Utils-test_thread_base.o' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(LibTorrent_Test_Torrent_Utils_CXXFLAGS) $(CXXFLAGS) -c -o torrent/utils/LibTorrent_Test_Torrent_Utils-test_thread_base.o `test -f 'torrent/utils/test_thread_base.cc' || echo '$(srcdir)/'`torrent/utils/test_thread_base.cc
torrent/utils/LibTorrent_Test_Torrent_Utils-test_thread_base.obj: torrent/utils/test_thread_base.cc
@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(LibTorrent_Test_Torrent_Utils_CXXFLAGS) $(CXXFLAGS) -MT torrent/utils/LibTorrent_Test_Torrent_Utils-test_thread_base.obj -MD -MP -MF torrent/utils/$(DEPDIR)/LibTorrent_Test_Torrent_Utils-test_thread_base.Tpo -c -o torrent/utils/LibTorrent_Test_Torrent_Utils-test_thread_base.obj `if test -f 'torrent/utils/test_thread_base.cc'; then $(CYGPATH_W) 'torrent/utils/test_thread_base.cc'; else $(CYGPATH_W) '$(srcdir)/torrent/utils/test_thread_base.cc'; fi`
@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) torrent/utils/$(DEPDIR)/LibTorrent_Test_Torrent_Utils-test_thread_base.Tpo torrent/utils/$(DEPDIR)/LibTorrent_Test_Torrent_Utils-test_thread_base.Po
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='torrent/utils/test_thread_base.cc' object='torrent/utils/LibTorrent_Test_Torrent_Utils-test_thread_base.obj' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(LibTorrent_Test_Torrent_Utils_CXXFLAGS) $(CXXFLAGS) -c -o torrent/utils/LibTorrent_Test_Torrent_Utils-test_thread_base.obj `if test -f 'torrent/utils/test_thread_base.cc'; then $(CYGPATH_W) 'torrent/utils/test_thread_base.cc'; else $(CYGPATH_W) '$(srcdir)/torrent/utils/test_thread_base.cc'; fi`
torrent/utils/LibTorrent_Test_Torrent_Utils-test_uri_parser.o: torrent/utils/test_uri_parser.cc
@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(LibTorrent_Test_Torrent_Utils_CXXFLAGS) $(CXXFLAGS) -MT torrent/utils/LibTorrent_Test_Torrent_Utils-test_uri_parser.o -MD -MP -MF torrent/utils/$(DEPDIR)/LibTorrent_Test_Torrent_Utils-test_uri_parser.Tpo -c -o torrent/utils/LibTorrent_Test_Torrent_Utils-test_uri_parser.o `test -f 'torrent/utils/test_uri_parser.cc' || echo '$(srcdir)/'`torrent/utils/test_uri_parser.cc
@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) torrent/utils/$(DEPDIR)/LibTorrent_Test_Torrent_Utils-test_uri_parser.Tpo torrent/utils/$(DEPDIR)/LibTorrent_Test_Torrent_Utils-test_uri_parser.Po
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='torrent/utils/test_uri_parser.cc' object='torrent/utils/LibTorrent_Test_Torrent_Utils-test_uri_parser.o' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(LibTorrent_Test_Torrent_Utils_CXXFLAGS) $(CXXFLAGS) -c -o torrent/utils/LibTorrent_Test_Torrent_Utils-test_uri_parser.o `test -f 'torrent/utils/test_uri_parser.cc' || echo '$(srcdir)/'`torrent/utils/test_uri_parser.cc
torrent/utils/LibTorrent_Test_Torrent_Utils-test_uri_parser.obj: torrent/utils/test_uri_parser.cc
@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(LibTorrent_Test_Torrent_Utils_CXXFLAGS) $(CXXFLAGS) -MT torrent/utils/LibTorrent_Test_Torrent_Utils-test_uri_parser.obj -MD -MP -MF torrent/utils/$(DEPDIR)/LibTorrent_Test_Torrent_Utils-test_uri_parser.Tpo -c -o torrent/utils/LibTorrent_Test_Torrent_Utils-test_uri_parser.obj `if test -f 'torrent/utils/test_uri_parser.cc'; then $(CYGPATH_W) 'torrent/utils/test_uri_parser.cc'; else $(CYGPATH_W) '$(srcdir)/torrent/utils/test_uri_parser.cc'; fi`
@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) torrent/utils/$(DEPDIR)/LibTorrent_Test_Torrent_Utils-test_uri_parser.Tpo torrent/utils/$(DEPDIR)/LibTorrent_Test_Torrent_Utils-test_uri_parser.Po
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='torrent/utils/test_uri_parser.cc' object='torrent/utils/LibTorrent_Test_Torrent_Utils-test_uri_parser.obj' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(LibTorrent_Test_Torrent_Utils_CXXFLAGS) $(CXXFLAGS) -c -o torrent/utils/LibTorrent_Test_Torrent_Utils-test_uri_parser.obj `if test -f 'torrent/utils/test_uri_parser.cc'; then $(CYGPATH_W) 'torrent/utils/test_uri_parser.cc'; else $(CYGPATH_W) '$(srcdir)/torrent/utils/test_uri_parser.cc'; fi`
LibTorrent_Test_Tracker-main.o: main.cc
@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(LibTorrent_Test_Tracker_CXXFLAGS) $(CXXFLAGS) -MT LibTorrent_Test_Tracker-main.o -MD -MP -MF $(DEPDIR)/LibTorrent_Test_Tracker-main.Tpo -c -o LibTorrent_Test_Tracker-main.o `test -f 'main.cc' || echo '$(srcdir)/'`main.cc
@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/LibTorrent_Test_Tracker-main.Tpo $(DEPDIR)/LibTorrent_Test_Tracker-main.Po
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='main.cc' object='LibTorrent_Test_Tracker-main.o' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(LibTorrent_Test_Tracker_CXXFLAGS) $(CXXFLAGS) -c -o LibTorrent_Test_Tracker-main.o `test -f 'main.cc' || echo '$(srcdir)/'`main.cc
LibTorrent_Test_Tracker-main.obj: main.cc
@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(LibTorrent_Test_Tracker_CXXFLAGS) $(CXXFLAGS) -MT LibTorrent_Test_Tracker-main.obj -MD -MP -MF $(DEPDIR)/LibTorrent_Test_Tracker-main.Tpo -c -o LibTorrent_Test_Tracker-main.obj `if test -f 'main.cc'; then $(CYGPATH_W) 'main.cc'; else $(CYGPATH_W) '$(srcdir)/main.cc'; fi`
@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/LibTorrent_Test_Tracker-main.Tpo $(DEPDIR)/LibTorrent_Test_Tracker-main.Po
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='main.cc' object='LibTorrent_Test_Tracker-main.obj' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(LibTorrent_Test_Tracker_CXXFLAGS) $(CXXFLAGS) -c -o LibTorrent_Test_Tracker-main.obj `if test -f 'main.cc'; then $(CYGPATH_W) 'main.cc'; else $(CYGPATH_W) '$(srcdir)/main.cc'; fi`
helpers/LibTorrent_Test_Tracker-mock_function.o: helpers/mock_function.cc
@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(LibTorrent_Test_Tracker_CXXFLAGS) $(CXXFLAGS) -MT helpers/LibTorrent_Test_Tracker-mock_function.o -MD -MP -MF helpers/$(DEPDIR)/LibTorrent_Test_Tracker-mock_function.Tpo -c -o helpers/LibTorrent_Test_Tracker-mock_function.o `test -f 'helpers/mock_function.cc' || echo '$(srcdir)/'`helpers/mock_function.cc
@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) helpers/$(DEPDIR)/LibTorrent_Test_Tracker-mock_function.Tpo helpers/$(DEPDIR)/LibTorrent_Test_Tracker-mock_function.Po
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='helpers/mock_function.cc' object='helpers/LibTorrent_Test_Tracker-mock_function.o' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(LibTorrent_Test_Tracker_CXXFLAGS) $(CXXFLAGS) -c -o helpers/LibTorrent_Test_Tracker-mock_function.o `test -f 'helpers/mock_function.cc' || echo '$(srcdir)/'`helpers/mock_function.cc
helpers/LibTorrent_Test_Tracker-mock_function.obj: helpers/mock_function.cc
@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(LibTorrent_Test_Tracker_CXXFLAGS) $(CXXFLAGS) -MT helpers/LibTorrent_Test_Tracker-mock_function.obj -MD -MP -MF helpers/$(DEPDIR)/LibTorrent_Test_Tracker-mock_function.Tpo -c -o helpers/LibTorrent_Test_Tracker-mock_function.obj `if test -f 'helpers/mock_function.cc'; then $(CYGPATH_W) 'helpers/mock_function.cc'; else $(CYGPATH_W) '$(srcdir)/helpers/mock_function.cc'; fi`
@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) helpers/$(DEPDIR)/LibTorrent_Test_Tracker-mock_function.Tpo helpers/$(DEPDIR)/LibTorrent_Test_Tracker-mock_function.Po
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='helpers/mock_function.cc' object='helpers/LibTorrent_Test_Tracker-mock_function.obj' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(LibTorrent_Test_Tracker_CXXFLAGS) $(CXXFLAGS) -c -o helpers/LibTorrent_Test_Tracker-mock_function.obj `if test -f 'helpers/mock_function.cc'; then $(CYGPATH_W) 'helpers/mock_function.cc'; else $(CYGPATH_W) '$(srcdir)/helpers/mock_function.cc'; fi`
helpers/LibTorrent_Test_Tracker-network.o: helpers/network.cc
@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(LibTorrent_Test_Tracker_CXXFLAGS) $(CXXFLAGS) -MT helpers/LibTorrent_Test_Tracker-network.o -MD -MP -MF helpers/$(DEPDIR)/LibTorrent_Test_Tracker-network.Tpo -c -o helpers/LibTorrent_Test_Tracker-network.o `test -f 'helpers/network.cc' || echo '$(srcdir)/'`helpers/network.cc
@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) helpers/$(DEPDIR)/LibTorrent_Test_Tracker-network.Tpo helpers/$(DEPDIR)/LibTorrent_Test_Tracker-network.Po
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='helpers/network.cc' object='helpers/LibTorrent_Test_Tracker-network.o' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(LibTorrent_Test_Tracker_CXXFLAGS) $(CXXFLAGS) -c -o helpers/LibTorrent_Test_Tracker-network.o `test -f 'helpers/network.cc' || echo '$(srcdir)/'`helpers/network.cc
helpers/LibTorrent_Test_Tracker-network.obj: helpers/network.cc
@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(LibTorrent_Test_Tracker_CXXFLAGS) $(CXXFLAGS) -MT helpers/LibTorrent_Test_Tracker-network.obj -MD -MP -MF helpers/$(DEPDIR)/LibTorrent_Test_Tracker-network.Tpo -c -o helpers/LibTorrent_Test_Tracker-network.obj `if test -f 'helpers/network.cc'; then $(CYGPATH_W) 'helpers/network.cc'; else $(CYGPATH_W) '$(srcdir)/helpers/network.cc'; fi`
@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) helpers/$(DEPDIR)/LibTorrent_Test_Tracker-network.Tpo helpers/$(DEPDIR)/LibTorrent_Test_Tracker-network.Po
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='helpers/network.cc' object='helpers/LibTorrent_Test_Tracker-network.obj' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(LibTorrent_Test_Tracker_CXXFLAGS) $(CXXFLAGS) -c -o helpers/LibTorrent_Test_Tracker-network.obj `if test -f 'helpers/network.cc'; then $(CYGPATH_W) 'helpers/network.cc'; else $(CYGPATH_W) '$(srcdir)/helpers/network.cc'; fi`
helpers/LibTorrent_Test_Tracker-progress_listener.o: helpers/progress_listener.cc
@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(LibTorrent_Test_Tracker_CXXFLAGS) $(CXXFLAGS) -MT helpers/LibTorrent_Test_Tracker-progress_listener.o -MD -MP -MF helpers/$(DEPDIR)/LibTorrent_Test_Tracker-progress_listener.Tpo -c -o helpers/LibTorrent_Test_Tracker-progress_listener.o `test -f 'helpers/progress_listener.cc' || echo '$(srcdir)/'`helpers/progress_listener.cc
@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) helpers/$(DEPDIR)/LibTorrent_Test_Tracker-progress_listener.Tpo helpers/$(DEPDIR)/LibTorrent_Test_Tracker-progress_listener.Po
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='helpers/progress_listener.cc' object='helpers/LibTorrent_Test_Tracker-progress_listener.o' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(LibTorrent_Test_Tracker_CXXFLAGS) $(CXXFLAGS) -c -o helpers/LibTorrent_Test_Tracker-progress_listener.o `test -f 'helpers/progress_listener.cc' || echo '$(srcdir)/'`helpers/progress_listener.cc
helpers/LibTorrent_Test_Tracker-progress_listener.obj: helpers/progress_listener.cc
@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(LibTorrent_Test_Tracker_CXXFLAGS) $(CXXFLAGS) -MT helpers/LibTorrent_Test_Tracker-progress_listener.obj -MD -MP -MF helpers/$(DEPDIR)/LibTorrent_Test_Tracker-progress_listener.Tpo -c -o helpers/LibTorrent_Test_Tracker-progress_listener.obj `if test -f 'helpers/progress_listener.cc'; then $(CYGPATH_W) 'helpers/progress_listener.cc'; else $(CYGPATH_W) '$(srcdir)/helpers/progress_listener.cc'; fi`
@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) helpers/$(DEPDIR)/LibTorrent_Test_Tracker-progress_listener.Tpo helpers/$(DEPDIR)/LibTorrent_Test_Tracker-progress_listener.Po
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='helpers/progress_listener.cc' object='helpers/LibTorrent_Test_Tracker-progress_listener.obj' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(LibTorrent_Test_Tracker_CXXFLAGS) $(CXXFLAGS) -c -o helpers/LibTorrent_Test_Tracker-progress_listener.obj `if test -f 'helpers/progress_listener.cc'; then $(CYGPATH_W) 'helpers/progress_listener.cc'; else $(CYGPATH_W) '$(srcdir)/helpers/progress_listener.cc'; fi`
helpers/LibTorrent_Test_Tracker-protectors.o: helpers/protectors.cc
@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(LibTorrent_Test_Tracker_CXXFLAGS) $(CXXFLAGS) -MT helpers/LibTorrent_Test_Tracker-protectors.o -MD -MP -MF helpers/$(DEPDIR)/LibTorrent_Test_Tracker-protectors.Tpo -c -o helpers/LibTorrent_Test_Tracker-protectors.o `test -f 'helpers/protectors.cc' || echo '$(srcdir)/'`helpers/protectors.cc
@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) helpers/$(DEPDIR)/LibTorrent_Test_Tracker-protectors.Tpo helpers/$(DEPDIR)/LibTorrent_Test_Tracker-protectors.Po
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='helpers/protectors.cc' object='helpers/LibTorrent_Test_Tracker-protectors.o' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(LibTorrent_Test_Tracker_CXXFLAGS) $(CXXFLAGS) -c -o helpers/LibTorrent_Test_Tracker-protectors.o `test -f 'helpers/protectors.cc' || echo '$(srcdir)/'`helpers/protectors.cc
helpers/LibTorrent_Test_Tracker-protectors.obj: helpers/protectors.cc
@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(LibTorrent_Test_Tracker_CXXFLAGS) $(CXXFLAGS) -MT helpers/LibTorrent_Test_Tracker-protectors.obj -MD -MP -MF helpers/$(DEPDIR)/LibTorrent_Test_Tracker-protectors.Tpo -c -o helpers/LibTorrent_Test_Tracker-protectors.obj `if test -f 'helpers/protectors.cc'; then $(CYGPATH_W) 'helpers/protectors.cc'; else $(CYGPATH_W) '$(srcdir)/helpers/protectors.cc'; fi`
@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) helpers/$(DEPDIR)/LibTorrent_Test_Tracker-protectors.Tpo helpers/$(DEPDIR)/LibTorrent_Test_Tracker-protectors.Po
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='helpers/protectors.cc' object='helpers/LibTorrent_Test_Tracker-protectors.obj' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(LibTorrent_Test_Tracker_CXXFLAGS) $(CXXFLAGS) -c -o helpers/LibTorrent_Test_Tracker-protectors.obj `if test -f 'helpers/protectors.cc'; then $(CYGPATH_W) 'helpers/protectors.cc'; else $(CYGPATH_W) '$(srcdir)/helpers/protectors.cc'; fi`
helpers/LibTorrent_Test_Tracker-test_fixture.o: helpers/test_fixture.cc
@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(LibTorrent_Test_Tracker_CXXFLAGS) $(CXXFLAGS) -MT helpers/LibTorrent_Test_Tracker-test_fixture.o -MD -MP -MF helpers/$(DEPDIR)/LibTorrent_Test_Tracker-test_fixture.Tpo -c -o helpers/LibTorrent_Test_Tracker-test_fixture.o `test -f 'helpers/test_fixture.cc' || echo '$(srcdir)/'`helpers/test_fixture.cc
@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) helpers/$(DEPDIR)/LibTorrent_Test_Tracker-test_fixture.Tpo helpers/$(DEPDIR)/LibTorrent_Test_Tracker-test_fixture.Po
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='helpers/test_fixture.cc' object='helpers/LibTorrent_Test_Tracker-test_fixture.o' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(LibTorrent_Test_Tracker_CXXFLAGS) $(CXXFLAGS) -c -o helpers/LibTorrent_Test_Tracker-test_fixture.o `test -f 'helpers/test_fixture.cc' || echo '$(srcdir)/'`helpers/test_fixture.cc
helpers/LibTorrent_Test_Tracker-test_fixture.obj: helpers/test_fixture.cc
@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(LibTorrent_Test_Tracker_CXXFLAGS) $(CXXFLAGS) -MT helpers/LibTorrent_Test_Tracker-test_fixture.obj -MD -MP -MF helpers/$(DEPDIR)/LibTorrent_Test_Tracker-test_fixture.Tpo -c -o helpers/LibTorrent_Test_Tracker-test_fixture.obj `if test -f 'helpers/test_fixture.cc'; then $(CYGPATH_W) 'helpers/test_fixture.cc'; else $(CYGPATH_W) '$(srcdir)/helpers/test_fixture.cc'; fi`
@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) helpers/$(DEPDIR)/LibTorrent_Test_Tracker-test_fixture.Tpo helpers/$(DEPDIR)/LibTorrent_Test_Tracker-test_fixture.Po
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='helpers/test_fixture.cc' object='helpers/LibTorrent_Test_Tracker-test_fixture.obj' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(LibTorrent_Test_Tracker_CXXFLAGS) $(CXXFLAGS) -c -o helpers/LibTorrent_Test_Tracker-test_fixture.obj `if test -f 'helpers/test_fixture.cc'; then $(CYGPATH_W) 'helpers/test_fixture.cc'; else $(CYGPATH_W) '$(srcdir)/helpers/test_fixture.cc'; fi`
helpers/LibTorrent_Test_Tracker-test_main_thread.o: helpers/test_main_thread.cc
@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(LibTorrent_Test_Tracker_CXXFLAGS) $(CXXFLAGS) -MT helpers/LibTorrent_Test_Tracker-test_main_thread.o -MD -MP -MF helpers/$(DEPDIR)/LibTorrent_Test_Tracker-test_main_thread.Tpo -c -o helpers/LibTorrent_Test_Tracker-test_main_thread.o `test -f 'helpers/test_main_thread.cc' || echo '$(srcdir)/'`helpers/test_main_thread.cc
@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) helpers/$(DEPDIR)/LibTorrent_Test_Tracker-test_main_thread.Tpo helpers/$(DEPDIR)/LibTorrent_Test_Tracker-test_main_thread.Po
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='helpers/test_main_thread.cc' object='helpers/LibTorrent_Test_Tracker-test_main_thread.o' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(LibTorrent_Test_Tracker_CXXFLAGS) $(CXXFLAGS) -c -o helpers/LibTorrent_Test_Tracker-test_main_thread.o `test -f 'helpers/test_main_thread.cc' || echo '$(srcdir)/'`helpers/test_main_thread.cc
helpers/LibTorrent_Test_Tracker-test_main_thread.obj: helpers/test_main_thread.cc
@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(LibTorrent_Test_Tracker_CXXFLAGS) $(CXXFLAGS) -MT helpers/LibTorrent_Test_Tracker-test_main_thread.obj -MD -MP -MF helpers/$(DEPDIR)/LibTorrent_Test_Tracker-test_main_thread.Tpo -c -o helpers/LibTorrent_Test_Tracker-test_main_thread.obj `if test -f 'helpers/test_main_thread.cc'; then $(CYGPATH_W) 'helpers/test_main_thread.cc'; else $(CYGPATH_W) '$(srcdir)/helpers/test_main_thread.cc'; fi`
@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) helpers/$(DEPDIR)/LibTorrent_Test_Tracker-test_main_thread.Tpo helpers/$(DEPDIR)/LibTorrent_Test_Tracker-test_main_thread.Po
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='helpers/test_main_thread.cc' object='helpers/LibTorrent_Test_Tracker-test_main_thread.obj' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(LibTorrent_Test_Tracker_CXXFLAGS) $(CXXFLAGS) -c -o helpers/LibTorrent_Test_Tracker-test_main_thread.obj `if test -f 'helpers/test_main_thread.cc'; then $(CYGPATH_W) 'helpers/test_main_thread.cc'; else $(CYGPATH_W) '$(srcdir)/helpers/test_main_thread.cc'; fi`
helpers/LibTorrent_Test_Tracker-test_thread.o: helpers/test_thread.cc
@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(LibTorrent_Test_Tracker_CXXFLAGS) $(CXXFLAGS) -MT helpers/LibTorrent_Test_Tracker-test_thread.o -MD -MP -MF helpers/$(DEPDIR)/LibTorrent_Test_Tracker-test_thread.Tpo -c -o helpers/LibTorrent_Test_Tracker-test_thread.o `test -f 'helpers/test_thread.cc' || echo '$(srcdir)/'`helpers/test_thread.cc
@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) helpers/$(DEPDIR)/LibTorrent_Test_Tracker-test_thread.Tpo helpers/$(DEPDIR)/LibTorrent_Test_Tracker-test_thread.Po
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='helpers/test_thread.cc' object='helpers/LibTorrent_Test_Tracker-test_thread.o' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(LibTorrent_Test_Tracker_CXXFLAGS) $(CXXFLAGS) -c -o helpers/LibTorrent_Test_Tracker-test_thread.o `test -f 'helpers/test_thread.cc' || echo '$(srcdir)/'`helpers/test_thread.cc
helpers/LibTorrent_Test_Tracker-test_thread.obj: helpers/test_thread.cc
@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(LibTorrent_Test_Tracker_CXXFLAGS) $(CXXFLAGS) -MT helpers/LibTorrent_Test_Tracker-test_thread.obj -MD -MP -MF helpers/$(DEPDIR)/LibTorrent_Test_Tracker-test_thread.Tpo -c -o helpers/LibTorrent_Test_Tracker-test_thread.obj `if test -f 'helpers/test_thread.cc'; then $(CYGPATH_W) 'helpers/test_thread.cc'; else $(CYGPATH_W) '$(srcdir)/helpers/test_thread.cc'; fi`
@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) helpers/$(DEPDIR)/LibTorrent_Test_Tracker-test_thread.Tpo helpers/$(DEPDIR)/LibTorrent_Test_Tracker-test_thread.Po
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='helpers/test_thread.cc' object='helpers/LibTorrent_Test_Tracker-test_thread.obj' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(LibTorrent_Test_Tracker_CXXFLAGS) $(CXXFLAGS) -c -o helpers/LibTorrent_Test_Tracker-test_thread.obj `if test -f 'helpers/test_thread.cc'; then $(CYGPATH_W) 'helpers/test_thread.cc'; else $(CYGPATH_W) '$(srcdir)/helpers/test_thread.cc'; fi`
helpers/LibTorrent_Test_Tracker-tracker_test.o: helpers/tracker_test.cc
@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(LibTorrent_Test_Tracker_CXXFLAGS) $(CXXFLAGS) -MT helpers/LibTorrent_Test_Tracker-tracker_test.o -MD -MP -MF helpers/$(DEPDIR)/LibTorrent_Test_Tracker-tracker_test.Tpo -c -o helpers/LibTorrent_Test_Tracker-tracker_test.o `test -f 'helpers/tracker_test.cc' || echo '$(srcdir)/'`helpers/tracker_test.cc
@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) helpers/$(DEPDIR)/LibTorrent_Test_Tracker-tracker_test.Tpo helpers/$(DEPDIR)/LibTorrent_Test_Tracker-tracker_test.Po
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='helpers/tracker_test.cc' object='helpers/LibTorrent_Test_Tracker-tracker_test.o' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(LibTorrent_Test_Tracker_CXXFLAGS) $(CXXFLAGS) -c -o helpers/LibTorrent_Test_Tracker-tracker_test.o `test -f 'helpers/tracker_test.cc' || echo '$(srcdir)/'`helpers/tracker_test.cc
helpers/LibTorrent_Test_Tracker-tracker_test.obj: helpers/tracker_test.cc
@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(LibTorrent_Test_Tracker_CXXFLAGS) $(CXXFLAGS) -MT helpers/LibTorrent_Test_Tracker-tracker_test.obj -MD -MP -MF helpers/$(DEPDIR)/LibTorrent_Test_Tracker-tracker_test.Tpo -c -o helpers/LibTorrent_Test_Tracker-tracker_test.obj `if test -f 'helpers/tracker_test.cc'; then $(CYGPATH_W) 'helpers/tracker_test.cc'; else $(CYGPATH_W) '$(srcdir)/helpers/tracker_test.cc'; fi`
@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) helpers/$(DEPDIR)/LibTorrent_Test_Tracker-tracker_test.Tpo helpers/$(DEPDIR)/LibTorrent_Test_Tracker-tracker_test.Po
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='helpers/tracker_test.cc' object='helpers/LibTorrent_Test_Tracker-tracker_test.obj' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(LibTorrent_Test_Tracker_CXXFLAGS) $(CXXFLAGS) -c -o helpers/LibTorrent_Test_Tracker-tracker_test.obj `if test -f 'helpers/tracker_test.cc'; then $(CYGPATH_W) 'helpers/tracker_test.cc'; else $(CYGPATH_W) '$(srcdir)/helpers/tracker_test.cc'; fi`
tracker/LibTorrent_Test_Tracker-test_tracker_http.o: tracker/test_tracker_http.cc
@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(LibTorrent_Test_Tracker_CXXFLAGS) $(CXXFLAGS) -MT tracker/LibTorrent_Test_Tracker-test_tracker_http.o -MD -MP -MF tracker/$(DEPDIR)/LibTorrent_Test_Tracker-test_tracker_http.Tpo -c -o tracker/LibTorrent_Test_Tracker-test_tracker_http.o `test -f 'tracker/test_tracker_http.cc' || echo '$(srcdir)/'`tracker/test_tracker_http.cc
@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) tracker/$(DEPDIR)/LibTorrent_Test_Tracker-test_tracker_http.Tpo tracker/$(DEPDIR)/LibTorrent_Test_Tracker-test_tracker_http.Po
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='tracker/test_tracker_http.cc' object='tracker/LibTorrent_Test_Tracker-test_tracker_http.o' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(LibTorrent_Test_Tracker_CXXFLAGS) $(CXXFLAGS) -c -o tracker/LibTorrent_Test_Tracker-test_tracker_http.o `test -f 'tracker/test_tracker_http.cc' || echo '$(srcdir)/'`tracker/test_tracker_http.cc
tracker/LibTorrent_Test_Tracker-test_tracker_http.obj: tracker/test_tracker_http.cc
@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(LibTorrent_Test_Tracker_CXXFLAGS) $(CXXFLAGS) -MT tracker/LibTorrent_Test_Tracker-test_tracker_http.obj -MD -MP -MF tracker/$(DEPDIR)/LibTorrent_Test_Tracker-test_tracker_http.Tpo -c -o tracker/LibTorrent_Test_Tracker-test_tracker_http.obj `if test -f 'tracker/test_tracker_http.cc'; then $(CYGPATH_W) 'tracker/test_tracker_http.cc'; else $(CYGPATH_W) '$(srcdir)/tracker/test_tracker_http.cc'; fi`
@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) tracker/$(DEPDIR)/LibTorrent_Test_Tracker-test_tracker_http.Tpo tracker/$(DEPDIR)/LibTorrent_Test_Tracker-test_tracker_http.Po
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='tracker/test_tracker_http.cc' object='tracker/LibTorrent_Test_Tracker-test_tracker_http.obj' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(LibTorrent_Test_Tracker_CXXFLAGS) $(CXXFLAGS) -c -o tracker/LibTorrent_Test_Tracker-test_tracker_http.obj `if test -f 'tracker/test_tracker_http.cc'; then $(CYGPATH_W) 'tracker/test_tracker_http.cc'; else $(CYGPATH_W) '$(srcdir)/tracker/test_tracker_http.cc'; fi`
mostlyclean-libtool:
-rm -f *.lo
clean-libtool:
-rm -rf .libs _libs
ID: $(am__tagged_files)
$(am__define_uniq_tagged_files); mkid -fID $$unique
tags: tags-am
TAGS: tags
tags-am: $(TAGS_DEPENDENCIES) $(am__tagged_files)
set x; \
here=`pwd`; \
$(am__define_uniq_tagged_files); \
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-am
CTAGS: ctags
ctags-am: $(TAGS_DEPENDENCIES) $(am__tagged_files)
$(am__define_uniq_tagged_files); \
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"
cscopelist: cscopelist-am
cscopelist-am: $(am__tagged_files)
list='$(am__tagged_files)'; \
case "$(srcdir)" in \
[\\/]* | ?:[\\/]*) sdir="$(srcdir)" ;; \
*) sdir=$(subdir)/$(srcdir) ;; \
esac; \
for i in $$list; do \
if test -f "$$i"; then \
echo "$(subdir)/$$i"; \
else \
echo "$$sdir/$$i"; \
fi; \
done >> $(top_builddir)/cscope.files
distclean-tags:
-rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags
check-TESTS: $(TESTS)
@failed=0; all=0; xfail=0; xpass=0; skip=0; \
srcdir=$(srcdir); export srcdir; \
list=' $(TESTS) '; \
$(am__tty_colors); \
if test -n "$$list"; then \
for tst in $$list; do \
if test -f ./$$tst; then dir=./; \
elif test -f $$tst; then dir=; \
else dir="$(srcdir)/"; fi; \
if $(TESTS_ENVIRONMENT) $${dir}$$tst $(AM_TESTS_FD_REDIRECT); then \
all=`expr $$all + 1`; \
case " $(XFAIL_TESTS) " in \
*[\ \ ]$$tst[\ \ ]*) \
xpass=`expr $$xpass + 1`; \
failed=`expr $$failed + 1`; \
col=$$red; res=XPASS; \
;; \
*) \
col=$$grn; res=PASS; \
;; \
esac; \
elif test $$? -ne 77; then \
all=`expr $$all + 1`; \
case " $(XFAIL_TESTS) " in \
*[\ \ ]$$tst[\ \ ]*) \
xfail=`expr $$xfail + 1`; \
col=$$lgn; res=XFAIL; \
;; \
*) \
failed=`expr $$failed + 1`; \
col=$$red; res=FAIL; \
;; \
esac; \
else \
skip=`expr $$skip + 1`; \
col=$$blu; res=SKIP; \
fi; \
echo "$${col}$$res$${std}: $$tst"; \
done; \
if test "$$all" -eq 1; then \
tests="test"; \
All=""; \
else \
tests="tests"; \
All="All "; \
fi; \
if test "$$failed" -eq 0; then \
if test "$$xfail" -eq 0; then \
banner="$$All$$all $$tests passed"; \
else \
if test "$$xfail" -eq 1; then failures=failure; else failures=failures; fi; \
banner="$$All$$all $$tests behaved as expected ($$xfail expected $$failures)"; \
fi; \
else \
if test "$$xpass" -eq 0; then \
banner="$$failed of $$all $$tests failed"; \
else \
if test "$$xpass" -eq 1; then passes=pass; else passes=passes; fi; \
banner="$$failed of $$all $$tests did not behave as expected ($$xpass unexpected $$passes)"; \
fi; \
fi; \
dashes="$$banner"; \
skipped=""; \
if test "$$skip" -ne 0; then \
if test "$$skip" -eq 1; then \
skipped="($$skip test was not run)"; \
else \
skipped="($$skip tests were not run)"; \
fi; \
test `echo "$$skipped" | wc -c` -le `echo "$$banner" | wc -c` || \
dashes="$$skipped"; \
fi; \
report=""; \
if test "$$failed" -ne 0 && test -n "$(PACKAGE_BUGREPORT)"; then \
report="Please report to $(PACKAGE_BUGREPORT)"; \
test `echo "$$report" | wc -c` -le `echo "$$banner" | wc -c` || \
dashes="$$report"; \
fi; \
dashes=`echo "$$dashes" | sed s/./=/g`; \
if test "$$failed" -eq 0; then \
col="$$grn"; \
else \
col="$$red"; \
fi; \
echo "$${col}$$dashes$${std}"; \
echo "$${col}$$banner$${std}"; \
test -z "$$skipped" || echo "$${col}$$skipped$${std}"; \
test -z "$$report" || echo "$${col}$$report$${std}"; \
echo "$${col}$$dashes$${std}"; \
test "$$failed" -eq 0; \
else :; fi
distdir: $(BUILT_SOURCES)
$(MAKE) $(AM_MAKEFLAGS) distdir-am
distdir-am: $(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
$(MAKE) $(AM_MAKEFLAGS) $(check_PROGRAMS)
$(MAKE) $(AM_MAKEFLAGS) check-TESTS
check: check-am
all-am: Makefile
installdirs:
install: 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:
if test -z '$(STRIP)'; then \
$(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \
install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \
install; \
else \
$(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \
install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \
"INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'" install; \
fi
mostlyclean-generic:
clean-generic:
distclean-generic:
-$(am__rm_f) $(CONFIG_CLEAN_FILES)
-test . = "$(srcdir)" || $(am__rm_f) $(CONFIG_CLEAN_VPATH_FILES)
-$(am__rm_f) data/$(DEPDIR)/$(am__dirstamp)
-$(am__rm_f) data/$(am__dirstamp)
-$(am__rm_f) helpers/$(DEPDIR)/$(am__dirstamp)
-$(am__rm_f) helpers/$(am__dirstamp)
-$(am__rm_f) net/$(DEPDIR)/$(am__dirstamp)
-$(am__rm_f) net/$(am__dirstamp)
-$(am__rm_f) protocol/$(DEPDIR)/$(am__dirstamp)
-$(am__rm_f) protocol/$(am__dirstamp)
-$(am__rm_f) rak/$(DEPDIR)/$(am__dirstamp)
-$(am__rm_f) rak/$(am__dirstamp)
-$(am__rm_f) torrent/$(DEPDIR)/$(am__dirstamp)
-$(am__rm_f) torrent/$(am__dirstamp)
-$(am__rm_f) torrent/net/$(DEPDIR)/$(am__dirstamp)
-$(am__rm_f) torrent/net/$(am__dirstamp)
-$(am__rm_f) torrent/utils/$(DEPDIR)/$(am__dirstamp)
-$(am__rm_f) torrent/utils/$(am__dirstamp)
-$(am__rm_f) tracker/$(DEPDIR)/$(am__dirstamp)
-$(am__rm_f) tracker/$(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."
clean: clean-am
clean-am: clean-checkPROGRAMS clean-generic clean-libtool \
mostlyclean-am
distclean: distclean-am
-rm -f ./$(DEPDIR)/LibTorrent_Test-main.Po
-rm -f ./$(DEPDIR)/LibTorrent_Test_Data-main.Po
-rm -f ./$(DEPDIR)/LibTorrent_Test_Net-main.Po
-rm -f ./$(DEPDIR)/LibTorrent_Test_Torrent-main.Po
-rm -f ./$(DEPDIR)/LibTorrent_Test_Torrent_Net-main.Po
-rm -f ./$(DEPDIR)/LibTorrent_Test_Torrent_Utils-main.Po
-rm -f ./$(DEPDIR)/LibTorrent_Test_Tracker-main.Po
-rm -f data/$(DEPDIR)/LibTorrent_Test_Data-test_chunk_list.Po
-rm -f data/$(DEPDIR)/LibTorrent_Test_Data-test_hash_check_queue.Po
-rm -f data/$(DEPDIR)/LibTorrent_Test_Data-test_hash_queue.Po
-rm -f helpers/$(DEPDIR)/LibTorrent_Test-mock_function.Po
-rm -f helpers/$(DEPDIR)/LibTorrent_Test-network.Po
-rm -f helpers/$(DEPDIR)/LibTorrent_Test-progress_listener.Po
-rm -f helpers/$(DEPDIR)/LibTorrent_Test-protectors.Po
-rm -f helpers/$(DEPDIR)/LibTorrent_Test-test_fixture.Po
-rm -f helpers/$(DEPDIR)/LibTorrent_Test-test_main_thread.Po
-rm -f helpers/$(DEPDIR)/LibTorrent_Test-test_thread.Po
-rm -f helpers/$(DEPDIR)/LibTorrent_Test-tracker_test.Po
-rm -f helpers/$(DEPDIR)/LibTorrent_Test_Data-mock_function.Po
-rm -f helpers/$(DEPDIR)/LibTorrent_Test_Data-network.Po
-rm -f helpers/$(DEPDIR)/LibTorrent_Test_Data-progress_listener.Po
-rm -f helpers/$(DEPDIR)/LibTorrent_Test_Data-protectors.Po
-rm -f helpers/$(DEPDIR)/LibTorrent_Test_Data-test_fixture.Po
-rm -f helpers/$(DEPDIR)/LibTorrent_Test_Data-test_main_thread.Po
-rm -f helpers/$(DEPDIR)/LibTorrent_Test_Data-test_thread.Po
-rm -f helpers/$(DEPDIR)/LibTorrent_Test_Data-tracker_test.Po
-rm -f helpers/$(DEPDIR)/LibTorrent_Test_Net-mock_function.Po
-rm -f helpers/$(DEPDIR)/LibTorrent_Test_Net-network.Po
-rm -f helpers/$(DEPDIR)/LibTorrent_Test_Net-progress_listener.Po
-rm -f helpers/$(DEPDIR)/LibTorrent_Test_Net-protectors.Po
-rm -f helpers/$(DEPDIR)/LibTorrent_Test_Net-test_fixture.Po
-rm -f helpers/$(DEPDIR)/LibTorrent_Test_Net-test_main_thread.Po
-rm -f helpers/$(DEPDIR)/LibTorrent_Test_Net-test_thread.Po
-rm -f helpers/$(DEPDIR)/LibTorrent_Test_Net-tracker_test.Po
-rm -f helpers/$(DEPDIR)/LibTorrent_Test_Torrent-mock_function.Po
-rm -f helpers/$(DEPDIR)/LibTorrent_Test_Torrent-network.Po
-rm -f helpers/$(DEPDIR)/LibTorrent_Test_Torrent-progress_listener.Po
-rm -f helpers/$(DEPDIR)/LibTorrent_Test_Torrent-protectors.Po
-rm -f helpers/$(DEPDIR)/LibTorrent_Test_Torrent-test_fixture.Po
-rm -f helpers/$(DEPDIR)/LibTorrent_Test_Torrent-test_main_thread.Po
-rm -f helpers/$(DEPDIR)/LibTorrent_Test_Torrent-test_thread.Po
-rm -f helpers/$(DEPDIR)/LibTorrent_Test_Torrent-tracker_test.Po
-rm -f helpers/$(DEPDIR)/LibTorrent_Test_Torrent_Net-mock_function.Po
-rm -f helpers/$(DEPDIR)/LibTorrent_Test_Torrent_Net-network.Po
-rm -f helpers/$(DEPDIR)/LibTorrent_Test_Torrent_Net-progress_listener.Po
-rm -f helpers/$(DEPDIR)/LibTorrent_Test_Torrent_Net-protectors.Po
-rm -f helpers/$(DEPDIR)/LibTorrent_Test_Torrent_Net-test_fixture.Po
-rm -f helpers/$(DEPDIR)/LibTorrent_Test_Torrent_Net-test_main_thread.Po
-rm -f helpers/$(DEPDIR)/LibTorrent_Test_Torrent_Net-test_thread.Po
-rm -f helpers/$(DEPDIR)/LibTorrent_Test_Torrent_Net-tracker_test.Po
-rm -f helpers/$(DEPDIR)/LibTorrent_Test_Torrent_Utils-mock_function.Po
-rm -f helpers/$(DEPDIR)/LibTorrent_Test_Torrent_Utils-network.Po
-rm -f helpers/$(DEPDIR)/LibTorrent_Test_Torrent_Utils-progress_listener.Po
-rm -f helpers/$(DEPDIR)/LibTorrent_Test_Torrent_Utils-protectors.Po
-rm -f helpers/$(DEPDIR)/LibTorrent_Test_Torrent_Utils-test_fixture.Po
-rm -f helpers/$(DEPDIR)/LibTorrent_Test_Torrent_Utils-test_main_thread.Po
-rm -f helpers/$(DEPDIR)/LibTorrent_Test_Torrent_Utils-test_thread.Po
-rm -f helpers/$(DEPDIR)/LibTorrent_Test_Torrent_Utils-tracker_test.Po
-rm -f helpers/$(DEPDIR)/LibTorrent_Test_Tracker-mock_function.Po
-rm -f helpers/$(DEPDIR)/LibTorrent_Test_Tracker-network.Po
-rm -f helpers/$(DEPDIR)/LibTorrent_Test_Tracker-progress_listener.Po
-rm -f helpers/$(DEPDIR)/LibTorrent_Test_Tracker-protectors.Po
-rm -f helpers/$(DEPDIR)/LibTorrent_Test_Tracker-test_fixture.Po
-rm -f helpers/$(DEPDIR)/LibTorrent_Test_Tracker-test_main_thread.Po
-rm -f helpers/$(DEPDIR)/LibTorrent_Test_Tracker-test_thread.Po
-rm -f helpers/$(DEPDIR)/LibTorrent_Test_Tracker-tracker_test.Po
-rm -f net/$(DEPDIR)/LibTorrent_Test_Net-test_socket_listen.Po
-rm -f protocol/$(DEPDIR)/LibTorrent_Test-test_request_list.Po
-rm -f rak/$(DEPDIR)/LibTorrent_Test-allocators_test.Po
-rm -f rak/$(DEPDIR)/LibTorrent_Test-ranges_test.Po
-rm -f torrent/$(DEPDIR)/LibTorrent_Test_Torrent-object_static_map_test.Po
-rm -f torrent/$(DEPDIR)/LibTorrent_Test_Torrent-object_stream_test.Po
-rm -f torrent/$(DEPDIR)/LibTorrent_Test_Torrent-object_test.Po
-rm -f torrent/$(DEPDIR)/LibTorrent_Test_Torrent-object_test_utils.Po
-rm -f torrent/$(DEPDIR)/LibTorrent_Test_Torrent-test_http.Po
-rm -f torrent/$(DEPDIR)/LibTorrent_Test_Torrent-test_tracker_controller.Po
-rm -f torrent/$(DEPDIR)/LibTorrent_Test_Torrent-test_tracker_controller_features.Po
-rm -f torrent/$(DEPDIR)/LibTorrent_Test_Torrent-test_tracker_controller_requesting.Po
-rm -f torrent/$(DEPDIR)/LibTorrent_Test_Torrent-test_tracker_list.Po
-rm -f torrent/$(DEPDIR)/LibTorrent_Test_Torrent-test_tracker_list_features.Po
-rm -f torrent/$(DEPDIR)/LibTorrent_Test_Torrent-test_tracker_timeout.Po
-rm -f torrent/net/$(DEPDIR)/LibTorrent_Test_Torrent_Net-test_address_info.Po
-rm -f torrent/net/$(DEPDIR)/LibTorrent_Test_Torrent_Net-test_fd.Po
-rm -f torrent/net/$(DEPDIR)/LibTorrent_Test_Torrent_Net-test_socket_address.Po
-rm -f torrent/utils/$(DEPDIR)/LibTorrent_Test_Torrent_Utils-test_extents.Po
-rm -f torrent/utils/$(DEPDIR)/LibTorrent_Test_Torrent_Utils-test_log.Po
-rm -f torrent/utils/$(DEPDIR)/LibTorrent_Test_Torrent_Utils-test_log_buffer.Po
-rm -f torrent/utils/$(DEPDIR)/LibTorrent_Test_Torrent_Utils-test_option_strings.Po
-rm -f torrent/utils/$(DEPDIR)/LibTorrent_Test_Torrent_Utils-test_queue_buckets.Po
-rm -f torrent/utils/$(DEPDIR)/LibTorrent_Test_Torrent_Utils-test_signal_bitfield.Po
-rm -f torrent/utils/$(DEPDIR)/LibTorrent_Test_Torrent_Utils-test_signal_interrupt.Po
-rm -f torrent/utils/$(DEPDIR)/LibTorrent_Test_Torrent_Utils-test_thread_base.Po
-rm -f torrent/utils/$(DEPDIR)/LibTorrent_Test_Torrent_Utils-test_uri_parser.Po
-rm -f tracker/$(DEPDIR)/LibTorrent_Test_Tracker-test_tracker_http.Po
-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-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 -f ./$(DEPDIR)/LibTorrent_Test-main.Po
-rm -f ./$(DEPDIR)/LibTorrent_Test_Data-main.Po
-rm -f ./$(DEPDIR)/LibTorrent_Test_Net-main.Po
-rm -f ./$(DEPDIR)/LibTorrent_Test_Torrent-main.Po
-rm -f ./$(DEPDIR)/LibTorrent_Test_Torrent_Net-main.Po
-rm -f ./$(DEPDIR)/LibTorrent_Test_Torrent_Utils-main.Po
-rm -f ./$(DEPDIR)/LibTorrent_Test_Tracker-main.Po
-rm -f data/$(DEPDIR)/LibTorrent_Test_Data-test_chunk_list.Po
-rm -f data/$(DEPDIR)/LibTorrent_Test_Data-test_hash_check_queue.Po
-rm -f data/$(DEPDIR)/LibTorrent_Test_Data-test_hash_queue.Po
-rm -f helpers/$(DEPDIR)/LibTorrent_Test-mock_function.Po
-rm -f helpers/$(DEPDIR)/LibTorrent_Test-network.Po
-rm -f helpers/$(DEPDIR)/LibTorrent_Test-progress_listener.Po
-rm -f helpers/$(DEPDIR)/LibTorrent_Test-protectors.Po
-rm -f helpers/$(DEPDIR)/LibTorrent_Test-test_fixture.Po
-rm -f helpers/$(DEPDIR)/LibTorrent_Test-test_main_thread.Po
-rm -f helpers/$(DEPDIR)/LibTorrent_Test-test_thread.Po
-rm -f helpers/$(DEPDIR)/LibTorrent_Test-tracker_test.Po
-rm -f helpers/$(DEPDIR)/LibTorrent_Test_Data-mock_function.Po
-rm -f helpers/$(DEPDIR)/LibTorrent_Test_Data-network.Po
-rm -f helpers/$(DEPDIR)/LibTorrent_Test_Data-progress_listener.Po
-rm -f helpers/$(DEPDIR)/LibTorrent_Test_Data-protectors.Po
-rm -f helpers/$(DEPDIR)/LibTorrent_Test_Data-test_fixture.Po
-rm -f helpers/$(DEPDIR)/LibTorrent_Test_Data-test_main_thread.Po
-rm -f helpers/$(DEPDIR)/LibTorrent_Test_Data-test_thread.Po
-rm -f helpers/$(DEPDIR)/LibTorrent_Test_Data-tracker_test.Po
-rm -f helpers/$(DEPDIR)/LibTorrent_Test_Net-mock_function.Po
-rm -f helpers/$(DEPDIR)/LibTorrent_Test_Net-network.Po
-rm -f helpers/$(DEPDIR)/LibTorrent_Test_Net-progress_listener.Po
-rm -f helpers/$(DEPDIR)/LibTorrent_Test_Net-protectors.Po
-rm -f helpers/$(DEPDIR)/LibTorrent_Test_Net-test_fixture.Po
-rm -f helpers/$(DEPDIR)/LibTorrent_Test_Net-test_main_thread.Po
-rm -f helpers/$(DEPDIR)/LibTorrent_Test_Net-test_thread.Po
-rm -f helpers/$(DEPDIR)/LibTorrent_Test_Net-tracker_test.Po
-rm -f helpers/$(DEPDIR)/LibTorrent_Test_Torrent-mock_function.Po
-rm -f helpers/$(DEPDIR)/LibTorrent_Test_Torrent-network.Po
-rm -f helpers/$(DEPDIR)/LibTorrent_Test_Torrent-progress_listener.Po
-rm -f helpers/$(DEPDIR)/LibTorrent_Test_Torrent-protectors.Po
-rm -f helpers/$(DEPDIR)/LibTorrent_Test_Torrent-test_fixture.Po
-rm -f helpers/$(DEPDIR)/LibTorrent_Test_Torrent-test_main_thread.Po
-rm -f helpers/$(DEPDIR)/LibTorrent_Test_Torrent-test_thread.Po
-rm -f helpers/$(DEPDIR)/LibTorrent_Test_Torrent-tracker_test.Po
-rm -f helpers/$(DEPDIR)/LibTorrent_Test_Torrent_Net-mock_function.Po
-rm -f helpers/$(DEPDIR)/LibTorrent_Test_Torrent_Net-network.Po
-rm -f helpers/$(DEPDIR)/LibTorrent_Test_Torrent_Net-progress_listener.Po
-rm -f helpers/$(DEPDIR)/LibTorrent_Test_Torrent_Net-protectors.Po
-rm -f helpers/$(DEPDIR)/LibTorrent_Test_Torrent_Net-test_fixture.Po
-rm -f helpers/$(DEPDIR)/LibTorrent_Test_Torrent_Net-test_main_thread.Po
-rm -f helpers/$(DEPDIR)/LibTorrent_Test_Torrent_Net-test_thread.Po
-rm -f helpers/$(DEPDIR)/LibTorrent_Test_Torrent_Net-tracker_test.Po
-rm -f helpers/$(DEPDIR)/LibTorrent_Test_Torrent_Utils-mock_function.Po
-rm -f helpers/$(DEPDIR)/LibTorrent_Test_Torrent_Utils-network.Po
-rm -f helpers/$(DEPDIR)/LibTorrent_Test_Torrent_Utils-progress_listener.Po
-rm -f helpers/$(DEPDIR)/LibTorrent_Test_Torrent_Utils-protectors.Po
-rm -f helpers/$(DEPDIR)/LibTorrent_Test_Torrent_Utils-test_fixture.Po
-rm -f helpers/$(DEPDIR)/LibTorrent_Test_Torrent_Utils-test_main_thread.Po
-rm -f helpers/$(DEPDIR)/LibTorrent_Test_Torrent_Utils-test_thread.Po
-rm -f helpers/$(DEPDIR)/LibTorrent_Test_Torrent_Utils-tracker_test.Po
-rm -f helpers/$(DEPDIR)/LibTorrent_Test_Tracker-mock_function.Po
-rm -f helpers/$(DEPDIR)/LibTorrent_Test_Tracker-network.Po
-rm -f helpers/$(DEPDIR)/LibTorrent_Test_Tracker-progress_listener.Po
-rm -f helpers/$(DEPDIR)/LibTorrent_Test_Tracker-protectors.Po
-rm -f helpers/$(DEPDIR)/LibTorrent_Test_Tracker-test_fixture.Po
-rm -f helpers/$(DEPDIR)/LibTorrent_Test_Tracker-test_main_thread.Po
-rm -f helpers/$(DEPDIR)/LibTorrent_Test_Tracker-test_thread.Po
-rm -f helpers/$(DEPDIR)/LibTorrent_Test_Tracker-tracker_test.Po
-rm -f net/$(DEPDIR)/LibTorrent_Test_Net-test_socket_listen.Po
-rm -f protocol/$(DEPDIR)/LibTorrent_Test-test_request_list.Po
-rm -f rak/$(DEPDIR)/LibTorrent_Test-allocators_test.Po
-rm -f rak/$(DEPDIR)/LibTorrent_Test-ranges_test.Po
-rm -f torrent/$(DEPDIR)/LibTorrent_Test_Torrent-object_static_map_test.Po
-rm -f torrent/$(DEPDIR)/LibTorrent_Test_Torrent-object_stream_test.Po
-rm -f torrent/$(DEPDIR)/LibTorrent_Test_Torrent-object_test.Po
-rm -f torrent/$(DEPDIR)/LibTorrent_Test_Torrent-object_test_utils.Po
-rm -f torrent/$(DEPDIR)/LibTorrent_Test_Torrent-test_http.Po
-rm -f torrent/$(DEPDIR)/LibTorrent_Test_Torrent-test_tracker_controller.Po
-rm -f torrent/$(DEPDIR)/LibTorrent_Test_Torrent-test_tracker_controller_features.Po
-rm -f torrent/$(DEPDIR)/LibTorrent_Test_Torrent-test_tracker_controller_requesting.Po
-rm -f torrent/$(DEPDIR)/LibTorrent_Test_Torrent-test_tracker_list.Po
-rm -f torrent/$(DEPDIR)/LibTorrent_Test_Torrent-test_tracker_list_features.Po
-rm -f torrent/$(DEPDIR)/LibTorrent_Test_Torrent-test_tracker_timeout.Po
-rm -f torrent/net/$(DEPDIR)/LibTorrent_Test_Torrent_Net-test_address_info.Po
-rm -f torrent/net/$(DEPDIR)/LibTorrent_Test_Torrent_Net-test_fd.Po
-rm -f torrent/net/$(DEPDIR)/LibTorrent_Test_Torrent_Net-test_socket_address.Po
-rm -f torrent/utils/$(DEPDIR)/LibTorrent_Test_Torrent_Utils-test_extents.Po
-rm -f torrent/utils/$(DEPDIR)/LibTorrent_Test_Torrent_Utils-test_log.Po
-rm -f torrent/utils/$(DEPDIR)/LibTorrent_Test_Torrent_Utils-test_log_buffer.Po
-rm -f torrent/utils/$(DEPDIR)/LibTorrent_Test_Torrent_Utils-test_option_strings.Po
-rm -f torrent/utils/$(DEPDIR)/LibTorrent_Test_Torrent_Utils-test_queue_buckets.Po
-rm -f torrent/utils/$(DEPDIR)/LibTorrent_Test_Torrent_Utils-test_signal_bitfield.Po
-rm -f torrent/utils/$(DEPDIR)/LibTorrent_Test_Torrent_Utils-test_signal_interrupt.Po
-rm -f torrent/utils/$(DEPDIR)/LibTorrent_Test_Torrent_Utils-test_thread_base.Po
-rm -f torrent/utils/$(DEPDIR)/LibTorrent_Test_Torrent_Utils-test_uri_parser.Po
-rm -f tracker/$(DEPDIR)/LibTorrent_Test_Tracker-test_tracker_http.Po
-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:
.MAKE: check-am install-am install-strip
.PHONY: CTAGS GTAGS TAGS all all-am am--depfiles check check-TESTS \
check-am clean clean-checkPROGRAMS clean-generic clean-libtool \
cscopelist-am ctags ctags-am 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-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 tags-am uninstall uninstall-am
.PRECIOUS: Makefile
# 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:
# Tell GNU make to disable its built-in pattern rules.
%:: %,v
%:: RCS/%,v
%:: RCS/%
%:: s.%
%:: SCCS/s.%
|