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 3772 3773 3774 3775 3776 3777 3778 3779 3780 3781 3782 3783 3784 3785 3786 3787 3788 3789 3790 3791 3792 3793 3794 3795 3796 3797 3798 3799 3800 3801 3802 3803 3804 3805 3806 3807 3808 3809 3810 3811 3812 3813 3814 3815 3816 3817 3818 3819 3820 3821 3822 3823 3824 3825 3826 3827 3828 3829 3830 3831 3832 3833 3834 3835 3836 3837 3838 3839 3840 3841 3842 3843 3844 3845 3846 3847 3848 3849 3850 3851 3852 3853 3854 3855 3856 3857 3858 3859 3860 3861 3862 3863 3864 3865 3866 3867 3868 3869 3870 3871 3872 3873 3874 3875 3876 3877 3878 3879 3880 3881 3882 3883 3884 3885 3886 3887 3888 3889 3890 3891 3892 3893 3894 3895 3896 3897 3898 3899 3900 3901 3902 3903 3904 3905 3906 3907 3908 3909 3910 3911 3912 3913 3914 3915 3916 3917 3918 3919 3920 3921 3922 3923 3924 3925 3926 3927 3928 3929 3930 3931 3932 3933 3934 3935 3936 3937 3938 3939 3940 3941 3942 3943 3944 3945 3946 3947 3948 3949 3950 3951 3952 3953 3954 3955 3956 3957 3958 3959 3960 3961 3962 3963 3964 3965 3966 3967 3968 3969 3970 3971 3972 3973 3974 3975 3976 3977 3978 3979 3980 3981 3982 3983 3984 3985 3986 3987 3988 3989 3990 3991 3992 3993 3994 3995 3996 3997 3998 3999 4000 4001 4002 4003 4004 4005 4006 4007 4008 4009 4010 4011 4012 4013 4014 4015 4016 4017 4018 4019 4020 4021 4022 4023 4024 4025 4026 4027 4028 4029 4030 4031 4032 4033 4034 4035 4036 4037 4038 4039 4040 4041 4042 4043 4044 4045 4046 4047 4048 4049 4050 4051 4052 4053 4054 4055 4056 4057 4058 4059 4060 4061 4062 4063 4064 4065 4066 4067 4068 4069 4070 4071 4072 4073 4074 4075 4076 4077 4078 4079 4080 4081 4082 4083
|
# Makefile.in generated by automake 1.14.1 from Makefile.am.
# @configure_input@
# Copyright (C) 1994-2013 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 = test -n '$(MAKEFILE_LIST)' && test -n '$(MAKELEVEL)'
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@
noinst_PROGRAMS = evolution-source-viewer$(EXEEXT) \
test-calendar$(EXEEXT) test-category-completion$(EXEEXT) \
test-contact-store$(EXEEXT) test-dateedit$(EXEEXT) \
test-mail-signatures$(EXEEXT) test-name-selector$(EXEEXT) \
test-preferences-window$(EXEEXT) \
test-proxy-preferences$(EXEEXT) test-source-combo-box$(EXEEXT) \
test-source-config$(EXEEXT) test-source-selector$(EXEEXT) \
test-tree-view-frame$(EXEEXT) $(am__EXEEXT_1)
subdir = e-util
DIST_COMMON = $(srcdir)/Makefile.in $(srcdir)/Makefile.am \
$(top_srcdir)/depcomp $(evolution_util_include_HEADERS)
ACLOCAL_M4 = $(top_srcdir)/aclocal.m4
am__aclocal_m4_deps = $(top_srcdir)/m4/as-ac-expand.m4 \
$(top_srcdir)/m4/as-compiler-flag.m4 \
$(top_srcdir)/m4/evo_check_langinfo.m4 \
$(top_srcdir)/m4/evo_ldap_check.m4 \
$(top_srcdir)/m4/evo_purify_support.m4 \
$(top_srcdir)/m4/evo_sunldap_check.m4 \
$(top_srcdir)/m4/gtk-doc.m4 $(top_srcdir)/m4/intltool.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)/configure.ac
am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \
$(ACLOCAL_M4)
mkinstalldirs = $(install_sh) -d
CONFIG_HEADER = $(top_builddir)/config.h
CONFIG_CLEAN_FILES =
CONFIG_CLEAN_VPATH_FILES =
am__vpath_adj_setup = srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`;
am__vpath_adj = case $$p in \
$(srcdir)/*) f=`echo "$$p" | sed "s|^$$srcdirstrip/||"`;; \
*) f=$$p;; \
esac;
am__strip_dir = f=`echo $$p | sed -e 's|^.*/||'`;
am__install_max = 40
am__nobase_strip_setup = \
srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*|]/\\\\&/g'`
am__nobase_strip = \
for p in $$list; do echo "$$p"; done | sed -e "s|$$srcdirstrip/||"
am__nobase_list = $(am__nobase_strip_setup); \
for p in $$list; do echo "$$p $$p"; done | \
sed "s| $$srcdirstrip/| |;"' / .*\//!s/ .*/ ./; s,\( .*\)/[^/]*$$,\1,' | \
$(AWK) 'BEGIN { files["."] = "" } { files[$$2] = files[$$2] " " $$1; \
if (++n[$$2] == $(am__install_max)) \
{ print $$2, files[$$2]; n[$$2] = 0; files[$$2] = "" } } \
END { for (dir in files) print dir, files[dir] }'
am__base_list = \
sed '$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;s/\n/ /g' | \
sed '$$!N;$$!N;$$!N;$$!N;s/\n/ /g'
am__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; }; \
}
am__installdirs = "$(DESTDIR)$(privsolibdir)" "$(DESTDIR)$(errordir)" \
"$(DESTDIR)$(uidir)" "$(DESTDIR)$(evolution_util_includedir)"
LTLIBRARIES = $(privsolib_LTLIBRARIES)
am__DEPENDENCIES_1 =
libevolution_util_la_DEPENDENCIES = \
$(top_builddir)/libgnomecanvas/libgnomecanvas.la \
$(am__DEPENDENCIES_1) $(am__DEPENDENCIES_1) \
$(am__DEPENDENCIES_1) $(am__DEPENDENCIES_1) \
$(am__DEPENDENCIES_1) $(am__DEPENDENCIES_1) \
$(am__DEPENDENCIES_1) $(am__DEPENDENCIES_1)
am__libevolution_util_la_SOURCES_DIST = e-util.h e-action-combo-box.h \
e-activity-bar.h e-activity-proxy.h e-activity.h \
e-alarm-selector.h e-alert-bar.h e-alert-dialog.h \
e-alert-sink.h e-alert.h e-attachment-bar.h \
e-attachment-button.h e-attachment-dialog.h \
e-attachment-handler-image.h e-attachment-handler.h \
e-attachment-icon-view.h e-attachment-paned.h \
e-attachment-store.h e-attachment-tree-view.h \
e-attachment-view.h e-attachment.h e-auth-combo-box.h \
e-autocomplete-selector.h e-bit-array.h e-book-source-config.h \
e-buffer-tagger.h e-cal-source-config.h e-calendar-item.h \
e-calendar.h e-canvas-background.h e-canvas-utils.h \
e-canvas-vbox.h e-canvas.h e-categories-config.h \
e-categories-dialog.h e-categories-editor.h \
e-categories-selector.h e-category-completion.h \
e-category-editor.h e-cell-checkbox.h e-cell-combo.h \
e-cell-date-edit.h e-cell-date.h e-cell-hbox.h e-cell-number.h \
e-cell-percent.h e-cell-pixbuf.h e-cell-popup.h \
e-cell-renderer-color.h e-cell-size.h e-cell-text.h \
e-cell-toggle.h e-cell-tree.h e-cell-vbox.h e-cell.h \
e-charset-combo-box.h e-charset.h e-client-cache.h \
e-client-combo-box.h e-client-selector.h e-config.h \
e-contact-store.h e-data-capture.h e-dateedit.h \
e-datetime-format.h e-destination-store.h e-dialog-utils.h \
e-dialog-widgets.h e-event.h e-file-request.h e-file-utils.h \
e-filter-code.h e-filter-color.h e-filter-datespec.h \
e-filter-element.h e-filter-file.h e-filter-input.h \
e-filter-int.h e-filter-option.h e-filter-part.h \
e-filter-rule.h e-focus-tracker.h e-html-utils.h \
e-icon-factory.h e-image-chooser.h e-import-assistant.h \
e-import.h e-interval-chooser.h e-mail-identity-combo-box.h \
e-mail-signature-combo-box.h e-mail-signature-editor.h \
e-mail-signature-manager.h e-mail-signature-preview.h \
e-mail-signature-script-dialog.h e-mail-signature-tree-view.h \
e-map.h e-marshal.h e-menu-tool-action.h e-menu-tool-button.h \
e-misc-utils.h e-mktemp.h e-name-selector-dialog.h \
e-name-selector-entry.h e-name-selector-list.h \
e-name-selector-model.h e-name-selector.h e-online-button.h \
e-paned.h e-passwords.h e-photo-cache.h e-photo-source.h \
e-picture-gallery.h e-plugin-ui.h e-plugin.h e-poolv.h \
e-popup-action.h e-popup-menu.h e-port-entry.h \
e-preferences-window.h e-preview-pane.h e-print.h \
e-printable.h e-proxy-combo-box.h e-proxy-editor.h \
e-proxy-link-selector.h e-proxy-preferences.h \
e-proxy-selector.h e-reflow-model.h e-reflow.h \
e-rule-context.h e-rule-editor.h e-search-bar.h e-selectable.h \
e-selection-model-array.h e-selection-model-simple.h \
e-selection-model.h e-selection.h e-send-options.h \
e-sorter-array.h e-sorter.h e-source-combo-box.h \
e-source-config-backend.h e-source-config-dialog.h \
e-source-config.h e-source-selector-dialog.h \
e-source-selector.h e-source-util.h e-spell-entry.h \
e-spell-text-view.h e-spinner.h e-stock-request.h \
e-table-click-to-add.h e-table-col-dnd.h e-table-col.h \
e-table-column-selector.h e-table-column-specification.h \
e-table-config.h e-table-defines.h e-table-extras.h \
e-table-field-chooser-dialog.h e-table-field-chooser-item.h \
e-table-field-chooser.h e-table-group-container.h \
e-table-group-leaf.h e-table-group.h e-table-header-item.h \
e-table-header-utils.h e-table-header.h e-table-item.h \
e-table-model.h e-table-one.h e-table-search.h \
e-table-selection-model.h e-table-sort-info.h \
e-table-sorted-variable.h e-table-sorted.h e-table-sorter.h \
e-table-sorting-utils.h e-table-specification.h \
e-table-state.h e-table-subset-variable.h e-table-subset.h \
e-table-utils.h e-table.h e-text-event-processor-emacs-like.h \
e-text-event-processor-types.h e-text-event-processor.h \
e-text-model-repos.h e-text-model.h e-text.h \
e-timezone-dialog.h e-tree-model-generator.h e-tree-model.h \
e-tree-selection-model.h e-tree-table-adapter.h \
e-tree-view-frame.h e-tree.h e-unicode.h e-url-entry.h \
e-util-enums.h e-util-enumtypes.h e-web-view-gtkhtml.h \
e-web-view-preview.h e-web-view.h e-widget-undo.h \
e-xml-utils.h ea-calendar-cell.h ea-calendar-item.h \
ea-cell-table.h ea-factory.h ea-widgets.h \
gal-a11y-e-cell-popup.h gal-a11y-e-cell-registry.h \
gal-a11y-e-cell-toggle.h gal-a11y-e-cell-tree.h \
gal-a11y-e-cell-vbox.h gal-a11y-e-cell.h \
gal-a11y-e-table-click-to-add-factory.h \
gal-a11y-e-table-click-to-add.h \
gal-a11y-e-table-column-header.h gal-a11y-e-table-factory.h \
gal-a11y-e-table-item-factory.h gal-a11y-e-table-item.h \
gal-a11y-e-table.h gal-a11y-e-text-factory.h gal-a11y-e-text.h \
gal-a11y-e-tree-factory.h gal-a11y-e-tree.h gal-a11y-factory.h \
gal-a11y-util.h gal-view-collection.h gal-view-etable.h \
gal-view-instance-save-as-dialog.h gal-view-instance.h \
gal-view.h e-action-combo-box.c e-activity-bar.c \
e-activity-proxy.c e-activity.c e-alarm-selector.c \
e-alert-bar.c e-alert-dialog.c e-alert-sink.c e-alert.c \
e-attachment-bar.c e-attachment-button.c e-attachment-dialog.c \
e-attachment-handler-image.c e-attachment-handler.c \
e-attachment-icon-view.c e-attachment-paned.c \
e-attachment-store.c e-attachment-tree-view.c \
e-attachment-view.c e-attachment.c e-auth-combo-box.c \
e-autocomplete-selector.c e-bit-array.c e-book-source-config.c \
e-buffer-tagger.c e-cal-source-config.c e-calendar-item.c \
e-calendar.c e-canvas-background.c e-canvas-utils.c \
e-canvas-vbox.c e-canvas.c e-categories-config.c \
e-categories-dialog.c e-categories-editor.c \
e-categories-selector.c e-category-completion.c \
e-category-editor.c e-cell-checkbox.c e-cell-combo.c \
e-cell-date-edit.c e-cell-date.c e-cell-hbox.c e-cell-number.c \
e-cell-percent.c e-cell-pixbuf.c e-cell-popup.c \
e-cell-renderer-color.c e-cell-size.c e-cell-text.c \
e-cell-toggle.c e-cell-tree.c e-cell-vbox.c e-cell.c \
e-charset-combo-box.c e-charset.c e-client-cache.c \
e-client-combo-box.c e-client-selector.c e-config.c \
e-contact-store.c e-data-capture.c e-dateedit.c \
e-datetime-format.c e-destination-store.c e-dialog-utils.c \
e-dialog-widgets.c e-event.c e-file-request.c e-file-utils.c \
e-filter-code.c e-filter-color.c e-filter-datespec.c \
e-filter-element.c e-filter-file.c e-filter-input.c \
e-filter-int.c e-filter-option.c e-filter-part.c \
e-filter-rule.c e-focus-tracker.c e-html-utils.c \
e-icon-factory.c e-image-chooser.c e-import-assistant.c \
e-import.c e-interval-chooser.c e-mail-identity-combo-box.c \
e-mail-signature-combo-box.c e-mail-signature-editor.c \
e-mail-signature-manager.c e-mail-signature-preview.c \
e-mail-signature-script-dialog.c e-mail-signature-tree-view.c \
e-map.c e-marshal.c e-menu-tool-action.c e-menu-tool-button.c \
e-misc-utils.c e-mktemp.c e-name-selector-dialog.c \
e-name-selector-entry.c e-name-selector-list.c \
e-name-selector-model.c e-name-selector.c e-online-button.c \
e-paned.c e-passwords.c e-photo-cache.c e-photo-source.c \
e-picture-gallery.c e-plugin-ui.c e-plugin.c e-poolv.c \
e-popup-action.c e-popup-menu.c e-port-entry.c \
e-preferences-window.c e-preview-pane.c e-print.c \
e-printable.c e-proxy-combo-box.c e-proxy-editor.c \
e-proxy-link-selector.c e-proxy-preferences.c \
e-proxy-selector.c e-reflow-model.c e-reflow.c \
e-rule-context.c e-rule-editor.c e-search-bar.c e-selectable.c \
e-selection-model-array.c e-selection-model-simple.c \
e-selection-model.c e-selection.c e-send-options.c \
e-sorter-array.c e-sorter.c e-source-combo-box.c \
e-source-config-backend.c e-source-config-dialog.c \
e-source-config.c e-source-selector-dialog.c \
e-source-selector.c e-source-util.c e-spell-entry.c \
e-spell-text-view.c e-spinner.c e-stock-request.c \
e-table-click-to-add.c e-table-col.c e-table-column-selector.c \
e-table-column-specification.c e-table-config.c \
e-table-extras.c e-table-field-chooser-dialog.c \
e-table-field-chooser-item.c e-table-field-chooser.c \
e-table-group-container.c e-table-group-leaf.c e-table-group.c \
e-table-header-item.c e-table-header-utils.c e-table-header.c \
e-table-item.c e-table-model.c e-table-one.c e-table-search.c \
e-table-selection-model.c e-table-sort-info.c \
e-table-sorted-variable.c e-table-sorted.c e-table-sorter.c \
e-table-sorting-utils.c e-table-specification.c \
e-table-state.c e-table-subset-variable.c e-table-subset.c \
e-table-utils.c e-table.c e-text-event-processor-emacs-like.c \
e-text-event-processor.c e-text-model-repos.c e-text-model.c \
e-text.c e-timezone-dialog.c e-tree-model-generator.c \
e-tree-model.c e-tree-selection-model.c e-tree-table-adapter.c \
e-tree-view-frame.c e-tree.c e-unicode.c e-url-entry.c \
e-util-enumtypes.c e-util-private.h e-web-view-gtkhtml.c \
e-web-view-preview.c e-web-view.c e-widget-undo.c \
e-xml-utils.c ea-calendar-cell.c ea-calendar-item.c \
ea-cell-table.c ea-widgets.c gal-a11y-e-cell-popup.c \
gal-a11y-e-cell-registry.c gal-a11y-e-cell-toggle.c \
gal-a11y-e-cell-tree.c gal-a11y-e-cell-vbox.c \
gal-a11y-e-cell.c gal-a11y-e-table-click-to-add-factory.c \
gal-a11y-e-table-click-to-add.c \
gal-a11y-e-table-column-header.c gal-a11y-e-table-factory.c \
gal-a11y-e-table-item-factory.c gal-a11y-e-table-item.c \
gal-a11y-e-table.c gal-a11y-e-text-factory.c gal-a11y-e-text.c \
gal-a11y-e-tree-factory.c gal-a11y-e-tree.c gal-a11y-util.c \
gal-view-collection.c gal-view-etable.c \
gal-view-instance-save-as-dialog.c gal-view-instance.c \
gal-view.c e-win32-reloc.c e-win32-defaults.c \
e-win32-defaults.h
am__objects_1 =
am__objects_2 = $(am__objects_1)
@OS_WIN32_TRUE@am__objects_3 = libevolution_util_la-e-win32-reloc.lo \
@OS_WIN32_TRUE@ libevolution_util_la-e-win32-defaults.lo \
@OS_WIN32_TRUE@ $(am__objects_1)
am_libevolution_util_la_OBJECTS = $(am__objects_2) \
libevolution_util_la-e-action-combo-box.lo \
libevolution_util_la-e-activity-bar.lo \
libevolution_util_la-e-activity-proxy.lo \
libevolution_util_la-e-activity.lo \
libevolution_util_la-e-alarm-selector.lo \
libevolution_util_la-e-alert-bar.lo \
libevolution_util_la-e-alert-dialog.lo \
libevolution_util_la-e-alert-sink.lo \
libevolution_util_la-e-alert.lo \
libevolution_util_la-e-attachment-bar.lo \
libevolution_util_la-e-attachment-button.lo \
libevolution_util_la-e-attachment-dialog.lo \
libevolution_util_la-e-attachment-handler-image.lo \
libevolution_util_la-e-attachment-handler.lo \
libevolution_util_la-e-attachment-icon-view.lo \
libevolution_util_la-e-attachment-paned.lo \
libevolution_util_la-e-attachment-store.lo \
libevolution_util_la-e-attachment-tree-view.lo \
libevolution_util_la-e-attachment-view.lo \
libevolution_util_la-e-attachment.lo \
libevolution_util_la-e-auth-combo-box.lo \
libevolution_util_la-e-autocomplete-selector.lo \
libevolution_util_la-e-bit-array.lo \
libevolution_util_la-e-book-source-config.lo \
libevolution_util_la-e-buffer-tagger.lo \
libevolution_util_la-e-cal-source-config.lo \
libevolution_util_la-e-calendar-item.lo \
libevolution_util_la-e-calendar.lo \
libevolution_util_la-e-canvas-background.lo \
libevolution_util_la-e-canvas-utils.lo \
libevolution_util_la-e-canvas-vbox.lo \
libevolution_util_la-e-canvas.lo \
libevolution_util_la-e-categories-config.lo \
libevolution_util_la-e-categories-dialog.lo \
libevolution_util_la-e-categories-editor.lo \
libevolution_util_la-e-categories-selector.lo \
libevolution_util_la-e-category-completion.lo \
libevolution_util_la-e-category-editor.lo \
libevolution_util_la-e-cell-checkbox.lo \
libevolution_util_la-e-cell-combo.lo \
libevolution_util_la-e-cell-date-edit.lo \
libevolution_util_la-e-cell-date.lo \
libevolution_util_la-e-cell-hbox.lo \
libevolution_util_la-e-cell-number.lo \
libevolution_util_la-e-cell-percent.lo \
libevolution_util_la-e-cell-pixbuf.lo \
libevolution_util_la-e-cell-popup.lo \
libevolution_util_la-e-cell-renderer-color.lo \
libevolution_util_la-e-cell-size.lo \
libevolution_util_la-e-cell-text.lo \
libevolution_util_la-e-cell-toggle.lo \
libevolution_util_la-e-cell-tree.lo \
libevolution_util_la-e-cell-vbox.lo \
libevolution_util_la-e-cell.lo \
libevolution_util_la-e-charset-combo-box.lo \
libevolution_util_la-e-charset.lo \
libevolution_util_la-e-client-cache.lo \
libevolution_util_la-e-client-combo-box.lo \
libevolution_util_la-e-client-selector.lo \
libevolution_util_la-e-config.lo \
libevolution_util_la-e-contact-store.lo \
libevolution_util_la-e-data-capture.lo \
libevolution_util_la-e-dateedit.lo \
libevolution_util_la-e-datetime-format.lo \
libevolution_util_la-e-destination-store.lo \
libevolution_util_la-e-dialog-utils.lo \
libevolution_util_la-e-dialog-widgets.lo \
libevolution_util_la-e-event.lo \
libevolution_util_la-e-file-request.lo \
libevolution_util_la-e-file-utils.lo \
libevolution_util_la-e-filter-code.lo \
libevolution_util_la-e-filter-color.lo \
libevolution_util_la-e-filter-datespec.lo \
libevolution_util_la-e-filter-element.lo \
libevolution_util_la-e-filter-file.lo \
libevolution_util_la-e-filter-input.lo \
libevolution_util_la-e-filter-int.lo \
libevolution_util_la-e-filter-option.lo \
libevolution_util_la-e-filter-part.lo \
libevolution_util_la-e-filter-rule.lo \
libevolution_util_la-e-focus-tracker.lo \
libevolution_util_la-e-html-utils.lo \
libevolution_util_la-e-icon-factory.lo \
libevolution_util_la-e-image-chooser.lo \
libevolution_util_la-e-import-assistant.lo \
libevolution_util_la-e-import.lo \
libevolution_util_la-e-interval-chooser.lo \
libevolution_util_la-e-mail-identity-combo-box.lo \
libevolution_util_la-e-mail-signature-combo-box.lo \
libevolution_util_la-e-mail-signature-editor.lo \
libevolution_util_la-e-mail-signature-manager.lo \
libevolution_util_la-e-mail-signature-preview.lo \
libevolution_util_la-e-mail-signature-script-dialog.lo \
libevolution_util_la-e-mail-signature-tree-view.lo \
libevolution_util_la-e-map.lo \
libevolution_util_la-e-marshal.lo \
libevolution_util_la-e-menu-tool-action.lo \
libevolution_util_la-e-menu-tool-button.lo \
libevolution_util_la-e-misc-utils.lo \
libevolution_util_la-e-mktemp.lo \
libevolution_util_la-e-name-selector-dialog.lo \
libevolution_util_la-e-name-selector-entry.lo \
libevolution_util_la-e-name-selector-list.lo \
libevolution_util_la-e-name-selector-model.lo \
libevolution_util_la-e-name-selector.lo \
libevolution_util_la-e-online-button.lo \
libevolution_util_la-e-paned.lo \
libevolution_util_la-e-passwords.lo \
libevolution_util_la-e-photo-cache.lo \
libevolution_util_la-e-photo-source.lo \
libevolution_util_la-e-picture-gallery.lo \
libevolution_util_la-e-plugin-ui.lo \
libevolution_util_la-e-plugin.lo \
libevolution_util_la-e-poolv.lo \
libevolution_util_la-e-popup-action.lo \
libevolution_util_la-e-popup-menu.lo \
libevolution_util_la-e-port-entry.lo \
libevolution_util_la-e-preferences-window.lo \
libevolution_util_la-e-preview-pane.lo \
libevolution_util_la-e-print.lo \
libevolution_util_la-e-printable.lo \
libevolution_util_la-e-proxy-combo-box.lo \
libevolution_util_la-e-proxy-editor.lo \
libevolution_util_la-e-proxy-link-selector.lo \
libevolution_util_la-e-proxy-preferences.lo \
libevolution_util_la-e-proxy-selector.lo \
libevolution_util_la-e-reflow-model.lo \
libevolution_util_la-e-reflow.lo \
libevolution_util_la-e-rule-context.lo \
libevolution_util_la-e-rule-editor.lo \
libevolution_util_la-e-search-bar.lo \
libevolution_util_la-e-selectable.lo \
libevolution_util_la-e-selection-model-array.lo \
libevolution_util_la-e-selection-model-simple.lo \
libevolution_util_la-e-selection-model.lo \
libevolution_util_la-e-selection.lo \
libevolution_util_la-e-send-options.lo \
libevolution_util_la-e-sorter-array.lo \
libevolution_util_la-e-sorter.lo \
libevolution_util_la-e-source-combo-box.lo \
libevolution_util_la-e-source-config-backend.lo \
libevolution_util_la-e-source-config-dialog.lo \
libevolution_util_la-e-source-config.lo \
libevolution_util_la-e-source-selector-dialog.lo \
libevolution_util_la-e-source-selector.lo \
libevolution_util_la-e-source-util.lo \
libevolution_util_la-e-spell-entry.lo \
libevolution_util_la-e-spell-text-view.lo \
libevolution_util_la-e-spinner.lo \
libevolution_util_la-e-stock-request.lo \
libevolution_util_la-e-table-click-to-add.lo \
libevolution_util_la-e-table-col.lo \
libevolution_util_la-e-table-column-selector.lo \
libevolution_util_la-e-table-column-specification.lo \
libevolution_util_la-e-table-config.lo \
libevolution_util_la-e-table-extras.lo \
libevolution_util_la-e-table-field-chooser-dialog.lo \
libevolution_util_la-e-table-field-chooser-item.lo \
libevolution_util_la-e-table-field-chooser.lo \
libevolution_util_la-e-table-group-container.lo \
libevolution_util_la-e-table-group-leaf.lo \
libevolution_util_la-e-table-group.lo \
libevolution_util_la-e-table-header-item.lo \
libevolution_util_la-e-table-header-utils.lo \
libevolution_util_la-e-table-header.lo \
libevolution_util_la-e-table-item.lo \
libevolution_util_la-e-table-model.lo \
libevolution_util_la-e-table-one.lo \
libevolution_util_la-e-table-search.lo \
libevolution_util_la-e-table-selection-model.lo \
libevolution_util_la-e-table-sort-info.lo \
libevolution_util_la-e-table-sorted-variable.lo \
libevolution_util_la-e-table-sorted.lo \
libevolution_util_la-e-table-sorter.lo \
libevolution_util_la-e-table-sorting-utils.lo \
libevolution_util_la-e-table-specification.lo \
libevolution_util_la-e-table-state.lo \
libevolution_util_la-e-table-subset-variable.lo \
libevolution_util_la-e-table-subset.lo \
libevolution_util_la-e-table-utils.lo \
libevolution_util_la-e-table.lo \
libevolution_util_la-e-text-event-processor-emacs-like.lo \
libevolution_util_la-e-text-event-processor.lo \
libevolution_util_la-e-text-model-repos.lo \
libevolution_util_la-e-text-model.lo \
libevolution_util_la-e-text.lo \
libevolution_util_la-e-timezone-dialog.lo \
libevolution_util_la-e-tree-model-generator.lo \
libevolution_util_la-e-tree-model.lo \
libevolution_util_la-e-tree-selection-model.lo \
libevolution_util_la-e-tree-table-adapter.lo \
libevolution_util_la-e-tree-view-frame.lo \
libevolution_util_la-e-tree.lo \
libevolution_util_la-e-unicode.lo \
libevolution_util_la-e-url-entry.lo \
libevolution_util_la-e-util-enumtypes.lo \
libevolution_util_la-e-web-view-gtkhtml.lo \
libevolution_util_la-e-web-view-preview.lo \
libevolution_util_la-e-web-view.lo \
libevolution_util_la-e-widget-undo.lo \
libevolution_util_la-e-xml-utils.lo \
libevolution_util_la-ea-calendar-cell.lo \
libevolution_util_la-ea-calendar-item.lo \
libevolution_util_la-ea-cell-table.lo \
libevolution_util_la-ea-widgets.lo \
libevolution_util_la-gal-a11y-e-cell-popup.lo \
libevolution_util_la-gal-a11y-e-cell-registry.lo \
libevolution_util_la-gal-a11y-e-cell-toggle.lo \
libevolution_util_la-gal-a11y-e-cell-tree.lo \
libevolution_util_la-gal-a11y-e-cell-vbox.lo \
libevolution_util_la-gal-a11y-e-cell.lo \
libevolution_util_la-gal-a11y-e-table-click-to-add-factory.lo \
libevolution_util_la-gal-a11y-e-table-click-to-add.lo \
libevolution_util_la-gal-a11y-e-table-column-header.lo \
libevolution_util_la-gal-a11y-e-table-factory.lo \
libevolution_util_la-gal-a11y-e-table-item-factory.lo \
libevolution_util_la-gal-a11y-e-table-item.lo \
libevolution_util_la-gal-a11y-e-table.lo \
libevolution_util_la-gal-a11y-e-text-factory.lo \
libevolution_util_la-gal-a11y-e-text.lo \
libevolution_util_la-gal-a11y-e-tree-factory.lo \
libevolution_util_la-gal-a11y-e-tree.lo \
libevolution_util_la-gal-a11y-util.lo \
libevolution_util_la-gal-view-collection.lo \
libevolution_util_la-gal-view-etable.lo \
libevolution_util_la-gal-view-instance-save-as-dialog.lo \
libevolution_util_la-gal-view-instance.lo \
libevolution_util_la-gal-view.lo $(am__objects_3) \
$(am__objects_1)
libevolution_util_la_OBJECTS = $(am_libevolution_util_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 =
libevolution_util_la_LINK = $(LIBTOOL) $(AM_V_lt) --tag=CC \
$(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=link $(CCLD) \
$(AM_CFLAGS) $(CFLAGS) $(libevolution_util_la_LDFLAGS) \
$(LDFLAGS) -o $@
am__EXEEXT_1 =
PROGRAMS = $(noinst_PROGRAMS)
am_evolution_source_viewer_OBJECTS = \
evolution_source_viewer-evolution-source-viewer.$(OBJEXT)
evolution_source_viewer_OBJECTS = \
$(am_evolution_source_viewer_OBJECTS)
am__DEPENDENCIES_2 = $(top_builddir)/libgnomecanvas/libgnomecanvas.la \
$(am__DEPENDENCIES_1) $(am__DEPENDENCIES_1) \
$(am__DEPENDENCIES_1) $(am__DEPENDENCIES_1) \
$(am__DEPENDENCIES_1) $(am__DEPENDENCIES_1) \
$(am__DEPENDENCIES_1) $(am__DEPENDENCIES_1)
am__DEPENDENCIES_3 = libevolution-util.la $(am__DEPENDENCIES_2) \
$(am__DEPENDENCIES_1)
evolution_source_viewer_DEPENDENCIES = $(am__DEPENDENCIES_3)
am_test_calendar_OBJECTS = test_calendar-test-calendar.$(OBJEXT)
test_calendar_OBJECTS = $(am_test_calendar_OBJECTS)
test_calendar_DEPENDENCIES = $(am__DEPENDENCIES_3)
am_test_category_completion_OBJECTS = \
test_category_completion-test-category-completion.$(OBJEXT)
test_category_completion_OBJECTS = \
$(am_test_category_completion_OBJECTS)
test_category_completion_DEPENDENCIES = $(am__DEPENDENCIES_3)
am_test_contact_store_OBJECTS = \
test_contact_store-test-contact-store.$(OBJEXT)
test_contact_store_OBJECTS = $(am_test_contact_store_OBJECTS)
test_contact_store_DEPENDENCIES = $(am__DEPENDENCIES_3)
am_test_dateedit_OBJECTS = test_dateedit-test-dateedit.$(OBJEXT)
test_dateedit_OBJECTS = $(am_test_dateedit_OBJECTS)
test_dateedit_DEPENDENCIES = $(am__DEPENDENCIES_3)
am_test_mail_signatures_OBJECTS = \
test_mail_signatures-test-mail-signatures.$(OBJEXT)
test_mail_signatures_OBJECTS = $(am_test_mail_signatures_OBJECTS)
test_mail_signatures_DEPENDENCIES = $(am__DEPENDENCIES_3)
am_test_name_selector_OBJECTS = \
test_name_selector-test-name-selector.$(OBJEXT)
test_name_selector_OBJECTS = $(am_test_name_selector_OBJECTS)
test_name_selector_DEPENDENCIES = $(am__DEPENDENCIES_3)
am_test_preferences_window_OBJECTS = \
test_preferences_window-test-preferences-window.$(OBJEXT)
test_preferences_window_OBJECTS = \
$(am_test_preferences_window_OBJECTS)
test_preferences_window_DEPENDENCIES = $(am__DEPENDENCIES_3)
am_test_proxy_preferences_OBJECTS = \
test_proxy_preferences-test-proxy-preferences.$(OBJEXT)
test_proxy_preferences_OBJECTS = $(am_test_proxy_preferences_OBJECTS)
test_proxy_preferences_DEPENDENCIES = $(am__DEPENDENCIES_3)
am_test_source_combo_box_OBJECTS = \
test_source_combo_box-test-source-combo-box.$(OBJEXT)
test_source_combo_box_OBJECTS = $(am_test_source_combo_box_OBJECTS)
test_source_combo_box_DEPENDENCIES = $(am__DEPENDENCIES_3)
am_test_source_config_OBJECTS = \
test_source_config-test-source-config.$(OBJEXT)
test_source_config_OBJECTS = $(am_test_source_config_OBJECTS)
test_source_config_DEPENDENCIES = $(am__DEPENDENCIES_3)
am_test_source_selector_OBJECTS = \
test_source_selector-test-source-selector.$(OBJEXT)
test_source_selector_OBJECTS = $(am_test_source_selector_OBJECTS)
test_source_selector_DEPENDENCIES = $(am__DEPENDENCIES_3)
am_test_tree_view_frame_OBJECTS = \
test_tree_view_frame-test-tree-view-frame.$(OBJEXT)
test_tree_view_frame_OBJECTS = $(am_test_tree_view_frame_OBJECTS)
test_tree_view_frame_DEPENDENCIES = $(am__DEPENDENCIES_3)
AM_V_P = $(am__v_P_@AM_V@)
am__v_P_ = $(am__v_P_@AM_DEFAULT_V@)
am__v_P_0 = false
am__v_P_1 = :
AM_V_GEN = $(am__v_GEN_@AM_V@)
am__v_GEN_ = $(am__v_GEN_@AM_DEFAULT_V@)
am__v_GEN_0 = @echo " GEN " $@;
am__v_GEN_1 =
AM_V_at = $(am__v_at_@AM_V@)
am__v_at_ = $(am__v_at_@AM_DEFAULT_V@)
am__v_at_0 = @
am__v_at_1 =
DEFAULT_INCLUDES = -I.@am__isrc@ -I$(top_builddir)
depcomp = $(SHELL) $(top_srcdir)/depcomp
am__depfiles_maybe = depfiles
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 = $(libevolution_util_la_SOURCES) \
$(evolution_source_viewer_SOURCES) $(test_calendar_SOURCES) \
$(test_category_completion_SOURCES) \
$(test_contact_store_SOURCES) $(test_dateedit_SOURCES) \
$(test_mail_signatures_SOURCES) $(test_name_selector_SOURCES) \
$(test_preferences_window_SOURCES) \
$(test_proxy_preferences_SOURCES) \
$(test_source_combo_box_SOURCES) $(test_source_config_SOURCES) \
$(test_source_selector_SOURCES) \
$(test_tree_view_frame_SOURCES)
DIST_SOURCES = $(am__libevolution_util_la_SOURCES_DIST) \
$(evolution_source_viewer_SOURCES) $(test_calendar_SOURCES) \
$(test_category_completion_SOURCES) \
$(test_contact_store_SOURCES) $(test_dateedit_SOURCES) \
$(test_mail_signatures_SOURCES) $(test_name_selector_SOURCES) \
$(test_preferences_window_SOURCES) \
$(test_proxy_preferences_SOURCES) \
$(test_source_combo_box_SOURCES) $(test_source_config_SOURCES) \
$(test_source_selector_SOURCES) \
$(test_tree_view_frame_SOURCES)
am__can_run_installinfo = \
case $$AM_UPDATE_INFO_DIR in \
n|no|NO) false;; \
*) (install-info --version) >/dev/null 2>&1;; \
esac
DATA = $(error_DATA) $(ui_DATA)
HEADERS = $(evolution_util_include_HEADERS)
am__tagged_files = $(HEADERS) $(SOURCES) $(TAGS_FILES) $(LISP)
# Read a list of newline-separated strings from the standard input,
# and print each of them once, without duplicates. Input order is
# *not* preserved.
am__uniquify_input = $(AWK) '\
BEGIN { nonempty = 0; } \
{ items[$$0] = 1; nonempty = 1; } \
END { if (nonempty) { for (i in items) print i; }; } \
'
# Make sure the list of sources is unique. This is necessary because,
# e.g., the same source file might be shared among _SOURCES variables
# for different programs/libraries.
am__define_uniq_tagged_files = \
list='$(am__tagged_files)'; \
unique=`for i in $$list; do \
if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \
done | $(am__uniquify_input)`
ETAGS = etags
CTAGS = ctags
DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST)
A11Y_CFLAGS = @A11Y_CFLAGS@
A11Y_LIBS = @A11Y_LIBS@
ACLOCAL = @ACLOCAL@
ALL_LINGUAS = @ALL_LINGUAS@
AMTAR = @AMTAR@
AM_CPPFLAGS = @AM_CPPFLAGS@
AM_DEFAULT_VERBOSITY = @AM_DEFAULT_VERBOSITY@
AR = @AR@
AS = @AS@
AUTOCONF = @AUTOCONF@
AUTOHEADER = @AUTOHEADER@
AUTOMAKE = @AUTOMAKE@
AWK = @AWK@
BASE_VERSION = @BASE_VERSION@
BOGOFILTER = @BOGOFILTER@
CANBERRA_CFLAGS = @CANBERRA_CFLAGS@
CANBERRA_LIBS = @CANBERRA_LIBS@
CC = @CC@
CCDEPMODE = @CCDEPMODE@
CERT_UI_CFLAGS = @CERT_UI_CFLAGS@
CERT_UI_LIBS = @CERT_UI_LIBS@
CFLAGS = @CFLAGS@
CHAMPLAIN_CFLAGS = @CHAMPLAIN_CFLAGS@
CHAMPLAIN_LIBS = @CHAMPLAIN_LIBS@
CLUTTER_GTK_CFLAGS = @CLUTTER_GTK_CFLAGS@
CLUTTER_GTK_LIBS = @CLUTTER_GTK_LIBS@
CPP = @CPP@
CPPFLAGS = @CPPFLAGS@
CYGPATH_W = @CYGPATH_W@
DATADIRNAME = @DATADIRNAME@
DEFS = @DEFS@
DEPDIR = @DEPDIR@
DLLTOOL = @DLLTOOL@
DSYMUTIL = @DSYMUTIL@
DUMPBIN = @DUMPBIN@
ECHO_C = @ECHO_C@
ECHO_N = @ECHO_N@
ECHO_T = @ECHO_T@
EGREP = @EGREP@
EVOLUTION_DATA_SERVER_CFLAGS = @EVOLUTION_DATA_SERVER_CFLAGS@
EVOLUTION_DATA_SERVER_LIBS = @EVOLUTION_DATA_SERVER_LIBS@
EVOLUTION_DIR = @EVOLUTION_DIR@
EVO_MAJOR_VERSION = @EVO_MAJOR_VERSION@
EVO_MICRO_VERSION = @EVO_MICRO_VERSION@
EVO_MINOR_VERSION = @EVO_MINOR_VERSION@
EXEEXT = @EXEEXT@
FGREP = @FGREP@
GDATA_CFLAGS = @GDATA_CFLAGS@
GDATA_LIBS = @GDATA_LIBS@
GEO_CFLAGS = @GEO_CFLAGS@
GEO_LIBS = @GEO_LIBS@
GETTEXT_PACKAGE = @GETTEXT_PACKAGE@
GLADEUI_CFLAGS = @GLADEUI_CFLAGS@
GLADEUI_LIBS = @GLADEUI_LIBS@
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_MKENUMS = @GLIB_MKENUMS@
GMSGFMT = @GMSGFMT@
GNOME_DESKTOP_CFLAGS = @GNOME_DESKTOP_CFLAGS@
GNOME_DESKTOP_DEPENDENCY = @GNOME_DESKTOP_DEPENDENCY@
GNOME_DESKTOP_LIBS = @GNOME_DESKTOP_LIBS@
GNOME_PLATFORM_CFLAGS = @GNOME_PLATFORM_CFLAGS@
GNOME_PLATFORM_LIBS = @GNOME_PLATFORM_LIBS@
GOBJECT_QUERY = @GOBJECT_QUERY@
GREP = @GREP@
GSETTINGS_DISABLE_SCHEMAS_COMPILE = @GSETTINGS_DISABLE_SCHEMAS_COMPILE@
GTKDOC_CHECK = @GTKDOC_CHECK@
GTKDOC_CHECK_PATH = @GTKDOC_CHECK_PATH@
GTKDOC_DEPS_CFLAGS = @GTKDOC_DEPS_CFLAGS@
GTKDOC_DEPS_LIBS = @GTKDOC_DEPS_LIBS@
GTKDOC_MKPDF = @GTKDOC_MKPDF@
GTKDOC_REBASE = @GTKDOC_REBASE@
GTKHTML_CFLAGS = @GTKHTML_CFLAGS@
GTKHTML_LIBS = @GTKHTML_LIBS@
GTKIMAGEVIEW_CFLAGS = @GTKIMAGEVIEW_CFLAGS@
GTKIMAGEVIEW_LIBS = @GTKIMAGEVIEW_LIBS@
GTKSPELL_CFLAGS = @GTKSPELL_CFLAGS@
GTKSPELL_LIBS = @GTKSPELL_LIBS@
GWEATHER_CFLAGS = @GWEATHER_CFLAGS@
GWEATHER_LIBS = @GWEATHER_LIBS@
HELP_DIR = @HELP_DIR@
HIGHLIGHT = @HIGHLIGHT@
HTML_DIR = @HTML_DIR@
ICONV_LIBS = @ICONV_LIBS@
INSTALL = @INSTALL@
INSTALL_DATA = @INSTALL_DATA@
INSTALL_PROGRAM = @INSTALL_PROGRAM@
INSTALL_SCRIPT = @INSTALL_SCRIPT@
INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@
INTLTOOL_EXTRACT = @INTLTOOL_EXTRACT@
INTLTOOL_MERGE = @INTLTOOL_MERGE@
INTLTOOL_PERL = @INTLTOOL_PERL@
INTLTOOL_UPDATE = @INTLTOOL_UPDATE@
INTLTOOL_V_MERGE = @INTLTOOL_V_MERGE@
INTLTOOL_V_MERGE_OPTIONS = @INTLTOOL_V_MERGE_OPTIONS@
INTLTOOL__v_MERGE_ = @INTLTOOL__v_MERGE_@
INTLTOOL__v_MERGE_0 = @INTLTOOL__v_MERGE_0@
ITSTOOL = @ITSTOOL@
KILL_PROCESS_CMD = @KILL_PROCESS_CMD@
LD = @LD@
LDAP_CFLAGS = @LDAP_CFLAGS@
LDAP_LIBS = @LDAP_LIBS@
LDFLAGS = @LDFLAGS@
LIBNOTIFY_CFLAGS = @LIBNOTIFY_CFLAGS@
LIBNOTIFY_LIBS = @LIBNOTIFY_LIBS@
LIBOBJS = @LIBOBJS@
LIBPST_CFLAGS = @LIBPST_CFLAGS@
LIBPST_LIBS = @LIBPST_LIBS@
LIBS = @LIBS@
LIBSOUP_CFLAGS = @LIBSOUP_CFLAGS@
LIBSOUP_LIBS = @LIBSOUP_LIBS@
LIBTOOL = @LIBTOOL@
LIPO = @LIPO@
LN_S = @LN_S@
LTLIBOBJS = @LTLIBOBJS@
MAINT = @MAINT@
MAKEINFO = @MAKEINFO@
MANIFEST_TOOL = @MANIFEST_TOOL@
MANUAL_NSPR_CFLAGS = @MANUAL_NSPR_CFLAGS@
MANUAL_NSPR_LIBS = @MANUAL_NSPR_LIBS@
MANUAL_NSS_CFLAGS = @MANUAL_NSS_CFLAGS@
MANUAL_NSS_LIBS = @MANUAL_NSS_LIBS@
MATH_LIB = @MATH_LIB@
MKDIR_P = @MKDIR_P@
MOZILLA_NSS_CFLAGS = @MOZILLA_NSS_CFLAGS@
MOZILLA_NSS_LIBS = @MOZILLA_NSS_LIBS@
MSGFMT = @MSGFMT@
MSGMERGE = @MSGMERGE@
NM = @NM@
NMEDIT = @NMEDIT@
NO_UNDEFINED = @NO_UNDEFINED@
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@
PERL = @PERL@
PKG_CONFIG = @PKG_CONFIG@
PKG_CONFIG_LIBDIR = @PKG_CONFIG_LIBDIR@
PKG_CONFIG_PATH = @PKG_CONFIG_PATH@
PRIVLIBEXECDIR = @PRIVLIBEXECDIR@
PURIFY = @PURIFY@
RANLIB = @RANLIB@
SA_LEARN = @SA_LEARN@
SED = @SED@
SET_MAKE = @SET_MAKE@
SHELL = @SHELL@
SOEXT = @SOEXT@
SPAMASSASSIN = @SPAMASSASSIN@
STRIP = @STRIP@
TNEF_CFLAGS = @TNEF_CFLAGS@
USE_NLS = @USE_NLS@
VERSION = @VERSION@
WARNING_FLAGS = @WARNING_FLAGS@
WINDRES = @WINDRES@
XGETTEXT = @XGETTEXT@
XMLLINT = @XMLLINT@
YELP_LC_DIST = @YELP_LC_DIST@
YELP_LC_MEDIA_LINKS = @YELP_LC_MEDIA_LINKS@
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@
dist_plugins_base = @dist_plugins_base@
dist_plugins_standard = @dist_plugins_standard@
docdir = @docdir@
dvidir = @dvidir@
etspecdir = @etspecdir@
evolutionhelpdir = @evolutionhelpdir@
exec_prefix = @exec_prefix@
gsettingsschemadir = @gsettingsschemadir@
host = @host@
host_alias = @host_alias@
host_cpu = @host_cpu@
host_os = @host_os@
host_vendor = @host_vendor@
htmldir = @htmldir@
icondir = @icondir@
imagesdir = @imagesdir@
includedir = @includedir@
infodir = @infodir@
install_sh = @install_sh@
intltool__v_merge_options_ = @intltool__v_merge_options_@
intltool__v_merge_options_0 = @intltool__v_merge_options_0@
libdir = @libdir@
libexecdir = @libexecdir@
localedir = @localedir@
localstatedir = @localstatedir@
mandir = @mandir@
mkdir_p = @mkdir_p@
moduledir = @moduledir@
oldincludedir = @oldincludedir@
pdfdir = @pdfdir@
plugindir = @plugindir@
plugins_enabled = @plugins_enabled@
prefix = @prefix@
privdatadir = @privdatadir@
privincludedir = @privincludedir@
privlibdir = @privlibdir@
privlibexecdir = @privlibexecdir@
privsolibdir = @privsolibdir@
program_transform_name = @program_transform_name@
psdir = @psdir@
sbindir = @sbindir@
sharedstatedir = @sharedstatedir@
soundsdir = @soundsdir@
srcdir = @srcdir@
sysconfdir = @sysconfdir@
target_alias = @target_alias@
top_build_prefix = @top_build_prefix@
top_builddir = @top_builddir@
top_srcdir = @top_srcdir@
uidir = @uidir@
viewsdir = @viewsdir@
NULL =
privsolib_LTLIBRARIES = libevolution-util.la
evolution_util_includedir = $(privincludedir)/e-util
ecpsdir = $(privdatadir)/ecps
ruledir = $(privdatadir)
ENUM_TYPES = e-util-enums.h
ENUM_GENERATED = e-util-enumtypes.h e-util-enumtypes.c
MARSHAL_GENERATED = e-marshal.c e-marshal.h
error_DATA = \
e-system.error \
filter.error \
widgets.error \
$(NULL)
errordir = $(privdatadir)/errors
ui_DATA = \
e-send-options.ui \
e-table-config.ui \
e-timezone-dialog.ui \
filter.ui \
gal-view-instance-save-as-dialog.ui \
$(NULL)
xpm_icons = \
arrow-down.xpm \
arrow-up.xpm \
check-empty.xpm \
check-filled.xpm \
$(NULL)
libevolution_util_la_CPPFLAGS = \
$(AM_CPPFLAGS) \
-I$(top_srcdir) \
-I$(top_builddir) \
-DLIBEUTIL_COMPILATION \
-DEVOLUTION_BINDIR=\""$(bindir)"\" \
-DEVOLUTION_DATADIR=\""$(datadir)"\" \
-DEVOLUTION_ECPSDIR=\""$(ecpsdir)"\" \
-DEVOLUTION_ETSPECDIR=\""$(etspecdir)"\" \
-DEVOLUTION_GALVIEWSDIR=\""$(viewsdir)"\" \
-DEVOLUTION_HELPDIR=\""$(evolutionhelpdir)"\" \
-DEVOLUTION_ICONDIR=\""$(icondir)"\" \
-DEVOLUTION_IMAGESDIR=\""$(imagesdir)"\" \
-DEVOLUTION_LIBDIR=\""$(datadir)"\" \
-DEVOLUTION_LIBEXECDIR=\""$(privlibexecdir)"\" \
-DEVOLUTION_LOCALEDIR=\""$(localedir)"\" \
-DEVOLUTION_MODULEDIR=\""$(moduledir)"\" \
-DEVOLUTION_PLUGINDIR=\""$(plugindir)"\" \
-DEVOLUTION_PREFIX=\""$(prefix)"\" \
-DEVOLUTION_PRIVDATADIR=\""$(privdatadir)"\" \
-DEVOLUTION_SOUNDDIR=\""$(soundsdir)"\" \
-DEVOLUTION_SYSCONFDIR=\""$(sysconfdir)"\" \
-DEVOLUTION_TOOLSDIR=\""$(privlibexecdir)"\" \
-DEVOLUTION_UIDIR=\""$(uidir)"\" \
-DEVOLUTION_RULEDIR=\"$(ruledir)\" \
-DG_LOG_DOMAIN=\"evolution-util\" \
$(EVOLUTION_DATA_SERVER_CFLAGS) \
$(GNOME_PLATFORM_CFLAGS) \
$(GEO_CFLAGS) \
$(GTKHTML_CFLAGS) \
$(GTKSPELL_CFLAGS) \
$(NULL)
evolution_util_include_HEADERS = \
e-util.h \
e-action-combo-box.h \
e-activity-bar.h \
e-activity-proxy.h \
e-activity.h \
e-alarm-selector.h \
e-alert-bar.h \
e-alert-dialog.h \
e-alert-sink.h \
e-alert.h \
e-attachment-bar.h \
e-attachment-button.h \
e-attachment-dialog.h \
e-attachment-handler-image.h \
e-attachment-handler.h \
e-attachment-icon-view.h \
e-attachment-paned.h \
e-attachment-store.h \
e-attachment-tree-view.h \
e-attachment-view.h \
e-attachment.h \
e-auth-combo-box.h \
e-autocomplete-selector.h \
e-bit-array.h \
e-book-source-config.h \
e-buffer-tagger.h \
e-cal-source-config.h \
e-calendar-item.h \
e-calendar.h \
e-canvas-background.h \
e-canvas-utils.h \
e-canvas-vbox.h \
e-canvas.h \
e-categories-config.h \
e-categories-dialog.h \
e-categories-editor.h \
e-categories-selector.h \
e-category-completion.h \
e-category-editor.h \
e-cell-checkbox.h \
e-cell-combo.h \
e-cell-date-edit.h \
e-cell-date.h \
e-cell-hbox.h \
e-cell-number.h \
e-cell-percent.h \
e-cell-pixbuf.h \
e-cell-popup.h \
e-cell-renderer-color.h \
e-cell-size.h \
e-cell-text.h \
e-cell-toggle.h \
e-cell-tree.h \
e-cell-vbox.h \
e-cell.h \
e-charset-combo-box.h \
e-charset.h \
e-client-cache.h \
e-client-combo-box.h \
e-client-selector.h \
e-config.h \
e-contact-store.h \
e-data-capture.h \
e-dateedit.h \
e-datetime-format.h \
e-destination-store.h \
e-dialog-utils.h \
e-dialog-widgets.h \
e-event.h \
e-file-request.h \
e-file-utils.h \
e-filter-code.h \
e-filter-color.h \
e-filter-datespec.h \
e-filter-element.h \
e-filter-file.h \
e-filter-input.h \
e-filter-int.h \
e-filter-option.h \
e-filter-part.h \
e-filter-rule.h \
e-focus-tracker.h \
e-html-utils.h \
e-icon-factory.h \
e-image-chooser.h \
e-import-assistant.h \
e-import.h \
e-interval-chooser.h \
e-mail-identity-combo-box.h \
e-mail-signature-combo-box.h \
e-mail-signature-editor.h \
e-mail-signature-manager.h \
e-mail-signature-preview.h \
e-mail-signature-script-dialog.h \
e-mail-signature-tree-view.h \
e-map.h \
e-marshal.h \
e-menu-tool-action.h \
e-menu-tool-button.h \
e-misc-utils.h \
e-mktemp.h \
e-name-selector-dialog.h \
e-name-selector-entry.h \
e-name-selector-list.h \
e-name-selector-model.h \
e-name-selector.h \
e-online-button.h \
e-paned.h \
e-passwords.h \
e-photo-cache.h \
e-photo-source.h \
e-picture-gallery.h \
e-plugin-ui.h \
e-plugin.h \
e-poolv.h \
e-popup-action.h \
e-popup-menu.h \
e-port-entry.h \
e-preferences-window.h \
e-preview-pane.h \
e-print.h \
e-printable.h \
e-proxy-combo-box.h \
e-proxy-editor.h \
e-proxy-link-selector.h \
e-proxy-preferences.h \
e-proxy-selector.h \
e-reflow-model.h \
e-reflow.h \
e-rule-context.h \
e-rule-editor.h \
e-search-bar.h \
e-selectable.h \
e-selection-model-array.h \
e-selection-model-simple.h \
e-selection-model.h \
e-selection.h \
e-send-options.h \
e-sorter-array.h \
e-sorter.h \
e-source-combo-box.h \
e-source-config-backend.h \
e-source-config-dialog.h \
e-source-config.h \
e-source-selector-dialog.h \
e-source-selector.h \
e-source-util.h \
e-spell-entry.h \
e-spell-text-view.h \
e-spinner.h \
e-stock-request.h \
e-table-click-to-add.h \
e-table-col-dnd.h \
e-table-col.h \
e-table-column-selector.h \
e-table-column-specification.h \
e-table-config.h \
e-table-defines.h \
e-table-extras.h \
e-table-field-chooser-dialog.h \
e-table-field-chooser-item.h \
e-table-field-chooser.h \
e-table-group-container.h \
e-table-group-leaf.h \
e-table-group.h \
e-table-header-item.h \
e-table-header-utils.h \
e-table-header.h \
e-table-item.h \
e-table-model.h \
e-table-one.h \
e-table-search.h \
e-table-selection-model.h \
e-table-sort-info.h \
e-table-sorted-variable.h \
e-table-sorted.h \
e-table-sorter.h \
e-table-sorting-utils.h \
e-table-specification.h \
e-table-state.h \
e-table-subset-variable.h \
e-table-subset.h \
e-table-utils.h \
e-table.h \
e-text-event-processor-emacs-like.h \
e-text-event-processor-types.h \
e-text-event-processor.h \
e-text-model-repos.h \
e-text-model.h \
e-text.h \
e-timezone-dialog.h \
e-tree-model-generator.h \
e-tree-model.h \
e-tree-selection-model.h \
e-tree-table-adapter.h \
e-tree-view-frame.h \
e-tree.h \
e-unicode.h \
e-url-entry.h \
e-util-enums.h \
e-util-enumtypes.h \
e-web-view-gtkhtml.h \
e-web-view-preview.h \
e-web-view.h \
e-widget-undo.h \
e-xml-utils.h \
ea-calendar-cell.h \
ea-calendar-item.h \
ea-cell-table.h \
ea-factory.h \
ea-widgets.h \
gal-a11y-e-cell-popup.h \
gal-a11y-e-cell-registry.h \
gal-a11y-e-cell-toggle.h \
gal-a11y-e-cell-tree.h \
gal-a11y-e-cell-vbox.h \
gal-a11y-e-cell.h \
gal-a11y-e-table-click-to-add-factory.h \
gal-a11y-e-table-click-to-add.h \
gal-a11y-e-table-column-header.h \
gal-a11y-e-table-factory.h \
gal-a11y-e-table-item-factory.h \
gal-a11y-e-table-item.h \
gal-a11y-e-table.h \
gal-a11y-e-text-factory.h \
gal-a11y-e-text.h \
gal-a11y-e-tree-factory.h \
gal-a11y-e-tree.h \
gal-a11y-factory.h \
gal-a11y-util.h \
gal-view-collection.h \
gal-view-etable.h \
gal-view-instance-save-as-dialog.h \
gal-view-instance.h \
gal-view.h \
$(NULL)
@OS_WIN32_TRUE@PLATFORM_SOURCES = \
@OS_WIN32_TRUE@ e-win32-reloc.c \
@OS_WIN32_TRUE@ e-win32-defaults.c \
@OS_WIN32_TRUE@ e-win32-defaults.h \
@OS_WIN32_TRUE@ $(NULL)
libevolution_util_la_SOURCES = \
$(evolution_util_include_HEADERS) \
e-action-combo-box.c \
e-activity-bar.c \
e-activity-proxy.c \
e-activity.c \
e-alarm-selector.c \
e-alert-bar.c \
e-alert-dialog.c \
e-alert-sink.c \
e-alert.c \
e-attachment-bar.c \
e-attachment-button.c \
e-attachment-dialog.c \
e-attachment-handler-image.c \
e-attachment-handler.c \
e-attachment-icon-view.c \
e-attachment-paned.c \
e-attachment-store.c \
e-attachment-tree-view.c \
e-attachment-view.c \
e-attachment.c \
e-auth-combo-box.c \
e-autocomplete-selector.c \
e-bit-array.c \
e-book-source-config.c \
e-buffer-tagger.c \
e-cal-source-config.c \
e-calendar-item.c \
e-calendar.c \
e-canvas-background.c \
e-canvas-utils.c \
e-canvas-vbox.c \
e-canvas.c \
e-categories-config.c \
e-categories-dialog.c \
e-categories-editor.c \
e-categories-selector.c \
e-category-completion.c \
e-category-editor.c \
e-cell-checkbox.c \
e-cell-combo.c \
e-cell-date-edit.c \
e-cell-date.c \
e-cell-hbox.c \
e-cell-number.c \
e-cell-percent.c \
e-cell-pixbuf.c \
e-cell-popup.c \
e-cell-renderer-color.c \
e-cell-size.c \
e-cell-text.c \
e-cell-toggle.c \
e-cell-tree.c \
e-cell-vbox.c \
e-cell.c \
e-charset-combo-box.c \
e-charset.c \
e-client-cache.c \
e-client-combo-box.c \
e-client-selector.c \
e-config.c \
e-contact-store.c \
e-data-capture.c \
e-dateedit.c \
e-datetime-format.c \
e-destination-store.c \
e-dialog-utils.c \
e-dialog-widgets.c \
e-event.c \
e-file-request.c \
e-file-utils.c \
e-filter-code.c \
e-filter-color.c \
e-filter-datespec.c \
e-filter-element.c \
e-filter-file.c \
e-filter-input.c \
e-filter-int.c \
e-filter-option.c \
e-filter-part.c \
e-filter-rule.c \
e-focus-tracker.c \
e-html-utils.c \
e-icon-factory.c \
e-image-chooser.c \
e-import-assistant.c \
e-import.c \
e-interval-chooser.c \
e-mail-identity-combo-box.c \
e-mail-signature-combo-box.c \
e-mail-signature-editor.c \
e-mail-signature-manager.c \
e-mail-signature-preview.c \
e-mail-signature-script-dialog.c \
e-mail-signature-tree-view.c \
e-map.c \
e-marshal.c \
e-menu-tool-action.c \
e-menu-tool-button.c \
e-misc-utils.c \
e-mktemp.c \
e-name-selector-dialog.c \
e-name-selector-entry.c \
e-name-selector-list.c \
e-name-selector-model.c \
e-name-selector.c \
e-online-button.c \
e-paned.c \
e-passwords.c \
e-photo-cache.c \
e-photo-source.c \
e-picture-gallery.c \
e-plugin-ui.c \
e-plugin.c \
e-poolv.c \
e-popup-action.c \
e-popup-menu.c \
e-port-entry.c \
e-preferences-window.c \
e-preview-pane.c \
e-print.c \
e-printable.c \
e-proxy-combo-box.c \
e-proxy-editor.c \
e-proxy-link-selector.c \
e-proxy-preferences.c \
e-proxy-selector.c \
e-reflow-model.c \
e-reflow.c \
e-rule-context.c \
e-rule-editor.c \
e-search-bar.c \
e-selectable.c \
e-selection-model-array.c \
e-selection-model-simple.c \
e-selection-model.c \
e-selection.c \
e-send-options.c \
e-sorter-array.c \
e-sorter.c \
e-source-combo-box.c \
e-source-config-backend.c \
e-source-config-dialog.c \
e-source-config.c \
e-source-selector-dialog.c \
e-source-selector.c \
e-source-util.c \
e-spell-entry.c \
e-spell-text-view.c \
e-spinner.c \
e-stock-request.c \
e-table-click-to-add.c \
e-table-col.c \
e-table-column-selector.c \
e-table-column-specification.c \
e-table-config.c \
e-table-extras.c \
e-table-field-chooser-dialog.c \
e-table-field-chooser-item.c \
e-table-field-chooser.c \
e-table-group-container.c \
e-table-group-leaf.c \
e-table-group.c \
e-table-header-item.c \
e-table-header-utils.c \
e-table-header.c \
e-table-item.c \
e-table-model.c \
e-table-one.c \
e-table-search.c \
e-table-selection-model.c \
e-table-sort-info.c \
e-table-sorted-variable.c \
e-table-sorted.c \
e-table-sorter.c \
e-table-sorting-utils.c \
e-table-specification.c \
e-table-state.c \
e-table-subset-variable.c \
e-table-subset.c \
e-table-utils.c \
e-table.c \
e-text-event-processor-emacs-like.c \
e-text-event-processor.c \
e-text-model-repos.c \
e-text-model.c \
e-text.c \
e-timezone-dialog.c \
e-tree-model-generator.c \
e-tree-model.c \
e-tree-selection-model.c \
e-tree-table-adapter.c \
e-tree-view-frame.c \
e-tree.c \
e-unicode.c \
e-url-entry.c \
e-util-enumtypes.c \
e-util-private.h \
e-web-view-gtkhtml.c \
e-web-view-preview.c \
e-web-view.c \
e-widget-undo.c \
e-xml-utils.c \
ea-calendar-cell.c \
ea-calendar-item.c \
ea-cell-table.c \
ea-widgets.c \
gal-a11y-e-cell-popup.c \
gal-a11y-e-cell-registry.c \
gal-a11y-e-cell-toggle.c \
gal-a11y-e-cell-tree.c \
gal-a11y-e-cell-vbox.c \
gal-a11y-e-cell.c \
gal-a11y-e-table-click-to-add-factory.c \
gal-a11y-e-table-click-to-add.c \
gal-a11y-e-table-column-header.c \
gal-a11y-e-table-factory.c \
gal-a11y-e-table-item-factory.c \
gal-a11y-e-table-item.c \
gal-a11y-e-table.c \
gal-a11y-e-text-factory.c \
gal-a11y-e-text.c \
gal-a11y-e-tree-factory.c \
gal-a11y-e-tree.c \
gal-a11y-util.c \
gal-view-collection.c \
gal-view-etable.c \
gal-view-instance-save-as-dialog.c \
gal-view-instance.c \
gal-view.c \
$(PLATFORM_SOURCES) \
$(NULL)
libevolution_util_la_LDFLAGS = -avoid-version $(NO_UNDEFINED)
libevolution_util_la_LIBADD = \
$(top_builddir)/libgnomecanvas/libgnomecanvas.la \
$(ICONV_LIBS) \
$(EVOLUTION_DATA_SERVER_LIBS) \
$(GNOME_PLATFORM_LIBS) \
$(GEO_LIBS) \
$(GTKHTML_LIBS) \
$(GTKSPELL_LIBS) \
$(INTLLIBS) \
$(MATH_LIB) \
$(NULL)
TEST_CPPFLAGS = \
$(libevolution_util_la_CPPFLAGS) \
$(NULL)
TEST_LDADD = \
libevolution-util.la \
$(libevolution_util_la_LIBADD) \
$(NULL)
evolution_source_viewer_CPPFLAGS = $(TEST_CPPFLAGS)
evolution_source_viewer_SOURCES = evolution-source-viewer.c
evolution_source_viewer_LDADD = $(TEST_LDADD)
test_calendar_CPPFLAGS = $(TEST_CPPFLAGS)
test_calendar_SOURCES = test-calendar.c
test_calendar_LDADD = $(TEST_LDADD)
test_category_completion_CPPFLAGS = $(TEST_CPPFLAGS)
test_category_completion_SOURCES = test-category-completion.c
test_category_completion_LDADD = $(TEST_LDADD)
test_contact_store_CPPFLAGS = $(TEST_CPPFLAGS)
test_contact_store_SOURCES = test-contact-store.c
test_contact_store_LDADD = $(TEST_LDADD)
test_dateedit_CPPFLAGS = $(TEST_CPPFLAGS)
test_dateedit_SOURCES = test-dateedit.c
test_dateedit_LDADD = $(TEST_LDADD)
test_mail_signatures_CPPFLAGS = $(TEST_CPPFLAGS)
test_mail_signatures_SOURCES = test-mail-signatures.c
test_mail_signatures_LDADD = $(TEST_LDADD)
test_name_selector_CPPFLAGS = $(TEST_CPPFLAGS)
test_name_selector_SOURCES = test-name-selector.c
test_name_selector_LDADD = $(TEST_LDADD)
test_preferences_window_CPPFLAGS = $(TEST_CPPFLAGS)
test_preferences_window_SOURCES = test-preferences-window.c
test_preferences_window_LDADD = $(TEST_LDADD)
test_proxy_preferences_CPPFLAGS = $(TEST_CPPFLAGS)
test_proxy_preferences_SOURCES = test-proxy-preferences.c
test_proxy_preferences_LDADD = $(TEST_LDADD)
test_source_combo_box_CPPFLAGS = $(TEST_CPPFLAGS)
test_source_combo_box_SOURCES = test-source-combo-box.c
test_source_combo_box_LDADD = $(TEST_LDADD)
test_source_config_CPPFLAGS = $(TEST_CPPFLAGS)
test_source_config_SOURCES = test-source-config.c
test_source_config_LDADD = $(TEST_LDADD)
test_source_selector_CPPFLAGS = $(TEST_CPPFLAGS)
test_source_selector_SOURCES = test-source-selector.c
test_source_selector_LDADD = $(TEST_LDADD)
test_tree_view_frame_CPPFLAGS = $(TEST_CPPFLAGS)
test_tree_view_frame_SOURCES = test-tree-view-frame.c
test_tree_view_frame_LDADD = $(TEST_LDADD)
EXTRA_DIST = \
e-system.error.xml \
filter.error.xml \
widgets.error.xml \
e-marshal.list \
$(ui_DATA) \
$(xpm_icons) \
$(NULL)
BUILT_SOURCES = \
$(ENUM_GENERATED) \
$(MARSHAL_GENERATED) \
$(error_DATA) \
$(NULL)
CLEANFILES = $(BUILT_SOURCES)
all: $(BUILT_SOURCES)
$(MAKE) $(AM_MAKEFLAGS) all-am
.SUFFIXES:
.SUFFIXES: .c .lo .o .obj
$(srcdir)/Makefile.in: @MAINTAINER_MODE_TRUE@ $(srcdir)/Makefile.am $(am__configure_deps)
@for dep in $?; do \
case '$(am__configure_deps)' in \
*$$dep*) \
( cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh ) \
&& { if test -f $@; then exit 0; else break; fi; }; \
exit 1;; \
esac; \
done; \
echo ' cd $(top_srcdir) && $(AUTOMAKE) --foreign e-util/Makefile'; \
$(am__cd) $(top_srcdir) && \
$(AUTOMAKE) --foreign e-util/Makefile
.PRECIOUS: Makefile
Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status
@case '$?' in \
*config.status*) \
cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \
*) \
echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \
cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \
esac;
$(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES)
cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh
$(top_srcdir)/configure: @MAINTAINER_MODE_TRUE@ $(am__configure_deps)
cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh
$(ACLOCAL_M4): @MAINTAINER_MODE_TRUE@ $(am__aclocal_m4_deps)
cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh
$(am__aclocal_m4_deps):
install-privsolibLTLIBRARIES: $(privsolib_LTLIBRARIES)
@$(NORMAL_INSTALL)
@list='$(privsolib_LTLIBRARIES)'; test -n "$(privsolibdir)" || 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)$(privsolibdir)'"; \
$(MKDIR_P) "$(DESTDIR)$(privsolibdir)" || exit 1; \
echo " $(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=install $(INSTALL) $(INSTALL_STRIP_FLAG) $$list2 '$(DESTDIR)$(privsolibdir)'"; \
$(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=install $(INSTALL) $(INSTALL_STRIP_FLAG) $$list2 "$(DESTDIR)$(privsolibdir)"; \
}
uninstall-privsolibLTLIBRARIES:
@$(NORMAL_UNINSTALL)
@list='$(privsolib_LTLIBRARIES)'; test -n "$(privsolibdir)" || list=; \
for p in $$list; do \
$(am__strip_dir) \
echo " $(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=uninstall rm -f '$(DESTDIR)$(privsolibdir)/$$f'"; \
$(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=uninstall rm -f "$(DESTDIR)$(privsolibdir)/$$f"; \
done
clean-privsolibLTLIBRARIES:
-test -z "$(privsolib_LTLIBRARIES)" || rm -f $(privsolib_LTLIBRARIES)
@list='$(privsolib_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}; \
}
libevolution-util.la: $(libevolution_util_la_OBJECTS) $(libevolution_util_la_DEPENDENCIES) $(EXTRA_libevolution_util_la_DEPENDENCIES)
$(AM_V_CCLD)$(libevolution_util_la_LINK) -rpath $(privsolibdir) $(libevolution_util_la_OBJECTS) $(libevolution_util_la_LIBADD) $(LIBS)
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
evolution-source-viewer$(EXEEXT): $(evolution_source_viewer_OBJECTS) $(evolution_source_viewer_DEPENDENCIES) $(EXTRA_evolution_source_viewer_DEPENDENCIES)
@rm -f evolution-source-viewer$(EXEEXT)
$(AM_V_CCLD)$(LINK) $(evolution_source_viewer_OBJECTS) $(evolution_source_viewer_LDADD) $(LIBS)
test-calendar$(EXEEXT): $(test_calendar_OBJECTS) $(test_calendar_DEPENDENCIES) $(EXTRA_test_calendar_DEPENDENCIES)
@rm -f test-calendar$(EXEEXT)
$(AM_V_CCLD)$(LINK) $(test_calendar_OBJECTS) $(test_calendar_LDADD) $(LIBS)
test-category-completion$(EXEEXT): $(test_category_completion_OBJECTS) $(test_category_completion_DEPENDENCIES) $(EXTRA_test_category_completion_DEPENDENCIES)
@rm -f test-category-completion$(EXEEXT)
$(AM_V_CCLD)$(LINK) $(test_category_completion_OBJECTS) $(test_category_completion_LDADD) $(LIBS)
test-contact-store$(EXEEXT): $(test_contact_store_OBJECTS) $(test_contact_store_DEPENDENCIES) $(EXTRA_test_contact_store_DEPENDENCIES)
@rm -f test-contact-store$(EXEEXT)
$(AM_V_CCLD)$(LINK) $(test_contact_store_OBJECTS) $(test_contact_store_LDADD) $(LIBS)
test-dateedit$(EXEEXT): $(test_dateedit_OBJECTS) $(test_dateedit_DEPENDENCIES) $(EXTRA_test_dateedit_DEPENDENCIES)
@rm -f test-dateedit$(EXEEXT)
$(AM_V_CCLD)$(LINK) $(test_dateedit_OBJECTS) $(test_dateedit_LDADD) $(LIBS)
test-mail-signatures$(EXEEXT): $(test_mail_signatures_OBJECTS) $(test_mail_signatures_DEPENDENCIES) $(EXTRA_test_mail_signatures_DEPENDENCIES)
@rm -f test-mail-signatures$(EXEEXT)
$(AM_V_CCLD)$(LINK) $(test_mail_signatures_OBJECTS) $(test_mail_signatures_LDADD) $(LIBS)
test-name-selector$(EXEEXT): $(test_name_selector_OBJECTS) $(test_name_selector_DEPENDENCIES) $(EXTRA_test_name_selector_DEPENDENCIES)
@rm -f test-name-selector$(EXEEXT)
$(AM_V_CCLD)$(LINK) $(test_name_selector_OBJECTS) $(test_name_selector_LDADD) $(LIBS)
test-preferences-window$(EXEEXT): $(test_preferences_window_OBJECTS) $(test_preferences_window_DEPENDENCIES) $(EXTRA_test_preferences_window_DEPENDENCIES)
@rm -f test-preferences-window$(EXEEXT)
$(AM_V_CCLD)$(LINK) $(test_preferences_window_OBJECTS) $(test_preferences_window_LDADD) $(LIBS)
test-proxy-preferences$(EXEEXT): $(test_proxy_preferences_OBJECTS) $(test_proxy_preferences_DEPENDENCIES) $(EXTRA_test_proxy_preferences_DEPENDENCIES)
@rm -f test-proxy-preferences$(EXEEXT)
$(AM_V_CCLD)$(LINK) $(test_proxy_preferences_OBJECTS) $(test_proxy_preferences_LDADD) $(LIBS)
test-source-combo-box$(EXEEXT): $(test_source_combo_box_OBJECTS) $(test_source_combo_box_DEPENDENCIES) $(EXTRA_test_source_combo_box_DEPENDENCIES)
@rm -f test-source-combo-box$(EXEEXT)
$(AM_V_CCLD)$(LINK) $(test_source_combo_box_OBJECTS) $(test_source_combo_box_LDADD) $(LIBS)
test-source-config$(EXEEXT): $(test_source_config_OBJECTS) $(test_source_config_DEPENDENCIES) $(EXTRA_test_source_config_DEPENDENCIES)
@rm -f test-source-config$(EXEEXT)
$(AM_V_CCLD)$(LINK) $(test_source_config_OBJECTS) $(test_source_config_LDADD) $(LIBS)
test-source-selector$(EXEEXT): $(test_source_selector_OBJECTS) $(test_source_selector_DEPENDENCIES) $(EXTRA_test_source_selector_DEPENDENCIES)
@rm -f test-source-selector$(EXEEXT)
$(AM_V_CCLD)$(LINK) $(test_source_selector_OBJECTS) $(test_source_selector_LDADD) $(LIBS)
test-tree-view-frame$(EXEEXT): $(test_tree_view_frame_OBJECTS) $(test_tree_view_frame_DEPENDENCIES) $(EXTRA_test_tree_view_frame_DEPENDENCIES)
@rm -f test-tree-view-frame$(EXEEXT)
$(AM_V_CCLD)$(LINK) $(test_tree_view_frame_OBJECTS) $(test_tree_view_frame_LDADD) $(LIBS)
mostlyclean-compile:
-rm -f *.$(OBJEXT)
distclean-compile:
-rm -f *.tab.c
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/evolution_source_viewer-evolution-source-viewer.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libevolution_util_la-e-action-combo-box.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libevolution_util_la-e-activity-bar.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libevolution_util_la-e-activity-proxy.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libevolution_util_la-e-activity.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libevolution_util_la-e-alarm-selector.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libevolution_util_la-e-alert-bar.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libevolution_util_la-e-alert-dialog.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libevolution_util_la-e-alert-sink.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libevolution_util_la-e-alert.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libevolution_util_la-e-attachment-bar.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libevolution_util_la-e-attachment-button.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libevolution_util_la-e-attachment-dialog.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libevolution_util_la-e-attachment-handler-image.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libevolution_util_la-e-attachment-handler.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libevolution_util_la-e-attachment-icon-view.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libevolution_util_la-e-attachment-paned.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libevolution_util_la-e-attachment-store.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libevolution_util_la-e-attachment-tree-view.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libevolution_util_la-e-attachment-view.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libevolution_util_la-e-attachment.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libevolution_util_la-e-auth-combo-box.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libevolution_util_la-e-autocomplete-selector.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libevolution_util_la-e-bit-array.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libevolution_util_la-e-book-source-config.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libevolution_util_la-e-buffer-tagger.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libevolution_util_la-e-cal-source-config.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libevolution_util_la-e-calendar-item.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libevolution_util_la-e-calendar.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libevolution_util_la-e-canvas-background.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libevolution_util_la-e-canvas-utils.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libevolution_util_la-e-canvas-vbox.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libevolution_util_la-e-canvas.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libevolution_util_la-e-categories-config.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libevolution_util_la-e-categories-dialog.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libevolution_util_la-e-categories-editor.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libevolution_util_la-e-categories-selector.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libevolution_util_la-e-category-completion.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libevolution_util_la-e-category-editor.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libevolution_util_la-e-cell-checkbox.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libevolution_util_la-e-cell-combo.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libevolution_util_la-e-cell-date-edit.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libevolution_util_la-e-cell-date.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libevolution_util_la-e-cell-hbox.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libevolution_util_la-e-cell-number.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libevolution_util_la-e-cell-percent.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libevolution_util_la-e-cell-pixbuf.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libevolution_util_la-e-cell-popup.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libevolution_util_la-e-cell-renderer-color.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libevolution_util_la-e-cell-size.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libevolution_util_la-e-cell-text.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libevolution_util_la-e-cell-toggle.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libevolution_util_la-e-cell-tree.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libevolution_util_la-e-cell-vbox.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libevolution_util_la-e-cell.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libevolution_util_la-e-charset-combo-box.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libevolution_util_la-e-charset.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libevolution_util_la-e-client-cache.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libevolution_util_la-e-client-combo-box.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libevolution_util_la-e-client-selector.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libevolution_util_la-e-config.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libevolution_util_la-e-contact-store.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libevolution_util_la-e-data-capture.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libevolution_util_la-e-dateedit.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libevolution_util_la-e-datetime-format.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libevolution_util_la-e-destination-store.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libevolution_util_la-e-dialog-utils.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libevolution_util_la-e-dialog-widgets.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libevolution_util_la-e-event.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libevolution_util_la-e-file-request.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libevolution_util_la-e-file-utils.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libevolution_util_la-e-filter-code.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libevolution_util_la-e-filter-color.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libevolution_util_la-e-filter-datespec.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libevolution_util_la-e-filter-element.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libevolution_util_la-e-filter-file.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libevolution_util_la-e-filter-input.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libevolution_util_la-e-filter-int.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libevolution_util_la-e-filter-option.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libevolution_util_la-e-filter-part.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libevolution_util_la-e-filter-rule.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libevolution_util_la-e-focus-tracker.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libevolution_util_la-e-html-utils.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libevolution_util_la-e-icon-factory.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libevolution_util_la-e-image-chooser.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libevolution_util_la-e-import-assistant.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libevolution_util_la-e-import.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libevolution_util_la-e-interval-chooser.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libevolution_util_la-e-mail-identity-combo-box.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libevolution_util_la-e-mail-signature-combo-box.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libevolution_util_la-e-mail-signature-editor.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libevolution_util_la-e-mail-signature-manager.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libevolution_util_la-e-mail-signature-preview.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libevolution_util_la-e-mail-signature-script-dialog.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libevolution_util_la-e-mail-signature-tree-view.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libevolution_util_la-e-map.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libevolution_util_la-e-marshal.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libevolution_util_la-e-menu-tool-action.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libevolution_util_la-e-menu-tool-button.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libevolution_util_la-e-misc-utils.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libevolution_util_la-e-mktemp.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libevolution_util_la-e-name-selector-dialog.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libevolution_util_la-e-name-selector-entry.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libevolution_util_la-e-name-selector-list.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libevolution_util_la-e-name-selector-model.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libevolution_util_la-e-name-selector.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libevolution_util_la-e-online-button.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libevolution_util_la-e-paned.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libevolution_util_la-e-passwords.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libevolution_util_la-e-photo-cache.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libevolution_util_la-e-photo-source.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libevolution_util_la-e-picture-gallery.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libevolution_util_la-e-plugin-ui.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libevolution_util_la-e-plugin.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libevolution_util_la-e-poolv.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libevolution_util_la-e-popup-action.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libevolution_util_la-e-popup-menu.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libevolution_util_la-e-port-entry.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libevolution_util_la-e-preferences-window.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libevolution_util_la-e-preview-pane.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libevolution_util_la-e-print.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libevolution_util_la-e-printable.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libevolution_util_la-e-proxy-combo-box.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libevolution_util_la-e-proxy-editor.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libevolution_util_la-e-proxy-link-selector.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libevolution_util_la-e-proxy-preferences.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libevolution_util_la-e-proxy-selector.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libevolution_util_la-e-reflow-model.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libevolution_util_la-e-reflow.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libevolution_util_la-e-rule-context.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libevolution_util_la-e-rule-editor.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libevolution_util_la-e-search-bar.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libevolution_util_la-e-selectable.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libevolution_util_la-e-selection-model-array.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libevolution_util_la-e-selection-model-simple.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libevolution_util_la-e-selection-model.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libevolution_util_la-e-selection.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libevolution_util_la-e-send-options.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libevolution_util_la-e-sorter-array.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libevolution_util_la-e-sorter.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libevolution_util_la-e-source-combo-box.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libevolution_util_la-e-source-config-backend.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libevolution_util_la-e-source-config-dialog.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libevolution_util_la-e-source-config.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libevolution_util_la-e-source-selector-dialog.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libevolution_util_la-e-source-selector.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libevolution_util_la-e-source-util.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libevolution_util_la-e-spell-entry.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libevolution_util_la-e-spell-text-view.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libevolution_util_la-e-spinner.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libevolution_util_la-e-stock-request.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libevolution_util_la-e-table-click-to-add.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libevolution_util_la-e-table-col.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libevolution_util_la-e-table-column-selector.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libevolution_util_la-e-table-column-specification.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libevolution_util_la-e-table-config.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libevolution_util_la-e-table-extras.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libevolution_util_la-e-table-field-chooser-dialog.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libevolution_util_la-e-table-field-chooser-item.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libevolution_util_la-e-table-field-chooser.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libevolution_util_la-e-table-group-container.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libevolution_util_la-e-table-group-leaf.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libevolution_util_la-e-table-group.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libevolution_util_la-e-table-header-item.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libevolution_util_la-e-table-header-utils.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libevolution_util_la-e-table-header.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libevolution_util_la-e-table-item.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libevolution_util_la-e-table-model.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libevolution_util_la-e-table-one.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libevolution_util_la-e-table-search.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libevolution_util_la-e-table-selection-model.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libevolution_util_la-e-table-sort-info.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libevolution_util_la-e-table-sorted-variable.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libevolution_util_la-e-table-sorted.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libevolution_util_la-e-table-sorter.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libevolution_util_la-e-table-sorting-utils.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libevolution_util_la-e-table-specification.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libevolution_util_la-e-table-state.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libevolution_util_la-e-table-subset-variable.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libevolution_util_la-e-table-subset.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libevolution_util_la-e-table-utils.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libevolution_util_la-e-table.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libevolution_util_la-e-text-event-processor-emacs-like.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libevolution_util_la-e-text-event-processor.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libevolution_util_la-e-text-model-repos.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libevolution_util_la-e-text-model.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libevolution_util_la-e-text.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libevolution_util_la-e-timezone-dialog.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libevolution_util_la-e-tree-model-generator.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libevolution_util_la-e-tree-model.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libevolution_util_la-e-tree-selection-model.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libevolution_util_la-e-tree-table-adapter.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libevolution_util_la-e-tree-view-frame.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libevolution_util_la-e-tree.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libevolution_util_la-e-unicode.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libevolution_util_la-e-url-entry.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libevolution_util_la-e-util-enumtypes.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libevolution_util_la-e-web-view-gtkhtml.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libevolution_util_la-e-web-view-preview.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libevolution_util_la-e-web-view.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libevolution_util_la-e-widget-undo.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libevolution_util_la-e-win32-defaults.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libevolution_util_la-e-win32-reloc.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libevolution_util_la-e-xml-utils.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libevolution_util_la-ea-calendar-cell.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libevolution_util_la-ea-calendar-item.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libevolution_util_la-ea-cell-table.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libevolution_util_la-ea-widgets.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libevolution_util_la-gal-a11y-e-cell-popup.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libevolution_util_la-gal-a11y-e-cell-registry.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libevolution_util_la-gal-a11y-e-cell-toggle.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libevolution_util_la-gal-a11y-e-cell-tree.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libevolution_util_la-gal-a11y-e-cell-vbox.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libevolution_util_la-gal-a11y-e-cell.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libevolution_util_la-gal-a11y-e-table-click-to-add-factory.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libevolution_util_la-gal-a11y-e-table-click-to-add.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libevolution_util_la-gal-a11y-e-table-column-header.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libevolution_util_la-gal-a11y-e-table-factory.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libevolution_util_la-gal-a11y-e-table-item-factory.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libevolution_util_la-gal-a11y-e-table-item.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libevolution_util_la-gal-a11y-e-table.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libevolution_util_la-gal-a11y-e-text-factory.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libevolution_util_la-gal-a11y-e-text.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libevolution_util_la-gal-a11y-e-tree-factory.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libevolution_util_la-gal-a11y-e-tree.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libevolution_util_la-gal-a11y-util.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libevolution_util_la-gal-view-collection.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libevolution_util_la-gal-view-etable.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libevolution_util_la-gal-view-instance-save-as-dialog.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libevolution_util_la-gal-view-instance.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libevolution_util_la-gal-view.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/test_calendar-test-calendar.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/test_category_completion-test-category-completion.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/test_contact_store-test-contact-store.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/test_dateedit-test-dateedit.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/test_mail_signatures-test-mail-signatures.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/test_name_selector-test-name-selector.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/test_preferences_window-test-preferences-window.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/test_proxy_preferences-test-proxy-preferences.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/test_source_combo_box-test-source-combo-box.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/test_source_config-test-source-config.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/test_source_selector-test-source-selector.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/test_tree_view_frame-test-tree-view-frame.Po@am__quote@
.c.o:
@am__fastdepCC_TRUE@ $(AM_V_CC)$(COMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $<
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.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)$(COMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ `$(CYGPATH_W) '$<'`
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.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)$(LTCOMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $<
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.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 $@ $<
libevolution_util_la-e-action-combo-box.lo: e-action-combo-box.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libevolution_util_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT libevolution_util_la-e-action-combo-box.lo -MD -MP -MF $(DEPDIR)/libevolution_util_la-e-action-combo-box.Tpo -c -o libevolution_util_la-e-action-combo-box.lo `test -f 'e-action-combo-box.c' || echo '$(srcdir)/'`e-action-combo-box.c
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libevolution_util_la-e-action-combo-box.Tpo $(DEPDIR)/libevolution_util_la-e-action-combo-box.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='e-action-combo-box.c' object='libevolution_util_la-e-action-combo-box.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) $(libevolution_util_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o libevolution_util_la-e-action-combo-box.lo `test -f 'e-action-combo-box.c' || echo '$(srcdir)/'`e-action-combo-box.c
libevolution_util_la-e-activity-bar.lo: e-activity-bar.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libevolution_util_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT libevolution_util_la-e-activity-bar.lo -MD -MP -MF $(DEPDIR)/libevolution_util_la-e-activity-bar.Tpo -c -o libevolution_util_la-e-activity-bar.lo `test -f 'e-activity-bar.c' || echo '$(srcdir)/'`e-activity-bar.c
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libevolution_util_la-e-activity-bar.Tpo $(DEPDIR)/libevolution_util_la-e-activity-bar.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='e-activity-bar.c' object='libevolution_util_la-e-activity-bar.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) $(libevolution_util_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o libevolution_util_la-e-activity-bar.lo `test -f 'e-activity-bar.c' || echo '$(srcdir)/'`e-activity-bar.c
libevolution_util_la-e-activity-proxy.lo: e-activity-proxy.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libevolution_util_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT libevolution_util_la-e-activity-proxy.lo -MD -MP -MF $(DEPDIR)/libevolution_util_la-e-activity-proxy.Tpo -c -o libevolution_util_la-e-activity-proxy.lo `test -f 'e-activity-proxy.c' || echo '$(srcdir)/'`e-activity-proxy.c
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libevolution_util_la-e-activity-proxy.Tpo $(DEPDIR)/libevolution_util_la-e-activity-proxy.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='e-activity-proxy.c' object='libevolution_util_la-e-activity-proxy.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) $(libevolution_util_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o libevolution_util_la-e-activity-proxy.lo `test -f 'e-activity-proxy.c' || echo '$(srcdir)/'`e-activity-proxy.c
libevolution_util_la-e-activity.lo: e-activity.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libevolution_util_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT libevolution_util_la-e-activity.lo -MD -MP -MF $(DEPDIR)/libevolution_util_la-e-activity.Tpo -c -o libevolution_util_la-e-activity.lo `test -f 'e-activity.c' || echo '$(srcdir)/'`e-activity.c
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libevolution_util_la-e-activity.Tpo $(DEPDIR)/libevolution_util_la-e-activity.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='e-activity.c' object='libevolution_util_la-e-activity.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) $(libevolution_util_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o libevolution_util_la-e-activity.lo `test -f 'e-activity.c' || echo '$(srcdir)/'`e-activity.c
libevolution_util_la-e-alarm-selector.lo: e-alarm-selector.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libevolution_util_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT libevolution_util_la-e-alarm-selector.lo -MD -MP -MF $(DEPDIR)/libevolution_util_la-e-alarm-selector.Tpo -c -o libevolution_util_la-e-alarm-selector.lo `test -f 'e-alarm-selector.c' || echo '$(srcdir)/'`e-alarm-selector.c
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libevolution_util_la-e-alarm-selector.Tpo $(DEPDIR)/libevolution_util_la-e-alarm-selector.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='e-alarm-selector.c' object='libevolution_util_la-e-alarm-selector.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) $(libevolution_util_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o libevolution_util_la-e-alarm-selector.lo `test -f 'e-alarm-selector.c' || echo '$(srcdir)/'`e-alarm-selector.c
libevolution_util_la-e-alert-bar.lo: e-alert-bar.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libevolution_util_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT libevolution_util_la-e-alert-bar.lo -MD -MP -MF $(DEPDIR)/libevolution_util_la-e-alert-bar.Tpo -c -o libevolution_util_la-e-alert-bar.lo `test -f 'e-alert-bar.c' || echo '$(srcdir)/'`e-alert-bar.c
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libevolution_util_la-e-alert-bar.Tpo $(DEPDIR)/libevolution_util_la-e-alert-bar.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='e-alert-bar.c' object='libevolution_util_la-e-alert-bar.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) $(libevolution_util_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o libevolution_util_la-e-alert-bar.lo `test -f 'e-alert-bar.c' || echo '$(srcdir)/'`e-alert-bar.c
libevolution_util_la-e-alert-dialog.lo: e-alert-dialog.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libevolution_util_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT libevolution_util_la-e-alert-dialog.lo -MD -MP -MF $(DEPDIR)/libevolution_util_la-e-alert-dialog.Tpo -c -o libevolution_util_la-e-alert-dialog.lo `test -f 'e-alert-dialog.c' || echo '$(srcdir)/'`e-alert-dialog.c
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libevolution_util_la-e-alert-dialog.Tpo $(DEPDIR)/libevolution_util_la-e-alert-dialog.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='e-alert-dialog.c' object='libevolution_util_la-e-alert-dialog.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) $(libevolution_util_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o libevolution_util_la-e-alert-dialog.lo `test -f 'e-alert-dialog.c' || echo '$(srcdir)/'`e-alert-dialog.c
libevolution_util_la-e-alert-sink.lo: e-alert-sink.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libevolution_util_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT libevolution_util_la-e-alert-sink.lo -MD -MP -MF $(DEPDIR)/libevolution_util_la-e-alert-sink.Tpo -c -o libevolution_util_la-e-alert-sink.lo `test -f 'e-alert-sink.c' || echo '$(srcdir)/'`e-alert-sink.c
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libevolution_util_la-e-alert-sink.Tpo $(DEPDIR)/libevolution_util_la-e-alert-sink.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='e-alert-sink.c' object='libevolution_util_la-e-alert-sink.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) $(libevolution_util_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o libevolution_util_la-e-alert-sink.lo `test -f 'e-alert-sink.c' || echo '$(srcdir)/'`e-alert-sink.c
libevolution_util_la-e-alert.lo: e-alert.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libevolution_util_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT libevolution_util_la-e-alert.lo -MD -MP -MF $(DEPDIR)/libevolution_util_la-e-alert.Tpo -c -o libevolution_util_la-e-alert.lo `test -f 'e-alert.c' || echo '$(srcdir)/'`e-alert.c
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libevolution_util_la-e-alert.Tpo $(DEPDIR)/libevolution_util_la-e-alert.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='e-alert.c' object='libevolution_util_la-e-alert.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) $(libevolution_util_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o libevolution_util_la-e-alert.lo `test -f 'e-alert.c' || echo '$(srcdir)/'`e-alert.c
libevolution_util_la-e-attachment-bar.lo: e-attachment-bar.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libevolution_util_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT libevolution_util_la-e-attachment-bar.lo -MD -MP -MF $(DEPDIR)/libevolution_util_la-e-attachment-bar.Tpo -c -o libevolution_util_la-e-attachment-bar.lo `test -f 'e-attachment-bar.c' || echo '$(srcdir)/'`e-attachment-bar.c
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libevolution_util_la-e-attachment-bar.Tpo $(DEPDIR)/libevolution_util_la-e-attachment-bar.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='e-attachment-bar.c' object='libevolution_util_la-e-attachment-bar.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) $(libevolution_util_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o libevolution_util_la-e-attachment-bar.lo `test -f 'e-attachment-bar.c' || echo '$(srcdir)/'`e-attachment-bar.c
libevolution_util_la-e-attachment-button.lo: e-attachment-button.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libevolution_util_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT libevolution_util_la-e-attachment-button.lo -MD -MP -MF $(DEPDIR)/libevolution_util_la-e-attachment-button.Tpo -c -o libevolution_util_la-e-attachment-button.lo `test -f 'e-attachment-button.c' || echo '$(srcdir)/'`e-attachment-button.c
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libevolution_util_la-e-attachment-button.Tpo $(DEPDIR)/libevolution_util_la-e-attachment-button.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='e-attachment-button.c' object='libevolution_util_la-e-attachment-button.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) $(libevolution_util_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o libevolution_util_la-e-attachment-button.lo `test -f 'e-attachment-button.c' || echo '$(srcdir)/'`e-attachment-button.c
libevolution_util_la-e-attachment-dialog.lo: e-attachment-dialog.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libevolution_util_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT libevolution_util_la-e-attachment-dialog.lo -MD -MP -MF $(DEPDIR)/libevolution_util_la-e-attachment-dialog.Tpo -c -o libevolution_util_la-e-attachment-dialog.lo `test -f 'e-attachment-dialog.c' || echo '$(srcdir)/'`e-attachment-dialog.c
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libevolution_util_la-e-attachment-dialog.Tpo $(DEPDIR)/libevolution_util_la-e-attachment-dialog.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='e-attachment-dialog.c' object='libevolution_util_la-e-attachment-dialog.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) $(libevolution_util_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o libevolution_util_la-e-attachment-dialog.lo `test -f 'e-attachment-dialog.c' || echo '$(srcdir)/'`e-attachment-dialog.c
libevolution_util_la-e-attachment-handler-image.lo: e-attachment-handler-image.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libevolution_util_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT libevolution_util_la-e-attachment-handler-image.lo -MD -MP -MF $(DEPDIR)/libevolution_util_la-e-attachment-handler-image.Tpo -c -o libevolution_util_la-e-attachment-handler-image.lo `test -f 'e-attachment-handler-image.c' || echo '$(srcdir)/'`e-attachment-handler-image.c
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libevolution_util_la-e-attachment-handler-image.Tpo $(DEPDIR)/libevolution_util_la-e-attachment-handler-image.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='e-attachment-handler-image.c' object='libevolution_util_la-e-attachment-handler-image.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) $(libevolution_util_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o libevolution_util_la-e-attachment-handler-image.lo `test -f 'e-attachment-handler-image.c' || echo '$(srcdir)/'`e-attachment-handler-image.c
libevolution_util_la-e-attachment-handler.lo: e-attachment-handler.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libevolution_util_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT libevolution_util_la-e-attachment-handler.lo -MD -MP -MF $(DEPDIR)/libevolution_util_la-e-attachment-handler.Tpo -c -o libevolution_util_la-e-attachment-handler.lo `test -f 'e-attachment-handler.c' || echo '$(srcdir)/'`e-attachment-handler.c
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libevolution_util_la-e-attachment-handler.Tpo $(DEPDIR)/libevolution_util_la-e-attachment-handler.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='e-attachment-handler.c' object='libevolution_util_la-e-attachment-handler.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) $(libevolution_util_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o libevolution_util_la-e-attachment-handler.lo `test -f 'e-attachment-handler.c' || echo '$(srcdir)/'`e-attachment-handler.c
libevolution_util_la-e-attachment-icon-view.lo: e-attachment-icon-view.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libevolution_util_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT libevolution_util_la-e-attachment-icon-view.lo -MD -MP -MF $(DEPDIR)/libevolution_util_la-e-attachment-icon-view.Tpo -c -o libevolution_util_la-e-attachment-icon-view.lo `test -f 'e-attachment-icon-view.c' || echo '$(srcdir)/'`e-attachment-icon-view.c
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libevolution_util_la-e-attachment-icon-view.Tpo $(DEPDIR)/libevolution_util_la-e-attachment-icon-view.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='e-attachment-icon-view.c' object='libevolution_util_la-e-attachment-icon-view.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) $(libevolution_util_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o libevolution_util_la-e-attachment-icon-view.lo `test -f 'e-attachment-icon-view.c' || echo '$(srcdir)/'`e-attachment-icon-view.c
libevolution_util_la-e-attachment-paned.lo: e-attachment-paned.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libevolution_util_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT libevolution_util_la-e-attachment-paned.lo -MD -MP -MF $(DEPDIR)/libevolution_util_la-e-attachment-paned.Tpo -c -o libevolution_util_la-e-attachment-paned.lo `test -f 'e-attachment-paned.c' || echo '$(srcdir)/'`e-attachment-paned.c
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libevolution_util_la-e-attachment-paned.Tpo $(DEPDIR)/libevolution_util_la-e-attachment-paned.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='e-attachment-paned.c' object='libevolution_util_la-e-attachment-paned.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) $(libevolution_util_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o libevolution_util_la-e-attachment-paned.lo `test -f 'e-attachment-paned.c' || echo '$(srcdir)/'`e-attachment-paned.c
libevolution_util_la-e-attachment-store.lo: e-attachment-store.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libevolution_util_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT libevolution_util_la-e-attachment-store.lo -MD -MP -MF $(DEPDIR)/libevolution_util_la-e-attachment-store.Tpo -c -o libevolution_util_la-e-attachment-store.lo `test -f 'e-attachment-store.c' || echo '$(srcdir)/'`e-attachment-store.c
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libevolution_util_la-e-attachment-store.Tpo $(DEPDIR)/libevolution_util_la-e-attachment-store.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='e-attachment-store.c' object='libevolution_util_la-e-attachment-store.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) $(libevolution_util_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o libevolution_util_la-e-attachment-store.lo `test -f 'e-attachment-store.c' || echo '$(srcdir)/'`e-attachment-store.c
libevolution_util_la-e-attachment-tree-view.lo: e-attachment-tree-view.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libevolution_util_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT libevolution_util_la-e-attachment-tree-view.lo -MD -MP -MF $(DEPDIR)/libevolution_util_la-e-attachment-tree-view.Tpo -c -o libevolution_util_la-e-attachment-tree-view.lo `test -f 'e-attachment-tree-view.c' || echo '$(srcdir)/'`e-attachment-tree-view.c
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libevolution_util_la-e-attachment-tree-view.Tpo $(DEPDIR)/libevolution_util_la-e-attachment-tree-view.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='e-attachment-tree-view.c' object='libevolution_util_la-e-attachment-tree-view.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) $(libevolution_util_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o libevolution_util_la-e-attachment-tree-view.lo `test -f 'e-attachment-tree-view.c' || echo '$(srcdir)/'`e-attachment-tree-view.c
libevolution_util_la-e-attachment-view.lo: e-attachment-view.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libevolution_util_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT libevolution_util_la-e-attachment-view.lo -MD -MP -MF $(DEPDIR)/libevolution_util_la-e-attachment-view.Tpo -c -o libevolution_util_la-e-attachment-view.lo `test -f 'e-attachment-view.c' || echo '$(srcdir)/'`e-attachment-view.c
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libevolution_util_la-e-attachment-view.Tpo $(DEPDIR)/libevolution_util_la-e-attachment-view.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='e-attachment-view.c' object='libevolution_util_la-e-attachment-view.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) $(libevolution_util_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o libevolution_util_la-e-attachment-view.lo `test -f 'e-attachment-view.c' || echo '$(srcdir)/'`e-attachment-view.c
libevolution_util_la-e-attachment.lo: e-attachment.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libevolution_util_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT libevolution_util_la-e-attachment.lo -MD -MP -MF $(DEPDIR)/libevolution_util_la-e-attachment.Tpo -c -o libevolution_util_la-e-attachment.lo `test -f 'e-attachment.c' || echo '$(srcdir)/'`e-attachment.c
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libevolution_util_la-e-attachment.Tpo $(DEPDIR)/libevolution_util_la-e-attachment.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='e-attachment.c' object='libevolution_util_la-e-attachment.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) $(libevolution_util_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o libevolution_util_la-e-attachment.lo `test -f 'e-attachment.c' || echo '$(srcdir)/'`e-attachment.c
libevolution_util_la-e-auth-combo-box.lo: e-auth-combo-box.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libevolution_util_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT libevolution_util_la-e-auth-combo-box.lo -MD -MP -MF $(DEPDIR)/libevolution_util_la-e-auth-combo-box.Tpo -c -o libevolution_util_la-e-auth-combo-box.lo `test -f 'e-auth-combo-box.c' || echo '$(srcdir)/'`e-auth-combo-box.c
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libevolution_util_la-e-auth-combo-box.Tpo $(DEPDIR)/libevolution_util_la-e-auth-combo-box.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='e-auth-combo-box.c' object='libevolution_util_la-e-auth-combo-box.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) $(libevolution_util_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o libevolution_util_la-e-auth-combo-box.lo `test -f 'e-auth-combo-box.c' || echo '$(srcdir)/'`e-auth-combo-box.c
libevolution_util_la-e-autocomplete-selector.lo: e-autocomplete-selector.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libevolution_util_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT libevolution_util_la-e-autocomplete-selector.lo -MD -MP -MF $(DEPDIR)/libevolution_util_la-e-autocomplete-selector.Tpo -c -o libevolution_util_la-e-autocomplete-selector.lo `test -f 'e-autocomplete-selector.c' || echo '$(srcdir)/'`e-autocomplete-selector.c
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libevolution_util_la-e-autocomplete-selector.Tpo $(DEPDIR)/libevolution_util_la-e-autocomplete-selector.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='e-autocomplete-selector.c' object='libevolution_util_la-e-autocomplete-selector.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) $(libevolution_util_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o libevolution_util_la-e-autocomplete-selector.lo `test -f 'e-autocomplete-selector.c' || echo '$(srcdir)/'`e-autocomplete-selector.c
libevolution_util_la-e-bit-array.lo: e-bit-array.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libevolution_util_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT libevolution_util_la-e-bit-array.lo -MD -MP -MF $(DEPDIR)/libevolution_util_la-e-bit-array.Tpo -c -o libevolution_util_la-e-bit-array.lo `test -f 'e-bit-array.c' || echo '$(srcdir)/'`e-bit-array.c
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libevolution_util_la-e-bit-array.Tpo $(DEPDIR)/libevolution_util_la-e-bit-array.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='e-bit-array.c' object='libevolution_util_la-e-bit-array.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) $(libevolution_util_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o libevolution_util_la-e-bit-array.lo `test -f 'e-bit-array.c' || echo '$(srcdir)/'`e-bit-array.c
libevolution_util_la-e-book-source-config.lo: e-book-source-config.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libevolution_util_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT libevolution_util_la-e-book-source-config.lo -MD -MP -MF $(DEPDIR)/libevolution_util_la-e-book-source-config.Tpo -c -o libevolution_util_la-e-book-source-config.lo `test -f 'e-book-source-config.c' || echo '$(srcdir)/'`e-book-source-config.c
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libevolution_util_la-e-book-source-config.Tpo $(DEPDIR)/libevolution_util_la-e-book-source-config.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='e-book-source-config.c' object='libevolution_util_la-e-book-source-config.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) $(libevolution_util_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o libevolution_util_la-e-book-source-config.lo `test -f 'e-book-source-config.c' || echo '$(srcdir)/'`e-book-source-config.c
libevolution_util_la-e-buffer-tagger.lo: e-buffer-tagger.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libevolution_util_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT libevolution_util_la-e-buffer-tagger.lo -MD -MP -MF $(DEPDIR)/libevolution_util_la-e-buffer-tagger.Tpo -c -o libevolution_util_la-e-buffer-tagger.lo `test -f 'e-buffer-tagger.c' || echo '$(srcdir)/'`e-buffer-tagger.c
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libevolution_util_la-e-buffer-tagger.Tpo $(DEPDIR)/libevolution_util_la-e-buffer-tagger.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='e-buffer-tagger.c' object='libevolution_util_la-e-buffer-tagger.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) $(libevolution_util_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o libevolution_util_la-e-buffer-tagger.lo `test -f 'e-buffer-tagger.c' || echo '$(srcdir)/'`e-buffer-tagger.c
libevolution_util_la-e-cal-source-config.lo: e-cal-source-config.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libevolution_util_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT libevolution_util_la-e-cal-source-config.lo -MD -MP -MF $(DEPDIR)/libevolution_util_la-e-cal-source-config.Tpo -c -o libevolution_util_la-e-cal-source-config.lo `test -f 'e-cal-source-config.c' || echo '$(srcdir)/'`e-cal-source-config.c
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libevolution_util_la-e-cal-source-config.Tpo $(DEPDIR)/libevolution_util_la-e-cal-source-config.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='e-cal-source-config.c' object='libevolution_util_la-e-cal-source-config.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) $(libevolution_util_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o libevolution_util_la-e-cal-source-config.lo `test -f 'e-cal-source-config.c' || echo '$(srcdir)/'`e-cal-source-config.c
libevolution_util_la-e-calendar-item.lo: e-calendar-item.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libevolution_util_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT libevolution_util_la-e-calendar-item.lo -MD -MP -MF $(DEPDIR)/libevolution_util_la-e-calendar-item.Tpo -c -o libevolution_util_la-e-calendar-item.lo `test -f 'e-calendar-item.c' || echo '$(srcdir)/'`e-calendar-item.c
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libevolution_util_la-e-calendar-item.Tpo $(DEPDIR)/libevolution_util_la-e-calendar-item.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='e-calendar-item.c' object='libevolution_util_la-e-calendar-item.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) $(libevolution_util_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o libevolution_util_la-e-calendar-item.lo `test -f 'e-calendar-item.c' || echo '$(srcdir)/'`e-calendar-item.c
libevolution_util_la-e-calendar.lo: e-calendar.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libevolution_util_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT libevolution_util_la-e-calendar.lo -MD -MP -MF $(DEPDIR)/libevolution_util_la-e-calendar.Tpo -c -o libevolution_util_la-e-calendar.lo `test -f 'e-calendar.c' || echo '$(srcdir)/'`e-calendar.c
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libevolution_util_la-e-calendar.Tpo $(DEPDIR)/libevolution_util_la-e-calendar.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='e-calendar.c' object='libevolution_util_la-e-calendar.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) $(libevolution_util_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o libevolution_util_la-e-calendar.lo `test -f 'e-calendar.c' || echo '$(srcdir)/'`e-calendar.c
libevolution_util_la-e-canvas-background.lo: e-canvas-background.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libevolution_util_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT libevolution_util_la-e-canvas-background.lo -MD -MP -MF $(DEPDIR)/libevolution_util_la-e-canvas-background.Tpo -c -o libevolution_util_la-e-canvas-background.lo `test -f 'e-canvas-background.c' || echo '$(srcdir)/'`e-canvas-background.c
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libevolution_util_la-e-canvas-background.Tpo $(DEPDIR)/libevolution_util_la-e-canvas-background.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='e-canvas-background.c' object='libevolution_util_la-e-canvas-background.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) $(libevolution_util_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o libevolution_util_la-e-canvas-background.lo `test -f 'e-canvas-background.c' || echo '$(srcdir)/'`e-canvas-background.c
libevolution_util_la-e-canvas-utils.lo: e-canvas-utils.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libevolution_util_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT libevolution_util_la-e-canvas-utils.lo -MD -MP -MF $(DEPDIR)/libevolution_util_la-e-canvas-utils.Tpo -c -o libevolution_util_la-e-canvas-utils.lo `test -f 'e-canvas-utils.c' || echo '$(srcdir)/'`e-canvas-utils.c
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libevolution_util_la-e-canvas-utils.Tpo $(DEPDIR)/libevolution_util_la-e-canvas-utils.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='e-canvas-utils.c' object='libevolution_util_la-e-canvas-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) $(libevolution_util_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o libevolution_util_la-e-canvas-utils.lo `test -f 'e-canvas-utils.c' || echo '$(srcdir)/'`e-canvas-utils.c
libevolution_util_la-e-canvas-vbox.lo: e-canvas-vbox.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libevolution_util_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT libevolution_util_la-e-canvas-vbox.lo -MD -MP -MF $(DEPDIR)/libevolution_util_la-e-canvas-vbox.Tpo -c -o libevolution_util_la-e-canvas-vbox.lo `test -f 'e-canvas-vbox.c' || echo '$(srcdir)/'`e-canvas-vbox.c
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libevolution_util_la-e-canvas-vbox.Tpo $(DEPDIR)/libevolution_util_la-e-canvas-vbox.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='e-canvas-vbox.c' object='libevolution_util_la-e-canvas-vbox.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) $(libevolution_util_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o libevolution_util_la-e-canvas-vbox.lo `test -f 'e-canvas-vbox.c' || echo '$(srcdir)/'`e-canvas-vbox.c
libevolution_util_la-e-canvas.lo: e-canvas.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libevolution_util_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT libevolution_util_la-e-canvas.lo -MD -MP -MF $(DEPDIR)/libevolution_util_la-e-canvas.Tpo -c -o libevolution_util_la-e-canvas.lo `test -f 'e-canvas.c' || echo '$(srcdir)/'`e-canvas.c
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libevolution_util_la-e-canvas.Tpo $(DEPDIR)/libevolution_util_la-e-canvas.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='e-canvas.c' object='libevolution_util_la-e-canvas.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) $(libevolution_util_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o libevolution_util_la-e-canvas.lo `test -f 'e-canvas.c' || echo '$(srcdir)/'`e-canvas.c
libevolution_util_la-e-categories-config.lo: e-categories-config.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libevolution_util_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT libevolution_util_la-e-categories-config.lo -MD -MP -MF $(DEPDIR)/libevolution_util_la-e-categories-config.Tpo -c -o libevolution_util_la-e-categories-config.lo `test -f 'e-categories-config.c' || echo '$(srcdir)/'`e-categories-config.c
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libevolution_util_la-e-categories-config.Tpo $(DEPDIR)/libevolution_util_la-e-categories-config.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='e-categories-config.c' object='libevolution_util_la-e-categories-config.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) $(libevolution_util_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o libevolution_util_la-e-categories-config.lo `test -f 'e-categories-config.c' || echo '$(srcdir)/'`e-categories-config.c
libevolution_util_la-e-categories-dialog.lo: e-categories-dialog.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libevolution_util_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT libevolution_util_la-e-categories-dialog.lo -MD -MP -MF $(DEPDIR)/libevolution_util_la-e-categories-dialog.Tpo -c -o libevolution_util_la-e-categories-dialog.lo `test -f 'e-categories-dialog.c' || echo '$(srcdir)/'`e-categories-dialog.c
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libevolution_util_la-e-categories-dialog.Tpo $(DEPDIR)/libevolution_util_la-e-categories-dialog.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='e-categories-dialog.c' object='libevolution_util_la-e-categories-dialog.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) $(libevolution_util_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o libevolution_util_la-e-categories-dialog.lo `test -f 'e-categories-dialog.c' || echo '$(srcdir)/'`e-categories-dialog.c
libevolution_util_la-e-categories-editor.lo: e-categories-editor.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libevolution_util_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT libevolution_util_la-e-categories-editor.lo -MD -MP -MF $(DEPDIR)/libevolution_util_la-e-categories-editor.Tpo -c -o libevolution_util_la-e-categories-editor.lo `test -f 'e-categories-editor.c' || echo '$(srcdir)/'`e-categories-editor.c
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libevolution_util_la-e-categories-editor.Tpo $(DEPDIR)/libevolution_util_la-e-categories-editor.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='e-categories-editor.c' object='libevolution_util_la-e-categories-editor.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) $(libevolution_util_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o libevolution_util_la-e-categories-editor.lo `test -f 'e-categories-editor.c' || echo '$(srcdir)/'`e-categories-editor.c
libevolution_util_la-e-categories-selector.lo: e-categories-selector.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libevolution_util_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT libevolution_util_la-e-categories-selector.lo -MD -MP -MF $(DEPDIR)/libevolution_util_la-e-categories-selector.Tpo -c -o libevolution_util_la-e-categories-selector.lo `test -f 'e-categories-selector.c' || echo '$(srcdir)/'`e-categories-selector.c
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libevolution_util_la-e-categories-selector.Tpo $(DEPDIR)/libevolution_util_la-e-categories-selector.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='e-categories-selector.c' object='libevolution_util_la-e-categories-selector.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) $(libevolution_util_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o libevolution_util_la-e-categories-selector.lo `test -f 'e-categories-selector.c' || echo '$(srcdir)/'`e-categories-selector.c
libevolution_util_la-e-category-completion.lo: e-category-completion.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libevolution_util_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT libevolution_util_la-e-category-completion.lo -MD -MP -MF $(DEPDIR)/libevolution_util_la-e-category-completion.Tpo -c -o libevolution_util_la-e-category-completion.lo `test -f 'e-category-completion.c' || echo '$(srcdir)/'`e-category-completion.c
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libevolution_util_la-e-category-completion.Tpo $(DEPDIR)/libevolution_util_la-e-category-completion.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='e-category-completion.c' object='libevolution_util_la-e-category-completion.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) $(libevolution_util_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o libevolution_util_la-e-category-completion.lo `test -f 'e-category-completion.c' || echo '$(srcdir)/'`e-category-completion.c
libevolution_util_la-e-category-editor.lo: e-category-editor.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libevolution_util_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT libevolution_util_la-e-category-editor.lo -MD -MP -MF $(DEPDIR)/libevolution_util_la-e-category-editor.Tpo -c -o libevolution_util_la-e-category-editor.lo `test -f 'e-category-editor.c' || echo '$(srcdir)/'`e-category-editor.c
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libevolution_util_la-e-category-editor.Tpo $(DEPDIR)/libevolution_util_la-e-category-editor.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='e-category-editor.c' object='libevolution_util_la-e-category-editor.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) $(libevolution_util_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o libevolution_util_la-e-category-editor.lo `test -f 'e-category-editor.c' || echo '$(srcdir)/'`e-category-editor.c
libevolution_util_la-e-cell-checkbox.lo: e-cell-checkbox.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libevolution_util_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT libevolution_util_la-e-cell-checkbox.lo -MD -MP -MF $(DEPDIR)/libevolution_util_la-e-cell-checkbox.Tpo -c -o libevolution_util_la-e-cell-checkbox.lo `test -f 'e-cell-checkbox.c' || echo '$(srcdir)/'`e-cell-checkbox.c
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libevolution_util_la-e-cell-checkbox.Tpo $(DEPDIR)/libevolution_util_la-e-cell-checkbox.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='e-cell-checkbox.c' object='libevolution_util_la-e-cell-checkbox.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) $(libevolution_util_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o libevolution_util_la-e-cell-checkbox.lo `test -f 'e-cell-checkbox.c' || echo '$(srcdir)/'`e-cell-checkbox.c
libevolution_util_la-e-cell-combo.lo: e-cell-combo.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libevolution_util_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT libevolution_util_la-e-cell-combo.lo -MD -MP -MF $(DEPDIR)/libevolution_util_la-e-cell-combo.Tpo -c -o libevolution_util_la-e-cell-combo.lo `test -f 'e-cell-combo.c' || echo '$(srcdir)/'`e-cell-combo.c
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libevolution_util_la-e-cell-combo.Tpo $(DEPDIR)/libevolution_util_la-e-cell-combo.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='e-cell-combo.c' object='libevolution_util_la-e-cell-combo.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) $(libevolution_util_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o libevolution_util_la-e-cell-combo.lo `test -f 'e-cell-combo.c' || echo '$(srcdir)/'`e-cell-combo.c
libevolution_util_la-e-cell-date-edit.lo: e-cell-date-edit.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libevolution_util_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT libevolution_util_la-e-cell-date-edit.lo -MD -MP -MF $(DEPDIR)/libevolution_util_la-e-cell-date-edit.Tpo -c -o libevolution_util_la-e-cell-date-edit.lo `test -f 'e-cell-date-edit.c' || echo '$(srcdir)/'`e-cell-date-edit.c
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libevolution_util_la-e-cell-date-edit.Tpo $(DEPDIR)/libevolution_util_la-e-cell-date-edit.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='e-cell-date-edit.c' object='libevolution_util_la-e-cell-date-edit.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) $(libevolution_util_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o libevolution_util_la-e-cell-date-edit.lo `test -f 'e-cell-date-edit.c' || echo '$(srcdir)/'`e-cell-date-edit.c
libevolution_util_la-e-cell-date.lo: e-cell-date.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libevolution_util_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT libevolution_util_la-e-cell-date.lo -MD -MP -MF $(DEPDIR)/libevolution_util_la-e-cell-date.Tpo -c -o libevolution_util_la-e-cell-date.lo `test -f 'e-cell-date.c' || echo '$(srcdir)/'`e-cell-date.c
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libevolution_util_la-e-cell-date.Tpo $(DEPDIR)/libevolution_util_la-e-cell-date.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='e-cell-date.c' object='libevolution_util_la-e-cell-date.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) $(libevolution_util_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o libevolution_util_la-e-cell-date.lo `test -f 'e-cell-date.c' || echo '$(srcdir)/'`e-cell-date.c
libevolution_util_la-e-cell-hbox.lo: e-cell-hbox.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libevolution_util_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT libevolution_util_la-e-cell-hbox.lo -MD -MP -MF $(DEPDIR)/libevolution_util_la-e-cell-hbox.Tpo -c -o libevolution_util_la-e-cell-hbox.lo `test -f 'e-cell-hbox.c' || echo '$(srcdir)/'`e-cell-hbox.c
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libevolution_util_la-e-cell-hbox.Tpo $(DEPDIR)/libevolution_util_la-e-cell-hbox.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='e-cell-hbox.c' object='libevolution_util_la-e-cell-hbox.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) $(libevolution_util_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o libevolution_util_la-e-cell-hbox.lo `test -f 'e-cell-hbox.c' || echo '$(srcdir)/'`e-cell-hbox.c
libevolution_util_la-e-cell-number.lo: e-cell-number.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libevolution_util_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT libevolution_util_la-e-cell-number.lo -MD -MP -MF $(DEPDIR)/libevolution_util_la-e-cell-number.Tpo -c -o libevolution_util_la-e-cell-number.lo `test -f 'e-cell-number.c' || echo '$(srcdir)/'`e-cell-number.c
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libevolution_util_la-e-cell-number.Tpo $(DEPDIR)/libevolution_util_la-e-cell-number.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='e-cell-number.c' object='libevolution_util_la-e-cell-number.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) $(libevolution_util_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o libevolution_util_la-e-cell-number.lo `test -f 'e-cell-number.c' || echo '$(srcdir)/'`e-cell-number.c
libevolution_util_la-e-cell-percent.lo: e-cell-percent.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libevolution_util_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT libevolution_util_la-e-cell-percent.lo -MD -MP -MF $(DEPDIR)/libevolution_util_la-e-cell-percent.Tpo -c -o libevolution_util_la-e-cell-percent.lo `test -f 'e-cell-percent.c' || echo '$(srcdir)/'`e-cell-percent.c
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libevolution_util_la-e-cell-percent.Tpo $(DEPDIR)/libevolution_util_la-e-cell-percent.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='e-cell-percent.c' object='libevolution_util_la-e-cell-percent.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) $(libevolution_util_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o libevolution_util_la-e-cell-percent.lo `test -f 'e-cell-percent.c' || echo '$(srcdir)/'`e-cell-percent.c
libevolution_util_la-e-cell-pixbuf.lo: e-cell-pixbuf.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libevolution_util_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT libevolution_util_la-e-cell-pixbuf.lo -MD -MP -MF $(DEPDIR)/libevolution_util_la-e-cell-pixbuf.Tpo -c -o libevolution_util_la-e-cell-pixbuf.lo `test -f 'e-cell-pixbuf.c' || echo '$(srcdir)/'`e-cell-pixbuf.c
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libevolution_util_la-e-cell-pixbuf.Tpo $(DEPDIR)/libevolution_util_la-e-cell-pixbuf.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='e-cell-pixbuf.c' object='libevolution_util_la-e-cell-pixbuf.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) $(libevolution_util_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o libevolution_util_la-e-cell-pixbuf.lo `test -f 'e-cell-pixbuf.c' || echo '$(srcdir)/'`e-cell-pixbuf.c
libevolution_util_la-e-cell-popup.lo: e-cell-popup.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libevolution_util_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT libevolution_util_la-e-cell-popup.lo -MD -MP -MF $(DEPDIR)/libevolution_util_la-e-cell-popup.Tpo -c -o libevolution_util_la-e-cell-popup.lo `test -f 'e-cell-popup.c' || echo '$(srcdir)/'`e-cell-popup.c
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libevolution_util_la-e-cell-popup.Tpo $(DEPDIR)/libevolution_util_la-e-cell-popup.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='e-cell-popup.c' object='libevolution_util_la-e-cell-popup.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) $(libevolution_util_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o libevolution_util_la-e-cell-popup.lo `test -f 'e-cell-popup.c' || echo '$(srcdir)/'`e-cell-popup.c
libevolution_util_la-e-cell-renderer-color.lo: e-cell-renderer-color.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libevolution_util_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT libevolution_util_la-e-cell-renderer-color.lo -MD -MP -MF $(DEPDIR)/libevolution_util_la-e-cell-renderer-color.Tpo -c -o libevolution_util_la-e-cell-renderer-color.lo `test -f 'e-cell-renderer-color.c' || echo '$(srcdir)/'`e-cell-renderer-color.c
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libevolution_util_la-e-cell-renderer-color.Tpo $(DEPDIR)/libevolution_util_la-e-cell-renderer-color.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='e-cell-renderer-color.c' object='libevolution_util_la-e-cell-renderer-color.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) $(libevolution_util_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o libevolution_util_la-e-cell-renderer-color.lo `test -f 'e-cell-renderer-color.c' || echo '$(srcdir)/'`e-cell-renderer-color.c
libevolution_util_la-e-cell-size.lo: e-cell-size.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libevolution_util_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT libevolution_util_la-e-cell-size.lo -MD -MP -MF $(DEPDIR)/libevolution_util_la-e-cell-size.Tpo -c -o libevolution_util_la-e-cell-size.lo `test -f 'e-cell-size.c' || echo '$(srcdir)/'`e-cell-size.c
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libevolution_util_la-e-cell-size.Tpo $(DEPDIR)/libevolution_util_la-e-cell-size.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='e-cell-size.c' object='libevolution_util_la-e-cell-size.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) $(libevolution_util_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o libevolution_util_la-e-cell-size.lo `test -f 'e-cell-size.c' || echo '$(srcdir)/'`e-cell-size.c
libevolution_util_la-e-cell-text.lo: e-cell-text.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libevolution_util_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT libevolution_util_la-e-cell-text.lo -MD -MP -MF $(DEPDIR)/libevolution_util_la-e-cell-text.Tpo -c -o libevolution_util_la-e-cell-text.lo `test -f 'e-cell-text.c' || echo '$(srcdir)/'`e-cell-text.c
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libevolution_util_la-e-cell-text.Tpo $(DEPDIR)/libevolution_util_la-e-cell-text.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='e-cell-text.c' object='libevolution_util_la-e-cell-text.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) $(libevolution_util_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o libevolution_util_la-e-cell-text.lo `test -f 'e-cell-text.c' || echo '$(srcdir)/'`e-cell-text.c
libevolution_util_la-e-cell-toggle.lo: e-cell-toggle.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libevolution_util_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT libevolution_util_la-e-cell-toggle.lo -MD -MP -MF $(DEPDIR)/libevolution_util_la-e-cell-toggle.Tpo -c -o libevolution_util_la-e-cell-toggle.lo `test -f 'e-cell-toggle.c' || echo '$(srcdir)/'`e-cell-toggle.c
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libevolution_util_la-e-cell-toggle.Tpo $(DEPDIR)/libevolution_util_la-e-cell-toggle.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='e-cell-toggle.c' object='libevolution_util_la-e-cell-toggle.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) $(libevolution_util_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o libevolution_util_la-e-cell-toggle.lo `test -f 'e-cell-toggle.c' || echo '$(srcdir)/'`e-cell-toggle.c
libevolution_util_la-e-cell-tree.lo: e-cell-tree.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libevolution_util_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT libevolution_util_la-e-cell-tree.lo -MD -MP -MF $(DEPDIR)/libevolution_util_la-e-cell-tree.Tpo -c -o libevolution_util_la-e-cell-tree.lo `test -f 'e-cell-tree.c' || echo '$(srcdir)/'`e-cell-tree.c
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libevolution_util_la-e-cell-tree.Tpo $(DEPDIR)/libevolution_util_la-e-cell-tree.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='e-cell-tree.c' object='libevolution_util_la-e-cell-tree.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) $(libevolution_util_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o libevolution_util_la-e-cell-tree.lo `test -f 'e-cell-tree.c' || echo '$(srcdir)/'`e-cell-tree.c
libevolution_util_la-e-cell-vbox.lo: e-cell-vbox.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libevolution_util_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT libevolution_util_la-e-cell-vbox.lo -MD -MP -MF $(DEPDIR)/libevolution_util_la-e-cell-vbox.Tpo -c -o libevolution_util_la-e-cell-vbox.lo `test -f 'e-cell-vbox.c' || echo '$(srcdir)/'`e-cell-vbox.c
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libevolution_util_la-e-cell-vbox.Tpo $(DEPDIR)/libevolution_util_la-e-cell-vbox.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='e-cell-vbox.c' object='libevolution_util_la-e-cell-vbox.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) $(libevolution_util_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o libevolution_util_la-e-cell-vbox.lo `test -f 'e-cell-vbox.c' || echo '$(srcdir)/'`e-cell-vbox.c
libevolution_util_la-e-cell.lo: e-cell.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libevolution_util_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT libevolution_util_la-e-cell.lo -MD -MP -MF $(DEPDIR)/libevolution_util_la-e-cell.Tpo -c -o libevolution_util_la-e-cell.lo `test -f 'e-cell.c' || echo '$(srcdir)/'`e-cell.c
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libevolution_util_la-e-cell.Tpo $(DEPDIR)/libevolution_util_la-e-cell.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='e-cell.c' object='libevolution_util_la-e-cell.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) $(libevolution_util_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o libevolution_util_la-e-cell.lo `test -f 'e-cell.c' || echo '$(srcdir)/'`e-cell.c
libevolution_util_la-e-charset-combo-box.lo: e-charset-combo-box.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libevolution_util_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT libevolution_util_la-e-charset-combo-box.lo -MD -MP -MF $(DEPDIR)/libevolution_util_la-e-charset-combo-box.Tpo -c -o libevolution_util_la-e-charset-combo-box.lo `test -f 'e-charset-combo-box.c' || echo '$(srcdir)/'`e-charset-combo-box.c
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libevolution_util_la-e-charset-combo-box.Tpo $(DEPDIR)/libevolution_util_la-e-charset-combo-box.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='e-charset-combo-box.c' object='libevolution_util_la-e-charset-combo-box.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) $(libevolution_util_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o libevolution_util_la-e-charset-combo-box.lo `test -f 'e-charset-combo-box.c' || echo '$(srcdir)/'`e-charset-combo-box.c
libevolution_util_la-e-charset.lo: e-charset.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libevolution_util_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT libevolution_util_la-e-charset.lo -MD -MP -MF $(DEPDIR)/libevolution_util_la-e-charset.Tpo -c -o libevolution_util_la-e-charset.lo `test -f 'e-charset.c' || echo '$(srcdir)/'`e-charset.c
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libevolution_util_la-e-charset.Tpo $(DEPDIR)/libevolution_util_la-e-charset.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='e-charset.c' object='libevolution_util_la-e-charset.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) $(libevolution_util_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o libevolution_util_la-e-charset.lo `test -f 'e-charset.c' || echo '$(srcdir)/'`e-charset.c
libevolution_util_la-e-client-cache.lo: e-client-cache.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libevolution_util_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT libevolution_util_la-e-client-cache.lo -MD -MP -MF $(DEPDIR)/libevolution_util_la-e-client-cache.Tpo -c -o libevolution_util_la-e-client-cache.lo `test -f 'e-client-cache.c' || echo '$(srcdir)/'`e-client-cache.c
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libevolution_util_la-e-client-cache.Tpo $(DEPDIR)/libevolution_util_la-e-client-cache.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='e-client-cache.c' object='libevolution_util_la-e-client-cache.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) $(libevolution_util_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o libevolution_util_la-e-client-cache.lo `test -f 'e-client-cache.c' || echo '$(srcdir)/'`e-client-cache.c
libevolution_util_la-e-client-combo-box.lo: e-client-combo-box.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libevolution_util_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT libevolution_util_la-e-client-combo-box.lo -MD -MP -MF $(DEPDIR)/libevolution_util_la-e-client-combo-box.Tpo -c -o libevolution_util_la-e-client-combo-box.lo `test -f 'e-client-combo-box.c' || echo '$(srcdir)/'`e-client-combo-box.c
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libevolution_util_la-e-client-combo-box.Tpo $(DEPDIR)/libevolution_util_la-e-client-combo-box.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='e-client-combo-box.c' object='libevolution_util_la-e-client-combo-box.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) $(libevolution_util_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o libevolution_util_la-e-client-combo-box.lo `test -f 'e-client-combo-box.c' || echo '$(srcdir)/'`e-client-combo-box.c
libevolution_util_la-e-client-selector.lo: e-client-selector.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libevolution_util_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT libevolution_util_la-e-client-selector.lo -MD -MP -MF $(DEPDIR)/libevolution_util_la-e-client-selector.Tpo -c -o libevolution_util_la-e-client-selector.lo `test -f 'e-client-selector.c' || echo '$(srcdir)/'`e-client-selector.c
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libevolution_util_la-e-client-selector.Tpo $(DEPDIR)/libevolution_util_la-e-client-selector.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='e-client-selector.c' object='libevolution_util_la-e-client-selector.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) $(libevolution_util_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o libevolution_util_la-e-client-selector.lo `test -f 'e-client-selector.c' || echo '$(srcdir)/'`e-client-selector.c
libevolution_util_la-e-config.lo: e-config.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libevolution_util_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT libevolution_util_la-e-config.lo -MD -MP -MF $(DEPDIR)/libevolution_util_la-e-config.Tpo -c -o libevolution_util_la-e-config.lo `test -f 'e-config.c' || echo '$(srcdir)/'`e-config.c
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libevolution_util_la-e-config.Tpo $(DEPDIR)/libevolution_util_la-e-config.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='e-config.c' object='libevolution_util_la-e-config.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) $(libevolution_util_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o libevolution_util_la-e-config.lo `test -f 'e-config.c' || echo '$(srcdir)/'`e-config.c
libevolution_util_la-e-contact-store.lo: e-contact-store.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libevolution_util_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT libevolution_util_la-e-contact-store.lo -MD -MP -MF $(DEPDIR)/libevolution_util_la-e-contact-store.Tpo -c -o libevolution_util_la-e-contact-store.lo `test -f 'e-contact-store.c' || echo '$(srcdir)/'`e-contact-store.c
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libevolution_util_la-e-contact-store.Tpo $(DEPDIR)/libevolution_util_la-e-contact-store.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='e-contact-store.c' object='libevolution_util_la-e-contact-store.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) $(libevolution_util_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o libevolution_util_la-e-contact-store.lo `test -f 'e-contact-store.c' || echo '$(srcdir)/'`e-contact-store.c
libevolution_util_la-e-data-capture.lo: e-data-capture.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libevolution_util_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT libevolution_util_la-e-data-capture.lo -MD -MP -MF $(DEPDIR)/libevolution_util_la-e-data-capture.Tpo -c -o libevolution_util_la-e-data-capture.lo `test -f 'e-data-capture.c' || echo '$(srcdir)/'`e-data-capture.c
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libevolution_util_la-e-data-capture.Tpo $(DEPDIR)/libevolution_util_la-e-data-capture.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='e-data-capture.c' object='libevolution_util_la-e-data-capture.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) $(libevolution_util_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o libevolution_util_la-e-data-capture.lo `test -f 'e-data-capture.c' || echo '$(srcdir)/'`e-data-capture.c
libevolution_util_la-e-dateedit.lo: e-dateedit.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libevolution_util_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT libevolution_util_la-e-dateedit.lo -MD -MP -MF $(DEPDIR)/libevolution_util_la-e-dateedit.Tpo -c -o libevolution_util_la-e-dateedit.lo `test -f 'e-dateedit.c' || echo '$(srcdir)/'`e-dateedit.c
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libevolution_util_la-e-dateedit.Tpo $(DEPDIR)/libevolution_util_la-e-dateedit.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='e-dateedit.c' object='libevolution_util_la-e-dateedit.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) $(libevolution_util_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o libevolution_util_la-e-dateedit.lo `test -f 'e-dateedit.c' || echo '$(srcdir)/'`e-dateedit.c
libevolution_util_la-e-datetime-format.lo: e-datetime-format.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libevolution_util_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT libevolution_util_la-e-datetime-format.lo -MD -MP -MF $(DEPDIR)/libevolution_util_la-e-datetime-format.Tpo -c -o libevolution_util_la-e-datetime-format.lo `test -f 'e-datetime-format.c' || echo '$(srcdir)/'`e-datetime-format.c
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libevolution_util_la-e-datetime-format.Tpo $(DEPDIR)/libevolution_util_la-e-datetime-format.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='e-datetime-format.c' object='libevolution_util_la-e-datetime-format.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) $(libevolution_util_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o libevolution_util_la-e-datetime-format.lo `test -f 'e-datetime-format.c' || echo '$(srcdir)/'`e-datetime-format.c
libevolution_util_la-e-destination-store.lo: e-destination-store.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libevolution_util_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT libevolution_util_la-e-destination-store.lo -MD -MP -MF $(DEPDIR)/libevolution_util_la-e-destination-store.Tpo -c -o libevolution_util_la-e-destination-store.lo `test -f 'e-destination-store.c' || echo '$(srcdir)/'`e-destination-store.c
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libevolution_util_la-e-destination-store.Tpo $(DEPDIR)/libevolution_util_la-e-destination-store.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='e-destination-store.c' object='libevolution_util_la-e-destination-store.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) $(libevolution_util_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o libevolution_util_la-e-destination-store.lo `test -f 'e-destination-store.c' || echo '$(srcdir)/'`e-destination-store.c
libevolution_util_la-e-dialog-utils.lo: e-dialog-utils.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libevolution_util_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT libevolution_util_la-e-dialog-utils.lo -MD -MP -MF $(DEPDIR)/libevolution_util_la-e-dialog-utils.Tpo -c -o libevolution_util_la-e-dialog-utils.lo `test -f 'e-dialog-utils.c' || echo '$(srcdir)/'`e-dialog-utils.c
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libevolution_util_la-e-dialog-utils.Tpo $(DEPDIR)/libevolution_util_la-e-dialog-utils.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='e-dialog-utils.c' object='libevolution_util_la-e-dialog-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) $(libevolution_util_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o libevolution_util_la-e-dialog-utils.lo `test -f 'e-dialog-utils.c' || echo '$(srcdir)/'`e-dialog-utils.c
libevolution_util_la-e-dialog-widgets.lo: e-dialog-widgets.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libevolution_util_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT libevolution_util_la-e-dialog-widgets.lo -MD -MP -MF $(DEPDIR)/libevolution_util_la-e-dialog-widgets.Tpo -c -o libevolution_util_la-e-dialog-widgets.lo `test -f 'e-dialog-widgets.c' || echo '$(srcdir)/'`e-dialog-widgets.c
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libevolution_util_la-e-dialog-widgets.Tpo $(DEPDIR)/libevolution_util_la-e-dialog-widgets.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='e-dialog-widgets.c' object='libevolution_util_la-e-dialog-widgets.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) $(libevolution_util_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o libevolution_util_la-e-dialog-widgets.lo `test -f 'e-dialog-widgets.c' || echo '$(srcdir)/'`e-dialog-widgets.c
libevolution_util_la-e-event.lo: e-event.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libevolution_util_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT libevolution_util_la-e-event.lo -MD -MP -MF $(DEPDIR)/libevolution_util_la-e-event.Tpo -c -o libevolution_util_la-e-event.lo `test -f 'e-event.c' || echo '$(srcdir)/'`e-event.c
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libevolution_util_la-e-event.Tpo $(DEPDIR)/libevolution_util_la-e-event.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='e-event.c' object='libevolution_util_la-e-event.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) $(libevolution_util_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o libevolution_util_la-e-event.lo `test -f 'e-event.c' || echo '$(srcdir)/'`e-event.c
libevolution_util_la-e-file-request.lo: e-file-request.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libevolution_util_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT libevolution_util_la-e-file-request.lo -MD -MP -MF $(DEPDIR)/libevolution_util_la-e-file-request.Tpo -c -o libevolution_util_la-e-file-request.lo `test -f 'e-file-request.c' || echo '$(srcdir)/'`e-file-request.c
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libevolution_util_la-e-file-request.Tpo $(DEPDIR)/libevolution_util_la-e-file-request.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='e-file-request.c' object='libevolution_util_la-e-file-request.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) $(libevolution_util_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o libevolution_util_la-e-file-request.lo `test -f 'e-file-request.c' || echo '$(srcdir)/'`e-file-request.c
libevolution_util_la-e-file-utils.lo: e-file-utils.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libevolution_util_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT libevolution_util_la-e-file-utils.lo -MD -MP -MF $(DEPDIR)/libevolution_util_la-e-file-utils.Tpo -c -o libevolution_util_la-e-file-utils.lo `test -f 'e-file-utils.c' || echo '$(srcdir)/'`e-file-utils.c
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libevolution_util_la-e-file-utils.Tpo $(DEPDIR)/libevolution_util_la-e-file-utils.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='e-file-utils.c' object='libevolution_util_la-e-file-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) $(libevolution_util_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o libevolution_util_la-e-file-utils.lo `test -f 'e-file-utils.c' || echo '$(srcdir)/'`e-file-utils.c
libevolution_util_la-e-filter-code.lo: e-filter-code.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libevolution_util_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT libevolution_util_la-e-filter-code.lo -MD -MP -MF $(DEPDIR)/libevolution_util_la-e-filter-code.Tpo -c -o libevolution_util_la-e-filter-code.lo `test -f 'e-filter-code.c' || echo '$(srcdir)/'`e-filter-code.c
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libevolution_util_la-e-filter-code.Tpo $(DEPDIR)/libevolution_util_la-e-filter-code.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='e-filter-code.c' object='libevolution_util_la-e-filter-code.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) $(libevolution_util_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o libevolution_util_la-e-filter-code.lo `test -f 'e-filter-code.c' || echo '$(srcdir)/'`e-filter-code.c
libevolution_util_la-e-filter-color.lo: e-filter-color.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libevolution_util_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT libevolution_util_la-e-filter-color.lo -MD -MP -MF $(DEPDIR)/libevolution_util_la-e-filter-color.Tpo -c -o libevolution_util_la-e-filter-color.lo `test -f 'e-filter-color.c' || echo '$(srcdir)/'`e-filter-color.c
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libevolution_util_la-e-filter-color.Tpo $(DEPDIR)/libevolution_util_la-e-filter-color.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='e-filter-color.c' object='libevolution_util_la-e-filter-color.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) $(libevolution_util_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o libevolution_util_la-e-filter-color.lo `test -f 'e-filter-color.c' || echo '$(srcdir)/'`e-filter-color.c
libevolution_util_la-e-filter-datespec.lo: e-filter-datespec.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libevolution_util_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT libevolution_util_la-e-filter-datespec.lo -MD -MP -MF $(DEPDIR)/libevolution_util_la-e-filter-datespec.Tpo -c -o libevolution_util_la-e-filter-datespec.lo `test -f 'e-filter-datespec.c' || echo '$(srcdir)/'`e-filter-datespec.c
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libevolution_util_la-e-filter-datespec.Tpo $(DEPDIR)/libevolution_util_la-e-filter-datespec.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='e-filter-datespec.c' object='libevolution_util_la-e-filter-datespec.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) $(libevolution_util_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o libevolution_util_la-e-filter-datespec.lo `test -f 'e-filter-datespec.c' || echo '$(srcdir)/'`e-filter-datespec.c
libevolution_util_la-e-filter-element.lo: e-filter-element.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libevolution_util_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT libevolution_util_la-e-filter-element.lo -MD -MP -MF $(DEPDIR)/libevolution_util_la-e-filter-element.Tpo -c -o libevolution_util_la-e-filter-element.lo `test -f 'e-filter-element.c' || echo '$(srcdir)/'`e-filter-element.c
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libevolution_util_la-e-filter-element.Tpo $(DEPDIR)/libevolution_util_la-e-filter-element.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='e-filter-element.c' object='libevolution_util_la-e-filter-element.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) $(libevolution_util_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o libevolution_util_la-e-filter-element.lo `test -f 'e-filter-element.c' || echo '$(srcdir)/'`e-filter-element.c
libevolution_util_la-e-filter-file.lo: e-filter-file.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libevolution_util_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT libevolution_util_la-e-filter-file.lo -MD -MP -MF $(DEPDIR)/libevolution_util_la-e-filter-file.Tpo -c -o libevolution_util_la-e-filter-file.lo `test -f 'e-filter-file.c' || echo '$(srcdir)/'`e-filter-file.c
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libevolution_util_la-e-filter-file.Tpo $(DEPDIR)/libevolution_util_la-e-filter-file.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='e-filter-file.c' object='libevolution_util_la-e-filter-file.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) $(libevolution_util_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o libevolution_util_la-e-filter-file.lo `test -f 'e-filter-file.c' || echo '$(srcdir)/'`e-filter-file.c
libevolution_util_la-e-filter-input.lo: e-filter-input.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libevolution_util_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT libevolution_util_la-e-filter-input.lo -MD -MP -MF $(DEPDIR)/libevolution_util_la-e-filter-input.Tpo -c -o libevolution_util_la-e-filter-input.lo `test -f 'e-filter-input.c' || echo '$(srcdir)/'`e-filter-input.c
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libevolution_util_la-e-filter-input.Tpo $(DEPDIR)/libevolution_util_la-e-filter-input.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='e-filter-input.c' object='libevolution_util_la-e-filter-input.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) $(libevolution_util_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o libevolution_util_la-e-filter-input.lo `test -f 'e-filter-input.c' || echo '$(srcdir)/'`e-filter-input.c
libevolution_util_la-e-filter-int.lo: e-filter-int.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libevolution_util_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT libevolution_util_la-e-filter-int.lo -MD -MP -MF $(DEPDIR)/libevolution_util_la-e-filter-int.Tpo -c -o libevolution_util_la-e-filter-int.lo `test -f 'e-filter-int.c' || echo '$(srcdir)/'`e-filter-int.c
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libevolution_util_la-e-filter-int.Tpo $(DEPDIR)/libevolution_util_la-e-filter-int.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='e-filter-int.c' object='libevolution_util_la-e-filter-int.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) $(libevolution_util_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o libevolution_util_la-e-filter-int.lo `test -f 'e-filter-int.c' || echo '$(srcdir)/'`e-filter-int.c
libevolution_util_la-e-filter-option.lo: e-filter-option.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libevolution_util_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT libevolution_util_la-e-filter-option.lo -MD -MP -MF $(DEPDIR)/libevolution_util_la-e-filter-option.Tpo -c -o libevolution_util_la-e-filter-option.lo `test -f 'e-filter-option.c' || echo '$(srcdir)/'`e-filter-option.c
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libevolution_util_la-e-filter-option.Tpo $(DEPDIR)/libevolution_util_la-e-filter-option.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='e-filter-option.c' object='libevolution_util_la-e-filter-option.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) $(libevolution_util_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o libevolution_util_la-e-filter-option.lo `test -f 'e-filter-option.c' || echo '$(srcdir)/'`e-filter-option.c
libevolution_util_la-e-filter-part.lo: e-filter-part.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libevolution_util_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT libevolution_util_la-e-filter-part.lo -MD -MP -MF $(DEPDIR)/libevolution_util_la-e-filter-part.Tpo -c -o libevolution_util_la-e-filter-part.lo `test -f 'e-filter-part.c' || echo '$(srcdir)/'`e-filter-part.c
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libevolution_util_la-e-filter-part.Tpo $(DEPDIR)/libevolution_util_la-e-filter-part.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='e-filter-part.c' object='libevolution_util_la-e-filter-part.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) $(libevolution_util_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o libevolution_util_la-e-filter-part.lo `test -f 'e-filter-part.c' || echo '$(srcdir)/'`e-filter-part.c
libevolution_util_la-e-filter-rule.lo: e-filter-rule.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libevolution_util_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT libevolution_util_la-e-filter-rule.lo -MD -MP -MF $(DEPDIR)/libevolution_util_la-e-filter-rule.Tpo -c -o libevolution_util_la-e-filter-rule.lo `test -f 'e-filter-rule.c' || echo '$(srcdir)/'`e-filter-rule.c
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libevolution_util_la-e-filter-rule.Tpo $(DEPDIR)/libevolution_util_la-e-filter-rule.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='e-filter-rule.c' object='libevolution_util_la-e-filter-rule.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) $(libevolution_util_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o libevolution_util_la-e-filter-rule.lo `test -f 'e-filter-rule.c' || echo '$(srcdir)/'`e-filter-rule.c
libevolution_util_la-e-focus-tracker.lo: e-focus-tracker.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libevolution_util_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT libevolution_util_la-e-focus-tracker.lo -MD -MP -MF $(DEPDIR)/libevolution_util_la-e-focus-tracker.Tpo -c -o libevolution_util_la-e-focus-tracker.lo `test -f 'e-focus-tracker.c' || echo '$(srcdir)/'`e-focus-tracker.c
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libevolution_util_la-e-focus-tracker.Tpo $(DEPDIR)/libevolution_util_la-e-focus-tracker.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='e-focus-tracker.c' object='libevolution_util_la-e-focus-tracker.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) $(libevolution_util_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o libevolution_util_la-e-focus-tracker.lo `test -f 'e-focus-tracker.c' || echo '$(srcdir)/'`e-focus-tracker.c
libevolution_util_la-e-html-utils.lo: e-html-utils.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libevolution_util_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT libevolution_util_la-e-html-utils.lo -MD -MP -MF $(DEPDIR)/libevolution_util_la-e-html-utils.Tpo -c -o libevolution_util_la-e-html-utils.lo `test -f 'e-html-utils.c' || echo '$(srcdir)/'`e-html-utils.c
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libevolution_util_la-e-html-utils.Tpo $(DEPDIR)/libevolution_util_la-e-html-utils.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='e-html-utils.c' object='libevolution_util_la-e-html-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) $(libevolution_util_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o libevolution_util_la-e-html-utils.lo `test -f 'e-html-utils.c' || echo '$(srcdir)/'`e-html-utils.c
libevolution_util_la-e-icon-factory.lo: e-icon-factory.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libevolution_util_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT libevolution_util_la-e-icon-factory.lo -MD -MP -MF $(DEPDIR)/libevolution_util_la-e-icon-factory.Tpo -c -o libevolution_util_la-e-icon-factory.lo `test -f 'e-icon-factory.c' || echo '$(srcdir)/'`e-icon-factory.c
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libevolution_util_la-e-icon-factory.Tpo $(DEPDIR)/libevolution_util_la-e-icon-factory.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='e-icon-factory.c' object='libevolution_util_la-e-icon-factory.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) $(libevolution_util_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o libevolution_util_la-e-icon-factory.lo `test -f 'e-icon-factory.c' || echo '$(srcdir)/'`e-icon-factory.c
libevolution_util_la-e-image-chooser.lo: e-image-chooser.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libevolution_util_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT libevolution_util_la-e-image-chooser.lo -MD -MP -MF $(DEPDIR)/libevolution_util_la-e-image-chooser.Tpo -c -o libevolution_util_la-e-image-chooser.lo `test -f 'e-image-chooser.c' || echo '$(srcdir)/'`e-image-chooser.c
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libevolution_util_la-e-image-chooser.Tpo $(DEPDIR)/libevolution_util_la-e-image-chooser.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='e-image-chooser.c' object='libevolution_util_la-e-image-chooser.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) $(libevolution_util_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o libevolution_util_la-e-image-chooser.lo `test -f 'e-image-chooser.c' || echo '$(srcdir)/'`e-image-chooser.c
libevolution_util_la-e-import-assistant.lo: e-import-assistant.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libevolution_util_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT libevolution_util_la-e-import-assistant.lo -MD -MP -MF $(DEPDIR)/libevolution_util_la-e-import-assistant.Tpo -c -o libevolution_util_la-e-import-assistant.lo `test -f 'e-import-assistant.c' || echo '$(srcdir)/'`e-import-assistant.c
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libevolution_util_la-e-import-assistant.Tpo $(DEPDIR)/libevolution_util_la-e-import-assistant.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='e-import-assistant.c' object='libevolution_util_la-e-import-assistant.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) $(libevolution_util_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o libevolution_util_la-e-import-assistant.lo `test -f 'e-import-assistant.c' || echo '$(srcdir)/'`e-import-assistant.c
libevolution_util_la-e-import.lo: e-import.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libevolution_util_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT libevolution_util_la-e-import.lo -MD -MP -MF $(DEPDIR)/libevolution_util_la-e-import.Tpo -c -o libevolution_util_la-e-import.lo `test -f 'e-import.c' || echo '$(srcdir)/'`e-import.c
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libevolution_util_la-e-import.Tpo $(DEPDIR)/libevolution_util_la-e-import.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='e-import.c' object='libevolution_util_la-e-import.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) $(libevolution_util_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o libevolution_util_la-e-import.lo `test -f 'e-import.c' || echo '$(srcdir)/'`e-import.c
libevolution_util_la-e-interval-chooser.lo: e-interval-chooser.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libevolution_util_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT libevolution_util_la-e-interval-chooser.lo -MD -MP -MF $(DEPDIR)/libevolution_util_la-e-interval-chooser.Tpo -c -o libevolution_util_la-e-interval-chooser.lo `test -f 'e-interval-chooser.c' || echo '$(srcdir)/'`e-interval-chooser.c
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libevolution_util_la-e-interval-chooser.Tpo $(DEPDIR)/libevolution_util_la-e-interval-chooser.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='e-interval-chooser.c' object='libevolution_util_la-e-interval-chooser.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) $(libevolution_util_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o libevolution_util_la-e-interval-chooser.lo `test -f 'e-interval-chooser.c' || echo '$(srcdir)/'`e-interval-chooser.c
libevolution_util_la-e-mail-identity-combo-box.lo: e-mail-identity-combo-box.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libevolution_util_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT libevolution_util_la-e-mail-identity-combo-box.lo -MD -MP -MF $(DEPDIR)/libevolution_util_la-e-mail-identity-combo-box.Tpo -c -o libevolution_util_la-e-mail-identity-combo-box.lo `test -f 'e-mail-identity-combo-box.c' || echo '$(srcdir)/'`e-mail-identity-combo-box.c
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libevolution_util_la-e-mail-identity-combo-box.Tpo $(DEPDIR)/libevolution_util_la-e-mail-identity-combo-box.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='e-mail-identity-combo-box.c' object='libevolution_util_la-e-mail-identity-combo-box.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) $(libevolution_util_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o libevolution_util_la-e-mail-identity-combo-box.lo `test -f 'e-mail-identity-combo-box.c' || echo '$(srcdir)/'`e-mail-identity-combo-box.c
libevolution_util_la-e-mail-signature-combo-box.lo: e-mail-signature-combo-box.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libevolution_util_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT libevolution_util_la-e-mail-signature-combo-box.lo -MD -MP -MF $(DEPDIR)/libevolution_util_la-e-mail-signature-combo-box.Tpo -c -o libevolution_util_la-e-mail-signature-combo-box.lo `test -f 'e-mail-signature-combo-box.c' || echo '$(srcdir)/'`e-mail-signature-combo-box.c
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libevolution_util_la-e-mail-signature-combo-box.Tpo $(DEPDIR)/libevolution_util_la-e-mail-signature-combo-box.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='e-mail-signature-combo-box.c' object='libevolution_util_la-e-mail-signature-combo-box.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) $(libevolution_util_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o libevolution_util_la-e-mail-signature-combo-box.lo `test -f 'e-mail-signature-combo-box.c' || echo '$(srcdir)/'`e-mail-signature-combo-box.c
libevolution_util_la-e-mail-signature-editor.lo: e-mail-signature-editor.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libevolution_util_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT libevolution_util_la-e-mail-signature-editor.lo -MD -MP -MF $(DEPDIR)/libevolution_util_la-e-mail-signature-editor.Tpo -c -o libevolution_util_la-e-mail-signature-editor.lo `test -f 'e-mail-signature-editor.c' || echo '$(srcdir)/'`e-mail-signature-editor.c
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libevolution_util_la-e-mail-signature-editor.Tpo $(DEPDIR)/libevolution_util_la-e-mail-signature-editor.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='e-mail-signature-editor.c' object='libevolution_util_la-e-mail-signature-editor.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) $(libevolution_util_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o libevolution_util_la-e-mail-signature-editor.lo `test -f 'e-mail-signature-editor.c' || echo '$(srcdir)/'`e-mail-signature-editor.c
libevolution_util_la-e-mail-signature-manager.lo: e-mail-signature-manager.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libevolution_util_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT libevolution_util_la-e-mail-signature-manager.lo -MD -MP -MF $(DEPDIR)/libevolution_util_la-e-mail-signature-manager.Tpo -c -o libevolution_util_la-e-mail-signature-manager.lo `test -f 'e-mail-signature-manager.c' || echo '$(srcdir)/'`e-mail-signature-manager.c
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libevolution_util_la-e-mail-signature-manager.Tpo $(DEPDIR)/libevolution_util_la-e-mail-signature-manager.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='e-mail-signature-manager.c' object='libevolution_util_la-e-mail-signature-manager.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) $(libevolution_util_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o libevolution_util_la-e-mail-signature-manager.lo `test -f 'e-mail-signature-manager.c' || echo '$(srcdir)/'`e-mail-signature-manager.c
libevolution_util_la-e-mail-signature-preview.lo: e-mail-signature-preview.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libevolution_util_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT libevolution_util_la-e-mail-signature-preview.lo -MD -MP -MF $(DEPDIR)/libevolution_util_la-e-mail-signature-preview.Tpo -c -o libevolution_util_la-e-mail-signature-preview.lo `test -f 'e-mail-signature-preview.c' || echo '$(srcdir)/'`e-mail-signature-preview.c
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libevolution_util_la-e-mail-signature-preview.Tpo $(DEPDIR)/libevolution_util_la-e-mail-signature-preview.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='e-mail-signature-preview.c' object='libevolution_util_la-e-mail-signature-preview.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) $(libevolution_util_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o libevolution_util_la-e-mail-signature-preview.lo `test -f 'e-mail-signature-preview.c' || echo '$(srcdir)/'`e-mail-signature-preview.c
libevolution_util_la-e-mail-signature-script-dialog.lo: e-mail-signature-script-dialog.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libevolution_util_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT libevolution_util_la-e-mail-signature-script-dialog.lo -MD -MP -MF $(DEPDIR)/libevolution_util_la-e-mail-signature-script-dialog.Tpo -c -o libevolution_util_la-e-mail-signature-script-dialog.lo `test -f 'e-mail-signature-script-dialog.c' || echo '$(srcdir)/'`e-mail-signature-script-dialog.c
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libevolution_util_la-e-mail-signature-script-dialog.Tpo $(DEPDIR)/libevolution_util_la-e-mail-signature-script-dialog.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='e-mail-signature-script-dialog.c' object='libevolution_util_la-e-mail-signature-script-dialog.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) $(libevolution_util_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o libevolution_util_la-e-mail-signature-script-dialog.lo `test -f 'e-mail-signature-script-dialog.c' || echo '$(srcdir)/'`e-mail-signature-script-dialog.c
libevolution_util_la-e-mail-signature-tree-view.lo: e-mail-signature-tree-view.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libevolution_util_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT libevolution_util_la-e-mail-signature-tree-view.lo -MD -MP -MF $(DEPDIR)/libevolution_util_la-e-mail-signature-tree-view.Tpo -c -o libevolution_util_la-e-mail-signature-tree-view.lo `test -f 'e-mail-signature-tree-view.c' || echo '$(srcdir)/'`e-mail-signature-tree-view.c
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libevolution_util_la-e-mail-signature-tree-view.Tpo $(DEPDIR)/libevolution_util_la-e-mail-signature-tree-view.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='e-mail-signature-tree-view.c' object='libevolution_util_la-e-mail-signature-tree-view.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) $(libevolution_util_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o libevolution_util_la-e-mail-signature-tree-view.lo `test -f 'e-mail-signature-tree-view.c' || echo '$(srcdir)/'`e-mail-signature-tree-view.c
libevolution_util_la-e-map.lo: e-map.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libevolution_util_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT libevolution_util_la-e-map.lo -MD -MP -MF $(DEPDIR)/libevolution_util_la-e-map.Tpo -c -o libevolution_util_la-e-map.lo `test -f 'e-map.c' || echo '$(srcdir)/'`e-map.c
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libevolution_util_la-e-map.Tpo $(DEPDIR)/libevolution_util_la-e-map.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='e-map.c' object='libevolution_util_la-e-map.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) $(libevolution_util_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o libevolution_util_la-e-map.lo `test -f 'e-map.c' || echo '$(srcdir)/'`e-map.c
libevolution_util_la-e-marshal.lo: e-marshal.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libevolution_util_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT libevolution_util_la-e-marshal.lo -MD -MP -MF $(DEPDIR)/libevolution_util_la-e-marshal.Tpo -c -o libevolution_util_la-e-marshal.lo `test -f 'e-marshal.c' || echo '$(srcdir)/'`e-marshal.c
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libevolution_util_la-e-marshal.Tpo $(DEPDIR)/libevolution_util_la-e-marshal.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='e-marshal.c' object='libevolution_util_la-e-marshal.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) $(libevolution_util_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o libevolution_util_la-e-marshal.lo `test -f 'e-marshal.c' || echo '$(srcdir)/'`e-marshal.c
libevolution_util_la-e-menu-tool-action.lo: e-menu-tool-action.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libevolution_util_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT libevolution_util_la-e-menu-tool-action.lo -MD -MP -MF $(DEPDIR)/libevolution_util_la-e-menu-tool-action.Tpo -c -o libevolution_util_la-e-menu-tool-action.lo `test -f 'e-menu-tool-action.c' || echo '$(srcdir)/'`e-menu-tool-action.c
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libevolution_util_la-e-menu-tool-action.Tpo $(DEPDIR)/libevolution_util_la-e-menu-tool-action.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='e-menu-tool-action.c' object='libevolution_util_la-e-menu-tool-action.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) $(libevolution_util_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o libevolution_util_la-e-menu-tool-action.lo `test -f 'e-menu-tool-action.c' || echo '$(srcdir)/'`e-menu-tool-action.c
libevolution_util_la-e-menu-tool-button.lo: e-menu-tool-button.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libevolution_util_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT libevolution_util_la-e-menu-tool-button.lo -MD -MP -MF $(DEPDIR)/libevolution_util_la-e-menu-tool-button.Tpo -c -o libevolution_util_la-e-menu-tool-button.lo `test -f 'e-menu-tool-button.c' || echo '$(srcdir)/'`e-menu-tool-button.c
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libevolution_util_la-e-menu-tool-button.Tpo $(DEPDIR)/libevolution_util_la-e-menu-tool-button.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='e-menu-tool-button.c' object='libevolution_util_la-e-menu-tool-button.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) $(libevolution_util_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o libevolution_util_la-e-menu-tool-button.lo `test -f 'e-menu-tool-button.c' || echo '$(srcdir)/'`e-menu-tool-button.c
libevolution_util_la-e-misc-utils.lo: e-misc-utils.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libevolution_util_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT libevolution_util_la-e-misc-utils.lo -MD -MP -MF $(DEPDIR)/libevolution_util_la-e-misc-utils.Tpo -c -o libevolution_util_la-e-misc-utils.lo `test -f 'e-misc-utils.c' || echo '$(srcdir)/'`e-misc-utils.c
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libevolution_util_la-e-misc-utils.Tpo $(DEPDIR)/libevolution_util_la-e-misc-utils.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='e-misc-utils.c' object='libevolution_util_la-e-misc-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) $(libevolution_util_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o libevolution_util_la-e-misc-utils.lo `test -f 'e-misc-utils.c' || echo '$(srcdir)/'`e-misc-utils.c
libevolution_util_la-e-mktemp.lo: e-mktemp.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libevolution_util_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT libevolution_util_la-e-mktemp.lo -MD -MP -MF $(DEPDIR)/libevolution_util_la-e-mktemp.Tpo -c -o libevolution_util_la-e-mktemp.lo `test -f 'e-mktemp.c' || echo '$(srcdir)/'`e-mktemp.c
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libevolution_util_la-e-mktemp.Tpo $(DEPDIR)/libevolution_util_la-e-mktemp.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='e-mktemp.c' object='libevolution_util_la-e-mktemp.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) $(libevolution_util_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o libevolution_util_la-e-mktemp.lo `test -f 'e-mktemp.c' || echo '$(srcdir)/'`e-mktemp.c
libevolution_util_la-e-name-selector-dialog.lo: e-name-selector-dialog.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libevolution_util_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT libevolution_util_la-e-name-selector-dialog.lo -MD -MP -MF $(DEPDIR)/libevolution_util_la-e-name-selector-dialog.Tpo -c -o libevolution_util_la-e-name-selector-dialog.lo `test -f 'e-name-selector-dialog.c' || echo '$(srcdir)/'`e-name-selector-dialog.c
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libevolution_util_la-e-name-selector-dialog.Tpo $(DEPDIR)/libevolution_util_la-e-name-selector-dialog.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='e-name-selector-dialog.c' object='libevolution_util_la-e-name-selector-dialog.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) $(libevolution_util_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o libevolution_util_la-e-name-selector-dialog.lo `test -f 'e-name-selector-dialog.c' || echo '$(srcdir)/'`e-name-selector-dialog.c
libevolution_util_la-e-name-selector-entry.lo: e-name-selector-entry.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libevolution_util_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT libevolution_util_la-e-name-selector-entry.lo -MD -MP -MF $(DEPDIR)/libevolution_util_la-e-name-selector-entry.Tpo -c -o libevolution_util_la-e-name-selector-entry.lo `test -f 'e-name-selector-entry.c' || echo '$(srcdir)/'`e-name-selector-entry.c
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libevolution_util_la-e-name-selector-entry.Tpo $(DEPDIR)/libevolution_util_la-e-name-selector-entry.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='e-name-selector-entry.c' object='libevolution_util_la-e-name-selector-entry.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) $(libevolution_util_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o libevolution_util_la-e-name-selector-entry.lo `test -f 'e-name-selector-entry.c' || echo '$(srcdir)/'`e-name-selector-entry.c
libevolution_util_la-e-name-selector-list.lo: e-name-selector-list.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libevolution_util_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT libevolution_util_la-e-name-selector-list.lo -MD -MP -MF $(DEPDIR)/libevolution_util_la-e-name-selector-list.Tpo -c -o libevolution_util_la-e-name-selector-list.lo `test -f 'e-name-selector-list.c' || echo '$(srcdir)/'`e-name-selector-list.c
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libevolution_util_la-e-name-selector-list.Tpo $(DEPDIR)/libevolution_util_la-e-name-selector-list.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='e-name-selector-list.c' object='libevolution_util_la-e-name-selector-list.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) $(libevolution_util_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o libevolution_util_la-e-name-selector-list.lo `test -f 'e-name-selector-list.c' || echo '$(srcdir)/'`e-name-selector-list.c
libevolution_util_la-e-name-selector-model.lo: e-name-selector-model.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libevolution_util_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT libevolution_util_la-e-name-selector-model.lo -MD -MP -MF $(DEPDIR)/libevolution_util_la-e-name-selector-model.Tpo -c -o libevolution_util_la-e-name-selector-model.lo `test -f 'e-name-selector-model.c' || echo '$(srcdir)/'`e-name-selector-model.c
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libevolution_util_la-e-name-selector-model.Tpo $(DEPDIR)/libevolution_util_la-e-name-selector-model.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='e-name-selector-model.c' object='libevolution_util_la-e-name-selector-model.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) $(libevolution_util_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o libevolution_util_la-e-name-selector-model.lo `test -f 'e-name-selector-model.c' || echo '$(srcdir)/'`e-name-selector-model.c
libevolution_util_la-e-name-selector.lo: e-name-selector.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libevolution_util_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT libevolution_util_la-e-name-selector.lo -MD -MP -MF $(DEPDIR)/libevolution_util_la-e-name-selector.Tpo -c -o libevolution_util_la-e-name-selector.lo `test -f 'e-name-selector.c' || echo '$(srcdir)/'`e-name-selector.c
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libevolution_util_la-e-name-selector.Tpo $(DEPDIR)/libevolution_util_la-e-name-selector.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='e-name-selector.c' object='libevolution_util_la-e-name-selector.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) $(libevolution_util_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o libevolution_util_la-e-name-selector.lo `test -f 'e-name-selector.c' || echo '$(srcdir)/'`e-name-selector.c
libevolution_util_la-e-online-button.lo: e-online-button.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libevolution_util_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT libevolution_util_la-e-online-button.lo -MD -MP -MF $(DEPDIR)/libevolution_util_la-e-online-button.Tpo -c -o libevolution_util_la-e-online-button.lo `test -f 'e-online-button.c' || echo '$(srcdir)/'`e-online-button.c
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libevolution_util_la-e-online-button.Tpo $(DEPDIR)/libevolution_util_la-e-online-button.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='e-online-button.c' object='libevolution_util_la-e-online-button.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) $(libevolution_util_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o libevolution_util_la-e-online-button.lo `test -f 'e-online-button.c' || echo '$(srcdir)/'`e-online-button.c
libevolution_util_la-e-paned.lo: e-paned.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libevolution_util_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT libevolution_util_la-e-paned.lo -MD -MP -MF $(DEPDIR)/libevolution_util_la-e-paned.Tpo -c -o libevolution_util_la-e-paned.lo `test -f 'e-paned.c' || echo '$(srcdir)/'`e-paned.c
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libevolution_util_la-e-paned.Tpo $(DEPDIR)/libevolution_util_la-e-paned.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='e-paned.c' object='libevolution_util_la-e-paned.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) $(libevolution_util_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o libevolution_util_la-e-paned.lo `test -f 'e-paned.c' || echo '$(srcdir)/'`e-paned.c
libevolution_util_la-e-passwords.lo: e-passwords.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libevolution_util_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT libevolution_util_la-e-passwords.lo -MD -MP -MF $(DEPDIR)/libevolution_util_la-e-passwords.Tpo -c -o libevolution_util_la-e-passwords.lo `test -f 'e-passwords.c' || echo '$(srcdir)/'`e-passwords.c
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libevolution_util_la-e-passwords.Tpo $(DEPDIR)/libevolution_util_la-e-passwords.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='e-passwords.c' object='libevolution_util_la-e-passwords.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) $(libevolution_util_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o libevolution_util_la-e-passwords.lo `test -f 'e-passwords.c' || echo '$(srcdir)/'`e-passwords.c
libevolution_util_la-e-photo-cache.lo: e-photo-cache.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libevolution_util_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT libevolution_util_la-e-photo-cache.lo -MD -MP -MF $(DEPDIR)/libevolution_util_la-e-photo-cache.Tpo -c -o libevolution_util_la-e-photo-cache.lo `test -f 'e-photo-cache.c' || echo '$(srcdir)/'`e-photo-cache.c
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libevolution_util_la-e-photo-cache.Tpo $(DEPDIR)/libevolution_util_la-e-photo-cache.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='e-photo-cache.c' object='libevolution_util_la-e-photo-cache.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) $(libevolution_util_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o libevolution_util_la-e-photo-cache.lo `test -f 'e-photo-cache.c' || echo '$(srcdir)/'`e-photo-cache.c
libevolution_util_la-e-photo-source.lo: e-photo-source.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libevolution_util_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT libevolution_util_la-e-photo-source.lo -MD -MP -MF $(DEPDIR)/libevolution_util_la-e-photo-source.Tpo -c -o libevolution_util_la-e-photo-source.lo `test -f 'e-photo-source.c' || echo '$(srcdir)/'`e-photo-source.c
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libevolution_util_la-e-photo-source.Tpo $(DEPDIR)/libevolution_util_la-e-photo-source.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='e-photo-source.c' object='libevolution_util_la-e-photo-source.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) $(libevolution_util_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o libevolution_util_la-e-photo-source.lo `test -f 'e-photo-source.c' || echo '$(srcdir)/'`e-photo-source.c
libevolution_util_la-e-picture-gallery.lo: e-picture-gallery.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libevolution_util_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT libevolution_util_la-e-picture-gallery.lo -MD -MP -MF $(DEPDIR)/libevolution_util_la-e-picture-gallery.Tpo -c -o libevolution_util_la-e-picture-gallery.lo `test -f 'e-picture-gallery.c' || echo '$(srcdir)/'`e-picture-gallery.c
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libevolution_util_la-e-picture-gallery.Tpo $(DEPDIR)/libevolution_util_la-e-picture-gallery.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='e-picture-gallery.c' object='libevolution_util_la-e-picture-gallery.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) $(libevolution_util_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o libevolution_util_la-e-picture-gallery.lo `test -f 'e-picture-gallery.c' || echo '$(srcdir)/'`e-picture-gallery.c
libevolution_util_la-e-plugin-ui.lo: e-plugin-ui.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libevolution_util_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT libevolution_util_la-e-plugin-ui.lo -MD -MP -MF $(DEPDIR)/libevolution_util_la-e-plugin-ui.Tpo -c -o libevolution_util_la-e-plugin-ui.lo `test -f 'e-plugin-ui.c' || echo '$(srcdir)/'`e-plugin-ui.c
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libevolution_util_la-e-plugin-ui.Tpo $(DEPDIR)/libevolution_util_la-e-plugin-ui.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='e-plugin-ui.c' object='libevolution_util_la-e-plugin-ui.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) $(libevolution_util_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o libevolution_util_la-e-plugin-ui.lo `test -f 'e-plugin-ui.c' || echo '$(srcdir)/'`e-plugin-ui.c
libevolution_util_la-e-plugin.lo: e-plugin.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libevolution_util_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT libevolution_util_la-e-plugin.lo -MD -MP -MF $(DEPDIR)/libevolution_util_la-e-plugin.Tpo -c -o libevolution_util_la-e-plugin.lo `test -f 'e-plugin.c' || echo '$(srcdir)/'`e-plugin.c
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libevolution_util_la-e-plugin.Tpo $(DEPDIR)/libevolution_util_la-e-plugin.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='e-plugin.c' object='libevolution_util_la-e-plugin.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) $(libevolution_util_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o libevolution_util_la-e-plugin.lo `test -f 'e-plugin.c' || echo '$(srcdir)/'`e-plugin.c
libevolution_util_la-e-poolv.lo: e-poolv.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libevolution_util_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT libevolution_util_la-e-poolv.lo -MD -MP -MF $(DEPDIR)/libevolution_util_la-e-poolv.Tpo -c -o libevolution_util_la-e-poolv.lo `test -f 'e-poolv.c' || echo '$(srcdir)/'`e-poolv.c
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libevolution_util_la-e-poolv.Tpo $(DEPDIR)/libevolution_util_la-e-poolv.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='e-poolv.c' object='libevolution_util_la-e-poolv.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) $(libevolution_util_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o libevolution_util_la-e-poolv.lo `test -f 'e-poolv.c' || echo '$(srcdir)/'`e-poolv.c
libevolution_util_la-e-popup-action.lo: e-popup-action.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libevolution_util_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT libevolution_util_la-e-popup-action.lo -MD -MP -MF $(DEPDIR)/libevolution_util_la-e-popup-action.Tpo -c -o libevolution_util_la-e-popup-action.lo `test -f 'e-popup-action.c' || echo '$(srcdir)/'`e-popup-action.c
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libevolution_util_la-e-popup-action.Tpo $(DEPDIR)/libevolution_util_la-e-popup-action.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='e-popup-action.c' object='libevolution_util_la-e-popup-action.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) $(libevolution_util_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o libevolution_util_la-e-popup-action.lo `test -f 'e-popup-action.c' || echo '$(srcdir)/'`e-popup-action.c
libevolution_util_la-e-popup-menu.lo: e-popup-menu.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libevolution_util_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT libevolution_util_la-e-popup-menu.lo -MD -MP -MF $(DEPDIR)/libevolution_util_la-e-popup-menu.Tpo -c -o libevolution_util_la-e-popup-menu.lo `test -f 'e-popup-menu.c' || echo '$(srcdir)/'`e-popup-menu.c
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libevolution_util_la-e-popup-menu.Tpo $(DEPDIR)/libevolution_util_la-e-popup-menu.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='e-popup-menu.c' object='libevolution_util_la-e-popup-menu.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) $(libevolution_util_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o libevolution_util_la-e-popup-menu.lo `test -f 'e-popup-menu.c' || echo '$(srcdir)/'`e-popup-menu.c
libevolution_util_la-e-port-entry.lo: e-port-entry.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libevolution_util_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT libevolution_util_la-e-port-entry.lo -MD -MP -MF $(DEPDIR)/libevolution_util_la-e-port-entry.Tpo -c -o libevolution_util_la-e-port-entry.lo `test -f 'e-port-entry.c' || echo '$(srcdir)/'`e-port-entry.c
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libevolution_util_la-e-port-entry.Tpo $(DEPDIR)/libevolution_util_la-e-port-entry.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='e-port-entry.c' object='libevolution_util_la-e-port-entry.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) $(libevolution_util_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o libevolution_util_la-e-port-entry.lo `test -f 'e-port-entry.c' || echo '$(srcdir)/'`e-port-entry.c
libevolution_util_la-e-preferences-window.lo: e-preferences-window.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libevolution_util_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT libevolution_util_la-e-preferences-window.lo -MD -MP -MF $(DEPDIR)/libevolution_util_la-e-preferences-window.Tpo -c -o libevolution_util_la-e-preferences-window.lo `test -f 'e-preferences-window.c' || echo '$(srcdir)/'`e-preferences-window.c
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libevolution_util_la-e-preferences-window.Tpo $(DEPDIR)/libevolution_util_la-e-preferences-window.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='e-preferences-window.c' object='libevolution_util_la-e-preferences-window.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) $(libevolution_util_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o libevolution_util_la-e-preferences-window.lo `test -f 'e-preferences-window.c' || echo '$(srcdir)/'`e-preferences-window.c
libevolution_util_la-e-preview-pane.lo: e-preview-pane.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libevolution_util_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT libevolution_util_la-e-preview-pane.lo -MD -MP -MF $(DEPDIR)/libevolution_util_la-e-preview-pane.Tpo -c -o libevolution_util_la-e-preview-pane.lo `test -f 'e-preview-pane.c' || echo '$(srcdir)/'`e-preview-pane.c
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libevolution_util_la-e-preview-pane.Tpo $(DEPDIR)/libevolution_util_la-e-preview-pane.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='e-preview-pane.c' object='libevolution_util_la-e-preview-pane.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) $(libevolution_util_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o libevolution_util_la-e-preview-pane.lo `test -f 'e-preview-pane.c' || echo '$(srcdir)/'`e-preview-pane.c
libevolution_util_la-e-print.lo: e-print.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libevolution_util_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT libevolution_util_la-e-print.lo -MD -MP -MF $(DEPDIR)/libevolution_util_la-e-print.Tpo -c -o libevolution_util_la-e-print.lo `test -f 'e-print.c' || echo '$(srcdir)/'`e-print.c
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libevolution_util_la-e-print.Tpo $(DEPDIR)/libevolution_util_la-e-print.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='e-print.c' object='libevolution_util_la-e-print.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) $(libevolution_util_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o libevolution_util_la-e-print.lo `test -f 'e-print.c' || echo '$(srcdir)/'`e-print.c
libevolution_util_la-e-printable.lo: e-printable.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libevolution_util_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT libevolution_util_la-e-printable.lo -MD -MP -MF $(DEPDIR)/libevolution_util_la-e-printable.Tpo -c -o libevolution_util_la-e-printable.lo `test -f 'e-printable.c' || echo '$(srcdir)/'`e-printable.c
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libevolution_util_la-e-printable.Tpo $(DEPDIR)/libevolution_util_la-e-printable.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='e-printable.c' object='libevolution_util_la-e-printable.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) $(libevolution_util_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o libevolution_util_la-e-printable.lo `test -f 'e-printable.c' || echo '$(srcdir)/'`e-printable.c
libevolution_util_la-e-proxy-combo-box.lo: e-proxy-combo-box.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libevolution_util_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT libevolution_util_la-e-proxy-combo-box.lo -MD -MP -MF $(DEPDIR)/libevolution_util_la-e-proxy-combo-box.Tpo -c -o libevolution_util_la-e-proxy-combo-box.lo `test -f 'e-proxy-combo-box.c' || echo '$(srcdir)/'`e-proxy-combo-box.c
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libevolution_util_la-e-proxy-combo-box.Tpo $(DEPDIR)/libevolution_util_la-e-proxy-combo-box.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='e-proxy-combo-box.c' object='libevolution_util_la-e-proxy-combo-box.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) $(libevolution_util_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o libevolution_util_la-e-proxy-combo-box.lo `test -f 'e-proxy-combo-box.c' || echo '$(srcdir)/'`e-proxy-combo-box.c
libevolution_util_la-e-proxy-editor.lo: e-proxy-editor.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libevolution_util_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT libevolution_util_la-e-proxy-editor.lo -MD -MP -MF $(DEPDIR)/libevolution_util_la-e-proxy-editor.Tpo -c -o libevolution_util_la-e-proxy-editor.lo `test -f 'e-proxy-editor.c' || echo '$(srcdir)/'`e-proxy-editor.c
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libevolution_util_la-e-proxy-editor.Tpo $(DEPDIR)/libevolution_util_la-e-proxy-editor.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='e-proxy-editor.c' object='libevolution_util_la-e-proxy-editor.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) $(libevolution_util_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o libevolution_util_la-e-proxy-editor.lo `test -f 'e-proxy-editor.c' || echo '$(srcdir)/'`e-proxy-editor.c
libevolution_util_la-e-proxy-link-selector.lo: e-proxy-link-selector.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libevolution_util_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT libevolution_util_la-e-proxy-link-selector.lo -MD -MP -MF $(DEPDIR)/libevolution_util_la-e-proxy-link-selector.Tpo -c -o libevolution_util_la-e-proxy-link-selector.lo `test -f 'e-proxy-link-selector.c' || echo '$(srcdir)/'`e-proxy-link-selector.c
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libevolution_util_la-e-proxy-link-selector.Tpo $(DEPDIR)/libevolution_util_la-e-proxy-link-selector.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='e-proxy-link-selector.c' object='libevolution_util_la-e-proxy-link-selector.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) $(libevolution_util_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o libevolution_util_la-e-proxy-link-selector.lo `test -f 'e-proxy-link-selector.c' || echo '$(srcdir)/'`e-proxy-link-selector.c
libevolution_util_la-e-proxy-preferences.lo: e-proxy-preferences.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libevolution_util_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT libevolution_util_la-e-proxy-preferences.lo -MD -MP -MF $(DEPDIR)/libevolution_util_la-e-proxy-preferences.Tpo -c -o libevolution_util_la-e-proxy-preferences.lo `test -f 'e-proxy-preferences.c' || echo '$(srcdir)/'`e-proxy-preferences.c
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libevolution_util_la-e-proxy-preferences.Tpo $(DEPDIR)/libevolution_util_la-e-proxy-preferences.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='e-proxy-preferences.c' object='libevolution_util_la-e-proxy-preferences.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) $(libevolution_util_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o libevolution_util_la-e-proxy-preferences.lo `test -f 'e-proxy-preferences.c' || echo '$(srcdir)/'`e-proxy-preferences.c
libevolution_util_la-e-proxy-selector.lo: e-proxy-selector.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libevolution_util_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT libevolution_util_la-e-proxy-selector.lo -MD -MP -MF $(DEPDIR)/libevolution_util_la-e-proxy-selector.Tpo -c -o libevolution_util_la-e-proxy-selector.lo `test -f 'e-proxy-selector.c' || echo '$(srcdir)/'`e-proxy-selector.c
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libevolution_util_la-e-proxy-selector.Tpo $(DEPDIR)/libevolution_util_la-e-proxy-selector.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='e-proxy-selector.c' object='libevolution_util_la-e-proxy-selector.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) $(libevolution_util_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o libevolution_util_la-e-proxy-selector.lo `test -f 'e-proxy-selector.c' || echo '$(srcdir)/'`e-proxy-selector.c
libevolution_util_la-e-reflow-model.lo: e-reflow-model.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libevolution_util_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT libevolution_util_la-e-reflow-model.lo -MD -MP -MF $(DEPDIR)/libevolution_util_la-e-reflow-model.Tpo -c -o libevolution_util_la-e-reflow-model.lo `test -f 'e-reflow-model.c' || echo '$(srcdir)/'`e-reflow-model.c
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libevolution_util_la-e-reflow-model.Tpo $(DEPDIR)/libevolution_util_la-e-reflow-model.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='e-reflow-model.c' object='libevolution_util_la-e-reflow-model.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) $(libevolution_util_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o libevolution_util_la-e-reflow-model.lo `test -f 'e-reflow-model.c' || echo '$(srcdir)/'`e-reflow-model.c
libevolution_util_la-e-reflow.lo: e-reflow.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libevolution_util_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT libevolution_util_la-e-reflow.lo -MD -MP -MF $(DEPDIR)/libevolution_util_la-e-reflow.Tpo -c -o libevolution_util_la-e-reflow.lo `test -f 'e-reflow.c' || echo '$(srcdir)/'`e-reflow.c
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libevolution_util_la-e-reflow.Tpo $(DEPDIR)/libevolution_util_la-e-reflow.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='e-reflow.c' object='libevolution_util_la-e-reflow.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) $(libevolution_util_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o libevolution_util_la-e-reflow.lo `test -f 'e-reflow.c' || echo '$(srcdir)/'`e-reflow.c
libevolution_util_la-e-rule-context.lo: e-rule-context.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libevolution_util_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT libevolution_util_la-e-rule-context.lo -MD -MP -MF $(DEPDIR)/libevolution_util_la-e-rule-context.Tpo -c -o libevolution_util_la-e-rule-context.lo `test -f 'e-rule-context.c' || echo '$(srcdir)/'`e-rule-context.c
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libevolution_util_la-e-rule-context.Tpo $(DEPDIR)/libevolution_util_la-e-rule-context.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='e-rule-context.c' object='libevolution_util_la-e-rule-context.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) $(libevolution_util_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o libevolution_util_la-e-rule-context.lo `test -f 'e-rule-context.c' || echo '$(srcdir)/'`e-rule-context.c
libevolution_util_la-e-rule-editor.lo: e-rule-editor.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libevolution_util_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT libevolution_util_la-e-rule-editor.lo -MD -MP -MF $(DEPDIR)/libevolution_util_la-e-rule-editor.Tpo -c -o libevolution_util_la-e-rule-editor.lo `test -f 'e-rule-editor.c' || echo '$(srcdir)/'`e-rule-editor.c
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libevolution_util_la-e-rule-editor.Tpo $(DEPDIR)/libevolution_util_la-e-rule-editor.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='e-rule-editor.c' object='libevolution_util_la-e-rule-editor.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) $(libevolution_util_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o libevolution_util_la-e-rule-editor.lo `test -f 'e-rule-editor.c' || echo '$(srcdir)/'`e-rule-editor.c
libevolution_util_la-e-search-bar.lo: e-search-bar.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libevolution_util_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT libevolution_util_la-e-search-bar.lo -MD -MP -MF $(DEPDIR)/libevolution_util_la-e-search-bar.Tpo -c -o libevolution_util_la-e-search-bar.lo `test -f 'e-search-bar.c' || echo '$(srcdir)/'`e-search-bar.c
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libevolution_util_la-e-search-bar.Tpo $(DEPDIR)/libevolution_util_la-e-search-bar.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='e-search-bar.c' object='libevolution_util_la-e-search-bar.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) $(libevolution_util_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o libevolution_util_la-e-search-bar.lo `test -f 'e-search-bar.c' || echo '$(srcdir)/'`e-search-bar.c
libevolution_util_la-e-selectable.lo: e-selectable.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libevolution_util_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT libevolution_util_la-e-selectable.lo -MD -MP -MF $(DEPDIR)/libevolution_util_la-e-selectable.Tpo -c -o libevolution_util_la-e-selectable.lo `test -f 'e-selectable.c' || echo '$(srcdir)/'`e-selectable.c
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libevolution_util_la-e-selectable.Tpo $(DEPDIR)/libevolution_util_la-e-selectable.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='e-selectable.c' object='libevolution_util_la-e-selectable.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) $(libevolution_util_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o libevolution_util_la-e-selectable.lo `test -f 'e-selectable.c' || echo '$(srcdir)/'`e-selectable.c
libevolution_util_la-e-selection-model-array.lo: e-selection-model-array.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libevolution_util_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT libevolution_util_la-e-selection-model-array.lo -MD -MP -MF $(DEPDIR)/libevolution_util_la-e-selection-model-array.Tpo -c -o libevolution_util_la-e-selection-model-array.lo `test -f 'e-selection-model-array.c' || echo '$(srcdir)/'`e-selection-model-array.c
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libevolution_util_la-e-selection-model-array.Tpo $(DEPDIR)/libevolution_util_la-e-selection-model-array.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='e-selection-model-array.c' object='libevolution_util_la-e-selection-model-array.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) $(libevolution_util_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o libevolution_util_la-e-selection-model-array.lo `test -f 'e-selection-model-array.c' || echo '$(srcdir)/'`e-selection-model-array.c
libevolution_util_la-e-selection-model-simple.lo: e-selection-model-simple.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libevolution_util_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT libevolution_util_la-e-selection-model-simple.lo -MD -MP -MF $(DEPDIR)/libevolution_util_la-e-selection-model-simple.Tpo -c -o libevolution_util_la-e-selection-model-simple.lo `test -f 'e-selection-model-simple.c' || echo '$(srcdir)/'`e-selection-model-simple.c
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libevolution_util_la-e-selection-model-simple.Tpo $(DEPDIR)/libevolution_util_la-e-selection-model-simple.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='e-selection-model-simple.c' object='libevolution_util_la-e-selection-model-simple.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) $(libevolution_util_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o libevolution_util_la-e-selection-model-simple.lo `test -f 'e-selection-model-simple.c' || echo '$(srcdir)/'`e-selection-model-simple.c
libevolution_util_la-e-selection-model.lo: e-selection-model.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libevolution_util_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT libevolution_util_la-e-selection-model.lo -MD -MP -MF $(DEPDIR)/libevolution_util_la-e-selection-model.Tpo -c -o libevolution_util_la-e-selection-model.lo `test -f 'e-selection-model.c' || echo '$(srcdir)/'`e-selection-model.c
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libevolution_util_la-e-selection-model.Tpo $(DEPDIR)/libevolution_util_la-e-selection-model.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='e-selection-model.c' object='libevolution_util_la-e-selection-model.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) $(libevolution_util_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o libevolution_util_la-e-selection-model.lo `test -f 'e-selection-model.c' || echo '$(srcdir)/'`e-selection-model.c
libevolution_util_la-e-selection.lo: e-selection.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libevolution_util_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT libevolution_util_la-e-selection.lo -MD -MP -MF $(DEPDIR)/libevolution_util_la-e-selection.Tpo -c -o libevolution_util_la-e-selection.lo `test -f 'e-selection.c' || echo '$(srcdir)/'`e-selection.c
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libevolution_util_la-e-selection.Tpo $(DEPDIR)/libevolution_util_la-e-selection.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='e-selection.c' object='libevolution_util_la-e-selection.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) $(libevolution_util_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o libevolution_util_la-e-selection.lo `test -f 'e-selection.c' || echo '$(srcdir)/'`e-selection.c
libevolution_util_la-e-send-options.lo: e-send-options.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libevolution_util_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT libevolution_util_la-e-send-options.lo -MD -MP -MF $(DEPDIR)/libevolution_util_la-e-send-options.Tpo -c -o libevolution_util_la-e-send-options.lo `test -f 'e-send-options.c' || echo '$(srcdir)/'`e-send-options.c
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libevolution_util_la-e-send-options.Tpo $(DEPDIR)/libevolution_util_la-e-send-options.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='e-send-options.c' object='libevolution_util_la-e-send-options.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) $(libevolution_util_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o libevolution_util_la-e-send-options.lo `test -f 'e-send-options.c' || echo '$(srcdir)/'`e-send-options.c
libevolution_util_la-e-sorter-array.lo: e-sorter-array.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libevolution_util_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT libevolution_util_la-e-sorter-array.lo -MD -MP -MF $(DEPDIR)/libevolution_util_la-e-sorter-array.Tpo -c -o libevolution_util_la-e-sorter-array.lo `test -f 'e-sorter-array.c' || echo '$(srcdir)/'`e-sorter-array.c
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libevolution_util_la-e-sorter-array.Tpo $(DEPDIR)/libevolution_util_la-e-sorter-array.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='e-sorter-array.c' object='libevolution_util_la-e-sorter-array.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) $(libevolution_util_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o libevolution_util_la-e-sorter-array.lo `test -f 'e-sorter-array.c' || echo '$(srcdir)/'`e-sorter-array.c
libevolution_util_la-e-sorter.lo: e-sorter.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libevolution_util_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT libevolution_util_la-e-sorter.lo -MD -MP -MF $(DEPDIR)/libevolution_util_la-e-sorter.Tpo -c -o libevolution_util_la-e-sorter.lo `test -f 'e-sorter.c' || echo '$(srcdir)/'`e-sorter.c
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libevolution_util_la-e-sorter.Tpo $(DEPDIR)/libevolution_util_la-e-sorter.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='e-sorter.c' object='libevolution_util_la-e-sorter.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) $(libevolution_util_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o libevolution_util_la-e-sorter.lo `test -f 'e-sorter.c' || echo '$(srcdir)/'`e-sorter.c
libevolution_util_la-e-source-combo-box.lo: e-source-combo-box.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libevolution_util_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT libevolution_util_la-e-source-combo-box.lo -MD -MP -MF $(DEPDIR)/libevolution_util_la-e-source-combo-box.Tpo -c -o libevolution_util_la-e-source-combo-box.lo `test -f 'e-source-combo-box.c' || echo '$(srcdir)/'`e-source-combo-box.c
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libevolution_util_la-e-source-combo-box.Tpo $(DEPDIR)/libevolution_util_la-e-source-combo-box.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='e-source-combo-box.c' object='libevolution_util_la-e-source-combo-box.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) $(libevolution_util_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o libevolution_util_la-e-source-combo-box.lo `test -f 'e-source-combo-box.c' || echo '$(srcdir)/'`e-source-combo-box.c
libevolution_util_la-e-source-config-backend.lo: e-source-config-backend.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libevolution_util_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT libevolution_util_la-e-source-config-backend.lo -MD -MP -MF $(DEPDIR)/libevolution_util_la-e-source-config-backend.Tpo -c -o libevolution_util_la-e-source-config-backend.lo `test -f 'e-source-config-backend.c' || echo '$(srcdir)/'`e-source-config-backend.c
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libevolution_util_la-e-source-config-backend.Tpo $(DEPDIR)/libevolution_util_la-e-source-config-backend.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='e-source-config-backend.c' object='libevolution_util_la-e-source-config-backend.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) $(libevolution_util_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o libevolution_util_la-e-source-config-backend.lo `test -f 'e-source-config-backend.c' || echo '$(srcdir)/'`e-source-config-backend.c
libevolution_util_la-e-source-config-dialog.lo: e-source-config-dialog.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libevolution_util_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT libevolution_util_la-e-source-config-dialog.lo -MD -MP -MF $(DEPDIR)/libevolution_util_la-e-source-config-dialog.Tpo -c -o libevolution_util_la-e-source-config-dialog.lo `test -f 'e-source-config-dialog.c' || echo '$(srcdir)/'`e-source-config-dialog.c
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libevolution_util_la-e-source-config-dialog.Tpo $(DEPDIR)/libevolution_util_la-e-source-config-dialog.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='e-source-config-dialog.c' object='libevolution_util_la-e-source-config-dialog.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) $(libevolution_util_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o libevolution_util_la-e-source-config-dialog.lo `test -f 'e-source-config-dialog.c' || echo '$(srcdir)/'`e-source-config-dialog.c
libevolution_util_la-e-source-config.lo: e-source-config.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libevolution_util_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT libevolution_util_la-e-source-config.lo -MD -MP -MF $(DEPDIR)/libevolution_util_la-e-source-config.Tpo -c -o libevolution_util_la-e-source-config.lo `test -f 'e-source-config.c' || echo '$(srcdir)/'`e-source-config.c
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libevolution_util_la-e-source-config.Tpo $(DEPDIR)/libevolution_util_la-e-source-config.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='e-source-config.c' object='libevolution_util_la-e-source-config.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) $(libevolution_util_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o libevolution_util_la-e-source-config.lo `test -f 'e-source-config.c' || echo '$(srcdir)/'`e-source-config.c
libevolution_util_la-e-source-selector-dialog.lo: e-source-selector-dialog.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libevolution_util_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT libevolution_util_la-e-source-selector-dialog.lo -MD -MP -MF $(DEPDIR)/libevolution_util_la-e-source-selector-dialog.Tpo -c -o libevolution_util_la-e-source-selector-dialog.lo `test -f 'e-source-selector-dialog.c' || echo '$(srcdir)/'`e-source-selector-dialog.c
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libevolution_util_la-e-source-selector-dialog.Tpo $(DEPDIR)/libevolution_util_la-e-source-selector-dialog.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='e-source-selector-dialog.c' object='libevolution_util_la-e-source-selector-dialog.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) $(libevolution_util_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o libevolution_util_la-e-source-selector-dialog.lo `test -f 'e-source-selector-dialog.c' || echo '$(srcdir)/'`e-source-selector-dialog.c
libevolution_util_la-e-source-selector.lo: e-source-selector.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libevolution_util_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT libevolution_util_la-e-source-selector.lo -MD -MP -MF $(DEPDIR)/libevolution_util_la-e-source-selector.Tpo -c -o libevolution_util_la-e-source-selector.lo `test -f 'e-source-selector.c' || echo '$(srcdir)/'`e-source-selector.c
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libevolution_util_la-e-source-selector.Tpo $(DEPDIR)/libevolution_util_la-e-source-selector.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='e-source-selector.c' object='libevolution_util_la-e-source-selector.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) $(libevolution_util_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o libevolution_util_la-e-source-selector.lo `test -f 'e-source-selector.c' || echo '$(srcdir)/'`e-source-selector.c
libevolution_util_la-e-source-util.lo: e-source-util.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libevolution_util_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT libevolution_util_la-e-source-util.lo -MD -MP -MF $(DEPDIR)/libevolution_util_la-e-source-util.Tpo -c -o libevolution_util_la-e-source-util.lo `test -f 'e-source-util.c' || echo '$(srcdir)/'`e-source-util.c
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libevolution_util_la-e-source-util.Tpo $(DEPDIR)/libevolution_util_la-e-source-util.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='e-source-util.c' object='libevolution_util_la-e-source-util.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) $(libevolution_util_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o libevolution_util_la-e-source-util.lo `test -f 'e-source-util.c' || echo '$(srcdir)/'`e-source-util.c
libevolution_util_la-e-spell-entry.lo: e-spell-entry.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libevolution_util_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT libevolution_util_la-e-spell-entry.lo -MD -MP -MF $(DEPDIR)/libevolution_util_la-e-spell-entry.Tpo -c -o libevolution_util_la-e-spell-entry.lo `test -f 'e-spell-entry.c' || echo '$(srcdir)/'`e-spell-entry.c
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libevolution_util_la-e-spell-entry.Tpo $(DEPDIR)/libevolution_util_la-e-spell-entry.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='e-spell-entry.c' object='libevolution_util_la-e-spell-entry.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) $(libevolution_util_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o libevolution_util_la-e-spell-entry.lo `test -f 'e-spell-entry.c' || echo '$(srcdir)/'`e-spell-entry.c
libevolution_util_la-e-spell-text-view.lo: e-spell-text-view.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libevolution_util_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT libevolution_util_la-e-spell-text-view.lo -MD -MP -MF $(DEPDIR)/libevolution_util_la-e-spell-text-view.Tpo -c -o libevolution_util_la-e-spell-text-view.lo `test -f 'e-spell-text-view.c' || echo '$(srcdir)/'`e-spell-text-view.c
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libevolution_util_la-e-spell-text-view.Tpo $(DEPDIR)/libevolution_util_la-e-spell-text-view.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='e-spell-text-view.c' object='libevolution_util_la-e-spell-text-view.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) $(libevolution_util_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o libevolution_util_la-e-spell-text-view.lo `test -f 'e-spell-text-view.c' || echo '$(srcdir)/'`e-spell-text-view.c
libevolution_util_la-e-spinner.lo: e-spinner.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libevolution_util_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT libevolution_util_la-e-spinner.lo -MD -MP -MF $(DEPDIR)/libevolution_util_la-e-spinner.Tpo -c -o libevolution_util_la-e-spinner.lo `test -f 'e-spinner.c' || echo '$(srcdir)/'`e-spinner.c
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libevolution_util_la-e-spinner.Tpo $(DEPDIR)/libevolution_util_la-e-spinner.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='e-spinner.c' object='libevolution_util_la-e-spinner.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) $(libevolution_util_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o libevolution_util_la-e-spinner.lo `test -f 'e-spinner.c' || echo '$(srcdir)/'`e-spinner.c
libevolution_util_la-e-stock-request.lo: e-stock-request.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libevolution_util_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT libevolution_util_la-e-stock-request.lo -MD -MP -MF $(DEPDIR)/libevolution_util_la-e-stock-request.Tpo -c -o libevolution_util_la-e-stock-request.lo `test -f 'e-stock-request.c' || echo '$(srcdir)/'`e-stock-request.c
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libevolution_util_la-e-stock-request.Tpo $(DEPDIR)/libevolution_util_la-e-stock-request.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='e-stock-request.c' object='libevolution_util_la-e-stock-request.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) $(libevolution_util_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o libevolution_util_la-e-stock-request.lo `test -f 'e-stock-request.c' || echo '$(srcdir)/'`e-stock-request.c
libevolution_util_la-e-table-click-to-add.lo: e-table-click-to-add.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libevolution_util_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT libevolution_util_la-e-table-click-to-add.lo -MD -MP -MF $(DEPDIR)/libevolution_util_la-e-table-click-to-add.Tpo -c -o libevolution_util_la-e-table-click-to-add.lo `test -f 'e-table-click-to-add.c' || echo '$(srcdir)/'`e-table-click-to-add.c
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libevolution_util_la-e-table-click-to-add.Tpo $(DEPDIR)/libevolution_util_la-e-table-click-to-add.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='e-table-click-to-add.c' object='libevolution_util_la-e-table-click-to-add.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) $(libevolution_util_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o libevolution_util_la-e-table-click-to-add.lo `test -f 'e-table-click-to-add.c' || echo '$(srcdir)/'`e-table-click-to-add.c
libevolution_util_la-e-table-col.lo: e-table-col.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libevolution_util_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT libevolution_util_la-e-table-col.lo -MD -MP -MF $(DEPDIR)/libevolution_util_la-e-table-col.Tpo -c -o libevolution_util_la-e-table-col.lo `test -f 'e-table-col.c' || echo '$(srcdir)/'`e-table-col.c
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libevolution_util_la-e-table-col.Tpo $(DEPDIR)/libevolution_util_la-e-table-col.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='e-table-col.c' object='libevolution_util_la-e-table-col.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) $(libevolution_util_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o libevolution_util_la-e-table-col.lo `test -f 'e-table-col.c' || echo '$(srcdir)/'`e-table-col.c
libevolution_util_la-e-table-column-selector.lo: e-table-column-selector.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libevolution_util_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT libevolution_util_la-e-table-column-selector.lo -MD -MP -MF $(DEPDIR)/libevolution_util_la-e-table-column-selector.Tpo -c -o libevolution_util_la-e-table-column-selector.lo `test -f 'e-table-column-selector.c' || echo '$(srcdir)/'`e-table-column-selector.c
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libevolution_util_la-e-table-column-selector.Tpo $(DEPDIR)/libevolution_util_la-e-table-column-selector.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='e-table-column-selector.c' object='libevolution_util_la-e-table-column-selector.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) $(libevolution_util_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o libevolution_util_la-e-table-column-selector.lo `test -f 'e-table-column-selector.c' || echo '$(srcdir)/'`e-table-column-selector.c
libevolution_util_la-e-table-column-specification.lo: e-table-column-specification.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libevolution_util_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT libevolution_util_la-e-table-column-specification.lo -MD -MP -MF $(DEPDIR)/libevolution_util_la-e-table-column-specification.Tpo -c -o libevolution_util_la-e-table-column-specification.lo `test -f 'e-table-column-specification.c' || echo '$(srcdir)/'`e-table-column-specification.c
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libevolution_util_la-e-table-column-specification.Tpo $(DEPDIR)/libevolution_util_la-e-table-column-specification.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='e-table-column-specification.c' object='libevolution_util_la-e-table-column-specification.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) $(libevolution_util_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o libevolution_util_la-e-table-column-specification.lo `test -f 'e-table-column-specification.c' || echo '$(srcdir)/'`e-table-column-specification.c
libevolution_util_la-e-table-config.lo: e-table-config.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libevolution_util_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT libevolution_util_la-e-table-config.lo -MD -MP -MF $(DEPDIR)/libevolution_util_la-e-table-config.Tpo -c -o libevolution_util_la-e-table-config.lo `test -f 'e-table-config.c' || echo '$(srcdir)/'`e-table-config.c
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libevolution_util_la-e-table-config.Tpo $(DEPDIR)/libevolution_util_la-e-table-config.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='e-table-config.c' object='libevolution_util_la-e-table-config.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) $(libevolution_util_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o libevolution_util_la-e-table-config.lo `test -f 'e-table-config.c' || echo '$(srcdir)/'`e-table-config.c
libevolution_util_la-e-table-extras.lo: e-table-extras.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libevolution_util_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT libevolution_util_la-e-table-extras.lo -MD -MP -MF $(DEPDIR)/libevolution_util_la-e-table-extras.Tpo -c -o libevolution_util_la-e-table-extras.lo `test -f 'e-table-extras.c' || echo '$(srcdir)/'`e-table-extras.c
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libevolution_util_la-e-table-extras.Tpo $(DEPDIR)/libevolution_util_la-e-table-extras.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='e-table-extras.c' object='libevolution_util_la-e-table-extras.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) $(libevolution_util_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o libevolution_util_la-e-table-extras.lo `test -f 'e-table-extras.c' || echo '$(srcdir)/'`e-table-extras.c
libevolution_util_la-e-table-field-chooser-dialog.lo: e-table-field-chooser-dialog.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libevolution_util_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT libevolution_util_la-e-table-field-chooser-dialog.lo -MD -MP -MF $(DEPDIR)/libevolution_util_la-e-table-field-chooser-dialog.Tpo -c -o libevolution_util_la-e-table-field-chooser-dialog.lo `test -f 'e-table-field-chooser-dialog.c' || echo '$(srcdir)/'`e-table-field-chooser-dialog.c
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libevolution_util_la-e-table-field-chooser-dialog.Tpo $(DEPDIR)/libevolution_util_la-e-table-field-chooser-dialog.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='e-table-field-chooser-dialog.c' object='libevolution_util_la-e-table-field-chooser-dialog.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) $(libevolution_util_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o libevolution_util_la-e-table-field-chooser-dialog.lo `test -f 'e-table-field-chooser-dialog.c' || echo '$(srcdir)/'`e-table-field-chooser-dialog.c
libevolution_util_la-e-table-field-chooser-item.lo: e-table-field-chooser-item.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libevolution_util_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT libevolution_util_la-e-table-field-chooser-item.lo -MD -MP -MF $(DEPDIR)/libevolution_util_la-e-table-field-chooser-item.Tpo -c -o libevolution_util_la-e-table-field-chooser-item.lo `test -f 'e-table-field-chooser-item.c' || echo '$(srcdir)/'`e-table-field-chooser-item.c
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libevolution_util_la-e-table-field-chooser-item.Tpo $(DEPDIR)/libevolution_util_la-e-table-field-chooser-item.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='e-table-field-chooser-item.c' object='libevolution_util_la-e-table-field-chooser-item.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) $(libevolution_util_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o libevolution_util_la-e-table-field-chooser-item.lo `test -f 'e-table-field-chooser-item.c' || echo '$(srcdir)/'`e-table-field-chooser-item.c
libevolution_util_la-e-table-field-chooser.lo: e-table-field-chooser.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libevolution_util_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT libevolution_util_la-e-table-field-chooser.lo -MD -MP -MF $(DEPDIR)/libevolution_util_la-e-table-field-chooser.Tpo -c -o libevolution_util_la-e-table-field-chooser.lo `test -f 'e-table-field-chooser.c' || echo '$(srcdir)/'`e-table-field-chooser.c
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libevolution_util_la-e-table-field-chooser.Tpo $(DEPDIR)/libevolution_util_la-e-table-field-chooser.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='e-table-field-chooser.c' object='libevolution_util_la-e-table-field-chooser.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) $(libevolution_util_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o libevolution_util_la-e-table-field-chooser.lo `test -f 'e-table-field-chooser.c' || echo '$(srcdir)/'`e-table-field-chooser.c
libevolution_util_la-e-table-group-container.lo: e-table-group-container.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libevolution_util_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT libevolution_util_la-e-table-group-container.lo -MD -MP -MF $(DEPDIR)/libevolution_util_la-e-table-group-container.Tpo -c -o libevolution_util_la-e-table-group-container.lo `test -f 'e-table-group-container.c' || echo '$(srcdir)/'`e-table-group-container.c
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libevolution_util_la-e-table-group-container.Tpo $(DEPDIR)/libevolution_util_la-e-table-group-container.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='e-table-group-container.c' object='libevolution_util_la-e-table-group-container.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) $(libevolution_util_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o libevolution_util_la-e-table-group-container.lo `test -f 'e-table-group-container.c' || echo '$(srcdir)/'`e-table-group-container.c
libevolution_util_la-e-table-group-leaf.lo: e-table-group-leaf.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libevolution_util_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT libevolution_util_la-e-table-group-leaf.lo -MD -MP -MF $(DEPDIR)/libevolution_util_la-e-table-group-leaf.Tpo -c -o libevolution_util_la-e-table-group-leaf.lo `test -f 'e-table-group-leaf.c' || echo '$(srcdir)/'`e-table-group-leaf.c
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libevolution_util_la-e-table-group-leaf.Tpo $(DEPDIR)/libevolution_util_la-e-table-group-leaf.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='e-table-group-leaf.c' object='libevolution_util_la-e-table-group-leaf.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) $(libevolution_util_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o libevolution_util_la-e-table-group-leaf.lo `test -f 'e-table-group-leaf.c' || echo '$(srcdir)/'`e-table-group-leaf.c
libevolution_util_la-e-table-group.lo: e-table-group.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libevolution_util_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT libevolution_util_la-e-table-group.lo -MD -MP -MF $(DEPDIR)/libevolution_util_la-e-table-group.Tpo -c -o libevolution_util_la-e-table-group.lo `test -f 'e-table-group.c' || echo '$(srcdir)/'`e-table-group.c
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libevolution_util_la-e-table-group.Tpo $(DEPDIR)/libevolution_util_la-e-table-group.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='e-table-group.c' object='libevolution_util_la-e-table-group.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) $(libevolution_util_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o libevolution_util_la-e-table-group.lo `test -f 'e-table-group.c' || echo '$(srcdir)/'`e-table-group.c
libevolution_util_la-e-table-header-item.lo: e-table-header-item.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libevolution_util_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT libevolution_util_la-e-table-header-item.lo -MD -MP -MF $(DEPDIR)/libevolution_util_la-e-table-header-item.Tpo -c -o libevolution_util_la-e-table-header-item.lo `test -f 'e-table-header-item.c' || echo '$(srcdir)/'`e-table-header-item.c
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libevolution_util_la-e-table-header-item.Tpo $(DEPDIR)/libevolution_util_la-e-table-header-item.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='e-table-header-item.c' object='libevolution_util_la-e-table-header-item.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) $(libevolution_util_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o libevolution_util_la-e-table-header-item.lo `test -f 'e-table-header-item.c' || echo '$(srcdir)/'`e-table-header-item.c
libevolution_util_la-e-table-header-utils.lo: e-table-header-utils.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libevolution_util_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT libevolution_util_la-e-table-header-utils.lo -MD -MP -MF $(DEPDIR)/libevolution_util_la-e-table-header-utils.Tpo -c -o libevolution_util_la-e-table-header-utils.lo `test -f 'e-table-header-utils.c' || echo '$(srcdir)/'`e-table-header-utils.c
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libevolution_util_la-e-table-header-utils.Tpo $(DEPDIR)/libevolution_util_la-e-table-header-utils.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='e-table-header-utils.c' object='libevolution_util_la-e-table-header-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) $(libevolution_util_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o libevolution_util_la-e-table-header-utils.lo `test -f 'e-table-header-utils.c' || echo '$(srcdir)/'`e-table-header-utils.c
libevolution_util_la-e-table-header.lo: e-table-header.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libevolution_util_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT libevolution_util_la-e-table-header.lo -MD -MP -MF $(DEPDIR)/libevolution_util_la-e-table-header.Tpo -c -o libevolution_util_la-e-table-header.lo `test -f 'e-table-header.c' || echo '$(srcdir)/'`e-table-header.c
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libevolution_util_la-e-table-header.Tpo $(DEPDIR)/libevolution_util_la-e-table-header.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='e-table-header.c' object='libevolution_util_la-e-table-header.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) $(libevolution_util_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o libevolution_util_la-e-table-header.lo `test -f 'e-table-header.c' || echo '$(srcdir)/'`e-table-header.c
libevolution_util_la-e-table-item.lo: e-table-item.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libevolution_util_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT libevolution_util_la-e-table-item.lo -MD -MP -MF $(DEPDIR)/libevolution_util_la-e-table-item.Tpo -c -o libevolution_util_la-e-table-item.lo `test -f 'e-table-item.c' || echo '$(srcdir)/'`e-table-item.c
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libevolution_util_la-e-table-item.Tpo $(DEPDIR)/libevolution_util_la-e-table-item.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='e-table-item.c' object='libevolution_util_la-e-table-item.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) $(libevolution_util_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o libevolution_util_la-e-table-item.lo `test -f 'e-table-item.c' || echo '$(srcdir)/'`e-table-item.c
libevolution_util_la-e-table-model.lo: e-table-model.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libevolution_util_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT libevolution_util_la-e-table-model.lo -MD -MP -MF $(DEPDIR)/libevolution_util_la-e-table-model.Tpo -c -o libevolution_util_la-e-table-model.lo `test -f 'e-table-model.c' || echo '$(srcdir)/'`e-table-model.c
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libevolution_util_la-e-table-model.Tpo $(DEPDIR)/libevolution_util_la-e-table-model.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='e-table-model.c' object='libevolution_util_la-e-table-model.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) $(libevolution_util_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o libevolution_util_la-e-table-model.lo `test -f 'e-table-model.c' || echo '$(srcdir)/'`e-table-model.c
libevolution_util_la-e-table-one.lo: e-table-one.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libevolution_util_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT libevolution_util_la-e-table-one.lo -MD -MP -MF $(DEPDIR)/libevolution_util_la-e-table-one.Tpo -c -o libevolution_util_la-e-table-one.lo `test -f 'e-table-one.c' || echo '$(srcdir)/'`e-table-one.c
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libevolution_util_la-e-table-one.Tpo $(DEPDIR)/libevolution_util_la-e-table-one.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='e-table-one.c' object='libevolution_util_la-e-table-one.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) $(libevolution_util_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o libevolution_util_la-e-table-one.lo `test -f 'e-table-one.c' || echo '$(srcdir)/'`e-table-one.c
libevolution_util_la-e-table-search.lo: e-table-search.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libevolution_util_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT libevolution_util_la-e-table-search.lo -MD -MP -MF $(DEPDIR)/libevolution_util_la-e-table-search.Tpo -c -o libevolution_util_la-e-table-search.lo `test -f 'e-table-search.c' || echo '$(srcdir)/'`e-table-search.c
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libevolution_util_la-e-table-search.Tpo $(DEPDIR)/libevolution_util_la-e-table-search.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='e-table-search.c' object='libevolution_util_la-e-table-search.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) $(libevolution_util_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o libevolution_util_la-e-table-search.lo `test -f 'e-table-search.c' || echo '$(srcdir)/'`e-table-search.c
libevolution_util_la-e-table-selection-model.lo: e-table-selection-model.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libevolution_util_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT libevolution_util_la-e-table-selection-model.lo -MD -MP -MF $(DEPDIR)/libevolution_util_la-e-table-selection-model.Tpo -c -o libevolution_util_la-e-table-selection-model.lo `test -f 'e-table-selection-model.c' || echo '$(srcdir)/'`e-table-selection-model.c
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libevolution_util_la-e-table-selection-model.Tpo $(DEPDIR)/libevolution_util_la-e-table-selection-model.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='e-table-selection-model.c' object='libevolution_util_la-e-table-selection-model.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) $(libevolution_util_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o libevolution_util_la-e-table-selection-model.lo `test -f 'e-table-selection-model.c' || echo '$(srcdir)/'`e-table-selection-model.c
libevolution_util_la-e-table-sort-info.lo: e-table-sort-info.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libevolution_util_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT libevolution_util_la-e-table-sort-info.lo -MD -MP -MF $(DEPDIR)/libevolution_util_la-e-table-sort-info.Tpo -c -o libevolution_util_la-e-table-sort-info.lo `test -f 'e-table-sort-info.c' || echo '$(srcdir)/'`e-table-sort-info.c
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libevolution_util_la-e-table-sort-info.Tpo $(DEPDIR)/libevolution_util_la-e-table-sort-info.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='e-table-sort-info.c' object='libevolution_util_la-e-table-sort-info.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) $(libevolution_util_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o libevolution_util_la-e-table-sort-info.lo `test -f 'e-table-sort-info.c' || echo '$(srcdir)/'`e-table-sort-info.c
libevolution_util_la-e-table-sorted-variable.lo: e-table-sorted-variable.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libevolution_util_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT libevolution_util_la-e-table-sorted-variable.lo -MD -MP -MF $(DEPDIR)/libevolution_util_la-e-table-sorted-variable.Tpo -c -o libevolution_util_la-e-table-sorted-variable.lo `test -f 'e-table-sorted-variable.c' || echo '$(srcdir)/'`e-table-sorted-variable.c
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libevolution_util_la-e-table-sorted-variable.Tpo $(DEPDIR)/libevolution_util_la-e-table-sorted-variable.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='e-table-sorted-variable.c' object='libevolution_util_la-e-table-sorted-variable.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) $(libevolution_util_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o libevolution_util_la-e-table-sorted-variable.lo `test -f 'e-table-sorted-variable.c' || echo '$(srcdir)/'`e-table-sorted-variable.c
libevolution_util_la-e-table-sorted.lo: e-table-sorted.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libevolution_util_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT libevolution_util_la-e-table-sorted.lo -MD -MP -MF $(DEPDIR)/libevolution_util_la-e-table-sorted.Tpo -c -o libevolution_util_la-e-table-sorted.lo `test -f 'e-table-sorted.c' || echo '$(srcdir)/'`e-table-sorted.c
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libevolution_util_la-e-table-sorted.Tpo $(DEPDIR)/libevolution_util_la-e-table-sorted.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='e-table-sorted.c' object='libevolution_util_la-e-table-sorted.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) $(libevolution_util_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o libevolution_util_la-e-table-sorted.lo `test -f 'e-table-sorted.c' || echo '$(srcdir)/'`e-table-sorted.c
libevolution_util_la-e-table-sorter.lo: e-table-sorter.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libevolution_util_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT libevolution_util_la-e-table-sorter.lo -MD -MP -MF $(DEPDIR)/libevolution_util_la-e-table-sorter.Tpo -c -o libevolution_util_la-e-table-sorter.lo `test -f 'e-table-sorter.c' || echo '$(srcdir)/'`e-table-sorter.c
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libevolution_util_la-e-table-sorter.Tpo $(DEPDIR)/libevolution_util_la-e-table-sorter.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='e-table-sorter.c' object='libevolution_util_la-e-table-sorter.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) $(libevolution_util_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o libevolution_util_la-e-table-sorter.lo `test -f 'e-table-sorter.c' || echo '$(srcdir)/'`e-table-sorter.c
libevolution_util_la-e-table-sorting-utils.lo: e-table-sorting-utils.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libevolution_util_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT libevolution_util_la-e-table-sorting-utils.lo -MD -MP -MF $(DEPDIR)/libevolution_util_la-e-table-sorting-utils.Tpo -c -o libevolution_util_la-e-table-sorting-utils.lo `test -f 'e-table-sorting-utils.c' || echo '$(srcdir)/'`e-table-sorting-utils.c
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libevolution_util_la-e-table-sorting-utils.Tpo $(DEPDIR)/libevolution_util_la-e-table-sorting-utils.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='e-table-sorting-utils.c' object='libevolution_util_la-e-table-sorting-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) $(libevolution_util_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o libevolution_util_la-e-table-sorting-utils.lo `test -f 'e-table-sorting-utils.c' || echo '$(srcdir)/'`e-table-sorting-utils.c
libevolution_util_la-e-table-specification.lo: e-table-specification.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libevolution_util_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT libevolution_util_la-e-table-specification.lo -MD -MP -MF $(DEPDIR)/libevolution_util_la-e-table-specification.Tpo -c -o libevolution_util_la-e-table-specification.lo `test -f 'e-table-specification.c' || echo '$(srcdir)/'`e-table-specification.c
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libevolution_util_la-e-table-specification.Tpo $(DEPDIR)/libevolution_util_la-e-table-specification.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='e-table-specification.c' object='libevolution_util_la-e-table-specification.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) $(libevolution_util_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o libevolution_util_la-e-table-specification.lo `test -f 'e-table-specification.c' || echo '$(srcdir)/'`e-table-specification.c
libevolution_util_la-e-table-state.lo: e-table-state.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libevolution_util_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT libevolution_util_la-e-table-state.lo -MD -MP -MF $(DEPDIR)/libevolution_util_la-e-table-state.Tpo -c -o libevolution_util_la-e-table-state.lo `test -f 'e-table-state.c' || echo '$(srcdir)/'`e-table-state.c
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libevolution_util_la-e-table-state.Tpo $(DEPDIR)/libevolution_util_la-e-table-state.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='e-table-state.c' object='libevolution_util_la-e-table-state.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) $(libevolution_util_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o libevolution_util_la-e-table-state.lo `test -f 'e-table-state.c' || echo '$(srcdir)/'`e-table-state.c
libevolution_util_la-e-table-subset-variable.lo: e-table-subset-variable.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libevolution_util_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT libevolution_util_la-e-table-subset-variable.lo -MD -MP -MF $(DEPDIR)/libevolution_util_la-e-table-subset-variable.Tpo -c -o libevolution_util_la-e-table-subset-variable.lo `test -f 'e-table-subset-variable.c' || echo '$(srcdir)/'`e-table-subset-variable.c
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libevolution_util_la-e-table-subset-variable.Tpo $(DEPDIR)/libevolution_util_la-e-table-subset-variable.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='e-table-subset-variable.c' object='libevolution_util_la-e-table-subset-variable.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) $(libevolution_util_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o libevolution_util_la-e-table-subset-variable.lo `test -f 'e-table-subset-variable.c' || echo '$(srcdir)/'`e-table-subset-variable.c
libevolution_util_la-e-table-subset.lo: e-table-subset.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libevolution_util_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT libevolution_util_la-e-table-subset.lo -MD -MP -MF $(DEPDIR)/libevolution_util_la-e-table-subset.Tpo -c -o libevolution_util_la-e-table-subset.lo `test -f 'e-table-subset.c' || echo '$(srcdir)/'`e-table-subset.c
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libevolution_util_la-e-table-subset.Tpo $(DEPDIR)/libevolution_util_la-e-table-subset.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='e-table-subset.c' object='libevolution_util_la-e-table-subset.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) $(libevolution_util_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o libevolution_util_la-e-table-subset.lo `test -f 'e-table-subset.c' || echo '$(srcdir)/'`e-table-subset.c
libevolution_util_la-e-table-utils.lo: e-table-utils.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libevolution_util_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT libevolution_util_la-e-table-utils.lo -MD -MP -MF $(DEPDIR)/libevolution_util_la-e-table-utils.Tpo -c -o libevolution_util_la-e-table-utils.lo `test -f 'e-table-utils.c' || echo '$(srcdir)/'`e-table-utils.c
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libevolution_util_la-e-table-utils.Tpo $(DEPDIR)/libevolution_util_la-e-table-utils.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='e-table-utils.c' object='libevolution_util_la-e-table-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) $(libevolution_util_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o libevolution_util_la-e-table-utils.lo `test -f 'e-table-utils.c' || echo '$(srcdir)/'`e-table-utils.c
libevolution_util_la-e-table.lo: e-table.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libevolution_util_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT libevolution_util_la-e-table.lo -MD -MP -MF $(DEPDIR)/libevolution_util_la-e-table.Tpo -c -o libevolution_util_la-e-table.lo `test -f 'e-table.c' || echo '$(srcdir)/'`e-table.c
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libevolution_util_la-e-table.Tpo $(DEPDIR)/libevolution_util_la-e-table.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='e-table.c' object='libevolution_util_la-e-table.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) $(libevolution_util_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o libevolution_util_la-e-table.lo `test -f 'e-table.c' || echo '$(srcdir)/'`e-table.c
libevolution_util_la-e-text-event-processor-emacs-like.lo: e-text-event-processor-emacs-like.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libevolution_util_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT libevolution_util_la-e-text-event-processor-emacs-like.lo -MD -MP -MF $(DEPDIR)/libevolution_util_la-e-text-event-processor-emacs-like.Tpo -c -o libevolution_util_la-e-text-event-processor-emacs-like.lo `test -f 'e-text-event-processor-emacs-like.c' || echo '$(srcdir)/'`e-text-event-processor-emacs-like.c
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libevolution_util_la-e-text-event-processor-emacs-like.Tpo $(DEPDIR)/libevolution_util_la-e-text-event-processor-emacs-like.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='e-text-event-processor-emacs-like.c' object='libevolution_util_la-e-text-event-processor-emacs-like.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) $(libevolution_util_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o libevolution_util_la-e-text-event-processor-emacs-like.lo `test -f 'e-text-event-processor-emacs-like.c' || echo '$(srcdir)/'`e-text-event-processor-emacs-like.c
libevolution_util_la-e-text-event-processor.lo: e-text-event-processor.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libevolution_util_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT libevolution_util_la-e-text-event-processor.lo -MD -MP -MF $(DEPDIR)/libevolution_util_la-e-text-event-processor.Tpo -c -o libevolution_util_la-e-text-event-processor.lo `test -f 'e-text-event-processor.c' || echo '$(srcdir)/'`e-text-event-processor.c
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libevolution_util_la-e-text-event-processor.Tpo $(DEPDIR)/libevolution_util_la-e-text-event-processor.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='e-text-event-processor.c' object='libevolution_util_la-e-text-event-processor.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) $(libevolution_util_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o libevolution_util_la-e-text-event-processor.lo `test -f 'e-text-event-processor.c' || echo '$(srcdir)/'`e-text-event-processor.c
libevolution_util_la-e-text-model-repos.lo: e-text-model-repos.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libevolution_util_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT libevolution_util_la-e-text-model-repos.lo -MD -MP -MF $(DEPDIR)/libevolution_util_la-e-text-model-repos.Tpo -c -o libevolution_util_la-e-text-model-repos.lo `test -f 'e-text-model-repos.c' || echo '$(srcdir)/'`e-text-model-repos.c
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libevolution_util_la-e-text-model-repos.Tpo $(DEPDIR)/libevolution_util_la-e-text-model-repos.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='e-text-model-repos.c' object='libevolution_util_la-e-text-model-repos.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) $(libevolution_util_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o libevolution_util_la-e-text-model-repos.lo `test -f 'e-text-model-repos.c' || echo '$(srcdir)/'`e-text-model-repos.c
libevolution_util_la-e-text-model.lo: e-text-model.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libevolution_util_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT libevolution_util_la-e-text-model.lo -MD -MP -MF $(DEPDIR)/libevolution_util_la-e-text-model.Tpo -c -o libevolution_util_la-e-text-model.lo `test -f 'e-text-model.c' || echo '$(srcdir)/'`e-text-model.c
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libevolution_util_la-e-text-model.Tpo $(DEPDIR)/libevolution_util_la-e-text-model.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='e-text-model.c' object='libevolution_util_la-e-text-model.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) $(libevolution_util_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o libevolution_util_la-e-text-model.lo `test -f 'e-text-model.c' || echo '$(srcdir)/'`e-text-model.c
libevolution_util_la-e-text.lo: e-text.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libevolution_util_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT libevolution_util_la-e-text.lo -MD -MP -MF $(DEPDIR)/libevolution_util_la-e-text.Tpo -c -o libevolution_util_la-e-text.lo `test -f 'e-text.c' || echo '$(srcdir)/'`e-text.c
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libevolution_util_la-e-text.Tpo $(DEPDIR)/libevolution_util_la-e-text.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='e-text.c' object='libevolution_util_la-e-text.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) $(libevolution_util_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o libevolution_util_la-e-text.lo `test -f 'e-text.c' || echo '$(srcdir)/'`e-text.c
libevolution_util_la-e-timezone-dialog.lo: e-timezone-dialog.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libevolution_util_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT libevolution_util_la-e-timezone-dialog.lo -MD -MP -MF $(DEPDIR)/libevolution_util_la-e-timezone-dialog.Tpo -c -o libevolution_util_la-e-timezone-dialog.lo `test -f 'e-timezone-dialog.c' || echo '$(srcdir)/'`e-timezone-dialog.c
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libevolution_util_la-e-timezone-dialog.Tpo $(DEPDIR)/libevolution_util_la-e-timezone-dialog.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='e-timezone-dialog.c' object='libevolution_util_la-e-timezone-dialog.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) $(libevolution_util_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o libevolution_util_la-e-timezone-dialog.lo `test -f 'e-timezone-dialog.c' || echo '$(srcdir)/'`e-timezone-dialog.c
libevolution_util_la-e-tree-model-generator.lo: e-tree-model-generator.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libevolution_util_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT libevolution_util_la-e-tree-model-generator.lo -MD -MP -MF $(DEPDIR)/libevolution_util_la-e-tree-model-generator.Tpo -c -o libevolution_util_la-e-tree-model-generator.lo `test -f 'e-tree-model-generator.c' || echo '$(srcdir)/'`e-tree-model-generator.c
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libevolution_util_la-e-tree-model-generator.Tpo $(DEPDIR)/libevolution_util_la-e-tree-model-generator.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='e-tree-model-generator.c' object='libevolution_util_la-e-tree-model-generator.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) $(libevolution_util_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o libevolution_util_la-e-tree-model-generator.lo `test -f 'e-tree-model-generator.c' || echo '$(srcdir)/'`e-tree-model-generator.c
libevolution_util_la-e-tree-model.lo: e-tree-model.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libevolution_util_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT libevolution_util_la-e-tree-model.lo -MD -MP -MF $(DEPDIR)/libevolution_util_la-e-tree-model.Tpo -c -o libevolution_util_la-e-tree-model.lo `test -f 'e-tree-model.c' || echo '$(srcdir)/'`e-tree-model.c
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libevolution_util_la-e-tree-model.Tpo $(DEPDIR)/libevolution_util_la-e-tree-model.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='e-tree-model.c' object='libevolution_util_la-e-tree-model.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) $(libevolution_util_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o libevolution_util_la-e-tree-model.lo `test -f 'e-tree-model.c' || echo '$(srcdir)/'`e-tree-model.c
libevolution_util_la-e-tree-selection-model.lo: e-tree-selection-model.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libevolution_util_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT libevolution_util_la-e-tree-selection-model.lo -MD -MP -MF $(DEPDIR)/libevolution_util_la-e-tree-selection-model.Tpo -c -o libevolution_util_la-e-tree-selection-model.lo `test -f 'e-tree-selection-model.c' || echo '$(srcdir)/'`e-tree-selection-model.c
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libevolution_util_la-e-tree-selection-model.Tpo $(DEPDIR)/libevolution_util_la-e-tree-selection-model.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='e-tree-selection-model.c' object='libevolution_util_la-e-tree-selection-model.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) $(libevolution_util_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o libevolution_util_la-e-tree-selection-model.lo `test -f 'e-tree-selection-model.c' || echo '$(srcdir)/'`e-tree-selection-model.c
libevolution_util_la-e-tree-table-adapter.lo: e-tree-table-adapter.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libevolution_util_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT libevolution_util_la-e-tree-table-adapter.lo -MD -MP -MF $(DEPDIR)/libevolution_util_la-e-tree-table-adapter.Tpo -c -o libevolution_util_la-e-tree-table-adapter.lo `test -f 'e-tree-table-adapter.c' || echo '$(srcdir)/'`e-tree-table-adapter.c
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libevolution_util_la-e-tree-table-adapter.Tpo $(DEPDIR)/libevolution_util_la-e-tree-table-adapter.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='e-tree-table-adapter.c' object='libevolution_util_la-e-tree-table-adapter.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) $(libevolution_util_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o libevolution_util_la-e-tree-table-adapter.lo `test -f 'e-tree-table-adapter.c' || echo '$(srcdir)/'`e-tree-table-adapter.c
libevolution_util_la-e-tree-view-frame.lo: e-tree-view-frame.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libevolution_util_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT libevolution_util_la-e-tree-view-frame.lo -MD -MP -MF $(DEPDIR)/libevolution_util_la-e-tree-view-frame.Tpo -c -o libevolution_util_la-e-tree-view-frame.lo `test -f 'e-tree-view-frame.c' || echo '$(srcdir)/'`e-tree-view-frame.c
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libevolution_util_la-e-tree-view-frame.Tpo $(DEPDIR)/libevolution_util_la-e-tree-view-frame.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='e-tree-view-frame.c' object='libevolution_util_la-e-tree-view-frame.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) $(libevolution_util_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o libevolution_util_la-e-tree-view-frame.lo `test -f 'e-tree-view-frame.c' || echo '$(srcdir)/'`e-tree-view-frame.c
libevolution_util_la-e-tree.lo: e-tree.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libevolution_util_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT libevolution_util_la-e-tree.lo -MD -MP -MF $(DEPDIR)/libevolution_util_la-e-tree.Tpo -c -o libevolution_util_la-e-tree.lo `test -f 'e-tree.c' || echo '$(srcdir)/'`e-tree.c
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libevolution_util_la-e-tree.Tpo $(DEPDIR)/libevolution_util_la-e-tree.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='e-tree.c' object='libevolution_util_la-e-tree.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) $(libevolution_util_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o libevolution_util_la-e-tree.lo `test -f 'e-tree.c' || echo '$(srcdir)/'`e-tree.c
libevolution_util_la-e-unicode.lo: e-unicode.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libevolution_util_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT libevolution_util_la-e-unicode.lo -MD -MP -MF $(DEPDIR)/libevolution_util_la-e-unicode.Tpo -c -o libevolution_util_la-e-unicode.lo `test -f 'e-unicode.c' || echo '$(srcdir)/'`e-unicode.c
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libevolution_util_la-e-unicode.Tpo $(DEPDIR)/libevolution_util_la-e-unicode.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='e-unicode.c' object='libevolution_util_la-e-unicode.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) $(libevolution_util_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o libevolution_util_la-e-unicode.lo `test -f 'e-unicode.c' || echo '$(srcdir)/'`e-unicode.c
libevolution_util_la-e-url-entry.lo: e-url-entry.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libevolution_util_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT libevolution_util_la-e-url-entry.lo -MD -MP -MF $(DEPDIR)/libevolution_util_la-e-url-entry.Tpo -c -o libevolution_util_la-e-url-entry.lo `test -f 'e-url-entry.c' || echo '$(srcdir)/'`e-url-entry.c
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libevolution_util_la-e-url-entry.Tpo $(DEPDIR)/libevolution_util_la-e-url-entry.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='e-url-entry.c' object='libevolution_util_la-e-url-entry.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) $(libevolution_util_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o libevolution_util_la-e-url-entry.lo `test -f 'e-url-entry.c' || echo '$(srcdir)/'`e-url-entry.c
libevolution_util_la-e-util-enumtypes.lo: e-util-enumtypes.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libevolution_util_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT libevolution_util_la-e-util-enumtypes.lo -MD -MP -MF $(DEPDIR)/libevolution_util_la-e-util-enumtypes.Tpo -c -o libevolution_util_la-e-util-enumtypes.lo `test -f 'e-util-enumtypes.c' || echo '$(srcdir)/'`e-util-enumtypes.c
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libevolution_util_la-e-util-enumtypes.Tpo $(DEPDIR)/libevolution_util_la-e-util-enumtypes.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='e-util-enumtypes.c' object='libevolution_util_la-e-util-enumtypes.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) $(libevolution_util_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o libevolution_util_la-e-util-enumtypes.lo `test -f 'e-util-enumtypes.c' || echo '$(srcdir)/'`e-util-enumtypes.c
libevolution_util_la-e-web-view-gtkhtml.lo: e-web-view-gtkhtml.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libevolution_util_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT libevolution_util_la-e-web-view-gtkhtml.lo -MD -MP -MF $(DEPDIR)/libevolution_util_la-e-web-view-gtkhtml.Tpo -c -o libevolution_util_la-e-web-view-gtkhtml.lo `test -f 'e-web-view-gtkhtml.c' || echo '$(srcdir)/'`e-web-view-gtkhtml.c
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libevolution_util_la-e-web-view-gtkhtml.Tpo $(DEPDIR)/libevolution_util_la-e-web-view-gtkhtml.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='e-web-view-gtkhtml.c' object='libevolution_util_la-e-web-view-gtkhtml.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) $(libevolution_util_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o libevolution_util_la-e-web-view-gtkhtml.lo `test -f 'e-web-view-gtkhtml.c' || echo '$(srcdir)/'`e-web-view-gtkhtml.c
libevolution_util_la-e-web-view-preview.lo: e-web-view-preview.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libevolution_util_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT libevolution_util_la-e-web-view-preview.lo -MD -MP -MF $(DEPDIR)/libevolution_util_la-e-web-view-preview.Tpo -c -o libevolution_util_la-e-web-view-preview.lo `test -f 'e-web-view-preview.c' || echo '$(srcdir)/'`e-web-view-preview.c
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libevolution_util_la-e-web-view-preview.Tpo $(DEPDIR)/libevolution_util_la-e-web-view-preview.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='e-web-view-preview.c' object='libevolution_util_la-e-web-view-preview.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) $(libevolution_util_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o libevolution_util_la-e-web-view-preview.lo `test -f 'e-web-view-preview.c' || echo '$(srcdir)/'`e-web-view-preview.c
libevolution_util_la-e-web-view.lo: e-web-view.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libevolution_util_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT libevolution_util_la-e-web-view.lo -MD -MP -MF $(DEPDIR)/libevolution_util_la-e-web-view.Tpo -c -o libevolution_util_la-e-web-view.lo `test -f 'e-web-view.c' || echo '$(srcdir)/'`e-web-view.c
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libevolution_util_la-e-web-view.Tpo $(DEPDIR)/libevolution_util_la-e-web-view.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='e-web-view.c' object='libevolution_util_la-e-web-view.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) $(libevolution_util_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o libevolution_util_la-e-web-view.lo `test -f 'e-web-view.c' || echo '$(srcdir)/'`e-web-view.c
libevolution_util_la-e-widget-undo.lo: e-widget-undo.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libevolution_util_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT libevolution_util_la-e-widget-undo.lo -MD -MP -MF $(DEPDIR)/libevolution_util_la-e-widget-undo.Tpo -c -o libevolution_util_la-e-widget-undo.lo `test -f 'e-widget-undo.c' || echo '$(srcdir)/'`e-widget-undo.c
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libevolution_util_la-e-widget-undo.Tpo $(DEPDIR)/libevolution_util_la-e-widget-undo.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='e-widget-undo.c' object='libevolution_util_la-e-widget-undo.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) $(libevolution_util_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o libevolution_util_la-e-widget-undo.lo `test -f 'e-widget-undo.c' || echo '$(srcdir)/'`e-widget-undo.c
libevolution_util_la-e-xml-utils.lo: e-xml-utils.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libevolution_util_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT libevolution_util_la-e-xml-utils.lo -MD -MP -MF $(DEPDIR)/libevolution_util_la-e-xml-utils.Tpo -c -o libevolution_util_la-e-xml-utils.lo `test -f 'e-xml-utils.c' || echo '$(srcdir)/'`e-xml-utils.c
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libevolution_util_la-e-xml-utils.Tpo $(DEPDIR)/libevolution_util_la-e-xml-utils.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='e-xml-utils.c' object='libevolution_util_la-e-xml-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) $(libevolution_util_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o libevolution_util_la-e-xml-utils.lo `test -f 'e-xml-utils.c' || echo '$(srcdir)/'`e-xml-utils.c
libevolution_util_la-ea-calendar-cell.lo: ea-calendar-cell.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libevolution_util_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT libevolution_util_la-ea-calendar-cell.lo -MD -MP -MF $(DEPDIR)/libevolution_util_la-ea-calendar-cell.Tpo -c -o libevolution_util_la-ea-calendar-cell.lo `test -f 'ea-calendar-cell.c' || echo '$(srcdir)/'`ea-calendar-cell.c
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libevolution_util_la-ea-calendar-cell.Tpo $(DEPDIR)/libevolution_util_la-ea-calendar-cell.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='ea-calendar-cell.c' object='libevolution_util_la-ea-calendar-cell.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) $(libevolution_util_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o libevolution_util_la-ea-calendar-cell.lo `test -f 'ea-calendar-cell.c' || echo '$(srcdir)/'`ea-calendar-cell.c
libevolution_util_la-ea-calendar-item.lo: ea-calendar-item.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libevolution_util_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT libevolution_util_la-ea-calendar-item.lo -MD -MP -MF $(DEPDIR)/libevolution_util_la-ea-calendar-item.Tpo -c -o libevolution_util_la-ea-calendar-item.lo `test -f 'ea-calendar-item.c' || echo '$(srcdir)/'`ea-calendar-item.c
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libevolution_util_la-ea-calendar-item.Tpo $(DEPDIR)/libevolution_util_la-ea-calendar-item.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='ea-calendar-item.c' object='libevolution_util_la-ea-calendar-item.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) $(libevolution_util_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o libevolution_util_la-ea-calendar-item.lo `test -f 'ea-calendar-item.c' || echo '$(srcdir)/'`ea-calendar-item.c
libevolution_util_la-ea-cell-table.lo: ea-cell-table.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libevolution_util_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT libevolution_util_la-ea-cell-table.lo -MD -MP -MF $(DEPDIR)/libevolution_util_la-ea-cell-table.Tpo -c -o libevolution_util_la-ea-cell-table.lo `test -f 'ea-cell-table.c' || echo '$(srcdir)/'`ea-cell-table.c
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libevolution_util_la-ea-cell-table.Tpo $(DEPDIR)/libevolution_util_la-ea-cell-table.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='ea-cell-table.c' object='libevolution_util_la-ea-cell-table.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) $(libevolution_util_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o libevolution_util_la-ea-cell-table.lo `test -f 'ea-cell-table.c' || echo '$(srcdir)/'`ea-cell-table.c
libevolution_util_la-ea-widgets.lo: ea-widgets.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libevolution_util_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT libevolution_util_la-ea-widgets.lo -MD -MP -MF $(DEPDIR)/libevolution_util_la-ea-widgets.Tpo -c -o libevolution_util_la-ea-widgets.lo `test -f 'ea-widgets.c' || echo '$(srcdir)/'`ea-widgets.c
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libevolution_util_la-ea-widgets.Tpo $(DEPDIR)/libevolution_util_la-ea-widgets.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='ea-widgets.c' object='libevolution_util_la-ea-widgets.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) $(libevolution_util_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o libevolution_util_la-ea-widgets.lo `test -f 'ea-widgets.c' || echo '$(srcdir)/'`ea-widgets.c
libevolution_util_la-gal-a11y-e-cell-popup.lo: gal-a11y-e-cell-popup.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libevolution_util_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT libevolution_util_la-gal-a11y-e-cell-popup.lo -MD -MP -MF $(DEPDIR)/libevolution_util_la-gal-a11y-e-cell-popup.Tpo -c -o libevolution_util_la-gal-a11y-e-cell-popup.lo `test -f 'gal-a11y-e-cell-popup.c' || echo '$(srcdir)/'`gal-a11y-e-cell-popup.c
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libevolution_util_la-gal-a11y-e-cell-popup.Tpo $(DEPDIR)/libevolution_util_la-gal-a11y-e-cell-popup.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='gal-a11y-e-cell-popup.c' object='libevolution_util_la-gal-a11y-e-cell-popup.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) $(libevolution_util_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o libevolution_util_la-gal-a11y-e-cell-popup.lo `test -f 'gal-a11y-e-cell-popup.c' || echo '$(srcdir)/'`gal-a11y-e-cell-popup.c
libevolution_util_la-gal-a11y-e-cell-registry.lo: gal-a11y-e-cell-registry.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libevolution_util_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT libevolution_util_la-gal-a11y-e-cell-registry.lo -MD -MP -MF $(DEPDIR)/libevolution_util_la-gal-a11y-e-cell-registry.Tpo -c -o libevolution_util_la-gal-a11y-e-cell-registry.lo `test -f 'gal-a11y-e-cell-registry.c' || echo '$(srcdir)/'`gal-a11y-e-cell-registry.c
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libevolution_util_la-gal-a11y-e-cell-registry.Tpo $(DEPDIR)/libevolution_util_la-gal-a11y-e-cell-registry.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='gal-a11y-e-cell-registry.c' object='libevolution_util_la-gal-a11y-e-cell-registry.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) $(libevolution_util_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o libevolution_util_la-gal-a11y-e-cell-registry.lo `test -f 'gal-a11y-e-cell-registry.c' || echo '$(srcdir)/'`gal-a11y-e-cell-registry.c
libevolution_util_la-gal-a11y-e-cell-toggle.lo: gal-a11y-e-cell-toggle.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libevolution_util_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT libevolution_util_la-gal-a11y-e-cell-toggle.lo -MD -MP -MF $(DEPDIR)/libevolution_util_la-gal-a11y-e-cell-toggle.Tpo -c -o libevolution_util_la-gal-a11y-e-cell-toggle.lo `test -f 'gal-a11y-e-cell-toggle.c' || echo '$(srcdir)/'`gal-a11y-e-cell-toggle.c
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libevolution_util_la-gal-a11y-e-cell-toggle.Tpo $(DEPDIR)/libevolution_util_la-gal-a11y-e-cell-toggle.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='gal-a11y-e-cell-toggle.c' object='libevolution_util_la-gal-a11y-e-cell-toggle.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) $(libevolution_util_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o libevolution_util_la-gal-a11y-e-cell-toggle.lo `test -f 'gal-a11y-e-cell-toggle.c' || echo '$(srcdir)/'`gal-a11y-e-cell-toggle.c
libevolution_util_la-gal-a11y-e-cell-tree.lo: gal-a11y-e-cell-tree.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libevolution_util_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT libevolution_util_la-gal-a11y-e-cell-tree.lo -MD -MP -MF $(DEPDIR)/libevolution_util_la-gal-a11y-e-cell-tree.Tpo -c -o libevolution_util_la-gal-a11y-e-cell-tree.lo `test -f 'gal-a11y-e-cell-tree.c' || echo '$(srcdir)/'`gal-a11y-e-cell-tree.c
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libevolution_util_la-gal-a11y-e-cell-tree.Tpo $(DEPDIR)/libevolution_util_la-gal-a11y-e-cell-tree.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='gal-a11y-e-cell-tree.c' object='libevolution_util_la-gal-a11y-e-cell-tree.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) $(libevolution_util_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o libevolution_util_la-gal-a11y-e-cell-tree.lo `test -f 'gal-a11y-e-cell-tree.c' || echo '$(srcdir)/'`gal-a11y-e-cell-tree.c
libevolution_util_la-gal-a11y-e-cell-vbox.lo: gal-a11y-e-cell-vbox.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libevolution_util_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT libevolution_util_la-gal-a11y-e-cell-vbox.lo -MD -MP -MF $(DEPDIR)/libevolution_util_la-gal-a11y-e-cell-vbox.Tpo -c -o libevolution_util_la-gal-a11y-e-cell-vbox.lo `test -f 'gal-a11y-e-cell-vbox.c' || echo '$(srcdir)/'`gal-a11y-e-cell-vbox.c
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libevolution_util_la-gal-a11y-e-cell-vbox.Tpo $(DEPDIR)/libevolution_util_la-gal-a11y-e-cell-vbox.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='gal-a11y-e-cell-vbox.c' object='libevolution_util_la-gal-a11y-e-cell-vbox.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) $(libevolution_util_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o libevolution_util_la-gal-a11y-e-cell-vbox.lo `test -f 'gal-a11y-e-cell-vbox.c' || echo '$(srcdir)/'`gal-a11y-e-cell-vbox.c
libevolution_util_la-gal-a11y-e-cell.lo: gal-a11y-e-cell.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libevolution_util_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT libevolution_util_la-gal-a11y-e-cell.lo -MD -MP -MF $(DEPDIR)/libevolution_util_la-gal-a11y-e-cell.Tpo -c -o libevolution_util_la-gal-a11y-e-cell.lo `test -f 'gal-a11y-e-cell.c' || echo '$(srcdir)/'`gal-a11y-e-cell.c
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libevolution_util_la-gal-a11y-e-cell.Tpo $(DEPDIR)/libevolution_util_la-gal-a11y-e-cell.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='gal-a11y-e-cell.c' object='libevolution_util_la-gal-a11y-e-cell.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) $(libevolution_util_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o libevolution_util_la-gal-a11y-e-cell.lo `test -f 'gal-a11y-e-cell.c' || echo '$(srcdir)/'`gal-a11y-e-cell.c
libevolution_util_la-gal-a11y-e-table-click-to-add-factory.lo: gal-a11y-e-table-click-to-add-factory.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libevolution_util_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT libevolution_util_la-gal-a11y-e-table-click-to-add-factory.lo -MD -MP -MF $(DEPDIR)/libevolution_util_la-gal-a11y-e-table-click-to-add-factory.Tpo -c -o libevolution_util_la-gal-a11y-e-table-click-to-add-factory.lo `test -f 'gal-a11y-e-table-click-to-add-factory.c' || echo '$(srcdir)/'`gal-a11y-e-table-click-to-add-factory.c
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libevolution_util_la-gal-a11y-e-table-click-to-add-factory.Tpo $(DEPDIR)/libevolution_util_la-gal-a11y-e-table-click-to-add-factory.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='gal-a11y-e-table-click-to-add-factory.c' object='libevolution_util_la-gal-a11y-e-table-click-to-add-factory.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) $(libevolution_util_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o libevolution_util_la-gal-a11y-e-table-click-to-add-factory.lo `test -f 'gal-a11y-e-table-click-to-add-factory.c' || echo '$(srcdir)/'`gal-a11y-e-table-click-to-add-factory.c
libevolution_util_la-gal-a11y-e-table-click-to-add.lo: gal-a11y-e-table-click-to-add.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libevolution_util_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT libevolution_util_la-gal-a11y-e-table-click-to-add.lo -MD -MP -MF $(DEPDIR)/libevolution_util_la-gal-a11y-e-table-click-to-add.Tpo -c -o libevolution_util_la-gal-a11y-e-table-click-to-add.lo `test -f 'gal-a11y-e-table-click-to-add.c' || echo '$(srcdir)/'`gal-a11y-e-table-click-to-add.c
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libevolution_util_la-gal-a11y-e-table-click-to-add.Tpo $(DEPDIR)/libevolution_util_la-gal-a11y-e-table-click-to-add.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='gal-a11y-e-table-click-to-add.c' object='libevolution_util_la-gal-a11y-e-table-click-to-add.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) $(libevolution_util_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o libevolution_util_la-gal-a11y-e-table-click-to-add.lo `test -f 'gal-a11y-e-table-click-to-add.c' || echo '$(srcdir)/'`gal-a11y-e-table-click-to-add.c
libevolution_util_la-gal-a11y-e-table-column-header.lo: gal-a11y-e-table-column-header.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libevolution_util_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT libevolution_util_la-gal-a11y-e-table-column-header.lo -MD -MP -MF $(DEPDIR)/libevolution_util_la-gal-a11y-e-table-column-header.Tpo -c -o libevolution_util_la-gal-a11y-e-table-column-header.lo `test -f 'gal-a11y-e-table-column-header.c' || echo '$(srcdir)/'`gal-a11y-e-table-column-header.c
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libevolution_util_la-gal-a11y-e-table-column-header.Tpo $(DEPDIR)/libevolution_util_la-gal-a11y-e-table-column-header.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='gal-a11y-e-table-column-header.c' object='libevolution_util_la-gal-a11y-e-table-column-header.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) $(libevolution_util_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o libevolution_util_la-gal-a11y-e-table-column-header.lo `test -f 'gal-a11y-e-table-column-header.c' || echo '$(srcdir)/'`gal-a11y-e-table-column-header.c
libevolution_util_la-gal-a11y-e-table-factory.lo: gal-a11y-e-table-factory.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libevolution_util_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT libevolution_util_la-gal-a11y-e-table-factory.lo -MD -MP -MF $(DEPDIR)/libevolution_util_la-gal-a11y-e-table-factory.Tpo -c -o libevolution_util_la-gal-a11y-e-table-factory.lo `test -f 'gal-a11y-e-table-factory.c' || echo '$(srcdir)/'`gal-a11y-e-table-factory.c
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libevolution_util_la-gal-a11y-e-table-factory.Tpo $(DEPDIR)/libevolution_util_la-gal-a11y-e-table-factory.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='gal-a11y-e-table-factory.c' object='libevolution_util_la-gal-a11y-e-table-factory.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) $(libevolution_util_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o libevolution_util_la-gal-a11y-e-table-factory.lo `test -f 'gal-a11y-e-table-factory.c' || echo '$(srcdir)/'`gal-a11y-e-table-factory.c
libevolution_util_la-gal-a11y-e-table-item-factory.lo: gal-a11y-e-table-item-factory.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libevolution_util_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT libevolution_util_la-gal-a11y-e-table-item-factory.lo -MD -MP -MF $(DEPDIR)/libevolution_util_la-gal-a11y-e-table-item-factory.Tpo -c -o libevolution_util_la-gal-a11y-e-table-item-factory.lo `test -f 'gal-a11y-e-table-item-factory.c' || echo '$(srcdir)/'`gal-a11y-e-table-item-factory.c
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libevolution_util_la-gal-a11y-e-table-item-factory.Tpo $(DEPDIR)/libevolution_util_la-gal-a11y-e-table-item-factory.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='gal-a11y-e-table-item-factory.c' object='libevolution_util_la-gal-a11y-e-table-item-factory.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) $(libevolution_util_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o libevolution_util_la-gal-a11y-e-table-item-factory.lo `test -f 'gal-a11y-e-table-item-factory.c' || echo '$(srcdir)/'`gal-a11y-e-table-item-factory.c
libevolution_util_la-gal-a11y-e-table-item.lo: gal-a11y-e-table-item.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libevolution_util_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT libevolution_util_la-gal-a11y-e-table-item.lo -MD -MP -MF $(DEPDIR)/libevolution_util_la-gal-a11y-e-table-item.Tpo -c -o libevolution_util_la-gal-a11y-e-table-item.lo `test -f 'gal-a11y-e-table-item.c' || echo '$(srcdir)/'`gal-a11y-e-table-item.c
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libevolution_util_la-gal-a11y-e-table-item.Tpo $(DEPDIR)/libevolution_util_la-gal-a11y-e-table-item.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='gal-a11y-e-table-item.c' object='libevolution_util_la-gal-a11y-e-table-item.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) $(libevolution_util_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o libevolution_util_la-gal-a11y-e-table-item.lo `test -f 'gal-a11y-e-table-item.c' || echo '$(srcdir)/'`gal-a11y-e-table-item.c
libevolution_util_la-gal-a11y-e-table.lo: gal-a11y-e-table.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libevolution_util_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT libevolution_util_la-gal-a11y-e-table.lo -MD -MP -MF $(DEPDIR)/libevolution_util_la-gal-a11y-e-table.Tpo -c -o libevolution_util_la-gal-a11y-e-table.lo `test -f 'gal-a11y-e-table.c' || echo '$(srcdir)/'`gal-a11y-e-table.c
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libevolution_util_la-gal-a11y-e-table.Tpo $(DEPDIR)/libevolution_util_la-gal-a11y-e-table.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='gal-a11y-e-table.c' object='libevolution_util_la-gal-a11y-e-table.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) $(libevolution_util_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o libevolution_util_la-gal-a11y-e-table.lo `test -f 'gal-a11y-e-table.c' || echo '$(srcdir)/'`gal-a11y-e-table.c
libevolution_util_la-gal-a11y-e-text-factory.lo: gal-a11y-e-text-factory.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libevolution_util_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT libevolution_util_la-gal-a11y-e-text-factory.lo -MD -MP -MF $(DEPDIR)/libevolution_util_la-gal-a11y-e-text-factory.Tpo -c -o libevolution_util_la-gal-a11y-e-text-factory.lo `test -f 'gal-a11y-e-text-factory.c' || echo '$(srcdir)/'`gal-a11y-e-text-factory.c
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libevolution_util_la-gal-a11y-e-text-factory.Tpo $(DEPDIR)/libevolution_util_la-gal-a11y-e-text-factory.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='gal-a11y-e-text-factory.c' object='libevolution_util_la-gal-a11y-e-text-factory.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) $(libevolution_util_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o libevolution_util_la-gal-a11y-e-text-factory.lo `test -f 'gal-a11y-e-text-factory.c' || echo '$(srcdir)/'`gal-a11y-e-text-factory.c
libevolution_util_la-gal-a11y-e-text.lo: gal-a11y-e-text.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libevolution_util_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT libevolution_util_la-gal-a11y-e-text.lo -MD -MP -MF $(DEPDIR)/libevolution_util_la-gal-a11y-e-text.Tpo -c -o libevolution_util_la-gal-a11y-e-text.lo `test -f 'gal-a11y-e-text.c' || echo '$(srcdir)/'`gal-a11y-e-text.c
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libevolution_util_la-gal-a11y-e-text.Tpo $(DEPDIR)/libevolution_util_la-gal-a11y-e-text.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='gal-a11y-e-text.c' object='libevolution_util_la-gal-a11y-e-text.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) $(libevolution_util_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o libevolution_util_la-gal-a11y-e-text.lo `test -f 'gal-a11y-e-text.c' || echo '$(srcdir)/'`gal-a11y-e-text.c
libevolution_util_la-gal-a11y-e-tree-factory.lo: gal-a11y-e-tree-factory.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libevolution_util_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT libevolution_util_la-gal-a11y-e-tree-factory.lo -MD -MP -MF $(DEPDIR)/libevolution_util_la-gal-a11y-e-tree-factory.Tpo -c -o libevolution_util_la-gal-a11y-e-tree-factory.lo `test -f 'gal-a11y-e-tree-factory.c' || echo '$(srcdir)/'`gal-a11y-e-tree-factory.c
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libevolution_util_la-gal-a11y-e-tree-factory.Tpo $(DEPDIR)/libevolution_util_la-gal-a11y-e-tree-factory.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='gal-a11y-e-tree-factory.c' object='libevolution_util_la-gal-a11y-e-tree-factory.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) $(libevolution_util_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o libevolution_util_la-gal-a11y-e-tree-factory.lo `test -f 'gal-a11y-e-tree-factory.c' || echo '$(srcdir)/'`gal-a11y-e-tree-factory.c
libevolution_util_la-gal-a11y-e-tree.lo: gal-a11y-e-tree.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libevolution_util_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT libevolution_util_la-gal-a11y-e-tree.lo -MD -MP -MF $(DEPDIR)/libevolution_util_la-gal-a11y-e-tree.Tpo -c -o libevolution_util_la-gal-a11y-e-tree.lo `test -f 'gal-a11y-e-tree.c' || echo '$(srcdir)/'`gal-a11y-e-tree.c
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libevolution_util_la-gal-a11y-e-tree.Tpo $(DEPDIR)/libevolution_util_la-gal-a11y-e-tree.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='gal-a11y-e-tree.c' object='libevolution_util_la-gal-a11y-e-tree.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) $(libevolution_util_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o libevolution_util_la-gal-a11y-e-tree.lo `test -f 'gal-a11y-e-tree.c' || echo '$(srcdir)/'`gal-a11y-e-tree.c
libevolution_util_la-gal-a11y-util.lo: gal-a11y-util.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libevolution_util_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT libevolution_util_la-gal-a11y-util.lo -MD -MP -MF $(DEPDIR)/libevolution_util_la-gal-a11y-util.Tpo -c -o libevolution_util_la-gal-a11y-util.lo `test -f 'gal-a11y-util.c' || echo '$(srcdir)/'`gal-a11y-util.c
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libevolution_util_la-gal-a11y-util.Tpo $(DEPDIR)/libevolution_util_la-gal-a11y-util.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='gal-a11y-util.c' object='libevolution_util_la-gal-a11y-util.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) $(libevolution_util_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o libevolution_util_la-gal-a11y-util.lo `test -f 'gal-a11y-util.c' || echo '$(srcdir)/'`gal-a11y-util.c
libevolution_util_la-gal-view-collection.lo: gal-view-collection.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libevolution_util_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT libevolution_util_la-gal-view-collection.lo -MD -MP -MF $(DEPDIR)/libevolution_util_la-gal-view-collection.Tpo -c -o libevolution_util_la-gal-view-collection.lo `test -f 'gal-view-collection.c' || echo '$(srcdir)/'`gal-view-collection.c
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libevolution_util_la-gal-view-collection.Tpo $(DEPDIR)/libevolution_util_la-gal-view-collection.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='gal-view-collection.c' object='libevolution_util_la-gal-view-collection.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) $(libevolution_util_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o libevolution_util_la-gal-view-collection.lo `test -f 'gal-view-collection.c' || echo '$(srcdir)/'`gal-view-collection.c
libevolution_util_la-gal-view-etable.lo: gal-view-etable.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libevolution_util_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT libevolution_util_la-gal-view-etable.lo -MD -MP -MF $(DEPDIR)/libevolution_util_la-gal-view-etable.Tpo -c -o libevolution_util_la-gal-view-etable.lo `test -f 'gal-view-etable.c' || echo '$(srcdir)/'`gal-view-etable.c
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libevolution_util_la-gal-view-etable.Tpo $(DEPDIR)/libevolution_util_la-gal-view-etable.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='gal-view-etable.c' object='libevolution_util_la-gal-view-etable.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) $(libevolution_util_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o libevolution_util_la-gal-view-etable.lo `test -f 'gal-view-etable.c' || echo '$(srcdir)/'`gal-view-etable.c
libevolution_util_la-gal-view-instance-save-as-dialog.lo: gal-view-instance-save-as-dialog.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libevolution_util_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT libevolution_util_la-gal-view-instance-save-as-dialog.lo -MD -MP -MF $(DEPDIR)/libevolution_util_la-gal-view-instance-save-as-dialog.Tpo -c -o libevolution_util_la-gal-view-instance-save-as-dialog.lo `test -f 'gal-view-instance-save-as-dialog.c' || echo '$(srcdir)/'`gal-view-instance-save-as-dialog.c
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libevolution_util_la-gal-view-instance-save-as-dialog.Tpo $(DEPDIR)/libevolution_util_la-gal-view-instance-save-as-dialog.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='gal-view-instance-save-as-dialog.c' object='libevolution_util_la-gal-view-instance-save-as-dialog.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) $(libevolution_util_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o libevolution_util_la-gal-view-instance-save-as-dialog.lo `test -f 'gal-view-instance-save-as-dialog.c' || echo '$(srcdir)/'`gal-view-instance-save-as-dialog.c
libevolution_util_la-gal-view-instance.lo: gal-view-instance.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libevolution_util_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT libevolution_util_la-gal-view-instance.lo -MD -MP -MF $(DEPDIR)/libevolution_util_la-gal-view-instance.Tpo -c -o libevolution_util_la-gal-view-instance.lo `test -f 'gal-view-instance.c' || echo '$(srcdir)/'`gal-view-instance.c
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libevolution_util_la-gal-view-instance.Tpo $(DEPDIR)/libevolution_util_la-gal-view-instance.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='gal-view-instance.c' object='libevolution_util_la-gal-view-instance.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) $(libevolution_util_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o libevolution_util_la-gal-view-instance.lo `test -f 'gal-view-instance.c' || echo '$(srcdir)/'`gal-view-instance.c
libevolution_util_la-gal-view.lo: gal-view.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libevolution_util_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT libevolution_util_la-gal-view.lo -MD -MP -MF $(DEPDIR)/libevolution_util_la-gal-view.Tpo -c -o libevolution_util_la-gal-view.lo `test -f 'gal-view.c' || echo '$(srcdir)/'`gal-view.c
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libevolution_util_la-gal-view.Tpo $(DEPDIR)/libevolution_util_la-gal-view.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='gal-view.c' object='libevolution_util_la-gal-view.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) $(libevolution_util_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o libevolution_util_la-gal-view.lo `test -f 'gal-view.c' || echo '$(srcdir)/'`gal-view.c
libevolution_util_la-e-win32-reloc.lo: e-win32-reloc.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libevolution_util_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT libevolution_util_la-e-win32-reloc.lo -MD -MP -MF $(DEPDIR)/libevolution_util_la-e-win32-reloc.Tpo -c -o libevolution_util_la-e-win32-reloc.lo `test -f 'e-win32-reloc.c' || echo '$(srcdir)/'`e-win32-reloc.c
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libevolution_util_la-e-win32-reloc.Tpo $(DEPDIR)/libevolution_util_la-e-win32-reloc.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='e-win32-reloc.c' object='libevolution_util_la-e-win32-reloc.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) $(libevolution_util_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o libevolution_util_la-e-win32-reloc.lo `test -f 'e-win32-reloc.c' || echo '$(srcdir)/'`e-win32-reloc.c
libevolution_util_la-e-win32-defaults.lo: e-win32-defaults.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libevolution_util_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT libevolution_util_la-e-win32-defaults.lo -MD -MP -MF $(DEPDIR)/libevolution_util_la-e-win32-defaults.Tpo -c -o libevolution_util_la-e-win32-defaults.lo `test -f 'e-win32-defaults.c' || echo '$(srcdir)/'`e-win32-defaults.c
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libevolution_util_la-e-win32-defaults.Tpo $(DEPDIR)/libevolution_util_la-e-win32-defaults.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='e-win32-defaults.c' object='libevolution_util_la-e-win32-defaults.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) $(libevolution_util_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o libevolution_util_la-e-win32-defaults.lo `test -f 'e-win32-defaults.c' || echo '$(srcdir)/'`e-win32-defaults.c
evolution_source_viewer-evolution-source-viewer.o: evolution-source-viewer.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(evolution_source_viewer_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT evolution_source_viewer-evolution-source-viewer.o -MD -MP -MF $(DEPDIR)/evolution_source_viewer-evolution-source-viewer.Tpo -c -o evolution_source_viewer-evolution-source-viewer.o `test -f 'evolution-source-viewer.c' || echo '$(srcdir)/'`evolution-source-viewer.c
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/evolution_source_viewer-evolution-source-viewer.Tpo $(DEPDIR)/evolution_source_viewer-evolution-source-viewer.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='evolution-source-viewer.c' object='evolution_source_viewer-evolution-source-viewer.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) $(evolution_source_viewer_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o evolution_source_viewer-evolution-source-viewer.o `test -f 'evolution-source-viewer.c' || echo '$(srcdir)/'`evolution-source-viewer.c
evolution_source_viewer-evolution-source-viewer.obj: evolution-source-viewer.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(evolution_source_viewer_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT evolution_source_viewer-evolution-source-viewer.obj -MD -MP -MF $(DEPDIR)/evolution_source_viewer-evolution-source-viewer.Tpo -c -o evolution_source_viewer-evolution-source-viewer.obj `if test -f 'evolution-source-viewer.c'; then $(CYGPATH_W) 'evolution-source-viewer.c'; else $(CYGPATH_W) '$(srcdir)/evolution-source-viewer.c'; fi`
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/evolution_source_viewer-evolution-source-viewer.Tpo $(DEPDIR)/evolution_source_viewer-evolution-source-viewer.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='evolution-source-viewer.c' object='evolution_source_viewer-evolution-source-viewer.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) $(evolution_source_viewer_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o evolution_source_viewer-evolution-source-viewer.obj `if test -f 'evolution-source-viewer.c'; then $(CYGPATH_W) 'evolution-source-viewer.c'; else $(CYGPATH_W) '$(srcdir)/evolution-source-viewer.c'; fi`
test_calendar-test-calendar.o: test-calendar.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_calendar_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_calendar-test-calendar.o -MD -MP -MF $(DEPDIR)/test_calendar-test-calendar.Tpo -c -o test_calendar-test-calendar.o `test -f 'test-calendar.c' || echo '$(srcdir)/'`test-calendar.c
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/test_calendar-test-calendar.Tpo $(DEPDIR)/test_calendar-test-calendar.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='test-calendar.c' object='test_calendar-test-calendar.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) $(test_calendar_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o test_calendar-test-calendar.o `test -f 'test-calendar.c' || echo '$(srcdir)/'`test-calendar.c
test_calendar-test-calendar.obj: test-calendar.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_calendar_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_calendar-test-calendar.obj -MD -MP -MF $(DEPDIR)/test_calendar-test-calendar.Tpo -c -o test_calendar-test-calendar.obj `if test -f 'test-calendar.c'; then $(CYGPATH_W) 'test-calendar.c'; else $(CYGPATH_W) '$(srcdir)/test-calendar.c'; fi`
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/test_calendar-test-calendar.Tpo $(DEPDIR)/test_calendar-test-calendar.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='test-calendar.c' object='test_calendar-test-calendar.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) $(test_calendar_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o test_calendar-test-calendar.obj `if test -f 'test-calendar.c'; then $(CYGPATH_W) 'test-calendar.c'; else $(CYGPATH_W) '$(srcdir)/test-calendar.c'; fi`
test_category_completion-test-category-completion.o: test-category-completion.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_category_completion_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_category_completion-test-category-completion.o -MD -MP -MF $(DEPDIR)/test_category_completion-test-category-completion.Tpo -c -o test_category_completion-test-category-completion.o `test -f 'test-category-completion.c' || echo '$(srcdir)/'`test-category-completion.c
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/test_category_completion-test-category-completion.Tpo $(DEPDIR)/test_category_completion-test-category-completion.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='test-category-completion.c' object='test_category_completion-test-category-completion.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) $(test_category_completion_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o test_category_completion-test-category-completion.o `test -f 'test-category-completion.c' || echo '$(srcdir)/'`test-category-completion.c
test_category_completion-test-category-completion.obj: test-category-completion.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_category_completion_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_category_completion-test-category-completion.obj -MD -MP -MF $(DEPDIR)/test_category_completion-test-category-completion.Tpo -c -o test_category_completion-test-category-completion.obj `if test -f 'test-category-completion.c'; then $(CYGPATH_W) 'test-category-completion.c'; else $(CYGPATH_W) '$(srcdir)/test-category-completion.c'; fi`
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/test_category_completion-test-category-completion.Tpo $(DEPDIR)/test_category_completion-test-category-completion.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='test-category-completion.c' object='test_category_completion-test-category-completion.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) $(test_category_completion_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o test_category_completion-test-category-completion.obj `if test -f 'test-category-completion.c'; then $(CYGPATH_W) 'test-category-completion.c'; else $(CYGPATH_W) '$(srcdir)/test-category-completion.c'; fi`
test_contact_store-test-contact-store.o: test-contact-store.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_contact_store_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_contact_store-test-contact-store.o -MD -MP -MF $(DEPDIR)/test_contact_store-test-contact-store.Tpo -c -o test_contact_store-test-contact-store.o `test -f 'test-contact-store.c' || echo '$(srcdir)/'`test-contact-store.c
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/test_contact_store-test-contact-store.Tpo $(DEPDIR)/test_contact_store-test-contact-store.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='test-contact-store.c' object='test_contact_store-test-contact-store.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) $(test_contact_store_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o test_contact_store-test-contact-store.o `test -f 'test-contact-store.c' || echo '$(srcdir)/'`test-contact-store.c
test_contact_store-test-contact-store.obj: test-contact-store.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_contact_store_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_contact_store-test-contact-store.obj -MD -MP -MF $(DEPDIR)/test_contact_store-test-contact-store.Tpo -c -o test_contact_store-test-contact-store.obj `if test -f 'test-contact-store.c'; then $(CYGPATH_W) 'test-contact-store.c'; else $(CYGPATH_W) '$(srcdir)/test-contact-store.c'; fi`
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/test_contact_store-test-contact-store.Tpo $(DEPDIR)/test_contact_store-test-contact-store.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='test-contact-store.c' object='test_contact_store-test-contact-store.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) $(test_contact_store_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o test_contact_store-test-contact-store.obj `if test -f 'test-contact-store.c'; then $(CYGPATH_W) 'test-contact-store.c'; else $(CYGPATH_W) '$(srcdir)/test-contact-store.c'; fi`
test_dateedit-test-dateedit.o: test-dateedit.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_dateedit_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_dateedit-test-dateedit.o -MD -MP -MF $(DEPDIR)/test_dateedit-test-dateedit.Tpo -c -o test_dateedit-test-dateedit.o `test -f 'test-dateedit.c' || echo '$(srcdir)/'`test-dateedit.c
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/test_dateedit-test-dateedit.Tpo $(DEPDIR)/test_dateedit-test-dateedit.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='test-dateedit.c' object='test_dateedit-test-dateedit.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) $(test_dateedit_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o test_dateedit-test-dateedit.o `test -f 'test-dateedit.c' || echo '$(srcdir)/'`test-dateedit.c
test_dateedit-test-dateedit.obj: test-dateedit.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_dateedit_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_dateedit-test-dateedit.obj -MD -MP -MF $(DEPDIR)/test_dateedit-test-dateedit.Tpo -c -o test_dateedit-test-dateedit.obj `if test -f 'test-dateedit.c'; then $(CYGPATH_W) 'test-dateedit.c'; else $(CYGPATH_W) '$(srcdir)/test-dateedit.c'; fi`
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/test_dateedit-test-dateedit.Tpo $(DEPDIR)/test_dateedit-test-dateedit.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='test-dateedit.c' object='test_dateedit-test-dateedit.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) $(test_dateedit_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o test_dateedit-test-dateedit.obj `if test -f 'test-dateedit.c'; then $(CYGPATH_W) 'test-dateedit.c'; else $(CYGPATH_W) '$(srcdir)/test-dateedit.c'; fi`
test_mail_signatures-test-mail-signatures.o: test-mail-signatures.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_mail_signatures_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_mail_signatures-test-mail-signatures.o -MD -MP -MF $(DEPDIR)/test_mail_signatures-test-mail-signatures.Tpo -c -o test_mail_signatures-test-mail-signatures.o `test -f 'test-mail-signatures.c' || echo '$(srcdir)/'`test-mail-signatures.c
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/test_mail_signatures-test-mail-signatures.Tpo $(DEPDIR)/test_mail_signatures-test-mail-signatures.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='test-mail-signatures.c' object='test_mail_signatures-test-mail-signatures.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) $(test_mail_signatures_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o test_mail_signatures-test-mail-signatures.o `test -f 'test-mail-signatures.c' || echo '$(srcdir)/'`test-mail-signatures.c
test_mail_signatures-test-mail-signatures.obj: test-mail-signatures.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_mail_signatures_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_mail_signatures-test-mail-signatures.obj -MD -MP -MF $(DEPDIR)/test_mail_signatures-test-mail-signatures.Tpo -c -o test_mail_signatures-test-mail-signatures.obj `if test -f 'test-mail-signatures.c'; then $(CYGPATH_W) 'test-mail-signatures.c'; else $(CYGPATH_W) '$(srcdir)/test-mail-signatures.c'; fi`
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/test_mail_signatures-test-mail-signatures.Tpo $(DEPDIR)/test_mail_signatures-test-mail-signatures.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='test-mail-signatures.c' object='test_mail_signatures-test-mail-signatures.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) $(test_mail_signatures_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o test_mail_signatures-test-mail-signatures.obj `if test -f 'test-mail-signatures.c'; then $(CYGPATH_W) 'test-mail-signatures.c'; else $(CYGPATH_W) '$(srcdir)/test-mail-signatures.c'; fi`
test_name_selector-test-name-selector.o: test-name-selector.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_name_selector_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_name_selector-test-name-selector.o -MD -MP -MF $(DEPDIR)/test_name_selector-test-name-selector.Tpo -c -o test_name_selector-test-name-selector.o `test -f 'test-name-selector.c' || echo '$(srcdir)/'`test-name-selector.c
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/test_name_selector-test-name-selector.Tpo $(DEPDIR)/test_name_selector-test-name-selector.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='test-name-selector.c' object='test_name_selector-test-name-selector.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) $(test_name_selector_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o test_name_selector-test-name-selector.o `test -f 'test-name-selector.c' || echo '$(srcdir)/'`test-name-selector.c
test_name_selector-test-name-selector.obj: test-name-selector.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_name_selector_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_name_selector-test-name-selector.obj -MD -MP -MF $(DEPDIR)/test_name_selector-test-name-selector.Tpo -c -o test_name_selector-test-name-selector.obj `if test -f 'test-name-selector.c'; then $(CYGPATH_W) 'test-name-selector.c'; else $(CYGPATH_W) '$(srcdir)/test-name-selector.c'; fi`
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/test_name_selector-test-name-selector.Tpo $(DEPDIR)/test_name_selector-test-name-selector.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='test-name-selector.c' object='test_name_selector-test-name-selector.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) $(test_name_selector_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o test_name_selector-test-name-selector.obj `if test -f 'test-name-selector.c'; then $(CYGPATH_W) 'test-name-selector.c'; else $(CYGPATH_W) '$(srcdir)/test-name-selector.c'; fi`
test_preferences_window-test-preferences-window.o: test-preferences-window.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_preferences_window_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_preferences_window-test-preferences-window.o -MD -MP -MF $(DEPDIR)/test_preferences_window-test-preferences-window.Tpo -c -o test_preferences_window-test-preferences-window.o `test -f 'test-preferences-window.c' || echo '$(srcdir)/'`test-preferences-window.c
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/test_preferences_window-test-preferences-window.Tpo $(DEPDIR)/test_preferences_window-test-preferences-window.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='test-preferences-window.c' object='test_preferences_window-test-preferences-window.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) $(test_preferences_window_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o test_preferences_window-test-preferences-window.o `test -f 'test-preferences-window.c' || echo '$(srcdir)/'`test-preferences-window.c
test_preferences_window-test-preferences-window.obj: test-preferences-window.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_preferences_window_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_preferences_window-test-preferences-window.obj -MD -MP -MF $(DEPDIR)/test_preferences_window-test-preferences-window.Tpo -c -o test_preferences_window-test-preferences-window.obj `if test -f 'test-preferences-window.c'; then $(CYGPATH_W) 'test-preferences-window.c'; else $(CYGPATH_W) '$(srcdir)/test-preferences-window.c'; fi`
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/test_preferences_window-test-preferences-window.Tpo $(DEPDIR)/test_preferences_window-test-preferences-window.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='test-preferences-window.c' object='test_preferences_window-test-preferences-window.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) $(test_preferences_window_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o test_preferences_window-test-preferences-window.obj `if test -f 'test-preferences-window.c'; then $(CYGPATH_W) 'test-preferences-window.c'; else $(CYGPATH_W) '$(srcdir)/test-preferences-window.c'; fi`
test_proxy_preferences-test-proxy-preferences.o: test-proxy-preferences.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_proxy_preferences_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_proxy_preferences-test-proxy-preferences.o -MD -MP -MF $(DEPDIR)/test_proxy_preferences-test-proxy-preferences.Tpo -c -o test_proxy_preferences-test-proxy-preferences.o `test -f 'test-proxy-preferences.c' || echo '$(srcdir)/'`test-proxy-preferences.c
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/test_proxy_preferences-test-proxy-preferences.Tpo $(DEPDIR)/test_proxy_preferences-test-proxy-preferences.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='test-proxy-preferences.c' object='test_proxy_preferences-test-proxy-preferences.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) $(test_proxy_preferences_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o test_proxy_preferences-test-proxy-preferences.o `test -f 'test-proxy-preferences.c' || echo '$(srcdir)/'`test-proxy-preferences.c
test_proxy_preferences-test-proxy-preferences.obj: test-proxy-preferences.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_proxy_preferences_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_proxy_preferences-test-proxy-preferences.obj -MD -MP -MF $(DEPDIR)/test_proxy_preferences-test-proxy-preferences.Tpo -c -o test_proxy_preferences-test-proxy-preferences.obj `if test -f 'test-proxy-preferences.c'; then $(CYGPATH_W) 'test-proxy-preferences.c'; else $(CYGPATH_W) '$(srcdir)/test-proxy-preferences.c'; fi`
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/test_proxy_preferences-test-proxy-preferences.Tpo $(DEPDIR)/test_proxy_preferences-test-proxy-preferences.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='test-proxy-preferences.c' object='test_proxy_preferences-test-proxy-preferences.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) $(test_proxy_preferences_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o test_proxy_preferences-test-proxy-preferences.obj `if test -f 'test-proxy-preferences.c'; then $(CYGPATH_W) 'test-proxy-preferences.c'; else $(CYGPATH_W) '$(srcdir)/test-proxy-preferences.c'; fi`
test_source_combo_box-test-source-combo-box.o: test-source-combo-box.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_source_combo_box_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_source_combo_box-test-source-combo-box.o -MD -MP -MF $(DEPDIR)/test_source_combo_box-test-source-combo-box.Tpo -c -o test_source_combo_box-test-source-combo-box.o `test -f 'test-source-combo-box.c' || echo '$(srcdir)/'`test-source-combo-box.c
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/test_source_combo_box-test-source-combo-box.Tpo $(DEPDIR)/test_source_combo_box-test-source-combo-box.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='test-source-combo-box.c' object='test_source_combo_box-test-source-combo-box.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) $(test_source_combo_box_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o test_source_combo_box-test-source-combo-box.o `test -f 'test-source-combo-box.c' || echo '$(srcdir)/'`test-source-combo-box.c
test_source_combo_box-test-source-combo-box.obj: test-source-combo-box.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_source_combo_box_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_source_combo_box-test-source-combo-box.obj -MD -MP -MF $(DEPDIR)/test_source_combo_box-test-source-combo-box.Tpo -c -o test_source_combo_box-test-source-combo-box.obj `if test -f 'test-source-combo-box.c'; then $(CYGPATH_W) 'test-source-combo-box.c'; else $(CYGPATH_W) '$(srcdir)/test-source-combo-box.c'; fi`
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/test_source_combo_box-test-source-combo-box.Tpo $(DEPDIR)/test_source_combo_box-test-source-combo-box.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='test-source-combo-box.c' object='test_source_combo_box-test-source-combo-box.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) $(test_source_combo_box_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o test_source_combo_box-test-source-combo-box.obj `if test -f 'test-source-combo-box.c'; then $(CYGPATH_W) 'test-source-combo-box.c'; else $(CYGPATH_W) '$(srcdir)/test-source-combo-box.c'; fi`
test_source_config-test-source-config.o: test-source-config.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_source_config_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_source_config-test-source-config.o -MD -MP -MF $(DEPDIR)/test_source_config-test-source-config.Tpo -c -o test_source_config-test-source-config.o `test -f 'test-source-config.c' || echo '$(srcdir)/'`test-source-config.c
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/test_source_config-test-source-config.Tpo $(DEPDIR)/test_source_config-test-source-config.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='test-source-config.c' object='test_source_config-test-source-config.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) $(test_source_config_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o test_source_config-test-source-config.o `test -f 'test-source-config.c' || echo '$(srcdir)/'`test-source-config.c
test_source_config-test-source-config.obj: test-source-config.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_source_config_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_source_config-test-source-config.obj -MD -MP -MF $(DEPDIR)/test_source_config-test-source-config.Tpo -c -o test_source_config-test-source-config.obj `if test -f 'test-source-config.c'; then $(CYGPATH_W) 'test-source-config.c'; else $(CYGPATH_W) '$(srcdir)/test-source-config.c'; fi`
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/test_source_config-test-source-config.Tpo $(DEPDIR)/test_source_config-test-source-config.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='test-source-config.c' object='test_source_config-test-source-config.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) $(test_source_config_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o test_source_config-test-source-config.obj `if test -f 'test-source-config.c'; then $(CYGPATH_W) 'test-source-config.c'; else $(CYGPATH_W) '$(srcdir)/test-source-config.c'; fi`
test_source_selector-test-source-selector.o: test-source-selector.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_source_selector_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_source_selector-test-source-selector.o -MD -MP -MF $(DEPDIR)/test_source_selector-test-source-selector.Tpo -c -o test_source_selector-test-source-selector.o `test -f 'test-source-selector.c' || echo '$(srcdir)/'`test-source-selector.c
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/test_source_selector-test-source-selector.Tpo $(DEPDIR)/test_source_selector-test-source-selector.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='test-source-selector.c' object='test_source_selector-test-source-selector.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) $(test_source_selector_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o test_source_selector-test-source-selector.o `test -f 'test-source-selector.c' || echo '$(srcdir)/'`test-source-selector.c
test_source_selector-test-source-selector.obj: test-source-selector.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_source_selector_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_source_selector-test-source-selector.obj -MD -MP -MF $(DEPDIR)/test_source_selector-test-source-selector.Tpo -c -o test_source_selector-test-source-selector.obj `if test -f 'test-source-selector.c'; then $(CYGPATH_W) 'test-source-selector.c'; else $(CYGPATH_W) '$(srcdir)/test-source-selector.c'; fi`
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/test_source_selector-test-source-selector.Tpo $(DEPDIR)/test_source_selector-test-source-selector.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='test-source-selector.c' object='test_source_selector-test-source-selector.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) $(test_source_selector_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o test_source_selector-test-source-selector.obj `if test -f 'test-source-selector.c'; then $(CYGPATH_W) 'test-source-selector.c'; else $(CYGPATH_W) '$(srcdir)/test-source-selector.c'; fi`
test_tree_view_frame-test-tree-view-frame.o: test-tree-view-frame.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_tree_view_frame_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_tree_view_frame-test-tree-view-frame.o -MD -MP -MF $(DEPDIR)/test_tree_view_frame-test-tree-view-frame.Tpo -c -o test_tree_view_frame-test-tree-view-frame.o `test -f 'test-tree-view-frame.c' || echo '$(srcdir)/'`test-tree-view-frame.c
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/test_tree_view_frame-test-tree-view-frame.Tpo $(DEPDIR)/test_tree_view_frame-test-tree-view-frame.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='test-tree-view-frame.c' object='test_tree_view_frame-test-tree-view-frame.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) $(test_tree_view_frame_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o test_tree_view_frame-test-tree-view-frame.o `test -f 'test-tree-view-frame.c' || echo '$(srcdir)/'`test-tree-view-frame.c
test_tree_view_frame-test-tree-view-frame.obj: test-tree-view-frame.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(test_tree_view_frame_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_tree_view_frame-test-tree-view-frame.obj -MD -MP -MF $(DEPDIR)/test_tree_view_frame-test-tree-view-frame.Tpo -c -o test_tree_view_frame-test-tree-view-frame.obj `if test -f 'test-tree-view-frame.c'; then $(CYGPATH_W) 'test-tree-view-frame.c'; else $(CYGPATH_W) '$(srcdir)/test-tree-view-frame.c'; fi`
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/test_tree_view_frame-test-tree-view-frame.Tpo $(DEPDIR)/test_tree_view_frame-test-tree-view-frame.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='test-tree-view-frame.c' object='test_tree_view_frame-test-tree-view-frame.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) $(test_tree_view_frame_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o test_tree_view_frame-test-tree-view-frame.obj `if test -f 'test-tree-view-frame.c'; then $(CYGPATH_W) 'test-tree-view-frame.c'; else $(CYGPATH_W) '$(srcdir)/test-tree-view-frame.c'; fi`
mostlyclean-libtool:
-rm -f *.lo
clean-libtool:
-rm -rf .libs _libs
install-errorDATA: $(error_DATA)
@$(NORMAL_INSTALL)
@list='$(error_DATA)'; test -n "$(errordir)" || list=; \
if test -n "$$list"; then \
echo " $(MKDIR_P) '$(DESTDIR)$(errordir)'"; \
$(MKDIR_P) "$(DESTDIR)$(errordir)" || 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)$(errordir)'"; \
$(INSTALL_DATA) $$files "$(DESTDIR)$(errordir)" || exit $$?; \
done
uninstall-errorDATA:
@$(NORMAL_UNINSTALL)
@list='$(error_DATA)'; test -n "$(errordir)" || list=; \
files=`for p in $$list; do echo $$p; done | sed -e 's|^.*/||'`; \
dir='$(DESTDIR)$(errordir)'; $(am__uninstall_files_from_dir)
install-uiDATA: $(ui_DATA)
@$(NORMAL_INSTALL)
@list='$(ui_DATA)'; test -n "$(uidir)" || list=; \
if test -n "$$list"; then \
echo " $(MKDIR_P) '$(DESTDIR)$(uidir)'"; \
$(MKDIR_P) "$(DESTDIR)$(uidir)" || 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)$(uidir)'"; \
$(INSTALL_DATA) $$files "$(DESTDIR)$(uidir)" || exit $$?; \
done
uninstall-uiDATA:
@$(NORMAL_UNINSTALL)
@list='$(ui_DATA)'; test -n "$(uidir)" || list=; \
files=`for p in $$list; do echo $$p; done | sed -e 's|^.*/||'`; \
dir='$(DESTDIR)$(uidir)'; $(am__uninstall_files_from_dir)
install-evolution_util_includeHEADERS: $(evolution_util_include_HEADERS)
@$(NORMAL_INSTALL)
@list='$(evolution_util_include_HEADERS)'; test -n "$(evolution_util_includedir)" || list=; \
if test -n "$$list"; then \
echo " $(MKDIR_P) '$(DESTDIR)$(evolution_util_includedir)'"; \
$(MKDIR_P) "$(DESTDIR)$(evolution_util_includedir)" || 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_HEADER) $$files '$(DESTDIR)$(evolution_util_includedir)'"; \
$(INSTALL_HEADER) $$files "$(DESTDIR)$(evolution_util_includedir)" || exit $$?; \
done
uninstall-evolution_util_includeHEADERS:
@$(NORMAL_UNINSTALL)
@list='$(evolution_util_include_HEADERS)'; test -n "$(evolution_util_includedir)" || list=; \
files=`for p in $$list; do echo $$p; done | sed -e 's|^.*/||'`; \
dir='$(DESTDIR)$(evolution_util_includedir)'; $(am__uninstall_files_from_dir)
ID: $(am__tagged_files)
$(am__define_uniq_tagged_files); mkid -fID $$unique
tags: tags-am
TAGS: tags
tags-am: $(TAGS_DEPENDENCIES) $(am__tagged_files)
set x; \
here=`pwd`; \
$(am__define_uniq_tagged_files); \
shift; \
if test -z "$(ETAGS_ARGS)$$*$$unique"; then :; else \
test -n "$$unique" || unique=$$empty_fix; \
if test $$# -gt 0; then \
$(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \
"$$@" $$unique; \
else \
$(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \
$$unique; \
fi; \
fi
ctags: ctags-am
CTAGS: ctags
ctags-am: $(TAGS_DEPENDENCIES) $(am__tagged_files)
$(am__define_uniq_tagged_files); \
test -z "$(CTAGS_ARGS)$$unique" \
|| $(CTAGS) $(CTAGSFLAGS) $(AM_CTAGSFLAGS) $(CTAGS_ARGS) \
$$unique
GTAGS:
here=`$(am__cd) $(top_builddir) && pwd` \
&& $(am__cd) $(top_srcdir) \
&& gtags -i $(GTAGS_ARGS) "$$here"
cscopelist: cscopelist-am
cscopelist-am: $(am__tagged_files)
list='$(am__tagged_files)'; \
case "$(srcdir)" in \
[\\/]* | ?:[\\/]*) sdir="$(srcdir)" ;; \
*) sdir=$(subdir)/$(srcdir) ;; \
esac; \
for i in $$list; do \
if test -f "$$i"; then \
echo "$(subdir)/$$i"; \
else \
echo "$$sdir/$$i"; \
fi; \
done >> $(top_builddir)/cscope.files
distclean-tags:
-rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags
distdir: $(DISTFILES)
@srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \
topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \
list='$(DISTFILES)'; \
dist_files=`for file in $$list; do echo $$file; done | \
sed -e "s|^$$srcdirstrip/||;t" \
-e "s|^$$topsrcdirstrip/|$(top_builddir)/|;t"`; \
case $$dist_files in \
*/*) $(MKDIR_P) `echo "$$dist_files" | \
sed '/\//!d;s|^|$(distdir)/|;s,/[^/]*$$,,' | \
sort -u` ;; \
esac; \
for file in $$dist_files; do \
if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \
if test -d $$d/$$file; then \
dir=`echo "/$$file" | sed -e 's,/[^/]*$$,,'`; \
if test -d "$(distdir)/$$file"; then \
find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \
fi; \
if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \
cp -fpR $(srcdir)/$$file "$(distdir)$$dir" || exit 1; \
find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \
fi; \
cp -fpR $$d/$$file "$(distdir)$$dir" || exit 1; \
else \
test -f "$(distdir)/$$file" \
|| cp -p $$d/$$file "$(distdir)/$$file" \
|| exit 1; \
fi; \
done
$(MAKE) $(AM_MAKEFLAGS) \
top_distdir="$(top_distdir)" distdir="$(distdir)" \
dist-hook
check-am: all-am
check: $(BUILT_SOURCES)
$(MAKE) $(AM_MAKEFLAGS) check-am
all-am: Makefile $(LTLIBRARIES) $(PROGRAMS) $(DATA) $(HEADERS)
installdirs:
for dir in "$(DESTDIR)$(privsolibdir)" "$(DESTDIR)$(errordir)" "$(DESTDIR)$(uidir)" "$(DESTDIR)$(evolution_util_includedir)"; do \
test -z "$$dir" || $(MKDIR_P) "$$dir"; \
done
install: $(BUILT_SOURCES)
$(MAKE) $(AM_MAKEFLAGS) install-am
install-exec: install-exec-am
install-data: install-data-am
uninstall: uninstall-am
install-am: all-am
@$(MAKE) $(AM_MAKEFLAGS) install-exec-am install-data-am
installcheck: installcheck-am
install-strip:
if test -z '$(STRIP)'; then \
$(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \
install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \
install; \
else \
$(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \
install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \
"INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'" install; \
fi
mostlyclean-generic:
clean-generic:
-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)
maintainer-clean-generic:
@echo "This command is intended for maintainers to use"
@echo "it deletes files that may require special tools to rebuild."
-test -z "$(BUILT_SOURCES)" || rm -f $(BUILT_SOURCES)
clean: clean-am
clean-am: clean-generic clean-libtool clean-noinstPROGRAMS \
clean-privsolibLTLIBRARIES mostlyclean-am
distclean: distclean-am
-rm -rf ./$(DEPDIR)
-rm -f Makefile
distclean-am: clean-am distclean-compile distclean-generic \
distclean-tags
dvi: dvi-am
dvi-am:
html: html-am
html-am:
info: info-am
info-am:
install-data-am: install-errorDATA \
install-evolution_util_includeHEADERS \
install-privsolibLTLIBRARIES install-uiDATA
install-dvi: install-dvi-am
install-dvi-am:
install-exec-am:
install-html: install-html-am
install-html-am:
install-info: install-info-am
install-info-am:
install-man:
install-pdf: install-pdf-am
install-pdf-am:
install-ps: install-ps-am
install-ps-am:
installcheck-am:
maintainer-clean: maintainer-clean-am
-rm -rf ./$(DEPDIR)
-rm -f Makefile
maintainer-clean-am: distclean-am maintainer-clean-generic
mostlyclean: mostlyclean-am
mostlyclean-am: mostlyclean-compile mostlyclean-generic \
mostlyclean-libtool
pdf: pdf-am
pdf-am:
ps: ps-am
ps-am:
uninstall-am: uninstall-errorDATA \
uninstall-evolution_util_includeHEADERS \
uninstall-privsolibLTLIBRARIES uninstall-uiDATA
.MAKE: all check install install-am install-strip
.PHONY: CTAGS GTAGS TAGS all all-am check check-am clean clean-generic \
clean-libtool clean-noinstPROGRAMS clean-privsolibLTLIBRARIES \
cscopelist-am ctags ctags-am dist-hook distclean \
distclean-compile distclean-generic distclean-libtool \
distclean-tags distdir dvi dvi-am html html-am info info-am \
install install-am install-data install-data-am install-dvi \
install-dvi-am install-errorDATA \
install-evolution_util_includeHEADERS install-exec \
install-exec-am install-html install-html-am install-info \
install-info-am install-man install-pdf install-pdf-am \
install-privsolibLTLIBRARIES install-ps install-ps-am \
install-strip install-uiDATA installcheck installcheck-am \
installdirs maintainer-clean maintainer-clean-generic \
mostlyclean mostlyclean-compile mostlyclean-generic \
mostlyclean-libtool pdf pdf-am ps ps-am tags tags-am uninstall \
uninstall-am uninstall-errorDATA \
uninstall-evolution_util_includeHEADERS \
uninstall-privsolibLTLIBRARIES uninstall-uiDATA
e-util-enumtypes.h: $(top_srcdir)/enumtypes.h.template $(ENUM_TYPES)
$(AM_V_GEN) $(GLIB_MKENUMS) --template $(top_srcdir)/enumtypes.h.template \
--fhead "#ifndef E_UTIL_ENUMTYPES_H\n#define E_UTIL_ENUMTYPES_H\n" \
--ftail "#endif /* E_UTIL_ENUMTYPES_H */\n" \
$(addprefix $(srcdir)/,$(ENUM_TYPES)) > $@
e-util-enumtypes.c: $(top_srcdir)/enumtypes.c.template $(ENUM_TYPES)
$(AM_V_GEN) $(GLIB_MKENUMS) --template $(top_srcdir)/enumtypes.c.template \
--fhead "#include \"e-util-enumtypes.h\"" \
$(addprefix $(srcdir)/,$(ENUM_TYPES)) > $@
e-marshal.h: e-marshal.list
$(AM_V_GEN) $(GLIB_GENMARSHAL) --header --prefix=e_marshal $^ > e-marshal.h.tmp && \
mv e-marshal.h.tmp e-marshal.h
e-marshal.c: e-marshal.list
$(AM_V_GEN) echo "#include \"e-marshal.h\"" >> e-marshal.c.tmp && \
$(GLIB_GENMARSHAL) --body --prefix=e_marshal $^ >> e-marshal.c.tmp && \
mv e-marshal.c.tmp e-marshal.c
@EVO_PLUGIN_RULE@
dist-hook:
cd $(distdir); rm -f $(BUILT_SOURCES)
-include $(top_srcdir)/git.mk
# 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:
|