1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 1468 1469 1470 1471 1472 1473 1474 1475 1476 1477 1478 1479 1480 1481 1482 1483 1484 1485 1486 1487 1488 1489 1490 1491 1492 1493 1494 1495 1496 1497 1498 1499 1500 1501 1502 1503 1504 1505 1506 1507 1508 1509 1510 1511 1512 1513 1514 1515 1516 1517 1518 1519 1520 1521 1522 1523 1524 1525 1526 1527 1528 1529 1530 1531 1532 1533 1534 1535 1536 1537 1538 1539 1540 1541 1542 1543 1544 1545 1546 1547 1548 1549 1550 1551 1552 1553 1554 1555 1556 1557 1558 1559 1560 1561 1562 1563 1564 1565 1566 1567 1568 1569 1570 1571 1572 1573 1574 1575 1576 1577 1578 1579 1580 1581 1582 1583 1584 1585 1586 1587 1588 1589 1590 1591 1592 1593 1594 1595 1596 1597 1598 1599 1600 1601 1602 1603 1604 1605 1606 1607 1608 1609 1610 1611 1612 1613 1614 1615 1616 1617 1618 1619 1620 1621 1622 1623 1624 1625 1626 1627 1628 1629 1630 1631 1632 1633 1634 1635 1636 1637 1638 1639 1640 1641 1642 1643 1644 1645 1646 1647 1648 1649 1650 1651 1652 1653 1654 1655 1656 1657 1658 1659 1660 1661 1662 1663 1664 1665 1666 1667 1668 1669 1670 1671 1672 1673 1674 1675 1676 1677 1678 1679 1680 1681 1682 1683 1684 1685 1686 1687 1688 1689 1690 1691 1692 1693 1694 1695 1696 1697 1698 1699 1700 1701 1702 1703 1704 1705 1706 1707 1708 1709 1710 1711 1712 1713 1714 1715 1716 1717 1718 1719 1720 1721 1722 1723 1724 1725 1726 1727 1728 1729 1730 1731 1732 1733 1734 1735 1736 1737 1738 1739 1740 1741 1742 1743 1744 1745 1746 1747 1748 1749 1750 1751 1752 1753 1754 1755 1756 1757 1758 1759 1760 1761 1762 1763 1764 1765 1766 1767 1768 1769 1770 1771 1772 1773 1774 1775 1776 1777 1778 1779 1780 1781 1782 1783 1784 1785 1786 1787 1788 1789 1790 1791 1792 1793 1794 1795 1796 1797 1798 1799 1800 1801 1802 1803 1804 1805 1806 1807 1808 1809 1810 1811 1812 1813 1814 1815 1816 1817 1818 1819 1820 1821 1822 1823 1824 1825 1826 1827 1828 1829 1830 1831 1832 1833 1834 1835 1836 1837 1838 1839 1840 1841 1842 1843 1844 1845 1846 1847 1848 1849 1850 1851 1852 1853 1854 1855 1856 1857 1858 1859 1860 1861 1862 1863 1864 1865 1866 1867 1868 1869 1870 1871 1872 1873 1874 1875 1876 1877 1878 1879 1880 1881 1882 1883 1884 1885 1886 1887 1888 1889 1890 1891 1892 1893 1894 1895 1896 1897 1898 1899 1900 1901 1902 1903 1904 1905 1906 1907 1908 1909 1910 1911 1912 1913 1914 1915 1916 1917 1918 1919 1920 1921 1922 1923 1924 1925 1926 1927 1928 1929 1930 1931 1932 1933 1934 1935 1936 1937 1938 1939 1940 1941 1942 1943 1944 1945 1946 1947 1948 1949 1950 1951 1952 1953 1954 1955 1956 1957 1958 1959 1960 1961 1962 1963 1964 1965 1966 1967 1968 1969 1970 1971 1972 1973 1974 1975 1976 1977 1978 1979 1980 1981 1982 1983 1984 1985 1986 1987 1988 1989 1990 1991 1992 1993 1994 1995 1996 1997 1998 1999 2000 2001 2002 2003 2004 2005 2006 2007 2008 2009 2010 2011 2012 2013 2014 2015 2016 2017 2018 2019 2020 2021 2022 2023 2024 2025 2026 2027 2028 2029 2030 2031 2032 2033 2034 2035 2036 2037 2038 2039 2040 2041 2042 2043 2044 2045 2046 2047 2048 2049 2050 2051 2052 2053 2054 2055 2056 2057 2058 2059 2060 2061 2062 2063 2064 2065 2066 2067 2068 2069 2070 2071 2072 2073 2074 2075 2076 2077 2078 2079 2080 2081 2082 2083 2084 2085 2086 2087 2088 2089 2090 2091 2092 2093 2094 2095 2096 2097 2098 2099 2100 2101 2102 2103 2104 2105 2106 2107 2108 2109 2110 2111 2112 2113 2114 2115 2116 2117 2118 2119 2120 2121 2122 2123 2124 2125 2126 2127 2128 2129 2130 2131 2132 2133 2134 2135 2136 2137 2138 2139 2140 2141 2142 2143 2144 2145 2146 2147 2148 2149 2150 2151 2152 2153 2154 2155 2156 2157 2158 2159 2160 2161 2162 2163 2164 2165 2166 2167 2168 2169 2170 2171 2172 2173 2174 2175 2176 2177 2178 2179 2180 2181 2182 2183 2184 2185 2186 2187 2188 2189 2190 2191 2192 2193 2194 2195 2196 2197 2198 2199 2200 2201 2202 2203 2204 2205 2206 2207 2208 2209 2210 2211 2212 2213 2214 2215 2216 2217 2218 2219 2220 2221 2222 2223 2224 2225 2226 2227 2228 2229 2230 2231 2232 2233 2234 2235 2236 2237 2238 2239 2240 2241 2242 2243 2244 2245 2246 2247 2248 2249 2250 2251 2252 2253 2254 2255 2256 2257 2258 2259 2260 2261 2262 2263 2264 2265 2266 2267 2268 2269 2270 2271 2272 2273 2274 2275 2276 2277 2278 2279 2280 2281 2282 2283 2284 2285 2286 2287 2288 2289 2290 2291 2292 2293 2294 2295 2296 2297 2298 2299 2300 2301 2302 2303 2304 2305 2306 2307 2308 2309 2310 2311 2312 2313 2314 2315 2316 2317 2318 2319 2320 2321 2322 2323 2324 2325 2326 2327 2328 2329 2330 2331 2332 2333 2334 2335 2336 2337 2338 2339 2340 2341 2342 2343 2344 2345 2346 2347 2348 2349 2350 2351 2352 2353 2354 2355 2356 2357 2358 2359 2360 2361 2362 2363 2364 2365 2366 2367 2368 2369 2370 2371 2372 2373 2374 2375 2376 2377 2378 2379 2380 2381 2382 2383 2384 2385 2386 2387 2388 2389 2390 2391 2392 2393 2394 2395 2396 2397 2398 2399 2400 2401 2402 2403 2404 2405 2406 2407 2408 2409 2410 2411 2412 2413 2414 2415 2416 2417 2418 2419 2420 2421 2422 2423 2424 2425 2426 2427 2428 2429 2430 2431 2432 2433 2434 2435 2436 2437 2438 2439 2440 2441 2442 2443 2444 2445 2446 2447 2448 2449 2450 2451 2452 2453 2454 2455 2456 2457 2458 2459 2460 2461 2462 2463 2464 2465 2466 2467 2468 2469 2470 2471 2472 2473 2474 2475 2476 2477 2478 2479 2480 2481 2482 2483 2484 2485 2486 2487 2488 2489 2490 2491 2492 2493 2494 2495 2496 2497 2498 2499 2500 2501 2502 2503 2504 2505 2506 2507 2508 2509 2510 2511 2512 2513 2514 2515 2516 2517 2518 2519 2520 2521 2522 2523 2524 2525 2526 2527 2528 2529 2530 2531 2532 2533 2534 2535 2536 2537 2538 2539 2540 2541 2542 2543 2544 2545 2546 2547 2548 2549 2550 2551 2552 2553 2554 2555 2556 2557 2558 2559 2560 2561 2562 2563 2564 2565 2566 2567 2568 2569 2570 2571 2572 2573 2574 2575 2576 2577 2578 2579 2580 2581 2582 2583 2584 2585 2586 2587 2588 2589 2590 2591 2592 2593 2594 2595 2596 2597 2598 2599 2600 2601 2602 2603 2604 2605 2606 2607 2608 2609 2610 2611 2612 2613 2614 2615 2616 2617 2618 2619 2620 2621 2622 2623 2624 2625 2626 2627 2628 2629 2630 2631 2632 2633 2634 2635 2636 2637 2638 2639 2640 2641 2642 2643 2644 2645 2646 2647 2648 2649 2650 2651 2652 2653 2654 2655 2656 2657 2658 2659 2660 2661 2662 2663 2664 2665 2666 2667 2668 2669 2670 2671 2672 2673 2674 2675 2676 2677 2678 2679 2680 2681 2682 2683 2684 2685 2686 2687 2688 2689 2690 2691 2692 2693 2694 2695 2696 2697 2698 2699 2700 2701 2702 2703 2704 2705 2706 2707 2708 2709 2710 2711 2712 2713 2714 2715 2716 2717 2718 2719 2720 2721 2722 2723 2724 2725 2726 2727 2728 2729 2730 2731 2732 2733 2734 2735 2736 2737 2738 2739 2740 2741 2742 2743 2744 2745 2746 2747 2748 2749 2750 2751 2752 2753 2754 2755 2756 2757 2758 2759 2760 2761 2762 2763 2764 2765 2766 2767 2768 2769 2770 2771 2772 2773 2774 2775 2776 2777 2778 2779 2780 2781 2782 2783 2784 2785 2786 2787 2788 2789 2790 2791 2792 2793 2794 2795 2796 2797 2798 2799 2800 2801 2802 2803 2804 2805 2806 2807 2808 2809 2810 2811 2812 2813 2814 2815 2816 2817 2818 2819 2820 2821 2822 2823 2824 2825 2826 2827 2828 2829 2830 2831 2832 2833 2834 2835 2836 2837 2838 2839 2840 2841 2842 2843 2844 2845 2846 2847 2848 2849 2850 2851 2852 2853 2854 2855 2856 2857 2858 2859 2860 2861 2862 2863 2864 2865 2866 2867 2868 2869 2870 2871 2872 2873 2874 2875 2876 2877 2878 2879 2880 2881 2882 2883 2884 2885 2886 2887 2888 2889 2890 2891 2892 2893 2894 2895 2896 2897 2898 2899 2900 2901 2902 2903 2904 2905 2906 2907 2908 2909 2910 2911 2912 2913 2914 2915 2916 2917 2918 2919 2920 2921 2922 2923 2924 2925 2926 2927 2928 2929 2930 2931 2932 2933 2934 2935 2936 2937 2938 2939 2940 2941 2942 2943 2944 2945 2946 2947 2948 2949 2950 2951 2952 2953 2954 2955 2956 2957 2958 2959 2960 2961 2962 2963 2964 2965 2966 2967 2968 2969 2970 2971 2972 2973 2974 2975 2976 2977 2978 2979 2980 2981 2982 2983 2984 2985 2986 2987 2988 2989 2990 2991 2992 2993 2994 2995 2996 2997 2998 2999 3000 3001 3002 3003 3004 3005 3006 3007 3008 3009 3010 3011 3012 3013 3014 3015 3016 3017 3018 3019 3020 3021 3022 3023 3024 3025 3026 3027 3028 3029 3030 3031 3032 3033 3034 3035 3036 3037 3038 3039 3040 3041 3042 3043 3044 3045 3046 3047 3048 3049 3050 3051 3052 3053 3054 3055 3056 3057 3058 3059 3060 3061 3062 3063 3064 3065 3066 3067 3068 3069 3070 3071 3072 3073 3074 3075 3076 3077 3078 3079 3080 3081 3082 3083 3084 3085 3086 3087 3088 3089 3090 3091 3092 3093 3094 3095 3096 3097 3098 3099 3100 3101 3102 3103 3104 3105 3106 3107 3108 3109 3110 3111 3112 3113 3114 3115 3116 3117 3118 3119 3120 3121 3122 3123 3124 3125 3126 3127 3128 3129 3130 3131 3132 3133 3134 3135 3136 3137 3138 3139 3140 3141 3142 3143 3144 3145 3146 3147 3148 3149 3150 3151 3152 3153 3154 3155 3156 3157 3158 3159 3160 3161 3162 3163 3164 3165 3166 3167 3168 3169 3170 3171 3172 3173 3174 3175 3176 3177 3178 3179 3180 3181 3182 3183 3184 3185 3186 3187 3188 3189 3190 3191 3192 3193 3194 3195 3196 3197 3198 3199 3200 3201 3202 3203 3204 3205 3206 3207 3208 3209 3210 3211 3212 3213 3214 3215 3216 3217 3218 3219 3220 3221 3222 3223 3224 3225 3226 3227 3228 3229 3230 3231 3232 3233 3234 3235 3236 3237 3238 3239 3240 3241 3242 3243 3244 3245 3246 3247 3248 3249 3250 3251 3252 3253 3254 3255 3256 3257 3258 3259 3260 3261 3262 3263 3264 3265 3266 3267 3268 3269 3270 3271 3272 3273 3274 3275 3276 3277 3278 3279 3280 3281 3282 3283 3284 3285 3286 3287 3288 3289 3290 3291 3292 3293 3294 3295 3296 3297 3298 3299 3300 3301 3302 3303 3304 3305 3306 3307 3308 3309 3310 3311 3312 3313 3314 3315 3316 3317 3318 3319 3320 3321 3322 3323 3324 3325 3326 3327 3328 3329 3330 3331 3332 3333 3334 3335 3336 3337 3338 3339 3340 3341 3342 3343 3344 3345 3346 3347 3348 3349 3350 3351 3352 3353 3354 3355 3356 3357 3358 3359 3360 3361 3362 3363 3364 3365 3366 3367 3368 3369 3370 3371 3372 3373 3374 3375 3376 3377 3378 3379 3380 3381 3382 3383 3384 3385 3386 3387 3388 3389 3390 3391 3392 3393 3394 3395 3396 3397 3398 3399 3400 3401 3402 3403 3404 3405 3406 3407 3408 3409 3410 3411 3412 3413 3414 3415 3416 3417 3418 3419 3420 3421 3422 3423 3424 3425 3426 3427 3428 3429 3430 3431 3432 3433 3434 3435 3436 3437 3438 3439 3440 3441 3442 3443 3444 3445 3446 3447 3448 3449 3450 3451 3452 3453 3454 3455 3456 3457 3458 3459 3460 3461 3462 3463 3464 3465 3466 3467 3468 3469 3470 3471 3472 3473 3474 3475 3476 3477 3478 3479 3480 3481 3482 3483 3484 3485 3486 3487 3488 3489 3490 3491 3492 3493 3494 3495 3496 3497 3498 3499 3500 3501 3502 3503 3504 3505 3506 3507 3508 3509 3510 3511 3512 3513 3514 3515 3516 3517 3518 3519 3520 3521 3522 3523 3524 3525 3526 3527 3528 3529 3530 3531 3532 3533 3534 3535 3536 3537 3538 3539 3540 3541 3542 3543 3544 3545 3546 3547 3548 3549 3550 3551 3552 3553 3554 3555 3556 3557 3558 3559 3560 3561 3562 3563 3564 3565 3566 3567 3568 3569 3570 3571 3572 3573 3574 3575 3576 3577 3578 3579 3580 3581 3582 3583 3584 3585 3586 3587 3588 3589 3590 3591 3592 3593 3594 3595 3596 3597 3598 3599 3600 3601 3602 3603 3604 3605 3606 3607 3608 3609 3610 3611 3612 3613 3614 3615 3616 3617 3618 3619 3620 3621 3622 3623 3624 3625 3626 3627 3628 3629 3630 3631 3632 3633 3634 3635 3636 3637 3638 3639 3640 3641 3642 3643 3644 3645 3646 3647 3648 3649 3650 3651 3652 3653 3654 3655 3656 3657 3658 3659 3660 3661 3662 3663 3664 3665 3666 3667 3668 3669 3670 3671 3672 3673 3674 3675 3676 3677 3678 3679 3680 3681 3682 3683 3684 3685 3686 3687 3688 3689 3690 3691 3692 3693 3694 3695 3696 3697 3698 3699 3700 3701 3702 3703 3704 3705 3706 3707 3708 3709 3710 3711 3712 3713 3714 3715 3716 3717 3718 3719 3720 3721 3722 3723 3724 3725 3726 3727 3728 3729 3730 3731 3732 3733 3734 3735 3736 3737 3738 3739 3740 3741 3742 3743 3744 3745 3746 3747 3748 3749 3750 3751 3752 3753 3754 3755 3756 3757 3758 3759 3760 3761 3762 3763 3764 3765 3766 3767 3768 3769 3770 3771
|
# Makefile.in generated by automake 1.16.5 from Makefile.am.
# @configure_input@
# Copyright (C) 1994-2021 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))
pkgdatadir = $(datadir)/@PACKAGE@
pkgincludedir = $(includedir)/@PACKAGE@
pkglibdir = $(libdir)/@PACKAGE@
pkglibexecdir = $(libexecdir)/@PACKAGE@
am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd
install_sh_DATA = $(install_sh) -c -m 644
install_sh_PROGRAM = $(install_sh) -c
install_sh_SCRIPT = $(install_sh) -c
INSTALL_HEADER = $(INSTALL_DATA)
transform = $(program_transform_name)
NORMAL_INSTALL = :
PRE_INSTALL = :
POST_INSTALL = :
NORMAL_UNINSTALL = :
PRE_UNINSTALL = :
POST_UNINSTALL = :
build_triplet = @build@
host_triplet = @host@
bin_PROGRAMS = src/connection-editor/nm-connection-editor$(EXEEXT) \
src/nm-applet$(EXEEXT)
noinst_PROGRAMS = $(am__EXEEXT_2)
check_PROGRAMS = $(am__EXEEXT_1)
TESTS = $(am__EXEEXT_1)
@WITH_WWAN_TRUE@am__append_1 = \
@WITH_WWAN_TRUE@ src/applet-device-broadband.h \
@WITH_WWAN_TRUE@ src/applet-device-broadband.c
subdir = .
ACLOCAL_M4 = $(top_srcdir)/aclocal.m4
am__aclocal_m4_deps = $(top_srcdir)/m4/attributes.m4 \
$(top_srcdir)/m4/compiler_options.m4 \
$(top_srcdir)/m4/gettext.m4 $(top_srcdir)/m4/git-sha-record.m4 \
$(top_srcdir)/m4/glib-makefile.m4 $(top_srcdir)/m4/iconv.m4 \
$(top_srcdir)/m4/intlmacosx.m4 $(top_srcdir)/m4/lib-ld.m4 \
$(top_srcdir)/m4/lib-link.m4 $(top_srcdir)/m4/lib-prefix.m4 \
$(top_srcdir)/m4/libtool.m4 $(top_srcdir)/m4/ltoptions.m4 \
$(top_srcdir)/m4/ltsugar.m4 $(top_srcdir)/m4/ltversion.m4 \
$(top_srcdir)/m4/lt~obsolete.m4 $(top_srcdir)/m4/nls.m4 \
$(top_srcdir)/m4/po.m4 $(top_srcdir)/m4/progtest.m4 \
$(top_srcdir)/configure.ac
am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \
$(ACLOCAL_M4)
DIST_COMMON = $(srcdir)/Makefile.am $(top_srcdir)/configure \
$(am__configure_deps) $(am__DIST_COMMON)
am__CONFIG_DISTCLEAN_FILES = config.status config.cache config.log \
configure.lineno config.status.lineno
mkinstalldirs = $(install_sh) -d
CONFIG_HEADER = config.h
CONFIG_CLEAN_FILES = man/nm-applet.1 man/nm-connection-editor.1 \
org.gnome.nm-applet.gschema.xml
CONFIG_CLEAN_VPATH_FILES =
am__installdirs = "$(DESTDIR)$(bindir)" "$(DESTDIR)$(libdir)" \
"$(DESTDIR)$(man1dir)" "$(DESTDIR)$(appdatadir)" \
"$(DESTDIR)$(applicationsdir)" "$(DESTDIR)$(autostartdir)" \
"$(DESTDIR)$(convertdir)" "$(DESTDIR)$(desktopdir)" \
"$(DESTDIR)$(icon16dir)" "$(DESTDIR)$(icon22dir)" \
"$(DESTDIR)$(icon32dir)" "$(DESTDIR)$(icon48dir)" \
"$(DESTDIR)$(iconscalabledir)" "$(DESTDIR)$(pkgconfigdir)"
am__EXEEXT_1 = src/utils/tests/test-utils$(EXEEXT)
am__EXEEXT_2 = src/tests/ethernet-dialog$(EXEEXT)
PROGRAMS = $(bin_PROGRAMS) $(noinst_PROGRAMS)
am__vpath_adj_setup = srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`;
am__vpath_adj = case $$p in \
$(srcdir)/*) f=`echo "$$p" | sed "s|^$$srcdirstrip/||"`;; \
*) f=$$p;; \
esac;
am__strip_dir = f=`echo $$p | sed -e 's|^.*/||'`;
am__install_max = 40
am__nobase_strip_setup = \
srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*|]/\\\\&/g'`
am__nobase_strip = \
for p in $$list; do echo "$$p"; done | sed -e "s|$$srcdirstrip/||"
am__nobase_list = $(am__nobase_strip_setup); \
for p in $$list; do echo "$$p $$p"; done | \
sed "s| $$srcdirstrip/| |;"' / .*\//!s/ .*/ ./; s,\( .*\)/[^/]*$$,\1,' | \
$(AWK) 'BEGIN { files["."] = "" } { files[$$2] = files[$$2] " " $$1; \
if (++n[$$2] == $(am__install_max)) \
{ print $$2, files[$$2]; n[$$2] = 0; files[$$2] = "" } } \
END { for (dir in files) print dir, files[dir] }'
am__base_list = \
sed '$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;s/\n/ /g' | \
sed '$$!N;$$!N;$$!N;$$!N;s/\n/ /g'
am__uninstall_files_from_dir = { \
test -z "$$files" \
|| { test ! -d "$$dir" && test ! -f "$$dir" && test ! -r "$$dir"; } \
|| { echo " ( cd '$$dir' && rm -f" $$files ")"; \
$(am__cd) "$$dir" && rm -f $$files; }; \
}
LTLIBRARIES = $(lib_LTLIBRARIES) $(noinst_LTLIBRARIES)
am__DEPENDENCIES_1 =
src_utils_libutils_libnm_la_DEPENDENCIES = $(am__DEPENDENCIES_1) \
$(am__DEPENDENCIES_1)
am__dirstamp = $(am__leading_dot)dirstamp
am__objects_1 = shared/nm-utils/src_utils_libutils_libnm_la-nm-shared-utils.lo
am_src_utils_libutils_libnm_la_OBJECTS = $(am__objects_1) \
src/utils/libutils_libnm_la-utils.lo
src_utils_libutils_libnm_la_OBJECTS = \
$(am_src_utils_libutils_libnm_la_OBJECTS)
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 =
src_wireless_security_libwireless_security_libnm_la_DEPENDENCIES = \
src/utils/libutils-libnm.la $(am__DEPENDENCIES_1) \
$(am__DEPENDENCIES_1)
am__objects_2 = src/wireless-security/libwireless_security_libnm_la-eap-method.lo
am_src_wireless_security_libwireless_security_libnm_la_OBJECTS = \
$(am__objects_2)
src_wireless_security_libwireless_security_libnm_la_OBJECTS = $(am_src_wireless_security_libwireless_security_libnm_la_OBJECTS)
am__objects_3 = src/connection-editor/nm_connection_editor-nm-connection-editor.$(OBJEXT) \
src/connection-editor/nm_connection_editor-nm-connection-list.$(OBJEXT) \
src/connection-editor/nm_connection_editor-main.$(OBJEXT) \
src/connection-editor/nm_connection_editor-ce-page.$(OBJEXT) \
src/connection-editor/nm_connection_editor-page-general.$(OBJEXT) \
src/connection-editor/nm_connection_editor-page-ethernet.$(OBJEXT) \
src/connection-editor/nm_connection_editor-page-8021x-security.$(OBJEXT) \
src/connection-editor/nm_connection_editor-page-wifi.$(OBJEXT) \
src/connection-editor/nm_connection_editor-page-wifi-security.$(OBJEXT) \
src/connection-editor/nm_connection_editor-page-infiniband.$(OBJEXT) \
src/connection-editor/nm_connection_editor-page-ip-tunnel.$(OBJEXT) \
src/connection-editor/nm_connection_editor-page-ip4.$(OBJEXT) \
src/connection-editor/nm_connection_editor-page-ip6.$(OBJEXT) \
src/connection-editor/nm_connection_editor-page-dsl.$(OBJEXT) \
src/connection-editor/nm_connection_editor-page-macsec.$(OBJEXT) \
src/connection-editor/nm_connection_editor-page-mobile.$(OBJEXT) \
src/connection-editor/nm_connection_editor-page-bluetooth.$(OBJEXT) \
src/connection-editor/nm_connection_editor-page-ppp.$(OBJEXT) \
src/connection-editor/nm_connection_editor-page-proxy.$(OBJEXT) \
src/connection-editor/nm_connection_editor-page-vpn.$(OBJEXT) \
src/connection-editor/nm_connection_editor-page-controller.$(OBJEXT) \
src/connection-editor/nm_connection_editor-page-bond.$(OBJEXT) \
src/connection-editor/nm_connection_editor-page-team.$(OBJEXT) \
src/connection-editor/nm_connection_editor-page-team-port.$(OBJEXT) \
src/connection-editor/nm_connection_editor-page-bridge.$(OBJEXT) \
src/connection-editor/nm_connection_editor-page-bridge-port.$(OBJEXT) \
src/connection-editor/nm_connection_editor-page-vlan.$(OBJEXT) \
src/connection-editor/nm_connection_editor-page-dcb.$(OBJEXT) \
src/connection-editor/nm_connection_editor-page-wireguard.$(OBJEXT) \
src/connection-editor/nm_connection_editor-vpn-helpers.$(OBJEXT) \
src/connection-editor/nm_connection_editor-ip4-routes-dialog.$(OBJEXT) \
src/connection-editor/nm_connection_editor-ip6-routes-dialog.$(OBJEXT) \
src/connection-editor/nm_connection_editor-ppp-auth-methods-dialog.$(OBJEXT) \
src/connection-editor/nm_connection_editor-ce-polkit-button.$(OBJEXT) \
src/connection-editor/nm_connection_editor-ce-polkit.$(OBJEXT) \
src/connection-editor/nm_connection_editor-ce-utils.$(OBJEXT) \
src/connection-editor/nm_connection_editor-connection-helpers.$(OBJEXT)
am_src_connection_editor_nm_connection_editor_OBJECTS = \
$(am__objects_3)
am__objects_4 = src/connection-editor/nm_connection_editor-ce-resources.$(OBJEXT)
nodist_src_connection_editor_nm_connection_editor_OBJECTS = \
$(am__objects_4)
src_connection_editor_nm_connection_editor_OBJECTS = \
$(am_src_connection_editor_nm_connection_editor_OBJECTS) \
$(nodist_src_connection_editor_nm_connection_editor_OBJECTS)
src_connection_editor_nm_connection_editor_DEPENDENCIES = \
src/wireless-security/libwireless-security-libnm.la \
$(am__DEPENDENCIES_1) $(am__DEPENDENCIES_1) \
$(am__DEPENDENCIES_1) $(am__DEPENDENCIES_1) \
$(am__DEPENDENCIES_1)
src_connection_editor_nm_connection_editor_LINK = $(LIBTOOL) \
$(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) \
--mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) \
$(src_connection_editor_nm_connection_editor_LDFLAGS) \
$(LDFLAGS) -o $@
am__src_nm_applet_SOURCES_DIST = shared/nm-utils/nm-compat.c \
src/main.c src/applet.c src/applet.h src/applet-agent.c \
src/applet-agent.h src/applet-vpn-request.c \
src/applet-vpn-request.h src/ethernet-dialog.h \
src/ethernet-dialog.c src/applet-dialogs.h \
src/applet-dialogs.c src/applet-device-ethernet.h \
src/applet-device-ethernet.c src/applet-device-wifi.h \
src/applet-device-wifi.c src/ap-menu-item.h src/ap-menu-item.c \
src/mb-menu-item.h src/mb-menu-item.c src/mobile-helpers.c \
src/mobile-helpers.h src/applet-device-bt.h \
src/applet-device-bt.c src/fallback-icon.h \
src/applet-device-broadband.h src/applet-device-broadband.c
@WITH_WWAN_TRUE@am__objects_5 = src/nm_applet-applet-device-broadband.$(OBJEXT)
am__objects_6 = shared/nm-utils/src_nm_applet-nm-compat.$(OBJEXT) \
src/nm_applet-main.$(OBJEXT) src/nm_applet-applet.$(OBJEXT) \
src/nm_applet-applet-agent.$(OBJEXT) \
src/nm_applet-applet-vpn-request.$(OBJEXT) \
src/nm_applet-ethernet-dialog.$(OBJEXT) \
src/nm_applet-applet-dialogs.$(OBJEXT) \
src/nm_applet-applet-device-ethernet.$(OBJEXT) \
src/nm_applet-applet-device-wifi.$(OBJEXT) \
src/nm_applet-ap-menu-item.$(OBJEXT) \
src/nm_applet-mb-menu-item.$(OBJEXT) \
src/nm_applet-mobile-helpers.$(OBJEXT) \
src/nm_applet-applet-device-bt.$(OBJEXT) $(am__objects_5)
am_src_nm_applet_OBJECTS = $(am__objects_6)
am__objects_7 = src/nm_applet-applet-resources.$(OBJEXT)
nodist_src_nm_applet_OBJECTS = $(am__objects_7)
src_nm_applet_OBJECTS = $(am_src_nm_applet_OBJECTS) \
$(nodist_src_nm_applet_OBJECTS)
src_nm_applet_DEPENDENCIES = \
src/wireless-security/libwireless-security-libnm.la \
$(am__DEPENDENCIES_1) $(am__DEPENDENCIES_1) \
$(am__DEPENDENCIES_1) $(am__DEPENDENCIES_1) \
$(am__DEPENDENCIES_1) $(am__DEPENDENCIES_1)
src_nm_applet_LINK = $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) \
$(LIBTOOLFLAGS) --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) \
$(src_nm_applet_LDFLAGS) $(LDFLAGS) -o $@
am_src_tests_ethernet_dialog_OBJECTS = \
src/tests_ethernet_dialog-applet-resources.$(OBJEXT) \
src/tests_ethernet_dialog-applet-dialogs.$(OBJEXT) \
src/tests_ethernet_dialog-ethernet-dialog.$(OBJEXT) \
src/tests/ethernet_dialog-ethernet-dialog.$(OBJEXT)
src_tests_ethernet_dialog_OBJECTS = \
$(am_src_tests_ethernet_dialog_OBJECTS)
am__DEPENDENCIES_2 = \
src/wireless-security/libwireless-security-libnm.la \
$(am__DEPENDENCIES_1) $(am__DEPENDENCIES_1) \
$(am__DEPENDENCIES_1) $(am__DEPENDENCIES_1) \
$(am__DEPENDENCIES_1) $(am__DEPENDENCIES_1)
src_tests_ethernet_dialog_DEPENDENCIES = $(am__DEPENDENCIES_2)
am_src_utils_tests_test_utils_OBJECTS = \
src/utils/tests/test_utils-test-utils.$(OBJEXT)
src_utils_tests_test_utils_OBJECTS = \
$(am_src_utils_tests_test_utils_OBJECTS)
src_utils_tests_test_utils_DEPENDENCIES = src/utils/libutils-libnm.la \
$(am__DEPENDENCIES_1) $(am__DEPENDENCIES_1)
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@
depcomp = $(SHELL) $(top_srcdir)/depcomp
am__maybe_remake_depfiles = depfiles
am__depfiles_remade = \
shared/nm-utils/$(DEPDIR)/src_nm_applet-nm-compat.Po \
shared/nm-utils/$(DEPDIR)/src_utils_libutils_libnm_la-nm-shared-utils.Plo \
src/$(DEPDIR)/nm_applet-ap-menu-item.Po \
src/$(DEPDIR)/nm_applet-applet-agent.Po \
src/$(DEPDIR)/nm_applet-applet-device-broadband.Po \
src/$(DEPDIR)/nm_applet-applet-device-bt.Po \
src/$(DEPDIR)/nm_applet-applet-device-ethernet.Po \
src/$(DEPDIR)/nm_applet-applet-device-wifi.Po \
src/$(DEPDIR)/nm_applet-applet-dialogs.Po \
src/$(DEPDIR)/nm_applet-applet-resources.Po \
src/$(DEPDIR)/nm_applet-applet-vpn-request.Po \
src/$(DEPDIR)/nm_applet-applet.Po \
src/$(DEPDIR)/nm_applet-ethernet-dialog.Po \
src/$(DEPDIR)/nm_applet-main.Po \
src/$(DEPDIR)/nm_applet-mb-menu-item.Po \
src/$(DEPDIR)/nm_applet-mobile-helpers.Po \
src/$(DEPDIR)/tests_ethernet_dialog-applet-dialogs.Po \
src/$(DEPDIR)/tests_ethernet_dialog-applet-resources.Po \
src/$(DEPDIR)/tests_ethernet_dialog-ethernet-dialog.Po \
src/connection-editor/$(DEPDIR)/nm_connection_editor-ce-page.Po \
src/connection-editor/$(DEPDIR)/nm_connection_editor-ce-polkit-button.Po \
src/connection-editor/$(DEPDIR)/nm_connection_editor-ce-polkit.Po \
src/connection-editor/$(DEPDIR)/nm_connection_editor-ce-resources.Po \
src/connection-editor/$(DEPDIR)/nm_connection_editor-ce-utils.Po \
src/connection-editor/$(DEPDIR)/nm_connection_editor-connection-helpers.Po \
src/connection-editor/$(DEPDIR)/nm_connection_editor-ip4-routes-dialog.Po \
src/connection-editor/$(DEPDIR)/nm_connection_editor-ip6-routes-dialog.Po \
src/connection-editor/$(DEPDIR)/nm_connection_editor-main.Po \
src/connection-editor/$(DEPDIR)/nm_connection_editor-nm-connection-editor.Po \
src/connection-editor/$(DEPDIR)/nm_connection_editor-nm-connection-list.Po \
src/connection-editor/$(DEPDIR)/nm_connection_editor-page-8021x-security.Po \
src/connection-editor/$(DEPDIR)/nm_connection_editor-page-bluetooth.Po \
src/connection-editor/$(DEPDIR)/nm_connection_editor-page-bond.Po \
src/connection-editor/$(DEPDIR)/nm_connection_editor-page-bridge-port.Po \
src/connection-editor/$(DEPDIR)/nm_connection_editor-page-bridge.Po \
src/connection-editor/$(DEPDIR)/nm_connection_editor-page-controller.Po \
src/connection-editor/$(DEPDIR)/nm_connection_editor-page-dcb.Po \
src/connection-editor/$(DEPDIR)/nm_connection_editor-page-dsl.Po \
src/connection-editor/$(DEPDIR)/nm_connection_editor-page-ethernet.Po \
src/connection-editor/$(DEPDIR)/nm_connection_editor-page-general.Po \
src/connection-editor/$(DEPDIR)/nm_connection_editor-page-infiniband.Po \
src/connection-editor/$(DEPDIR)/nm_connection_editor-page-ip-tunnel.Po \
src/connection-editor/$(DEPDIR)/nm_connection_editor-page-ip4.Po \
src/connection-editor/$(DEPDIR)/nm_connection_editor-page-ip6.Po \
src/connection-editor/$(DEPDIR)/nm_connection_editor-page-macsec.Po \
src/connection-editor/$(DEPDIR)/nm_connection_editor-page-mobile.Po \
src/connection-editor/$(DEPDIR)/nm_connection_editor-page-ppp.Po \
src/connection-editor/$(DEPDIR)/nm_connection_editor-page-proxy.Po \
src/connection-editor/$(DEPDIR)/nm_connection_editor-page-team-port.Po \
src/connection-editor/$(DEPDIR)/nm_connection_editor-page-team.Po \
src/connection-editor/$(DEPDIR)/nm_connection_editor-page-vlan.Po \
src/connection-editor/$(DEPDIR)/nm_connection_editor-page-vpn.Po \
src/connection-editor/$(DEPDIR)/nm_connection_editor-page-wifi-security.Po \
src/connection-editor/$(DEPDIR)/nm_connection_editor-page-wifi.Po \
src/connection-editor/$(DEPDIR)/nm_connection_editor-page-wireguard.Po \
src/connection-editor/$(DEPDIR)/nm_connection_editor-ppp-auth-methods-dialog.Po \
src/connection-editor/$(DEPDIR)/nm_connection_editor-vpn-helpers.Po \
src/tests/$(DEPDIR)/ethernet_dialog-ethernet-dialog.Po \
src/utils/$(DEPDIR)/libutils_libnm_la-utils.Plo \
src/utils/tests/$(DEPDIR)/test_utils-test-utils.Po \
src/wireless-security/$(DEPDIR)/libwireless_security_libnm_la-eap-method.Plo
am__mv = mv -f
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 = $(src_utils_libutils_libnm_la_SOURCES) \
$(src_wireless_security_libwireless_security_libnm_la_SOURCES) \
$(src_connection_editor_nm_connection_editor_SOURCES) \
$(nodist_src_connection_editor_nm_connection_editor_SOURCES) \
$(src_nm_applet_SOURCES) $(nodist_src_nm_applet_SOURCES) \
$(src_tests_ethernet_dialog_SOURCES) \
$(src_utils_tests_test_utils_SOURCES)
DIST_SOURCES = $(src_utils_libutils_libnm_la_SOURCES) \
$(src_wireless_security_libwireless_security_libnm_la_SOURCES) \
$(src_connection_editor_nm_connection_editor_SOURCES) \
$(am__src_nm_applet_SOURCES_DIST) \
$(src_tests_ethernet_dialog_SOURCES) \
$(src_utils_tests_test_utils_SOURCES)
RECURSIVE_TARGETS = all-recursive check-recursive cscopelist-recursive \
ctags-recursive dvi-recursive html-recursive info-recursive \
install-data-recursive install-dvi-recursive \
install-exec-recursive install-html-recursive \
install-info-recursive install-pdf-recursive \
install-ps-recursive install-recursive installcheck-recursive \
installdirs-recursive pdf-recursive ps-recursive \
tags-recursive uninstall-recursive
am__can_run_installinfo = \
case $$AM_UPDATE_INFO_DIR in \
n|no|NO) false;; \
*) (install-info --version) >/dev/null 2>&1;; \
esac
man1dir = $(mandir)/man1
NROFF = nroff
MANS = $(man_MANS)
DATA = $(appdata_DATA) $(applications_DATA) $(autostart_DATA) \
$(convert_DATA) $(desktop_DATA) $(icon16_DATA) $(icon22_DATA) \
$(icon32_DATA) $(icon48_DATA) $(iconscalable_DATA) \
$(pkgconfig_DATA)
RECURSIVE_CLEAN_TARGETS = mostlyclean-recursive clean-recursive \
distclean-recursive maintainer-clean-recursive
am__recursive_targets = \
$(RECURSIVE_TARGETS) \
$(RECURSIVE_CLEAN_TARGETS) \
$(am__extra_recursive_targets)
AM_RECURSIVE_TARGETS = $(am__recursive_targets:-recursive=) TAGS CTAGS \
cscope check recheck distdir distdir-am dist dist-all \
distcheck
am__tagged_files = $(HEADERS) $(SOURCES) $(TAGS_FILES) $(LISP) \
config.h.in
# 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__recheck_rx = ^[ ]*:recheck:[ ]*
am__global_test_result_rx = ^[ ]*:global-test-result:[ ]*
am__copy_in_global_log_rx = ^[ ]*:copy-in-global-log:[ ]*
# A command that, given a newline-separated list of test names on the
# standard input, print the name of the tests that are to be re-run
# upon "make recheck".
am__list_recheck_tests = $(AWK) '{ \
recheck = 1; \
while ((rc = (getline line < ($$0 ".trs"))) != 0) \
{ \
if (rc < 0) \
{ \
if ((getline line2 < ($$0 ".log")) < 0) \
recheck = 0; \
break; \
} \
else if (line ~ /$(am__recheck_rx)[nN][Oo]/) \
{ \
recheck = 0; \
break; \
} \
else if (line ~ /$(am__recheck_rx)[yY][eE][sS]/) \
{ \
break; \
} \
}; \
if (recheck) \
print $$0; \
close ($$0 ".trs"); \
close ($$0 ".log"); \
}'
# A command that, given a newline-separated list of test names on the
# standard input, create the global log from their .trs and .log files.
am__create_global_log = $(AWK) ' \
function fatal(msg) \
{ \
print "fatal: making $@: " msg | "cat >&2"; \
exit 1; \
} \
function rst_section(header) \
{ \
print header; \
len = length(header); \
for (i = 1; i <= len; i = i + 1) \
printf "="; \
printf "\n\n"; \
} \
{ \
copy_in_global_log = 1; \
global_test_result = "RUN"; \
while ((rc = (getline line < ($$0 ".trs"))) != 0) \
{ \
if (rc < 0) \
fatal("failed to read from " $$0 ".trs"); \
if (line ~ /$(am__global_test_result_rx)/) \
{ \
sub("$(am__global_test_result_rx)", "", line); \
sub("[ ]*$$", "", line); \
global_test_result = line; \
} \
else if (line ~ /$(am__copy_in_global_log_rx)[nN][oO]/) \
copy_in_global_log = 0; \
}; \
if (copy_in_global_log) \
{ \
rst_section(global_test_result ": " $$0); \
while ((rc = (getline line < ($$0 ".log"))) != 0) \
{ \
if (rc < 0) \
fatal("failed to read from " $$0 ".log"); \
print line; \
}; \
printf "\n"; \
}; \
close ($$0 ".trs"); \
close ($$0 ".log"); \
}'
# Restructured Text title.
am__rst_title = { sed 's/.*/ & /;h;s/./=/g;p;x;s/ *$$//;p;g' && echo; }
# Solaris 10 'make', and several other traditional 'make' implementations,
# pass "-e" to $(SHELL), and POSIX 2008 even requires this. Work around it
# by disabling -e (using the XSI extension "set +e") if it's set.
am__sh_e_setup = case $$- in *e*) set +e;; esac
# Default flags passed to test drivers.
am__common_driver_flags = \
--color-tests "$$am__color_tests" \
--enable-hard-errors "$$am__enable_hard_errors" \
--expect-failure "$$am__expect_failure"
# To be inserted before the command running the test. Creates the
# directory for the log if needed. Stores in $dir the directory
# containing $f, in $tst the test, in $log the log. Executes the
# developer- defined test setup AM_TESTS_ENVIRONMENT (if any), and
# passes TESTS_ENVIRONMENT. Set up options for the wrapper that
# will run the test scripts (or their associated LOG_COMPILER, if
# thy have one).
am__check_pre = \
$(am__sh_e_setup); \
$(am__vpath_adj_setup) $(am__vpath_adj) \
$(am__tty_colors); \
srcdir=$(srcdir); export srcdir; \
case "$@" in \
*/*) am__odir=`echo "./$@" | sed 's|/[^/]*$$||'`;; \
*) am__odir=.;; \
esac; \
test "x$$am__odir" = x"." || test -d "$$am__odir" \
|| $(MKDIR_P) "$$am__odir" || exit $$?; \
if test -f "./$$f"; then dir=./; \
elif test -f "$$f"; then dir=; \
else dir="$(srcdir)/"; fi; \
tst=$$dir$$f; log='$@'; \
if test -n '$(DISABLE_HARD_ERRORS)'; then \
am__enable_hard_errors=no; \
else \
am__enable_hard_errors=yes; \
fi; \
case " $(XFAIL_TESTS) " in \
*[\ \ ]$$f[\ \ ]* | *[\ \ ]$$dir$$f[\ \ ]*) \
am__expect_failure=yes;; \
*) \
am__expect_failure=no;; \
esac; \
$(AM_TESTS_ENVIRONMENT) $(TESTS_ENVIRONMENT)
# A shell command to get the names of the tests scripts with any registered
# extension removed (i.e., equivalently, the names of the test logs, with
# the '.log' extension removed). The result is saved in the shell variable
# '$bases'. This honors runtime overriding of TESTS and TEST_LOGS. Sadly,
# we cannot use something simpler, involving e.g., "$(TEST_LOGS:.log=)",
# since that might cause problem with VPATH rewrites for suffix-less tests.
# See also 'test-harness-vpath-rewrite.sh' and 'test-trs-basic.sh'.
am__set_TESTS_bases = \
bases='$(TEST_LOGS)'; \
bases=`for i in $$bases; do echo $$i; done | sed 's/\.log$$//'`; \
bases=`echo $$bases`
AM_TESTSUITE_SUMMARY_HEADER = ' for $(PACKAGE_STRING)'
RECHECK_LOGS = $(TEST_LOGS)
TEST_SUITE_LOG = test-suite.log
TEST_EXTENSIONS = @EXEEXT@ .test
LOG_DRIVER = $(SHELL) $(top_srcdir)/test-driver
LOG_COMPILE = $(LOG_COMPILER) $(AM_LOG_FLAGS) $(LOG_FLAGS)
am__set_b = \
case '$@' in \
*/*) \
case '$*' in \
*/*) b='$*';; \
*) b=`echo '$@' | sed 's/\.log$$//'`; \
esac;; \
*) \
b='$*';; \
esac
am__test_logs1 = $(TESTS:=.log)
am__test_logs2 = $(am__test_logs1:@EXEEXT@.log=.log)
TEST_LOGS = $(am__test_logs2:.test.log=.log)
TEST_LOG_DRIVER = $(SHELL) $(top_srcdir)/test-driver
TEST_LOG_COMPILE = $(TEST_LOG_COMPILER) $(AM_TEST_LOG_FLAGS) \
$(TEST_LOG_FLAGS)
DIST_SUBDIRS = $(SUBDIRS)
am__DIST_COMMON = $(srcdir)/Makefile.in $(srcdir)/config.h.in \
$(srcdir)/org.gnome.nm-applet.gschema.xml.in \
$(top_srcdir)/man/nm-applet.1.in \
$(top_srcdir)/man/nm-connection-editor.1.in ABOUT-NLS AUTHORS \
COPYING NEWS README compile config.guess config.rpath \
config.sub depcomp install-sh ltmain.sh missing test-driver
DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST)
distdir = $(PACKAGE)-$(VERSION)
top_distdir = $(distdir)
am__remove_distdir = \
if test -d "$(distdir)"; then \
find "$(distdir)" -type d ! -perm -200 -exec chmod u+w {} ';' \
&& rm -rf "$(distdir)" \
|| { sleep 5 && rm -rf "$(distdir)"; }; \
else :; fi
am__post_remove_distdir = $(am__remove_distdir)
am__relativize = \
dir0=`pwd`; \
sed_first='s,^\([^/]*\)/.*$$,\1,'; \
sed_rest='s,^[^/]*/*,,'; \
sed_last='s,^.*/\([^/]*\)$$,\1,'; \
sed_butlast='s,/*[^/]*$$,,'; \
while test -n "$$dir1"; do \
first=`echo "$$dir1" | sed -e "$$sed_first"`; \
if test "$$first" != "."; then \
if test "$$first" = ".."; then \
dir2=`echo "$$dir0" | sed -e "$$sed_last"`/"$$dir2"; \
dir0=`echo "$$dir0" | sed -e "$$sed_butlast"`; \
else \
first2=`echo "$$dir2" | sed -e "$$sed_first"`; \
if test "$$first2" = "$$first"; then \
dir2=`echo "$$dir2" | sed -e "$$sed_rest"`; \
else \
dir2="../$$dir2"; \
fi; \
dir0="$$dir0"/"$$first"; \
fi; \
fi; \
dir1=`echo "$$dir1" | sed -e "$$sed_rest"`; \
done; \
reldir="$$dir2"
GZIP_ENV = --best
DIST_ARCHIVES = $(distdir).tar.xz
DIST_TARGETS = dist-xz
# Exists only to be overridden by the user if desired.
AM_DISTCHECK_DVI_TARGET = dvi
distuninstallcheck_listfiles = find . -type f -print
am__distuninstallcheck_listfiles = $(distuninstallcheck_listfiles) \
| sed 's|^\./|$(prefix)/|' | grep -v '$(infodir)/dir$$'
distcleancheck_listfiles = find . -type f -print
ACLOCAL = @ACLOCAL@
AMTAR = @AMTAR@
AM_DEFAULT_VERBOSITY = @AM_DEFAULT_VERBOSITY@
APPINDICATOR_CFLAGS = @APPINDICATOR_CFLAGS@
APPINDICATOR_LIBS = @APPINDICATOR_LIBS@
AR = @AR@
AUTOCONF = @AUTOCONF@
AUTOHEADER = @AUTOHEADER@
AUTOMAKE = @AUTOMAKE@
AWK = @AWK@
CC = @CC@
CCDEPMODE = @CCDEPMODE@
CFLAGS = @CFLAGS@
CPP = @CPP@
CPPFLAGS = @CPPFLAGS@
CSCOPE = @CSCOPE@
CTAGS = @CTAGS@
CYGPATH_W = @CYGPATH_W@
DBUSMENU_CFLAGS = @DBUSMENU_CFLAGS@
DBUSMENU_LIBS = @DBUSMENU_LIBS@
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@
GETTEXT_MACRO_VERSION = @GETTEXT_MACRO_VERSION@
GETTEXT_PACKAGE = @GETTEXT_PACKAGE@
GLIB_CFLAGS = @GLIB_CFLAGS@
GLIB_COMPILE_RESOURCES = @GLIB_COMPILE_RESOURCES@
GLIB_COMPILE_SCHEMAS = @GLIB_COMPILE_SCHEMAS@
GLIB_GENMARSHAL = @GLIB_GENMARSHAL@
GLIB_LIBS = @GLIB_LIBS@
GLIB_MAKEFILE = @GLIB_MAKEFILE@
GLIB_MKENUMS = @GLIB_MKENUMS@
GMSGFMT = @GMSGFMT@
GMSGFMT_015 = @GMSGFMT_015@
GREP = @GREP@
GSETTINGS_DISABLE_SCHEMAS_COMPILE = @GSETTINGS_DISABLE_SCHEMAS_COMPILE@
GTK3_CFLAGS = @GTK3_CFLAGS@
GTK3_LIBS = @GTK3_LIBS@
INSTALL = @INSTALL@
INSTALL_DATA = @INSTALL_DATA@
INSTALL_PROGRAM = @INSTALL_PROGRAM@
INSTALL_SCRIPT = @INSTALL_SCRIPT@
INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@
INTLLIBS = @INTLLIBS@
INTL_MACOSX_LIBS = @INTL_MACOSX_LIBS@
JANSSON_CFLAGS = @JANSSON_CFLAGS@
JANSSON_LIBS = @JANSSON_LIBS@
LD = @LD@
LDFLAGS = @LDFLAGS@
LIBICONV = @LIBICONV@
LIBINTL = @LIBINTL@
LIBNMA_CFLAGS = @LIBNMA_CFLAGS@
LIBNMA_LIBS = @LIBNMA_LIBS@
LIBNM_CFLAGS = @LIBNM_CFLAGS@
LIBNM_LIBS = @LIBNM_LIBS@
LIBOBJS = @LIBOBJS@
LIBS = @LIBS@
LIBSECRET_CFLAGS = @LIBSECRET_CFLAGS@
LIBSECRET_LIBS = @LIBSECRET_LIBS@
LIBTOOL = @LIBTOOL@
LIPO = @LIPO@
LN_S = @LN_S@
LTLIBICONV = @LTLIBICONV@
LTLIBINTL = @LTLIBINTL@
LTLIBOBJS = @LTLIBOBJS@
LT_SYS_LIBRARY_PATH = @LT_SYS_LIBRARY_PATH@
MAINT = @MAINT@
MAKEINFO = @MAKEINFO@
MANIFEST_TOOL = @MANIFEST_TOOL@
MKDIR_P = @MKDIR_P@
MM_GLIB_CFLAGS = @MM_GLIB_CFLAGS@
MM_GLIB_LIBS = @MM_GLIB_LIBS@
MSGFMT = @MSGFMT@
MSGFMT_015 = @MSGFMT_015@
MSGMERGE = @MSGMERGE@
NM = @NM@
NMEDIT = @NMEDIT@
OBJDUMP = @OBJDUMP@
OBJEXT = @OBJEXT@
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@
POSUB = @POSUB@
RANLIB = @RANLIB@
SED = @SED@
SELINUX_CFLAGS = @SELINUX_CFLAGS@
SELINUX_LIBS = @SELINUX_LIBS@
SET_MAKE = @SET_MAKE@
SHELL = @SHELL@
STRIP = @STRIP@
USE_NLS = @USE_NLS@
VERSION = @VERSION@
XGETTEXT = @XGETTEXT@
XGETTEXT_015 = @XGETTEXT_015@
XGETTEXT_EXTRA_OPTIONS = @XGETTEXT_EXTRA_OPTIONS@
abs_builddir = @abs_builddir@
abs_srcdir = @abs_srcdir@
abs_top_builddir = @abs_top_builddir@
abs_top_srcdir = @abs_top_srcdir@
ac_ct_AR = @ac_ct_AR@
ac_ct_CC = @ac_ct_CC@
ac_ct_DUMPBIN = @ac_ct_DUMPBIN@
am__include = @am__include@
am__leading_dot = @am__leading_dot@
am__quote = @am__quote@
am__tar = @am__tar@
am__untar = @am__untar@
bindir = @bindir@
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@
gsettingsschemadir = @gsettingsschemadir@
has_file = @has_file@
has_find = @has_find@
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@
ACLOCAL_AMFLAGS = -I m4 ${ACLOCAL_FLAGS}
AUTOMAKE_OPTIONS = subdir-objects
BUILT_SOURCES =
lib_LTLIBRARIES =
noinst_LTLIBRARIES = src/utils/libutils-libnm.la \
src/wireless-security/libwireless-security-libnm.la
###############################################################################
check_PROGRAMS_norun = src/tests/ethernet-dialog
check_programs = src/utils/tests/test-utils
check_local =
###############################################################################
EXTRA_DIST = $(icon16_DATA) $(icon22_DATA) $(icon32_DATA) \
$(icon48_DATA) $(iconscalable_DATA) icons/meson.build \
src/utils/meson.build src/tests/meson.build \
src/wireless-security/meson.build \
src/connection-editor/ce-ip4-routes.ui \
src/connection-editor/ce-ip6-routes.ui \
src/connection-editor/ce-new-connection.ui \
src/connection-editor/ce-page-bluetooth.ui \
src/connection-editor/ce-page-bond.ui \
src/connection-editor/ce-page-bridge-port.ui \
src/connection-editor/ce-page-bridge.ui \
src/connection-editor/ce-page-dcb.ui \
src/connection-editor/ce-page-dsl.ui \
src/connection-editor/ce-page-ethernet.ui \
src/connection-editor/ce-page-general.ui \
src/connection-editor/ce-page-infiniband.ui \
src/connection-editor/ce-page-ip4.ui \
src/connection-editor/ce-page-ip6.ui \
src/connection-editor/ce-page-ip-tunnel.ui \
src/connection-editor/ce-page-macsec.ui \
src/connection-editor/ce-page-mobile.ui \
src/connection-editor/ce-page-ppp.ui \
src/connection-editor/ce-page-proxy.ui \
src/connection-editor/ce-page-team-port.ui \
src/connection-editor/ce-page-team.ui \
src/connection-editor/ce-page-vlan.ui \
src/connection-editor/ce-page-wifi-security.ui \
src/connection-editor/ce-page-wifi.ui \
src/connection-editor/ce-page-wireguard.ui \
src/connection-editor/ce-ppp-auth-methods.ui \
src/connection-editor/gtk/menus.ui \
src/connection-editor/nm-connection-editor.ui \
src/connection-editor/nm-connection-list.ui \
src/connection-editor/ce.gresource.xml \
src/connection-editor/meson.build src/8021x.ui \
src/gsm-unlock.ui src/info.ui src/applet.gresource.xml \
src/meson.build shared/nm-utils/gsystem-local-alloc.h \
shared/nm-utils/nm-compat.c shared/nm-utils/nm-compat.h \
shared/nm-utils/nm-glib.h shared/nm-utils/nm-macros-internal.h \
shared/nm-utils/nm-shared-utils.c \
shared/nm-utils/nm-shared-utils.h \
shared/nm-utils/nm-test-utils.h \
shared/nm-utils/nm-vpn-editor-plugin-call.h \
shared/nm-default.h shared/nm-libnm-compat.h \
shared/meson.build $(NULL) man/meson.build \
linker-script-binary.ver CONTRIBUTING Makefile.glib autogen.sh \
meson.build meson_options.txt meson_post_install.py \
config.h.meson po/meson.build $(convert_DATA) \
$(appdata_in_files) $(autostart_in_files) $(desktop_in_files)
CLEANFILES = $(connection_editor_h_gen) $(connection_editor_c_gen) \
$(nm_applet_h_gen) $(nm_applet_c_gen) $(typelib_DATA) \
$(autostart_DATA) $(desktop_DATA) $(appdata_DATA) \
$(BUILT_SOURCES)
DISTCLEANFILES =
DISTCHECK_CONFIGURE_FLAGS = \
--disable-dependency-tracking \
--enable-more-warnings=error \
--with-wwan \
--with-team
###############################################################################
man_MANS = man/nm-applet.1 man/nm-connection-editor.1
pkgconfig_DATA =
pkgconfigdir = $(libdir)/pkgconfig
SUBDIRS = \
. \
po
dflt_cppflags = -std=gnu99
###############################################################################
icon16dir = $(datadir)/icons/hicolor/16x16/apps
icon16_DATA = \
icons/16/nm-device-wired.png \
icons/16/nm-no-connection.png \
icons/16/nm-vpn-standalone-lock.png \
$(NULL)
icon22dir = $(datadir)/icons/hicolor/22x22/apps
icon22_DATA = \
icons/22/nm-adhoc.png \
icons/22/nm-device-wired-secure.png \
icons/22/nm-device-wired.png \
icons/22/nm-device-wwan.png \
icons/22/nm-insecure-warn.png \
icons/22/nm-mb-roam.png \
icons/22/nm-no-connection.png \
icons/22/nm-secure-lock.png \
icons/22/nm-signal-00-secure.png \
icons/22/nm-signal-00.png \
icons/22/nm-signal-100-secure.png \
icons/22/nm-signal-100.png \
icons/22/nm-signal-25-secure.png \
icons/22/nm-signal-25.png \
icons/22/nm-signal-50-secure.png \
icons/22/nm-signal-50.png \
icons/22/nm-signal-75-secure.png \
icons/22/nm-signal-75.png \
icons/22/nm-stage01-connecting01.png \
icons/22/nm-stage01-connecting02.png \
icons/22/nm-stage01-connecting03.png \
icons/22/nm-stage01-connecting04.png \
icons/22/nm-stage01-connecting05.png \
icons/22/nm-stage01-connecting06.png \
icons/22/nm-stage01-connecting07.png \
icons/22/nm-stage01-connecting08.png \
icons/22/nm-stage01-connecting09.png \
icons/22/nm-stage01-connecting10.png \
icons/22/nm-stage01-connecting11.png \
icons/22/nm-stage02-connecting01.png \
icons/22/nm-stage02-connecting02.png \
icons/22/nm-stage02-connecting03.png \
icons/22/nm-stage02-connecting04.png \
icons/22/nm-stage02-connecting05.png \
icons/22/nm-stage02-connecting06.png \
icons/22/nm-stage02-connecting07.png \
icons/22/nm-stage02-connecting08.png \
icons/22/nm-stage02-connecting09.png \
icons/22/nm-stage02-connecting10.png \
icons/22/nm-stage02-connecting11.png \
icons/22/nm-stage03-connecting01.png \
icons/22/nm-stage03-connecting02.png \
icons/22/nm-stage03-connecting03.png \
icons/22/nm-stage03-connecting04.png \
icons/22/nm-stage03-connecting05.png \
icons/22/nm-stage03-connecting06.png \
icons/22/nm-stage03-connecting07.png \
icons/22/nm-stage03-connecting08.png \
icons/22/nm-stage03-connecting09.png \
icons/22/nm-stage03-connecting10.png \
icons/22/nm-stage03-connecting11.png \
icons/22/nm-tech-3g.png \
icons/22/nm-tech-cdma-1x.png \
icons/22/nm-tech-edge.png \
icons/22/nm-tech-evdo.png \
icons/22/nm-tech-gprs.png \
icons/22/nm-tech-hspa.png \
icons/22/nm-tech-lte.png \
icons/22/nm-tech-umts.png \
icons/22/nm-vpn-active-lock.png \
icons/22/nm-vpn-connecting01.png \
icons/22/nm-vpn-connecting02.png \
icons/22/nm-vpn-connecting03.png \
icons/22/nm-vpn-connecting04.png \
icons/22/nm-vpn-connecting05.png \
icons/22/nm-vpn-connecting06.png \
icons/22/nm-vpn-connecting07.png \
icons/22/nm-vpn-connecting08.png \
icons/22/nm-vpn-connecting09.png \
icons/22/nm-vpn-connecting10.png \
icons/22/nm-vpn-connecting11.png \
icons/22/nm-vpn-connecting12.png \
icons/22/nm-vpn-connecting13.png \
icons/22/nm-vpn-connecting14.png \
icons/22/nm-wwan-tower.png \
$(NULL)
icon32dir = $(datadir)/icons/hicolor/32x32/apps
icon32_DATA = \
icons/32/nm-device-wired.png \
icons/32/nm-no-connection.png \
$(NULL)
icon48dir = $(datadir)/icons/hicolor/48x48/apps
icon48_DATA = \
icons/48/nm-device-wireless.png \
$(NULL)
iconscalabledir = $(datadir)/icons/hicolor/scalable/apps
iconscalable_DATA = \
icons/scalable/nm-device-wired-secure-symbolic.svg \
icons/scalable/nm-device-wired-symbolic.svg \
icons/scalable/nm-device-wired.svg \
icons/scalable/nm-device-wwan-symbolic.svg \
icons/scalable/nm-no-connection-symbolic.svg \
icons/scalable/nm-no-connection.svg \
icons/scalable/nm-signal-00-secure-symbolic.svg \
icons/scalable/nm-signal-00-symbolic.svg \
icons/scalable/nm-signal-100-secure-symbolic.svg \
icons/scalable/nm-signal-100-symbolic.svg \
icons/scalable/nm-signal-25-secure-symbolic.svg \
icons/scalable/nm-signal-25-symbolic.svg \
icons/scalable/nm-signal-50-secure-symbolic.svg \
icons/scalable/nm-signal-50-symbolic.svg \
icons/scalable/nm-signal-75-secure-symbolic.svg \
icons/scalable/nm-signal-75-symbolic.svg \
icons/scalable/nm-vpn-active-lock-symbolic.svg \
icons/scalable/nm-vpn-connecting01-symbolic.svg \
icons/scalable/nm-vpn-connecting02-symbolic.svg \
icons/scalable/nm-vpn-connecting03-symbolic.svg \
icons/scalable/nm-vpn-connecting04-symbolic.svg \
icons/scalable/nm-vpn-connecting05-symbolic.svg \
icons/scalable/nm-vpn-connecting06-symbolic.svg \
icons/scalable/nm-vpn-connecting07-symbolic.svg \
icons/scalable/nm-vpn-connecting08-symbolic.svg \
icons/scalable/nm-vpn-connecting09-symbolic.svg \
icons/scalable/nm-vpn-connecting10-symbolic.svg \
icons/scalable/nm-vpn-connecting11-symbolic.svg \
icons/scalable/nm-vpn-connecting12-symbolic.svg \
icons/scalable/nm-vpn-connecting13-symbolic.svg \
icons/scalable/nm-vpn-connecting14-symbolic.svg \
icons/scalable/nm-vpn-standalone-lock-symbolic.svg \
$(NULL)
###############################################################################
shared_files = \
shared/nm-utils/nm-shared-utils.c \
shared/nm-utils/nm-shared-utils.h \
$(NULL)
src_utils_libutils_libnm_la_CPPFLAGS = \
$(dflt_cppflags) \
"-I$(srcdir)/shared" \
$(GTK3_CFLAGS) \
$(LIBNM_CFLAGS)
src_utils_libutils_libnm_la_SOURCES = \
$(shared_files) \
src/utils/utils.c \
src/utils/utils.h
src_utils_libutils_libnm_la_LIBADD = \
$(GTK3_LIBS) \
$(LIBNM_LIBS)
src_utils_tests_test_utils_SOURCES = src/utils/tests/test-utils.c
src_utils_tests_test_utils_CPPFLAGS = \
$(dflt_cppflags) \
"-I$(srcdir)/shared/" \
"-I$(srcdir)/src/utils" \
$(GTK3_CFLAGS) \
$(LIBNM_CFLAGS)
src_utils_tests_test_utils_LDADD = \
src/utils/libutils-libnm.la \
$(GTK3_LIBS) \
$(LIBNM_LIBS)
src_tests_ethernet_dialog_SOURCES = \
src/applet-resources.h \
src/applet-resources.c \
src/applet-dialogs.c \
src/applet-dialogs.h \
src/ethernet-dialog.c \
src/ethernet-dialog.h \
src/tests/ethernet-dialog.c
src_tests_ethernet_dialog_CPPFLAGS = \
"-I$(srcdir)/src/" \
$(src_nm_applet_CPPFLAGS)
src_tests_ethernet_dialog_LDADD = \
$(src_nm_applet_LDADD)
###############################################################################
wireless_security_c_real = \
src/wireless-security/eap-method.h \
src/wireless-security/eap-method.c
src_wireless_security_libwireless_security_libnm_la_SOURCES = \
$(wireless_security_c_real)
src_wireless_security_libwireless_security_libnm_la_CPPFLAGS = \
$(dflt_cppflags) \
"-I$(srcdir)/shared" \
$(GTK3_CFLAGS) \
$(LIBNM_CFLAGS)
src_wireless_security_libwireless_security_libnm_la_LIBADD = \
src/utils/libutils-libnm.la \
$(GTK3_LIBS) \
$(LIBNM_LIBS)
connection_editor_h_gen = \
src/connection-editor/ce-resources.h
connection_editor_c_gen = \
src/connection-editor/ce-resources.c
connection_editor_hc_real = \
src/connection-editor/nm-connection-editor.c \
src/connection-editor/nm-connection-editor.h \
src/connection-editor/nm-connection-list.c \
src/connection-editor/nm-connection-list.h \
src/connection-editor/main.c \
src/connection-editor/ce-page.h \
src/connection-editor/ce-page.c \
src/connection-editor/page-general.h \
src/connection-editor/page-general.c \
src/connection-editor/page-ethernet.h \
src/connection-editor/page-ethernet.c \
src/connection-editor/page-8021x-security.h \
src/connection-editor/page-8021x-security.c \
src/connection-editor/page-wifi.h \
src/connection-editor/page-wifi.c \
src/connection-editor/page-wifi-security.h \
src/connection-editor/page-wifi-security.c \
src/connection-editor/page-infiniband.h \
src/connection-editor/page-infiniband.c \
src/connection-editor/page-ip-tunnel.h \
src/connection-editor/page-ip-tunnel.c \
src/connection-editor/page-ip4.h \
src/connection-editor/page-ip4.c \
src/connection-editor/page-ip6.h \
src/connection-editor/page-ip6.c \
src/connection-editor/page-dsl.h \
src/connection-editor/page-dsl.c \
src/connection-editor/page-macsec.h \
src/connection-editor/page-macsec.c \
src/connection-editor/page-mobile.h \
src/connection-editor/page-mobile.c \
src/connection-editor/page-bluetooth.h \
src/connection-editor/page-bluetooth.c \
src/connection-editor/page-ppp.h \
src/connection-editor/page-ppp.c \
src/connection-editor/page-proxy.h \
src/connection-editor/page-proxy.c \
src/connection-editor/page-vpn.h \
src/connection-editor/page-vpn.c \
src/connection-editor/page-controller.h \
src/connection-editor/page-controller.c \
src/connection-editor/page-bond.h \
src/connection-editor/page-bond.c \
src/connection-editor/page-team.h \
src/connection-editor/page-team.c \
src/connection-editor/page-team-port.h \
src/connection-editor/page-team-port.c \
src/connection-editor/page-bridge.h \
src/connection-editor/page-bridge.c \
src/connection-editor/page-bridge-port.h \
src/connection-editor/page-bridge-port.c \
src/connection-editor/page-vlan.h \
src/connection-editor/page-vlan.c \
src/connection-editor/page-dcb.c \
src/connection-editor/page-dcb.h \
src/connection-editor/page-wireguard.h \
src/connection-editor/page-wireguard.c \
src/connection-editor/vpn-helpers.h \
src/connection-editor/vpn-helpers.c \
src/connection-editor/ip4-routes-dialog.h \
src/connection-editor/ip4-routes-dialog.c \
src/connection-editor/ip6-routes-dialog.h \
src/connection-editor/ip6-routes-dialog.c \
src/connection-editor/ppp-auth-methods-dialog.c \
src/connection-editor/ppp-auth-methods-dialog.h \
src/connection-editor/ce-polkit-button.c \
src/connection-editor/ce-polkit-button.h \
src/connection-editor/ce-polkit.c \
src/connection-editor/ce-polkit.h \
src/connection-editor/ce-utils.c \
src/connection-editor/ce-utils.h \
src/connection-editor/connection-helpers.c \
src/connection-editor/connection-helpers.h
src_connection_editor_nm_connection_editor_SOURCES = \
$(connection_editor_hc_real)
nodist_src_connection_editor_nm_connection_editor_SOURCES = \
$(connection_editor_c_gen)
src_connection_editor_nm_connection_editor_CPPFLAGS = \
$(dflt_cppflags) \
-DICONDIR=\""$(datadir)/icons"\" \
-DBINDIR=\""$(bindir)"\" \
-DSYSCONFDIR=\""$(sysconfdir)"\" \
-DLIBDIR=\""$(libdir)"\" \
-DDATADIR=\""$(datadir)"\" \
-DNMALOCALEDIR=\"$(datadir)/locale\" \
"-I$(srcdir)/shared" \
"-I$(srcdir)/src/utils" \
"-I$(srcdir)/src/wireless-security" \
$(GTK3_CFLAGS) \
$(LIBNMA_CFLAGS) \
$(LIBNM_CFLAGS) \
$(JANSSON_CFLAGS) \
$(SELINUX_CFLAGS)
src_connection_editor_nm_connection_editor_LDADD = \
src/wireless-security/libwireless-security-libnm.la \
$(GTK3_LIBS) \
$(LIBNM_LIBS) \
$(LIBNMA_LIBS) \
$(JANSSON_LIBS) \
$(SELINUX_LIBS) \
-lm
EXTRA_src_connection_editor_nm_connection_editor_DEPENDENCIES = linker-script-binary.ver
src_connection_editor_nm_connection_editor_LDFLAGS = \
-Wl,--version-script="$(srcdir)/linker-script-binary.ver"
nm_applet_h_gen = \
src/applet-resources.h
nm_applet_c_gen = \
src/applet-resources.c
nm_applet_hc_real = shared/nm-utils/nm-compat.c src/main.c \
src/applet.c src/applet.h src/applet-agent.c \
src/applet-agent.h src/applet-vpn-request.c \
src/applet-vpn-request.h src/ethernet-dialog.h \
src/ethernet-dialog.c src/applet-dialogs.h \
src/applet-dialogs.c src/applet-device-ethernet.h \
src/applet-device-ethernet.c src/applet-device-wifi.h \
src/applet-device-wifi.c src/ap-menu-item.h src/ap-menu-item.c \
src/mb-menu-item.h src/mb-menu-item.c src/mobile-helpers.c \
src/mobile-helpers.h src/applet-device-bt.h \
src/applet-device-bt.c src/fallback-icon.h $(am__append_1)
src_nm_applet_SOURCES = \
$(nm_applet_hc_real)
nodist_src_nm_applet_SOURCES = \
$(nm_applet_c_gen)
src_nm_applet_CPPFLAGS = \
$(dflt_cppflags) \
-DICONDIR=\""$(datadir)/icons"\" \
-DBINDIR=\""$(bindir)"\" \
-DSYSCONFDIR=\""$(sysconfdir)"\" \
-DLIBEXECDIR=\""$(libexecdir)"\" \
-DAUTOSTARTDIR=\""$(sysconfdir)/xdg/autostart"\" \
-DNMALOCALEDIR=\"$(datadir)/locale\" \
-DG_LOG_DOMAIN=\""nm-applet"\" \
"-I$(srcdir)/shared" \
"-I$(srcdir)/src/utils" \
"-I$(srcdir)/src/wireless-security" \
$(GTK3_CFLAGS) \
$(LIBNMA_CFLAGS) \
$(LIBNM_CFLAGS) \
$(LIBSECRET_CFLAGS) \
$(NOTIFY_CFLAGS) \
$(MM_GLIB_CFLAGS) \
$(APPINDICATOR_CFLAGS)
src_nm_applet_LDADD = \
src/wireless-security/libwireless-security-libnm.la \
$(GTK3_LIBS) \
$(LIBNM_LIBS) \
$(LIBNMA_LIBS) \
$(LIBSECRET_LIBS) \
$(NOTIFY_LIBS) \
$(MM_GLIB_LIBS) \
$(APPINDICATOR_LIBS) \
-lm
EXTRA_src_nm_applet_DEPENDENCIES = linker-script-binary.ver
src_nm_applet_LDFLAGS = \
-Wl,--version-script="$(srcdir)/linker-script-binary.ver"
autostartdir = $(sysconfdir)/xdg/autostart
autostart_in_files = nm-applet.desktop.in
autostart_DATA = $(autostart_in_files:.desktop.in=.desktop)
applicationsdir = $(datadir)/applications
applications_DATA = $(autostart_DATA)
desktopdir = $(datadir)/applications
desktop_in_files = nm-connection-editor.desktop.in
desktop_DATA = $(desktop_in_files:.desktop.in=.desktop)
gsettings_SCHEMAS = org.gnome.nm-applet.gschema.xml
appdatadir = $(datadir)/metainfo
appdata_DATA = $(appdata_in_files:.xml.in=.xml)
appdata_in_files = nm-connection-editor.appdata.xml.in
convertdir = $(datadir)/GConf/gsettings
convert_DATA = nm-applet.convert
all: $(BUILT_SOURCES) config.h
$(MAKE) $(AM_MAKEFLAGS) all-recursive
.SUFFIXES:
.SUFFIXES: .c .lo .log .o .obj .test .test$(EXEEXT) .trs
am--refresh: Makefile
@:
$(srcdir)/Makefile.in: @MAINTAINER_MODE_TRUE@ $(srcdir)/Makefile.am $(am__configure_deps)
@for dep in $?; do \
case '$(am__configure_deps)' in \
*$$dep*) \
echo ' cd $(srcdir) && $(AUTOMAKE) --foreign'; \
$(am__cd) $(srcdir) && $(AUTOMAKE) --foreign \
&& exit 0; \
exit 1;; \
esac; \
done; \
echo ' cd $(top_srcdir) && $(AUTOMAKE) --foreign Makefile'; \
$(am__cd) $(top_srcdir) && \
$(AUTOMAKE) --foreign Makefile
Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status
@case '$?' in \
*config.status*) \
echo ' $(SHELL) ./config.status'; \
$(SHELL) ./config.status;; \
*) \
echo ' cd $(top_builddir) && $(SHELL) ./config.status $@ $(am__maybe_remake_depfiles)'; \
cd $(top_builddir) && $(SHELL) ./config.status $@ $(am__maybe_remake_depfiles);; \
esac;
$(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES)
$(SHELL) ./config.status --recheck
$(top_srcdir)/configure: @MAINTAINER_MODE_TRUE@ $(am__configure_deps)
$(am__cd) $(srcdir) && $(AUTOCONF)
$(ACLOCAL_M4): @MAINTAINER_MODE_TRUE@ $(am__aclocal_m4_deps)
$(am__cd) $(srcdir) && $(ACLOCAL) $(ACLOCAL_AMFLAGS)
$(am__aclocal_m4_deps):
config.h: stamp-h1
@test -f $@ || rm -f stamp-h1
@test -f $@ || $(MAKE) $(AM_MAKEFLAGS) stamp-h1
stamp-h1: $(srcdir)/config.h.in $(top_builddir)/config.status
@rm -f stamp-h1
cd $(top_builddir) && $(SHELL) ./config.status config.h
$(srcdir)/config.h.in: @MAINTAINER_MODE_TRUE@ $(am__configure_deps)
($(am__cd) $(top_srcdir) && $(AUTOHEADER))
rm -f stamp-h1
touch $@
distclean-hdr:
-rm -f config.h stamp-h1
man/nm-applet.1: $(top_builddir)/config.status $(top_srcdir)/man/nm-applet.1.in
cd $(top_builddir) && $(SHELL) ./config.status $@
man/nm-connection-editor.1: $(top_builddir)/config.status $(top_srcdir)/man/nm-connection-editor.1.in
cd $(top_builddir) && $(SHELL) ./config.status $@
org.gnome.nm-applet.gschema.xml: $(top_builddir)/config.status $(srcdir)/org.gnome.nm-applet.gschema.xml.in
cd $(top_builddir) && $(SHELL) ./config.status $@
install-binPROGRAMS: $(bin_PROGRAMS)
@$(NORMAL_INSTALL)
@list='$(bin_PROGRAMS)'; test -n "$(bindir)" || list=; \
if test -n "$$list"; then \
echo " $(MKDIR_P) '$(DESTDIR)$(bindir)'"; \
$(MKDIR_P) "$(DESTDIR)$(bindir)" || exit 1; \
fi; \
for p in $$list; do echo "$$p $$p"; done | \
sed 's/$(EXEEXT)$$//' | \
while read p p1; do if test -f $$p \
|| test -f $$p1 \
; then echo "$$p"; echo "$$p"; else :; fi; \
done | \
sed -e 'p;s,.*/,,;n;h' \
-e 's|.*|.|' \
-e 'p;x;s,.*/,,;s/$(EXEEXT)$$//;$(transform);s/$$/$(EXEEXT)/' | \
sed 'N;N;N;s,\n, ,g' | \
$(AWK) 'BEGIN { files["."] = ""; dirs["."] = 1 } \
{ d=$$3; if (dirs[d] != 1) { print "d", d; dirs[d] = 1 } \
if ($$2 == $$4) files[d] = files[d] " " $$1; \
else { print "f", $$3 "/" $$4, $$1; } } \
END { for (d in files) print "f", d, files[d] }' | \
while read type dir files; do \
if test "$$dir" = .; then dir=; else dir=/$$dir; fi; \
test -z "$$files" || { \
echo " $(INSTALL_PROGRAM_ENV) $(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=install $(INSTALL_PROGRAM) $$files '$(DESTDIR)$(bindir)$$dir'"; \
$(INSTALL_PROGRAM_ENV) $(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=install $(INSTALL_PROGRAM) $$files "$(DESTDIR)$(bindir)$$dir" || exit $$?; \
} \
; done
uninstall-binPROGRAMS:
@$(NORMAL_UNINSTALL)
@list='$(bin_PROGRAMS)'; test -n "$(bindir)" || list=; \
files=`for p in $$list; do echo "$$p"; done | \
sed -e 'h;s,^.*/,,;s/$(EXEEXT)$$//;$(transform)' \
-e 's/$$/$(EXEEXT)/' \
`; \
test -n "$$list" || exit 0; \
echo " ( cd '$(DESTDIR)$(bindir)' && rm -f" $$files ")"; \
cd "$(DESTDIR)$(bindir)" && rm -f $$files
clean-binPROGRAMS:
@list='$(bin_PROGRAMS)'; test -n "$$list" || exit 0; \
echo " rm -f" $$list; \
rm -f $$list || exit $$?; \
test -n "$(EXEEXT)" || exit 0; \
list=`for p in $$list; do echo "$$p"; done | sed 's/$(EXEEXT)$$//'`; \
echo " rm -f" $$list; \
rm -f $$list
clean-checkPROGRAMS:
@list='$(check_PROGRAMS)'; test -n "$$list" || exit 0; \
echo " rm -f" $$list; \
rm -f $$list || exit $$?; \
test -n "$(EXEEXT)" || exit 0; \
list=`for p in $$list; do echo "$$p"; done | sed 's/$(EXEEXT)$$//'`; \
echo " rm -f" $$list; \
rm -f $$list
clean-noinstPROGRAMS:
@list='$(noinst_PROGRAMS)'; test -n "$$list" || exit 0; \
echo " rm -f" $$list; \
rm -f $$list || exit $$?; \
test -n "$(EXEEXT)" || exit 0; \
list=`for p in $$list; do echo "$$p"; done | sed 's/$(EXEEXT)$$//'`; \
echo " rm -f" $$list; \
rm -f $$list
install-libLTLIBRARIES: $(lib_LTLIBRARIES)
@$(NORMAL_INSTALL)
@list='$(lib_LTLIBRARIES)'; test -n "$(libdir)" || list=; \
list2=; for p in $$list; do \
if test -f $$p; then \
list2="$$list2 $$p"; \
else :; fi; \
done; \
test -z "$$list2" || { \
echo " $(MKDIR_P) '$(DESTDIR)$(libdir)'"; \
$(MKDIR_P) "$(DESTDIR)$(libdir)" || exit 1; \
echo " $(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=install $(INSTALL) $(INSTALL_STRIP_FLAG) $$list2 '$(DESTDIR)$(libdir)'"; \
$(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=install $(INSTALL) $(INSTALL_STRIP_FLAG) $$list2 "$(DESTDIR)$(libdir)"; \
}
uninstall-libLTLIBRARIES:
@$(NORMAL_UNINSTALL)
@list='$(lib_LTLIBRARIES)'; test -n "$(libdir)" || list=; \
for p in $$list; do \
$(am__strip_dir) \
echo " $(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=uninstall rm -f '$(DESTDIR)$(libdir)/$$f'"; \
$(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=uninstall rm -f "$(DESTDIR)$(libdir)/$$f"; \
done
clean-libLTLIBRARIES:
-test -z "$(lib_LTLIBRARIES)" || rm -f $(lib_LTLIBRARIES)
@list='$(lib_LTLIBRARIES)'; \
locs=`for p in $$list; do echo $$p; done | \
sed 's|^[^/]*$$|.|; s|/[^/]*$$||; s|$$|/so_locations|' | \
sort -u`; \
test -z "$$locs" || { \
echo rm -f $${locs}; \
rm -f $${locs}; \
}
clean-noinstLTLIBRARIES:
-test -z "$(noinst_LTLIBRARIES)" || rm -f $(noinst_LTLIBRARIES)
@list='$(noinst_LTLIBRARIES)'; \
locs=`for p in $$list; do echo $$p; done | \
sed 's|^[^/]*$$|.|; s|/[^/]*$$||; s|$$|/so_locations|' | \
sort -u`; \
test -z "$$locs" || { \
echo rm -f $${locs}; \
rm -f $${locs}; \
}
shared/nm-utils/$(am__dirstamp):
@$(MKDIR_P) shared/nm-utils
@: > shared/nm-utils/$(am__dirstamp)
shared/nm-utils/$(DEPDIR)/$(am__dirstamp):
@$(MKDIR_P) shared/nm-utils/$(DEPDIR)
@: > shared/nm-utils/$(DEPDIR)/$(am__dirstamp)
shared/nm-utils/src_utils_libutils_libnm_la-nm-shared-utils.lo: \
shared/nm-utils/$(am__dirstamp) \
shared/nm-utils/$(DEPDIR)/$(am__dirstamp)
src/utils/$(am__dirstamp):
@$(MKDIR_P) src/utils
@: > src/utils/$(am__dirstamp)
src/utils/$(DEPDIR)/$(am__dirstamp):
@$(MKDIR_P) src/utils/$(DEPDIR)
@: > src/utils/$(DEPDIR)/$(am__dirstamp)
src/utils/libutils_libnm_la-utils.lo: src/utils/$(am__dirstamp) \
src/utils/$(DEPDIR)/$(am__dirstamp)
src/utils/libutils-libnm.la: $(src_utils_libutils_libnm_la_OBJECTS) $(src_utils_libutils_libnm_la_DEPENDENCIES) $(EXTRA_src_utils_libutils_libnm_la_DEPENDENCIES) src/utils/$(am__dirstamp)
$(AM_V_CCLD)$(LINK) $(src_utils_libutils_libnm_la_OBJECTS) $(src_utils_libutils_libnm_la_LIBADD) $(LIBS)
src/wireless-security/$(am__dirstamp):
@$(MKDIR_P) src/wireless-security
@: > src/wireless-security/$(am__dirstamp)
src/wireless-security/$(DEPDIR)/$(am__dirstamp):
@$(MKDIR_P) src/wireless-security/$(DEPDIR)
@: > src/wireless-security/$(DEPDIR)/$(am__dirstamp)
src/wireless-security/libwireless_security_libnm_la-eap-method.lo: \
src/wireless-security/$(am__dirstamp) \
src/wireless-security/$(DEPDIR)/$(am__dirstamp)
src/wireless-security/libwireless-security-libnm.la: $(src_wireless_security_libwireless_security_libnm_la_OBJECTS) $(src_wireless_security_libwireless_security_libnm_la_DEPENDENCIES) $(EXTRA_src_wireless_security_libwireless_security_libnm_la_DEPENDENCIES) src/wireless-security/$(am__dirstamp)
$(AM_V_CCLD)$(LINK) $(src_wireless_security_libwireless_security_libnm_la_OBJECTS) $(src_wireless_security_libwireless_security_libnm_la_LIBADD) $(LIBS)
src/connection-editor/$(am__dirstamp):
@$(MKDIR_P) src/connection-editor
@: > src/connection-editor/$(am__dirstamp)
src/connection-editor/$(DEPDIR)/$(am__dirstamp):
@$(MKDIR_P) src/connection-editor/$(DEPDIR)
@: > src/connection-editor/$(DEPDIR)/$(am__dirstamp)
src/connection-editor/nm_connection_editor-nm-connection-editor.$(OBJEXT): \
src/connection-editor/$(am__dirstamp) \
src/connection-editor/$(DEPDIR)/$(am__dirstamp)
src/connection-editor/nm_connection_editor-nm-connection-list.$(OBJEXT): \
src/connection-editor/$(am__dirstamp) \
src/connection-editor/$(DEPDIR)/$(am__dirstamp)
src/connection-editor/nm_connection_editor-main.$(OBJEXT): \
src/connection-editor/$(am__dirstamp) \
src/connection-editor/$(DEPDIR)/$(am__dirstamp)
src/connection-editor/nm_connection_editor-ce-page.$(OBJEXT): \
src/connection-editor/$(am__dirstamp) \
src/connection-editor/$(DEPDIR)/$(am__dirstamp)
src/connection-editor/nm_connection_editor-page-general.$(OBJEXT): \
src/connection-editor/$(am__dirstamp) \
src/connection-editor/$(DEPDIR)/$(am__dirstamp)
src/connection-editor/nm_connection_editor-page-ethernet.$(OBJEXT): \
src/connection-editor/$(am__dirstamp) \
src/connection-editor/$(DEPDIR)/$(am__dirstamp)
src/connection-editor/nm_connection_editor-page-8021x-security.$(OBJEXT): \
src/connection-editor/$(am__dirstamp) \
src/connection-editor/$(DEPDIR)/$(am__dirstamp)
src/connection-editor/nm_connection_editor-page-wifi.$(OBJEXT): \
src/connection-editor/$(am__dirstamp) \
src/connection-editor/$(DEPDIR)/$(am__dirstamp)
src/connection-editor/nm_connection_editor-page-wifi-security.$(OBJEXT): \
src/connection-editor/$(am__dirstamp) \
src/connection-editor/$(DEPDIR)/$(am__dirstamp)
src/connection-editor/nm_connection_editor-page-infiniband.$(OBJEXT): \
src/connection-editor/$(am__dirstamp) \
src/connection-editor/$(DEPDIR)/$(am__dirstamp)
src/connection-editor/nm_connection_editor-page-ip-tunnel.$(OBJEXT): \
src/connection-editor/$(am__dirstamp) \
src/connection-editor/$(DEPDIR)/$(am__dirstamp)
src/connection-editor/nm_connection_editor-page-ip4.$(OBJEXT): \
src/connection-editor/$(am__dirstamp) \
src/connection-editor/$(DEPDIR)/$(am__dirstamp)
src/connection-editor/nm_connection_editor-page-ip6.$(OBJEXT): \
src/connection-editor/$(am__dirstamp) \
src/connection-editor/$(DEPDIR)/$(am__dirstamp)
src/connection-editor/nm_connection_editor-page-dsl.$(OBJEXT): \
src/connection-editor/$(am__dirstamp) \
src/connection-editor/$(DEPDIR)/$(am__dirstamp)
src/connection-editor/nm_connection_editor-page-macsec.$(OBJEXT): \
src/connection-editor/$(am__dirstamp) \
src/connection-editor/$(DEPDIR)/$(am__dirstamp)
src/connection-editor/nm_connection_editor-page-mobile.$(OBJEXT): \
src/connection-editor/$(am__dirstamp) \
src/connection-editor/$(DEPDIR)/$(am__dirstamp)
src/connection-editor/nm_connection_editor-page-bluetooth.$(OBJEXT): \
src/connection-editor/$(am__dirstamp) \
src/connection-editor/$(DEPDIR)/$(am__dirstamp)
src/connection-editor/nm_connection_editor-page-ppp.$(OBJEXT): \
src/connection-editor/$(am__dirstamp) \
src/connection-editor/$(DEPDIR)/$(am__dirstamp)
src/connection-editor/nm_connection_editor-page-proxy.$(OBJEXT): \
src/connection-editor/$(am__dirstamp) \
src/connection-editor/$(DEPDIR)/$(am__dirstamp)
src/connection-editor/nm_connection_editor-page-vpn.$(OBJEXT): \
src/connection-editor/$(am__dirstamp) \
src/connection-editor/$(DEPDIR)/$(am__dirstamp)
src/connection-editor/nm_connection_editor-page-controller.$(OBJEXT): \
src/connection-editor/$(am__dirstamp) \
src/connection-editor/$(DEPDIR)/$(am__dirstamp)
src/connection-editor/nm_connection_editor-page-bond.$(OBJEXT): \
src/connection-editor/$(am__dirstamp) \
src/connection-editor/$(DEPDIR)/$(am__dirstamp)
src/connection-editor/nm_connection_editor-page-team.$(OBJEXT): \
src/connection-editor/$(am__dirstamp) \
src/connection-editor/$(DEPDIR)/$(am__dirstamp)
src/connection-editor/nm_connection_editor-page-team-port.$(OBJEXT): \
src/connection-editor/$(am__dirstamp) \
src/connection-editor/$(DEPDIR)/$(am__dirstamp)
src/connection-editor/nm_connection_editor-page-bridge.$(OBJEXT): \
src/connection-editor/$(am__dirstamp) \
src/connection-editor/$(DEPDIR)/$(am__dirstamp)
src/connection-editor/nm_connection_editor-page-bridge-port.$(OBJEXT): \
src/connection-editor/$(am__dirstamp) \
src/connection-editor/$(DEPDIR)/$(am__dirstamp)
src/connection-editor/nm_connection_editor-page-vlan.$(OBJEXT): \
src/connection-editor/$(am__dirstamp) \
src/connection-editor/$(DEPDIR)/$(am__dirstamp)
src/connection-editor/nm_connection_editor-page-dcb.$(OBJEXT): \
src/connection-editor/$(am__dirstamp) \
src/connection-editor/$(DEPDIR)/$(am__dirstamp)
src/connection-editor/nm_connection_editor-page-wireguard.$(OBJEXT): \
src/connection-editor/$(am__dirstamp) \
src/connection-editor/$(DEPDIR)/$(am__dirstamp)
src/connection-editor/nm_connection_editor-vpn-helpers.$(OBJEXT): \
src/connection-editor/$(am__dirstamp) \
src/connection-editor/$(DEPDIR)/$(am__dirstamp)
src/connection-editor/nm_connection_editor-ip4-routes-dialog.$(OBJEXT): \
src/connection-editor/$(am__dirstamp) \
src/connection-editor/$(DEPDIR)/$(am__dirstamp)
src/connection-editor/nm_connection_editor-ip6-routes-dialog.$(OBJEXT): \
src/connection-editor/$(am__dirstamp) \
src/connection-editor/$(DEPDIR)/$(am__dirstamp)
src/connection-editor/nm_connection_editor-ppp-auth-methods-dialog.$(OBJEXT): \
src/connection-editor/$(am__dirstamp) \
src/connection-editor/$(DEPDIR)/$(am__dirstamp)
src/connection-editor/nm_connection_editor-ce-polkit-button.$(OBJEXT): \
src/connection-editor/$(am__dirstamp) \
src/connection-editor/$(DEPDIR)/$(am__dirstamp)
src/connection-editor/nm_connection_editor-ce-polkit.$(OBJEXT): \
src/connection-editor/$(am__dirstamp) \
src/connection-editor/$(DEPDIR)/$(am__dirstamp)
src/connection-editor/nm_connection_editor-ce-utils.$(OBJEXT): \
src/connection-editor/$(am__dirstamp) \
src/connection-editor/$(DEPDIR)/$(am__dirstamp)
src/connection-editor/nm_connection_editor-connection-helpers.$(OBJEXT): \
src/connection-editor/$(am__dirstamp) \
src/connection-editor/$(DEPDIR)/$(am__dirstamp)
src/connection-editor/nm_connection_editor-ce-resources.$(OBJEXT): \
src/connection-editor/$(am__dirstamp) \
src/connection-editor/$(DEPDIR)/$(am__dirstamp)
src/connection-editor/nm-connection-editor$(EXEEXT): $(src_connection_editor_nm_connection_editor_OBJECTS) $(src_connection_editor_nm_connection_editor_DEPENDENCIES) $(EXTRA_src_connection_editor_nm_connection_editor_DEPENDENCIES) src/connection-editor/$(am__dirstamp)
@rm -f src/connection-editor/nm-connection-editor$(EXEEXT)
$(AM_V_CCLD)$(src_connection_editor_nm_connection_editor_LINK) $(src_connection_editor_nm_connection_editor_OBJECTS) $(src_connection_editor_nm_connection_editor_LDADD) $(LIBS)
shared/nm-utils/src_nm_applet-nm-compat.$(OBJEXT): \
shared/nm-utils/$(am__dirstamp) \
shared/nm-utils/$(DEPDIR)/$(am__dirstamp)
src/$(am__dirstamp):
@$(MKDIR_P) src
@: > src/$(am__dirstamp)
src/$(DEPDIR)/$(am__dirstamp):
@$(MKDIR_P) src/$(DEPDIR)
@: > src/$(DEPDIR)/$(am__dirstamp)
src/nm_applet-main.$(OBJEXT): src/$(am__dirstamp) \
src/$(DEPDIR)/$(am__dirstamp)
src/nm_applet-applet.$(OBJEXT): src/$(am__dirstamp) \
src/$(DEPDIR)/$(am__dirstamp)
src/nm_applet-applet-agent.$(OBJEXT): src/$(am__dirstamp) \
src/$(DEPDIR)/$(am__dirstamp)
src/nm_applet-applet-vpn-request.$(OBJEXT): src/$(am__dirstamp) \
src/$(DEPDIR)/$(am__dirstamp)
src/nm_applet-ethernet-dialog.$(OBJEXT): src/$(am__dirstamp) \
src/$(DEPDIR)/$(am__dirstamp)
src/nm_applet-applet-dialogs.$(OBJEXT): src/$(am__dirstamp) \
src/$(DEPDIR)/$(am__dirstamp)
src/nm_applet-applet-device-ethernet.$(OBJEXT): src/$(am__dirstamp) \
src/$(DEPDIR)/$(am__dirstamp)
src/nm_applet-applet-device-wifi.$(OBJEXT): src/$(am__dirstamp) \
src/$(DEPDIR)/$(am__dirstamp)
src/nm_applet-ap-menu-item.$(OBJEXT): src/$(am__dirstamp) \
src/$(DEPDIR)/$(am__dirstamp)
src/nm_applet-mb-menu-item.$(OBJEXT): src/$(am__dirstamp) \
src/$(DEPDIR)/$(am__dirstamp)
src/nm_applet-mobile-helpers.$(OBJEXT): src/$(am__dirstamp) \
src/$(DEPDIR)/$(am__dirstamp)
src/nm_applet-applet-device-bt.$(OBJEXT): src/$(am__dirstamp) \
src/$(DEPDIR)/$(am__dirstamp)
src/nm_applet-applet-device-broadband.$(OBJEXT): src/$(am__dirstamp) \
src/$(DEPDIR)/$(am__dirstamp)
src/nm_applet-applet-resources.$(OBJEXT): src/$(am__dirstamp) \
src/$(DEPDIR)/$(am__dirstamp)
src/nm-applet$(EXEEXT): $(src_nm_applet_OBJECTS) $(src_nm_applet_DEPENDENCIES) $(EXTRA_src_nm_applet_DEPENDENCIES) src/$(am__dirstamp)
@rm -f src/nm-applet$(EXEEXT)
$(AM_V_CCLD)$(src_nm_applet_LINK) $(src_nm_applet_OBJECTS) $(src_nm_applet_LDADD) $(LIBS)
src/tests_ethernet_dialog-applet-resources.$(OBJEXT): \
src/$(am__dirstamp) src/$(DEPDIR)/$(am__dirstamp)
src/tests_ethernet_dialog-applet-dialogs.$(OBJEXT): \
src/$(am__dirstamp) src/$(DEPDIR)/$(am__dirstamp)
src/tests_ethernet_dialog-ethernet-dialog.$(OBJEXT): \
src/$(am__dirstamp) src/$(DEPDIR)/$(am__dirstamp)
src/tests/$(am__dirstamp):
@$(MKDIR_P) src/tests
@: > src/tests/$(am__dirstamp)
src/tests/$(DEPDIR)/$(am__dirstamp):
@$(MKDIR_P) src/tests/$(DEPDIR)
@: > src/tests/$(DEPDIR)/$(am__dirstamp)
src/tests/ethernet_dialog-ethernet-dialog.$(OBJEXT): \
src/tests/$(am__dirstamp) src/tests/$(DEPDIR)/$(am__dirstamp)
src/tests/ethernet-dialog$(EXEEXT): $(src_tests_ethernet_dialog_OBJECTS) $(src_tests_ethernet_dialog_DEPENDENCIES) $(EXTRA_src_tests_ethernet_dialog_DEPENDENCIES) src/tests/$(am__dirstamp)
@rm -f src/tests/ethernet-dialog$(EXEEXT)
$(AM_V_CCLD)$(LINK) $(src_tests_ethernet_dialog_OBJECTS) $(src_tests_ethernet_dialog_LDADD) $(LIBS)
src/utils/tests/$(am__dirstamp):
@$(MKDIR_P) src/utils/tests
@: > src/utils/tests/$(am__dirstamp)
src/utils/tests/$(DEPDIR)/$(am__dirstamp):
@$(MKDIR_P) src/utils/tests/$(DEPDIR)
@: > src/utils/tests/$(DEPDIR)/$(am__dirstamp)
src/utils/tests/test_utils-test-utils.$(OBJEXT): \
src/utils/tests/$(am__dirstamp) \
src/utils/tests/$(DEPDIR)/$(am__dirstamp)
src/utils/tests/test-utils$(EXEEXT): $(src_utils_tests_test_utils_OBJECTS) $(src_utils_tests_test_utils_DEPENDENCIES) $(EXTRA_src_utils_tests_test_utils_DEPENDENCIES) src/utils/tests/$(am__dirstamp)
@rm -f src/utils/tests/test-utils$(EXEEXT)
$(AM_V_CCLD)$(LINK) $(src_utils_tests_test_utils_OBJECTS) $(src_utils_tests_test_utils_LDADD) $(LIBS)
mostlyclean-compile:
-rm -f *.$(OBJEXT)
-rm -f shared/nm-utils/*.$(OBJEXT)
-rm -f shared/nm-utils/*.lo
-rm -f src/*.$(OBJEXT)
-rm -f src/connection-editor/*.$(OBJEXT)
-rm -f src/tests/*.$(OBJEXT)
-rm -f src/utils/*.$(OBJEXT)
-rm -f src/utils/*.lo
-rm -f src/utils/tests/*.$(OBJEXT)
-rm -f src/wireless-security/*.$(OBJEXT)
-rm -f src/wireless-security/*.lo
distclean-compile:
-rm -f *.tab.c
@AMDEP_TRUE@@am__include@ @am__quote@shared/nm-utils/$(DEPDIR)/src_nm_applet-nm-compat.Po@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@shared/nm-utils/$(DEPDIR)/src_utils_libutils_libnm_la-nm-shared-utils.Plo@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@src/$(DEPDIR)/nm_applet-ap-menu-item.Po@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@src/$(DEPDIR)/nm_applet-applet-agent.Po@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@src/$(DEPDIR)/nm_applet-applet-device-broadband.Po@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@src/$(DEPDIR)/nm_applet-applet-device-bt.Po@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@src/$(DEPDIR)/nm_applet-applet-device-ethernet.Po@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@src/$(DEPDIR)/nm_applet-applet-device-wifi.Po@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@src/$(DEPDIR)/nm_applet-applet-dialogs.Po@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@src/$(DEPDIR)/nm_applet-applet-resources.Po@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@src/$(DEPDIR)/nm_applet-applet-vpn-request.Po@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@src/$(DEPDIR)/nm_applet-applet.Po@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@src/$(DEPDIR)/nm_applet-ethernet-dialog.Po@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@src/$(DEPDIR)/nm_applet-main.Po@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@src/$(DEPDIR)/nm_applet-mb-menu-item.Po@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@src/$(DEPDIR)/nm_applet-mobile-helpers.Po@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@src/$(DEPDIR)/tests_ethernet_dialog-applet-dialogs.Po@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@src/$(DEPDIR)/tests_ethernet_dialog-applet-resources.Po@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@src/$(DEPDIR)/tests_ethernet_dialog-ethernet-dialog.Po@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@src/connection-editor/$(DEPDIR)/nm_connection_editor-ce-page.Po@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@src/connection-editor/$(DEPDIR)/nm_connection_editor-ce-polkit-button.Po@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@src/connection-editor/$(DEPDIR)/nm_connection_editor-ce-polkit.Po@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@src/connection-editor/$(DEPDIR)/nm_connection_editor-ce-resources.Po@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@src/connection-editor/$(DEPDIR)/nm_connection_editor-ce-utils.Po@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@src/connection-editor/$(DEPDIR)/nm_connection_editor-connection-helpers.Po@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@src/connection-editor/$(DEPDIR)/nm_connection_editor-ip4-routes-dialog.Po@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@src/connection-editor/$(DEPDIR)/nm_connection_editor-ip6-routes-dialog.Po@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@src/connection-editor/$(DEPDIR)/nm_connection_editor-main.Po@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@src/connection-editor/$(DEPDIR)/nm_connection_editor-nm-connection-editor.Po@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@src/connection-editor/$(DEPDIR)/nm_connection_editor-nm-connection-list.Po@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@src/connection-editor/$(DEPDIR)/nm_connection_editor-page-8021x-security.Po@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@src/connection-editor/$(DEPDIR)/nm_connection_editor-page-bluetooth.Po@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@src/connection-editor/$(DEPDIR)/nm_connection_editor-page-bond.Po@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@src/connection-editor/$(DEPDIR)/nm_connection_editor-page-bridge-port.Po@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@src/connection-editor/$(DEPDIR)/nm_connection_editor-page-bridge.Po@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@src/connection-editor/$(DEPDIR)/nm_connection_editor-page-controller.Po@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@src/connection-editor/$(DEPDIR)/nm_connection_editor-page-dcb.Po@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@src/connection-editor/$(DEPDIR)/nm_connection_editor-page-dsl.Po@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@src/connection-editor/$(DEPDIR)/nm_connection_editor-page-ethernet.Po@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@src/connection-editor/$(DEPDIR)/nm_connection_editor-page-general.Po@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@src/connection-editor/$(DEPDIR)/nm_connection_editor-page-infiniband.Po@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@src/connection-editor/$(DEPDIR)/nm_connection_editor-page-ip-tunnel.Po@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@src/connection-editor/$(DEPDIR)/nm_connection_editor-page-ip4.Po@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@src/connection-editor/$(DEPDIR)/nm_connection_editor-page-ip6.Po@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@src/connection-editor/$(DEPDIR)/nm_connection_editor-page-macsec.Po@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@src/connection-editor/$(DEPDIR)/nm_connection_editor-page-mobile.Po@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@src/connection-editor/$(DEPDIR)/nm_connection_editor-page-ppp.Po@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@src/connection-editor/$(DEPDIR)/nm_connection_editor-page-proxy.Po@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@src/connection-editor/$(DEPDIR)/nm_connection_editor-page-team-port.Po@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@src/connection-editor/$(DEPDIR)/nm_connection_editor-page-team.Po@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@src/connection-editor/$(DEPDIR)/nm_connection_editor-page-vlan.Po@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@src/connection-editor/$(DEPDIR)/nm_connection_editor-page-vpn.Po@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@src/connection-editor/$(DEPDIR)/nm_connection_editor-page-wifi-security.Po@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@src/connection-editor/$(DEPDIR)/nm_connection_editor-page-wifi.Po@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@src/connection-editor/$(DEPDIR)/nm_connection_editor-page-wireguard.Po@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@src/connection-editor/$(DEPDIR)/nm_connection_editor-ppp-auth-methods-dialog.Po@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@src/connection-editor/$(DEPDIR)/nm_connection_editor-vpn-helpers.Po@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@src/tests/$(DEPDIR)/ethernet_dialog-ethernet-dialog.Po@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@src/utils/$(DEPDIR)/libutils_libnm_la-utils.Plo@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@src/utils/tests/$(DEPDIR)/test_utils-test-utils.Po@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@src/wireless-security/$(DEPDIR)/libwireless_security_libnm_la-eap-method.Plo@am__quote@ # am--include-marker
$(am__depfiles_remade):
@$(MKDIR_P) $(@D)
@echo '# dummy' >$@-t && $(am__mv) $@-t $@
am--depfiles: $(am__depfiles_remade)
.c.o:
@am__fastdepCC_TRUE@ $(AM_V_CC)depbase=`echo $@ | sed 's|[^/]*$$|$(DEPDIR)/&|;s|\.o$$||'`;\
@am__fastdepCC_TRUE@ $(COMPILE) -MT $@ -MD -MP -MF $$depbase.Tpo -c -o $@ $< &&\
@am__fastdepCC_TRUE@ $(am__mv) $$depbase.Tpo $$depbase.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='$<' object='$@' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(COMPILE) -c -o $@ $<
.c.obj:
@am__fastdepCC_TRUE@ $(AM_V_CC)depbase=`echo $@ | sed 's|[^/]*$$|$(DEPDIR)/&|;s|\.obj$$||'`;\
@am__fastdepCC_TRUE@ $(COMPILE) -MT $@ -MD -MP -MF $$depbase.Tpo -c -o $@ `$(CYGPATH_W) '$<'` &&\
@am__fastdepCC_TRUE@ $(am__mv) $$depbase.Tpo $$depbase.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='$<' object='$@' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(COMPILE) -c -o $@ `$(CYGPATH_W) '$<'`
.c.lo:
@am__fastdepCC_TRUE@ $(AM_V_CC)depbase=`echo $@ | sed 's|[^/]*$$|$(DEPDIR)/&|;s|\.lo$$||'`;\
@am__fastdepCC_TRUE@ $(LTCOMPILE) -MT $@ -MD -MP -MF $$depbase.Tpo -c -o $@ $< &&\
@am__fastdepCC_TRUE@ $(am__mv) $$depbase.Tpo $$depbase.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='$<' object='$@' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LTCOMPILE) -c -o $@ $<
shared/nm-utils/src_utils_libutils_libnm_la-nm-shared-utils.lo: shared/nm-utils/nm-shared-utils.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_utils_libutils_libnm_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT shared/nm-utils/src_utils_libutils_libnm_la-nm-shared-utils.lo -MD -MP -MF shared/nm-utils/$(DEPDIR)/src_utils_libutils_libnm_la-nm-shared-utils.Tpo -c -o shared/nm-utils/src_utils_libutils_libnm_la-nm-shared-utils.lo `test -f 'shared/nm-utils/nm-shared-utils.c' || echo '$(srcdir)/'`shared/nm-utils/nm-shared-utils.c
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) shared/nm-utils/$(DEPDIR)/src_utils_libutils_libnm_la-nm-shared-utils.Tpo shared/nm-utils/$(DEPDIR)/src_utils_libutils_libnm_la-nm-shared-utils.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='shared/nm-utils/nm-shared-utils.c' object='shared/nm-utils/src_utils_libutils_libnm_la-nm-shared-utils.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_utils_libutils_libnm_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o shared/nm-utils/src_utils_libutils_libnm_la-nm-shared-utils.lo `test -f 'shared/nm-utils/nm-shared-utils.c' || echo '$(srcdir)/'`shared/nm-utils/nm-shared-utils.c
src/utils/libutils_libnm_la-utils.lo: src/utils/utils.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_utils_libutils_libnm_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT src/utils/libutils_libnm_la-utils.lo -MD -MP -MF src/utils/$(DEPDIR)/libutils_libnm_la-utils.Tpo -c -o src/utils/libutils_libnm_la-utils.lo `test -f 'src/utils/utils.c' || echo '$(srcdir)/'`src/utils/utils.c
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) src/utils/$(DEPDIR)/libutils_libnm_la-utils.Tpo src/utils/$(DEPDIR)/libutils_libnm_la-utils.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='src/utils/utils.c' object='src/utils/libutils_libnm_la-utils.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_utils_libutils_libnm_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o src/utils/libutils_libnm_la-utils.lo `test -f 'src/utils/utils.c' || echo '$(srcdir)/'`src/utils/utils.c
src/wireless-security/libwireless_security_libnm_la-eap-method.lo: src/wireless-security/eap-method.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_wireless_security_libwireless_security_libnm_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT src/wireless-security/libwireless_security_libnm_la-eap-method.lo -MD -MP -MF src/wireless-security/$(DEPDIR)/libwireless_security_libnm_la-eap-method.Tpo -c -o src/wireless-security/libwireless_security_libnm_la-eap-method.lo `test -f 'src/wireless-security/eap-method.c' || echo '$(srcdir)/'`src/wireless-security/eap-method.c
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) src/wireless-security/$(DEPDIR)/libwireless_security_libnm_la-eap-method.Tpo src/wireless-security/$(DEPDIR)/libwireless_security_libnm_la-eap-method.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='src/wireless-security/eap-method.c' object='src/wireless-security/libwireless_security_libnm_la-eap-method.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_wireless_security_libwireless_security_libnm_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o src/wireless-security/libwireless_security_libnm_la-eap-method.lo `test -f 'src/wireless-security/eap-method.c' || echo '$(srcdir)/'`src/wireless-security/eap-method.c
src/connection-editor/nm_connection_editor-nm-connection-editor.o: src/connection-editor/nm-connection-editor.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_connection_editor_nm_connection_editor_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT src/connection-editor/nm_connection_editor-nm-connection-editor.o -MD -MP -MF src/connection-editor/$(DEPDIR)/nm_connection_editor-nm-connection-editor.Tpo -c -o src/connection-editor/nm_connection_editor-nm-connection-editor.o `test -f 'src/connection-editor/nm-connection-editor.c' || echo '$(srcdir)/'`src/connection-editor/nm-connection-editor.c
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) src/connection-editor/$(DEPDIR)/nm_connection_editor-nm-connection-editor.Tpo src/connection-editor/$(DEPDIR)/nm_connection_editor-nm-connection-editor.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='src/connection-editor/nm-connection-editor.c' object='src/connection-editor/nm_connection_editor-nm-connection-editor.o' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_connection_editor_nm_connection_editor_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o src/connection-editor/nm_connection_editor-nm-connection-editor.o `test -f 'src/connection-editor/nm-connection-editor.c' || echo '$(srcdir)/'`src/connection-editor/nm-connection-editor.c
src/connection-editor/nm_connection_editor-nm-connection-editor.obj: src/connection-editor/nm-connection-editor.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_connection_editor_nm_connection_editor_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT src/connection-editor/nm_connection_editor-nm-connection-editor.obj -MD -MP -MF src/connection-editor/$(DEPDIR)/nm_connection_editor-nm-connection-editor.Tpo -c -o src/connection-editor/nm_connection_editor-nm-connection-editor.obj `if test -f 'src/connection-editor/nm-connection-editor.c'; then $(CYGPATH_W) 'src/connection-editor/nm-connection-editor.c'; else $(CYGPATH_W) '$(srcdir)/src/connection-editor/nm-connection-editor.c'; fi`
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) src/connection-editor/$(DEPDIR)/nm_connection_editor-nm-connection-editor.Tpo src/connection-editor/$(DEPDIR)/nm_connection_editor-nm-connection-editor.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='src/connection-editor/nm-connection-editor.c' object='src/connection-editor/nm_connection_editor-nm-connection-editor.obj' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_connection_editor_nm_connection_editor_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o src/connection-editor/nm_connection_editor-nm-connection-editor.obj `if test -f 'src/connection-editor/nm-connection-editor.c'; then $(CYGPATH_W) 'src/connection-editor/nm-connection-editor.c'; else $(CYGPATH_W) '$(srcdir)/src/connection-editor/nm-connection-editor.c'; fi`
src/connection-editor/nm_connection_editor-nm-connection-list.o: src/connection-editor/nm-connection-list.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_connection_editor_nm_connection_editor_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT src/connection-editor/nm_connection_editor-nm-connection-list.o -MD -MP -MF src/connection-editor/$(DEPDIR)/nm_connection_editor-nm-connection-list.Tpo -c -o src/connection-editor/nm_connection_editor-nm-connection-list.o `test -f 'src/connection-editor/nm-connection-list.c' || echo '$(srcdir)/'`src/connection-editor/nm-connection-list.c
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) src/connection-editor/$(DEPDIR)/nm_connection_editor-nm-connection-list.Tpo src/connection-editor/$(DEPDIR)/nm_connection_editor-nm-connection-list.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='src/connection-editor/nm-connection-list.c' object='src/connection-editor/nm_connection_editor-nm-connection-list.o' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_connection_editor_nm_connection_editor_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o src/connection-editor/nm_connection_editor-nm-connection-list.o `test -f 'src/connection-editor/nm-connection-list.c' || echo '$(srcdir)/'`src/connection-editor/nm-connection-list.c
src/connection-editor/nm_connection_editor-nm-connection-list.obj: src/connection-editor/nm-connection-list.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_connection_editor_nm_connection_editor_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT src/connection-editor/nm_connection_editor-nm-connection-list.obj -MD -MP -MF src/connection-editor/$(DEPDIR)/nm_connection_editor-nm-connection-list.Tpo -c -o src/connection-editor/nm_connection_editor-nm-connection-list.obj `if test -f 'src/connection-editor/nm-connection-list.c'; then $(CYGPATH_W) 'src/connection-editor/nm-connection-list.c'; else $(CYGPATH_W) '$(srcdir)/src/connection-editor/nm-connection-list.c'; fi`
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) src/connection-editor/$(DEPDIR)/nm_connection_editor-nm-connection-list.Tpo src/connection-editor/$(DEPDIR)/nm_connection_editor-nm-connection-list.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='src/connection-editor/nm-connection-list.c' object='src/connection-editor/nm_connection_editor-nm-connection-list.obj' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_connection_editor_nm_connection_editor_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o src/connection-editor/nm_connection_editor-nm-connection-list.obj `if test -f 'src/connection-editor/nm-connection-list.c'; then $(CYGPATH_W) 'src/connection-editor/nm-connection-list.c'; else $(CYGPATH_W) '$(srcdir)/src/connection-editor/nm-connection-list.c'; fi`
src/connection-editor/nm_connection_editor-main.o: src/connection-editor/main.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_connection_editor_nm_connection_editor_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT src/connection-editor/nm_connection_editor-main.o -MD -MP -MF src/connection-editor/$(DEPDIR)/nm_connection_editor-main.Tpo -c -o src/connection-editor/nm_connection_editor-main.o `test -f 'src/connection-editor/main.c' || echo '$(srcdir)/'`src/connection-editor/main.c
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) src/connection-editor/$(DEPDIR)/nm_connection_editor-main.Tpo src/connection-editor/$(DEPDIR)/nm_connection_editor-main.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='src/connection-editor/main.c' object='src/connection-editor/nm_connection_editor-main.o' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_connection_editor_nm_connection_editor_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o src/connection-editor/nm_connection_editor-main.o `test -f 'src/connection-editor/main.c' || echo '$(srcdir)/'`src/connection-editor/main.c
src/connection-editor/nm_connection_editor-main.obj: src/connection-editor/main.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_connection_editor_nm_connection_editor_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT src/connection-editor/nm_connection_editor-main.obj -MD -MP -MF src/connection-editor/$(DEPDIR)/nm_connection_editor-main.Tpo -c -o src/connection-editor/nm_connection_editor-main.obj `if test -f 'src/connection-editor/main.c'; then $(CYGPATH_W) 'src/connection-editor/main.c'; else $(CYGPATH_W) '$(srcdir)/src/connection-editor/main.c'; fi`
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) src/connection-editor/$(DEPDIR)/nm_connection_editor-main.Tpo src/connection-editor/$(DEPDIR)/nm_connection_editor-main.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='src/connection-editor/main.c' object='src/connection-editor/nm_connection_editor-main.obj' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_connection_editor_nm_connection_editor_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o src/connection-editor/nm_connection_editor-main.obj `if test -f 'src/connection-editor/main.c'; then $(CYGPATH_W) 'src/connection-editor/main.c'; else $(CYGPATH_W) '$(srcdir)/src/connection-editor/main.c'; fi`
src/connection-editor/nm_connection_editor-ce-page.o: src/connection-editor/ce-page.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_connection_editor_nm_connection_editor_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT src/connection-editor/nm_connection_editor-ce-page.o -MD -MP -MF src/connection-editor/$(DEPDIR)/nm_connection_editor-ce-page.Tpo -c -o src/connection-editor/nm_connection_editor-ce-page.o `test -f 'src/connection-editor/ce-page.c' || echo '$(srcdir)/'`src/connection-editor/ce-page.c
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) src/connection-editor/$(DEPDIR)/nm_connection_editor-ce-page.Tpo src/connection-editor/$(DEPDIR)/nm_connection_editor-ce-page.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='src/connection-editor/ce-page.c' object='src/connection-editor/nm_connection_editor-ce-page.o' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_connection_editor_nm_connection_editor_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o src/connection-editor/nm_connection_editor-ce-page.o `test -f 'src/connection-editor/ce-page.c' || echo '$(srcdir)/'`src/connection-editor/ce-page.c
src/connection-editor/nm_connection_editor-ce-page.obj: src/connection-editor/ce-page.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_connection_editor_nm_connection_editor_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT src/connection-editor/nm_connection_editor-ce-page.obj -MD -MP -MF src/connection-editor/$(DEPDIR)/nm_connection_editor-ce-page.Tpo -c -o src/connection-editor/nm_connection_editor-ce-page.obj `if test -f 'src/connection-editor/ce-page.c'; then $(CYGPATH_W) 'src/connection-editor/ce-page.c'; else $(CYGPATH_W) '$(srcdir)/src/connection-editor/ce-page.c'; fi`
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) src/connection-editor/$(DEPDIR)/nm_connection_editor-ce-page.Tpo src/connection-editor/$(DEPDIR)/nm_connection_editor-ce-page.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='src/connection-editor/ce-page.c' object='src/connection-editor/nm_connection_editor-ce-page.obj' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_connection_editor_nm_connection_editor_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o src/connection-editor/nm_connection_editor-ce-page.obj `if test -f 'src/connection-editor/ce-page.c'; then $(CYGPATH_W) 'src/connection-editor/ce-page.c'; else $(CYGPATH_W) '$(srcdir)/src/connection-editor/ce-page.c'; fi`
src/connection-editor/nm_connection_editor-page-general.o: src/connection-editor/page-general.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_connection_editor_nm_connection_editor_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT src/connection-editor/nm_connection_editor-page-general.o -MD -MP -MF src/connection-editor/$(DEPDIR)/nm_connection_editor-page-general.Tpo -c -o src/connection-editor/nm_connection_editor-page-general.o `test -f 'src/connection-editor/page-general.c' || echo '$(srcdir)/'`src/connection-editor/page-general.c
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) src/connection-editor/$(DEPDIR)/nm_connection_editor-page-general.Tpo src/connection-editor/$(DEPDIR)/nm_connection_editor-page-general.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='src/connection-editor/page-general.c' object='src/connection-editor/nm_connection_editor-page-general.o' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_connection_editor_nm_connection_editor_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o src/connection-editor/nm_connection_editor-page-general.o `test -f 'src/connection-editor/page-general.c' || echo '$(srcdir)/'`src/connection-editor/page-general.c
src/connection-editor/nm_connection_editor-page-general.obj: src/connection-editor/page-general.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_connection_editor_nm_connection_editor_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT src/connection-editor/nm_connection_editor-page-general.obj -MD -MP -MF src/connection-editor/$(DEPDIR)/nm_connection_editor-page-general.Tpo -c -o src/connection-editor/nm_connection_editor-page-general.obj `if test -f 'src/connection-editor/page-general.c'; then $(CYGPATH_W) 'src/connection-editor/page-general.c'; else $(CYGPATH_W) '$(srcdir)/src/connection-editor/page-general.c'; fi`
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) src/connection-editor/$(DEPDIR)/nm_connection_editor-page-general.Tpo src/connection-editor/$(DEPDIR)/nm_connection_editor-page-general.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='src/connection-editor/page-general.c' object='src/connection-editor/nm_connection_editor-page-general.obj' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_connection_editor_nm_connection_editor_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o src/connection-editor/nm_connection_editor-page-general.obj `if test -f 'src/connection-editor/page-general.c'; then $(CYGPATH_W) 'src/connection-editor/page-general.c'; else $(CYGPATH_W) '$(srcdir)/src/connection-editor/page-general.c'; fi`
src/connection-editor/nm_connection_editor-page-ethernet.o: src/connection-editor/page-ethernet.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_connection_editor_nm_connection_editor_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT src/connection-editor/nm_connection_editor-page-ethernet.o -MD -MP -MF src/connection-editor/$(DEPDIR)/nm_connection_editor-page-ethernet.Tpo -c -o src/connection-editor/nm_connection_editor-page-ethernet.o `test -f 'src/connection-editor/page-ethernet.c' || echo '$(srcdir)/'`src/connection-editor/page-ethernet.c
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) src/connection-editor/$(DEPDIR)/nm_connection_editor-page-ethernet.Tpo src/connection-editor/$(DEPDIR)/nm_connection_editor-page-ethernet.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='src/connection-editor/page-ethernet.c' object='src/connection-editor/nm_connection_editor-page-ethernet.o' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_connection_editor_nm_connection_editor_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o src/connection-editor/nm_connection_editor-page-ethernet.o `test -f 'src/connection-editor/page-ethernet.c' || echo '$(srcdir)/'`src/connection-editor/page-ethernet.c
src/connection-editor/nm_connection_editor-page-ethernet.obj: src/connection-editor/page-ethernet.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_connection_editor_nm_connection_editor_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT src/connection-editor/nm_connection_editor-page-ethernet.obj -MD -MP -MF src/connection-editor/$(DEPDIR)/nm_connection_editor-page-ethernet.Tpo -c -o src/connection-editor/nm_connection_editor-page-ethernet.obj `if test -f 'src/connection-editor/page-ethernet.c'; then $(CYGPATH_W) 'src/connection-editor/page-ethernet.c'; else $(CYGPATH_W) '$(srcdir)/src/connection-editor/page-ethernet.c'; fi`
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) src/connection-editor/$(DEPDIR)/nm_connection_editor-page-ethernet.Tpo src/connection-editor/$(DEPDIR)/nm_connection_editor-page-ethernet.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='src/connection-editor/page-ethernet.c' object='src/connection-editor/nm_connection_editor-page-ethernet.obj' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_connection_editor_nm_connection_editor_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o src/connection-editor/nm_connection_editor-page-ethernet.obj `if test -f 'src/connection-editor/page-ethernet.c'; then $(CYGPATH_W) 'src/connection-editor/page-ethernet.c'; else $(CYGPATH_W) '$(srcdir)/src/connection-editor/page-ethernet.c'; fi`
src/connection-editor/nm_connection_editor-page-8021x-security.o: src/connection-editor/page-8021x-security.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_connection_editor_nm_connection_editor_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT src/connection-editor/nm_connection_editor-page-8021x-security.o -MD -MP -MF src/connection-editor/$(DEPDIR)/nm_connection_editor-page-8021x-security.Tpo -c -o src/connection-editor/nm_connection_editor-page-8021x-security.o `test -f 'src/connection-editor/page-8021x-security.c' || echo '$(srcdir)/'`src/connection-editor/page-8021x-security.c
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) src/connection-editor/$(DEPDIR)/nm_connection_editor-page-8021x-security.Tpo src/connection-editor/$(DEPDIR)/nm_connection_editor-page-8021x-security.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='src/connection-editor/page-8021x-security.c' object='src/connection-editor/nm_connection_editor-page-8021x-security.o' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_connection_editor_nm_connection_editor_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o src/connection-editor/nm_connection_editor-page-8021x-security.o `test -f 'src/connection-editor/page-8021x-security.c' || echo '$(srcdir)/'`src/connection-editor/page-8021x-security.c
src/connection-editor/nm_connection_editor-page-8021x-security.obj: src/connection-editor/page-8021x-security.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_connection_editor_nm_connection_editor_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT src/connection-editor/nm_connection_editor-page-8021x-security.obj -MD -MP -MF src/connection-editor/$(DEPDIR)/nm_connection_editor-page-8021x-security.Tpo -c -o src/connection-editor/nm_connection_editor-page-8021x-security.obj `if test -f 'src/connection-editor/page-8021x-security.c'; then $(CYGPATH_W) 'src/connection-editor/page-8021x-security.c'; else $(CYGPATH_W) '$(srcdir)/src/connection-editor/page-8021x-security.c'; fi`
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) src/connection-editor/$(DEPDIR)/nm_connection_editor-page-8021x-security.Tpo src/connection-editor/$(DEPDIR)/nm_connection_editor-page-8021x-security.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='src/connection-editor/page-8021x-security.c' object='src/connection-editor/nm_connection_editor-page-8021x-security.obj' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_connection_editor_nm_connection_editor_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o src/connection-editor/nm_connection_editor-page-8021x-security.obj `if test -f 'src/connection-editor/page-8021x-security.c'; then $(CYGPATH_W) 'src/connection-editor/page-8021x-security.c'; else $(CYGPATH_W) '$(srcdir)/src/connection-editor/page-8021x-security.c'; fi`
src/connection-editor/nm_connection_editor-page-wifi.o: src/connection-editor/page-wifi.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_connection_editor_nm_connection_editor_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT src/connection-editor/nm_connection_editor-page-wifi.o -MD -MP -MF src/connection-editor/$(DEPDIR)/nm_connection_editor-page-wifi.Tpo -c -o src/connection-editor/nm_connection_editor-page-wifi.o `test -f 'src/connection-editor/page-wifi.c' || echo '$(srcdir)/'`src/connection-editor/page-wifi.c
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) src/connection-editor/$(DEPDIR)/nm_connection_editor-page-wifi.Tpo src/connection-editor/$(DEPDIR)/nm_connection_editor-page-wifi.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='src/connection-editor/page-wifi.c' object='src/connection-editor/nm_connection_editor-page-wifi.o' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_connection_editor_nm_connection_editor_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o src/connection-editor/nm_connection_editor-page-wifi.o `test -f 'src/connection-editor/page-wifi.c' || echo '$(srcdir)/'`src/connection-editor/page-wifi.c
src/connection-editor/nm_connection_editor-page-wifi.obj: src/connection-editor/page-wifi.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_connection_editor_nm_connection_editor_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT src/connection-editor/nm_connection_editor-page-wifi.obj -MD -MP -MF src/connection-editor/$(DEPDIR)/nm_connection_editor-page-wifi.Tpo -c -o src/connection-editor/nm_connection_editor-page-wifi.obj `if test -f 'src/connection-editor/page-wifi.c'; then $(CYGPATH_W) 'src/connection-editor/page-wifi.c'; else $(CYGPATH_W) '$(srcdir)/src/connection-editor/page-wifi.c'; fi`
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) src/connection-editor/$(DEPDIR)/nm_connection_editor-page-wifi.Tpo src/connection-editor/$(DEPDIR)/nm_connection_editor-page-wifi.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='src/connection-editor/page-wifi.c' object='src/connection-editor/nm_connection_editor-page-wifi.obj' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_connection_editor_nm_connection_editor_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o src/connection-editor/nm_connection_editor-page-wifi.obj `if test -f 'src/connection-editor/page-wifi.c'; then $(CYGPATH_W) 'src/connection-editor/page-wifi.c'; else $(CYGPATH_W) '$(srcdir)/src/connection-editor/page-wifi.c'; fi`
src/connection-editor/nm_connection_editor-page-wifi-security.o: src/connection-editor/page-wifi-security.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_connection_editor_nm_connection_editor_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT src/connection-editor/nm_connection_editor-page-wifi-security.o -MD -MP -MF src/connection-editor/$(DEPDIR)/nm_connection_editor-page-wifi-security.Tpo -c -o src/connection-editor/nm_connection_editor-page-wifi-security.o `test -f 'src/connection-editor/page-wifi-security.c' || echo '$(srcdir)/'`src/connection-editor/page-wifi-security.c
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) src/connection-editor/$(DEPDIR)/nm_connection_editor-page-wifi-security.Tpo src/connection-editor/$(DEPDIR)/nm_connection_editor-page-wifi-security.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='src/connection-editor/page-wifi-security.c' object='src/connection-editor/nm_connection_editor-page-wifi-security.o' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_connection_editor_nm_connection_editor_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o src/connection-editor/nm_connection_editor-page-wifi-security.o `test -f 'src/connection-editor/page-wifi-security.c' || echo '$(srcdir)/'`src/connection-editor/page-wifi-security.c
src/connection-editor/nm_connection_editor-page-wifi-security.obj: src/connection-editor/page-wifi-security.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_connection_editor_nm_connection_editor_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT src/connection-editor/nm_connection_editor-page-wifi-security.obj -MD -MP -MF src/connection-editor/$(DEPDIR)/nm_connection_editor-page-wifi-security.Tpo -c -o src/connection-editor/nm_connection_editor-page-wifi-security.obj `if test -f 'src/connection-editor/page-wifi-security.c'; then $(CYGPATH_W) 'src/connection-editor/page-wifi-security.c'; else $(CYGPATH_W) '$(srcdir)/src/connection-editor/page-wifi-security.c'; fi`
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) src/connection-editor/$(DEPDIR)/nm_connection_editor-page-wifi-security.Tpo src/connection-editor/$(DEPDIR)/nm_connection_editor-page-wifi-security.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='src/connection-editor/page-wifi-security.c' object='src/connection-editor/nm_connection_editor-page-wifi-security.obj' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_connection_editor_nm_connection_editor_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o src/connection-editor/nm_connection_editor-page-wifi-security.obj `if test -f 'src/connection-editor/page-wifi-security.c'; then $(CYGPATH_W) 'src/connection-editor/page-wifi-security.c'; else $(CYGPATH_W) '$(srcdir)/src/connection-editor/page-wifi-security.c'; fi`
src/connection-editor/nm_connection_editor-page-infiniband.o: src/connection-editor/page-infiniband.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_connection_editor_nm_connection_editor_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT src/connection-editor/nm_connection_editor-page-infiniband.o -MD -MP -MF src/connection-editor/$(DEPDIR)/nm_connection_editor-page-infiniband.Tpo -c -o src/connection-editor/nm_connection_editor-page-infiniband.o `test -f 'src/connection-editor/page-infiniband.c' || echo '$(srcdir)/'`src/connection-editor/page-infiniband.c
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) src/connection-editor/$(DEPDIR)/nm_connection_editor-page-infiniband.Tpo src/connection-editor/$(DEPDIR)/nm_connection_editor-page-infiniband.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='src/connection-editor/page-infiniband.c' object='src/connection-editor/nm_connection_editor-page-infiniband.o' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_connection_editor_nm_connection_editor_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o src/connection-editor/nm_connection_editor-page-infiniband.o `test -f 'src/connection-editor/page-infiniband.c' || echo '$(srcdir)/'`src/connection-editor/page-infiniband.c
src/connection-editor/nm_connection_editor-page-infiniband.obj: src/connection-editor/page-infiniband.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_connection_editor_nm_connection_editor_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT src/connection-editor/nm_connection_editor-page-infiniband.obj -MD -MP -MF src/connection-editor/$(DEPDIR)/nm_connection_editor-page-infiniband.Tpo -c -o src/connection-editor/nm_connection_editor-page-infiniband.obj `if test -f 'src/connection-editor/page-infiniband.c'; then $(CYGPATH_W) 'src/connection-editor/page-infiniband.c'; else $(CYGPATH_W) '$(srcdir)/src/connection-editor/page-infiniband.c'; fi`
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) src/connection-editor/$(DEPDIR)/nm_connection_editor-page-infiniband.Tpo src/connection-editor/$(DEPDIR)/nm_connection_editor-page-infiniband.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='src/connection-editor/page-infiniband.c' object='src/connection-editor/nm_connection_editor-page-infiniband.obj' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_connection_editor_nm_connection_editor_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o src/connection-editor/nm_connection_editor-page-infiniband.obj `if test -f 'src/connection-editor/page-infiniband.c'; then $(CYGPATH_W) 'src/connection-editor/page-infiniband.c'; else $(CYGPATH_W) '$(srcdir)/src/connection-editor/page-infiniband.c'; fi`
src/connection-editor/nm_connection_editor-page-ip-tunnel.o: src/connection-editor/page-ip-tunnel.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_connection_editor_nm_connection_editor_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT src/connection-editor/nm_connection_editor-page-ip-tunnel.o -MD -MP -MF src/connection-editor/$(DEPDIR)/nm_connection_editor-page-ip-tunnel.Tpo -c -o src/connection-editor/nm_connection_editor-page-ip-tunnel.o `test -f 'src/connection-editor/page-ip-tunnel.c' || echo '$(srcdir)/'`src/connection-editor/page-ip-tunnel.c
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) src/connection-editor/$(DEPDIR)/nm_connection_editor-page-ip-tunnel.Tpo src/connection-editor/$(DEPDIR)/nm_connection_editor-page-ip-tunnel.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='src/connection-editor/page-ip-tunnel.c' object='src/connection-editor/nm_connection_editor-page-ip-tunnel.o' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_connection_editor_nm_connection_editor_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o src/connection-editor/nm_connection_editor-page-ip-tunnel.o `test -f 'src/connection-editor/page-ip-tunnel.c' || echo '$(srcdir)/'`src/connection-editor/page-ip-tunnel.c
src/connection-editor/nm_connection_editor-page-ip-tunnel.obj: src/connection-editor/page-ip-tunnel.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_connection_editor_nm_connection_editor_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT src/connection-editor/nm_connection_editor-page-ip-tunnel.obj -MD -MP -MF src/connection-editor/$(DEPDIR)/nm_connection_editor-page-ip-tunnel.Tpo -c -o src/connection-editor/nm_connection_editor-page-ip-tunnel.obj `if test -f 'src/connection-editor/page-ip-tunnel.c'; then $(CYGPATH_W) 'src/connection-editor/page-ip-tunnel.c'; else $(CYGPATH_W) '$(srcdir)/src/connection-editor/page-ip-tunnel.c'; fi`
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) src/connection-editor/$(DEPDIR)/nm_connection_editor-page-ip-tunnel.Tpo src/connection-editor/$(DEPDIR)/nm_connection_editor-page-ip-tunnel.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='src/connection-editor/page-ip-tunnel.c' object='src/connection-editor/nm_connection_editor-page-ip-tunnel.obj' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_connection_editor_nm_connection_editor_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o src/connection-editor/nm_connection_editor-page-ip-tunnel.obj `if test -f 'src/connection-editor/page-ip-tunnel.c'; then $(CYGPATH_W) 'src/connection-editor/page-ip-tunnel.c'; else $(CYGPATH_W) '$(srcdir)/src/connection-editor/page-ip-tunnel.c'; fi`
src/connection-editor/nm_connection_editor-page-ip4.o: src/connection-editor/page-ip4.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_connection_editor_nm_connection_editor_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT src/connection-editor/nm_connection_editor-page-ip4.o -MD -MP -MF src/connection-editor/$(DEPDIR)/nm_connection_editor-page-ip4.Tpo -c -o src/connection-editor/nm_connection_editor-page-ip4.o `test -f 'src/connection-editor/page-ip4.c' || echo '$(srcdir)/'`src/connection-editor/page-ip4.c
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) src/connection-editor/$(DEPDIR)/nm_connection_editor-page-ip4.Tpo src/connection-editor/$(DEPDIR)/nm_connection_editor-page-ip4.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='src/connection-editor/page-ip4.c' object='src/connection-editor/nm_connection_editor-page-ip4.o' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_connection_editor_nm_connection_editor_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o src/connection-editor/nm_connection_editor-page-ip4.o `test -f 'src/connection-editor/page-ip4.c' || echo '$(srcdir)/'`src/connection-editor/page-ip4.c
src/connection-editor/nm_connection_editor-page-ip4.obj: src/connection-editor/page-ip4.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_connection_editor_nm_connection_editor_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT src/connection-editor/nm_connection_editor-page-ip4.obj -MD -MP -MF src/connection-editor/$(DEPDIR)/nm_connection_editor-page-ip4.Tpo -c -o src/connection-editor/nm_connection_editor-page-ip4.obj `if test -f 'src/connection-editor/page-ip4.c'; then $(CYGPATH_W) 'src/connection-editor/page-ip4.c'; else $(CYGPATH_W) '$(srcdir)/src/connection-editor/page-ip4.c'; fi`
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) src/connection-editor/$(DEPDIR)/nm_connection_editor-page-ip4.Tpo src/connection-editor/$(DEPDIR)/nm_connection_editor-page-ip4.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='src/connection-editor/page-ip4.c' object='src/connection-editor/nm_connection_editor-page-ip4.obj' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_connection_editor_nm_connection_editor_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o src/connection-editor/nm_connection_editor-page-ip4.obj `if test -f 'src/connection-editor/page-ip4.c'; then $(CYGPATH_W) 'src/connection-editor/page-ip4.c'; else $(CYGPATH_W) '$(srcdir)/src/connection-editor/page-ip4.c'; fi`
src/connection-editor/nm_connection_editor-page-ip6.o: src/connection-editor/page-ip6.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_connection_editor_nm_connection_editor_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT src/connection-editor/nm_connection_editor-page-ip6.o -MD -MP -MF src/connection-editor/$(DEPDIR)/nm_connection_editor-page-ip6.Tpo -c -o src/connection-editor/nm_connection_editor-page-ip6.o `test -f 'src/connection-editor/page-ip6.c' || echo '$(srcdir)/'`src/connection-editor/page-ip6.c
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) src/connection-editor/$(DEPDIR)/nm_connection_editor-page-ip6.Tpo src/connection-editor/$(DEPDIR)/nm_connection_editor-page-ip6.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='src/connection-editor/page-ip6.c' object='src/connection-editor/nm_connection_editor-page-ip6.o' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_connection_editor_nm_connection_editor_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o src/connection-editor/nm_connection_editor-page-ip6.o `test -f 'src/connection-editor/page-ip6.c' || echo '$(srcdir)/'`src/connection-editor/page-ip6.c
src/connection-editor/nm_connection_editor-page-ip6.obj: src/connection-editor/page-ip6.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_connection_editor_nm_connection_editor_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT src/connection-editor/nm_connection_editor-page-ip6.obj -MD -MP -MF src/connection-editor/$(DEPDIR)/nm_connection_editor-page-ip6.Tpo -c -o src/connection-editor/nm_connection_editor-page-ip6.obj `if test -f 'src/connection-editor/page-ip6.c'; then $(CYGPATH_W) 'src/connection-editor/page-ip6.c'; else $(CYGPATH_W) '$(srcdir)/src/connection-editor/page-ip6.c'; fi`
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) src/connection-editor/$(DEPDIR)/nm_connection_editor-page-ip6.Tpo src/connection-editor/$(DEPDIR)/nm_connection_editor-page-ip6.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='src/connection-editor/page-ip6.c' object='src/connection-editor/nm_connection_editor-page-ip6.obj' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_connection_editor_nm_connection_editor_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o src/connection-editor/nm_connection_editor-page-ip6.obj `if test -f 'src/connection-editor/page-ip6.c'; then $(CYGPATH_W) 'src/connection-editor/page-ip6.c'; else $(CYGPATH_W) '$(srcdir)/src/connection-editor/page-ip6.c'; fi`
src/connection-editor/nm_connection_editor-page-dsl.o: src/connection-editor/page-dsl.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_connection_editor_nm_connection_editor_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT src/connection-editor/nm_connection_editor-page-dsl.o -MD -MP -MF src/connection-editor/$(DEPDIR)/nm_connection_editor-page-dsl.Tpo -c -o src/connection-editor/nm_connection_editor-page-dsl.o `test -f 'src/connection-editor/page-dsl.c' || echo '$(srcdir)/'`src/connection-editor/page-dsl.c
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) src/connection-editor/$(DEPDIR)/nm_connection_editor-page-dsl.Tpo src/connection-editor/$(DEPDIR)/nm_connection_editor-page-dsl.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='src/connection-editor/page-dsl.c' object='src/connection-editor/nm_connection_editor-page-dsl.o' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_connection_editor_nm_connection_editor_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o src/connection-editor/nm_connection_editor-page-dsl.o `test -f 'src/connection-editor/page-dsl.c' || echo '$(srcdir)/'`src/connection-editor/page-dsl.c
src/connection-editor/nm_connection_editor-page-dsl.obj: src/connection-editor/page-dsl.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_connection_editor_nm_connection_editor_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT src/connection-editor/nm_connection_editor-page-dsl.obj -MD -MP -MF src/connection-editor/$(DEPDIR)/nm_connection_editor-page-dsl.Tpo -c -o src/connection-editor/nm_connection_editor-page-dsl.obj `if test -f 'src/connection-editor/page-dsl.c'; then $(CYGPATH_W) 'src/connection-editor/page-dsl.c'; else $(CYGPATH_W) '$(srcdir)/src/connection-editor/page-dsl.c'; fi`
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) src/connection-editor/$(DEPDIR)/nm_connection_editor-page-dsl.Tpo src/connection-editor/$(DEPDIR)/nm_connection_editor-page-dsl.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='src/connection-editor/page-dsl.c' object='src/connection-editor/nm_connection_editor-page-dsl.obj' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_connection_editor_nm_connection_editor_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o src/connection-editor/nm_connection_editor-page-dsl.obj `if test -f 'src/connection-editor/page-dsl.c'; then $(CYGPATH_W) 'src/connection-editor/page-dsl.c'; else $(CYGPATH_W) '$(srcdir)/src/connection-editor/page-dsl.c'; fi`
src/connection-editor/nm_connection_editor-page-macsec.o: src/connection-editor/page-macsec.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_connection_editor_nm_connection_editor_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT src/connection-editor/nm_connection_editor-page-macsec.o -MD -MP -MF src/connection-editor/$(DEPDIR)/nm_connection_editor-page-macsec.Tpo -c -o src/connection-editor/nm_connection_editor-page-macsec.o `test -f 'src/connection-editor/page-macsec.c' || echo '$(srcdir)/'`src/connection-editor/page-macsec.c
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) src/connection-editor/$(DEPDIR)/nm_connection_editor-page-macsec.Tpo src/connection-editor/$(DEPDIR)/nm_connection_editor-page-macsec.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='src/connection-editor/page-macsec.c' object='src/connection-editor/nm_connection_editor-page-macsec.o' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_connection_editor_nm_connection_editor_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o src/connection-editor/nm_connection_editor-page-macsec.o `test -f 'src/connection-editor/page-macsec.c' || echo '$(srcdir)/'`src/connection-editor/page-macsec.c
src/connection-editor/nm_connection_editor-page-macsec.obj: src/connection-editor/page-macsec.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_connection_editor_nm_connection_editor_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT src/connection-editor/nm_connection_editor-page-macsec.obj -MD -MP -MF src/connection-editor/$(DEPDIR)/nm_connection_editor-page-macsec.Tpo -c -o src/connection-editor/nm_connection_editor-page-macsec.obj `if test -f 'src/connection-editor/page-macsec.c'; then $(CYGPATH_W) 'src/connection-editor/page-macsec.c'; else $(CYGPATH_W) '$(srcdir)/src/connection-editor/page-macsec.c'; fi`
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) src/connection-editor/$(DEPDIR)/nm_connection_editor-page-macsec.Tpo src/connection-editor/$(DEPDIR)/nm_connection_editor-page-macsec.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='src/connection-editor/page-macsec.c' object='src/connection-editor/nm_connection_editor-page-macsec.obj' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_connection_editor_nm_connection_editor_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o src/connection-editor/nm_connection_editor-page-macsec.obj `if test -f 'src/connection-editor/page-macsec.c'; then $(CYGPATH_W) 'src/connection-editor/page-macsec.c'; else $(CYGPATH_W) '$(srcdir)/src/connection-editor/page-macsec.c'; fi`
src/connection-editor/nm_connection_editor-page-mobile.o: src/connection-editor/page-mobile.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_connection_editor_nm_connection_editor_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT src/connection-editor/nm_connection_editor-page-mobile.o -MD -MP -MF src/connection-editor/$(DEPDIR)/nm_connection_editor-page-mobile.Tpo -c -o src/connection-editor/nm_connection_editor-page-mobile.o `test -f 'src/connection-editor/page-mobile.c' || echo '$(srcdir)/'`src/connection-editor/page-mobile.c
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) src/connection-editor/$(DEPDIR)/nm_connection_editor-page-mobile.Tpo src/connection-editor/$(DEPDIR)/nm_connection_editor-page-mobile.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='src/connection-editor/page-mobile.c' object='src/connection-editor/nm_connection_editor-page-mobile.o' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_connection_editor_nm_connection_editor_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o src/connection-editor/nm_connection_editor-page-mobile.o `test -f 'src/connection-editor/page-mobile.c' || echo '$(srcdir)/'`src/connection-editor/page-mobile.c
src/connection-editor/nm_connection_editor-page-mobile.obj: src/connection-editor/page-mobile.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_connection_editor_nm_connection_editor_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT src/connection-editor/nm_connection_editor-page-mobile.obj -MD -MP -MF src/connection-editor/$(DEPDIR)/nm_connection_editor-page-mobile.Tpo -c -o src/connection-editor/nm_connection_editor-page-mobile.obj `if test -f 'src/connection-editor/page-mobile.c'; then $(CYGPATH_W) 'src/connection-editor/page-mobile.c'; else $(CYGPATH_W) '$(srcdir)/src/connection-editor/page-mobile.c'; fi`
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) src/connection-editor/$(DEPDIR)/nm_connection_editor-page-mobile.Tpo src/connection-editor/$(DEPDIR)/nm_connection_editor-page-mobile.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='src/connection-editor/page-mobile.c' object='src/connection-editor/nm_connection_editor-page-mobile.obj' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_connection_editor_nm_connection_editor_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o src/connection-editor/nm_connection_editor-page-mobile.obj `if test -f 'src/connection-editor/page-mobile.c'; then $(CYGPATH_W) 'src/connection-editor/page-mobile.c'; else $(CYGPATH_W) '$(srcdir)/src/connection-editor/page-mobile.c'; fi`
src/connection-editor/nm_connection_editor-page-bluetooth.o: src/connection-editor/page-bluetooth.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_connection_editor_nm_connection_editor_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT src/connection-editor/nm_connection_editor-page-bluetooth.o -MD -MP -MF src/connection-editor/$(DEPDIR)/nm_connection_editor-page-bluetooth.Tpo -c -o src/connection-editor/nm_connection_editor-page-bluetooth.o `test -f 'src/connection-editor/page-bluetooth.c' || echo '$(srcdir)/'`src/connection-editor/page-bluetooth.c
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) src/connection-editor/$(DEPDIR)/nm_connection_editor-page-bluetooth.Tpo src/connection-editor/$(DEPDIR)/nm_connection_editor-page-bluetooth.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='src/connection-editor/page-bluetooth.c' object='src/connection-editor/nm_connection_editor-page-bluetooth.o' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_connection_editor_nm_connection_editor_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o src/connection-editor/nm_connection_editor-page-bluetooth.o `test -f 'src/connection-editor/page-bluetooth.c' || echo '$(srcdir)/'`src/connection-editor/page-bluetooth.c
src/connection-editor/nm_connection_editor-page-bluetooth.obj: src/connection-editor/page-bluetooth.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_connection_editor_nm_connection_editor_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT src/connection-editor/nm_connection_editor-page-bluetooth.obj -MD -MP -MF src/connection-editor/$(DEPDIR)/nm_connection_editor-page-bluetooth.Tpo -c -o src/connection-editor/nm_connection_editor-page-bluetooth.obj `if test -f 'src/connection-editor/page-bluetooth.c'; then $(CYGPATH_W) 'src/connection-editor/page-bluetooth.c'; else $(CYGPATH_W) '$(srcdir)/src/connection-editor/page-bluetooth.c'; fi`
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) src/connection-editor/$(DEPDIR)/nm_connection_editor-page-bluetooth.Tpo src/connection-editor/$(DEPDIR)/nm_connection_editor-page-bluetooth.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='src/connection-editor/page-bluetooth.c' object='src/connection-editor/nm_connection_editor-page-bluetooth.obj' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_connection_editor_nm_connection_editor_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o src/connection-editor/nm_connection_editor-page-bluetooth.obj `if test -f 'src/connection-editor/page-bluetooth.c'; then $(CYGPATH_W) 'src/connection-editor/page-bluetooth.c'; else $(CYGPATH_W) '$(srcdir)/src/connection-editor/page-bluetooth.c'; fi`
src/connection-editor/nm_connection_editor-page-ppp.o: src/connection-editor/page-ppp.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_connection_editor_nm_connection_editor_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT src/connection-editor/nm_connection_editor-page-ppp.o -MD -MP -MF src/connection-editor/$(DEPDIR)/nm_connection_editor-page-ppp.Tpo -c -o src/connection-editor/nm_connection_editor-page-ppp.o `test -f 'src/connection-editor/page-ppp.c' || echo '$(srcdir)/'`src/connection-editor/page-ppp.c
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) src/connection-editor/$(DEPDIR)/nm_connection_editor-page-ppp.Tpo src/connection-editor/$(DEPDIR)/nm_connection_editor-page-ppp.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='src/connection-editor/page-ppp.c' object='src/connection-editor/nm_connection_editor-page-ppp.o' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_connection_editor_nm_connection_editor_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o src/connection-editor/nm_connection_editor-page-ppp.o `test -f 'src/connection-editor/page-ppp.c' || echo '$(srcdir)/'`src/connection-editor/page-ppp.c
src/connection-editor/nm_connection_editor-page-ppp.obj: src/connection-editor/page-ppp.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_connection_editor_nm_connection_editor_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT src/connection-editor/nm_connection_editor-page-ppp.obj -MD -MP -MF src/connection-editor/$(DEPDIR)/nm_connection_editor-page-ppp.Tpo -c -o src/connection-editor/nm_connection_editor-page-ppp.obj `if test -f 'src/connection-editor/page-ppp.c'; then $(CYGPATH_W) 'src/connection-editor/page-ppp.c'; else $(CYGPATH_W) '$(srcdir)/src/connection-editor/page-ppp.c'; fi`
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) src/connection-editor/$(DEPDIR)/nm_connection_editor-page-ppp.Tpo src/connection-editor/$(DEPDIR)/nm_connection_editor-page-ppp.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='src/connection-editor/page-ppp.c' object='src/connection-editor/nm_connection_editor-page-ppp.obj' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_connection_editor_nm_connection_editor_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o src/connection-editor/nm_connection_editor-page-ppp.obj `if test -f 'src/connection-editor/page-ppp.c'; then $(CYGPATH_W) 'src/connection-editor/page-ppp.c'; else $(CYGPATH_W) '$(srcdir)/src/connection-editor/page-ppp.c'; fi`
src/connection-editor/nm_connection_editor-page-proxy.o: src/connection-editor/page-proxy.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_connection_editor_nm_connection_editor_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT src/connection-editor/nm_connection_editor-page-proxy.o -MD -MP -MF src/connection-editor/$(DEPDIR)/nm_connection_editor-page-proxy.Tpo -c -o src/connection-editor/nm_connection_editor-page-proxy.o `test -f 'src/connection-editor/page-proxy.c' || echo '$(srcdir)/'`src/connection-editor/page-proxy.c
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) src/connection-editor/$(DEPDIR)/nm_connection_editor-page-proxy.Tpo src/connection-editor/$(DEPDIR)/nm_connection_editor-page-proxy.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='src/connection-editor/page-proxy.c' object='src/connection-editor/nm_connection_editor-page-proxy.o' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_connection_editor_nm_connection_editor_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o src/connection-editor/nm_connection_editor-page-proxy.o `test -f 'src/connection-editor/page-proxy.c' || echo '$(srcdir)/'`src/connection-editor/page-proxy.c
src/connection-editor/nm_connection_editor-page-proxy.obj: src/connection-editor/page-proxy.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_connection_editor_nm_connection_editor_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT src/connection-editor/nm_connection_editor-page-proxy.obj -MD -MP -MF src/connection-editor/$(DEPDIR)/nm_connection_editor-page-proxy.Tpo -c -o src/connection-editor/nm_connection_editor-page-proxy.obj `if test -f 'src/connection-editor/page-proxy.c'; then $(CYGPATH_W) 'src/connection-editor/page-proxy.c'; else $(CYGPATH_W) '$(srcdir)/src/connection-editor/page-proxy.c'; fi`
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) src/connection-editor/$(DEPDIR)/nm_connection_editor-page-proxy.Tpo src/connection-editor/$(DEPDIR)/nm_connection_editor-page-proxy.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='src/connection-editor/page-proxy.c' object='src/connection-editor/nm_connection_editor-page-proxy.obj' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_connection_editor_nm_connection_editor_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o src/connection-editor/nm_connection_editor-page-proxy.obj `if test -f 'src/connection-editor/page-proxy.c'; then $(CYGPATH_W) 'src/connection-editor/page-proxy.c'; else $(CYGPATH_W) '$(srcdir)/src/connection-editor/page-proxy.c'; fi`
src/connection-editor/nm_connection_editor-page-vpn.o: src/connection-editor/page-vpn.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_connection_editor_nm_connection_editor_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT src/connection-editor/nm_connection_editor-page-vpn.o -MD -MP -MF src/connection-editor/$(DEPDIR)/nm_connection_editor-page-vpn.Tpo -c -o src/connection-editor/nm_connection_editor-page-vpn.o `test -f 'src/connection-editor/page-vpn.c' || echo '$(srcdir)/'`src/connection-editor/page-vpn.c
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) src/connection-editor/$(DEPDIR)/nm_connection_editor-page-vpn.Tpo src/connection-editor/$(DEPDIR)/nm_connection_editor-page-vpn.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='src/connection-editor/page-vpn.c' object='src/connection-editor/nm_connection_editor-page-vpn.o' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_connection_editor_nm_connection_editor_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o src/connection-editor/nm_connection_editor-page-vpn.o `test -f 'src/connection-editor/page-vpn.c' || echo '$(srcdir)/'`src/connection-editor/page-vpn.c
src/connection-editor/nm_connection_editor-page-vpn.obj: src/connection-editor/page-vpn.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_connection_editor_nm_connection_editor_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT src/connection-editor/nm_connection_editor-page-vpn.obj -MD -MP -MF src/connection-editor/$(DEPDIR)/nm_connection_editor-page-vpn.Tpo -c -o src/connection-editor/nm_connection_editor-page-vpn.obj `if test -f 'src/connection-editor/page-vpn.c'; then $(CYGPATH_W) 'src/connection-editor/page-vpn.c'; else $(CYGPATH_W) '$(srcdir)/src/connection-editor/page-vpn.c'; fi`
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) src/connection-editor/$(DEPDIR)/nm_connection_editor-page-vpn.Tpo src/connection-editor/$(DEPDIR)/nm_connection_editor-page-vpn.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='src/connection-editor/page-vpn.c' object='src/connection-editor/nm_connection_editor-page-vpn.obj' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_connection_editor_nm_connection_editor_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o src/connection-editor/nm_connection_editor-page-vpn.obj `if test -f 'src/connection-editor/page-vpn.c'; then $(CYGPATH_W) 'src/connection-editor/page-vpn.c'; else $(CYGPATH_W) '$(srcdir)/src/connection-editor/page-vpn.c'; fi`
src/connection-editor/nm_connection_editor-page-controller.o: src/connection-editor/page-controller.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_connection_editor_nm_connection_editor_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT src/connection-editor/nm_connection_editor-page-controller.o -MD -MP -MF src/connection-editor/$(DEPDIR)/nm_connection_editor-page-controller.Tpo -c -o src/connection-editor/nm_connection_editor-page-controller.o `test -f 'src/connection-editor/page-controller.c' || echo '$(srcdir)/'`src/connection-editor/page-controller.c
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) src/connection-editor/$(DEPDIR)/nm_connection_editor-page-controller.Tpo src/connection-editor/$(DEPDIR)/nm_connection_editor-page-controller.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='src/connection-editor/page-controller.c' object='src/connection-editor/nm_connection_editor-page-controller.o' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_connection_editor_nm_connection_editor_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o src/connection-editor/nm_connection_editor-page-controller.o `test -f 'src/connection-editor/page-controller.c' || echo '$(srcdir)/'`src/connection-editor/page-controller.c
src/connection-editor/nm_connection_editor-page-controller.obj: src/connection-editor/page-controller.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_connection_editor_nm_connection_editor_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT src/connection-editor/nm_connection_editor-page-controller.obj -MD -MP -MF src/connection-editor/$(DEPDIR)/nm_connection_editor-page-controller.Tpo -c -o src/connection-editor/nm_connection_editor-page-controller.obj `if test -f 'src/connection-editor/page-controller.c'; then $(CYGPATH_W) 'src/connection-editor/page-controller.c'; else $(CYGPATH_W) '$(srcdir)/src/connection-editor/page-controller.c'; fi`
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) src/connection-editor/$(DEPDIR)/nm_connection_editor-page-controller.Tpo src/connection-editor/$(DEPDIR)/nm_connection_editor-page-controller.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='src/connection-editor/page-controller.c' object='src/connection-editor/nm_connection_editor-page-controller.obj' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_connection_editor_nm_connection_editor_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o src/connection-editor/nm_connection_editor-page-controller.obj `if test -f 'src/connection-editor/page-controller.c'; then $(CYGPATH_W) 'src/connection-editor/page-controller.c'; else $(CYGPATH_W) '$(srcdir)/src/connection-editor/page-controller.c'; fi`
src/connection-editor/nm_connection_editor-page-bond.o: src/connection-editor/page-bond.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_connection_editor_nm_connection_editor_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT src/connection-editor/nm_connection_editor-page-bond.o -MD -MP -MF src/connection-editor/$(DEPDIR)/nm_connection_editor-page-bond.Tpo -c -o src/connection-editor/nm_connection_editor-page-bond.o `test -f 'src/connection-editor/page-bond.c' || echo '$(srcdir)/'`src/connection-editor/page-bond.c
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) src/connection-editor/$(DEPDIR)/nm_connection_editor-page-bond.Tpo src/connection-editor/$(DEPDIR)/nm_connection_editor-page-bond.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='src/connection-editor/page-bond.c' object='src/connection-editor/nm_connection_editor-page-bond.o' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_connection_editor_nm_connection_editor_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o src/connection-editor/nm_connection_editor-page-bond.o `test -f 'src/connection-editor/page-bond.c' || echo '$(srcdir)/'`src/connection-editor/page-bond.c
src/connection-editor/nm_connection_editor-page-bond.obj: src/connection-editor/page-bond.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_connection_editor_nm_connection_editor_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT src/connection-editor/nm_connection_editor-page-bond.obj -MD -MP -MF src/connection-editor/$(DEPDIR)/nm_connection_editor-page-bond.Tpo -c -o src/connection-editor/nm_connection_editor-page-bond.obj `if test -f 'src/connection-editor/page-bond.c'; then $(CYGPATH_W) 'src/connection-editor/page-bond.c'; else $(CYGPATH_W) '$(srcdir)/src/connection-editor/page-bond.c'; fi`
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) src/connection-editor/$(DEPDIR)/nm_connection_editor-page-bond.Tpo src/connection-editor/$(DEPDIR)/nm_connection_editor-page-bond.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='src/connection-editor/page-bond.c' object='src/connection-editor/nm_connection_editor-page-bond.obj' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_connection_editor_nm_connection_editor_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o src/connection-editor/nm_connection_editor-page-bond.obj `if test -f 'src/connection-editor/page-bond.c'; then $(CYGPATH_W) 'src/connection-editor/page-bond.c'; else $(CYGPATH_W) '$(srcdir)/src/connection-editor/page-bond.c'; fi`
src/connection-editor/nm_connection_editor-page-team.o: src/connection-editor/page-team.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_connection_editor_nm_connection_editor_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT src/connection-editor/nm_connection_editor-page-team.o -MD -MP -MF src/connection-editor/$(DEPDIR)/nm_connection_editor-page-team.Tpo -c -o src/connection-editor/nm_connection_editor-page-team.o `test -f 'src/connection-editor/page-team.c' || echo '$(srcdir)/'`src/connection-editor/page-team.c
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) src/connection-editor/$(DEPDIR)/nm_connection_editor-page-team.Tpo src/connection-editor/$(DEPDIR)/nm_connection_editor-page-team.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='src/connection-editor/page-team.c' object='src/connection-editor/nm_connection_editor-page-team.o' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_connection_editor_nm_connection_editor_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o src/connection-editor/nm_connection_editor-page-team.o `test -f 'src/connection-editor/page-team.c' || echo '$(srcdir)/'`src/connection-editor/page-team.c
src/connection-editor/nm_connection_editor-page-team.obj: src/connection-editor/page-team.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_connection_editor_nm_connection_editor_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT src/connection-editor/nm_connection_editor-page-team.obj -MD -MP -MF src/connection-editor/$(DEPDIR)/nm_connection_editor-page-team.Tpo -c -o src/connection-editor/nm_connection_editor-page-team.obj `if test -f 'src/connection-editor/page-team.c'; then $(CYGPATH_W) 'src/connection-editor/page-team.c'; else $(CYGPATH_W) '$(srcdir)/src/connection-editor/page-team.c'; fi`
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) src/connection-editor/$(DEPDIR)/nm_connection_editor-page-team.Tpo src/connection-editor/$(DEPDIR)/nm_connection_editor-page-team.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='src/connection-editor/page-team.c' object='src/connection-editor/nm_connection_editor-page-team.obj' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_connection_editor_nm_connection_editor_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o src/connection-editor/nm_connection_editor-page-team.obj `if test -f 'src/connection-editor/page-team.c'; then $(CYGPATH_W) 'src/connection-editor/page-team.c'; else $(CYGPATH_W) '$(srcdir)/src/connection-editor/page-team.c'; fi`
src/connection-editor/nm_connection_editor-page-team-port.o: src/connection-editor/page-team-port.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_connection_editor_nm_connection_editor_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT src/connection-editor/nm_connection_editor-page-team-port.o -MD -MP -MF src/connection-editor/$(DEPDIR)/nm_connection_editor-page-team-port.Tpo -c -o src/connection-editor/nm_connection_editor-page-team-port.o `test -f 'src/connection-editor/page-team-port.c' || echo '$(srcdir)/'`src/connection-editor/page-team-port.c
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) src/connection-editor/$(DEPDIR)/nm_connection_editor-page-team-port.Tpo src/connection-editor/$(DEPDIR)/nm_connection_editor-page-team-port.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='src/connection-editor/page-team-port.c' object='src/connection-editor/nm_connection_editor-page-team-port.o' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_connection_editor_nm_connection_editor_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o src/connection-editor/nm_connection_editor-page-team-port.o `test -f 'src/connection-editor/page-team-port.c' || echo '$(srcdir)/'`src/connection-editor/page-team-port.c
src/connection-editor/nm_connection_editor-page-team-port.obj: src/connection-editor/page-team-port.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_connection_editor_nm_connection_editor_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT src/connection-editor/nm_connection_editor-page-team-port.obj -MD -MP -MF src/connection-editor/$(DEPDIR)/nm_connection_editor-page-team-port.Tpo -c -o src/connection-editor/nm_connection_editor-page-team-port.obj `if test -f 'src/connection-editor/page-team-port.c'; then $(CYGPATH_W) 'src/connection-editor/page-team-port.c'; else $(CYGPATH_W) '$(srcdir)/src/connection-editor/page-team-port.c'; fi`
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) src/connection-editor/$(DEPDIR)/nm_connection_editor-page-team-port.Tpo src/connection-editor/$(DEPDIR)/nm_connection_editor-page-team-port.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='src/connection-editor/page-team-port.c' object='src/connection-editor/nm_connection_editor-page-team-port.obj' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_connection_editor_nm_connection_editor_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o src/connection-editor/nm_connection_editor-page-team-port.obj `if test -f 'src/connection-editor/page-team-port.c'; then $(CYGPATH_W) 'src/connection-editor/page-team-port.c'; else $(CYGPATH_W) '$(srcdir)/src/connection-editor/page-team-port.c'; fi`
src/connection-editor/nm_connection_editor-page-bridge.o: src/connection-editor/page-bridge.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_connection_editor_nm_connection_editor_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT src/connection-editor/nm_connection_editor-page-bridge.o -MD -MP -MF src/connection-editor/$(DEPDIR)/nm_connection_editor-page-bridge.Tpo -c -o src/connection-editor/nm_connection_editor-page-bridge.o `test -f 'src/connection-editor/page-bridge.c' || echo '$(srcdir)/'`src/connection-editor/page-bridge.c
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) src/connection-editor/$(DEPDIR)/nm_connection_editor-page-bridge.Tpo src/connection-editor/$(DEPDIR)/nm_connection_editor-page-bridge.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='src/connection-editor/page-bridge.c' object='src/connection-editor/nm_connection_editor-page-bridge.o' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_connection_editor_nm_connection_editor_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o src/connection-editor/nm_connection_editor-page-bridge.o `test -f 'src/connection-editor/page-bridge.c' || echo '$(srcdir)/'`src/connection-editor/page-bridge.c
src/connection-editor/nm_connection_editor-page-bridge.obj: src/connection-editor/page-bridge.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_connection_editor_nm_connection_editor_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT src/connection-editor/nm_connection_editor-page-bridge.obj -MD -MP -MF src/connection-editor/$(DEPDIR)/nm_connection_editor-page-bridge.Tpo -c -o src/connection-editor/nm_connection_editor-page-bridge.obj `if test -f 'src/connection-editor/page-bridge.c'; then $(CYGPATH_W) 'src/connection-editor/page-bridge.c'; else $(CYGPATH_W) '$(srcdir)/src/connection-editor/page-bridge.c'; fi`
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) src/connection-editor/$(DEPDIR)/nm_connection_editor-page-bridge.Tpo src/connection-editor/$(DEPDIR)/nm_connection_editor-page-bridge.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='src/connection-editor/page-bridge.c' object='src/connection-editor/nm_connection_editor-page-bridge.obj' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_connection_editor_nm_connection_editor_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o src/connection-editor/nm_connection_editor-page-bridge.obj `if test -f 'src/connection-editor/page-bridge.c'; then $(CYGPATH_W) 'src/connection-editor/page-bridge.c'; else $(CYGPATH_W) '$(srcdir)/src/connection-editor/page-bridge.c'; fi`
src/connection-editor/nm_connection_editor-page-bridge-port.o: src/connection-editor/page-bridge-port.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_connection_editor_nm_connection_editor_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT src/connection-editor/nm_connection_editor-page-bridge-port.o -MD -MP -MF src/connection-editor/$(DEPDIR)/nm_connection_editor-page-bridge-port.Tpo -c -o src/connection-editor/nm_connection_editor-page-bridge-port.o `test -f 'src/connection-editor/page-bridge-port.c' || echo '$(srcdir)/'`src/connection-editor/page-bridge-port.c
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) src/connection-editor/$(DEPDIR)/nm_connection_editor-page-bridge-port.Tpo src/connection-editor/$(DEPDIR)/nm_connection_editor-page-bridge-port.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='src/connection-editor/page-bridge-port.c' object='src/connection-editor/nm_connection_editor-page-bridge-port.o' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_connection_editor_nm_connection_editor_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o src/connection-editor/nm_connection_editor-page-bridge-port.o `test -f 'src/connection-editor/page-bridge-port.c' || echo '$(srcdir)/'`src/connection-editor/page-bridge-port.c
src/connection-editor/nm_connection_editor-page-bridge-port.obj: src/connection-editor/page-bridge-port.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_connection_editor_nm_connection_editor_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT src/connection-editor/nm_connection_editor-page-bridge-port.obj -MD -MP -MF src/connection-editor/$(DEPDIR)/nm_connection_editor-page-bridge-port.Tpo -c -o src/connection-editor/nm_connection_editor-page-bridge-port.obj `if test -f 'src/connection-editor/page-bridge-port.c'; then $(CYGPATH_W) 'src/connection-editor/page-bridge-port.c'; else $(CYGPATH_W) '$(srcdir)/src/connection-editor/page-bridge-port.c'; fi`
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) src/connection-editor/$(DEPDIR)/nm_connection_editor-page-bridge-port.Tpo src/connection-editor/$(DEPDIR)/nm_connection_editor-page-bridge-port.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='src/connection-editor/page-bridge-port.c' object='src/connection-editor/nm_connection_editor-page-bridge-port.obj' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_connection_editor_nm_connection_editor_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o src/connection-editor/nm_connection_editor-page-bridge-port.obj `if test -f 'src/connection-editor/page-bridge-port.c'; then $(CYGPATH_W) 'src/connection-editor/page-bridge-port.c'; else $(CYGPATH_W) '$(srcdir)/src/connection-editor/page-bridge-port.c'; fi`
src/connection-editor/nm_connection_editor-page-vlan.o: src/connection-editor/page-vlan.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_connection_editor_nm_connection_editor_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT src/connection-editor/nm_connection_editor-page-vlan.o -MD -MP -MF src/connection-editor/$(DEPDIR)/nm_connection_editor-page-vlan.Tpo -c -o src/connection-editor/nm_connection_editor-page-vlan.o `test -f 'src/connection-editor/page-vlan.c' || echo '$(srcdir)/'`src/connection-editor/page-vlan.c
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) src/connection-editor/$(DEPDIR)/nm_connection_editor-page-vlan.Tpo src/connection-editor/$(DEPDIR)/nm_connection_editor-page-vlan.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='src/connection-editor/page-vlan.c' object='src/connection-editor/nm_connection_editor-page-vlan.o' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_connection_editor_nm_connection_editor_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o src/connection-editor/nm_connection_editor-page-vlan.o `test -f 'src/connection-editor/page-vlan.c' || echo '$(srcdir)/'`src/connection-editor/page-vlan.c
src/connection-editor/nm_connection_editor-page-vlan.obj: src/connection-editor/page-vlan.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_connection_editor_nm_connection_editor_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT src/connection-editor/nm_connection_editor-page-vlan.obj -MD -MP -MF src/connection-editor/$(DEPDIR)/nm_connection_editor-page-vlan.Tpo -c -o src/connection-editor/nm_connection_editor-page-vlan.obj `if test -f 'src/connection-editor/page-vlan.c'; then $(CYGPATH_W) 'src/connection-editor/page-vlan.c'; else $(CYGPATH_W) '$(srcdir)/src/connection-editor/page-vlan.c'; fi`
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) src/connection-editor/$(DEPDIR)/nm_connection_editor-page-vlan.Tpo src/connection-editor/$(DEPDIR)/nm_connection_editor-page-vlan.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='src/connection-editor/page-vlan.c' object='src/connection-editor/nm_connection_editor-page-vlan.obj' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_connection_editor_nm_connection_editor_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o src/connection-editor/nm_connection_editor-page-vlan.obj `if test -f 'src/connection-editor/page-vlan.c'; then $(CYGPATH_W) 'src/connection-editor/page-vlan.c'; else $(CYGPATH_W) '$(srcdir)/src/connection-editor/page-vlan.c'; fi`
src/connection-editor/nm_connection_editor-page-dcb.o: src/connection-editor/page-dcb.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_connection_editor_nm_connection_editor_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT src/connection-editor/nm_connection_editor-page-dcb.o -MD -MP -MF src/connection-editor/$(DEPDIR)/nm_connection_editor-page-dcb.Tpo -c -o src/connection-editor/nm_connection_editor-page-dcb.o `test -f 'src/connection-editor/page-dcb.c' || echo '$(srcdir)/'`src/connection-editor/page-dcb.c
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) src/connection-editor/$(DEPDIR)/nm_connection_editor-page-dcb.Tpo src/connection-editor/$(DEPDIR)/nm_connection_editor-page-dcb.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='src/connection-editor/page-dcb.c' object='src/connection-editor/nm_connection_editor-page-dcb.o' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_connection_editor_nm_connection_editor_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o src/connection-editor/nm_connection_editor-page-dcb.o `test -f 'src/connection-editor/page-dcb.c' || echo '$(srcdir)/'`src/connection-editor/page-dcb.c
src/connection-editor/nm_connection_editor-page-dcb.obj: src/connection-editor/page-dcb.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_connection_editor_nm_connection_editor_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT src/connection-editor/nm_connection_editor-page-dcb.obj -MD -MP -MF src/connection-editor/$(DEPDIR)/nm_connection_editor-page-dcb.Tpo -c -o src/connection-editor/nm_connection_editor-page-dcb.obj `if test -f 'src/connection-editor/page-dcb.c'; then $(CYGPATH_W) 'src/connection-editor/page-dcb.c'; else $(CYGPATH_W) '$(srcdir)/src/connection-editor/page-dcb.c'; fi`
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) src/connection-editor/$(DEPDIR)/nm_connection_editor-page-dcb.Tpo src/connection-editor/$(DEPDIR)/nm_connection_editor-page-dcb.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='src/connection-editor/page-dcb.c' object='src/connection-editor/nm_connection_editor-page-dcb.obj' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_connection_editor_nm_connection_editor_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o src/connection-editor/nm_connection_editor-page-dcb.obj `if test -f 'src/connection-editor/page-dcb.c'; then $(CYGPATH_W) 'src/connection-editor/page-dcb.c'; else $(CYGPATH_W) '$(srcdir)/src/connection-editor/page-dcb.c'; fi`
src/connection-editor/nm_connection_editor-page-wireguard.o: src/connection-editor/page-wireguard.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_connection_editor_nm_connection_editor_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT src/connection-editor/nm_connection_editor-page-wireguard.o -MD -MP -MF src/connection-editor/$(DEPDIR)/nm_connection_editor-page-wireguard.Tpo -c -o src/connection-editor/nm_connection_editor-page-wireguard.o `test -f 'src/connection-editor/page-wireguard.c' || echo '$(srcdir)/'`src/connection-editor/page-wireguard.c
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) src/connection-editor/$(DEPDIR)/nm_connection_editor-page-wireguard.Tpo src/connection-editor/$(DEPDIR)/nm_connection_editor-page-wireguard.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='src/connection-editor/page-wireguard.c' object='src/connection-editor/nm_connection_editor-page-wireguard.o' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_connection_editor_nm_connection_editor_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o src/connection-editor/nm_connection_editor-page-wireguard.o `test -f 'src/connection-editor/page-wireguard.c' || echo '$(srcdir)/'`src/connection-editor/page-wireguard.c
src/connection-editor/nm_connection_editor-page-wireguard.obj: src/connection-editor/page-wireguard.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_connection_editor_nm_connection_editor_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT src/connection-editor/nm_connection_editor-page-wireguard.obj -MD -MP -MF src/connection-editor/$(DEPDIR)/nm_connection_editor-page-wireguard.Tpo -c -o src/connection-editor/nm_connection_editor-page-wireguard.obj `if test -f 'src/connection-editor/page-wireguard.c'; then $(CYGPATH_W) 'src/connection-editor/page-wireguard.c'; else $(CYGPATH_W) '$(srcdir)/src/connection-editor/page-wireguard.c'; fi`
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) src/connection-editor/$(DEPDIR)/nm_connection_editor-page-wireguard.Tpo src/connection-editor/$(DEPDIR)/nm_connection_editor-page-wireguard.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='src/connection-editor/page-wireguard.c' object='src/connection-editor/nm_connection_editor-page-wireguard.obj' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_connection_editor_nm_connection_editor_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o src/connection-editor/nm_connection_editor-page-wireguard.obj `if test -f 'src/connection-editor/page-wireguard.c'; then $(CYGPATH_W) 'src/connection-editor/page-wireguard.c'; else $(CYGPATH_W) '$(srcdir)/src/connection-editor/page-wireguard.c'; fi`
src/connection-editor/nm_connection_editor-vpn-helpers.o: src/connection-editor/vpn-helpers.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_connection_editor_nm_connection_editor_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT src/connection-editor/nm_connection_editor-vpn-helpers.o -MD -MP -MF src/connection-editor/$(DEPDIR)/nm_connection_editor-vpn-helpers.Tpo -c -o src/connection-editor/nm_connection_editor-vpn-helpers.o `test -f 'src/connection-editor/vpn-helpers.c' || echo '$(srcdir)/'`src/connection-editor/vpn-helpers.c
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) src/connection-editor/$(DEPDIR)/nm_connection_editor-vpn-helpers.Tpo src/connection-editor/$(DEPDIR)/nm_connection_editor-vpn-helpers.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='src/connection-editor/vpn-helpers.c' object='src/connection-editor/nm_connection_editor-vpn-helpers.o' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_connection_editor_nm_connection_editor_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o src/connection-editor/nm_connection_editor-vpn-helpers.o `test -f 'src/connection-editor/vpn-helpers.c' || echo '$(srcdir)/'`src/connection-editor/vpn-helpers.c
src/connection-editor/nm_connection_editor-vpn-helpers.obj: src/connection-editor/vpn-helpers.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_connection_editor_nm_connection_editor_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT src/connection-editor/nm_connection_editor-vpn-helpers.obj -MD -MP -MF src/connection-editor/$(DEPDIR)/nm_connection_editor-vpn-helpers.Tpo -c -o src/connection-editor/nm_connection_editor-vpn-helpers.obj `if test -f 'src/connection-editor/vpn-helpers.c'; then $(CYGPATH_W) 'src/connection-editor/vpn-helpers.c'; else $(CYGPATH_W) '$(srcdir)/src/connection-editor/vpn-helpers.c'; fi`
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) src/connection-editor/$(DEPDIR)/nm_connection_editor-vpn-helpers.Tpo src/connection-editor/$(DEPDIR)/nm_connection_editor-vpn-helpers.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='src/connection-editor/vpn-helpers.c' object='src/connection-editor/nm_connection_editor-vpn-helpers.obj' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_connection_editor_nm_connection_editor_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o src/connection-editor/nm_connection_editor-vpn-helpers.obj `if test -f 'src/connection-editor/vpn-helpers.c'; then $(CYGPATH_W) 'src/connection-editor/vpn-helpers.c'; else $(CYGPATH_W) '$(srcdir)/src/connection-editor/vpn-helpers.c'; fi`
src/connection-editor/nm_connection_editor-ip4-routes-dialog.o: src/connection-editor/ip4-routes-dialog.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_connection_editor_nm_connection_editor_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT src/connection-editor/nm_connection_editor-ip4-routes-dialog.o -MD -MP -MF src/connection-editor/$(DEPDIR)/nm_connection_editor-ip4-routes-dialog.Tpo -c -o src/connection-editor/nm_connection_editor-ip4-routes-dialog.o `test -f 'src/connection-editor/ip4-routes-dialog.c' || echo '$(srcdir)/'`src/connection-editor/ip4-routes-dialog.c
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) src/connection-editor/$(DEPDIR)/nm_connection_editor-ip4-routes-dialog.Tpo src/connection-editor/$(DEPDIR)/nm_connection_editor-ip4-routes-dialog.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='src/connection-editor/ip4-routes-dialog.c' object='src/connection-editor/nm_connection_editor-ip4-routes-dialog.o' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_connection_editor_nm_connection_editor_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o src/connection-editor/nm_connection_editor-ip4-routes-dialog.o `test -f 'src/connection-editor/ip4-routes-dialog.c' || echo '$(srcdir)/'`src/connection-editor/ip4-routes-dialog.c
src/connection-editor/nm_connection_editor-ip4-routes-dialog.obj: src/connection-editor/ip4-routes-dialog.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_connection_editor_nm_connection_editor_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT src/connection-editor/nm_connection_editor-ip4-routes-dialog.obj -MD -MP -MF src/connection-editor/$(DEPDIR)/nm_connection_editor-ip4-routes-dialog.Tpo -c -o src/connection-editor/nm_connection_editor-ip4-routes-dialog.obj `if test -f 'src/connection-editor/ip4-routes-dialog.c'; then $(CYGPATH_W) 'src/connection-editor/ip4-routes-dialog.c'; else $(CYGPATH_W) '$(srcdir)/src/connection-editor/ip4-routes-dialog.c'; fi`
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) src/connection-editor/$(DEPDIR)/nm_connection_editor-ip4-routes-dialog.Tpo src/connection-editor/$(DEPDIR)/nm_connection_editor-ip4-routes-dialog.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='src/connection-editor/ip4-routes-dialog.c' object='src/connection-editor/nm_connection_editor-ip4-routes-dialog.obj' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_connection_editor_nm_connection_editor_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o src/connection-editor/nm_connection_editor-ip4-routes-dialog.obj `if test -f 'src/connection-editor/ip4-routes-dialog.c'; then $(CYGPATH_W) 'src/connection-editor/ip4-routes-dialog.c'; else $(CYGPATH_W) '$(srcdir)/src/connection-editor/ip4-routes-dialog.c'; fi`
src/connection-editor/nm_connection_editor-ip6-routes-dialog.o: src/connection-editor/ip6-routes-dialog.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_connection_editor_nm_connection_editor_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT src/connection-editor/nm_connection_editor-ip6-routes-dialog.o -MD -MP -MF src/connection-editor/$(DEPDIR)/nm_connection_editor-ip6-routes-dialog.Tpo -c -o src/connection-editor/nm_connection_editor-ip6-routes-dialog.o `test -f 'src/connection-editor/ip6-routes-dialog.c' || echo '$(srcdir)/'`src/connection-editor/ip6-routes-dialog.c
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) src/connection-editor/$(DEPDIR)/nm_connection_editor-ip6-routes-dialog.Tpo src/connection-editor/$(DEPDIR)/nm_connection_editor-ip6-routes-dialog.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='src/connection-editor/ip6-routes-dialog.c' object='src/connection-editor/nm_connection_editor-ip6-routes-dialog.o' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_connection_editor_nm_connection_editor_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o src/connection-editor/nm_connection_editor-ip6-routes-dialog.o `test -f 'src/connection-editor/ip6-routes-dialog.c' || echo '$(srcdir)/'`src/connection-editor/ip6-routes-dialog.c
src/connection-editor/nm_connection_editor-ip6-routes-dialog.obj: src/connection-editor/ip6-routes-dialog.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_connection_editor_nm_connection_editor_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT src/connection-editor/nm_connection_editor-ip6-routes-dialog.obj -MD -MP -MF src/connection-editor/$(DEPDIR)/nm_connection_editor-ip6-routes-dialog.Tpo -c -o src/connection-editor/nm_connection_editor-ip6-routes-dialog.obj `if test -f 'src/connection-editor/ip6-routes-dialog.c'; then $(CYGPATH_W) 'src/connection-editor/ip6-routes-dialog.c'; else $(CYGPATH_W) '$(srcdir)/src/connection-editor/ip6-routes-dialog.c'; fi`
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) src/connection-editor/$(DEPDIR)/nm_connection_editor-ip6-routes-dialog.Tpo src/connection-editor/$(DEPDIR)/nm_connection_editor-ip6-routes-dialog.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='src/connection-editor/ip6-routes-dialog.c' object='src/connection-editor/nm_connection_editor-ip6-routes-dialog.obj' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_connection_editor_nm_connection_editor_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o src/connection-editor/nm_connection_editor-ip6-routes-dialog.obj `if test -f 'src/connection-editor/ip6-routes-dialog.c'; then $(CYGPATH_W) 'src/connection-editor/ip6-routes-dialog.c'; else $(CYGPATH_W) '$(srcdir)/src/connection-editor/ip6-routes-dialog.c'; fi`
src/connection-editor/nm_connection_editor-ppp-auth-methods-dialog.o: src/connection-editor/ppp-auth-methods-dialog.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_connection_editor_nm_connection_editor_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT src/connection-editor/nm_connection_editor-ppp-auth-methods-dialog.o -MD -MP -MF src/connection-editor/$(DEPDIR)/nm_connection_editor-ppp-auth-methods-dialog.Tpo -c -o src/connection-editor/nm_connection_editor-ppp-auth-methods-dialog.o `test -f 'src/connection-editor/ppp-auth-methods-dialog.c' || echo '$(srcdir)/'`src/connection-editor/ppp-auth-methods-dialog.c
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) src/connection-editor/$(DEPDIR)/nm_connection_editor-ppp-auth-methods-dialog.Tpo src/connection-editor/$(DEPDIR)/nm_connection_editor-ppp-auth-methods-dialog.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='src/connection-editor/ppp-auth-methods-dialog.c' object='src/connection-editor/nm_connection_editor-ppp-auth-methods-dialog.o' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_connection_editor_nm_connection_editor_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o src/connection-editor/nm_connection_editor-ppp-auth-methods-dialog.o `test -f 'src/connection-editor/ppp-auth-methods-dialog.c' || echo '$(srcdir)/'`src/connection-editor/ppp-auth-methods-dialog.c
src/connection-editor/nm_connection_editor-ppp-auth-methods-dialog.obj: src/connection-editor/ppp-auth-methods-dialog.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_connection_editor_nm_connection_editor_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT src/connection-editor/nm_connection_editor-ppp-auth-methods-dialog.obj -MD -MP -MF src/connection-editor/$(DEPDIR)/nm_connection_editor-ppp-auth-methods-dialog.Tpo -c -o src/connection-editor/nm_connection_editor-ppp-auth-methods-dialog.obj `if test -f 'src/connection-editor/ppp-auth-methods-dialog.c'; then $(CYGPATH_W) 'src/connection-editor/ppp-auth-methods-dialog.c'; else $(CYGPATH_W) '$(srcdir)/src/connection-editor/ppp-auth-methods-dialog.c'; fi`
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) src/connection-editor/$(DEPDIR)/nm_connection_editor-ppp-auth-methods-dialog.Tpo src/connection-editor/$(DEPDIR)/nm_connection_editor-ppp-auth-methods-dialog.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='src/connection-editor/ppp-auth-methods-dialog.c' object='src/connection-editor/nm_connection_editor-ppp-auth-methods-dialog.obj' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_connection_editor_nm_connection_editor_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o src/connection-editor/nm_connection_editor-ppp-auth-methods-dialog.obj `if test -f 'src/connection-editor/ppp-auth-methods-dialog.c'; then $(CYGPATH_W) 'src/connection-editor/ppp-auth-methods-dialog.c'; else $(CYGPATH_W) '$(srcdir)/src/connection-editor/ppp-auth-methods-dialog.c'; fi`
src/connection-editor/nm_connection_editor-ce-polkit-button.o: src/connection-editor/ce-polkit-button.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_connection_editor_nm_connection_editor_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT src/connection-editor/nm_connection_editor-ce-polkit-button.o -MD -MP -MF src/connection-editor/$(DEPDIR)/nm_connection_editor-ce-polkit-button.Tpo -c -o src/connection-editor/nm_connection_editor-ce-polkit-button.o `test -f 'src/connection-editor/ce-polkit-button.c' || echo '$(srcdir)/'`src/connection-editor/ce-polkit-button.c
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) src/connection-editor/$(DEPDIR)/nm_connection_editor-ce-polkit-button.Tpo src/connection-editor/$(DEPDIR)/nm_connection_editor-ce-polkit-button.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='src/connection-editor/ce-polkit-button.c' object='src/connection-editor/nm_connection_editor-ce-polkit-button.o' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_connection_editor_nm_connection_editor_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o src/connection-editor/nm_connection_editor-ce-polkit-button.o `test -f 'src/connection-editor/ce-polkit-button.c' || echo '$(srcdir)/'`src/connection-editor/ce-polkit-button.c
src/connection-editor/nm_connection_editor-ce-polkit-button.obj: src/connection-editor/ce-polkit-button.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_connection_editor_nm_connection_editor_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT src/connection-editor/nm_connection_editor-ce-polkit-button.obj -MD -MP -MF src/connection-editor/$(DEPDIR)/nm_connection_editor-ce-polkit-button.Tpo -c -o src/connection-editor/nm_connection_editor-ce-polkit-button.obj `if test -f 'src/connection-editor/ce-polkit-button.c'; then $(CYGPATH_W) 'src/connection-editor/ce-polkit-button.c'; else $(CYGPATH_W) '$(srcdir)/src/connection-editor/ce-polkit-button.c'; fi`
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) src/connection-editor/$(DEPDIR)/nm_connection_editor-ce-polkit-button.Tpo src/connection-editor/$(DEPDIR)/nm_connection_editor-ce-polkit-button.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='src/connection-editor/ce-polkit-button.c' object='src/connection-editor/nm_connection_editor-ce-polkit-button.obj' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_connection_editor_nm_connection_editor_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o src/connection-editor/nm_connection_editor-ce-polkit-button.obj `if test -f 'src/connection-editor/ce-polkit-button.c'; then $(CYGPATH_W) 'src/connection-editor/ce-polkit-button.c'; else $(CYGPATH_W) '$(srcdir)/src/connection-editor/ce-polkit-button.c'; fi`
src/connection-editor/nm_connection_editor-ce-polkit.o: src/connection-editor/ce-polkit.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_connection_editor_nm_connection_editor_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT src/connection-editor/nm_connection_editor-ce-polkit.o -MD -MP -MF src/connection-editor/$(DEPDIR)/nm_connection_editor-ce-polkit.Tpo -c -o src/connection-editor/nm_connection_editor-ce-polkit.o `test -f 'src/connection-editor/ce-polkit.c' || echo '$(srcdir)/'`src/connection-editor/ce-polkit.c
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) src/connection-editor/$(DEPDIR)/nm_connection_editor-ce-polkit.Tpo src/connection-editor/$(DEPDIR)/nm_connection_editor-ce-polkit.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='src/connection-editor/ce-polkit.c' object='src/connection-editor/nm_connection_editor-ce-polkit.o' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_connection_editor_nm_connection_editor_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o src/connection-editor/nm_connection_editor-ce-polkit.o `test -f 'src/connection-editor/ce-polkit.c' || echo '$(srcdir)/'`src/connection-editor/ce-polkit.c
src/connection-editor/nm_connection_editor-ce-polkit.obj: src/connection-editor/ce-polkit.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_connection_editor_nm_connection_editor_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT src/connection-editor/nm_connection_editor-ce-polkit.obj -MD -MP -MF src/connection-editor/$(DEPDIR)/nm_connection_editor-ce-polkit.Tpo -c -o src/connection-editor/nm_connection_editor-ce-polkit.obj `if test -f 'src/connection-editor/ce-polkit.c'; then $(CYGPATH_W) 'src/connection-editor/ce-polkit.c'; else $(CYGPATH_W) '$(srcdir)/src/connection-editor/ce-polkit.c'; fi`
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) src/connection-editor/$(DEPDIR)/nm_connection_editor-ce-polkit.Tpo src/connection-editor/$(DEPDIR)/nm_connection_editor-ce-polkit.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='src/connection-editor/ce-polkit.c' object='src/connection-editor/nm_connection_editor-ce-polkit.obj' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_connection_editor_nm_connection_editor_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o src/connection-editor/nm_connection_editor-ce-polkit.obj `if test -f 'src/connection-editor/ce-polkit.c'; then $(CYGPATH_W) 'src/connection-editor/ce-polkit.c'; else $(CYGPATH_W) '$(srcdir)/src/connection-editor/ce-polkit.c'; fi`
src/connection-editor/nm_connection_editor-ce-utils.o: src/connection-editor/ce-utils.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_connection_editor_nm_connection_editor_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT src/connection-editor/nm_connection_editor-ce-utils.o -MD -MP -MF src/connection-editor/$(DEPDIR)/nm_connection_editor-ce-utils.Tpo -c -o src/connection-editor/nm_connection_editor-ce-utils.o `test -f 'src/connection-editor/ce-utils.c' || echo '$(srcdir)/'`src/connection-editor/ce-utils.c
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) src/connection-editor/$(DEPDIR)/nm_connection_editor-ce-utils.Tpo src/connection-editor/$(DEPDIR)/nm_connection_editor-ce-utils.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='src/connection-editor/ce-utils.c' object='src/connection-editor/nm_connection_editor-ce-utils.o' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_connection_editor_nm_connection_editor_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o src/connection-editor/nm_connection_editor-ce-utils.o `test -f 'src/connection-editor/ce-utils.c' || echo '$(srcdir)/'`src/connection-editor/ce-utils.c
src/connection-editor/nm_connection_editor-ce-utils.obj: src/connection-editor/ce-utils.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_connection_editor_nm_connection_editor_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT src/connection-editor/nm_connection_editor-ce-utils.obj -MD -MP -MF src/connection-editor/$(DEPDIR)/nm_connection_editor-ce-utils.Tpo -c -o src/connection-editor/nm_connection_editor-ce-utils.obj `if test -f 'src/connection-editor/ce-utils.c'; then $(CYGPATH_W) 'src/connection-editor/ce-utils.c'; else $(CYGPATH_W) '$(srcdir)/src/connection-editor/ce-utils.c'; fi`
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) src/connection-editor/$(DEPDIR)/nm_connection_editor-ce-utils.Tpo src/connection-editor/$(DEPDIR)/nm_connection_editor-ce-utils.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='src/connection-editor/ce-utils.c' object='src/connection-editor/nm_connection_editor-ce-utils.obj' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_connection_editor_nm_connection_editor_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o src/connection-editor/nm_connection_editor-ce-utils.obj `if test -f 'src/connection-editor/ce-utils.c'; then $(CYGPATH_W) 'src/connection-editor/ce-utils.c'; else $(CYGPATH_W) '$(srcdir)/src/connection-editor/ce-utils.c'; fi`
src/connection-editor/nm_connection_editor-connection-helpers.o: src/connection-editor/connection-helpers.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_connection_editor_nm_connection_editor_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT src/connection-editor/nm_connection_editor-connection-helpers.o -MD -MP -MF src/connection-editor/$(DEPDIR)/nm_connection_editor-connection-helpers.Tpo -c -o src/connection-editor/nm_connection_editor-connection-helpers.o `test -f 'src/connection-editor/connection-helpers.c' || echo '$(srcdir)/'`src/connection-editor/connection-helpers.c
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) src/connection-editor/$(DEPDIR)/nm_connection_editor-connection-helpers.Tpo src/connection-editor/$(DEPDIR)/nm_connection_editor-connection-helpers.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='src/connection-editor/connection-helpers.c' object='src/connection-editor/nm_connection_editor-connection-helpers.o' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_connection_editor_nm_connection_editor_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o src/connection-editor/nm_connection_editor-connection-helpers.o `test -f 'src/connection-editor/connection-helpers.c' || echo '$(srcdir)/'`src/connection-editor/connection-helpers.c
src/connection-editor/nm_connection_editor-connection-helpers.obj: src/connection-editor/connection-helpers.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_connection_editor_nm_connection_editor_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT src/connection-editor/nm_connection_editor-connection-helpers.obj -MD -MP -MF src/connection-editor/$(DEPDIR)/nm_connection_editor-connection-helpers.Tpo -c -o src/connection-editor/nm_connection_editor-connection-helpers.obj `if test -f 'src/connection-editor/connection-helpers.c'; then $(CYGPATH_W) 'src/connection-editor/connection-helpers.c'; else $(CYGPATH_W) '$(srcdir)/src/connection-editor/connection-helpers.c'; fi`
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) src/connection-editor/$(DEPDIR)/nm_connection_editor-connection-helpers.Tpo src/connection-editor/$(DEPDIR)/nm_connection_editor-connection-helpers.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='src/connection-editor/connection-helpers.c' object='src/connection-editor/nm_connection_editor-connection-helpers.obj' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_connection_editor_nm_connection_editor_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o src/connection-editor/nm_connection_editor-connection-helpers.obj `if test -f 'src/connection-editor/connection-helpers.c'; then $(CYGPATH_W) 'src/connection-editor/connection-helpers.c'; else $(CYGPATH_W) '$(srcdir)/src/connection-editor/connection-helpers.c'; fi`
src/connection-editor/nm_connection_editor-ce-resources.o: src/connection-editor/ce-resources.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_connection_editor_nm_connection_editor_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT src/connection-editor/nm_connection_editor-ce-resources.o -MD -MP -MF src/connection-editor/$(DEPDIR)/nm_connection_editor-ce-resources.Tpo -c -o src/connection-editor/nm_connection_editor-ce-resources.o `test -f 'src/connection-editor/ce-resources.c' || echo '$(srcdir)/'`src/connection-editor/ce-resources.c
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) src/connection-editor/$(DEPDIR)/nm_connection_editor-ce-resources.Tpo src/connection-editor/$(DEPDIR)/nm_connection_editor-ce-resources.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='src/connection-editor/ce-resources.c' object='src/connection-editor/nm_connection_editor-ce-resources.o' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_connection_editor_nm_connection_editor_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o src/connection-editor/nm_connection_editor-ce-resources.o `test -f 'src/connection-editor/ce-resources.c' || echo '$(srcdir)/'`src/connection-editor/ce-resources.c
src/connection-editor/nm_connection_editor-ce-resources.obj: src/connection-editor/ce-resources.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_connection_editor_nm_connection_editor_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT src/connection-editor/nm_connection_editor-ce-resources.obj -MD -MP -MF src/connection-editor/$(DEPDIR)/nm_connection_editor-ce-resources.Tpo -c -o src/connection-editor/nm_connection_editor-ce-resources.obj `if test -f 'src/connection-editor/ce-resources.c'; then $(CYGPATH_W) 'src/connection-editor/ce-resources.c'; else $(CYGPATH_W) '$(srcdir)/src/connection-editor/ce-resources.c'; fi`
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) src/connection-editor/$(DEPDIR)/nm_connection_editor-ce-resources.Tpo src/connection-editor/$(DEPDIR)/nm_connection_editor-ce-resources.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='src/connection-editor/ce-resources.c' object='src/connection-editor/nm_connection_editor-ce-resources.obj' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_connection_editor_nm_connection_editor_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o src/connection-editor/nm_connection_editor-ce-resources.obj `if test -f 'src/connection-editor/ce-resources.c'; then $(CYGPATH_W) 'src/connection-editor/ce-resources.c'; else $(CYGPATH_W) '$(srcdir)/src/connection-editor/ce-resources.c'; fi`
shared/nm-utils/src_nm_applet-nm-compat.o: shared/nm-utils/nm-compat.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_nm_applet_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT shared/nm-utils/src_nm_applet-nm-compat.o -MD -MP -MF shared/nm-utils/$(DEPDIR)/src_nm_applet-nm-compat.Tpo -c -o shared/nm-utils/src_nm_applet-nm-compat.o `test -f 'shared/nm-utils/nm-compat.c' || echo '$(srcdir)/'`shared/nm-utils/nm-compat.c
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) shared/nm-utils/$(DEPDIR)/src_nm_applet-nm-compat.Tpo shared/nm-utils/$(DEPDIR)/src_nm_applet-nm-compat.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='shared/nm-utils/nm-compat.c' object='shared/nm-utils/src_nm_applet-nm-compat.o' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_nm_applet_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o shared/nm-utils/src_nm_applet-nm-compat.o `test -f 'shared/nm-utils/nm-compat.c' || echo '$(srcdir)/'`shared/nm-utils/nm-compat.c
shared/nm-utils/src_nm_applet-nm-compat.obj: shared/nm-utils/nm-compat.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_nm_applet_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT shared/nm-utils/src_nm_applet-nm-compat.obj -MD -MP -MF shared/nm-utils/$(DEPDIR)/src_nm_applet-nm-compat.Tpo -c -o shared/nm-utils/src_nm_applet-nm-compat.obj `if test -f 'shared/nm-utils/nm-compat.c'; then $(CYGPATH_W) 'shared/nm-utils/nm-compat.c'; else $(CYGPATH_W) '$(srcdir)/shared/nm-utils/nm-compat.c'; fi`
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) shared/nm-utils/$(DEPDIR)/src_nm_applet-nm-compat.Tpo shared/nm-utils/$(DEPDIR)/src_nm_applet-nm-compat.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='shared/nm-utils/nm-compat.c' object='shared/nm-utils/src_nm_applet-nm-compat.obj' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_nm_applet_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o shared/nm-utils/src_nm_applet-nm-compat.obj `if test -f 'shared/nm-utils/nm-compat.c'; then $(CYGPATH_W) 'shared/nm-utils/nm-compat.c'; else $(CYGPATH_W) '$(srcdir)/shared/nm-utils/nm-compat.c'; fi`
src/nm_applet-main.o: src/main.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_nm_applet_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT src/nm_applet-main.o -MD -MP -MF src/$(DEPDIR)/nm_applet-main.Tpo -c -o src/nm_applet-main.o `test -f 'src/main.c' || echo '$(srcdir)/'`src/main.c
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) src/$(DEPDIR)/nm_applet-main.Tpo src/$(DEPDIR)/nm_applet-main.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='src/main.c' object='src/nm_applet-main.o' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_nm_applet_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o src/nm_applet-main.o `test -f 'src/main.c' || echo '$(srcdir)/'`src/main.c
src/nm_applet-main.obj: src/main.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_nm_applet_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT src/nm_applet-main.obj -MD -MP -MF src/$(DEPDIR)/nm_applet-main.Tpo -c -o src/nm_applet-main.obj `if test -f 'src/main.c'; then $(CYGPATH_W) 'src/main.c'; else $(CYGPATH_W) '$(srcdir)/src/main.c'; fi`
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) src/$(DEPDIR)/nm_applet-main.Tpo src/$(DEPDIR)/nm_applet-main.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='src/main.c' object='src/nm_applet-main.obj' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_nm_applet_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o src/nm_applet-main.obj `if test -f 'src/main.c'; then $(CYGPATH_W) 'src/main.c'; else $(CYGPATH_W) '$(srcdir)/src/main.c'; fi`
src/nm_applet-applet.o: src/applet.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_nm_applet_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT src/nm_applet-applet.o -MD -MP -MF src/$(DEPDIR)/nm_applet-applet.Tpo -c -o src/nm_applet-applet.o `test -f 'src/applet.c' || echo '$(srcdir)/'`src/applet.c
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) src/$(DEPDIR)/nm_applet-applet.Tpo src/$(DEPDIR)/nm_applet-applet.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='src/applet.c' object='src/nm_applet-applet.o' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_nm_applet_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o src/nm_applet-applet.o `test -f 'src/applet.c' || echo '$(srcdir)/'`src/applet.c
src/nm_applet-applet.obj: src/applet.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_nm_applet_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT src/nm_applet-applet.obj -MD -MP -MF src/$(DEPDIR)/nm_applet-applet.Tpo -c -o src/nm_applet-applet.obj `if test -f 'src/applet.c'; then $(CYGPATH_W) 'src/applet.c'; else $(CYGPATH_W) '$(srcdir)/src/applet.c'; fi`
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) src/$(DEPDIR)/nm_applet-applet.Tpo src/$(DEPDIR)/nm_applet-applet.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='src/applet.c' object='src/nm_applet-applet.obj' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_nm_applet_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o src/nm_applet-applet.obj `if test -f 'src/applet.c'; then $(CYGPATH_W) 'src/applet.c'; else $(CYGPATH_W) '$(srcdir)/src/applet.c'; fi`
src/nm_applet-applet-agent.o: src/applet-agent.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_nm_applet_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT src/nm_applet-applet-agent.o -MD -MP -MF src/$(DEPDIR)/nm_applet-applet-agent.Tpo -c -o src/nm_applet-applet-agent.o `test -f 'src/applet-agent.c' || echo '$(srcdir)/'`src/applet-agent.c
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) src/$(DEPDIR)/nm_applet-applet-agent.Tpo src/$(DEPDIR)/nm_applet-applet-agent.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='src/applet-agent.c' object='src/nm_applet-applet-agent.o' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_nm_applet_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o src/nm_applet-applet-agent.o `test -f 'src/applet-agent.c' || echo '$(srcdir)/'`src/applet-agent.c
src/nm_applet-applet-agent.obj: src/applet-agent.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_nm_applet_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT src/nm_applet-applet-agent.obj -MD -MP -MF src/$(DEPDIR)/nm_applet-applet-agent.Tpo -c -o src/nm_applet-applet-agent.obj `if test -f 'src/applet-agent.c'; then $(CYGPATH_W) 'src/applet-agent.c'; else $(CYGPATH_W) '$(srcdir)/src/applet-agent.c'; fi`
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) src/$(DEPDIR)/nm_applet-applet-agent.Tpo src/$(DEPDIR)/nm_applet-applet-agent.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='src/applet-agent.c' object='src/nm_applet-applet-agent.obj' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_nm_applet_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o src/nm_applet-applet-agent.obj `if test -f 'src/applet-agent.c'; then $(CYGPATH_W) 'src/applet-agent.c'; else $(CYGPATH_W) '$(srcdir)/src/applet-agent.c'; fi`
src/nm_applet-applet-vpn-request.o: src/applet-vpn-request.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_nm_applet_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT src/nm_applet-applet-vpn-request.o -MD -MP -MF src/$(DEPDIR)/nm_applet-applet-vpn-request.Tpo -c -o src/nm_applet-applet-vpn-request.o `test -f 'src/applet-vpn-request.c' || echo '$(srcdir)/'`src/applet-vpn-request.c
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) src/$(DEPDIR)/nm_applet-applet-vpn-request.Tpo src/$(DEPDIR)/nm_applet-applet-vpn-request.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='src/applet-vpn-request.c' object='src/nm_applet-applet-vpn-request.o' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_nm_applet_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o src/nm_applet-applet-vpn-request.o `test -f 'src/applet-vpn-request.c' || echo '$(srcdir)/'`src/applet-vpn-request.c
src/nm_applet-applet-vpn-request.obj: src/applet-vpn-request.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_nm_applet_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT src/nm_applet-applet-vpn-request.obj -MD -MP -MF src/$(DEPDIR)/nm_applet-applet-vpn-request.Tpo -c -o src/nm_applet-applet-vpn-request.obj `if test -f 'src/applet-vpn-request.c'; then $(CYGPATH_W) 'src/applet-vpn-request.c'; else $(CYGPATH_W) '$(srcdir)/src/applet-vpn-request.c'; fi`
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) src/$(DEPDIR)/nm_applet-applet-vpn-request.Tpo src/$(DEPDIR)/nm_applet-applet-vpn-request.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='src/applet-vpn-request.c' object='src/nm_applet-applet-vpn-request.obj' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_nm_applet_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o src/nm_applet-applet-vpn-request.obj `if test -f 'src/applet-vpn-request.c'; then $(CYGPATH_W) 'src/applet-vpn-request.c'; else $(CYGPATH_W) '$(srcdir)/src/applet-vpn-request.c'; fi`
src/nm_applet-ethernet-dialog.o: src/ethernet-dialog.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_nm_applet_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT src/nm_applet-ethernet-dialog.o -MD -MP -MF src/$(DEPDIR)/nm_applet-ethernet-dialog.Tpo -c -o src/nm_applet-ethernet-dialog.o `test -f 'src/ethernet-dialog.c' || echo '$(srcdir)/'`src/ethernet-dialog.c
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) src/$(DEPDIR)/nm_applet-ethernet-dialog.Tpo src/$(DEPDIR)/nm_applet-ethernet-dialog.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='src/ethernet-dialog.c' object='src/nm_applet-ethernet-dialog.o' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_nm_applet_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o src/nm_applet-ethernet-dialog.o `test -f 'src/ethernet-dialog.c' || echo '$(srcdir)/'`src/ethernet-dialog.c
src/nm_applet-ethernet-dialog.obj: src/ethernet-dialog.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_nm_applet_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT src/nm_applet-ethernet-dialog.obj -MD -MP -MF src/$(DEPDIR)/nm_applet-ethernet-dialog.Tpo -c -o src/nm_applet-ethernet-dialog.obj `if test -f 'src/ethernet-dialog.c'; then $(CYGPATH_W) 'src/ethernet-dialog.c'; else $(CYGPATH_W) '$(srcdir)/src/ethernet-dialog.c'; fi`
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) src/$(DEPDIR)/nm_applet-ethernet-dialog.Tpo src/$(DEPDIR)/nm_applet-ethernet-dialog.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='src/ethernet-dialog.c' object='src/nm_applet-ethernet-dialog.obj' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_nm_applet_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o src/nm_applet-ethernet-dialog.obj `if test -f 'src/ethernet-dialog.c'; then $(CYGPATH_W) 'src/ethernet-dialog.c'; else $(CYGPATH_W) '$(srcdir)/src/ethernet-dialog.c'; fi`
src/nm_applet-applet-dialogs.o: src/applet-dialogs.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_nm_applet_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT src/nm_applet-applet-dialogs.o -MD -MP -MF src/$(DEPDIR)/nm_applet-applet-dialogs.Tpo -c -o src/nm_applet-applet-dialogs.o `test -f 'src/applet-dialogs.c' || echo '$(srcdir)/'`src/applet-dialogs.c
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) src/$(DEPDIR)/nm_applet-applet-dialogs.Tpo src/$(DEPDIR)/nm_applet-applet-dialogs.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='src/applet-dialogs.c' object='src/nm_applet-applet-dialogs.o' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_nm_applet_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o src/nm_applet-applet-dialogs.o `test -f 'src/applet-dialogs.c' || echo '$(srcdir)/'`src/applet-dialogs.c
src/nm_applet-applet-dialogs.obj: src/applet-dialogs.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_nm_applet_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT src/nm_applet-applet-dialogs.obj -MD -MP -MF src/$(DEPDIR)/nm_applet-applet-dialogs.Tpo -c -o src/nm_applet-applet-dialogs.obj `if test -f 'src/applet-dialogs.c'; then $(CYGPATH_W) 'src/applet-dialogs.c'; else $(CYGPATH_W) '$(srcdir)/src/applet-dialogs.c'; fi`
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) src/$(DEPDIR)/nm_applet-applet-dialogs.Tpo src/$(DEPDIR)/nm_applet-applet-dialogs.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='src/applet-dialogs.c' object='src/nm_applet-applet-dialogs.obj' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_nm_applet_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o src/nm_applet-applet-dialogs.obj `if test -f 'src/applet-dialogs.c'; then $(CYGPATH_W) 'src/applet-dialogs.c'; else $(CYGPATH_W) '$(srcdir)/src/applet-dialogs.c'; fi`
src/nm_applet-applet-device-ethernet.o: src/applet-device-ethernet.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_nm_applet_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT src/nm_applet-applet-device-ethernet.o -MD -MP -MF src/$(DEPDIR)/nm_applet-applet-device-ethernet.Tpo -c -o src/nm_applet-applet-device-ethernet.o `test -f 'src/applet-device-ethernet.c' || echo '$(srcdir)/'`src/applet-device-ethernet.c
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) src/$(DEPDIR)/nm_applet-applet-device-ethernet.Tpo src/$(DEPDIR)/nm_applet-applet-device-ethernet.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='src/applet-device-ethernet.c' object='src/nm_applet-applet-device-ethernet.o' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_nm_applet_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o src/nm_applet-applet-device-ethernet.o `test -f 'src/applet-device-ethernet.c' || echo '$(srcdir)/'`src/applet-device-ethernet.c
src/nm_applet-applet-device-ethernet.obj: src/applet-device-ethernet.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_nm_applet_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT src/nm_applet-applet-device-ethernet.obj -MD -MP -MF src/$(DEPDIR)/nm_applet-applet-device-ethernet.Tpo -c -o src/nm_applet-applet-device-ethernet.obj `if test -f 'src/applet-device-ethernet.c'; then $(CYGPATH_W) 'src/applet-device-ethernet.c'; else $(CYGPATH_W) '$(srcdir)/src/applet-device-ethernet.c'; fi`
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) src/$(DEPDIR)/nm_applet-applet-device-ethernet.Tpo src/$(DEPDIR)/nm_applet-applet-device-ethernet.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='src/applet-device-ethernet.c' object='src/nm_applet-applet-device-ethernet.obj' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_nm_applet_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o src/nm_applet-applet-device-ethernet.obj `if test -f 'src/applet-device-ethernet.c'; then $(CYGPATH_W) 'src/applet-device-ethernet.c'; else $(CYGPATH_W) '$(srcdir)/src/applet-device-ethernet.c'; fi`
src/nm_applet-applet-device-wifi.o: src/applet-device-wifi.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_nm_applet_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT src/nm_applet-applet-device-wifi.o -MD -MP -MF src/$(DEPDIR)/nm_applet-applet-device-wifi.Tpo -c -o src/nm_applet-applet-device-wifi.o `test -f 'src/applet-device-wifi.c' || echo '$(srcdir)/'`src/applet-device-wifi.c
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) src/$(DEPDIR)/nm_applet-applet-device-wifi.Tpo src/$(DEPDIR)/nm_applet-applet-device-wifi.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='src/applet-device-wifi.c' object='src/nm_applet-applet-device-wifi.o' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_nm_applet_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o src/nm_applet-applet-device-wifi.o `test -f 'src/applet-device-wifi.c' || echo '$(srcdir)/'`src/applet-device-wifi.c
src/nm_applet-applet-device-wifi.obj: src/applet-device-wifi.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_nm_applet_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT src/nm_applet-applet-device-wifi.obj -MD -MP -MF src/$(DEPDIR)/nm_applet-applet-device-wifi.Tpo -c -o src/nm_applet-applet-device-wifi.obj `if test -f 'src/applet-device-wifi.c'; then $(CYGPATH_W) 'src/applet-device-wifi.c'; else $(CYGPATH_W) '$(srcdir)/src/applet-device-wifi.c'; fi`
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) src/$(DEPDIR)/nm_applet-applet-device-wifi.Tpo src/$(DEPDIR)/nm_applet-applet-device-wifi.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='src/applet-device-wifi.c' object='src/nm_applet-applet-device-wifi.obj' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_nm_applet_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o src/nm_applet-applet-device-wifi.obj `if test -f 'src/applet-device-wifi.c'; then $(CYGPATH_W) 'src/applet-device-wifi.c'; else $(CYGPATH_W) '$(srcdir)/src/applet-device-wifi.c'; fi`
src/nm_applet-ap-menu-item.o: src/ap-menu-item.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_nm_applet_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT src/nm_applet-ap-menu-item.o -MD -MP -MF src/$(DEPDIR)/nm_applet-ap-menu-item.Tpo -c -o src/nm_applet-ap-menu-item.o `test -f 'src/ap-menu-item.c' || echo '$(srcdir)/'`src/ap-menu-item.c
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) src/$(DEPDIR)/nm_applet-ap-menu-item.Tpo src/$(DEPDIR)/nm_applet-ap-menu-item.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='src/ap-menu-item.c' object='src/nm_applet-ap-menu-item.o' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_nm_applet_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o src/nm_applet-ap-menu-item.o `test -f 'src/ap-menu-item.c' || echo '$(srcdir)/'`src/ap-menu-item.c
src/nm_applet-ap-menu-item.obj: src/ap-menu-item.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_nm_applet_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT src/nm_applet-ap-menu-item.obj -MD -MP -MF src/$(DEPDIR)/nm_applet-ap-menu-item.Tpo -c -o src/nm_applet-ap-menu-item.obj `if test -f 'src/ap-menu-item.c'; then $(CYGPATH_W) 'src/ap-menu-item.c'; else $(CYGPATH_W) '$(srcdir)/src/ap-menu-item.c'; fi`
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) src/$(DEPDIR)/nm_applet-ap-menu-item.Tpo src/$(DEPDIR)/nm_applet-ap-menu-item.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='src/ap-menu-item.c' object='src/nm_applet-ap-menu-item.obj' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_nm_applet_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o src/nm_applet-ap-menu-item.obj `if test -f 'src/ap-menu-item.c'; then $(CYGPATH_W) 'src/ap-menu-item.c'; else $(CYGPATH_W) '$(srcdir)/src/ap-menu-item.c'; fi`
src/nm_applet-mb-menu-item.o: src/mb-menu-item.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_nm_applet_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT src/nm_applet-mb-menu-item.o -MD -MP -MF src/$(DEPDIR)/nm_applet-mb-menu-item.Tpo -c -o src/nm_applet-mb-menu-item.o `test -f 'src/mb-menu-item.c' || echo '$(srcdir)/'`src/mb-menu-item.c
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) src/$(DEPDIR)/nm_applet-mb-menu-item.Tpo src/$(DEPDIR)/nm_applet-mb-menu-item.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='src/mb-menu-item.c' object='src/nm_applet-mb-menu-item.o' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_nm_applet_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o src/nm_applet-mb-menu-item.o `test -f 'src/mb-menu-item.c' || echo '$(srcdir)/'`src/mb-menu-item.c
src/nm_applet-mb-menu-item.obj: src/mb-menu-item.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_nm_applet_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT src/nm_applet-mb-menu-item.obj -MD -MP -MF src/$(DEPDIR)/nm_applet-mb-menu-item.Tpo -c -o src/nm_applet-mb-menu-item.obj `if test -f 'src/mb-menu-item.c'; then $(CYGPATH_W) 'src/mb-menu-item.c'; else $(CYGPATH_W) '$(srcdir)/src/mb-menu-item.c'; fi`
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) src/$(DEPDIR)/nm_applet-mb-menu-item.Tpo src/$(DEPDIR)/nm_applet-mb-menu-item.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='src/mb-menu-item.c' object='src/nm_applet-mb-menu-item.obj' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_nm_applet_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o src/nm_applet-mb-menu-item.obj `if test -f 'src/mb-menu-item.c'; then $(CYGPATH_W) 'src/mb-menu-item.c'; else $(CYGPATH_W) '$(srcdir)/src/mb-menu-item.c'; fi`
src/nm_applet-mobile-helpers.o: src/mobile-helpers.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_nm_applet_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT src/nm_applet-mobile-helpers.o -MD -MP -MF src/$(DEPDIR)/nm_applet-mobile-helpers.Tpo -c -o src/nm_applet-mobile-helpers.o `test -f 'src/mobile-helpers.c' || echo '$(srcdir)/'`src/mobile-helpers.c
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) src/$(DEPDIR)/nm_applet-mobile-helpers.Tpo src/$(DEPDIR)/nm_applet-mobile-helpers.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='src/mobile-helpers.c' object='src/nm_applet-mobile-helpers.o' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_nm_applet_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o src/nm_applet-mobile-helpers.o `test -f 'src/mobile-helpers.c' || echo '$(srcdir)/'`src/mobile-helpers.c
src/nm_applet-mobile-helpers.obj: src/mobile-helpers.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_nm_applet_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT src/nm_applet-mobile-helpers.obj -MD -MP -MF src/$(DEPDIR)/nm_applet-mobile-helpers.Tpo -c -o src/nm_applet-mobile-helpers.obj `if test -f 'src/mobile-helpers.c'; then $(CYGPATH_W) 'src/mobile-helpers.c'; else $(CYGPATH_W) '$(srcdir)/src/mobile-helpers.c'; fi`
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) src/$(DEPDIR)/nm_applet-mobile-helpers.Tpo src/$(DEPDIR)/nm_applet-mobile-helpers.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='src/mobile-helpers.c' object='src/nm_applet-mobile-helpers.obj' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_nm_applet_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o src/nm_applet-mobile-helpers.obj `if test -f 'src/mobile-helpers.c'; then $(CYGPATH_W) 'src/mobile-helpers.c'; else $(CYGPATH_W) '$(srcdir)/src/mobile-helpers.c'; fi`
src/nm_applet-applet-device-bt.o: src/applet-device-bt.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_nm_applet_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT src/nm_applet-applet-device-bt.o -MD -MP -MF src/$(DEPDIR)/nm_applet-applet-device-bt.Tpo -c -o src/nm_applet-applet-device-bt.o `test -f 'src/applet-device-bt.c' || echo '$(srcdir)/'`src/applet-device-bt.c
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) src/$(DEPDIR)/nm_applet-applet-device-bt.Tpo src/$(DEPDIR)/nm_applet-applet-device-bt.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='src/applet-device-bt.c' object='src/nm_applet-applet-device-bt.o' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_nm_applet_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o src/nm_applet-applet-device-bt.o `test -f 'src/applet-device-bt.c' || echo '$(srcdir)/'`src/applet-device-bt.c
src/nm_applet-applet-device-bt.obj: src/applet-device-bt.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_nm_applet_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT src/nm_applet-applet-device-bt.obj -MD -MP -MF src/$(DEPDIR)/nm_applet-applet-device-bt.Tpo -c -o src/nm_applet-applet-device-bt.obj `if test -f 'src/applet-device-bt.c'; then $(CYGPATH_W) 'src/applet-device-bt.c'; else $(CYGPATH_W) '$(srcdir)/src/applet-device-bt.c'; fi`
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) src/$(DEPDIR)/nm_applet-applet-device-bt.Tpo src/$(DEPDIR)/nm_applet-applet-device-bt.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='src/applet-device-bt.c' object='src/nm_applet-applet-device-bt.obj' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_nm_applet_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o src/nm_applet-applet-device-bt.obj `if test -f 'src/applet-device-bt.c'; then $(CYGPATH_W) 'src/applet-device-bt.c'; else $(CYGPATH_W) '$(srcdir)/src/applet-device-bt.c'; fi`
src/nm_applet-applet-device-broadband.o: src/applet-device-broadband.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_nm_applet_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT src/nm_applet-applet-device-broadband.o -MD -MP -MF src/$(DEPDIR)/nm_applet-applet-device-broadband.Tpo -c -o src/nm_applet-applet-device-broadband.o `test -f 'src/applet-device-broadband.c' || echo '$(srcdir)/'`src/applet-device-broadband.c
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) src/$(DEPDIR)/nm_applet-applet-device-broadband.Tpo src/$(DEPDIR)/nm_applet-applet-device-broadband.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='src/applet-device-broadband.c' object='src/nm_applet-applet-device-broadband.o' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_nm_applet_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o src/nm_applet-applet-device-broadband.o `test -f 'src/applet-device-broadband.c' || echo '$(srcdir)/'`src/applet-device-broadband.c
src/nm_applet-applet-device-broadband.obj: src/applet-device-broadband.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_nm_applet_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT src/nm_applet-applet-device-broadband.obj -MD -MP -MF src/$(DEPDIR)/nm_applet-applet-device-broadband.Tpo -c -o src/nm_applet-applet-device-broadband.obj `if test -f 'src/applet-device-broadband.c'; then $(CYGPATH_W) 'src/applet-device-broadband.c'; else $(CYGPATH_W) '$(srcdir)/src/applet-device-broadband.c'; fi`
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) src/$(DEPDIR)/nm_applet-applet-device-broadband.Tpo src/$(DEPDIR)/nm_applet-applet-device-broadband.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='src/applet-device-broadband.c' object='src/nm_applet-applet-device-broadband.obj' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_nm_applet_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o src/nm_applet-applet-device-broadband.obj `if test -f 'src/applet-device-broadband.c'; then $(CYGPATH_W) 'src/applet-device-broadband.c'; else $(CYGPATH_W) '$(srcdir)/src/applet-device-broadband.c'; fi`
src/nm_applet-applet-resources.o: src/applet-resources.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_nm_applet_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT src/nm_applet-applet-resources.o -MD -MP -MF src/$(DEPDIR)/nm_applet-applet-resources.Tpo -c -o src/nm_applet-applet-resources.o `test -f 'src/applet-resources.c' || echo '$(srcdir)/'`src/applet-resources.c
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) src/$(DEPDIR)/nm_applet-applet-resources.Tpo src/$(DEPDIR)/nm_applet-applet-resources.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='src/applet-resources.c' object='src/nm_applet-applet-resources.o' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_nm_applet_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o src/nm_applet-applet-resources.o `test -f 'src/applet-resources.c' || echo '$(srcdir)/'`src/applet-resources.c
src/nm_applet-applet-resources.obj: src/applet-resources.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_nm_applet_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT src/nm_applet-applet-resources.obj -MD -MP -MF src/$(DEPDIR)/nm_applet-applet-resources.Tpo -c -o src/nm_applet-applet-resources.obj `if test -f 'src/applet-resources.c'; then $(CYGPATH_W) 'src/applet-resources.c'; else $(CYGPATH_W) '$(srcdir)/src/applet-resources.c'; fi`
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) src/$(DEPDIR)/nm_applet-applet-resources.Tpo src/$(DEPDIR)/nm_applet-applet-resources.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='src/applet-resources.c' object='src/nm_applet-applet-resources.obj' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_nm_applet_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o src/nm_applet-applet-resources.obj `if test -f 'src/applet-resources.c'; then $(CYGPATH_W) 'src/applet-resources.c'; else $(CYGPATH_W) '$(srcdir)/src/applet-resources.c'; fi`
src/tests_ethernet_dialog-applet-resources.o: src/applet-resources.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_tests_ethernet_dialog_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT src/tests_ethernet_dialog-applet-resources.o -MD -MP -MF src/$(DEPDIR)/tests_ethernet_dialog-applet-resources.Tpo -c -o src/tests_ethernet_dialog-applet-resources.o `test -f 'src/applet-resources.c' || echo '$(srcdir)/'`src/applet-resources.c
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) src/$(DEPDIR)/tests_ethernet_dialog-applet-resources.Tpo src/$(DEPDIR)/tests_ethernet_dialog-applet-resources.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='src/applet-resources.c' object='src/tests_ethernet_dialog-applet-resources.o' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_tests_ethernet_dialog_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o src/tests_ethernet_dialog-applet-resources.o `test -f 'src/applet-resources.c' || echo '$(srcdir)/'`src/applet-resources.c
src/tests_ethernet_dialog-applet-resources.obj: src/applet-resources.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_tests_ethernet_dialog_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT src/tests_ethernet_dialog-applet-resources.obj -MD -MP -MF src/$(DEPDIR)/tests_ethernet_dialog-applet-resources.Tpo -c -o src/tests_ethernet_dialog-applet-resources.obj `if test -f 'src/applet-resources.c'; then $(CYGPATH_W) 'src/applet-resources.c'; else $(CYGPATH_W) '$(srcdir)/src/applet-resources.c'; fi`
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) src/$(DEPDIR)/tests_ethernet_dialog-applet-resources.Tpo src/$(DEPDIR)/tests_ethernet_dialog-applet-resources.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='src/applet-resources.c' object='src/tests_ethernet_dialog-applet-resources.obj' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_tests_ethernet_dialog_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o src/tests_ethernet_dialog-applet-resources.obj `if test -f 'src/applet-resources.c'; then $(CYGPATH_W) 'src/applet-resources.c'; else $(CYGPATH_W) '$(srcdir)/src/applet-resources.c'; fi`
src/tests_ethernet_dialog-applet-dialogs.o: src/applet-dialogs.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_tests_ethernet_dialog_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT src/tests_ethernet_dialog-applet-dialogs.o -MD -MP -MF src/$(DEPDIR)/tests_ethernet_dialog-applet-dialogs.Tpo -c -o src/tests_ethernet_dialog-applet-dialogs.o `test -f 'src/applet-dialogs.c' || echo '$(srcdir)/'`src/applet-dialogs.c
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) src/$(DEPDIR)/tests_ethernet_dialog-applet-dialogs.Tpo src/$(DEPDIR)/tests_ethernet_dialog-applet-dialogs.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='src/applet-dialogs.c' object='src/tests_ethernet_dialog-applet-dialogs.o' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_tests_ethernet_dialog_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o src/tests_ethernet_dialog-applet-dialogs.o `test -f 'src/applet-dialogs.c' || echo '$(srcdir)/'`src/applet-dialogs.c
src/tests_ethernet_dialog-applet-dialogs.obj: src/applet-dialogs.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_tests_ethernet_dialog_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT src/tests_ethernet_dialog-applet-dialogs.obj -MD -MP -MF src/$(DEPDIR)/tests_ethernet_dialog-applet-dialogs.Tpo -c -o src/tests_ethernet_dialog-applet-dialogs.obj `if test -f 'src/applet-dialogs.c'; then $(CYGPATH_W) 'src/applet-dialogs.c'; else $(CYGPATH_W) '$(srcdir)/src/applet-dialogs.c'; fi`
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) src/$(DEPDIR)/tests_ethernet_dialog-applet-dialogs.Tpo src/$(DEPDIR)/tests_ethernet_dialog-applet-dialogs.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='src/applet-dialogs.c' object='src/tests_ethernet_dialog-applet-dialogs.obj' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_tests_ethernet_dialog_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o src/tests_ethernet_dialog-applet-dialogs.obj `if test -f 'src/applet-dialogs.c'; then $(CYGPATH_W) 'src/applet-dialogs.c'; else $(CYGPATH_W) '$(srcdir)/src/applet-dialogs.c'; fi`
src/tests_ethernet_dialog-ethernet-dialog.o: src/ethernet-dialog.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_tests_ethernet_dialog_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT src/tests_ethernet_dialog-ethernet-dialog.o -MD -MP -MF src/$(DEPDIR)/tests_ethernet_dialog-ethernet-dialog.Tpo -c -o src/tests_ethernet_dialog-ethernet-dialog.o `test -f 'src/ethernet-dialog.c' || echo '$(srcdir)/'`src/ethernet-dialog.c
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) src/$(DEPDIR)/tests_ethernet_dialog-ethernet-dialog.Tpo src/$(DEPDIR)/tests_ethernet_dialog-ethernet-dialog.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='src/ethernet-dialog.c' object='src/tests_ethernet_dialog-ethernet-dialog.o' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_tests_ethernet_dialog_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o src/tests_ethernet_dialog-ethernet-dialog.o `test -f 'src/ethernet-dialog.c' || echo '$(srcdir)/'`src/ethernet-dialog.c
src/tests_ethernet_dialog-ethernet-dialog.obj: src/ethernet-dialog.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_tests_ethernet_dialog_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT src/tests_ethernet_dialog-ethernet-dialog.obj -MD -MP -MF src/$(DEPDIR)/tests_ethernet_dialog-ethernet-dialog.Tpo -c -o src/tests_ethernet_dialog-ethernet-dialog.obj `if test -f 'src/ethernet-dialog.c'; then $(CYGPATH_W) 'src/ethernet-dialog.c'; else $(CYGPATH_W) '$(srcdir)/src/ethernet-dialog.c'; fi`
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) src/$(DEPDIR)/tests_ethernet_dialog-ethernet-dialog.Tpo src/$(DEPDIR)/tests_ethernet_dialog-ethernet-dialog.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='src/ethernet-dialog.c' object='src/tests_ethernet_dialog-ethernet-dialog.obj' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_tests_ethernet_dialog_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o src/tests_ethernet_dialog-ethernet-dialog.obj `if test -f 'src/ethernet-dialog.c'; then $(CYGPATH_W) 'src/ethernet-dialog.c'; else $(CYGPATH_W) '$(srcdir)/src/ethernet-dialog.c'; fi`
src/tests/ethernet_dialog-ethernet-dialog.o: src/tests/ethernet-dialog.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_tests_ethernet_dialog_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT src/tests/ethernet_dialog-ethernet-dialog.o -MD -MP -MF src/tests/$(DEPDIR)/ethernet_dialog-ethernet-dialog.Tpo -c -o src/tests/ethernet_dialog-ethernet-dialog.o `test -f 'src/tests/ethernet-dialog.c' || echo '$(srcdir)/'`src/tests/ethernet-dialog.c
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) src/tests/$(DEPDIR)/ethernet_dialog-ethernet-dialog.Tpo src/tests/$(DEPDIR)/ethernet_dialog-ethernet-dialog.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='src/tests/ethernet-dialog.c' object='src/tests/ethernet_dialog-ethernet-dialog.o' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_tests_ethernet_dialog_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o src/tests/ethernet_dialog-ethernet-dialog.o `test -f 'src/tests/ethernet-dialog.c' || echo '$(srcdir)/'`src/tests/ethernet-dialog.c
src/tests/ethernet_dialog-ethernet-dialog.obj: src/tests/ethernet-dialog.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_tests_ethernet_dialog_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT src/tests/ethernet_dialog-ethernet-dialog.obj -MD -MP -MF src/tests/$(DEPDIR)/ethernet_dialog-ethernet-dialog.Tpo -c -o src/tests/ethernet_dialog-ethernet-dialog.obj `if test -f 'src/tests/ethernet-dialog.c'; then $(CYGPATH_W) 'src/tests/ethernet-dialog.c'; else $(CYGPATH_W) '$(srcdir)/src/tests/ethernet-dialog.c'; fi`
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) src/tests/$(DEPDIR)/ethernet_dialog-ethernet-dialog.Tpo src/tests/$(DEPDIR)/ethernet_dialog-ethernet-dialog.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='src/tests/ethernet-dialog.c' object='src/tests/ethernet_dialog-ethernet-dialog.obj' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_tests_ethernet_dialog_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o src/tests/ethernet_dialog-ethernet-dialog.obj `if test -f 'src/tests/ethernet-dialog.c'; then $(CYGPATH_W) 'src/tests/ethernet-dialog.c'; else $(CYGPATH_W) '$(srcdir)/src/tests/ethernet-dialog.c'; fi`
src/utils/tests/test_utils-test-utils.o: src/utils/tests/test-utils.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_utils_tests_test_utils_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT src/utils/tests/test_utils-test-utils.o -MD -MP -MF src/utils/tests/$(DEPDIR)/test_utils-test-utils.Tpo -c -o src/utils/tests/test_utils-test-utils.o `test -f 'src/utils/tests/test-utils.c' || echo '$(srcdir)/'`src/utils/tests/test-utils.c
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) src/utils/tests/$(DEPDIR)/test_utils-test-utils.Tpo src/utils/tests/$(DEPDIR)/test_utils-test-utils.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='src/utils/tests/test-utils.c' object='src/utils/tests/test_utils-test-utils.o' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_utils_tests_test_utils_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o src/utils/tests/test_utils-test-utils.o `test -f 'src/utils/tests/test-utils.c' || echo '$(srcdir)/'`src/utils/tests/test-utils.c
src/utils/tests/test_utils-test-utils.obj: src/utils/tests/test-utils.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_utils_tests_test_utils_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT src/utils/tests/test_utils-test-utils.obj -MD -MP -MF src/utils/tests/$(DEPDIR)/test_utils-test-utils.Tpo -c -o src/utils/tests/test_utils-test-utils.obj `if test -f 'src/utils/tests/test-utils.c'; then $(CYGPATH_W) 'src/utils/tests/test-utils.c'; else $(CYGPATH_W) '$(srcdir)/src/utils/tests/test-utils.c'; fi`
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) src/utils/tests/$(DEPDIR)/test_utils-test-utils.Tpo src/utils/tests/$(DEPDIR)/test_utils-test-utils.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='src/utils/tests/test-utils.c' object='src/utils/tests/test_utils-test-utils.obj' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(src_utils_tests_test_utils_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o src/utils/tests/test_utils-test-utils.obj `if test -f 'src/utils/tests/test-utils.c'; then $(CYGPATH_W) 'src/utils/tests/test-utils.c'; else $(CYGPATH_W) '$(srcdir)/src/utils/tests/test-utils.c'; fi`
mostlyclean-libtool:
-rm -f *.lo
clean-libtool:
-rm -rf .libs _libs
-rm -rf shared/nm-utils/.libs shared/nm-utils/_libs
-rm -rf src/.libs src/_libs
-rm -rf src/connection-editor/.libs src/connection-editor/_libs
-rm -rf src/tests/.libs src/tests/_libs
-rm -rf src/utils/.libs src/utils/_libs
-rm -rf src/utils/tests/.libs src/utils/tests/_libs
-rm -rf src/wireless-security/.libs src/wireless-security/_libs
distclean-libtool:
-rm -f libtool config.lt
install-man1: $(man_MANS)
@$(NORMAL_INSTALL)
@list1=''; \
list2='$(man_MANS)'; \
test -n "$(man1dir)" \
&& test -n "`echo $$list1$$list2`" \
|| exit 0; \
echo " $(MKDIR_P) '$(DESTDIR)$(man1dir)'"; \
$(MKDIR_P) "$(DESTDIR)$(man1dir)" || exit 1; \
{ for i in $$list1; do echo "$$i"; done; \
if test -n "$$list2"; then \
for i in $$list2; do echo "$$i"; done \
| sed -n '/\.1[a-z]*$$/p'; \
fi; \
} | while read p; do \
if test -f $$p; then d=; else d="$(srcdir)/"; fi; \
echo "$$d$$p"; echo "$$p"; \
done | \
sed -e 'n;s,.*/,,;p;h;s,.*\.,,;s,^[^1][0-9a-z]*$$,1,;x' \
-e 's,\.[0-9a-z]*$$,,;$(transform);G;s,\n,.,' | \
sed 'N;N;s,\n, ,g' | { \
list=; while read file base inst; do \
if test "$$base" = "$$inst"; then list="$$list $$file"; else \
echo " $(INSTALL_DATA) '$$file' '$(DESTDIR)$(man1dir)/$$inst'"; \
$(INSTALL_DATA) "$$file" "$(DESTDIR)$(man1dir)/$$inst" || exit $$?; \
fi; \
done; \
for i in $$list; do echo "$$i"; done | $(am__base_list) | \
while read files; do \
test -z "$$files" || { \
echo " $(INSTALL_DATA) $$files '$(DESTDIR)$(man1dir)'"; \
$(INSTALL_DATA) $$files "$(DESTDIR)$(man1dir)" || exit $$?; }; \
done; }
uninstall-man1:
@$(NORMAL_UNINSTALL)
@list=''; test -n "$(man1dir)" || exit 0; \
files=`{ for i in $$list; do echo "$$i"; done; \
l2='$(man_MANS)'; for i in $$l2; do echo "$$i"; done | \
sed -n '/\.1[a-z]*$$/p'; \
} | sed -e 's,.*/,,;h;s,.*\.,,;s,^[^1][0-9a-z]*$$,1,;x' \
-e 's,\.[0-9a-z]*$$,,;$(transform);G;s,\n,.,'`; \
dir='$(DESTDIR)$(man1dir)'; $(am__uninstall_files_from_dir)
install-appdataDATA: $(appdata_DATA)
@$(NORMAL_INSTALL)
@list='$(appdata_DATA)'; test -n "$(appdatadir)" || list=; \
if test -n "$$list"; then \
echo " $(MKDIR_P) '$(DESTDIR)$(appdatadir)'"; \
$(MKDIR_P) "$(DESTDIR)$(appdatadir)" || exit 1; \
fi; \
for p in $$list; do \
if test -f "$$p"; then d=; else d="$(srcdir)/"; fi; \
echo "$$d$$p"; \
done | $(am__base_list) | \
while read files; do \
echo " $(INSTALL_DATA) $$files '$(DESTDIR)$(appdatadir)'"; \
$(INSTALL_DATA) $$files "$(DESTDIR)$(appdatadir)" || exit $$?; \
done
uninstall-appdataDATA:
@$(NORMAL_UNINSTALL)
@list='$(appdata_DATA)'; test -n "$(appdatadir)" || list=; \
files=`for p in $$list; do echo $$p; done | sed -e 's|^.*/||'`; \
dir='$(DESTDIR)$(appdatadir)'; $(am__uninstall_files_from_dir)
install-applicationsDATA: $(applications_DATA)
@$(NORMAL_INSTALL)
@list='$(applications_DATA)'; test -n "$(applicationsdir)" || list=; \
if test -n "$$list"; then \
echo " $(MKDIR_P) '$(DESTDIR)$(applicationsdir)'"; \
$(MKDIR_P) "$(DESTDIR)$(applicationsdir)" || exit 1; \
fi; \
for p in $$list; do \
if test -f "$$p"; then d=; else d="$(srcdir)/"; fi; \
echo "$$d$$p"; \
done | $(am__base_list) | \
while read files; do \
echo " $(INSTALL_DATA) $$files '$(DESTDIR)$(applicationsdir)'"; \
$(INSTALL_DATA) $$files "$(DESTDIR)$(applicationsdir)" || exit $$?; \
done
uninstall-applicationsDATA:
@$(NORMAL_UNINSTALL)
@list='$(applications_DATA)'; test -n "$(applicationsdir)" || list=; \
files=`for p in $$list; do echo $$p; done | sed -e 's|^.*/||'`; \
dir='$(DESTDIR)$(applicationsdir)'; $(am__uninstall_files_from_dir)
install-autostartDATA: $(autostart_DATA)
@$(NORMAL_INSTALL)
@list='$(autostart_DATA)'; test -n "$(autostartdir)" || list=; \
if test -n "$$list"; then \
echo " $(MKDIR_P) '$(DESTDIR)$(autostartdir)'"; \
$(MKDIR_P) "$(DESTDIR)$(autostartdir)" || exit 1; \
fi; \
for p in $$list; do \
if test -f "$$p"; then d=; else d="$(srcdir)/"; fi; \
echo "$$d$$p"; \
done | $(am__base_list) | \
while read files; do \
echo " $(INSTALL_DATA) $$files '$(DESTDIR)$(autostartdir)'"; \
$(INSTALL_DATA) $$files "$(DESTDIR)$(autostartdir)" || exit $$?; \
done
uninstall-autostartDATA:
@$(NORMAL_UNINSTALL)
@list='$(autostart_DATA)'; test -n "$(autostartdir)" || list=; \
files=`for p in $$list; do echo $$p; done | sed -e 's|^.*/||'`; \
dir='$(DESTDIR)$(autostartdir)'; $(am__uninstall_files_from_dir)
install-convertDATA: $(convert_DATA)
@$(NORMAL_INSTALL)
@list='$(convert_DATA)'; test -n "$(convertdir)" || list=; \
if test -n "$$list"; then \
echo " $(MKDIR_P) '$(DESTDIR)$(convertdir)'"; \
$(MKDIR_P) "$(DESTDIR)$(convertdir)" || exit 1; \
fi; \
for p in $$list; do \
if test -f "$$p"; then d=; else d="$(srcdir)/"; fi; \
echo "$$d$$p"; \
done | $(am__base_list) | \
while read files; do \
echo " $(INSTALL_DATA) $$files '$(DESTDIR)$(convertdir)'"; \
$(INSTALL_DATA) $$files "$(DESTDIR)$(convertdir)" || exit $$?; \
done
uninstall-convertDATA:
@$(NORMAL_UNINSTALL)
@list='$(convert_DATA)'; test -n "$(convertdir)" || list=; \
files=`for p in $$list; do echo $$p; done | sed -e 's|^.*/||'`; \
dir='$(DESTDIR)$(convertdir)'; $(am__uninstall_files_from_dir)
install-desktopDATA: $(desktop_DATA)
@$(NORMAL_INSTALL)
@list='$(desktop_DATA)'; test -n "$(desktopdir)" || list=; \
if test -n "$$list"; then \
echo " $(MKDIR_P) '$(DESTDIR)$(desktopdir)'"; \
$(MKDIR_P) "$(DESTDIR)$(desktopdir)" || exit 1; \
fi; \
for p in $$list; do \
if test -f "$$p"; then d=; else d="$(srcdir)/"; fi; \
echo "$$d$$p"; \
done | $(am__base_list) | \
while read files; do \
echo " $(INSTALL_DATA) $$files '$(DESTDIR)$(desktopdir)'"; \
$(INSTALL_DATA) $$files "$(DESTDIR)$(desktopdir)" || exit $$?; \
done
uninstall-desktopDATA:
@$(NORMAL_UNINSTALL)
@list='$(desktop_DATA)'; test -n "$(desktopdir)" || list=; \
files=`for p in $$list; do echo $$p; done | sed -e 's|^.*/||'`; \
dir='$(DESTDIR)$(desktopdir)'; $(am__uninstall_files_from_dir)
install-icon16DATA: $(icon16_DATA)
@$(NORMAL_INSTALL)
@list='$(icon16_DATA)'; test -n "$(icon16dir)" || list=; \
if test -n "$$list"; then \
echo " $(MKDIR_P) '$(DESTDIR)$(icon16dir)'"; \
$(MKDIR_P) "$(DESTDIR)$(icon16dir)" || exit 1; \
fi; \
for p in $$list; do \
if test -f "$$p"; then d=; else d="$(srcdir)/"; fi; \
echo "$$d$$p"; \
done | $(am__base_list) | \
while read files; do \
echo " $(INSTALL_DATA) $$files '$(DESTDIR)$(icon16dir)'"; \
$(INSTALL_DATA) $$files "$(DESTDIR)$(icon16dir)" || exit $$?; \
done
uninstall-icon16DATA:
@$(NORMAL_UNINSTALL)
@list='$(icon16_DATA)'; test -n "$(icon16dir)" || list=; \
files=`for p in $$list; do echo $$p; done | sed -e 's|^.*/||'`; \
dir='$(DESTDIR)$(icon16dir)'; $(am__uninstall_files_from_dir)
install-icon22DATA: $(icon22_DATA)
@$(NORMAL_INSTALL)
@list='$(icon22_DATA)'; test -n "$(icon22dir)" || list=; \
if test -n "$$list"; then \
echo " $(MKDIR_P) '$(DESTDIR)$(icon22dir)'"; \
$(MKDIR_P) "$(DESTDIR)$(icon22dir)" || exit 1; \
fi; \
for p in $$list; do \
if test -f "$$p"; then d=; else d="$(srcdir)/"; fi; \
echo "$$d$$p"; \
done | $(am__base_list) | \
while read files; do \
echo " $(INSTALL_DATA) $$files '$(DESTDIR)$(icon22dir)'"; \
$(INSTALL_DATA) $$files "$(DESTDIR)$(icon22dir)" || exit $$?; \
done
uninstall-icon22DATA:
@$(NORMAL_UNINSTALL)
@list='$(icon22_DATA)'; test -n "$(icon22dir)" || list=; \
files=`for p in $$list; do echo $$p; done | sed -e 's|^.*/||'`; \
dir='$(DESTDIR)$(icon22dir)'; $(am__uninstall_files_from_dir)
install-icon32DATA: $(icon32_DATA)
@$(NORMAL_INSTALL)
@list='$(icon32_DATA)'; test -n "$(icon32dir)" || list=; \
if test -n "$$list"; then \
echo " $(MKDIR_P) '$(DESTDIR)$(icon32dir)'"; \
$(MKDIR_P) "$(DESTDIR)$(icon32dir)" || exit 1; \
fi; \
for p in $$list; do \
if test -f "$$p"; then d=; else d="$(srcdir)/"; fi; \
echo "$$d$$p"; \
done | $(am__base_list) | \
while read files; do \
echo " $(INSTALL_DATA) $$files '$(DESTDIR)$(icon32dir)'"; \
$(INSTALL_DATA) $$files "$(DESTDIR)$(icon32dir)" || exit $$?; \
done
uninstall-icon32DATA:
@$(NORMAL_UNINSTALL)
@list='$(icon32_DATA)'; test -n "$(icon32dir)" || list=; \
files=`for p in $$list; do echo $$p; done | sed -e 's|^.*/||'`; \
dir='$(DESTDIR)$(icon32dir)'; $(am__uninstall_files_from_dir)
install-icon48DATA: $(icon48_DATA)
@$(NORMAL_INSTALL)
@list='$(icon48_DATA)'; test -n "$(icon48dir)" || list=; \
if test -n "$$list"; then \
echo " $(MKDIR_P) '$(DESTDIR)$(icon48dir)'"; \
$(MKDIR_P) "$(DESTDIR)$(icon48dir)" || exit 1; \
fi; \
for p in $$list; do \
if test -f "$$p"; then d=; else d="$(srcdir)/"; fi; \
echo "$$d$$p"; \
done | $(am__base_list) | \
while read files; do \
echo " $(INSTALL_DATA) $$files '$(DESTDIR)$(icon48dir)'"; \
$(INSTALL_DATA) $$files "$(DESTDIR)$(icon48dir)" || exit $$?; \
done
uninstall-icon48DATA:
@$(NORMAL_UNINSTALL)
@list='$(icon48_DATA)'; test -n "$(icon48dir)" || list=; \
files=`for p in $$list; do echo $$p; done | sed -e 's|^.*/||'`; \
dir='$(DESTDIR)$(icon48dir)'; $(am__uninstall_files_from_dir)
install-iconscalableDATA: $(iconscalable_DATA)
@$(NORMAL_INSTALL)
@list='$(iconscalable_DATA)'; test -n "$(iconscalabledir)" || list=; \
if test -n "$$list"; then \
echo " $(MKDIR_P) '$(DESTDIR)$(iconscalabledir)'"; \
$(MKDIR_P) "$(DESTDIR)$(iconscalabledir)" || exit 1; \
fi; \
for p in $$list; do \
if test -f "$$p"; then d=; else d="$(srcdir)/"; fi; \
echo "$$d$$p"; \
done | $(am__base_list) | \
while read files; do \
echo " $(INSTALL_DATA) $$files '$(DESTDIR)$(iconscalabledir)'"; \
$(INSTALL_DATA) $$files "$(DESTDIR)$(iconscalabledir)" || exit $$?; \
done
uninstall-iconscalableDATA:
@$(NORMAL_UNINSTALL)
@list='$(iconscalable_DATA)'; test -n "$(iconscalabledir)" || list=; \
files=`for p in $$list; do echo $$p; done | sed -e 's|^.*/||'`; \
dir='$(DESTDIR)$(iconscalabledir)'; $(am__uninstall_files_from_dir)
install-pkgconfigDATA: $(pkgconfig_DATA)
@$(NORMAL_INSTALL)
@list='$(pkgconfig_DATA)'; test -n "$(pkgconfigdir)" || list=; \
if test -n "$$list"; then \
echo " $(MKDIR_P) '$(DESTDIR)$(pkgconfigdir)'"; \
$(MKDIR_P) "$(DESTDIR)$(pkgconfigdir)" || exit 1; \
fi; \
for p in $$list; do \
if test -f "$$p"; then d=; else d="$(srcdir)/"; fi; \
echo "$$d$$p"; \
done | $(am__base_list) | \
while read files; do \
echo " $(INSTALL_DATA) $$files '$(DESTDIR)$(pkgconfigdir)'"; \
$(INSTALL_DATA) $$files "$(DESTDIR)$(pkgconfigdir)" || exit $$?; \
done
uninstall-pkgconfigDATA:
@$(NORMAL_UNINSTALL)
@list='$(pkgconfig_DATA)'; test -n "$(pkgconfigdir)" || list=; \
files=`for p in $$list; do echo $$p; done | sed -e 's|^.*/||'`; \
dir='$(DESTDIR)$(pkgconfigdir)'; $(am__uninstall_files_from_dir)
# This directory's subdirectories are mostly independent; you can cd
# into them and run 'make' without going through this Makefile.
# To change the values of 'make' variables: instead of editing Makefiles,
# (1) if the variable is set in 'config.status', edit 'config.status'
# (which will cause the Makefiles to be regenerated when you run 'make');
# (2) otherwise, pass the desired values on the 'make' command line.
$(am__recursive_targets):
@fail=; \
if $(am__make_keepgoing); then \
failcom='fail=yes'; \
else \
failcom='exit 1'; \
fi; \
dot_seen=no; \
target=`echo $@ | sed s/-recursive//`; \
case "$@" in \
distclean-* | maintainer-clean-*) list='$(DIST_SUBDIRS)' ;; \
*) list='$(SUBDIRS)' ;; \
esac; \
for subdir in $$list; do \
echo "Making $$target in $$subdir"; \
if test "$$subdir" = "."; then \
dot_seen=yes; \
local_target="$$target-am"; \
else \
local_target="$$target"; \
fi; \
($(am__cd) $$subdir && $(MAKE) $(AM_MAKEFLAGS) $$local_target) \
|| eval $$failcom; \
done; \
if test "$$dot_seen" = "no"; then \
$(MAKE) $(AM_MAKEFLAGS) "$$target-am" || exit 1; \
fi; test -z "$$fail"
ID: $(am__tagged_files)
$(am__define_uniq_tagged_files); mkid -fID $$unique
tags: tags-recursive
TAGS: tags
tags-am: $(TAGS_DEPENDENCIES) $(am__tagged_files)
set x; \
here=`pwd`; \
if ($(ETAGS) --etags-include --version) >/dev/null 2>&1; then \
include_option=--etags-include; \
empty_fix=.; \
else \
include_option=--include; \
empty_fix=; \
fi; \
list='$(SUBDIRS)'; for subdir in $$list; do \
if test "$$subdir" = .; then :; else \
test ! -f $$subdir/TAGS || \
set "$$@" "$$include_option=$$here/$$subdir/TAGS"; \
fi; \
done; \
$(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-recursive
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"
cscope: cscope.files
test ! -s cscope.files \
|| $(CSCOPE) -b -q $(AM_CSCOPEFLAGS) $(CSCOPEFLAGS) -i cscope.files $(CSCOPE_ARGS)
clean-cscope:
-rm -f cscope.files
cscope.files: clean-cscope cscopelist
cscopelist: cscopelist-recursive
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
-rm -f cscope.out cscope.in.out cscope.po.out cscope.files
# Recover from deleted '.trs' file; this should ensure that
# "rm -f foo.log; make foo.trs" re-run 'foo.test', and re-create
# both 'foo.log' and 'foo.trs'. Break the recipe in two subshells
# to avoid problems with "make -n".
.log.trs:
rm -f $< $@
$(MAKE) $(AM_MAKEFLAGS) $<
# Leading 'am--fnord' is there to ensure the list of targets does not
# expand to empty, as could happen e.g. with make check TESTS=''.
am--fnord $(TEST_LOGS) $(TEST_LOGS:.log=.trs): $(am__force_recheck)
am--force-recheck:
@:
$(TEST_SUITE_LOG): $(TEST_LOGS)
@$(am__set_TESTS_bases); \
am__f_ok () { test -f "$$1" && test -r "$$1"; }; \
redo_bases=`for i in $$bases; do \
am__f_ok $$i.trs && am__f_ok $$i.log || echo $$i; \
done`; \
if test -n "$$redo_bases"; then \
redo_logs=`for i in $$redo_bases; do echo $$i.log; done`; \
redo_results=`for i in $$redo_bases; do echo $$i.trs; done`; \
if $(am__make_dryrun); then :; else \
rm -f $$redo_logs && rm -f $$redo_results || exit 1; \
fi; \
fi; \
if test -n "$$am__remaking_logs"; then \
echo "fatal: making $(TEST_SUITE_LOG): possible infinite" \
"recursion detected" >&2; \
elif test -n "$$redo_logs"; then \
am__remaking_logs=yes $(MAKE) $(AM_MAKEFLAGS) $$redo_logs; \
fi; \
if $(am__make_dryrun); then :; else \
st=0; \
errmsg="fatal: making $(TEST_SUITE_LOG): failed to create"; \
for i in $$redo_bases; do \
test -f $$i.trs && test -r $$i.trs \
|| { echo "$$errmsg $$i.trs" >&2; st=1; }; \
test -f $$i.log && test -r $$i.log \
|| { echo "$$errmsg $$i.log" >&2; st=1; }; \
done; \
test $$st -eq 0 || exit 1; \
fi
@$(am__sh_e_setup); $(am__tty_colors); $(am__set_TESTS_bases); \
ws='[ ]'; \
results=`for b in $$bases; do echo $$b.trs; done`; \
test -n "$$results" || results=/dev/null; \
all=` grep "^$$ws*:test-result:" $$results | wc -l`; \
pass=` grep "^$$ws*:test-result:$$ws*PASS" $$results | wc -l`; \
fail=` grep "^$$ws*:test-result:$$ws*FAIL" $$results | wc -l`; \
skip=` grep "^$$ws*:test-result:$$ws*SKIP" $$results | wc -l`; \
xfail=`grep "^$$ws*:test-result:$$ws*XFAIL" $$results | wc -l`; \
xpass=`grep "^$$ws*:test-result:$$ws*XPASS" $$results | wc -l`; \
error=`grep "^$$ws*:test-result:$$ws*ERROR" $$results | wc -l`; \
if test `expr $$fail + $$xpass + $$error` -eq 0; then \
success=true; \
else \
success=false; \
fi; \
br='==================='; br=$$br$$br$$br$$br; \
result_count () \
{ \
if test x"$$1" = x"--maybe-color"; then \
maybe_colorize=yes; \
elif test x"$$1" = x"--no-color"; then \
maybe_colorize=no; \
else \
echo "$@: invalid 'result_count' usage" >&2; exit 4; \
fi; \
shift; \
desc=$$1 count=$$2; \
if test $$maybe_colorize = yes && test $$count -gt 0; then \
color_start=$$3 color_end=$$std; \
else \
color_start= color_end=; \
fi; \
echo "$${color_start}# $$desc $$count$${color_end}"; \
}; \
create_testsuite_report () \
{ \
result_count $$1 "TOTAL:" $$all "$$brg"; \
result_count $$1 "PASS: " $$pass "$$grn"; \
result_count $$1 "SKIP: " $$skip "$$blu"; \
result_count $$1 "XFAIL:" $$xfail "$$lgn"; \
result_count $$1 "FAIL: " $$fail "$$red"; \
result_count $$1 "XPASS:" $$xpass "$$red"; \
result_count $$1 "ERROR:" $$error "$$mgn"; \
}; \
{ \
echo "$(PACKAGE_STRING): $(subdir)/$(TEST_SUITE_LOG)" | \
$(am__rst_title); \
create_testsuite_report --no-color; \
echo; \
echo ".. contents:: :depth: 2"; \
echo; \
for b in $$bases; do echo $$b; done \
| $(am__create_global_log); \
} >$(TEST_SUITE_LOG).tmp || exit 1; \
mv $(TEST_SUITE_LOG).tmp $(TEST_SUITE_LOG); \
if $$success; then \
col="$$grn"; \
else \
col="$$red"; \
test x"$$VERBOSE" = x || cat $(TEST_SUITE_LOG); \
fi; \
echo "$${col}$$br$${std}"; \
echo "$${col}Testsuite summary"$(AM_TESTSUITE_SUMMARY_HEADER)"$${std}"; \
echo "$${col}$$br$${std}"; \
create_testsuite_report --maybe-color; \
echo "$$col$$br$$std"; \
if $$success; then :; else \
echo "$${col}See $(subdir)/$(TEST_SUITE_LOG)$${std}"; \
if test -n "$(PACKAGE_BUGREPORT)"; then \
echo "$${col}Please report to $(PACKAGE_BUGREPORT)$${std}"; \
fi; \
echo "$$col$$br$$std"; \
fi; \
$$success || exit 1
check-TESTS: $(check_PROGRAMS)
@list='$(RECHECK_LOGS)'; test -z "$$list" || rm -f $$list
@list='$(RECHECK_LOGS:.log=.trs)'; test -z "$$list" || rm -f $$list
@test -z "$(TEST_SUITE_LOG)" || rm -f $(TEST_SUITE_LOG)
@set +e; $(am__set_TESTS_bases); \
log_list=`for i in $$bases; do echo $$i.log; done`; \
trs_list=`for i in $$bases; do echo $$i.trs; done`; \
log_list=`echo $$log_list`; trs_list=`echo $$trs_list`; \
$(MAKE) $(AM_MAKEFLAGS) $(TEST_SUITE_LOG) TEST_LOGS="$$log_list"; \
exit $$?;
recheck: all $(check_PROGRAMS)
@test -z "$(TEST_SUITE_LOG)" || rm -f $(TEST_SUITE_LOG)
@set +e; $(am__set_TESTS_bases); \
bases=`for i in $$bases; do echo $$i; done \
| $(am__list_recheck_tests)` || exit 1; \
log_list=`for i in $$bases; do echo $$i.log; done`; \
log_list=`echo $$log_list`; \
$(MAKE) $(AM_MAKEFLAGS) $(TEST_SUITE_LOG) \
am__force_recheck=am--force-recheck \
TEST_LOGS="$$log_list"; \
exit $$?
src/utils/tests/test-utils.log: src/utils/tests/test-utils$(EXEEXT)
@p='src/utils/tests/test-utils$(EXEEXT)'; \
b='src/utils/tests/test-utils'; \
$(am__check_pre) $(LOG_DRIVER) --test-name "$$f" \
--log-file $$b.log --trs-file $$b.trs \
$(am__common_driver_flags) $(AM_LOG_DRIVER_FLAGS) $(LOG_DRIVER_FLAGS) -- $(LOG_COMPILE) \
"$$tst" $(AM_TESTS_FD_REDIRECT)
.test.log:
@p='$<'; \
$(am__set_b); \
$(am__check_pre) $(TEST_LOG_DRIVER) --test-name "$$f" \
--log-file $$b.log --trs-file $$b.trs \
$(am__common_driver_flags) $(AM_TEST_LOG_DRIVER_FLAGS) $(TEST_LOG_DRIVER_FLAGS) -- $(TEST_LOG_COMPILE) \
"$$tst" $(AM_TESTS_FD_REDIRECT)
@am__EXEEXT_TRUE@.test$(EXEEXT).log:
@am__EXEEXT_TRUE@ @p='$<'; \
@am__EXEEXT_TRUE@ $(am__set_b); \
@am__EXEEXT_TRUE@ $(am__check_pre) $(TEST_LOG_DRIVER) --test-name "$$f" \
@am__EXEEXT_TRUE@ --log-file $$b.log --trs-file $$b.trs \
@am__EXEEXT_TRUE@ $(am__common_driver_flags) $(AM_TEST_LOG_DRIVER_FLAGS) $(TEST_LOG_DRIVER_FLAGS) -- $(TEST_LOG_COMPILE) \
@am__EXEEXT_TRUE@ "$$tst" $(AM_TESTS_FD_REDIRECT)
distdir: $(BUILT_SOURCES)
$(MAKE) $(AM_MAKEFLAGS) distdir-am
distdir-am: $(DISTFILES)
$(am__remove_distdir)
test -d "$(distdir)" || mkdir "$(distdir)"
@srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \
topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \
list='$(DISTFILES)'; \
dist_files=`for file in $$list; do echo $$file; done | \
sed -e "s|^$$srcdirstrip/||;t" \
-e "s|^$$topsrcdirstrip/|$(top_builddir)/|;t"`; \
case $$dist_files in \
*/*) $(MKDIR_P) `echo "$$dist_files" | \
sed '/\//!d;s|^|$(distdir)/|;s,/[^/]*$$,,' | \
sort -u` ;; \
esac; \
for file in $$dist_files; do \
if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \
if test -d $$d/$$file; then \
dir=`echo "/$$file" | sed -e 's,/[^/]*$$,,'`; \
if test -d "$(distdir)/$$file"; then \
find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \
fi; \
if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \
cp -fpR $(srcdir)/$$file "$(distdir)$$dir" || exit 1; \
find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \
fi; \
cp -fpR $$d/$$file "$(distdir)$$dir" || exit 1; \
else \
test -f "$(distdir)/$$file" \
|| cp -p $$d/$$file "$(distdir)/$$file" \
|| exit 1; \
fi; \
done
@list='$(DIST_SUBDIRS)'; for subdir in $$list; do \
if test "$$subdir" = .; then :; else \
$(am__make_dryrun) \
|| test -d "$(distdir)/$$subdir" \
|| $(MKDIR_P) "$(distdir)/$$subdir" \
|| exit 1; \
dir1=$$subdir; dir2="$(distdir)/$$subdir"; \
$(am__relativize); \
new_distdir=$$reldir; \
dir1=$$subdir; dir2="$(top_distdir)"; \
$(am__relativize); \
new_top_distdir=$$reldir; \
echo " (cd $$subdir && $(MAKE) $(AM_MAKEFLAGS) top_distdir="$$new_top_distdir" distdir="$$new_distdir" \\"; \
echo " am__remove_distdir=: am__skip_length_check=: am__skip_mode_fix=: distdir)"; \
($(am__cd) $$subdir && \
$(MAKE) $(AM_MAKEFLAGS) \
top_distdir="$$new_top_distdir" \
distdir="$$new_distdir" \
am__remove_distdir=: \
am__skip_length_check=: \
am__skip_mode_fix=: \
distdir) \
|| exit 1; \
fi; \
done
-test -n "$(am__skip_mode_fix)" \
|| find "$(distdir)" -type d ! -perm -755 \
-exec chmod u+rwx,go+rx {} \; -o \
! -type d ! -perm -444 -links 1 -exec chmod a+r {} \; -o \
! -type d ! -perm -400 -exec chmod a+r {} \; -o \
! -type d ! -perm -444 -exec $(install_sh) -c -m a+r {} {} \; \
|| chmod -R a+r "$(distdir)"
dist-gzip: distdir
tardir=$(distdir) && $(am__tar) | eval GZIP= gzip $(GZIP_ENV) -c >$(distdir).tar.gz
$(am__post_remove_distdir)
dist-bzip2: distdir
tardir=$(distdir) && $(am__tar) | BZIP2=$${BZIP2--9} bzip2 -c >$(distdir).tar.bz2
$(am__post_remove_distdir)
dist-lzip: distdir
tardir=$(distdir) && $(am__tar) | lzip -c $${LZIP_OPT--9} >$(distdir).tar.lz
$(am__post_remove_distdir)
dist-xz: distdir
tardir=$(distdir) && $(am__tar) | XZ_OPT=$${XZ_OPT--e} xz -c >$(distdir).tar.xz
$(am__post_remove_distdir)
dist-zstd: distdir
tardir=$(distdir) && $(am__tar) | zstd -c $${ZSTD_CLEVEL-$${ZSTD_OPT--19}} >$(distdir).tar.zst
$(am__post_remove_distdir)
dist-tarZ: distdir
@echo WARNING: "Support for distribution archives compressed with" \
"legacy program 'compress' is deprecated." >&2
@echo WARNING: "It will be removed altogether in Automake 2.0" >&2
tardir=$(distdir) && $(am__tar) | compress -c >$(distdir).tar.Z
$(am__post_remove_distdir)
dist-shar: distdir
@echo WARNING: "Support for shar distribution archives is" \
"deprecated." >&2
@echo WARNING: "It will be removed altogether in Automake 2.0" >&2
shar $(distdir) | eval GZIP= gzip $(GZIP_ENV) -c >$(distdir).shar.gz
$(am__post_remove_distdir)
dist-zip: distdir
-rm -f $(distdir).zip
zip -rq $(distdir).zip $(distdir)
$(am__post_remove_distdir)
dist dist-all:
$(MAKE) $(AM_MAKEFLAGS) $(DIST_TARGETS) am__post_remove_distdir='@:'
$(am__post_remove_distdir)
# This target untars the dist file and tries a VPATH configuration. Then
# it guarantees that the distribution is self-contained by making another
# tarfile.
distcheck: dist
case '$(DIST_ARCHIVES)' in \
*.tar.gz*) \
eval GZIP= gzip $(GZIP_ENV) -dc $(distdir).tar.gz | $(am__untar) ;;\
*.tar.bz2*) \
bzip2 -dc $(distdir).tar.bz2 | $(am__untar) ;;\
*.tar.lz*) \
lzip -dc $(distdir).tar.lz | $(am__untar) ;;\
*.tar.xz*) \
xz -dc $(distdir).tar.xz | $(am__untar) ;;\
*.tar.Z*) \
uncompress -c $(distdir).tar.Z | $(am__untar) ;;\
*.shar.gz*) \
eval GZIP= gzip $(GZIP_ENV) -dc $(distdir).shar.gz | unshar ;;\
*.zip*) \
unzip $(distdir).zip ;;\
*.tar.zst*) \
zstd -dc $(distdir).tar.zst | $(am__untar) ;;\
esac
chmod -R a-w $(distdir)
chmod u+w $(distdir)
mkdir $(distdir)/_build $(distdir)/_build/sub $(distdir)/_inst
chmod a-w $(distdir)
test -d $(distdir)/_build || exit 0; \
dc_install_base=`$(am__cd) $(distdir)/_inst && pwd | sed -e 's,^[^:\\/]:[\\/],/,'` \
&& dc_destdir="$${TMPDIR-/tmp}/am-dc-$$$$/" \
&& am__cwd=`pwd` \
&& $(am__cd) $(distdir)/_build/sub \
&& ../../configure \
$(AM_DISTCHECK_CONFIGURE_FLAGS) \
$(DISTCHECK_CONFIGURE_FLAGS) \
--srcdir=../.. --prefix="$$dc_install_base" \
&& $(MAKE) $(AM_MAKEFLAGS) \
&& $(MAKE) $(AM_MAKEFLAGS) $(AM_DISTCHECK_DVI_TARGET) \
&& $(MAKE) $(AM_MAKEFLAGS) check \
&& $(MAKE) $(AM_MAKEFLAGS) install \
&& $(MAKE) $(AM_MAKEFLAGS) installcheck \
&& $(MAKE) $(AM_MAKEFLAGS) uninstall \
&& $(MAKE) $(AM_MAKEFLAGS) distuninstallcheck_dir="$$dc_install_base" \
distuninstallcheck \
&& chmod -R a-w "$$dc_install_base" \
&& ({ \
(cd ../.. && umask 077 && mkdir "$$dc_destdir") \
&& $(MAKE) $(AM_MAKEFLAGS) DESTDIR="$$dc_destdir" install \
&& $(MAKE) $(AM_MAKEFLAGS) DESTDIR="$$dc_destdir" uninstall \
&& $(MAKE) $(AM_MAKEFLAGS) DESTDIR="$$dc_destdir" \
distuninstallcheck_dir="$$dc_destdir" distuninstallcheck; \
} || { rm -rf "$$dc_destdir"; exit 1; }) \
&& rm -rf "$$dc_destdir" \
&& $(MAKE) $(AM_MAKEFLAGS) dist \
&& rm -rf $(DIST_ARCHIVES) \
&& $(MAKE) $(AM_MAKEFLAGS) distcleancheck \
&& cd "$$am__cwd" \
|| exit 1
$(am__post_remove_distdir)
@(echo "$(distdir) archives ready for distribution: "; \
list='$(DIST_ARCHIVES)'; for i in $$list; do echo $$i; done) | \
sed -e 1h -e 1s/./=/g -e 1p -e 1x -e '$$p' -e '$$x'
distuninstallcheck:
@test -n '$(distuninstallcheck_dir)' || { \
echo 'ERROR: trying to run $@ with an empty' \
'$$(distuninstallcheck_dir)' >&2; \
exit 1; \
}; \
$(am__cd) '$(distuninstallcheck_dir)' || { \
echo 'ERROR: cannot chdir into $(distuninstallcheck_dir)' >&2; \
exit 1; \
}; \
test `$(am__distuninstallcheck_listfiles) | wc -l` -eq 0 \
|| { echo "ERROR: files left after uninstall:" ; \
if test -n "$(DESTDIR)"; then \
echo " (check DESTDIR support)"; \
fi ; \
$(distuninstallcheck_listfiles) ; \
exit 1; } >&2
distcleancheck: distclean
@if test '$(srcdir)' = . ; then \
echo "ERROR: distcleancheck can only run from a VPATH build" ; \
exit 1 ; \
fi
@test `$(distcleancheck_listfiles) | wc -l` -eq 0 \
|| { echo "ERROR: files left in build directory after distclean:" ; \
$(distcleancheck_listfiles) ; \
exit 1; } >&2
check-am: all-am
$(MAKE) $(AM_MAKEFLAGS) $(check_PROGRAMS)
$(MAKE) $(AM_MAKEFLAGS) check-TESTS check-local
check: $(BUILT_SOURCES)
$(MAKE) $(AM_MAKEFLAGS) check-recursive
all-am: Makefile $(PROGRAMS) $(LTLIBRARIES) $(MANS) $(DATA) config.h
install-binPROGRAMS: install-libLTLIBRARIES
install-checkPROGRAMS: install-libLTLIBRARIES
installdirs: installdirs-recursive
installdirs-am:
for dir in "$(DESTDIR)$(bindir)" "$(DESTDIR)$(libdir)" "$(DESTDIR)$(man1dir)" "$(DESTDIR)$(appdatadir)" "$(DESTDIR)$(applicationsdir)" "$(DESTDIR)$(autostartdir)" "$(DESTDIR)$(convertdir)" "$(DESTDIR)$(desktopdir)" "$(DESTDIR)$(icon16dir)" "$(DESTDIR)$(icon22dir)" "$(DESTDIR)$(icon32dir)" "$(DESTDIR)$(icon48dir)" "$(DESTDIR)$(iconscalabledir)" "$(DESTDIR)$(pkgconfigdir)"; do \
test -z "$$dir" || $(MKDIR_P) "$$dir"; \
done
install: $(BUILT_SOURCES)
$(MAKE) $(AM_MAKEFLAGS) install-recursive
install-exec: $(BUILT_SOURCES)
$(MAKE) $(AM_MAKEFLAGS) install-exec-recursive
install-data: install-data-recursive
uninstall: uninstall-recursive
install-am: all-am
@$(MAKE) $(AM_MAKEFLAGS) install-exec-am install-data-am
installcheck: installcheck-recursive
install-strip:
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:
-test -z "$(TEST_LOGS)" || rm -f $(TEST_LOGS)
-test -z "$(TEST_LOGS:.log=.trs)" || rm -f $(TEST_LOGS:.log=.trs)
-test -z "$(TEST_SUITE_LOG)" || rm -f $(TEST_SUITE_LOG)
clean-generic:
-test -z "$(CLEANFILES)" || rm -f $(CLEANFILES)
distclean-generic:
-test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES)
-test . = "$(srcdir)" || test -z "$(CONFIG_CLEAN_VPATH_FILES)" || rm -f $(CONFIG_CLEAN_VPATH_FILES)
-rm -f shared/nm-utils/$(DEPDIR)/$(am__dirstamp)
-rm -f shared/nm-utils/$(am__dirstamp)
-rm -f src/$(DEPDIR)/$(am__dirstamp)
-rm -f src/$(am__dirstamp)
-rm -f src/connection-editor/$(DEPDIR)/$(am__dirstamp)
-rm -f src/connection-editor/$(am__dirstamp)
-rm -f src/tests/$(DEPDIR)/$(am__dirstamp)
-rm -f src/tests/$(am__dirstamp)
-rm -f src/utils/$(DEPDIR)/$(am__dirstamp)
-rm -f src/utils/$(am__dirstamp)
-rm -f src/utils/tests/$(DEPDIR)/$(am__dirstamp)
-rm -f src/utils/tests/$(am__dirstamp)
-rm -f src/wireless-security/$(DEPDIR)/$(am__dirstamp)
-rm -f src/wireless-security/$(am__dirstamp)
-test -z "$(DISTCLEANFILES)" || rm -f $(DISTCLEANFILES)
maintainer-clean-generic:
@echo "This command is intended for maintainers to use"
@echo "it deletes files that may require special tools to rebuild."
-test -z "$(BUILT_SOURCES)" || rm -f $(BUILT_SOURCES)
clean: clean-recursive
clean-am: clean-binPROGRAMS clean-checkPROGRAMS clean-generic \
clean-libLTLIBRARIES clean-libtool clean-noinstLTLIBRARIES \
clean-noinstPROGRAMS mostlyclean-am
distclean: distclean-recursive
-rm -f $(am__CONFIG_DISTCLEAN_FILES)
-rm -f shared/nm-utils/$(DEPDIR)/src_nm_applet-nm-compat.Po
-rm -f shared/nm-utils/$(DEPDIR)/src_utils_libutils_libnm_la-nm-shared-utils.Plo
-rm -f src/$(DEPDIR)/nm_applet-ap-menu-item.Po
-rm -f src/$(DEPDIR)/nm_applet-applet-agent.Po
-rm -f src/$(DEPDIR)/nm_applet-applet-device-broadband.Po
-rm -f src/$(DEPDIR)/nm_applet-applet-device-bt.Po
-rm -f src/$(DEPDIR)/nm_applet-applet-device-ethernet.Po
-rm -f src/$(DEPDIR)/nm_applet-applet-device-wifi.Po
-rm -f src/$(DEPDIR)/nm_applet-applet-dialogs.Po
-rm -f src/$(DEPDIR)/nm_applet-applet-resources.Po
-rm -f src/$(DEPDIR)/nm_applet-applet-vpn-request.Po
-rm -f src/$(DEPDIR)/nm_applet-applet.Po
-rm -f src/$(DEPDIR)/nm_applet-ethernet-dialog.Po
-rm -f src/$(DEPDIR)/nm_applet-main.Po
-rm -f src/$(DEPDIR)/nm_applet-mb-menu-item.Po
-rm -f src/$(DEPDIR)/nm_applet-mobile-helpers.Po
-rm -f src/$(DEPDIR)/tests_ethernet_dialog-applet-dialogs.Po
-rm -f src/$(DEPDIR)/tests_ethernet_dialog-applet-resources.Po
-rm -f src/$(DEPDIR)/tests_ethernet_dialog-ethernet-dialog.Po
-rm -f src/connection-editor/$(DEPDIR)/nm_connection_editor-ce-page.Po
-rm -f src/connection-editor/$(DEPDIR)/nm_connection_editor-ce-polkit-button.Po
-rm -f src/connection-editor/$(DEPDIR)/nm_connection_editor-ce-polkit.Po
-rm -f src/connection-editor/$(DEPDIR)/nm_connection_editor-ce-resources.Po
-rm -f src/connection-editor/$(DEPDIR)/nm_connection_editor-ce-utils.Po
-rm -f src/connection-editor/$(DEPDIR)/nm_connection_editor-connection-helpers.Po
-rm -f src/connection-editor/$(DEPDIR)/nm_connection_editor-ip4-routes-dialog.Po
-rm -f src/connection-editor/$(DEPDIR)/nm_connection_editor-ip6-routes-dialog.Po
-rm -f src/connection-editor/$(DEPDIR)/nm_connection_editor-main.Po
-rm -f src/connection-editor/$(DEPDIR)/nm_connection_editor-nm-connection-editor.Po
-rm -f src/connection-editor/$(DEPDIR)/nm_connection_editor-nm-connection-list.Po
-rm -f src/connection-editor/$(DEPDIR)/nm_connection_editor-page-8021x-security.Po
-rm -f src/connection-editor/$(DEPDIR)/nm_connection_editor-page-bluetooth.Po
-rm -f src/connection-editor/$(DEPDIR)/nm_connection_editor-page-bond.Po
-rm -f src/connection-editor/$(DEPDIR)/nm_connection_editor-page-bridge-port.Po
-rm -f src/connection-editor/$(DEPDIR)/nm_connection_editor-page-bridge.Po
-rm -f src/connection-editor/$(DEPDIR)/nm_connection_editor-page-controller.Po
-rm -f src/connection-editor/$(DEPDIR)/nm_connection_editor-page-dcb.Po
-rm -f src/connection-editor/$(DEPDIR)/nm_connection_editor-page-dsl.Po
-rm -f src/connection-editor/$(DEPDIR)/nm_connection_editor-page-ethernet.Po
-rm -f src/connection-editor/$(DEPDIR)/nm_connection_editor-page-general.Po
-rm -f src/connection-editor/$(DEPDIR)/nm_connection_editor-page-infiniband.Po
-rm -f src/connection-editor/$(DEPDIR)/nm_connection_editor-page-ip-tunnel.Po
-rm -f src/connection-editor/$(DEPDIR)/nm_connection_editor-page-ip4.Po
-rm -f src/connection-editor/$(DEPDIR)/nm_connection_editor-page-ip6.Po
-rm -f src/connection-editor/$(DEPDIR)/nm_connection_editor-page-macsec.Po
-rm -f src/connection-editor/$(DEPDIR)/nm_connection_editor-page-mobile.Po
-rm -f src/connection-editor/$(DEPDIR)/nm_connection_editor-page-ppp.Po
-rm -f src/connection-editor/$(DEPDIR)/nm_connection_editor-page-proxy.Po
-rm -f src/connection-editor/$(DEPDIR)/nm_connection_editor-page-team-port.Po
-rm -f src/connection-editor/$(DEPDIR)/nm_connection_editor-page-team.Po
-rm -f src/connection-editor/$(DEPDIR)/nm_connection_editor-page-vlan.Po
-rm -f src/connection-editor/$(DEPDIR)/nm_connection_editor-page-vpn.Po
-rm -f src/connection-editor/$(DEPDIR)/nm_connection_editor-page-wifi-security.Po
-rm -f src/connection-editor/$(DEPDIR)/nm_connection_editor-page-wifi.Po
-rm -f src/connection-editor/$(DEPDIR)/nm_connection_editor-page-wireguard.Po
-rm -f src/connection-editor/$(DEPDIR)/nm_connection_editor-ppp-auth-methods-dialog.Po
-rm -f src/connection-editor/$(DEPDIR)/nm_connection_editor-vpn-helpers.Po
-rm -f src/tests/$(DEPDIR)/ethernet_dialog-ethernet-dialog.Po
-rm -f src/utils/$(DEPDIR)/libutils_libnm_la-utils.Plo
-rm -f src/utils/tests/$(DEPDIR)/test_utils-test-utils.Po
-rm -f src/wireless-security/$(DEPDIR)/libwireless_security_libnm_la-eap-method.Plo
-rm -f Makefile
distclean-am: clean-am distclean-compile distclean-generic \
distclean-hdr distclean-libtool distclean-tags
dvi: dvi-recursive
dvi-am:
html: html-recursive
html-am:
info: info-recursive
info-am:
install-data-am: install-appdataDATA install-applicationsDATA \
install-autostartDATA install-convertDATA install-desktopDATA \
install-icon16DATA install-icon22DATA install-icon32DATA \
install-icon48DATA install-iconscalableDATA install-man \
install-pkgconfigDATA
install-dvi: install-dvi-recursive
install-dvi-am:
install-exec-am: install-binPROGRAMS install-libLTLIBRARIES
install-html: install-html-recursive
install-html-am:
install-info: install-info-recursive
install-info-am:
install-man: install-man1
install-pdf: install-pdf-recursive
install-pdf-am:
install-ps: install-ps-recursive
install-ps-am:
installcheck-am:
maintainer-clean: maintainer-clean-recursive
-rm -f $(am__CONFIG_DISTCLEAN_FILES)
-rm -rf $(top_srcdir)/autom4te.cache
-rm -f shared/nm-utils/$(DEPDIR)/src_nm_applet-nm-compat.Po
-rm -f shared/nm-utils/$(DEPDIR)/src_utils_libutils_libnm_la-nm-shared-utils.Plo
-rm -f src/$(DEPDIR)/nm_applet-ap-menu-item.Po
-rm -f src/$(DEPDIR)/nm_applet-applet-agent.Po
-rm -f src/$(DEPDIR)/nm_applet-applet-device-broadband.Po
-rm -f src/$(DEPDIR)/nm_applet-applet-device-bt.Po
-rm -f src/$(DEPDIR)/nm_applet-applet-device-ethernet.Po
-rm -f src/$(DEPDIR)/nm_applet-applet-device-wifi.Po
-rm -f src/$(DEPDIR)/nm_applet-applet-dialogs.Po
-rm -f src/$(DEPDIR)/nm_applet-applet-resources.Po
-rm -f src/$(DEPDIR)/nm_applet-applet-vpn-request.Po
-rm -f src/$(DEPDIR)/nm_applet-applet.Po
-rm -f src/$(DEPDIR)/nm_applet-ethernet-dialog.Po
-rm -f src/$(DEPDIR)/nm_applet-main.Po
-rm -f src/$(DEPDIR)/nm_applet-mb-menu-item.Po
-rm -f src/$(DEPDIR)/nm_applet-mobile-helpers.Po
-rm -f src/$(DEPDIR)/tests_ethernet_dialog-applet-dialogs.Po
-rm -f src/$(DEPDIR)/tests_ethernet_dialog-applet-resources.Po
-rm -f src/$(DEPDIR)/tests_ethernet_dialog-ethernet-dialog.Po
-rm -f src/connection-editor/$(DEPDIR)/nm_connection_editor-ce-page.Po
-rm -f src/connection-editor/$(DEPDIR)/nm_connection_editor-ce-polkit-button.Po
-rm -f src/connection-editor/$(DEPDIR)/nm_connection_editor-ce-polkit.Po
-rm -f src/connection-editor/$(DEPDIR)/nm_connection_editor-ce-resources.Po
-rm -f src/connection-editor/$(DEPDIR)/nm_connection_editor-ce-utils.Po
-rm -f src/connection-editor/$(DEPDIR)/nm_connection_editor-connection-helpers.Po
-rm -f src/connection-editor/$(DEPDIR)/nm_connection_editor-ip4-routes-dialog.Po
-rm -f src/connection-editor/$(DEPDIR)/nm_connection_editor-ip6-routes-dialog.Po
-rm -f src/connection-editor/$(DEPDIR)/nm_connection_editor-main.Po
-rm -f src/connection-editor/$(DEPDIR)/nm_connection_editor-nm-connection-editor.Po
-rm -f src/connection-editor/$(DEPDIR)/nm_connection_editor-nm-connection-list.Po
-rm -f src/connection-editor/$(DEPDIR)/nm_connection_editor-page-8021x-security.Po
-rm -f src/connection-editor/$(DEPDIR)/nm_connection_editor-page-bluetooth.Po
-rm -f src/connection-editor/$(DEPDIR)/nm_connection_editor-page-bond.Po
-rm -f src/connection-editor/$(DEPDIR)/nm_connection_editor-page-bridge-port.Po
-rm -f src/connection-editor/$(DEPDIR)/nm_connection_editor-page-bridge.Po
-rm -f src/connection-editor/$(DEPDIR)/nm_connection_editor-page-controller.Po
-rm -f src/connection-editor/$(DEPDIR)/nm_connection_editor-page-dcb.Po
-rm -f src/connection-editor/$(DEPDIR)/nm_connection_editor-page-dsl.Po
-rm -f src/connection-editor/$(DEPDIR)/nm_connection_editor-page-ethernet.Po
-rm -f src/connection-editor/$(DEPDIR)/nm_connection_editor-page-general.Po
-rm -f src/connection-editor/$(DEPDIR)/nm_connection_editor-page-infiniband.Po
-rm -f src/connection-editor/$(DEPDIR)/nm_connection_editor-page-ip-tunnel.Po
-rm -f src/connection-editor/$(DEPDIR)/nm_connection_editor-page-ip4.Po
-rm -f src/connection-editor/$(DEPDIR)/nm_connection_editor-page-ip6.Po
-rm -f src/connection-editor/$(DEPDIR)/nm_connection_editor-page-macsec.Po
-rm -f src/connection-editor/$(DEPDIR)/nm_connection_editor-page-mobile.Po
-rm -f src/connection-editor/$(DEPDIR)/nm_connection_editor-page-ppp.Po
-rm -f src/connection-editor/$(DEPDIR)/nm_connection_editor-page-proxy.Po
-rm -f src/connection-editor/$(DEPDIR)/nm_connection_editor-page-team-port.Po
-rm -f src/connection-editor/$(DEPDIR)/nm_connection_editor-page-team.Po
-rm -f src/connection-editor/$(DEPDIR)/nm_connection_editor-page-vlan.Po
-rm -f src/connection-editor/$(DEPDIR)/nm_connection_editor-page-vpn.Po
-rm -f src/connection-editor/$(DEPDIR)/nm_connection_editor-page-wifi-security.Po
-rm -f src/connection-editor/$(DEPDIR)/nm_connection_editor-page-wifi.Po
-rm -f src/connection-editor/$(DEPDIR)/nm_connection_editor-page-wireguard.Po
-rm -f src/connection-editor/$(DEPDIR)/nm_connection_editor-ppp-auth-methods-dialog.Po
-rm -f src/connection-editor/$(DEPDIR)/nm_connection_editor-vpn-helpers.Po
-rm -f src/tests/$(DEPDIR)/ethernet_dialog-ethernet-dialog.Po
-rm -f src/utils/$(DEPDIR)/libutils_libnm_la-utils.Plo
-rm -f src/utils/tests/$(DEPDIR)/test_utils-test-utils.Po
-rm -f src/wireless-security/$(DEPDIR)/libwireless_security_libnm_la-eap-method.Plo
-rm -f Makefile
maintainer-clean-am: distclean-am maintainer-clean-generic
mostlyclean: mostlyclean-recursive
mostlyclean-am: mostlyclean-compile mostlyclean-generic \
mostlyclean-libtool
pdf: pdf-recursive
pdf-am:
ps: ps-recursive
ps-am:
uninstall-am: uninstall-appdataDATA uninstall-applicationsDATA \
uninstall-autostartDATA uninstall-binPROGRAMS \
uninstall-convertDATA uninstall-desktopDATA \
uninstall-icon16DATA uninstall-icon22DATA uninstall-icon32DATA \
uninstall-icon48DATA uninstall-iconscalableDATA \
uninstall-libLTLIBRARIES uninstall-man uninstall-pkgconfigDATA
uninstall-man: uninstall-man1
.MAKE: $(am__recursive_targets) all check check-am install install-am \
install-exec install-strip
.PHONY: $(am__recursive_targets) CTAGS GTAGS TAGS all all-am \
am--depfiles am--refresh check check-TESTS check-am \
check-local clean clean-binPROGRAMS clean-checkPROGRAMS \
clean-cscope clean-generic clean-libLTLIBRARIES clean-libtool \
clean-noinstLTLIBRARIES clean-noinstPROGRAMS cscope \
cscopelist-am ctags ctags-am dist dist-all dist-bzip2 \
dist-gzip dist-lzip dist-shar dist-tarZ dist-xz dist-zip \
dist-zstd distcheck distclean distclean-compile \
distclean-generic distclean-hdr distclean-libtool \
distclean-tags distcleancheck distdir distuninstallcheck dvi \
dvi-am html html-am info info-am install install-am \
install-appdataDATA install-applicationsDATA \
install-autostartDATA install-binPROGRAMS install-convertDATA \
install-data install-data-am install-desktopDATA install-dvi \
install-dvi-am install-exec install-exec-am install-html \
install-html-am install-icon16DATA install-icon22DATA \
install-icon32DATA install-icon48DATA install-iconscalableDATA \
install-info install-info-am install-libLTLIBRARIES \
install-man install-man1 install-pdf install-pdf-am \
install-pkgconfigDATA install-ps install-ps-am install-strip \
installcheck installcheck-am installdirs installdirs-am \
maintainer-clean maintainer-clean-generic mostlyclean \
mostlyclean-compile mostlyclean-generic mostlyclean-libtool \
pdf pdf-am ps ps-am recheck tags tags-am uninstall \
uninstall-am uninstall-appdataDATA uninstall-applicationsDATA \
uninstall-autostartDATA uninstall-binPROGRAMS \
uninstall-convertDATA uninstall-desktopDATA \
uninstall-icon16DATA uninstall-icon22DATA uninstall-icon32DATA \
uninstall-icon48DATA uninstall-iconscalableDATA \
uninstall-libLTLIBRARIES uninstall-man uninstall-man1 \
uninstall-pkgconfigDATA
.PRECIOUS: Makefile
include $(GLIB_MAKEFILE)
###############################################################################
src/connection-editor/ce-resources.h: src/connection-editor/ce.gresource.xml
$(AM_V_GEN) $(GLIB_COMPILE_RESOURCES) $< --target=$@ --sourcedir=$(srcdir)/src/connection-editor --generate-header --internal
src/connection-editor/ce-resources.c: src/connection-editor/ce.gresource.xml $(shell $(GLIB_COMPILE_RESOURCES) --sourcedir=$(srcdir)/src/connection-editor --generate-dependencies $(srcdir)/src/connection-editor/ce.gresource.xml)
$(AM_V_GEN) $(GLIB_COMPILE_RESOURCES) $< --target=$@ --sourcedir=$(srcdir)/src/connection-editor --generate-source --internal
$(src_connection_editor_nm_connection_editor_OBJECTS): $(connection_editor_h_gen)
###############################################################################
src/applet-resources.h: src/applet.gresource.xml
$(AM_V_GEN) $(GLIB_COMPILE_RESOURCES) $< --target=$@ --sourcedir=$(srcdir)/src --generate-header --internal
src/applet-resources.c: src/applet.gresource.xml $(shell $(GLIB_COMPILE_RESOURCES) --sourcedir=$(srcdir)/src --generate-dependencies $(srcdir)/src/applet.gresource.xml)
$(AM_V_GEN) $(GLIB_COMPILE_RESOURCES) $< --target=$@ --sourcedir=$(srcdir)/src --generate-source --internal
$(src_nm_applet_OBJECTS): $(nm_applet_h_gen)
check-local: $(check_local)
nm-applet.desktop: nm-applet.desktop.in
$(AM_V_GEN)$(MSGFMT) --desktop --template $< -d $(top_srcdir)/po -o $@
nm-connection-editor.desktop: nm-connection-editor.desktop.in
$(AM_V_GEN)$(MSGFMT) --desktop --template $< -d $(top_srcdir)/po -o $@
@GSETTINGS_RULES@
nm-connection-editor.appdata.xml: nm-connection-editor.appdata.xml.in
$(AM_V_GEN)$(MSGFMT) --xml --template $< -d $(top_srcdir)/po -o $@
# 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:
|