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
|
# Makefile.in generated by automake 1.16.5 from Makefile.am.
# @configure_input@
# Copyright (C) 1994-2021 Free Software Foundation, Inc.
# This Makefile.in is free software; the Free Software Foundation
# gives unlimited permission to copy and/or distribute it,
# with or without modifications, as long as this notice is preserved.
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY, to the extent permitted by law; without
# even the implied warranty of MERCHANTABILITY or FITNESS FOR A
# PARTICULAR PURPOSE.
@SET_MAKE@
VPATH = @srcdir@
am__is_gnu_make = { \
if test -z '$(MAKELEVEL)'; then \
false; \
elif test -n '$(MAKE_HOST)'; then \
true; \
elif test -n '$(MAKE_VERSION)' && test -n '$(CURDIR)'; then \
true; \
else \
false; \
fi; \
}
am__make_running_with_option = \
case $${target_option-} in \
?) ;; \
*) echo "am__make_running_with_option: internal error: invalid" \
"target option '$${target_option-}' specified" >&2; \
exit 1;; \
esac; \
has_opt=no; \
sane_makeflags=$$MAKEFLAGS; \
if $(am__is_gnu_make); then \
sane_makeflags=$$MFLAGS; \
else \
case $$MAKEFLAGS in \
*\\[\ \ ]*) \
bs=\\; \
sane_makeflags=`printf '%s\n' "$$MAKEFLAGS" \
| sed "s/$$bs$$bs[$$bs $$bs ]*//g"`;; \
esac; \
fi; \
skip_next=no; \
strip_trailopt () \
{ \
flg=`printf '%s\n' "$$flg" | sed "s/$$1.*$$//"`; \
}; \
for flg in $$sane_makeflags; do \
test $$skip_next = yes && { skip_next=no; continue; }; \
case $$flg in \
*=*|--*) continue;; \
-*I) strip_trailopt 'I'; skip_next=yes;; \
-*I?*) strip_trailopt 'I';; \
-*O) strip_trailopt 'O'; skip_next=yes;; \
-*O?*) strip_trailopt 'O';; \
-*l) strip_trailopt 'l'; skip_next=yes;; \
-*l?*) strip_trailopt 'l';; \
-[dEDm]) skip_next=yes;; \
-[JT]) skip_next=yes;; \
esac; \
case $$flg in \
*$$target_option*) has_opt=yes; break;; \
esac; \
done; \
test $$has_opt = yes
am__make_dryrun = (target_option=n; $(am__make_running_with_option))
am__make_keepgoing = (target_option=k; $(am__make_running_with_option))
pkgdatadir = $(datadir)/@PACKAGE@
pkgincludedir = $(includedir)/@PACKAGE@
pkglibdir = $(libdir)/@PACKAGE@
pkglibexecdir = $(libexecdir)/@PACKAGE@
am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd
install_sh_DATA = $(install_sh) -c -m 644
install_sh_PROGRAM = $(install_sh) -c
install_sh_SCRIPT = $(install_sh) -c
INSTALL_HEADER = $(INSTALL_DATA)
transform = $(program_transform_name)
NORMAL_INSTALL = :
PRE_INSTALL = :
POST_INSTALL = :
NORMAL_UNINSTALL = :
PRE_UNINSTALL = :
POST_UNINSTALL = :
bin_PROGRAMS = pq$(EXEEXT)
subdir = .
ACLOCAL_M4 = $(top_srcdir)/aclocal.m4
am__aclocal_m4_deps = $(top_srcdir)/m4/find_gap.m4 \
$(top_srcdir)/configure.ac
am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \
$(ACLOCAL_M4)
DIST_COMMON = $(srcdir)/Makefile.am $(top_srcdir)/configure \
$(am__configure_deps)
am__CONFIG_DISTCLEAN_FILES = config.status config.cache config.log \
configure.lineno config.status.lineno
mkinstalldirs = $(install_sh) -d
CONFIG_HEADER = $(top_builddir)/include/config.h
CONFIG_CLEAN_FILES = testPq
CONFIG_CLEAN_VPATH_FILES =
am__installdirs = "$(DESTDIR)$(bindir)"
PROGRAMS = $(bin_PROGRAMS)
am__dirstamp = $(am__leading_dot)dirstamp
am_pq_OBJECTS = src/pq-AllocateSpace.$(OBJEXT) \
src/pq-CloseFile.$(OBJEXT) src/pq-Extend_Auts.$(OBJEXT) \
src/pq-FreeSpace.$(OBJEXT) src/pq-GAP.$(OBJEXT) \
src/pq-GAP_link_via_file.$(OBJEXT) \
src/pq-GAP_present.$(OBJEXT) src/pq-OpenFile.$(OBJEXT) \
src/pq-TemporaryFile.$(OBJEXT) src/pq-action.$(OBJEXT) \
src/pq-assemble_matrix.$(OBJEXT) src/pq-autgp_order.$(OBJEXT) \
src/pq-calculate_jacobi.$(OBJEXT) \
src/pq-central_auts.$(OBJEXT) src/pq-check_exponent.$(OBJEXT) \
src/pq-class1_eliminate.$(OBJEXT) \
src/pq-close_relations.$(OBJEXT) \
src/pq-close_subgroup.$(OBJEXT) src/pq-collect.$(OBJEXT) \
src/pq-collect_comm.$(OBJEXT) \
src/pq-collect_gen_word.$(OBJEXT) \
src/pq-collect_relations.$(OBJEXT) \
src/pq-collect_word.$(OBJEXT) src/pq-collectp2.$(OBJEXT) \
src/pq-commutator.$(OBJEXT) src/pq-commute_dgen.$(OBJEXT) \
src/pq-compact.$(OBJEXT) src/pq-compact_description.$(OBJEXT) \
src/pq-consistency.$(OBJEXT) \
src/pq-consistency_filter.$(OBJEXT) \
src/pq-consistency_info.$(OBJEXT) src/pq-construct.$(OBJEXT) \
src/pq-convert.$(OBJEXT) src/pq-defaults_pga.$(OBJEXT) \
src/pq-degree.$(OBJEXT) src/pq-delete_tables.$(OBJEXT) \
src/pq-down_class.$(OBJEXT) src/pq-echelon.$(OBJEXT) \
src/pq-echelonise_matrix.$(OBJEXT) src/pq-eliminate.$(OBJEXT) \
src/pq-expand_commutator.$(OBJEXT) \
src/pq-exponent_auts.$(OBJEXT) src/pq-exponent_info.$(OBJEXT) \
src/pq-extend_automorphisms.$(OBJEXT) \
src/pq-extend_matrix.$(OBJEXT) \
src/pq-extend_representation.$(OBJEXT) \
src/pq-extra_relations.$(OBJEXT) \
src/pq-find_allowable_subgroup.$(OBJEXT) \
src/pq-find_image.$(OBJEXT) src/pq-find_permutation.$(OBJEXT) \
src/pq-formula.$(OBJEXT) src/pq-generator_definition.$(OBJEXT) \
src/pq-get_definition_sets.$(OBJEXT) src/pq-identity.$(OBJEXT) \
src/pq-immediate_descendant.$(OBJEXT) \
src/pq-initialise_pcp.$(OBJEXT) \
src/pq-initialise_pga.$(OBJEXT) \
src/pq-insoluble_orbits.$(OBJEXT) src/pq-int_power.$(OBJEXT) \
src/pq-interactive_pga.$(OBJEXT) \
src/pq-interactive_pq.$(OBJEXT) src/pq-invert.$(OBJEXT) \
src/pq-invert_auts.$(OBJEXT) src/pq-invert_modp.$(OBJEXT) \
src/pq-is_genlim_exceeded.$(OBJEXT) \
src/pq-is_space_exhausted.$(OBJEXT) \
src/pq-isom_options.$(OBJEXT) src/pq-iteration.$(OBJEXT) \
src/pq-jacobi.$(OBJEXT) src/pq-label_to_subgroup.$(OBJEXT) \
src/pq-last_class.$(OBJEXT) src/pq-list_commutators.$(OBJEXT) \
src/pq-map_relations.$(OBJEXT) src/pq-matrix.$(OBJEXT) \
src/pq-maxoccur.$(OBJEXT) src/pq-multiply_word.$(OBJEXT) \
src/pq-next_class.$(OBJEXT) src/pq-options.$(OBJEXT) \
src/pq-orbit_summary.$(OBJEXT) \
src/pq-permute_elements.$(OBJEXT) \
src/pq-permute_subgroups.$(OBJEXT) src/pq-pgroup.$(OBJEXT) \
src/pq-power.$(OBJEXT) src/pq-pquotient.$(OBJEXT) \
src/pq-pretty_filter.$(OBJEXT) \
src/pq-pretty_filterfns.$(OBJEXT) \
src/pq-print_arrays.$(OBJEXT) src/pq-print_auts.$(OBJEXT) \
src/pq-print_level.$(OBJEXT) \
src/pq-print_multiweight.$(OBJEXT) \
src/pq-print_presentation.$(OBJEXT) \
src/pq-print_structure.$(OBJEXT) src/pq-print_word.$(OBJEXT) \
src/pq-read.$(OBJEXT) src/pq-read_auts.$(OBJEXT) \
src/pq-read_parameters.$(OBJEXT) \
src/pq-read_relations.$(OBJEXT) \
src/pq-read_relator_file.$(OBJEXT) src/pq-read_value.$(OBJEXT) \
src/pq-read_word.$(OBJEXT) src/pq-reduce_matrix.$(OBJEXT) \
src/pq-reduced_covers.$(OBJEXT) src/pq-report_error.$(OBJEXT) \
src/pq-restore_group.$(OBJEXT) src/pq-setup.$(OBJEXT) \
src/pq-setup_reps.$(OBJEXT) src/pq-soluble_orbits.$(OBJEXT) \
src/pq-solve_equation.$(OBJEXT) src/pq-stabiliser.$(OBJEXT) \
src/pq-stages.$(OBJEXT) src/pq-standard.$(OBJEXT) \
src/pq-start_group.$(OBJEXT) src/pq-start_iteration.$(OBJEXT) \
src/pq-step_range.$(OBJEXT) \
src/pq-store_definition_sets.$(OBJEXT) \
src/pq-strip_identities.$(OBJEXT) \
src/pq-subgroup_to_label.$(OBJEXT) src/pq-system.$(OBJEXT) \
src/pq-tail_info.$(OBJEXT) src/pq-tails.$(OBJEXT) \
src/pq-tails_filter.$(OBJEXT) src/pq-text.$(OBJEXT) \
src/pq-update.$(OBJEXT) src/pq-update_generators.$(OBJEXT) \
src/pq-update_name.$(OBJEXT) src/pq-write.$(OBJEXT) \
src/pq-main.$(OBJEXT)
pq_OBJECTS = $(am_pq_OBJECTS)
am__DEPENDENCIES_1 =
pq_DEPENDENCIES = $(am__DEPENDENCIES_1)
pq_LINK = $(CCLD) $(pq_CFLAGS) $(CFLAGS) $(pq_LDFLAGS) $(LDFLAGS) -o \
$@
AM_V_P = $(am__v_P_@AM_V@)
am__v_P_ = $(am__v_P_@AM_DEFAULT_V@)
am__v_P_0 = false
am__v_P_1 = :
AM_V_GEN = $(am__v_GEN_@AM_V@)
am__v_GEN_ = $(am__v_GEN_@AM_DEFAULT_V@)
am__v_GEN_0 = @echo " GEN " $@;
am__v_GEN_1 =
AM_V_at = $(am__v_at_@AM_V@)
am__v_at_ = $(am__v_at_@AM_DEFAULT_V@)
am__v_at_0 = @
am__v_at_1 =
DEFAULT_INCLUDES = -I.@am__isrc@ -I$(top_builddir)/include
depcomp = $(SHELL) $(top_srcdir)/cnf/depcomp
am__maybe_remake_depfiles = depfiles
am__depfiles_remade = src/$(DEPDIR)/pq-AllocateSpace.Po \
src/$(DEPDIR)/pq-CloseFile.Po src/$(DEPDIR)/pq-Extend_Auts.Po \
src/$(DEPDIR)/pq-FreeSpace.Po src/$(DEPDIR)/pq-GAP.Po \
src/$(DEPDIR)/pq-GAP_link_via_file.Po \
src/$(DEPDIR)/pq-GAP_present.Po src/$(DEPDIR)/pq-OpenFile.Po \
src/$(DEPDIR)/pq-TemporaryFile.Po src/$(DEPDIR)/pq-action.Po \
src/$(DEPDIR)/pq-assemble_matrix.Po \
src/$(DEPDIR)/pq-autgp_order.Po \
src/$(DEPDIR)/pq-calculate_jacobi.Po \
src/$(DEPDIR)/pq-central_auts.Po \
src/$(DEPDIR)/pq-check_exponent.Po \
src/$(DEPDIR)/pq-class1_eliminate.Po \
src/$(DEPDIR)/pq-close_relations.Po \
src/$(DEPDIR)/pq-close_subgroup.Po src/$(DEPDIR)/pq-collect.Po \
src/$(DEPDIR)/pq-collect_comm.Po \
src/$(DEPDIR)/pq-collect_gen_word.Po \
src/$(DEPDIR)/pq-collect_relations.Po \
src/$(DEPDIR)/pq-collect_word.Po src/$(DEPDIR)/pq-collectp2.Po \
src/$(DEPDIR)/pq-commutator.Po \
src/$(DEPDIR)/pq-commute_dgen.Po src/$(DEPDIR)/pq-compact.Po \
src/$(DEPDIR)/pq-compact_description.Po \
src/$(DEPDIR)/pq-consistency.Po \
src/$(DEPDIR)/pq-consistency_filter.Po \
src/$(DEPDIR)/pq-consistency_info.Po \
src/$(DEPDIR)/pq-construct.Po src/$(DEPDIR)/pq-convert.Po \
src/$(DEPDIR)/pq-defaults_pga.Po src/$(DEPDIR)/pq-degree.Po \
src/$(DEPDIR)/pq-delete_tables.Po \
src/$(DEPDIR)/pq-down_class.Po src/$(DEPDIR)/pq-echelon.Po \
src/$(DEPDIR)/pq-echelonise_matrix.Po \
src/$(DEPDIR)/pq-eliminate.Po \
src/$(DEPDIR)/pq-expand_commutator.Po \
src/$(DEPDIR)/pq-exponent_auts.Po \
src/$(DEPDIR)/pq-exponent_info.Po \
src/$(DEPDIR)/pq-extend_automorphisms.Po \
src/$(DEPDIR)/pq-extend_matrix.Po \
src/$(DEPDIR)/pq-extend_representation.Po \
src/$(DEPDIR)/pq-extra_relations.Po \
src/$(DEPDIR)/pq-find_allowable_subgroup.Po \
src/$(DEPDIR)/pq-find_image.Po \
src/$(DEPDIR)/pq-find_permutation.Po \
src/$(DEPDIR)/pq-formula.Po \
src/$(DEPDIR)/pq-generator_definition.Po \
src/$(DEPDIR)/pq-get_definition_sets.Po \
src/$(DEPDIR)/pq-identity.Po \
src/$(DEPDIR)/pq-immediate_descendant.Po \
src/$(DEPDIR)/pq-initialise_pcp.Po \
src/$(DEPDIR)/pq-initialise_pga.Po \
src/$(DEPDIR)/pq-insoluble_orbits.Po \
src/$(DEPDIR)/pq-int_power.Po \
src/$(DEPDIR)/pq-interactive_pga.Po \
src/$(DEPDIR)/pq-interactive_pq.Po src/$(DEPDIR)/pq-invert.Po \
src/$(DEPDIR)/pq-invert_auts.Po \
src/$(DEPDIR)/pq-invert_modp.Po \
src/$(DEPDIR)/pq-is_genlim_exceeded.Po \
src/$(DEPDIR)/pq-is_space_exhausted.Po \
src/$(DEPDIR)/pq-isom_options.Po src/$(DEPDIR)/pq-iteration.Po \
src/$(DEPDIR)/pq-jacobi.Po \
src/$(DEPDIR)/pq-label_to_subgroup.Po \
src/$(DEPDIR)/pq-last_class.Po \
src/$(DEPDIR)/pq-list_commutators.Po src/$(DEPDIR)/pq-main.Po \
src/$(DEPDIR)/pq-map_relations.Po src/$(DEPDIR)/pq-matrix.Po \
src/$(DEPDIR)/pq-maxoccur.Po src/$(DEPDIR)/pq-multiply_word.Po \
src/$(DEPDIR)/pq-next_class.Po src/$(DEPDIR)/pq-options.Po \
src/$(DEPDIR)/pq-orbit_summary.Po \
src/$(DEPDIR)/pq-permute_elements.Po \
src/$(DEPDIR)/pq-permute_subgroups.Po \
src/$(DEPDIR)/pq-pgroup.Po src/$(DEPDIR)/pq-power.Po \
src/$(DEPDIR)/pq-pquotient.Po \
src/$(DEPDIR)/pq-pretty_filter.Po \
src/$(DEPDIR)/pq-pretty_filterfns.Po \
src/$(DEPDIR)/pq-print_arrays.Po \
src/$(DEPDIR)/pq-print_auts.Po src/$(DEPDIR)/pq-print_level.Po \
src/$(DEPDIR)/pq-print_multiweight.Po \
src/$(DEPDIR)/pq-print_presentation.Po \
src/$(DEPDIR)/pq-print_structure.Po \
src/$(DEPDIR)/pq-print_word.Po src/$(DEPDIR)/pq-read.Po \
src/$(DEPDIR)/pq-read_auts.Po \
src/$(DEPDIR)/pq-read_parameters.Po \
src/$(DEPDIR)/pq-read_relations.Po \
src/$(DEPDIR)/pq-read_relator_file.Po \
src/$(DEPDIR)/pq-read_value.Po src/$(DEPDIR)/pq-read_word.Po \
src/$(DEPDIR)/pq-reduce_matrix.Po \
src/$(DEPDIR)/pq-reduced_covers.Po \
src/$(DEPDIR)/pq-report_error.Po \
src/$(DEPDIR)/pq-restore_group.Po src/$(DEPDIR)/pq-setup.Po \
src/$(DEPDIR)/pq-setup_reps.Po \
src/$(DEPDIR)/pq-soluble_orbits.Po \
src/$(DEPDIR)/pq-solve_equation.Po \
src/$(DEPDIR)/pq-stabiliser.Po src/$(DEPDIR)/pq-stages.Po \
src/$(DEPDIR)/pq-standard.Po src/$(DEPDIR)/pq-start_group.Po \
src/$(DEPDIR)/pq-start_iteration.Po \
src/$(DEPDIR)/pq-step_range.Po \
src/$(DEPDIR)/pq-store_definition_sets.Po \
src/$(DEPDIR)/pq-strip_identities.Po \
src/$(DEPDIR)/pq-subgroup_to_label.Po \
src/$(DEPDIR)/pq-system.Po src/$(DEPDIR)/pq-tail_info.Po \
src/$(DEPDIR)/pq-tails.Po src/$(DEPDIR)/pq-tails_filter.Po \
src/$(DEPDIR)/pq-text.Po src/$(DEPDIR)/pq-update.Po \
src/$(DEPDIR)/pq-update_generators.Po \
src/$(DEPDIR)/pq-update_name.Po src/$(DEPDIR)/pq-write.Po
am__mv = mv -f
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 =
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 = $(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 = $(pq_SOURCES)
am__can_run_installinfo = \
case $$AM_UPDATE_INFO_DIR in \
n|no|NO) false;; \
*) (install-info --version) >/dev/null 2>&1;; \
esac
am__tagged_files = $(HEADERS) $(SOURCES) $(TAGS_FILES) $(LISP)
# Read a list of newline-separated strings from the standard input,
# and print each of them once, without duplicates. Input order is
# *not* preserved.
am__uniquify_input = $(AWK) '\
BEGIN { nonempty = 0; } \
{ items[$$0] = 1; nonempty = 1; } \
END { if (nonempty) { for (i in items) print i; }; } \
'
# Make sure the list of sources is unique. This is necessary because,
# e.g., the same source file might be shared among _SOURCES variables
# for different programs/libraries.
am__define_uniq_tagged_files = \
list='$(am__tagged_files)'; \
unique=`for i in $$list; do \
if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \
done | $(am__uniquify_input)`
AM_RECURSIVE_TARGETS = cscope
ACLOCAL = @ACLOCAL@
AMTAR = @AMTAR@
AM_DEFAULT_VERBOSITY = @AM_DEFAULT_VERBOSITY@
AUTOCONF = @AUTOCONF@
AUTOHEADER = @AUTOHEADER@
AUTOMAKE = @AUTOMAKE@
AWK = @AWK@
CC = @CC@
CCDEPMODE = @CCDEPMODE@
CFLAGS = @CFLAGS@
CPPFLAGS = @CPPFLAGS@
CSCOPE = @CSCOPE@
CTAGS = @CTAGS@
CYGPATH_W = @CYGPATH_W@
DEFS = @DEFS@
DEPDIR = @DEPDIR@
ECHO_C = @ECHO_C@
ECHO_N = @ECHO_N@
ECHO_T = @ECHO_T@
ETAGS = @ETAGS@
EXEEXT = @EXEEXT@
GAP = @GAP@
GAPARCH = @GAPARCH@
GAPROOT = @GAPROOT@
GAP_CFLAGS = @GAP_CFLAGS@
GAP_CPPFLAGS = @GAP_CPPFLAGS@
GAP_EXEC = @GAP_EXEC@
GAP_LDFLAGS = @GAP_LDFLAGS@
GMP_CPPFLAGS = @GMP_CPPFLAGS@
GMP_LDFLAGS = @GMP_LDFLAGS@
GMP_LIBS = @GMP_LIBS@
INSTALL = @INSTALL@
INSTALL_DATA = @INSTALL_DATA@
INSTALL_PROGRAM = @INSTALL_PROGRAM@
INSTALL_SCRIPT = @INSTALL_SCRIPT@
INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@
LDFLAGS = @LDFLAGS@
LIBOBJS = @LIBOBJS@
LIBS = @LIBS@
LTLIBOBJS = @LTLIBOBJS@
MAINT = @MAINT@
MAKEINFO = @MAKEINFO@
MKDIR_P = @MKDIR_P@
OBJEXT = @OBJEXT@
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@
SED = @SED@
SET_MAKE = @SET_MAKE@
SHELL = @SHELL@
STRIP = @STRIP@
VERSION = @VERSION@
abs_builddir = @abs_builddir@
abs_srcdir = @abs_srcdir@
abs_top_builddir = @abs_top_builddir@
abs_top_srcdir = @abs_top_srcdir@
ac_ct_CC = @ac_ct_CC@
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_alias = @build_alias@
builddir = @builddir@
datadir = @datadir@
datarootdir = @datarootdir@
docdir = @docdir@
dvidir = @dvidir@
exec_prefix = @exec_prefix@
host_alias = @host_alias@
htmldir = @htmldir@
includedir = @includedir@
infodir = @infodir@
install_sh = @install_sh@
libdir = @libdir@
libexecdir = @libexecdir@
localedir = @localedir@
localstatedir = @localstatedir@
mandir = @mandir@
mkdir_p = @mkdir_p@
oldincludedir = @oldincludedir@
pdfdir = @pdfdir@
prefix = @prefix@
program_transform_name = @program_transform_name@
psdir = @psdir@
runstatedir = @runstatedir@
sbindir = @sbindir@
sharedstatedir = @sharedstatedir@
srcdir = @srcdir@
sysconfdir = @sysconfdir@
target_alias = @target_alias@
top_build_prefix = @top_build_prefix@
top_builddir = @top_builddir@
top_srcdir = @top_srcdir@
ACLOCAL_AMFLAGS = -I m4
BINARCHDIR = bin/$(GAPARCH)
#
# The following are valid compilation flags for the program.
#
#STANDARD_PCP -- if compiling version which permits construction of
# standard presentation
#
#GAP_LINK -- GAP is called by pq to perform insoluble stabiliser calculations
#
#GAP -- if compiling version for incorporation in GAP
#
#DEBUG -- debugging information is generated by a number of procedures
#
# Change features of executable
#
#RUN_TIME -- supply maximum number of defining generators and class bound
# at run-time (see README file for further details)
#
#TAILS_FILTER -- apply filter for exponent 4 and 5 and max occurrences
#
#CONSISTENCY_FILTER -- apply filter for exponent 4 and 5 and max occurrences
#
#
PQFLAGS = -DGAP_LINK_VIA_FILE -DGAP -DSTANDARD_PCP -DGROUP \
-DANUPQ_GAP_EXEC='"@GAP_EXEC@"'
pq_LDFLAGS = $(GMP_LDFLAGS)
pq_LDADD = $(GMP_LIBS)
pq_CPPFLAGS = $(GMP_CPPFLAGS) $(PQFLAGS)
pq_CFLAGS = -Wall -Wextra -Wno-unused-parameter
pq_SOURCES = \
src/AllocateSpace.c \
src/CloseFile.c \
src/Extend_Auts.c \
src/FreeSpace.c \
src/GAP.c \
src/GAP_link_via_file.c \
src/GAP_present.c \
src/OpenFile.c \
src/TemporaryFile.c \
src/action.c \
src/assemble_matrix.c \
src/autgp_order.c \
src/calculate_jacobi.c \
src/central_auts.c \
src/check_exponent.c \
src/class1_eliminate.c \
src/close_relations.c \
src/close_subgroup.c \
src/collect.c \
src/collect_comm.c \
src/collect_gen_word.c \
src/collect_relations.c \
src/collect_word.c \
src/collectp2.c \
src/commutator.c \
src/commute_dgen.c \
src/compact.c \
src/compact_description.c \
src/consistency.c \
src/consistency_filter.c \
src/consistency_info.c \
src/construct.c \
src/convert.c \
src/defaults_pga.c \
src/degree.c \
src/delete_tables.c \
src/down_class.c \
src/echelon.c \
src/echelonise_matrix.c \
src/eliminate.c \
src/expand_commutator.c \
src/exponent_auts.c \
src/exponent_info.c \
src/extend_automorphisms.c \
src/extend_matrix.c \
src/extend_representation.c \
src/extra_relations.c \
src/find_allowable_subgroup.c \
src/find_image.c \
src/find_permutation.c \
src/formula.c \
src/generator_definition.c \
src/get_definition_sets.c \
src/identity.c \
src/immediate_descendant.c \
src/initialise_pcp.c \
src/initialise_pga.c \
src/insoluble_orbits.c \
src/int_power.c \
src/interactive_pga.c \
src/interactive_pq.c \
src/invert.c \
src/invert_auts.c \
src/invert_modp.c \
src/is_genlim_exceeded.c \
src/is_space_exhausted.c \
src/isom_options.c \
src/iteration.c \
src/jacobi.c \
src/label_to_subgroup.c \
src/last_class.c \
src/list_commutators.c \
src/map_relations.c \
src/matrix.c \
src/maxoccur.c \
src/multiply_word.c \
src/next_class.c \
src/options.c \
src/orbit_summary.c \
src/permute_elements.c \
src/permute_subgroups.c \
src/pgroup.c \
src/power.c \
src/pquotient.c \
src/pretty_filter.c \
src/pretty_filterfns.c \
src/print_arrays.c \
src/print_auts.c \
src/print_level.c \
src/print_multiweight.c \
src/print_presentation.c \
src/print_structure.c \
src/print_word.c \
src/read.c \
src/read_auts.c \
src/read_parameters.c \
src/read_relations.c \
src/read_relator_file.c \
src/read_value.c \
src/read_word.c \
src/reduce_matrix.c \
src/reduced_covers.c \
src/report_error.c \
src/restore_group.c \
src/setup.c \
src/setup_reps.c \
src/soluble_orbits.c \
src/solve_equation.c \
src/stabiliser.c \
src/stages.c \
src/standard.c \
src/start_group.c \
src/start_iteration.c \
src/step_range.c \
src/store_definition_sets.c \
src/strip_identities.c \
src/subgroup_to_label.c \
src/system.c \
src/tail_info.c \
src/tails.c \
src/tails_filter.c \
src/text.c \
src/update.c \
src/update_generators.c \
src/update_name.c \
src/write.c \
src/main.c
all: all-am
.SUFFIXES:
.SUFFIXES: .c .o .obj
am--refresh: Makefile
@:
$(srcdir)/Makefile.in: @MAINTAINER_MODE_TRUE@ $(srcdir)/Makefile.am $(am__configure_deps)
@for dep in $?; do \
case '$(am__configure_deps)' in \
*$$dep*) \
echo ' cd $(srcdir) && $(AUTOMAKE) --foreign'; \
$(am__cd) $(srcdir) && $(AUTOMAKE) --foreign \
&& exit 0; \
exit 1;; \
esac; \
done; \
echo ' cd $(top_srcdir) && $(AUTOMAKE) --foreign Makefile'; \
$(am__cd) $(top_srcdir) && \
$(AUTOMAKE) --foreign Makefile
Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status
@case '$?' in \
*config.status*) \
echo ' $(SHELL) ./config.status'; \
$(SHELL) ./config.status;; \
*) \
echo ' cd $(top_builddir) && $(SHELL) ./config.status $@ $(am__maybe_remake_depfiles)'; \
cd $(top_builddir) && $(SHELL) ./config.status $@ $(am__maybe_remake_depfiles);; \
esac;
$(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES)
$(SHELL) ./config.status --recheck
$(top_srcdir)/configure: @MAINTAINER_MODE_TRUE@ $(am__configure_deps)
$(am__cd) $(srcdir) && $(AUTOCONF)
$(ACLOCAL_M4): @MAINTAINER_MODE_TRUE@ $(am__aclocal_m4_deps)
$(am__cd) $(srcdir) && $(ACLOCAL) $(ACLOCAL_AMFLAGS)
$(am__aclocal_m4_deps):
include/config.h: include/stamp-h1
@test -f $@ || rm -f include/stamp-h1
@test -f $@ || $(MAKE) $(AM_MAKEFLAGS) include/stamp-h1
include/stamp-h1: $(top_srcdir)/include/config.hin $(top_builddir)/config.status
@rm -f include/stamp-h1
cd $(top_builddir) && $(SHELL) ./config.status include/config.h
$(top_srcdir)/include/config.hin: @MAINTAINER_MODE_TRUE@ $(am__configure_deps)
($(am__cd) $(top_srcdir) && $(AUTOHEADER))
rm -f include/stamp-h1
touch $@
distclean-hdr:
-rm -f include/config.h include/stamp-h1
testPq: $(top_builddir)/config.status $(srcdir)/testPq.in
cd $(top_builddir) && $(SHELL) ./config.status $@
install-binPROGRAMS: $(bin_PROGRAMS)
@$(NORMAL_INSTALL)
@list='$(bin_PROGRAMS)'; test -n "$(bindir)" || list=; \
if test -n "$$list"; then \
echo " $(MKDIR_P) '$(DESTDIR)$(bindir)'"; \
$(MKDIR_P) "$(DESTDIR)$(bindir)" || exit 1; \
fi; \
for p in $$list; do echo "$$p $$p"; done | \
sed 's/$(EXEEXT)$$//' | \
while read p p1; do if test -f $$p \
; then echo "$$p"; echo "$$p"; else :; fi; \
done | \
sed -e 'p;s,.*/,,;n;h' \
-e 's|.*|.|' \
-e 'p;x;s,.*/,,;s/$(EXEEXT)$$//;$(transform);s/$$/$(EXEEXT)/' | \
sed 'N;N;N;s,\n, ,g' | \
$(AWK) 'BEGIN { files["."] = ""; dirs["."] = 1 } \
{ d=$$3; if (dirs[d] != 1) { print "d", d; dirs[d] = 1 } \
if ($$2 == $$4) files[d] = files[d] " " $$1; \
else { print "f", $$3 "/" $$4, $$1; } } \
END { for (d in files) print "f", d, files[d] }' | \
while read type dir files; do \
if test "$$dir" = .; then dir=; else dir=/$$dir; fi; \
test -z "$$files" || { \
echo " $(INSTALL_PROGRAM_ENV) $(INSTALL_PROGRAM) $$files '$(DESTDIR)$(bindir)$$dir'"; \
$(INSTALL_PROGRAM_ENV) $(INSTALL_PROGRAM) $$files "$(DESTDIR)$(bindir)$$dir" || exit $$?; \
} \
; done
uninstall-binPROGRAMS:
@$(NORMAL_UNINSTALL)
@list='$(bin_PROGRAMS)'; test -n "$(bindir)" || list=; \
files=`for p in $$list; do echo "$$p"; done | \
sed -e 'h;s,^.*/,,;s/$(EXEEXT)$$//;$(transform)' \
-e 's/$$/$(EXEEXT)/' \
`; \
test -n "$$list" || exit 0; \
echo " ( cd '$(DESTDIR)$(bindir)' && rm -f" $$files ")"; \
cd "$(DESTDIR)$(bindir)" && rm -f $$files
clean-binPROGRAMS:
-test -z "$(bin_PROGRAMS)" || rm -f $(bin_PROGRAMS)
src/$(am__dirstamp):
@$(MKDIR_P) src
@: > src/$(am__dirstamp)
src/$(DEPDIR)/$(am__dirstamp):
@$(MKDIR_P) src/$(DEPDIR)
@: > src/$(DEPDIR)/$(am__dirstamp)
src/pq-AllocateSpace.$(OBJEXT): src/$(am__dirstamp) \
src/$(DEPDIR)/$(am__dirstamp)
src/pq-CloseFile.$(OBJEXT): src/$(am__dirstamp) \
src/$(DEPDIR)/$(am__dirstamp)
src/pq-Extend_Auts.$(OBJEXT): src/$(am__dirstamp) \
src/$(DEPDIR)/$(am__dirstamp)
src/pq-FreeSpace.$(OBJEXT): src/$(am__dirstamp) \
src/$(DEPDIR)/$(am__dirstamp)
src/pq-GAP.$(OBJEXT): src/$(am__dirstamp) \
src/$(DEPDIR)/$(am__dirstamp)
src/pq-GAP_link_via_file.$(OBJEXT): src/$(am__dirstamp) \
src/$(DEPDIR)/$(am__dirstamp)
src/pq-GAP_present.$(OBJEXT): src/$(am__dirstamp) \
src/$(DEPDIR)/$(am__dirstamp)
src/pq-OpenFile.$(OBJEXT): src/$(am__dirstamp) \
src/$(DEPDIR)/$(am__dirstamp)
src/pq-TemporaryFile.$(OBJEXT): src/$(am__dirstamp) \
src/$(DEPDIR)/$(am__dirstamp)
src/pq-action.$(OBJEXT): src/$(am__dirstamp) \
src/$(DEPDIR)/$(am__dirstamp)
src/pq-assemble_matrix.$(OBJEXT): src/$(am__dirstamp) \
src/$(DEPDIR)/$(am__dirstamp)
src/pq-autgp_order.$(OBJEXT): src/$(am__dirstamp) \
src/$(DEPDIR)/$(am__dirstamp)
src/pq-calculate_jacobi.$(OBJEXT): src/$(am__dirstamp) \
src/$(DEPDIR)/$(am__dirstamp)
src/pq-central_auts.$(OBJEXT): src/$(am__dirstamp) \
src/$(DEPDIR)/$(am__dirstamp)
src/pq-check_exponent.$(OBJEXT): src/$(am__dirstamp) \
src/$(DEPDIR)/$(am__dirstamp)
src/pq-class1_eliminate.$(OBJEXT): src/$(am__dirstamp) \
src/$(DEPDIR)/$(am__dirstamp)
src/pq-close_relations.$(OBJEXT): src/$(am__dirstamp) \
src/$(DEPDIR)/$(am__dirstamp)
src/pq-close_subgroup.$(OBJEXT): src/$(am__dirstamp) \
src/$(DEPDIR)/$(am__dirstamp)
src/pq-collect.$(OBJEXT): src/$(am__dirstamp) \
src/$(DEPDIR)/$(am__dirstamp)
src/pq-collect_comm.$(OBJEXT): src/$(am__dirstamp) \
src/$(DEPDIR)/$(am__dirstamp)
src/pq-collect_gen_word.$(OBJEXT): src/$(am__dirstamp) \
src/$(DEPDIR)/$(am__dirstamp)
src/pq-collect_relations.$(OBJEXT): src/$(am__dirstamp) \
src/$(DEPDIR)/$(am__dirstamp)
src/pq-collect_word.$(OBJEXT): src/$(am__dirstamp) \
src/$(DEPDIR)/$(am__dirstamp)
src/pq-collectp2.$(OBJEXT): src/$(am__dirstamp) \
src/$(DEPDIR)/$(am__dirstamp)
src/pq-commutator.$(OBJEXT): src/$(am__dirstamp) \
src/$(DEPDIR)/$(am__dirstamp)
src/pq-commute_dgen.$(OBJEXT): src/$(am__dirstamp) \
src/$(DEPDIR)/$(am__dirstamp)
src/pq-compact.$(OBJEXT): src/$(am__dirstamp) \
src/$(DEPDIR)/$(am__dirstamp)
src/pq-compact_description.$(OBJEXT): src/$(am__dirstamp) \
src/$(DEPDIR)/$(am__dirstamp)
src/pq-consistency.$(OBJEXT): src/$(am__dirstamp) \
src/$(DEPDIR)/$(am__dirstamp)
src/pq-consistency_filter.$(OBJEXT): src/$(am__dirstamp) \
src/$(DEPDIR)/$(am__dirstamp)
src/pq-consistency_info.$(OBJEXT): src/$(am__dirstamp) \
src/$(DEPDIR)/$(am__dirstamp)
src/pq-construct.$(OBJEXT): src/$(am__dirstamp) \
src/$(DEPDIR)/$(am__dirstamp)
src/pq-convert.$(OBJEXT): src/$(am__dirstamp) \
src/$(DEPDIR)/$(am__dirstamp)
src/pq-defaults_pga.$(OBJEXT): src/$(am__dirstamp) \
src/$(DEPDIR)/$(am__dirstamp)
src/pq-degree.$(OBJEXT): src/$(am__dirstamp) \
src/$(DEPDIR)/$(am__dirstamp)
src/pq-delete_tables.$(OBJEXT): src/$(am__dirstamp) \
src/$(DEPDIR)/$(am__dirstamp)
src/pq-down_class.$(OBJEXT): src/$(am__dirstamp) \
src/$(DEPDIR)/$(am__dirstamp)
src/pq-echelon.$(OBJEXT): src/$(am__dirstamp) \
src/$(DEPDIR)/$(am__dirstamp)
src/pq-echelonise_matrix.$(OBJEXT): src/$(am__dirstamp) \
src/$(DEPDIR)/$(am__dirstamp)
src/pq-eliminate.$(OBJEXT): src/$(am__dirstamp) \
src/$(DEPDIR)/$(am__dirstamp)
src/pq-expand_commutator.$(OBJEXT): src/$(am__dirstamp) \
src/$(DEPDIR)/$(am__dirstamp)
src/pq-exponent_auts.$(OBJEXT): src/$(am__dirstamp) \
src/$(DEPDIR)/$(am__dirstamp)
src/pq-exponent_info.$(OBJEXT): src/$(am__dirstamp) \
src/$(DEPDIR)/$(am__dirstamp)
src/pq-extend_automorphisms.$(OBJEXT): src/$(am__dirstamp) \
src/$(DEPDIR)/$(am__dirstamp)
src/pq-extend_matrix.$(OBJEXT): src/$(am__dirstamp) \
src/$(DEPDIR)/$(am__dirstamp)
src/pq-extend_representation.$(OBJEXT): src/$(am__dirstamp) \
src/$(DEPDIR)/$(am__dirstamp)
src/pq-extra_relations.$(OBJEXT): src/$(am__dirstamp) \
src/$(DEPDIR)/$(am__dirstamp)
src/pq-find_allowable_subgroup.$(OBJEXT): src/$(am__dirstamp) \
src/$(DEPDIR)/$(am__dirstamp)
src/pq-find_image.$(OBJEXT): src/$(am__dirstamp) \
src/$(DEPDIR)/$(am__dirstamp)
src/pq-find_permutation.$(OBJEXT): src/$(am__dirstamp) \
src/$(DEPDIR)/$(am__dirstamp)
src/pq-formula.$(OBJEXT): src/$(am__dirstamp) \
src/$(DEPDIR)/$(am__dirstamp)
src/pq-generator_definition.$(OBJEXT): src/$(am__dirstamp) \
src/$(DEPDIR)/$(am__dirstamp)
src/pq-get_definition_sets.$(OBJEXT): src/$(am__dirstamp) \
src/$(DEPDIR)/$(am__dirstamp)
src/pq-identity.$(OBJEXT): src/$(am__dirstamp) \
src/$(DEPDIR)/$(am__dirstamp)
src/pq-immediate_descendant.$(OBJEXT): src/$(am__dirstamp) \
src/$(DEPDIR)/$(am__dirstamp)
src/pq-initialise_pcp.$(OBJEXT): src/$(am__dirstamp) \
src/$(DEPDIR)/$(am__dirstamp)
src/pq-initialise_pga.$(OBJEXT): src/$(am__dirstamp) \
src/$(DEPDIR)/$(am__dirstamp)
src/pq-insoluble_orbits.$(OBJEXT): src/$(am__dirstamp) \
src/$(DEPDIR)/$(am__dirstamp)
src/pq-int_power.$(OBJEXT): src/$(am__dirstamp) \
src/$(DEPDIR)/$(am__dirstamp)
src/pq-interactive_pga.$(OBJEXT): src/$(am__dirstamp) \
src/$(DEPDIR)/$(am__dirstamp)
src/pq-interactive_pq.$(OBJEXT): src/$(am__dirstamp) \
src/$(DEPDIR)/$(am__dirstamp)
src/pq-invert.$(OBJEXT): src/$(am__dirstamp) \
src/$(DEPDIR)/$(am__dirstamp)
src/pq-invert_auts.$(OBJEXT): src/$(am__dirstamp) \
src/$(DEPDIR)/$(am__dirstamp)
src/pq-invert_modp.$(OBJEXT): src/$(am__dirstamp) \
src/$(DEPDIR)/$(am__dirstamp)
src/pq-is_genlim_exceeded.$(OBJEXT): src/$(am__dirstamp) \
src/$(DEPDIR)/$(am__dirstamp)
src/pq-is_space_exhausted.$(OBJEXT): src/$(am__dirstamp) \
src/$(DEPDIR)/$(am__dirstamp)
src/pq-isom_options.$(OBJEXT): src/$(am__dirstamp) \
src/$(DEPDIR)/$(am__dirstamp)
src/pq-iteration.$(OBJEXT): src/$(am__dirstamp) \
src/$(DEPDIR)/$(am__dirstamp)
src/pq-jacobi.$(OBJEXT): src/$(am__dirstamp) \
src/$(DEPDIR)/$(am__dirstamp)
src/pq-label_to_subgroup.$(OBJEXT): src/$(am__dirstamp) \
src/$(DEPDIR)/$(am__dirstamp)
src/pq-last_class.$(OBJEXT): src/$(am__dirstamp) \
src/$(DEPDIR)/$(am__dirstamp)
src/pq-list_commutators.$(OBJEXT): src/$(am__dirstamp) \
src/$(DEPDIR)/$(am__dirstamp)
src/pq-map_relations.$(OBJEXT): src/$(am__dirstamp) \
src/$(DEPDIR)/$(am__dirstamp)
src/pq-matrix.$(OBJEXT): src/$(am__dirstamp) \
src/$(DEPDIR)/$(am__dirstamp)
src/pq-maxoccur.$(OBJEXT): src/$(am__dirstamp) \
src/$(DEPDIR)/$(am__dirstamp)
src/pq-multiply_word.$(OBJEXT): src/$(am__dirstamp) \
src/$(DEPDIR)/$(am__dirstamp)
src/pq-next_class.$(OBJEXT): src/$(am__dirstamp) \
src/$(DEPDIR)/$(am__dirstamp)
src/pq-options.$(OBJEXT): src/$(am__dirstamp) \
src/$(DEPDIR)/$(am__dirstamp)
src/pq-orbit_summary.$(OBJEXT): src/$(am__dirstamp) \
src/$(DEPDIR)/$(am__dirstamp)
src/pq-permute_elements.$(OBJEXT): src/$(am__dirstamp) \
src/$(DEPDIR)/$(am__dirstamp)
src/pq-permute_subgroups.$(OBJEXT): src/$(am__dirstamp) \
src/$(DEPDIR)/$(am__dirstamp)
src/pq-pgroup.$(OBJEXT): src/$(am__dirstamp) \
src/$(DEPDIR)/$(am__dirstamp)
src/pq-power.$(OBJEXT): src/$(am__dirstamp) \
src/$(DEPDIR)/$(am__dirstamp)
src/pq-pquotient.$(OBJEXT): src/$(am__dirstamp) \
src/$(DEPDIR)/$(am__dirstamp)
src/pq-pretty_filter.$(OBJEXT): src/$(am__dirstamp) \
src/$(DEPDIR)/$(am__dirstamp)
src/pq-pretty_filterfns.$(OBJEXT): src/$(am__dirstamp) \
src/$(DEPDIR)/$(am__dirstamp)
src/pq-print_arrays.$(OBJEXT): src/$(am__dirstamp) \
src/$(DEPDIR)/$(am__dirstamp)
src/pq-print_auts.$(OBJEXT): src/$(am__dirstamp) \
src/$(DEPDIR)/$(am__dirstamp)
src/pq-print_level.$(OBJEXT): src/$(am__dirstamp) \
src/$(DEPDIR)/$(am__dirstamp)
src/pq-print_multiweight.$(OBJEXT): src/$(am__dirstamp) \
src/$(DEPDIR)/$(am__dirstamp)
src/pq-print_presentation.$(OBJEXT): src/$(am__dirstamp) \
src/$(DEPDIR)/$(am__dirstamp)
src/pq-print_structure.$(OBJEXT): src/$(am__dirstamp) \
src/$(DEPDIR)/$(am__dirstamp)
src/pq-print_word.$(OBJEXT): src/$(am__dirstamp) \
src/$(DEPDIR)/$(am__dirstamp)
src/pq-read.$(OBJEXT): src/$(am__dirstamp) \
src/$(DEPDIR)/$(am__dirstamp)
src/pq-read_auts.$(OBJEXT): src/$(am__dirstamp) \
src/$(DEPDIR)/$(am__dirstamp)
src/pq-read_parameters.$(OBJEXT): src/$(am__dirstamp) \
src/$(DEPDIR)/$(am__dirstamp)
src/pq-read_relations.$(OBJEXT): src/$(am__dirstamp) \
src/$(DEPDIR)/$(am__dirstamp)
src/pq-read_relator_file.$(OBJEXT): src/$(am__dirstamp) \
src/$(DEPDIR)/$(am__dirstamp)
src/pq-read_value.$(OBJEXT): src/$(am__dirstamp) \
src/$(DEPDIR)/$(am__dirstamp)
src/pq-read_word.$(OBJEXT): src/$(am__dirstamp) \
src/$(DEPDIR)/$(am__dirstamp)
src/pq-reduce_matrix.$(OBJEXT): src/$(am__dirstamp) \
src/$(DEPDIR)/$(am__dirstamp)
src/pq-reduced_covers.$(OBJEXT): src/$(am__dirstamp) \
src/$(DEPDIR)/$(am__dirstamp)
src/pq-report_error.$(OBJEXT): src/$(am__dirstamp) \
src/$(DEPDIR)/$(am__dirstamp)
src/pq-restore_group.$(OBJEXT): src/$(am__dirstamp) \
src/$(DEPDIR)/$(am__dirstamp)
src/pq-setup.$(OBJEXT): src/$(am__dirstamp) \
src/$(DEPDIR)/$(am__dirstamp)
src/pq-setup_reps.$(OBJEXT): src/$(am__dirstamp) \
src/$(DEPDIR)/$(am__dirstamp)
src/pq-soluble_orbits.$(OBJEXT): src/$(am__dirstamp) \
src/$(DEPDIR)/$(am__dirstamp)
src/pq-solve_equation.$(OBJEXT): src/$(am__dirstamp) \
src/$(DEPDIR)/$(am__dirstamp)
src/pq-stabiliser.$(OBJEXT): src/$(am__dirstamp) \
src/$(DEPDIR)/$(am__dirstamp)
src/pq-stages.$(OBJEXT): src/$(am__dirstamp) \
src/$(DEPDIR)/$(am__dirstamp)
src/pq-standard.$(OBJEXT): src/$(am__dirstamp) \
src/$(DEPDIR)/$(am__dirstamp)
src/pq-start_group.$(OBJEXT): src/$(am__dirstamp) \
src/$(DEPDIR)/$(am__dirstamp)
src/pq-start_iteration.$(OBJEXT): src/$(am__dirstamp) \
src/$(DEPDIR)/$(am__dirstamp)
src/pq-step_range.$(OBJEXT): src/$(am__dirstamp) \
src/$(DEPDIR)/$(am__dirstamp)
src/pq-store_definition_sets.$(OBJEXT): src/$(am__dirstamp) \
src/$(DEPDIR)/$(am__dirstamp)
src/pq-strip_identities.$(OBJEXT): src/$(am__dirstamp) \
src/$(DEPDIR)/$(am__dirstamp)
src/pq-subgroup_to_label.$(OBJEXT): src/$(am__dirstamp) \
src/$(DEPDIR)/$(am__dirstamp)
src/pq-system.$(OBJEXT): src/$(am__dirstamp) \
src/$(DEPDIR)/$(am__dirstamp)
src/pq-tail_info.$(OBJEXT): src/$(am__dirstamp) \
src/$(DEPDIR)/$(am__dirstamp)
src/pq-tails.$(OBJEXT): src/$(am__dirstamp) \
src/$(DEPDIR)/$(am__dirstamp)
src/pq-tails_filter.$(OBJEXT): src/$(am__dirstamp) \
src/$(DEPDIR)/$(am__dirstamp)
src/pq-text.$(OBJEXT): src/$(am__dirstamp) \
src/$(DEPDIR)/$(am__dirstamp)
src/pq-update.$(OBJEXT): src/$(am__dirstamp) \
src/$(DEPDIR)/$(am__dirstamp)
src/pq-update_generators.$(OBJEXT): src/$(am__dirstamp) \
src/$(DEPDIR)/$(am__dirstamp)
src/pq-update_name.$(OBJEXT): src/$(am__dirstamp) \
src/$(DEPDIR)/$(am__dirstamp)
src/pq-write.$(OBJEXT): src/$(am__dirstamp) \
src/$(DEPDIR)/$(am__dirstamp)
src/pq-main.$(OBJEXT): src/$(am__dirstamp) \
src/$(DEPDIR)/$(am__dirstamp)
pq$(EXEEXT): $(pq_OBJECTS) $(pq_DEPENDENCIES) $(EXTRA_pq_DEPENDENCIES)
@rm -f pq$(EXEEXT)
$(AM_V_CCLD)$(pq_LINK) $(pq_OBJECTS) $(pq_LDADD) $(LIBS)
mostlyclean-compile:
-rm -f *.$(OBJEXT)
-rm -f src/*.$(OBJEXT)
distclean-compile:
-rm -f *.tab.c
@AMDEP_TRUE@@am__include@ @am__quote@src/$(DEPDIR)/pq-AllocateSpace.Po@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@src/$(DEPDIR)/pq-CloseFile.Po@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@src/$(DEPDIR)/pq-Extend_Auts.Po@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@src/$(DEPDIR)/pq-FreeSpace.Po@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@src/$(DEPDIR)/pq-GAP.Po@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@src/$(DEPDIR)/pq-GAP_link_via_file.Po@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@src/$(DEPDIR)/pq-GAP_present.Po@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@src/$(DEPDIR)/pq-OpenFile.Po@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@src/$(DEPDIR)/pq-TemporaryFile.Po@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@src/$(DEPDIR)/pq-action.Po@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@src/$(DEPDIR)/pq-assemble_matrix.Po@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@src/$(DEPDIR)/pq-autgp_order.Po@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@src/$(DEPDIR)/pq-calculate_jacobi.Po@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@src/$(DEPDIR)/pq-central_auts.Po@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@src/$(DEPDIR)/pq-check_exponent.Po@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@src/$(DEPDIR)/pq-class1_eliminate.Po@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@src/$(DEPDIR)/pq-close_relations.Po@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@src/$(DEPDIR)/pq-close_subgroup.Po@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@src/$(DEPDIR)/pq-collect.Po@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@src/$(DEPDIR)/pq-collect_comm.Po@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@src/$(DEPDIR)/pq-collect_gen_word.Po@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@src/$(DEPDIR)/pq-collect_relations.Po@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@src/$(DEPDIR)/pq-collect_word.Po@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@src/$(DEPDIR)/pq-collectp2.Po@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@src/$(DEPDIR)/pq-commutator.Po@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@src/$(DEPDIR)/pq-commute_dgen.Po@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@src/$(DEPDIR)/pq-compact.Po@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@src/$(DEPDIR)/pq-compact_description.Po@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@src/$(DEPDIR)/pq-consistency.Po@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@src/$(DEPDIR)/pq-consistency_filter.Po@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@src/$(DEPDIR)/pq-consistency_info.Po@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@src/$(DEPDIR)/pq-construct.Po@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@src/$(DEPDIR)/pq-convert.Po@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@src/$(DEPDIR)/pq-defaults_pga.Po@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@src/$(DEPDIR)/pq-degree.Po@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@src/$(DEPDIR)/pq-delete_tables.Po@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@src/$(DEPDIR)/pq-down_class.Po@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@src/$(DEPDIR)/pq-echelon.Po@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@src/$(DEPDIR)/pq-echelonise_matrix.Po@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@src/$(DEPDIR)/pq-eliminate.Po@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@src/$(DEPDIR)/pq-expand_commutator.Po@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@src/$(DEPDIR)/pq-exponent_auts.Po@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@src/$(DEPDIR)/pq-exponent_info.Po@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@src/$(DEPDIR)/pq-extend_automorphisms.Po@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@src/$(DEPDIR)/pq-extend_matrix.Po@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@src/$(DEPDIR)/pq-extend_representation.Po@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@src/$(DEPDIR)/pq-extra_relations.Po@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@src/$(DEPDIR)/pq-find_allowable_subgroup.Po@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@src/$(DEPDIR)/pq-find_image.Po@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@src/$(DEPDIR)/pq-find_permutation.Po@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@src/$(DEPDIR)/pq-formula.Po@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@src/$(DEPDIR)/pq-generator_definition.Po@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@src/$(DEPDIR)/pq-get_definition_sets.Po@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@src/$(DEPDIR)/pq-identity.Po@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@src/$(DEPDIR)/pq-immediate_descendant.Po@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@src/$(DEPDIR)/pq-initialise_pcp.Po@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@src/$(DEPDIR)/pq-initialise_pga.Po@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@src/$(DEPDIR)/pq-insoluble_orbits.Po@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@src/$(DEPDIR)/pq-int_power.Po@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@src/$(DEPDIR)/pq-interactive_pga.Po@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@src/$(DEPDIR)/pq-interactive_pq.Po@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@src/$(DEPDIR)/pq-invert.Po@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@src/$(DEPDIR)/pq-invert_auts.Po@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@src/$(DEPDIR)/pq-invert_modp.Po@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@src/$(DEPDIR)/pq-is_genlim_exceeded.Po@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@src/$(DEPDIR)/pq-is_space_exhausted.Po@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@src/$(DEPDIR)/pq-isom_options.Po@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@src/$(DEPDIR)/pq-iteration.Po@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@src/$(DEPDIR)/pq-jacobi.Po@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@src/$(DEPDIR)/pq-label_to_subgroup.Po@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@src/$(DEPDIR)/pq-last_class.Po@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@src/$(DEPDIR)/pq-list_commutators.Po@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@src/$(DEPDIR)/pq-main.Po@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@src/$(DEPDIR)/pq-map_relations.Po@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@src/$(DEPDIR)/pq-matrix.Po@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@src/$(DEPDIR)/pq-maxoccur.Po@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@src/$(DEPDIR)/pq-multiply_word.Po@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@src/$(DEPDIR)/pq-next_class.Po@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@src/$(DEPDIR)/pq-options.Po@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@src/$(DEPDIR)/pq-orbit_summary.Po@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@src/$(DEPDIR)/pq-permute_elements.Po@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@src/$(DEPDIR)/pq-permute_subgroups.Po@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@src/$(DEPDIR)/pq-pgroup.Po@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@src/$(DEPDIR)/pq-power.Po@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@src/$(DEPDIR)/pq-pquotient.Po@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@src/$(DEPDIR)/pq-pretty_filter.Po@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@src/$(DEPDIR)/pq-pretty_filterfns.Po@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@src/$(DEPDIR)/pq-print_arrays.Po@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@src/$(DEPDIR)/pq-print_auts.Po@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@src/$(DEPDIR)/pq-print_level.Po@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@src/$(DEPDIR)/pq-print_multiweight.Po@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@src/$(DEPDIR)/pq-print_presentation.Po@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@src/$(DEPDIR)/pq-print_structure.Po@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@src/$(DEPDIR)/pq-print_word.Po@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@src/$(DEPDIR)/pq-read.Po@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@src/$(DEPDIR)/pq-read_auts.Po@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@src/$(DEPDIR)/pq-read_parameters.Po@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@src/$(DEPDIR)/pq-read_relations.Po@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@src/$(DEPDIR)/pq-read_relator_file.Po@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@src/$(DEPDIR)/pq-read_value.Po@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@src/$(DEPDIR)/pq-read_word.Po@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@src/$(DEPDIR)/pq-reduce_matrix.Po@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@src/$(DEPDIR)/pq-reduced_covers.Po@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@src/$(DEPDIR)/pq-report_error.Po@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@src/$(DEPDIR)/pq-restore_group.Po@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@src/$(DEPDIR)/pq-setup.Po@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@src/$(DEPDIR)/pq-setup_reps.Po@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@src/$(DEPDIR)/pq-soluble_orbits.Po@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@src/$(DEPDIR)/pq-solve_equation.Po@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@src/$(DEPDIR)/pq-stabiliser.Po@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@src/$(DEPDIR)/pq-stages.Po@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@src/$(DEPDIR)/pq-standard.Po@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@src/$(DEPDIR)/pq-start_group.Po@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@src/$(DEPDIR)/pq-start_iteration.Po@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@src/$(DEPDIR)/pq-step_range.Po@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@src/$(DEPDIR)/pq-store_definition_sets.Po@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@src/$(DEPDIR)/pq-strip_identities.Po@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@src/$(DEPDIR)/pq-subgroup_to_label.Po@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@src/$(DEPDIR)/pq-system.Po@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@src/$(DEPDIR)/pq-tail_info.Po@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@src/$(DEPDIR)/pq-tails.Po@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@src/$(DEPDIR)/pq-tails_filter.Po@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@src/$(DEPDIR)/pq-text.Po@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@src/$(DEPDIR)/pq-update.Po@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@src/$(DEPDIR)/pq-update_generators.Po@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@src/$(DEPDIR)/pq-update_name.Po@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@src/$(DEPDIR)/pq-write.Po@am__quote@ # am--include-marker
$(am__depfiles_remade):
@$(MKDIR_P) $(@D)
@echo '# dummy' >$@-t && $(am__mv) $@-t $@
am--depfiles: $(am__depfiles_remade)
.c.o:
@am__fastdepCC_TRUE@ $(AM_V_CC)depbase=`echo $@ | sed 's|[^/]*$$|$(DEPDIR)/&|;s|\.o$$||'`;\
@am__fastdepCC_TRUE@ $(COMPILE) -MT $@ -MD -MP -MF $$depbase.Tpo -c -o $@ $< &&\
@am__fastdepCC_TRUE@ $(am__mv) $$depbase.Tpo $$depbase.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='$<' object='$@' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(COMPILE) -c -o $@ $<
.c.obj:
@am__fastdepCC_TRUE@ $(AM_V_CC)depbase=`echo $@ | sed 's|[^/]*$$|$(DEPDIR)/&|;s|\.obj$$||'`;\
@am__fastdepCC_TRUE@ $(COMPILE) -MT $@ -MD -MP -MF $$depbase.Tpo -c -o $@ `$(CYGPATH_W) '$<'` &&\
@am__fastdepCC_TRUE@ $(am__mv) $$depbase.Tpo $$depbase.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='$<' object='$@' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(COMPILE) -c -o $@ `$(CYGPATH_W) '$<'`
src/pq-AllocateSpace.o: src/AllocateSpace.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(pq_CPPFLAGS) $(CPPFLAGS) $(pq_CFLAGS) $(CFLAGS) -MT src/pq-AllocateSpace.o -MD -MP -MF src/$(DEPDIR)/pq-AllocateSpace.Tpo -c -o src/pq-AllocateSpace.o `test -f 'src/AllocateSpace.c' || echo '$(srcdir)/'`src/AllocateSpace.c
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) src/$(DEPDIR)/pq-AllocateSpace.Tpo src/$(DEPDIR)/pq-AllocateSpace.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='src/AllocateSpace.c' object='src/pq-AllocateSpace.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) $(pq_CPPFLAGS) $(CPPFLAGS) $(pq_CFLAGS) $(CFLAGS) -c -o src/pq-AllocateSpace.o `test -f 'src/AllocateSpace.c' || echo '$(srcdir)/'`src/AllocateSpace.c
src/pq-AllocateSpace.obj: src/AllocateSpace.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(pq_CPPFLAGS) $(CPPFLAGS) $(pq_CFLAGS) $(CFLAGS) -MT src/pq-AllocateSpace.obj -MD -MP -MF src/$(DEPDIR)/pq-AllocateSpace.Tpo -c -o src/pq-AllocateSpace.obj `if test -f 'src/AllocateSpace.c'; then $(CYGPATH_W) 'src/AllocateSpace.c'; else $(CYGPATH_W) '$(srcdir)/src/AllocateSpace.c'; fi`
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) src/$(DEPDIR)/pq-AllocateSpace.Tpo src/$(DEPDIR)/pq-AllocateSpace.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='src/AllocateSpace.c' object='src/pq-AllocateSpace.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) $(pq_CPPFLAGS) $(CPPFLAGS) $(pq_CFLAGS) $(CFLAGS) -c -o src/pq-AllocateSpace.obj `if test -f 'src/AllocateSpace.c'; then $(CYGPATH_W) 'src/AllocateSpace.c'; else $(CYGPATH_W) '$(srcdir)/src/AllocateSpace.c'; fi`
src/pq-CloseFile.o: src/CloseFile.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(pq_CPPFLAGS) $(CPPFLAGS) $(pq_CFLAGS) $(CFLAGS) -MT src/pq-CloseFile.o -MD -MP -MF src/$(DEPDIR)/pq-CloseFile.Tpo -c -o src/pq-CloseFile.o `test -f 'src/CloseFile.c' || echo '$(srcdir)/'`src/CloseFile.c
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) src/$(DEPDIR)/pq-CloseFile.Tpo src/$(DEPDIR)/pq-CloseFile.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='src/CloseFile.c' object='src/pq-CloseFile.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) $(pq_CPPFLAGS) $(CPPFLAGS) $(pq_CFLAGS) $(CFLAGS) -c -o src/pq-CloseFile.o `test -f 'src/CloseFile.c' || echo '$(srcdir)/'`src/CloseFile.c
src/pq-CloseFile.obj: src/CloseFile.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(pq_CPPFLAGS) $(CPPFLAGS) $(pq_CFLAGS) $(CFLAGS) -MT src/pq-CloseFile.obj -MD -MP -MF src/$(DEPDIR)/pq-CloseFile.Tpo -c -o src/pq-CloseFile.obj `if test -f 'src/CloseFile.c'; then $(CYGPATH_W) 'src/CloseFile.c'; else $(CYGPATH_W) '$(srcdir)/src/CloseFile.c'; fi`
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) src/$(DEPDIR)/pq-CloseFile.Tpo src/$(DEPDIR)/pq-CloseFile.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='src/CloseFile.c' object='src/pq-CloseFile.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) $(pq_CPPFLAGS) $(CPPFLAGS) $(pq_CFLAGS) $(CFLAGS) -c -o src/pq-CloseFile.obj `if test -f 'src/CloseFile.c'; then $(CYGPATH_W) 'src/CloseFile.c'; else $(CYGPATH_W) '$(srcdir)/src/CloseFile.c'; fi`
src/pq-Extend_Auts.o: src/Extend_Auts.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(pq_CPPFLAGS) $(CPPFLAGS) $(pq_CFLAGS) $(CFLAGS) -MT src/pq-Extend_Auts.o -MD -MP -MF src/$(DEPDIR)/pq-Extend_Auts.Tpo -c -o src/pq-Extend_Auts.o `test -f 'src/Extend_Auts.c' || echo '$(srcdir)/'`src/Extend_Auts.c
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) src/$(DEPDIR)/pq-Extend_Auts.Tpo src/$(DEPDIR)/pq-Extend_Auts.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='src/Extend_Auts.c' object='src/pq-Extend_Auts.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) $(pq_CPPFLAGS) $(CPPFLAGS) $(pq_CFLAGS) $(CFLAGS) -c -o src/pq-Extend_Auts.o `test -f 'src/Extend_Auts.c' || echo '$(srcdir)/'`src/Extend_Auts.c
src/pq-Extend_Auts.obj: src/Extend_Auts.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(pq_CPPFLAGS) $(CPPFLAGS) $(pq_CFLAGS) $(CFLAGS) -MT src/pq-Extend_Auts.obj -MD -MP -MF src/$(DEPDIR)/pq-Extend_Auts.Tpo -c -o src/pq-Extend_Auts.obj `if test -f 'src/Extend_Auts.c'; then $(CYGPATH_W) 'src/Extend_Auts.c'; else $(CYGPATH_W) '$(srcdir)/src/Extend_Auts.c'; fi`
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) src/$(DEPDIR)/pq-Extend_Auts.Tpo src/$(DEPDIR)/pq-Extend_Auts.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='src/Extend_Auts.c' object='src/pq-Extend_Auts.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) $(pq_CPPFLAGS) $(CPPFLAGS) $(pq_CFLAGS) $(CFLAGS) -c -o src/pq-Extend_Auts.obj `if test -f 'src/Extend_Auts.c'; then $(CYGPATH_W) 'src/Extend_Auts.c'; else $(CYGPATH_W) '$(srcdir)/src/Extend_Auts.c'; fi`
src/pq-FreeSpace.o: src/FreeSpace.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(pq_CPPFLAGS) $(CPPFLAGS) $(pq_CFLAGS) $(CFLAGS) -MT src/pq-FreeSpace.o -MD -MP -MF src/$(DEPDIR)/pq-FreeSpace.Tpo -c -o src/pq-FreeSpace.o `test -f 'src/FreeSpace.c' || echo '$(srcdir)/'`src/FreeSpace.c
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) src/$(DEPDIR)/pq-FreeSpace.Tpo src/$(DEPDIR)/pq-FreeSpace.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='src/FreeSpace.c' object='src/pq-FreeSpace.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) $(pq_CPPFLAGS) $(CPPFLAGS) $(pq_CFLAGS) $(CFLAGS) -c -o src/pq-FreeSpace.o `test -f 'src/FreeSpace.c' || echo '$(srcdir)/'`src/FreeSpace.c
src/pq-FreeSpace.obj: src/FreeSpace.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(pq_CPPFLAGS) $(CPPFLAGS) $(pq_CFLAGS) $(CFLAGS) -MT src/pq-FreeSpace.obj -MD -MP -MF src/$(DEPDIR)/pq-FreeSpace.Tpo -c -o src/pq-FreeSpace.obj `if test -f 'src/FreeSpace.c'; then $(CYGPATH_W) 'src/FreeSpace.c'; else $(CYGPATH_W) '$(srcdir)/src/FreeSpace.c'; fi`
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) src/$(DEPDIR)/pq-FreeSpace.Tpo src/$(DEPDIR)/pq-FreeSpace.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='src/FreeSpace.c' object='src/pq-FreeSpace.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) $(pq_CPPFLAGS) $(CPPFLAGS) $(pq_CFLAGS) $(CFLAGS) -c -o src/pq-FreeSpace.obj `if test -f 'src/FreeSpace.c'; then $(CYGPATH_W) 'src/FreeSpace.c'; else $(CYGPATH_W) '$(srcdir)/src/FreeSpace.c'; fi`
src/pq-GAP.o: src/GAP.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(pq_CPPFLAGS) $(CPPFLAGS) $(pq_CFLAGS) $(CFLAGS) -MT src/pq-GAP.o -MD -MP -MF src/$(DEPDIR)/pq-GAP.Tpo -c -o src/pq-GAP.o `test -f 'src/GAP.c' || echo '$(srcdir)/'`src/GAP.c
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) src/$(DEPDIR)/pq-GAP.Tpo src/$(DEPDIR)/pq-GAP.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='src/GAP.c' object='src/pq-GAP.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) $(pq_CPPFLAGS) $(CPPFLAGS) $(pq_CFLAGS) $(CFLAGS) -c -o src/pq-GAP.o `test -f 'src/GAP.c' || echo '$(srcdir)/'`src/GAP.c
src/pq-GAP.obj: src/GAP.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(pq_CPPFLAGS) $(CPPFLAGS) $(pq_CFLAGS) $(CFLAGS) -MT src/pq-GAP.obj -MD -MP -MF src/$(DEPDIR)/pq-GAP.Tpo -c -o src/pq-GAP.obj `if test -f 'src/GAP.c'; then $(CYGPATH_W) 'src/GAP.c'; else $(CYGPATH_W) '$(srcdir)/src/GAP.c'; fi`
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) src/$(DEPDIR)/pq-GAP.Tpo src/$(DEPDIR)/pq-GAP.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='src/GAP.c' object='src/pq-GAP.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) $(pq_CPPFLAGS) $(CPPFLAGS) $(pq_CFLAGS) $(CFLAGS) -c -o src/pq-GAP.obj `if test -f 'src/GAP.c'; then $(CYGPATH_W) 'src/GAP.c'; else $(CYGPATH_W) '$(srcdir)/src/GAP.c'; fi`
src/pq-GAP_link_via_file.o: src/GAP_link_via_file.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(pq_CPPFLAGS) $(CPPFLAGS) $(pq_CFLAGS) $(CFLAGS) -MT src/pq-GAP_link_via_file.o -MD -MP -MF src/$(DEPDIR)/pq-GAP_link_via_file.Tpo -c -o src/pq-GAP_link_via_file.o `test -f 'src/GAP_link_via_file.c' || echo '$(srcdir)/'`src/GAP_link_via_file.c
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) src/$(DEPDIR)/pq-GAP_link_via_file.Tpo src/$(DEPDIR)/pq-GAP_link_via_file.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='src/GAP_link_via_file.c' object='src/pq-GAP_link_via_file.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) $(pq_CPPFLAGS) $(CPPFLAGS) $(pq_CFLAGS) $(CFLAGS) -c -o src/pq-GAP_link_via_file.o `test -f 'src/GAP_link_via_file.c' || echo '$(srcdir)/'`src/GAP_link_via_file.c
src/pq-GAP_link_via_file.obj: src/GAP_link_via_file.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(pq_CPPFLAGS) $(CPPFLAGS) $(pq_CFLAGS) $(CFLAGS) -MT src/pq-GAP_link_via_file.obj -MD -MP -MF src/$(DEPDIR)/pq-GAP_link_via_file.Tpo -c -o src/pq-GAP_link_via_file.obj `if test -f 'src/GAP_link_via_file.c'; then $(CYGPATH_W) 'src/GAP_link_via_file.c'; else $(CYGPATH_W) '$(srcdir)/src/GAP_link_via_file.c'; fi`
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) src/$(DEPDIR)/pq-GAP_link_via_file.Tpo src/$(DEPDIR)/pq-GAP_link_via_file.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='src/GAP_link_via_file.c' object='src/pq-GAP_link_via_file.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) $(pq_CPPFLAGS) $(CPPFLAGS) $(pq_CFLAGS) $(CFLAGS) -c -o src/pq-GAP_link_via_file.obj `if test -f 'src/GAP_link_via_file.c'; then $(CYGPATH_W) 'src/GAP_link_via_file.c'; else $(CYGPATH_W) '$(srcdir)/src/GAP_link_via_file.c'; fi`
src/pq-GAP_present.o: src/GAP_present.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(pq_CPPFLAGS) $(CPPFLAGS) $(pq_CFLAGS) $(CFLAGS) -MT src/pq-GAP_present.o -MD -MP -MF src/$(DEPDIR)/pq-GAP_present.Tpo -c -o src/pq-GAP_present.o `test -f 'src/GAP_present.c' || echo '$(srcdir)/'`src/GAP_present.c
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) src/$(DEPDIR)/pq-GAP_present.Tpo src/$(DEPDIR)/pq-GAP_present.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='src/GAP_present.c' object='src/pq-GAP_present.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) $(pq_CPPFLAGS) $(CPPFLAGS) $(pq_CFLAGS) $(CFLAGS) -c -o src/pq-GAP_present.o `test -f 'src/GAP_present.c' || echo '$(srcdir)/'`src/GAP_present.c
src/pq-GAP_present.obj: src/GAP_present.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(pq_CPPFLAGS) $(CPPFLAGS) $(pq_CFLAGS) $(CFLAGS) -MT src/pq-GAP_present.obj -MD -MP -MF src/$(DEPDIR)/pq-GAP_present.Tpo -c -o src/pq-GAP_present.obj `if test -f 'src/GAP_present.c'; then $(CYGPATH_W) 'src/GAP_present.c'; else $(CYGPATH_W) '$(srcdir)/src/GAP_present.c'; fi`
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) src/$(DEPDIR)/pq-GAP_present.Tpo src/$(DEPDIR)/pq-GAP_present.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='src/GAP_present.c' object='src/pq-GAP_present.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) $(pq_CPPFLAGS) $(CPPFLAGS) $(pq_CFLAGS) $(CFLAGS) -c -o src/pq-GAP_present.obj `if test -f 'src/GAP_present.c'; then $(CYGPATH_W) 'src/GAP_present.c'; else $(CYGPATH_W) '$(srcdir)/src/GAP_present.c'; fi`
src/pq-OpenFile.o: src/OpenFile.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(pq_CPPFLAGS) $(CPPFLAGS) $(pq_CFLAGS) $(CFLAGS) -MT src/pq-OpenFile.o -MD -MP -MF src/$(DEPDIR)/pq-OpenFile.Tpo -c -o src/pq-OpenFile.o `test -f 'src/OpenFile.c' || echo '$(srcdir)/'`src/OpenFile.c
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) src/$(DEPDIR)/pq-OpenFile.Tpo src/$(DEPDIR)/pq-OpenFile.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='src/OpenFile.c' object='src/pq-OpenFile.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) $(pq_CPPFLAGS) $(CPPFLAGS) $(pq_CFLAGS) $(CFLAGS) -c -o src/pq-OpenFile.o `test -f 'src/OpenFile.c' || echo '$(srcdir)/'`src/OpenFile.c
src/pq-OpenFile.obj: src/OpenFile.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(pq_CPPFLAGS) $(CPPFLAGS) $(pq_CFLAGS) $(CFLAGS) -MT src/pq-OpenFile.obj -MD -MP -MF src/$(DEPDIR)/pq-OpenFile.Tpo -c -o src/pq-OpenFile.obj `if test -f 'src/OpenFile.c'; then $(CYGPATH_W) 'src/OpenFile.c'; else $(CYGPATH_W) '$(srcdir)/src/OpenFile.c'; fi`
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) src/$(DEPDIR)/pq-OpenFile.Tpo src/$(DEPDIR)/pq-OpenFile.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='src/OpenFile.c' object='src/pq-OpenFile.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) $(pq_CPPFLAGS) $(CPPFLAGS) $(pq_CFLAGS) $(CFLAGS) -c -o src/pq-OpenFile.obj `if test -f 'src/OpenFile.c'; then $(CYGPATH_W) 'src/OpenFile.c'; else $(CYGPATH_W) '$(srcdir)/src/OpenFile.c'; fi`
src/pq-TemporaryFile.o: src/TemporaryFile.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(pq_CPPFLAGS) $(CPPFLAGS) $(pq_CFLAGS) $(CFLAGS) -MT src/pq-TemporaryFile.o -MD -MP -MF src/$(DEPDIR)/pq-TemporaryFile.Tpo -c -o src/pq-TemporaryFile.o `test -f 'src/TemporaryFile.c' || echo '$(srcdir)/'`src/TemporaryFile.c
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) src/$(DEPDIR)/pq-TemporaryFile.Tpo src/$(DEPDIR)/pq-TemporaryFile.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='src/TemporaryFile.c' object='src/pq-TemporaryFile.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) $(pq_CPPFLAGS) $(CPPFLAGS) $(pq_CFLAGS) $(CFLAGS) -c -o src/pq-TemporaryFile.o `test -f 'src/TemporaryFile.c' || echo '$(srcdir)/'`src/TemporaryFile.c
src/pq-TemporaryFile.obj: src/TemporaryFile.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(pq_CPPFLAGS) $(CPPFLAGS) $(pq_CFLAGS) $(CFLAGS) -MT src/pq-TemporaryFile.obj -MD -MP -MF src/$(DEPDIR)/pq-TemporaryFile.Tpo -c -o src/pq-TemporaryFile.obj `if test -f 'src/TemporaryFile.c'; then $(CYGPATH_W) 'src/TemporaryFile.c'; else $(CYGPATH_W) '$(srcdir)/src/TemporaryFile.c'; fi`
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) src/$(DEPDIR)/pq-TemporaryFile.Tpo src/$(DEPDIR)/pq-TemporaryFile.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='src/TemporaryFile.c' object='src/pq-TemporaryFile.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) $(pq_CPPFLAGS) $(CPPFLAGS) $(pq_CFLAGS) $(CFLAGS) -c -o src/pq-TemporaryFile.obj `if test -f 'src/TemporaryFile.c'; then $(CYGPATH_W) 'src/TemporaryFile.c'; else $(CYGPATH_W) '$(srcdir)/src/TemporaryFile.c'; fi`
src/pq-action.o: src/action.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(pq_CPPFLAGS) $(CPPFLAGS) $(pq_CFLAGS) $(CFLAGS) -MT src/pq-action.o -MD -MP -MF src/$(DEPDIR)/pq-action.Tpo -c -o src/pq-action.o `test -f 'src/action.c' || echo '$(srcdir)/'`src/action.c
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) src/$(DEPDIR)/pq-action.Tpo src/$(DEPDIR)/pq-action.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='src/action.c' object='src/pq-action.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) $(pq_CPPFLAGS) $(CPPFLAGS) $(pq_CFLAGS) $(CFLAGS) -c -o src/pq-action.o `test -f 'src/action.c' || echo '$(srcdir)/'`src/action.c
src/pq-action.obj: src/action.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(pq_CPPFLAGS) $(CPPFLAGS) $(pq_CFLAGS) $(CFLAGS) -MT src/pq-action.obj -MD -MP -MF src/$(DEPDIR)/pq-action.Tpo -c -o src/pq-action.obj `if test -f 'src/action.c'; then $(CYGPATH_W) 'src/action.c'; else $(CYGPATH_W) '$(srcdir)/src/action.c'; fi`
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) src/$(DEPDIR)/pq-action.Tpo src/$(DEPDIR)/pq-action.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='src/action.c' object='src/pq-action.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) $(pq_CPPFLAGS) $(CPPFLAGS) $(pq_CFLAGS) $(CFLAGS) -c -o src/pq-action.obj `if test -f 'src/action.c'; then $(CYGPATH_W) 'src/action.c'; else $(CYGPATH_W) '$(srcdir)/src/action.c'; fi`
src/pq-assemble_matrix.o: src/assemble_matrix.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(pq_CPPFLAGS) $(CPPFLAGS) $(pq_CFLAGS) $(CFLAGS) -MT src/pq-assemble_matrix.o -MD -MP -MF src/$(DEPDIR)/pq-assemble_matrix.Tpo -c -o src/pq-assemble_matrix.o `test -f 'src/assemble_matrix.c' || echo '$(srcdir)/'`src/assemble_matrix.c
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) src/$(DEPDIR)/pq-assemble_matrix.Tpo src/$(DEPDIR)/pq-assemble_matrix.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='src/assemble_matrix.c' object='src/pq-assemble_matrix.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) $(pq_CPPFLAGS) $(CPPFLAGS) $(pq_CFLAGS) $(CFLAGS) -c -o src/pq-assemble_matrix.o `test -f 'src/assemble_matrix.c' || echo '$(srcdir)/'`src/assemble_matrix.c
src/pq-assemble_matrix.obj: src/assemble_matrix.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(pq_CPPFLAGS) $(CPPFLAGS) $(pq_CFLAGS) $(CFLAGS) -MT src/pq-assemble_matrix.obj -MD -MP -MF src/$(DEPDIR)/pq-assemble_matrix.Tpo -c -o src/pq-assemble_matrix.obj `if test -f 'src/assemble_matrix.c'; then $(CYGPATH_W) 'src/assemble_matrix.c'; else $(CYGPATH_W) '$(srcdir)/src/assemble_matrix.c'; fi`
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) src/$(DEPDIR)/pq-assemble_matrix.Tpo src/$(DEPDIR)/pq-assemble_matrix.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='src/assemble_matrix.c' object='src/pq-assemble_matrix.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) $(pq_CPPFLAGS) $(CPPFLAGS) $(pq_CFLAGS) $(CFLAGS) -c -o src/pq-assemble_matrix.obj `if test -f 'src/assemble_matrix.c'; then $(CYGPATH_W) 'src/assemble_matrix.c'; else $(CYGPATH_W) '$(srcdir)/src/assemble_matrix.c'; fi`
src/pq-autgp_order.o: src/autgp_order.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(pq_CPPFLAGS) $(CPPFLAGS) $(pq_CFLAGS) $(CFLAGS) -MT src/pq-autgp_order.o -MD -MP -MF src/$(DEPDIR)/pq-autgp_order.Tpo -c -o src/pq-autgp_order.o `test -f 'src/autgp_order.c' || echo '$(srcdir)/'`src/autgp_order.c
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) src/$(DEPDIR)/pq-autgp_order.Tpo src/$(DEPDIR)/pq-autgp_order.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='src/autgp_order.c' object='src/pq-autgp_order.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) $(pq_CPPFLAGS) $(CPPFLAGS) $(pq_CFLAGS) $(CFLAGS) -c -o src/pq-autgp_order.o `test -f 'src/autgp_order.c' || echo '$(srcdir)/'`src/autgp_order.c
src/pq-autgp_order.obj: src/autgp_order.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(pq_CPPFLAGS) $(CPPFLAGS) $(pq_CFLAGS) $(CFLAGS) -MT src/pq-autgp_order.obj -MD -MP -MF src/$(DEPDIR)/pq-autgp_order.Tpo -c -o src/pq-autgp_order.obj `if test -f 'src/autgp_order.c'; then $(CYGPATH_W) 'src/autgp_order.c'; else $(CYGPATH_W) '$(srcdir)/src/autgp_order.c'; fi`
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) src/$(DEPDIR)/pq-autgp_order.Tpo src/$(DEPDIR)/pq-autgp_order.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='src/autgp_order.c' object='src/pq-autgp_order.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) $(pq_CPPFLAGS) $(CPPFLAGS) $(pq_CFLAGS) $(CFLAGS) -c -o src/pq-autgp_order.obj `if test -f 'src/autgp_order.c'; then $(CYGPATH_W) 'src/autgp_order.c'; else $(CYGPATH_W) '$(srcdir)/src/autgp_order.c'; fi`
src/pq-calculate_jacobi.o: src/calculate_jacobi.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(pq_CPPFLAGS) $(CPPFLAGS) $(pq_CFLAGS) $(CFLAGS) -MT src/pq-calculate_jacobi.o -MD -MP -MF src/$(DEPDIR)/pq-calculate_jacobi.Tpo -c -o src/pq-calculate_jacobi.o `test -f 'src/calculate_jacobi.c' || echo '$(srcdir)/'`src/calculate_jacobi.c
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) src/$(DEPDIR)/pq-calculate_jacobi.Tpo src/$(DEPDIR)/pq-calculate_jacobi.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='src/calculate_jacobi.c' object='src/pq-calculate_jacobi.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) $(pq_CPPFLAGS) $(CPPFLAGS) $(pq_CFLAGS) $(CFLAGS) -c -o src/pq-calculate_jacobi.o `test -f 'src/calculate_jacobi.c' || echo '$(srcdir)/'`src/calculate_jacobi.c
src/pq-calculate_jacobi.obj: src/calculate_jacobi.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(pq_CPPFLAGS) $(CPPFLAGS) $(pq_CFLAGS) $(CFLAGS) -MT src/pq-calculate_jacobi.obj -MD -MP -MF src/$(DEPDIR)/pq-calculate_jacobi.Tpo -c -o src/pq-calculate_jacobi.obj `if test -f 'src/calculate_jacobi.c'; then $(CYGPATH_W) 'src/calculate_jacobi.c'; else $(CYGPATH_W) '$(srcdir)/src/calculate_jacobi.c'; fi`
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) src/$(DEPDIR)/pq-calculate_jacobi.Tpo src/$(DEPDIR)/pq-calculate_jacobi.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='src/calculate_jacobi.c' object='src/pq-calculate_jacobi.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) $(pq_CPPFLAGS) $(CPPFLAGS) $(pq_CFLAGS) $(CFLAGS) -c -o src/pq-calculate_jacobi.obj `if test -f 'src/calculate_jacobi.c'; then $(CYGPATH_W) 'src/calculate_jacobi.c'; else $(CYGPATH_W) '$(srcdir)/src/calculate_jacobi.c'; fi`
src/pq-central_auts.o: src/central_auts.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(pq_CPPFLAGS) $(CPPFLAGS) $(pq_CFLAGS) $(CFLAGS) -MT src/pq-central_auts.o -MD -MP -MF src/$(DEPDIR)/pq-central_auts.Tpo -c -o src/pq-central_auts.o `test -f 'src/central_auts.c' || echo '$(srcdir)/'`src/central_auts.c
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) src/$(DEPDIR)/pq-central_auts.Tpo src/$(DEPDIR)/pq-central_auts.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='src/central_auts.c' object='src/pq-central_auts.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) $(pq_CPPFLAGS) $(CPPFLAGS) $(pq_CFLAGS) $(CFLAGS) -c -o src/pq-central_auts.o `test -f 'src/central_auts.c' || echo '$(srcdir)/'`src/central_auts.c
src/pq-central_auts.obj: src/central_auts.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(pq_CPPFLAGS) $(CPPFLAGS) $(pq_CFLAGS) $(CFLAGS) -MT src/pq-central_auts.obj -MD -MP -MF src/$(DEPDIR)/pq-central_auts.Tpo -c -o src/pq-central_auts.obj `if test -f 'src/central_auts.c'; then $(CYGPATH_W) 'src/central_auts.c'; else $(CYGPATH_W) '$(srcdir)/src/central_auts.c'; fi`
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) src/$(DEPDIR)/pq-central_auts.Tpo src/$(DEPDIR)/pq-central_auts.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='src/central_auts.c' object='src/pq-central_auts.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) $(pq_CPPFLAGS) $(CPPFLAGS) $(pq_CFLAGS) $(CFLAGS) -c -o src/pq-central_auts.obj `if test -f 'src/central_auts.c'; then $(CYGPATH_W) 'src/central_auts.c'; else $(CYGPATH_W) '$(srcdir)/src/central_auts.c'; fi`
src/pq-check_exponent.o: src/check_exponent.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(pq_CPPFLAGS) $(CPPFLAGS) $(pq_CFLAGS) $(CFLAGS) -MT src/pq-check_exponent.o -MD -MP -MF src/$(DEPDIR)/pq-check_exponent.Tpo -c -o src/pq-check_exponent.o `test -f 'src/check_exponent.c' || echo '$(srcdir)/'`src/check_exponent.c
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) src/$(DEPDIR)/pq-check_exponent.Tpo src/$(DEPDIR)/pq-check_exponent.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='src/check_exponent.c' object='src/pq-check_exponent.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) $(pq_CPPFLAGS) $(CPPFLAGS) $(pq_CFLAGS) $(CFLAGS) -c -o src/pq-check_exponent.o `test -f 'src/check_exponent.c' || echo '$(srcdir)/'`src/check_exponent.c
src/pq-check_exponent.obj: src/check_exponent.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(pq_CPPFLAGS) $(CPPFLAGS) $(pq_CFLAGS) $(CFLAGS) -MT src/pq-check_exponent.obj -MD -MP -MF src/$(DEPDIR)/pq-check_exponent.Tpo -c -o src/pq-check_exponent.obj `if test -f 'src/check_exponent.c'; then $(CYGPATH_W) 'src/check_exponent.c'; else $(CYGPATH_W) '$(srcdir)/src/check_exponent.c'; fi`
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) src/$(DEPDIR)/pq-check_exponent.Tpo src/$(DEPDIR)/pq-check_exponent.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='src/check_exponent.c' object='src/pq-check_exponent.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) $(pq_CPPFLAGS) $(CPPFLAGS) $(pq_CFLAGS) $(CFLAGS) -c -o src/pq-check_exponent.obj `if test -f 'src/check_exponent.c'; then $(CYGPATH_W) 'src/check_exponent.c'; else $(CYGPATH_W) '$(srcdir)/src/check_exponent.c'; fi`
src/pq-class1_eliminate.o: src/class1_eliminate.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(pq_CPPFLAGS) $(CPPFLAGS) $(pq_CFLAGS) $(CFLAGS) -MT src/pq-class1_eliminate.o -MD -MP -MF src/$(DEPDIR)/pq-class1_eliminate.Tpo -c -o src/pq-class1_eliminate.o `test -f 'src/class1_eliminate.c' || echo '$(srcdir)/'`src/class1_eliminate.c
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) src/$(DEPDIR)/pq-class1_eliminate.Tpo src/$(DEPDIR)/pq-class1_eliminate.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='src/class1_eliminate.c' object='src/pq-class1_eliminate.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) $(pq_CPPFLAGS) $(CPPFLAGS) $(pq_CFLAGS) $(CFLAGS) -c -o src/pq-class1_eliminate.o `test -f 'src/class1_eliminate.c' || echo '$(srcdir)/'`src/class1_eliminate.c
src/pq-class1_eliminate.obj: src/class1_eliminate.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(pq_CPPFLAGS) $(CPPFLAGS) $(pq_CFLAGS) $(CFLAGS) -MT src/pq-class1_eliminate.obj -MD -MP -MF src/$(DEPDIR)/pq-class1_eliminate.Tpo -c -o src/pq-class1_eliminate.obj `if test -f 'src/class1_eliminate.c'; then $(CYGPATH_W) 'src/class1_eliminate.c'; else $(CYGPATH_W) '$(srcdir)/src/class1_eliminate.c'; fi`
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) src/$(DEPDIR)/pq-class1_eliminate.Tpo src/$(DEPDIR)/pq-class1_eliminate.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='src/class1_eliminate.c' object='src/pq-class1_eliminate.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) $(pq_CPPFLAGS) $(CPPFLAGS) $(pq_CFLAGS) $(CFLAGS) -c -o src/pq-class1_eliminate.obj `if test -f 'src/class1_eliminate.c'; then $(CYGPATH_W) 'src/class1_eliminate.c'; else $(CYGPATH_W) '$(srcdir)/src/class1_eliminate.c'; fi`
src/pq-close_relations.o: src/close_relations.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(pq_CPPFLAGS) $(CPPFLAGS) $(pq_CFLAGS) $(CFLAGS) -MT src/pq-close_relations.o -MD -MP -MF src/$(DEPDIR)/pq-close_relations.Tpo -c -o src/pq-close_relations.o `test -f 'src/close_relations.c' || echo '$(srcdir)/'`src/close_relations.c
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) src/$(DEPDIR)/pq-close_relations.Tpo src/$(DEPDIR)/pq-close_relations.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='src/close_relations.c' object='src/pq-close_relations.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) $(pq_CPPFLAGS) $(CPPFLAGS) $(pq_CFLAGS) $(CFLAGS) -c -o src/pq-close_relations.o `test -f 'src/close_relations.c' || echo '$(srcdir)/'`src/close_relations.c
src/pq-close_relations.obj: src/close_relations.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(pq_CPPFLAGS) $(CPPFLAGS) $(pq_CFLAGS) $(CFLAGS) -MT src/pq-close_relations.obj -MD -MP -MF src/$(DEPDIR)/pq-close_relations.Tpo -c -o src/pq-close_relations.obj `if test -f 'src/close_relations.c'; then $(CYGPATH_W) 'src/close_relations.c'; else $(CYGPATH_W) '$(srcdir)/src/close_relations.c'; fi`
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) src/$(DEPDIR)/pq-close_relations.Tpo src/$(DEPDIR)/pq-close_relations.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='src/close_relations.c' object='src/pq-close_relations.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) $(pq_CPPFLAGS) $(CPPFLAGS) $(pq_CFLAGS) $(CFLAGS) -c -o src/pq-close_relations.obj `if test -f 'src/close_relations.c'; then $(CYGPATH_W) 'src/close_relations.c'; else $(CYGPATH_W) '$(srcdir)/src/close_relations.c'; fi`
src/pq-close_subgroup.o: src/close_subgroup.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(pq_CPPFLAGS) $(CPPFLAGS) $(pq_CFLAGS) $(CFLAGS) -MT src/pq-close_subgroup.o -MD -MP -MF src/$(DEPDIR)/pq-close_subgroup.Tpo -c -o src/pq-close_subgroup.o `test -f 'src/close_subgroup.c' || echo '$(srcdir)/'`src/close_subgroup.c
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) src/$(DEPDIR)/pq-close_subgroup.Tpo src/$(DEPDIR)/pq-close_subgroup.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='src/close_subgroup.c' object='src/pq-close_subgroup.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) $(pq_CPPFLAGS) $(CPPFLAGS) $(pq_CFLAGS) $(CFLAGS) -c -o src/pq-close_subgroup.o `test -f 'src/close_subgroup.c' || echo '$(srcdir)/'`src/close_subgroup.c
src/pq-close_subgroup.obj: src/close_subgroup.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(pq_CPPFLAGS) $(CPPFLAGS) $(pq_CFLAGS) $(CFLAGS) -MT src/pq-close_subgroup.obj -MD -MP -MF src/$(DEPDIR)/pq-close_subgroup.Tpo -c -o src/pq-close_subgroup.obj `if test -f 'src/close_subgroup.c'; then $(CYGPATH_W) 'src/close_subgroup.c'; else $(CYGPATH_W) '$(srcdir)/src/close_subgroup.c'; fi`
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) src/$(DEPDIR)/pq-close_subgroup.Tpo src/$(DEPDIR)/pq-close_subgroup.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='src/close_subgroup.c' object='src/pq-close_subgroup.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) $(pq_CPPFLAGS) $(CPPFLAGS) $(pq_CFLAGS) $(CFLAGS) -c -o src/pq-close_subgroup.obj `if test -f 'src/close_subgroup.c'; then $(CYGPATH_W) 'src/close_subgroup.c'; else $(CYGPATH_W) '$(srcdir)/src/close_subgroup.c'; fi`
src/pq-collect.o: src/collect.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(pq_CPPFLAGS) $(CPPFLAGS) $(pq_CFLAGS) $(CFLAGS) -MT src/pq-collect.o -MD -MP -MF src/$(DEPDIR)/pq-collect.Tpo -c -o src/pq-collect.o `test -f 'src/collect.c' || echo '$(srcdir)/'`src/collect.c
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) src/$(DEPDIR)/pq-collect.Tpo src/$(DEPDIR)/pq-collect.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='src/collect.c' object='src/pq-collect.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) $(pq_CPPFLAGS) $(CPPFLAGS) $(pq_CFLAGS) $(CFLAGS) -c -o src/pq-collect.o `test -f 'src/collect.c' || echo '$(srcdir)/'`src/collect.c
src/pq-collect.obj: src/collect.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(pq_CPPFLAGS) $(CPPFLAGS) $(pq_CFLAGS) $(CFLAGS) -MT src/pq-collect.obj -MD -MP -MF src/$(DEPDIR)/pq-collect.Tpo -c -o src/pq-collect.obj `if test -f 'src/collect.c'; then $(CYGPATH_W) 'src/collect.c'; else $(CYGPATH_W) '$(srcdir)/src/collect.c'; fi`
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) src/$(DEPDIR)/pq-collect.Tpo src/$(DEPDIR)/pq-collect.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='src/collect.c' object='src/pq-collect.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) $(pq_CPPFLAGS) $(CPPFLAGS) $(pq_CFLAGS) $(CFLAGS) -c -o src/pq-collect.obj `if test -f 'src/collect.c'; then $(CYGPATH_W) 'src/collect.c'; else $(CYGPATH_W) '$(srcdir)/src/collect.c'; fi`
src/pq-collect_comm.o: src/collect_comm.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(pq_CPPFLAGS) $(CPPFLAGS) $(pq_CFLAGS) $(CFLAGS) -MT src/pq-collect_comm.o -MD -MP -MF src/$(DEPDIR)/pq-collect_comm.Tpo -c -o src/pq-collect_comm.o `test -f 'src/collect_comm.c' || echo '$(srcdir)/'`src/collect_comm.c
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) src/$(DEPDIR)/pq-collect_comm.Tpo src/$(DEPDIR)/pq-collect_comm.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='src/collect_comm.c' object='src/pq-collect_comm.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) $(pq_CPPFLAGS) $(CPPFLAGS) $(pq_CFLAGS) $(CFLAGS) -c -o src/pq-collect_comm.o `test -f 'src/collect_comm.c' || echo '$(srcdir)/'`src/collect_comm.c
src/pq-collect_comm.obj: src/collect_comm.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(pq_CPPFLAGS) $(CPPFLAGS) $(pq_CFLAGS) $(CFLAGS) -MT src/pq-collect_comm.obj -MD -MP -MF src/$(DEPDIR)/pq-collect_comm.Tpo -c -o src/pq-collect_comm.obj `if test -f 'src/collect_comm.c'; then $(CYGPATH_W) 'src/collect_comm.c'; else $(CYGPATH_W) '$(srcdir)/src/collect_comm.c'; fi`
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) src/$(DEPDIR)/pq-collect_comm.Tpo src/$(DEPDIR)/pq-collect_comm.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='src/collect_comm.c' object='src/pq-collect_comm.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) $(pq_CPPFLAGS) $(CPPFLAGS) $(pq_CFLAGS) $(CFLAGS) -c -o src/pq-collect_comm.obj `if test -f 'src/collect_comm.c'; then $(CYGPATH_W) 'src/collect_comm.c'; else $(CYGPATH_W) '$(srcdir)/src/collect_comm.c'; fi`
src/pq-collect_gen_word.o: src/collect_gen_word.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(pq_CPPFLAGS) $(CPPFLAGS) $(pq_CFLAGS) $(CFLAGS) -MT src/pq-collect_gen_word.o -MD -MP -MF src/$(DEPDIR)/pq-collect_gen_word.Tpo -c -o src/pq-collect_gen_word.o `test -f 'src/collect_gen_word.c' || echo '$(srcdir)/'`src/collect_gen_word.c
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) src/$(DEPDIR)/pq-collect_gen_word.Tpo src/$(DEPDIR)/pq-collect_gen_word.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='src/collect_gen_word.c' object='src/pq-collect_gen_word.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) $(pq_CPPFLAGS) $(CPPFLAGS) $(pq_CFLAGS) $(CFLAGS) -c -o src/pq-collect_gen_word.o `test -f 'src/collect_gen_word.c' || echo '$(srcdir)/'`src/collect_gen_word.c
src/pq-collect_gen_word.obj: src/collect_gen_word.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(pq_CPPFLAGS) $(CPPFLAGS) $(pq_CFLAGS) $(CFLAGS) -MT src/pq-collect_gen_word.obj -MD -MP -MF src/$(DEPDIR)/pq-collect_gen_word.Tpo -c -o src/pq-collect_gen_word.obj `if test -f 'src/collect_gen_word.c'; then $(CYGPATH_W) 'src/collect_gen_word.c'; else $(CYGPATH_W) '$(srcdir)/src/collect_gen_word.c'; fi`
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) src/$(DEPDIR)/pq-collect_gen_word.Tpo src/$(DEPDIR)/pq-collect_gen_word.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='src/collect_gen_word.c' object='src/pq-collect_gen_word.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) $(pq_CPPFLAGS) $(CPPFLAGS) $(pq_CFLAGS) $(CFLAGS) -c -o src/pq-collect_gen_word.obj `if test -f 'src/collect_gen_word.c'; then $(CYGPATH_W) 'src/collect_gen_word.c'; else $(CYGPATH_W) '$(srcdir)/src/collect_gen_word.c'; fi`
src/pq-collect_relations.o: src/collect_relations.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(pq_CPPFLAGS) $(CPPFLAGS) $(pq_CFLAGS) $(CFLAGS) -MT src/pq-collect_relations.o -MD -MP -MF src/$(DEPDIR)/pq-collect_relations.Tpo -c -o src/pq-collect_relations.o `test -f 'src/collect_relations.c' || echo '$(srcdir)/'`src/collect_relations.c
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) src/$(DEPDIR)/pq-collect_relations.Tpo src/$(DEPDIR)/pq-collect_relations.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='src/collect_relations.c' object='src/pq-collect_relations.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) $(pq_CPPFLAGS) $(CPPFLAGS) $(pq_CFLAGS) $(CFLAGS) -c -o src/pq-collect_relations.o `test -f 'src/collect_relations.c' || echo '$(srcdir)/'`src/collect_relations.c
src/pq-collect_relations.obj: src/collect_relations.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(pq_CPPFLAGS) $(CPPFLAGS) $(pq_CFLAGS) $(CFLAGS) -MT src/pq-collect_relations.obj -MD -MP -MF src/$(DEPDIR)/pq-collect_relations.Tpo -c -o src/pq-collect_relations.obj `if test -f 'src/collect_relations.c'; then $(CYGPATH_W) 'src/collect_relations.c'; else $(CYGPATH_W) '$(srcdir)/src/collect_relations.c'; fi`
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) src/$(DEPDIR)/pq-collect_relations.Tpo src/$(DEPDIR)/pq-collect_relations.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='src/collect_relations.c' object='src/pq-collect_relations.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) $(pq_CPPFLAGS) $(CPPFLAGS) $(pq_CFLAGS) $(CFLAGS) -c -o src/pq-collect_relations.obj `if test -f 'src/collect_relations.c'; then $(CYGPATH_W) 'src/collect_relations.c'; else $(CYGPATH_W) '$(srcdir)/src/collect_relations.c'; fi`
src/pq-collect_word.o: src/collect_word.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(pq_CPPFLAGS) $(CPPFLAGS) $(pq_CFLAGS) $(CFLAGS) -MT src/pq-collect_word.o -MD -MP -MF src/$(DEPDIR)/pq-collect_word.Tpo -c -o src/pq-collect_word.o `test -f 'src/collect_word.c' || echo '$(srcdir)/'`src/collect_word.c
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) src/$(DEPDIR)/pq-collect_word.Tpo src/$(DEPDIR)/pq-collect_word.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='src/collect_word.c' object='src/pq-collect_word.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) $(pq_CPPFLAGS) $(CPPFLAGS) $(pq_CFLAGS) $(CFLAGS) -c -o src/pq-collect_word.o `test -f 'src/collect_word.c' || echo '$(srcdir)/'`src/collect_word.c
src/pq-collect_word.obj: src/collect_word.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(pq_CPPFLAGS) $(CPPFLAGS) $(pq_CFLAGS) $(CFLAGS) -MT src/pq-collect_word.obj -MD -MP -MF src/$(DEPDIR)/pq-collect_word.Tpo -c -o src/pq-collect_word.obj `if test -f 'src/collect_word.c'; then $(CYGPATH_W) 'src/collect_word.c'; else $(CYGPATH_W) '$(srcdir)/src/collect_word.c'; fi`
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) src/$(DEPDIR)/pq-collect_word.Tpo src/$(DEPDIR)/pq-collect_word.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='src/collect_word.c' object='src/pq-collect_word.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) $(pq_CPPFLAGS) $(CPPFLAGS) $(pq_CFLAGS) $(CFLAGS) -c -o src/pq-collect_word.obj `if test -f 'src/collect_word.c'; then $(CYGPATH_W) 'src/collect_word.c'; else $(CYGPATH_W) '$(srcdir)/src/collect_word.c'; fi`
src/pq-collectp2.o: src/collectp2.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(pq_CPPFLAGS) $(CPPFLAGS) $(pq_CFLAGS) $(CFLAGS) -MT src/pq-collectp2.o -MD -MP -MF src/$(DEPDIR)/pq-collectp2.Tpo -c -o src/pq-collectp2.o `test -f 'src/collectp2.c' || echo '$(srcdir)/'`src/collectp2.c
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) src/$(DEPDIR)/pq-collectp2.Tpo src/$(DEPDIR)/pq-collectp2.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='src/collectp2.c' object='src/pq-collectp2.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) $(pq_CPPFLAGS) $(CPPFLAGS) $(pq_CFLAGS) $(CFLAGS) -c -o src/pq-collectp2.o `test -f 'src/collectp2.c' || echo '$(srcdir)/'`src/collectp2.c
src/pq-collectp2.obj: src/collectp2.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(pq_CPPFLAGS) $(CPPFLAGS) $(pq_CFLAGS) $(CFLAGS) -MT src/pq-collectp2.obj -MD -MP -MF src/$(DEPDIR)/pq-collectp2.Tpo -c -o src/pq-collectp2.obj `if test -f 'src/collectp2.c'; then $(CYGPATH_W) 'src/collectp2.c'; else $(CYGPATH_W) '$(srcdir)/src/collectp2.c'; fi`
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) src/$(DEPDIR)/pq-collectp2.Tpo src/$(DEPDIR)/pq-collectp2.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='src/collectp2.c' object='src/pq-collectp2.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) $(pq_CPPFLAGS) $(CPPFLAGS) $(pq_CFLAGS) $(CFLAGS) -c -o src/pq-collectp2.obj `if test -f 'src/collectp2.c'; then $(CYGPATH_W) 'src/collectp2.c'; else $(CYGPATH_W) '$(srcdir)/src/collectp2.c'; fi`
src/pq-commutator.o: src/commutator.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(pq_CPPFLAGS) $(CPPFLAGS) $(pq_CFLAGS) $(CFLAGS) -MT src/pq-commutator.o -MD -MP -MF src/$(DEPDIR)/pq-commutator.Tpo -c -o src/pq-commutator.o `test -f 'src/commutator.c' || echo '$(srcdir)/'`src/commutator.c
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) src/$(DEPDIR)/pq-commutator.Tpo src/$(DEPDIR)/pq-commutator.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='src/commutator.c' object='src/pq-commutator.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) $(pq_CPPFLAGS) $(CPPFLAGS) $(pq_CFLAGS) $(CFLAGS) -c -o src/pq-commutator.o `test -f 'src/commutator.c' || echo '$(srcdir)/'`src/commutator.c
src/pq-commutator.obj: src/commutator.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(pq_CPPFLAGS) $(CPPFLAGS) $(pq_CFLAGS) $(CFLAGS) -MT src/pq-commutator.obj -MD -MP -MF src/$(DEPDIR)/pq-commutator.Tpo -c -o src/pq-commutator.obj `if test -f 'src/commutator.c'; then $(CYGPATH_W) 'src/commutator.c'; else $(CYGPATH_W) '$(srcdir)/src/commutator.c'; fi`
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) src/$(DEPDIR)/pq-commutator.Tpo src/$(DEPDIR)/pq-commutator.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='src/commutator.c' object='src/pq-commutator.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) $(pq_CPPFLAGS) $(CPPFLAGS) $(pq_CFLAGS) $(CFLAGS) -c -o src/pq-commutator.obj `if test -f 'src/commutator.c'; then $(CYGPATH_W) 'src/commutator.c'; else $(CYGPATH_W) '$(srcdir)/src/commutator.c'; fi`
src/pq-commute_dgen.o: src/commute_dgen.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(pq_CPPFLAGS) $(CPPFLAGS) $(pq_CFLAGS) $(CFLAGS) -MT src/pq-commute_dgen.o -MD -MP -MF src/$(DEPDIR)/pq-commute_dgen.Tpo -c -o src/pq-commute_dgen.o `test -f 'src/commute_dgen.c' || echo '$(srcdir)/'`src/commute_dgen.c
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) src/$(DEPDIR)/pq-commute_dgen.Tpo src/$(DEPDIR)/pq-commute_dgen.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='src/commute_dgen.c' object='src/pq-commute_dgen.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) $(pq_CPPFLAGS) $(CPPFLAGS) $(pq_CFLAGS) $(CFLAGS) -c -o src/pq-commute_dgen.o `test -f 'src/commute_dgen.c' || echo '$(srcdir)/'`src/commute_dgen.c
src/pq-commute_dgen.obj: src/commute_dgen.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(pq_CPPFLAGS) $(CPPFLAGS) $(pq_CFLAGS) $(CFLAGS) -MT src/pq-commute_dgen.obj -MD -MP -MF src/$(DEPDIR)/pq-commute_dgen.Tpo -c -o src/pq-commute_dgen.obj `if test -f 'src/commute_dgen.c'; then $(CYGPATH_W) 'src/commute_dgen.c'; else $(CYGPATH_W) '$(srcdir)/src/commute_dgen.c'; fi`
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) src/$(DEPDIR)/pq-commute_dgen.Tpo src/$(DEPDIR)/pq-commute_dgen.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='src/commute_dgen.c' object='src/pq-commute_dgen.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) $(pq_CPPFLAGS) $(CPPFLAGS) $(pq_CFLAGS) $(CFLAGS) -c -o src/pq-commute_dgen.obj `if test -f 'src/commute_dgen.c'; then $(CYGPATH_W) 'src/commute_dgen.c'; else $(CYGPATH_W) '$(srcdir)/src/commute_dgen.c'; fi`
src/pq-compact.o: src/compact.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(pq_CPPFLAGS) $(CPPFLAGS) $(pq_CFLAGS) $(CFLAGS) -MT src/pq-compact.o -MD -MP -MF src/$(DEPDIR)/pq-compact.Tpo -c -o src/pq-compact.o `test -f 'src/compact.c' || echo '$(srcdir)/'`src/compact.c
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) src/$(DEPDIR)/pq-compact.Tpo src/$(DEPDIR)/pq-compact.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='src/compact.c' object='src/pq-compact.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) $(pq_CPPFLAGS) $(CPPFLAGS) $(pq_CFLAGS) $(CFLAGS) -c -o src/pq-compact.o `test -f 'src/compact.c' || echo '$(srcdir)/'`src/compact.c
src/pq-compact.obj: src/compact.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(pq_CPPFLAGS) $(CPPFLAGS) $(pq_CFLAGS) $(CFLAGS) -MT src/pq-compact.obj -MD -MP -MF src/$(DEPDIR)/pq-compact.Tpo -c -o src/pq-compact.obj `if test -f 'src/compact.c'; then $(CYGPATH_W) 'src/compact.c'; else $(CYGPATH_W) '$(srcdir)/src/compact.c'; fi`
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) src/$(DEPDIR)/pq-compact.Tpo src/$(DEPDIR)/pq-compact.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='src/compact.c' object='src/pq-compact.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) $(pq_CPPFLAGS) $(CPPFLAGS) $(pq_CFLAGS) $(CFLAGS) -c -o src/pq-compact.obj `if test -f 'src/compact.c'; then $(CYGPATH_W) 'src/compact.c'; else $(CYGPATH_W) '$(srcdir)/src/compact.c'; fi`
src/pq-compact_description.o: src/compact_description.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(pq_CPPFLAGS) $(CPPFLAGS) $(pq_CFLAGS) $(CFLAGS) -MT src/pq-compact_description.o -MD -MP -MF src/$(DEPDIR)/pq-compact_description.Tpo -c -o src/pq-compact_description.o `test -f 'src/compact_description.c' || echo '$(srcdir)/'`src/compact_description.c
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) src/$(DEPDIR)/pq-compact_description.Tpo src/$(DEPDIR)/pq-compact_description.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='src/compact_description.c' object='src/pq-compact_description.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) $(pq_CPPFLAGS) $(CPPFLAGS) $(pq_CFLAGS) $(CFLAGS) -c -o src/pq-compact_description.o `test -f 'src/compact_description.c' || echo '$(srcdir)/'`src/compact_description.c
src/pq-compact_description.obj: src/compact_description.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(pq_CPPFLAGS) $(CPPFLAGS) $(pq_CFLAGS) $(CFLAGS) -MT src/pq-compact_description.obj -MD -MP -MF src/$(DEPDIR)/pq-compact_description.Tpo -c -o src/pq-compact_description.obj `if test -f 'src/compact_description.c'; then $(CYGPATH_W) 'src/compact_description.c'; else $(CYGPATH_W) '$(srcdir)/src/compact_description.c'; fi`
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) src/$(DEPDIR)/pq-compact_description.Tpo src/$(DEPDIR)/pq-compact_description.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='src/compact_description.c' object='src/pq-compact_description.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) $(pq_CPPFLAGS) $(CPPFLAGS) $(pq_CFLAGS) $(CFLAGS) -c -o src/pq-compact_description.obj `if test -f 'src/compact_description.c'; then $(CYGPATH_W) 'src/compact_description.c'; else $(CYGPATH_W) '$(srcdir)/src/compact_description.c'; fi`
src/pq-consistency.o: src/consistency.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(pq_CPPFLAGS) $(CPPFLAGS) $(pq_CFLAGS) $(CFLAGS) -MT src/pq-consistency.o -MD -MP -MF src/$(DEPDIR)/pq-consistency.Tpo -c -o src/pq-consistency.o `test -f 'src/consistency.c' || echo '$(srcdir)/'`src/consistency.c
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) src/$(DEPDIR)/pq-consistency.Tpo src/$(DEPDIR)/pq-consistency.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='src/consistency.c' object='src/pq-consistency.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) $(pq_CPPFLAGS) $(CPPFLAGS) $(pq_CFLAGS) $(CFLAGS) -c -o src/pq-consistency.o `test -f 'src/consistency.c' || echo '$(srcdir)/'`src/consistency.c
src/pq-consistency.obj: src/consistency.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(pq_CPPFLAGS) $(CPPFLAGS) $(pq_CFLAGS) $(CFLAGS) -MT src/pq-consistency.obj -MD -MP -MF src/$(DEPDIR)/pq-consistency.Tpo -c -o src/pq-consistency.obj `if test -f 'src/consistency.c'; then $(CYGPATH_W) 'src/consistency.c'; else $(CYGPATH_W) '$(srcdir)/src/consistency.c'; fi`
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) src/$(DEPDIR)/pq-consistency.Tpo src/$(DEPDIR)/pq-consistency.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='src/consistency.c' object='src/pq-consistency.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) $(pq_CPPFLAGS) $(CPPFLAGS) $(pq_CFLAGS) $(CFLAGS) -c -o src/pq-consistency.obj `if test -f 'src/consistency.c'; then $(CYGPATH_W) 'src/consistency.c'; else $(CYGPATH_W) '$(srcdir)/src/consistency.c'; fi`
src/pq-consistency_filter.o: src/consistency_filter.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(pq_CPPFLAGS) $(CPPFLAGS) $(pq_CFLAGS) $(CFLAGS) -MT src/pq-consistency_filter.o -MD -MP -MF src/$(DEPDIR)/pq-consistency_filter.Tpo -c -o src/pq-consistency_filter.o `test -f 'src/consistency_filter.c' || echo '$(srcdir)/'`src/consistency_filter.c
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) src/$(DEPDIR)/pq-consistency_filter.Tpo src/$(DEPDIR)/pq-consistency_filter.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='src/consistency_filter.c' object='src/pq-consistency_filter.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) $(pq_CPPFLAGS) $(CPPFLAGS) $(pq_CFLAGS) $(CFLAGS) -c -o src/pq-consistency_filter.o `test -f 'src/consistency_filter.c' || echo '$(srcdir)/'`src/consistency_filter.c
src/pq-consistency_filter.obj: src/consistency_filter.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(pq_CPPFLAGS) $(CPPFLAGS) $(pq_CFLAGS) $(CFLAGS) -MT src/pq-consistency_filter.obj -MD -MP -MF src/$(DEPDIR)/pq-consistency_filter.Tpo -c -o src/pq-consistency_filter.obj `if test -f 'src/consistency_filter.c'; then $(CYGPATH_W) 'src/consistency_filter.c'; else $(CYGPATH_W) '$(srcdir)/src/consistency_filter.c'; fi`
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) src/$(DEPDIR)/pq-consistency_filter.Tpo src/$(DEPDIR)/pq-consistency_filter.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='src/consistency_filter.c' object='src/pq-consistency_filter.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) $(pq_CPPFLAGS) $(CPPFLAGS) $(pq_CFLAGS) $(CFLAGS) -c -o src/pq-consistency_filter.obj `if test -f 'src/consistency_filter.c'; then $(CYGPATH_W) 'src/consistency_filter.c'; else $(CYGPATH_W) '$(srcdir)/src/consistency_filter.c'; fi`
src/pq-consistency_info.o: src/consistency_info.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(pq_CPPFLAGS) $(CPPFLAGS) $(pq_CFLAGS) $(CFLAGS) -MT src/pq-consistency_info.o -MD -MP -MF src/$(DEPDIR)/pq-consistency_info.Tpo -c -o src/pq-consistency_info.o `test -f 'src/consistency_info.c' || echo '$(srcdir)/'`src/consistency_info.c
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) src/$(DEPDIR)/pq-consistency_info.Tpo src/$(DEPDIR)/pq-consistency_info.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='src/consistency_info.c' object='src/pq-consistency_info.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) $(pq_CPPFLAGS) $(CPPFLAGS) $(pq_CFLAGS) $(CFLAGS) -c -o src/pq-consistency_info.o `test -f 'src/consistency_info.c' || echo '$(srcdir)/'`src/consistency_info.c
src/pq-consistency_info.obj: src/consistency_info.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(pq_CPPFLAGS) $(CPPFLAGS) $(pq_CFLAGS) $(CFLAGS) -MT src/pq-consistency_info.obj -MD -MP -MF src/$(DEPDIR)/pq-consistency_info.Tpo -c -o src/pq-consistency_info.obj `if test -f 'src/consistency_info.c'; then $(CYGPATH_W) 'src/consistency_info.c'; else $(CYGPATH_W) '$(srcdir)/src/consistency_info.c'; fi`
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) src/$(DEPDIR)/pq-consistency_info.Tpo src/$(DEPDIR)/pq-consistency_info.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='src/consistency_info.c' object='src/pq-consistency_info.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) $(pq_CPPFLAGS) $(CPPFLAGS) $(pq_CFLAGS) $(CFLAGS) -c -o src/pq-consistency_info.obj `if test -f 'src/consistency_info.c'; then $(CYGPATH_W) 'src/consistency_info.c'; else $(CYGPATH_W) '$(srcdir)/src/consistency_info.c'; fi`
src/pq-construct.o: src/construct.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(pq_CPPFLAGS) $(CPPFLAGS) $(pq_CFLAGS) $(CFLAGS) -MT src/pq-construct.o -MD -MP -MF src/$(DEPDIR)/pq-construct.Tpo -c -o src/pq-construct.o `test -f 'src/construct.c' || echo '$(srcdir)/'`src/construct.c
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) src/$(DEPDIR)/pq-construct.Tpo src/$(DEPDIR)/pq-construct.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='src/construct.c' object='src/pq-construct.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) $(pq_CPPFLAGS) $(CPPFLAGS) $(pq_CFLAGS) $(CFLAGS) -c -o src/pq-construct.o `test -f 'src/construct.c' || echo '$(srcdir)/'`src/construct.c
src/pq-construct.obj: src/construct.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(pq_CPPFLAGS) $(CPPFLAGS) $(pq_CFLAGS) $(CFLAGS) -MT src/pq-construct.obj -MD -MP -MF src/$(DEPDIR)/pq-construct.Tpo -c -o src/pq-construct.obj `if test -f 'src/construct.c'; then $(CYGPATH_W) 'src/construct.c'; else $(CYGPATH_W) '$(srcdir)/src/construct.c'; fi`
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) src/$(DEPDIR)/pq-construct.Tpo src/$(DEPDIR)/pq-construct.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='src/construct.c' object='src/pq-construct.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) $(pq_CPPFLAGS) $(CPPFLAGS) $(pq_CFLAGS) $(CFLAGS) -c -o src/pq-construct.obj `if test -f 'src/construct.c'; then $(CYGPATH_W) 'src/construct.c'; else $(CYGPATH_W) '$(srcdir)/src/construct.c'; fi`
src/pq-convert.o: src/convert.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(pq_CPPFLAGS) $(CPPFLAGS) $(pq_CFLAGS) $(CFLAGS) -MT src/pq-convert.o -MD -MP -MF src/$(DEPDIR)/pq-convert.Tpo -c -o src/pq-convert.o `test -f 'src/convert.c' || echo '$(srcdir)/'`src/convert.c
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) src/$(DEPDIR)/pq-convert.Tpo src/$(DEPDIR)/pq-convert.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='src/convert.c' object='src/pq-convert.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) $(pq_CPPFLAGS) $(CPPFLAGS) $(pq_CFLAGS) $(CFLAGS) -c -o src/pq-convert.o `test -f 'src/convert.c' || echo '$(srcdir)/'`src/convert.c
src/pq-convert.obj: src/convert.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(pq_CPPFLAGS) $(CPPFLAGS) $(pq_CFLAGS) $(CFLAGS) -MT src/pq-convert.obj -MD -MP -MF src/$(DEPDIR)/pq-convert.Tpo -c -o src/pq-convert.obj `if test -f 'src/convert.c'; then $(CYGPATH_W) 'src/convert.c'; else $(CYGPATH_W) '$(srcdir)/src/convert.c'; fi`
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) src/$(DEPDIR)/pq-convert.Tpo src/$(DEPDIR)/pq-convert.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='src/convert.c' object='src/pq-convert.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) $(pq_CPPFLAGS) $(CPPFLAGS) $(pq_CFLAGS) $(CFLAGS) -c -o src/pq-convert.obj `if test -f 'src/convert.c'; then $(CYGPATH_W) 'src/convert.c'; else $(CYGPATH_W) '$(srcdir)/src/convert.c'; fi`
src/pq-defaults_pga.o: src/defaults_pga.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(pq_CPPFLAGS) $(CPPFLAGS) $(pq_CFLAGS) $(CFLAGS) -MT src/pq-defaults_pga.o -MD -MP -MF src/$(DEPDIR)/pq-defaults_pga.Tpo -c -o src/pq-defaults_pga.o `test -f 'src/defaults_pga.c' || echo '$(srcdir)/'`src/defaults_pga.c
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) src/$(DEPDIR)/pq-defaults_pga.Tpo src/$(DEPDIR)/pq-defaults_pga.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='src/defaults_pga.c' object='src/pq-defaults_pga.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) $(pq_CPPFLAGS) $(CPPFLAGS) $(pq_CFLAGS) $(CFLAGS) -c -o src/pq-defaults_pga.o `test -f 'src/defaults_pga.c' || echo '$(srcdir)/'`src/defaults_pga.c
src/pq-defaults_pga.obj: src/defaults_pga.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(pq_CPPFLAGS) $(CPPFLAGS) $(pq_CFLAGS) $(CFLAGS) -MT src/pq-defaults_pga.obj -MD -MP -MF src/$(DEPDIR)/pq-defaults_pga.Tpo -c -o src/pq-defaults_pga.obj `if test -f 'src/defaults_pga.c'; then $(CYGPATH_W) 'src/defaults_pga.c'; else $(CYGPATH_W) '$(srcdir)/src/defaults_pga.c'; fi`
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) src/$(DEPDIR)/pq-defaults_pga.Tpo src/$(DEPDIR)/pq-defaults_pga.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='src/defaults_pga.c' object='src/pq-defaults_pga.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) $(pq_CPPFLAGS) $(CPPFLAGS) $(pq_CFLAGS) $(CFLAGS) -c -o src/pq-defaults_pga.obj `if test -f 'src/defaults_pga.c'; then $(CYGPATH_W) 'src/defaults_pga.c'; else $(CYGPATH_W) '$(srcdir)/src/defaults_pga.c'; fi`
src/pq-degree.o: src/degree.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(pq_CPPFLAGS) $(CPPFLAGS) $(pq_CFLAGS) $(CFLAGS) -MT src/pq-degree.o -MD -MP -MF src/$(DEPDIR)/pq-degree.Tpo -c -o src/pq-degree.o `test -f 'src/degree.c' || echo '$(srcdir)/'`src/degree.c
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) src/$(DEPDIR)/pq-degree.Tpo src/$(DEPDIR)/pq-degree.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='src/degree.c' object='src/pq-degree.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) $(pq_CPPFLAGS) $(CPPFLAGS) $(pq_CFLAGS) $(CFLAGS) -c -o src/pq-degree.o `test -f 'src/degree.c' || echo '$(srcdir)/'`src/degree.c
src/pq-degree.obj: src/degree.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(pq_CPPFLAGS) $(CPPFLAGS) $(pq_CFLAGS) $(CFLAGS) -MT src/pq-degree.obj -MD -MP -MF src/$(DEPDIR)/pq-degree.Tpo -c -o src/pq-degree.obj `if test -f 'src/degree.c'; then $(CYGPATH_W) 'src/degree.c'; else $(CYGPATH_W) '$(srcdir)/src/degree.c'; fi`
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) src/$(DEPDIR)/pq-degree.Tpo src/$(DEPDIR)/pq-degree.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='src/degree.c' object='src/pq-degree.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) $(pq_CPPFLAGS) $(CPPFLAGS) $(pq_CFLAGS) $(CFLAGS) -c -o src/pq-degree.obj `if test -f 'src/degree.c'; then $(CYGPATH_W) 'src/degree.c'; else $(CYGPATH_W) '$(srcdir)/src/degree.c'; fi`
src/pq-delete_tables.o: src/delete_tables.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(pq_CPPFLAGS) $(CPPFLAGS) $(pq_CFLAGS) $(CFLAGS) -MT src/pq-delete_tables.o -MD -MP -MF src/$(DEPDIR)/pq-delete_tables.Tpo -c -o src/pq-delete_tables.o `test -f 'src/delete_tables.c' || echo '$(srcdir)/'`src/delete_tables.c
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) src/$(DEPDIR)/pq-delete_tables.Tpo src/$(DEPDIR)/pq-delete_tables.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='src/delete_tables.c' object='src/pq-delete_tables.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) $(pq_CPPFLAGS) $(CPPFLAGS) $(pq_CFLAGS) $(CFLAGS) -c -o src/pq-delete_tables.o `test -f 'src/delete_tables.c' || echo '$(srcdir)/'`src/delete_tables.c
src/pq-delete_tables.obj: src/delete_tables.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(pq_CPPFLAGS) $(CPPFLAGS) $(pq_CFLAGS) $(CFLAGS) -MT src/pq-delete_tables.obj -MD -MP -MF src/$(DEPDIR)/pq-delete_tables.Tpo -c -o src/pq-delete_tables.obj `if test -f 'src/delete_tables.c'; then $(CYGPATH_W) 'src/delete_tables.c'; else $(CYGPATH_W) '$(srcdir)/src/delete_tables.c'; fi`
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) src/$(DEPDIR)/pq-delete_tables.Tpo src/$(DEPDIR)/pq-delete_tables.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='src/delete_tables.c' object='src/pq-delete_tables.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) $(pq_CPPFLAGS) $(CPPFLAGS) $(pq_CFLAGS) $(CFLAGS) -c -o src/pq-delete_tables.obj `if test -f 'src/delete_tables.c'; then $(CYGPATH_W) 'src/delete_tables.c'; else $(CYGPATH_W) '$(srcdir)/src/delete_tables.c'; fi`
src/pq-down_class.o: src/down_class.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(pq_CPPFLAGS) $(CPPFLAGS) $(pq_CFLAGS) $(CFLAGS) -MT src/pq-down_class.o -MD -MP -MF src/$(DEPDIR)/pq-down_class.Tpo -c -o src/pq-down_class.o `test -f 'src/down_class.c' || echo '$(srcdir)/'`src/down_class.c
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) src/$(DEPDIR)/pq-down_class.Tpo src/$(DEPDIR)/pq-down_class.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='src/down_class.c' object='src/pq-down_class.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) $(pq_CPPFLAGS) $(CPPFLAGS) $(pq_CFLAGS) $(CFLAGS) -c -o src/pq-down_class.o `test -f 'src/down_class.c' || echo '$(srcdir)/'`src/down_class.c
src/pq-down_class.obj: src/down_class.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(pq_CPPFLAGS) $(CPPFLAGS) $(pq_CFLAGS) $(CFLAGS) -MT src/pq-down_class.obj -MD -MP -MF src/$(DEPDIR)/pq-down_class.Tpo -c -o src/pq-down_class.obj `if test -f 'src/down_class.c'; then $(CYGPATH_W) 'src/down_class.c'; else $(CYGPATH_W) '$(srcdir)/src/down_class.c'; fi`
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) src/$(DEPDIR)/pq-down_class.Tpo src/$(DEPDIR)/pq-down_class.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='src/down_class.c' object='src/pq-down_class.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) $(pq_CPPFLAGS) $(CPPFLAGS) $(pq_CFLAGS) $(CFLAGS) -c -o src/pq-down_class.obj `if test -f 'src/down_class.c'; then $(CYGPATH_W) 'src/down_class.c'; else $(CYGPATH_W) '$(srcdir)/src/down_class.c'; fi`
src/pq-echelon.o: src/echelon.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(pq_CPPFLAGS) $(CPPFLAGS) $(pq_CFLAGS) $(CFLAGS) -MT src/pq-echelon.o -MD -MP -MF src/$(DEPDIR)/pq-echelon.Tpo -c -o src/pq-echelon.o `test -f 'src/echelon.c' || echo '$(srcdir)/'`src/echelon.c
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) src/$(DEPDIR)/pq-echelon.Tpo src/$(DEPDIR)/pq-echelon.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='src/echelon.c' object='src/pq-echelon.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) $(pq_CPPFLAGS) $(CPPFLAGS) $(pq_CFLAGS) $(CFLAGS) -c -o src/pq-echelon.o `test -f 'src/echelon.c' || echo '$(srcdir)/'`src/echelon.c
src/pq-echelon.obj: src/echelon.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(pq_CPPFLAGS) $(CPPFLAGS) $(pq_CFLAGS) $(CFLAGS) -MT src/pq-echelon.obj -MD -MP -MF src/$(DEPDIR)/pq-echelon.Tpo -c -o src/pq-echelon.obj `if test -f 'src/echelon.c'; then $(CYGPATH_W) 'src/echelon.c'; else $(CYGPATH_W) '$(srcdir)/src/echelon.c'; fi`
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) src/$(DEPDIR)/pq-echelon.Tpo src/$(DEPDIR)/pq-echelon.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='src/echelon.c' object='src/pq-echelon.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) $(pq_CPPFLAGS) $(CPPFLAGS) $(pq_CFLAGS) $(CFLAGS) -c -o src/pq-echelon.obj `if test -f 'src/echelon.c'; then $(CYGPATH_W) 'src/echelon.c'; else $(CYGPATH_W) '$(srcdir)/src/echelon.c'; fi`
src/pq-echelonise_matrix.o: src/echelonise_matrix.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(pq_CPPFLAGS) $(CPPFLAGS) $(pq_CFLAGS) $(CFLAGS) -MT src/pq-echelonise_matrix.o -MD -MP -MF src/$(DEPDIR)/pq-echelonise_matrix.Tpo -c -o src/pq-echelonise_matrix.o `test -f 'src/echelonise_matrix.c' || echo '$(srcdir)/'`src/echelonise_matrix.c
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) src/$(DEPDIR)/pq-echelonise_matrix.Tpo src/$(DEPDIR)/pq-echelonise_matrix.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='src/echelonise_matrix.c' object='src/pq-echelonise_matrix.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) $(pq_CPPFLAGS) $(CPPFLAGS) $(pq_CFLAGS) $(CFLAGS) -c -o src/pq-echelonise_matrix.o `test -f 'src/echelonise_matrix.c' || echo '$(srcdir)/'`src/echelonise_matrix.c
src/pq-echelonise_matrix.obj: src/echelonise_matrix.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(pq_CPPFLAGS) $(CPPFLAGS) $(pq_CFLAGS) $(CFLAGS) -MT src/pq-echelonise_matrix.obj -MD -MP -MF src/$(DEPDIR)/pq-echelonise_matrix.Tpo -c -o src/pq-echelonise_matrix.obj `if test -f 'src/echelonise_matrix.c'; then $(CYGPATH_W) 'src/echelonise_matrix.c'; else $(CYGPATH_W) '$(srcdir)/src/echelonise_matrix.c'; fi`
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) src/$(DEPDIR)/pq-echelonise_matrix.Tpo src/$(DEPDIR)/pq-echelonise_matrix.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='src/echelonise_matrix.c' object='src/pq-echelonise_matrix.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) $(pq_CPPFLAGS) $(CPPFLAGS) $(pq_CFLAGS) $(CFLAGS) -c -o src/pq-echelonise_matrix.obj `if test -f 'src/echelonise_matrix.c'; then $(CYGPATH_W) 'src/echelonise_matrix.c'; else $(CYGPATH_W) '$(srcdir)/src/echelonise_matrix.c'; fi`
src/pq-eliminate.o: src/eliminate.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(pq_CPPFLAGS) $(CPPFLAGS) $(pq_CFLAGS) $(CFLAGS) -MT src/pq-eliminate.o -MD -MP -MF src/$(DEPDIR)/pq-eliminate.Tpo -c -o src/pq-eliminate.o `test -f 'src/eliminate.c' || echo '$(srcdir)/'`src/eliminate.c
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) src/$(DEPDIR)/pq-eliminate.Tpo src/$(DEPDIR)/pq-eliminate.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='src/eliminate.c' object='src/pq-eliminate.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) $(pq_CPPFLAGS) $(CPPFLAGS) $(pq_CFLAGS) $(CFLAGS) -c -o src/pq-eliminate.o `test -f 'src/eliminate.c' || echo '$(srcdir)/'`src/eliminate.c
src/pq-eliminate.obj: src/eliminate.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(pq_CPPFLAGS) $(CPPFLAGS) $(pq_CFLAGS) $(CFLAGS) -MT src/pq-eliminate.obj -MD -MP -MF src/$(DEPDIR)/pq-eliminate.Tpo -c -o src/pq-eliminate.obj `if test -f 'src/eliminate.c'; then $(CYGPATH_W) 'src/eliminate.c'; else $(CYGPATH_W) '$(srcdir)/src/eliminate.c'; fi`
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) src/$(DEPDIR)/pq-eliminate.Tpo src/$(DEPDIR)/pq-eliminate.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='src/eliminate.c' object='src/pq-eliminate.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) $(pq_CPPFLAGS) $(CPPFLAGS) $(pq_CFLAGS) $(CFLAGS) -c -o src/pq-eliminate.obj `if test -f 'src/eliminate.c'; then $(CYGPATH_W) 'src/eliminate.c'; else $(CYGPATH_W) '$(srcdir)/src/eliminate.c'; fi`
src/pq-expand_commutator.o: src/expand_commutator.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(pq_CPPFLAGS) $(CPPFLAGS) $(pq_CFLAGS) $(CFLAGS) -MT src/pq-expand_commutator.o -MD -MP -MF src/$(DEPDIR)/pq-expand_commutator.Tpo -c -o src/pq-expand_commutator.o `test -f 'src/expand_commutator.c' || echo '$(srcdir)/'`src/expand_commutator.c
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) src/$(DEPDIR)/pq-expand_commutator.Tpo src/$(DEPDIR)/pq-expand_commutator.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='src/expand_commutator.c' object='src/pq-expand_commutator.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) $(pq_CPPFLAGS) $(CPPFLAGS) $(pq_CFLAGS) $(CFLAGS) -c -o src/pq-expand_commutator.o `test -f 'src/expand_commutator.c' || echo '$(srcdir)/'`src/expand_commutator.c
src/pq-expand_commutator.obj: src/expand_commutator.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(pq_CPPFLAGS) $(CPPFLAGS) $(pq_CFLAGS) $(CFLAGS) -MT src/pq-expand_commutator.obj -MD -MP -MF src/$(DEPDIR)/pq-expand_commutator.Tpo -c -o src/pq-expand_commutator.obj `if test -f 'src/expand_commutator.c'; then $(CYGPATH_W) 'src/expand_commutator.c'; else $(CYGPATH_W) '$(srcdir)/src/expand_commutator.c'; fi`
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) src/$(DEPDIR)/pq-expand_commutator.Tpo src/$(DEPDIR)/pq-expand_commutator.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='src/expand_commutator.c' object='src/pq-expand_commutator.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) $(pq_CPPFLAGS) $(CPPFLAGS) $(pq_CFLAGS) $(CFLAGS) -c -o src/pq-expand_commutator.obj `if test -f 'src/expand_commutator.c'; then $(CYGPATH_W) 'src/expand_commutator.c'; else $(CYGPATH_W) '$(srcdir)/src/expand_commutator.c'; fi`
src/pq-exponent_auts.o: src/exponent_auts.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(pq_CPPFLAGS) $(CPPFLAGS) $(pq_CFLAGS) $(CFLAGS) -MT src/pq-exponent_auts.o -MD -MP -MF src/$(DEPDIR)/pq-exponent_auts.Tpo -c -o src/pq-exponent_auts.o `test -f 'src/exponent_auts.c' || echo '$(srcdir)/'`src/exponent_auts.c
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) src/$(DEPDIR)/pq-exponent_auts.Tpo src/$(DEPDIR)/pq-exponent_auts.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='src/exponent_auts.c' object='src/pq-exponent_auts.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) $(pq_CPPFLAGS) $(CPPFLAGS) $(pq_CFLAGS) $(CFLAGS) -c -o src/pq-exponent_auts.o `test -f 'src/exponent_auts.c' || echo '$(srcdir)/'`src/exponent_auts.c
src/pq-exponent_auts.obj: src/exponent_auts.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(pq_CPPFLAGS) $(CPPFLAGS) $(pq_CFLAGS) $(CFLAGS) -MT src/pq-exponent_auts.obj -MD -MP -MF src/$(DEPDIR)/pq-exponent_auts.Tpo -c -o src/pq-exponent_auts.obj `if test -f 'src/exponent_auts.c'; then $(CYGPATH_W) 'src/exponent_auts.c'; else $(CYGPATH_W) '$(srcdir)/src/exponent_auts.c'; fi`
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) src/$(DEPDIR)/pq-exponent_auts.Tpo src/$(DEPDIR)/pq-exponent_auts.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='src/exponent_auts.c' object='src/pq-exponent_auts.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) $(pq_CPPFLAGS) $(CPPFLAGS) $(pq_CFLAGS) $(CFLAGS) -c -o src/pq-exponent_auts.obj `if test -f 'src/exponent_auts.c'; then $(CYGPATH_W) 'src/exponent_auts.c'; else $(CYGPATH_W) '$(srcdir)/src/exponent_auts.c'; fi`
src/pq-exponent_info.o: src/exponent_info.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(pq_CPPFLAGS) $(CPPFLAGS) $(pq_CFLAGS) $(CFLAGS) -MT src/pq-exponent_info.o -MD -MP -MF src/$(DEPDIR)/pq-exponent_info.Tpo -c -o src/pq-exponent_info.o `test -f 'src/exponent_info.c' || echo '$(srcdir)/'`src/exponent_info.c
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) src/$(DEPDIR)/pq-exponent_info.Tpo src/$(DEPDIR)/pq-exponent_info.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='src/exponent_info.c' object='src/pq-exponent_info.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) $(pq_CPPFLAGS) $(CPPFLAGS) $(pq_CFLAGS) $(CFLAGS) -c -o src/pq-exponent_info.o `test -f 'src/exponent_info.c' || echo '$(srcdir)/'`src/exponent_info.c
src/pq-exponent_info.obj: src/exponent_info.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(pq_CPPFLAGS) $(CPPFLAGS) $(pq_CFLAGS) $(CFLAGS) -MT src/pq-exponent_info.obj -MD -MP -MF src/$(DEPDIR)/pq-exponent_info.Tpo -c -o src/pq-exponent_info.obj `if test -f 'src/exponent_info.c'; then $(CYGPATH_W) 'src/exponent_info.c'; else $(CYGPATH_W) '$(srcdir)/src/exponent_info.c'; fi`
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) src/$(DEPDIR)/pq-exponent_info.Tpo src/$(DEPDIR)/pq-exponent_info.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='src/exponent_info.c' object='src/pq-exponent_info.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) $(pq_CPPFLAGS) $(CPPFLAGS) $(pq_CFLAGS) $(CFLAGS) -c -o src/pq-exponent_info.obj `if test -f 'src/exponent_info.c'; then $(CYGPATH_W) 'src/exponent_info.c'; else $(CYGPATH_W) '$(srcdir)/src/exponent_info.c'; fi`
src/pq-extend_automorphisms.o: src/extend_automorphisms.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(pq_CPPFLAGS) $(CPPFLAGS) $(pq_CFLAGS) $(CFLAGS) -MT src/pq-extend_automorphisms.o -MD -MP -MF src/$(DEPDIR)/pq-extend_automorphisms.Tpo -c -o src/pq-extend_automorphisms.o `test -f 'src/extend_automorphisms.c' || echo '$(srcdir)/'`src/extend_automorphisms.c
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) src/$(DEPDIR)/pq-extend_automorphisms.Tpo src/$(DEPDIR)/pq-extend_automorphisms.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='src/extend_automorphisms.c' object='src/pq-extend_automorphisms.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) $(pq_CPPFLAGS) $(CPPFLAGS) $(pq_CFLAGS) $(CFLAGS) -c -o src/pq-extend_automorphisms.o `test -f 'src/extend_automorphisms.c' || echo '$(srcdir)/'`src/extend_automorphisms.c
src/pq-extend_automorphisms.obj: src/extend_automorphisms.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(pq_CPPFLAGS) $(CPPFLAGS) $(pq_CFLAGS) $(CFLAGS) -MT src/pq-extend_automorphisms.obj -MD -MP -MF src/$(DEPDIR)/pq-extend_automorphisms.Tpo -c -o src/pq-extend_automorphisms.obj `if test -f 'src/extend_automorphisms.c'; then $(CYGPATH_W) 'src/extend_automorphisms.c'; else $(CYGPATH_W) '$(srcdir)/src/extend_automorphisms.c'; fi`
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) src/$(DEPDIR)/pq-extend_automorphisms.Tpo src/$(DEPDIR)/pq-extend_automorphisms.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='src/extend_automorphisms.c' object='src/pq-extend_automorphisms.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) $(pq_CPPFLAGS) $(CPPFLAGS) $(pq_CFLAGS) $(CFLAGS) -c -o src/pq-extend_automorphisms.obj `if test -f 'src/extend_automorphisms.c'; then $(CYGPATH_W) 'src/extend_automorphisms.c'; else $(CYGPATH_W) '$(srcdir)/src/extend_automorphisms.c'; fi`
src/pq-extend_matrix.o: src/extend_matrix.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(pq_CPPFLAGS) $(CPPFLAGS) $(pq_CFLAGS) $(CFLAGS) -MT src/pq-extend_matrix.o -MD -MP -MF src/$(DEPDIR)/pq-extend_matrix.Tpo -c -o src/pq-extend_matrix.o `test -f 'src/extend_matrix.c' || echo '$(srcdir)/'`src/extend_matrix.c
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) src/$(DEPDIR)/pq-extend_matrix.Tpo src/$(DEPDIR)/pq-extend_matrix.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='src/extend_matrix.c' object='src/pq-extend_matrix.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) $(pq_CPPFLAGS) $(CPPFLAGS) $(pq_CFLAGS) $(CFLAGS) -c -o src/pq-extend_matrix.o `test -f 'src/extend_matrix.c' || echo '$(srcdir)/'`src/extend_matrix.c
src/pq-extend_matrix.obj: src/extend_matrix.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(pq_CPPFLAGS) $(CPPFLAGS) $(pq_CFLAGS) $(CFLAGS) -MT src/pq-extend_matrix.obj -MD -MP -MF src/$(DEPDIR)/pq-extend_matrix.Tpo -c -o src/pq-extend_matrix.obj `if test -f 'src/extend_matrix.c'; then $(CYGPATH_W) 'src/extend_matrix.c'; else $(CYGPATH_W) '$(srcdir)/src/extend_matrix.c'; fi`
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) src/$(DEPDIR)/pq-extend_matrix.Tpo src/$(DEPDIR)/pq-extend_matrix.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='src/extend_matrix.c' object='src/pq-extend_matrix.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) $(pq_CPPFLAGS) $(CPPFLAGS) $(pq_CFLAGS) $(CFLAGS) -c -o src/pq-extend_matrix.obj `if test -f 'src/extend_matrix.c'; then $(CYGPATH_W) 'src/extend_matrix.c'; else $(CYGPATH_W) '$(srcdir)/src/extend_matrix.c'; fi`
src/pq-extend_representation.o: src/extend_representation.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(pq_CPPFLAGS) $(CPPFLAGS) $(pq_CFLAGS) $(CFLAGS) -MT src/pq-extend_representation.o -MD -MP -MF src/$(DEPDIR)/pq-extend_representation.Tpo -c -o src/pq-extend_representation.o `test -f 'src/extend_representation.c' || echo '$(srcdir)/'`src/extend_representation.c
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) src/$(DEPDIR)/pq-extend_representation.Tpo src/$(DEPDIR)/pq-extend_representation.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='src/extend_representation.c' object='src/pq-extend_representation.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) $(pq_CPPFLAGS) $(CPPFLAGS) $(pq_CFLAGS) $(CFLAGS) -c -o src/pq-extend_representation.o `test -f 'src/extend_representation.c' || echo '$(srcdir)/'`src/extend_representation.c
src/pq-extend_representation.obj: src/extend_representation.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(pq_CPPFLAGS) $(CPPFLAGS) $(pq_CFLAGS) $(CFLAGS) -MT src/pq-extend_representation.obj -MD -MP -MF src/$(DEPDIR)/pq-extend_representation.Tpo -c -o src/pq-extend_representation.obj `if test -f 'src/extend_representation.c'; then $(CYGPATH_W) 'src/extend_representation.c'; else $(CYGPATH_W) '$(srcdir)/src/extend_representation.c'; fi`
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) src/$(DEPDIR)/pq-extend_representation.Tpo src/$(DEPDIR)/pq-extend_representation.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='src/extend_representation.c' object='src/pq-extend_representation.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) $(pq_CPPFLAGS) $(CPPFLAGS) $(pq_CFLAGS) $(CFLAGS) -c -o src/pq-extend_representation.obj `if test -f 'src/extend_representation.c'; then $(CYGPATH_W) 'src/extend_representation.c'; else $(CYGPATH_W) '$(srcdir)/src/extend_representation.c'; fi`
src/pq-extra_relations.o: src/extra_relations.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(pq_CPPFLAGS) $(CPPFLAGS) $(pq_CFLAGS) $(CFLAGS) -MT src/pq-extra_relations.o -MD -MP -MF src/$(DEPDIR)/pq-extra_relations.Tpo -c -o src/pq-extra_relations.o `test -f 'src/extra_relations.c' || echo '$(srcdir)/'`src/extra_relations.c
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) src/$(DEPDIR)/pq-extra_relations.Tpo src/$(DEPDIR)/pq-extra_relations.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='src/extra_relations.c' object='src/pq-extra_relations.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) $(pq_CPPFLAGS) $(CPPFLAGS) $(pq_CFLAGS) $(CFLAGS) -c -o src/pq-extra_relations.o `test -f 'src/extra_relations.c' || echo '$(srcdir)/'`src/extra_relations.c
src/pq-extra_relations.obj: src/extra_relations.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(pq_CPPFLAGS) $(CPPFLAGS) $(pq_CFLAGS) $(CFLAGS) -MT src/pq-extra_relations.obj -MD -MP -MF src/$(DEPDIR)/pq-extra_relations.Tpo -c -o src/pq-extra_relations.obj `if test -f 'src/extra_relations.c'; then $(CYGPATH_W) 'src/extra_relations.c'; else $(CYGPATH_W) '$(srcdir)/src/extra_relations.c'; fi`
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) src/$(DEPDIR)/pq-extra_relations.Tpo src/$(DEPDIR)/pq-extra_relations.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='src/extra_relations.c' object='src/pq-extra_relations.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) $(pq_CPPFLAGS) $(CPPFLAGS) $(pq_CFLAGS) $(CFLAGS) -c -o src/pq-extra_relations.obj `if test -f 'src/extra_relations.c'; then $(CYGPATH_W) 'src/extra_relations.c'; else $(CYGPATH_W) '$(srcdir)/src/extra_relations.c'; fi`
src/pq-find_allowable_subgroup.o: src/find_allowable_subgroup.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(pq_CPPFLAGS) $(CPPFLAGS) $(pq_CFLAGS) $(CFLAGS) -MT src/pq-find_allowable_subgroup.o -MD -MP -MF src/$(DEPDIR)/pq-find_allowable_subgroup.Tpo -c -o src/pq-find_allowable_subgroup.o `test -f 'src/find_allowable_subgroup.c' || echo '$(srcdir)/'`src/find_allowable_subgroup.c
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) src/$(DEPDIR)/pq-find_allowable_subgroup.Tpo src/$(DEPDIR)/pq-find_allowable_subgroup.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='src/find_allowable_subgroup.c' object='src/pq-find_allowable_subgroup.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) $(pq_CPPFLAGS) $(CPPFLAGS) $(pq_CFLAGS) $(CFLAGS) -c -o src/pq-find_allowable_subgroup.o `test -f 'src/find_allowable_subgroup.c' || echo '$(srcdir)/'`src/find_allowable_subgroup.c
src/pq-find_allowable_subgroup.obj: src/find_allowable_subgroup.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(pq_CPPFLAGS) $(CPPFLAGS) $(pq_CFLAGS) $(CFLAGS) -MT src/pq-find_allowable_subgroup.obj -MD -MP -MF src/$(DEPDIR)/pq-find_allowable_subgroup.Tpo -c -o src/pq-find_allowable_subgroup.obj `if test -f 'src/find_allowable_subgroup.c'; then $(CYGPATH_W) 'src/find_allowable_subgroup.c'; else $(CYGPATH_W) '$(srcdir)/src/find_allowable_subgroup.c'; fi`
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) src/$(DEPDIR)/pq-find_allowable_subgroup.Tpo src/$(DEPDIR)/pq-find_allowable_subgroup.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='src/find_allowable_subgroup.c' object='src/pq-find_allowable_subgroup.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) $(pq_CPPFLAGS) $(CPPFLAGS) $(pq_CFLAGS) $(CFLAGS) -c -o src/pq-find_allowable_subgroup.obj `if test -f 'src/find_allowable_subgroup.c'; then $(CYGPATH_W) 'src/find_allowable_subgroup.c'; else $(CYGPATH_W) '$(srcdir)/src/find_allowable_subgroup.c'; fi`
src/pq-find_image.o: src/find_image.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(pq_CPPFLAGS) $(CPPFLAGS) $(pq_CFLAGS) $(CFLAGS) -MT src/pq-find_image.o -MD -MP -MF src/$(DEPDIR)/pq-find_image.Tpo -c -o src/pq-find_image.o `test -f 'src/find_image.c' || echo '$(srcdir)/'`src/find_image.c
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) src/$(DEPDIR)/pq-find_image.Tpo src/$(DEPDIR)/pq-find_image.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='src/find_image.c' object='src/pq-find_image.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) $(pq_CPPFLAGS) $(CPPFLAGS) $(pq_CFLAGS) $(CFLAGS) -c -o src/pq-find_image.o `test -f 'src/find_image.c' || echo '$(srcdir)/'`src/find_image.c
src/pq-find_image.obj: src/find_image.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(pq_CPPFLAGS) $(CPPFLAGS) $(pq_CFLAGS) $(CFLAGS) -MT src/pq-find_image.obj -MD -MP -MF src/$(DEPDIR)/pq-find_image.Tpo -c -o src/pq-find_image.obj `if test -f 'src/find_image.c'; then $(CYGPATH_W) 'src/find_image.c'; else $(CYGPATH_W) '$(srcdir)/src/find_image.c'; fi`
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) src/$(DEPDIR)/pq-find_image.Tpo src/$(DEPDIR)/pq-find_image.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='src/find_image.c' object='src/pq-find_image.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) $(pq_CPPFLAGS) $(CPPFLAGS) $(pq_CFLAGS) $(CFLAGS) -c -o src/pq-find_image.obj `if test -f 'src/find_image.c'; then $(CYGPATH_W) 'src/find_image.c'; else $(CYGPATH_W) '$(srcdir)/src/find_image.c'; fi`
src/pq-find_permutation.o: src/find_permutation.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(pq_CPPFLAGS) $(CPPFLAGS) $(pq_CFLAGS) $(CFLAGS) -MT src/pq-find_permutation.o -MD -MP -MF src/$(DEPDIR)/pq-find_permutation.Tpo -c -o src/pq-find_permutation.o `test -f 'src/find_permutation.c' || echo '$(srcdir)/'`src/find_permutation.c
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) src/$(DEPDIR)/pq-find_permutation.Tpo src/$(DEPDIR)/pq-find_permutation.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='src/find_permutation.c' object='src/pq-find_permutation.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) $(pq_CPPFLAGS) $(CPPFLAGS) $(pq_CFLAGS) $(CFLAGS) -c -o src/pq-find_permutation.o `test -f 'src/find_permutation.c' || echo '$(srcdir)/'`src/find_permutation.c
src/pq-find_permutation.obj: src/find_permutation.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(pq_CPPFLAGS) $(CPPFLAGS) $(pq_CFLAGS) $(CFLAGS) -MT src/pq-find_permutation.obj -MD -MP -MF src/$(DEPDIR)/pq-find_permutation.Tpo -c -o src/pq-find_permutation.obj `if test -f 'src/find_permutation.c'; then $(CYGPATH_W) 'src/find_permutation.c'; else $(CYGPATH_W) '$(srcdir)/src/find_permutation.c'; fi`
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) src/$(DEPDIR)/pq-find_permutation.Tpo src/$(DEPDIR)/pq-find_permutation.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='src/find_permutation.c' object='src/pq-find_permutation.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) $(pq_CPPFLAGS) $(CPPFLAGS) $(pq_CFLAGS) $(CFLAGS) -c -o src/pq-find_permutation.obj `if test -f 'src/find_permutation.c'; then $(CYGPATH_W) 'src/find_permutation.c'; else $(CYGPATH_W) '$(srcdir)/src/find_permutation.c'; fi`
src/pq-formula.o: src/formula.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(pq_CPPFLAGS) $(CPPFLAGS) $(pq_CFLAGS) $(CFLAGS) -MT src/pq-formula.o -MD -MP -MF src/$(DEPDIR)/pq-formula.Tpo -c -o src/pq-formula.o `test -f 'src/formula.c' || echo '$(srcdir)/'`src/formula.c
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) src/$(DEPDIR)/pq-formula.Tpo src/$(DEPDIR)/pq-formula.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='src/formula.c' object='src/pq-formula.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) $(pq_CPPFLAGS) $(CPPFLAGS) $(pq_CFLAGS) $(CFLAGS) -c -o src/pq-formula.o `test -f 'src/formula.c' || echo '$(srcdir)/'`src/formula.c
src/pq-formula.obj: src/formula.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(pq_CPPFLAGS) $(CPPFLAGS) $(pq_CFLAGS) $(CFLAGS) -MT src/pq-formula.obj -MD -MP -MF src/$(DEPDIR)/pq-formula.Tpo -c -o src/pq-formula.obj `if test -f 'src/formula.c'; then $(CYGPATH_W) 'src/formula.c'; else $(CYGPATH_W) '$(srcdir)/src/formula.c'; fi`
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) src/$(DEPDIR)/pq-formula.Tpo src/$(DEPDIR)/pq-formula.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='src/formula.c' object='src/pq-formula.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) $(pq_CPPFLAGS) $(CPPFLAGS) $(pq_CFLAGS) $(CFLAGS) -c -o src/pq-formula.obj `if test -f 'src/formula.c'; then $(CYGPATH_W) 'src/formula.c'; else $(CYGPATH_W) '$(srcdir)/src/formula.c'; fi`
src/pq-generator_definition.o: src/generator_definition.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(pq_CPPFLAGS) $(CPPFLAGS) $(pq_CFLAGS) $(CFLAGS) -MT src/pq-generator_definition.o -MD -MP -MF src/$(DEPDIR)/pq-generator_definition.Tpo -c -o src/pq-generator_definition.o `test -f 'src/generator_definition.c' || echo '$(srcdir)/'`src/generator_definition.c
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) src/$(DEPDIR)/pq-generator_definition.Tpo src/$(DEPDIR)/pq-generator_definition.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='src/generator_definition.c' object='src/pq-generator_definition.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) $(pq_CPPFLAGS) $(CPPFLAGS) $(pq_CFLAGS) $(CFLAGS) -c -o src/pq-generator_definition.o `test -f 'src/generator_definition.c' || echo '$(srcdir)/'`src/generator_definition.c
src/pq-generator_definition.obj: src/generator_definition.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(pq_CPPFLAGS) $(CPPFLAGS) $(pq_CFLAGS) $(CFLAGS) -MT src/pq-generator_definition.obj -MD -MP -MF src/$(DEPDIR)/pq-generator_definition.Tpo -c -o src/pq-generator_definition.obj `if test -f 'src/generator_definition.c'; then $(CYGPATH_W) 'src/generator_definition.c'; else $(CYGPATH_W) '$(srcdir)/src/generator_definition.c'; fi`
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) src/$(DEPDIR)/pq-generator_definition.Tpo src/$(DEPDIR)/pq-generator_definition.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='src/generator_definition.c' object='src/pq-generator_definition.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) $(pq_CPPFLAGS) $(CPPFLAGS) $(pq_CFLAGS) $(CFLAGS) -c -o src/pq-generator_definition.obj `if test -f 'src/generator_definition.c'; then $(CYGPATH_W) 'src/generator_definition.c'; else $(CYGPATH_W) '$(srcdir)/src/generator_definition.c'; fi`
src/pq-get_definition_sets.o: src/get_definition_sets.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(pq_CPPFLAGS) $(CPPFLAGS) $(pq_CFLAGS) $(CFLAGS) -MT src/pq-get_definition_sets.o -MD -MP -MF src/$(DEPDIR)/pq-get_definition_sets.Tpo -c -o src/pq-get_definition_sets.o `test -f 'src/get_definition_sets.c' || echo '$(srcdir)/'`src/get_definition_sets.c
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) src/$(DEPDIR)/pq-get_definition_sets.Tpo src/$(DEPDIR)/pq-get_definition_sets.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='src/get_definition_sets.c' object='src/pq-get_definition_sets.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) $(pq_CPPFLAGS) $(CPPFLAGS) $(pq_CFLAGS) $(CFLAGS) -c -o src/pq-get_definition_sets.o `test -f 'src/get_definition_sets.c' || echo '$(srcdir)/'`src/get_definition_sets.c
src/pq-get_definition_sets.obj: src/get_definition_sets.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(pq_CPPFLAGS) $(CPPFLAGS) $(pq_CFLAGS) $(CFLAGS) -MT src/pq-get_definition_sets.obj -MD -MP -MF src/$(DEPDIR)/pq-get_definition_sets.Tpo -c -o src/pq-get_definition_sets.obj `if test -f 'src/get_definition_sets.c'; then $(CYGPATH_W) 'src/get_definition_sets.c'; else $(CYGPATH_W) '$(srcdir)/src/get_definition_sets.c'; fi`
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) src/$(DEPDIR)/pq-get_definition_sets.Tpo src/$(DEPDIR)/pq-get_definition_sets.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='src/get_definition_sets.c' object='src/pq-get_definition_sets.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) $(pq_CPPFLAGS) $(CPPFLAGS) $(pq_CFLAGS) $(CFLAGS) -c -o src/pq-get_definition_sets.obj `if test -f 'src/get_definition_sets.c'; then $(CYGPATH_W) 'src/get_definition_sets.c'; else $(CYGPATH_W) '$(srcdir)/src/get_definition_sets.c'; fi`
src/pq-identity.o: src/identity.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(pq_CPPFLAGS) $(CPPFLAGS) $(pq_CFLAGS) $(CFLAGS) -MT src/pq-identity.o -MD -MP -MF src/$(DEPDIR)/pq-identity.Tpo -c -o src/pq-identity.o `test -f 'src/identity.c' || echo '$(srcdir)/'`src/identity.c
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) src/$(DEPDIR)/pq-identity.Tpo src/$(DEPDIR)/pq-identity.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='src/identity.c' object='src/pq-identity.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) $(pq_CPPFLAGS) $(CPPFLAGS) $(pq_CFLAGS) $(CFLAGS) -c -o src/pq-identity.o `test -f 'src/identity.c' || echo '$(srcdir)/'`src/identity.c
src/pq-identity.obj: src/identity.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(pq_CPPFLAGS) $(CPPFLAGS) $(pq_CFLAGS) $(CFLAGS) -MT src/pq-identity.obj -MD -MP -MF src/$(DEPDIR)/pq-identity.Tpo -c -o src/pq-identity.obj `if test -f 'src/identity.c'; then $(CYGPATH_W) 'src/identity.c'; else $(CYGPATH_W) '$(srcdir)/src/identity.c'; fi`
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) src/$(DEPDIR)/pq-identity.Tpo src/$(DEPDIR)/pq-identity.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='src/identity.c' object='src/pq-identity.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) $(pq_CPPFLAGS) $(CPPFLAGS) $(pq_CFLAGS) $(CFLAGS) -c -o src/pq-identity.obj `if test -f 'src/identity.c'; then $(CYGPATH_W) 'src/identity.c'; else $(CYGPATH_W) '$(srcdir)/src/identity.c'; fi`
src/pq-immediate_descendant.o: src/immediate_descendant.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(pq_CPPFLAGS) $(CPPFLAGS) $(pq_CFLAGS) $(CFLAGS) -MT src/pq-immediate_descendant.o -MD -MP -MF src/$(DEPDIR)/pq-immediate_descendant.Tpo -c -o src/pq-immediate_descendant.o `test -f 'src/immediate_descendant.c' || echo '$(srcdir)/'`src/immediate_descendant.c
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) src/$(DEPDIR)/pq-immediate_descendant.Tpo src/$(DEPDIR)/pq-immediate_descendant.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='src/immediate_descendant.c' object='src/pq-immediate_descendant.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) $(pq_CPPFLAGS) $(CPPFLAGS) $(pq_CFLAGS) $(CFLAGS) -c -o src/pq-immediate_descendant.o `test -f 'src/immediate_descendant.c' || echo '$(srcdir)/'`src/immediate_descendant.c
src/pq-immediate_descendant.obj: src/immediate_descendant.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(pq_CPPFLAGS) $(CPPFLAGS) $(pq_CFLAGS) $(CFLAGS) -MT src/pq-immediate_descendant.obj -MD -MP -MF src/$(DEPDIR)/pq-immediate_descendant.Tpo -c -o src/pq-immediate_descendant.obj `if test -f 'src/immediate_descendant.c'; then $(CYGPATH_W) 'src/immediate_descendant.c'; else $(CYGPATH_W) '$(srcdir)/src/immediate_descendant.c'; fi`
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) src/$(DEPDIR)/pq-immediate_descendant.Tpo src/$(DEPDIR)/pq-immediate_descendant.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='src/immediate_descendant.c' object='src/pq-immediate_descendant.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) $(pq_CPPFLAGS) $(CPPFLAGS) $(pq_CFLAGS) $(CFLAGS) -c -o src/pq-immediate_descendant.obj `if test -f 'src/immediate_descendant.c'; then $(CYGPATH_W) 'src/immediate_descendant.c'; else $(CYGPATH_W) '$(srcdir)/src/immediate_descendant.c'; fi`
src/pq-initialise_pcp.o: src/initialise_pcp.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(pq_CPPFLAGS) $(CPPFLAGS) $(pq_CFLAGS) $(CFLAGS) -MT src/pq-initialise_pcp.o -MD -MP -MF src/$(DEPDIR)/pq-initialise_pcp.Tpo -c -o src/pq-initialise_pcp.o `test -f 'src/initialise_pcp.c' || echo '$(srcdir)/'`src/initialise_pcp.c
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) src/$(DEPDIR)/pq-initialise_pcp.Tpo src/$(DEPDIR)/pq-initialise_pcp.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='src/initialise_pcp.c' object='src/pq-initialise_pcp.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) $(pq_CPPFLAGS) $(CPPFLAGS) $(pq_CFLAGS) $(CFLAGS) -c -o src/pq-initialise_pcp.o `test -f 'src/initialise_pcp.c' || echo '$(srcdir)/'`src/initialise_pcp.c
src/pq-initialise_pcp.obj: src/initialise_pcp.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(pq_CPPFLAGS) $(CPPFLAGS) $(pq_CFLAGS) $(CFLAGS) -MT src/pq-initialise_pcp.obj -MD -MP -MF src/$(DEPDIR)/pq-initialise_pcp.Tpo -c -o src/pq-initialise_pcp.obj `if test -f 'src/initialise_pcp.c'; then $(CYGPATH_W) 'src/initialise_pcp.c'; else $(CYGPATH_W) '$(srcdir)/src/initialise_pcp.c'; fi`
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) src/$(DEPDIR)/pq-initialise_pcp.Tpo src/$(DEPDIR)/pq-initialise_pcp.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='src/initialise_pcp.c' object='src/pq-initialise_pcp.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) $(pq_CPPFLAGS) $(CPPFLAGS) $(pq_CFLAGS) $(CFLAGS) -c -o src/pq-initialise_pcp.obj `if test -f 'src/initialise_pcp.c'; then $(CYGPATH_W) 'src/initialise_pcp.c'; else $(CYGPATH_W) '$(srcdir)/src/initialise_pcp.c'; fi`
src/pq-initialise_pga.o: src/initialise_pga.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(pq_CPPFLAGS) $(CPPFLAGS) $(pq_CFLAGS) $(CFLAGS) -MT src/pq-initialise_pga.o -MD -MP -MF src/$(DEPDIR)/pq-initialise_pga.Tpo -c -o src/pq-initialise_pga.o `test -f 'src/initialise_pga.c' || echo '$(srcdir)/'`src/initialise_pga.c
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) src/$(DEPDIR)/pq-initialise_pga.Tpo src/$(DEPDIR)/pq-initialise_pga.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='src/initialise_pga.c' object='src/pq-initialise_pga.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) $(pq_CPPFLAGS) $(CPPFLAGS) $(pq_CFLAGS) $(CFLAGS) -c -o src/pq-initialise_pga.o `test -f 'src/initialise_pga.c' || echo '$(srcdir)/'`src/initialise_pga.c
src/pq-initialise_pga.obj: src/initialise_pga.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(pq_CPPFLAGS) $(CPPFLAGS) $(pq_CFLAGS) $(CFLAGS) -MT src/pq-initialise_pga.obj -MD -MP -MF src/$(DEPDIR)/pq-initialise_pga.Tpo -c -o src/pq-initialise_pga.obj `if test -f 'src/initialise_pga.c'; then $(CYGPATH_W) 'src/initialise_pga.c'; else $(CYGPATH_W) '$(srcdir)/src/initialise_pga.c'; fi`
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) src/$(DEPDIR)/pq-initialise_pga.Tpo src/$(DEPDIR)/pq-initialise_pga.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='src/initialise_pga.c' object='src/pq-initialise_pga.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) $(pq_CPPFLAGS) $(CPPFLAGS) $(pq_CFLAGS) $(CFLAGS) -c -o src/pq-initialise_pga.obj `if test -f 'src/initialise_pga.c'; then $(CYGPATH_W) 'src/initialise_pga.c'; else $(CYGPATH_W) '$(srcdir)/src/initialise_pga.c'; fi`
src/pq-insoluble_orbits.o: src/insoluble_orbits.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(pq_CPPFLAGS) $(CPPFLAGS) $(pq_CFLAGS) $(CFLAGS) -MT src/pq-insoluble_orbits.o -MD -MP -MF src/$(DEPDIR)/pq-insoluble_orbits.Tpo -c -o src/pq-insoluble_orbits.o `test -f 'src/insoluble_orbits.c' || echo '$(srcdir)/'`src/insoluble_orbits.c
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) src/$(DEPDIR)/pq-insoluble_orbits.Tpo src/$(DEPDIR)/pq-insoluble_orbits.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='src/insoluble_orbits.c' object='src/pq-insoluble_orbits.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) $(pq_CPPFLAGS) $(CPPFLAGS) $(pq_CFLAGS) $(CFLAGS) -c -o src/pq-insoluble_orbits.o `test -f 'src/insoluble_orbits.c' || echo '$(srcdir)/'`src/insoluble_orbits.c
src/pq-insoluble_orbits.obj: src/insoluble_orbits.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(pq_CPPFLAGS) $(CPPFLAGS) $(pq_CFLAGS) $(CFLAGS) -MT src/pq-insoluble_orbits.obj -MD -MP -MF src/$(DEPDIR)/pq-insoluble_orbits.Tpo -c -o src/pq-insoluble_orbits.obj `if test -f 'src/insoluble_orbits.c'; then $(CYGPATH_W) 'src/insoluble_orbits.c'; else $(CYGPATH_W) '$(srcdir)/src/insoluble_orbits.c'; fi`
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) src/$(DEPDIR)/pq-insoluble_orbits.Tpo src/$(DEPDIR)/pq-insoluble_orbits.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='src/insoluble_orbits.c' object='src/pq-insoluble_orbits.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) $(pq_CPPFLAGS) $(CPPFLAGS) $(pq_CFLAGS) $(CFLAGS) -c -o src/pq-insoluble_orbits.obj `if test -f 'src/insoluble_orbits.c'; then $(CYGPATH_W) 'src/insoluble_orbits.c'; else $(CYGPATH_W) '$(srcdir)/src/insoluble_orbits.c'; fi`
src/pq-int_power.o: src/int_power.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(pq_CPPFLAGS) $(CPPFLAGS) $(pq_CFLAGS) $(CFLAGS) -MT src/pq-int_power.o -MD -MP -MF src/$(DEPDIR)/pq-int_power.Tpo -c -o src/pq-int_power.o `test -f 'src/int_power.c' || echo '$(srcdir)/'`src/int_power.c
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) src/$(DEPDIR)/pq-int_power.Tpo src/$(DEPDIR)/pq-int_power.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='src/int_power.c' object='src/pq-int_power.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) $(pq_CPPFLAGS) $(CPPFLAGS) $(pq_CFLAGS) $(CFLAGS) -c -o src/pq-int_power.o `test -f 'src/int_power.c' || echo '$(srcdir)/'`src/int_power.c
src/pq-int_power.obj: src/int_power.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(pq_CPPFLAGS) $(CPPFLAGS) $(pq_CFLAGS) $(CFLAGS) -MT src/pq-int_power.obj -MD -MP -MF src/$(DEPDIR)/pq-int_power.Tpo -c -o src/pq-int_power.obj `if test -f 'src/int_power.c'; then $(CYGPATH_W) 'src/int_power.c'; else $(CYGPATH_W) '$(srcdir)/src/int_power.c'; fi`
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) src/$(DEPDIR)/pq-int_power.Tpo src/$(DEPDIR)/pq-int_power.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='src/int_power.c' object='src/pq-int_power.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) $(pq_CPPFLAGS) $(CPPFLAGS) $(pq_CFLAGS) $(CFLAGS) -c -o src/pq-int_power.obj `if test -f 'src/int_power.c'; then $(CYGPATH_W) 'src/int_power.c'; else $(CYGPATH_W) '$(srcdir)/src/int_power.c'; fi`
src/pq-interactive_pga.o: src/interactive_pga.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(pq_CPPFLAGS) $(CPPFLAGS) $(pq_CFLAGS) $(CFLAGS) -MT src/pq-interactive_pga.o -MD -MP -MF src/$(DEPDIR)/pq-interactive_pga.Tpo -c -o src/pq-interactive_pga.o `test -f 'src/interactive_pga.c' || echo '$(srcdir)/'`src/interactive_pga.c
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) src/$(DEPDIR)/pq-interactive_pga.Tpo src/$(DEPDIR)/pq-interactive_pga.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='src/interactive_pga.c' object='src/pq-interactive_pga.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) $(pq_CPPFLAGS) $(CPPFLAGS) $(pq_CFLAGS) $(CFLAGS) -c -o src/pq-interactive_pga.o `test -f 'src/interactive_pga.c' || echo '$(srcdir)/'`src/interactive_pga.c
src/pq-interactive_pga.obj: src/interactive_pga.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(pq_CPPFLAGS) $(CPPFLAGS) $(pq_CFLAGS) $(CFLAGS) -MT src/pq-interactive_pga.obj -MD -MP -MF src/$(DEPDIR)/pq-interactive_pga.Tpo -c -o src/pq-interactive_pga.obj `if test -f 'src/interactive_pga.c'; then $(CYGPATH_W) 'src/interactive_pga.c'; else $(CYGPATH_W) '$(srcdir)/src/interactive_pga.c'; fi`
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) src/$(DEPDIR)/pq-interactive_pga.Tpo src/$(DEPDIR)/pq-interactive_pga.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='src/interactive_pga.c' object='src/pq-interactive_pga.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) $(pq_CPPFLAGS) $(CPPFLAGS) $(pq_CFLAGS) $(CFLAGS) -c -o src/pq-interactive_pga.obj `if test -f 'src/interactive_pga.c'; then $(CYGPATH_W) 'src/interactive_pga.c'; else $(CYGPATH_W) '$(srcdir)/src/interactive_pga.c'; fi`
src/pq-interactive_pq.o: src/interactive_pq.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(pq_CPPFLAGS) $(CPPFLAGS) $(pq_CFLAGS) $(CFLAGS) -MT src/pq-interactive_pq.o -MD -MP -MF src/$(DEPDIR)/pq-interactive_pq.Tpo -c -o src/pq-interactive_pq.o `test -f 'src/interactive_pq.c' || echo '$(srcdir)/'`src/interactive_pq.c
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) src/$(DEPDIR)/pq-interactive_pq.Tpo src/$(DEPDIR)/pq-interactive_pq.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='src/interactive_pq.c' object='src/pq-interactive_pq.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) $(pq_CPPFLAGS) $(CPPFLAGS) $(pq_CFLAGS) $(CFLAGS) -c -o src/pq-interactive_pq.o `test -f 'src/interactive_pq.c' || echo '$(srcdir)/'`src/interactive_pq.c
src/pq-interactive_pq.obj: src/interactive_pq.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(pq_CPPFLAGS) $(CPPFLAGS) $(pq_CFLAGS) $(CFLAGS) -MT src/pq-interactive_pq.obj -MD -MP -MF src/$(DEPDIR)/pq-interactive_pq.Tpo -c -o src/pq-interactive_pq.obj `if test -f 'src/interactive_pq.c'; then $(CYGPATH_W) 'src/interactive_pq.c'; else $(CYGPATH_W) '$(srcdir)/src/interactive_pq.c'; fi`
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) src/$(DEPDIR)/pq-interactive_pq.Tpo src/$(DEPDIR)/pq-interactive_pq.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='src/interactive_pq.c' object='src/pq-interactive_pq.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) $(pq_CPPFLAGS) $(CPPFLAGS) $(pq_CFLAGS) $(CFLAGS) -c -o src/pq-interactive_pq.obj `if test -f 'src/interactive_pq.c'; then $(CYGPATH_W) 'src/interactive_pq.c'; else $(CYGPATH_W) '$(srcdir)/src/interactive_pq.c'; fi`
src/pq-invert.o: src/invert.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(pq_CPPFLAGS) $(CPPFLAGS) $(pq_CFLAGS) $(CFLAGS) -MT src/pq-invert.o -MD -MP -MF src/$(DEPDIR)/pq-invert.Tpo -c -o src/pq-invert.o `test -f 'src/invert.c' || echo '$(srcdir)/'`src/invert.c
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) src/$(DEPDIR)/pq-invert.Tpo src/$(DEPDIR)/pq-invert.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='src/invert.c' object='src/pq-invert.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) $(pq_CPPFLAGS) $(CPPFLAGS) $(pq_CFLAGS) $(CFLAGS) -c -o src/pq-invert.o `test -f 'src/invert.c' || echo '$(srcdir)/'`src/invert.c
src/pq-invert.obj: src/invert.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(pq_CPPFLAGS) $(CPPFLAGS) $(pq_CFLAGS) $(CFLAGS) -MT src/pq-invert.obj -MD -MP -MF src/$(DEPDIR)/pq-invert.Tpo -c -o src/pq-invert.obj `if test -f 'src/invert.c'; then $(CYGPATH_W) 'src/invert.c'; else $(CYGPATH_W) '$(srcdir)/src/invert.c'; fi`
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) src/$(DEPDIR)/pq-invert.Tpo src/$(DEPDIR)/pq-invert.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='src/invert.c' object='src/pq-invert.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) $(pq_CPPFLAGS) $(CPPFLAGS) $(pq_CFLAGS) $(CFLAGS) -c -o src/pq-invert.obj `if test -f 'src/invert.c'; then $(CYGPATH_W) 'src/invert.c'; else $(CYGPATH_W) '$(srcdir)/src/invert.c'; fi`
src/pq-invert_auts.o: src/invert_auts.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(pq_CPPFLAGS) $(CPPFLAGS) $(pq_CFLAGS) $(CFLAGS) -MT src/pq-invert_auts.o -MD -MP -MF src/$(DEPDIR)/pq-invert_auts.Tpo -c -o src/pq-invert_auts.o `test -f 'src/invert_auts.c' || echo '$(srcdir)/'`src/invert_auts.c
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) src/$(DEPDIR)/pq-invert_auts.Tpo src/$(DEPDIR)/pq-invert_auts.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='src/invert_auts.c' object='src/pq-invert_auts.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) $(pq_CPPFLAGS) $(CPPFLAGS) $(pq_CFLAGS) $(CFLAGS) -c -o src/pq-invert_auts.o `test -f 'src/invert_auts.c' || echo '$(srcdir)/'`src/invert_auts.c
src/pq-invert_auts.obj: src/invert_auts.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(pq_CPPFLAGS) $(CPPFLAGS) $(pq_CFLAGS) $(CFLAGS) -MT src/pq-invert_auts.obj -MD -MP -MF src/$(DEPDIR)/pq-invert_auts.Tpo -c -o src/pq-invert_auts.obj `if test -f 'src/invert_auts.c'; then $(CYGPATH_W) 'src/invert_auts.c'; else $(CYGPATH_W) '$(srcdir)/src/invert_auts.c'; fi`
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) src/$(DEPDIR)/pq-invert_auts.Tpo src/$(DEPDIR)/pq-invert_auts.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='src/invert_auts.c' object='src/pq-invert_auts.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) $(pq_CPPFLAGS) $(CPPFLAGS) $(pq_CFLAGS) $(CFLAGS) -c -o src/pq-invert_auts.obj `if test -f 'src/invert_auts.c'; then $(CYGPATH_W) 'src/invert_auts.c'; else $(CYGPATH_W) '$(srcdir)/src/invert_auts.c'; fi`
src/pq-invert_modp.o: src/invert_modp.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(pq_CPPFLAGS) $(CPPFLAGS) $(pq_CFLAGS) $(CFLAGS) -MT src/pq-invert_modp.o -MD -MP -MF src/$(DEPDIR)/pq-invert_modp.Tpo -c -o src/pq-invert_modp.o `test -f 'src/invert_modp.c' || echo '$(srcdir)/'`src/invert_modp.c
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) src/$(DEPDIR)/pq-invert_modp.Tpo src/$(DEPDIR)/pq-invert_modp.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='src/invert_modp.c' object='src/pq-invert_modp.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) $(pq_CPPFLAGS) $(CPPFLAGS) $(pq_CFLAGS) $(CFLAGS) -c -o src/pq-invert_modp.o `test -f 'src/invert_modp.c' || echo '$(srcdir)/'`src/invert_modp.c
src/pq-invert_modp.obj: src/invert_modp.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(pq_CPPFLAGS) $(CPPFLAGS) $(pq_CFLAGS) $(CFLAGS) -MT src/pq-invert_modp.obj -MD -MP -MF src/$(DEPDIR)/pq-invert_modp.Tpo -c -o src/pq-invert_modp.obj `if test -f 'src/invert_modp.c'; then $(CYGPATH_W) 'src/invert_modp.c'; else $(CYGPATH_W) '$(srcdir)/src/invert_modp.c'; fi`
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) src/$(DEPDIR)/pq-invert_modp.Tpo src/$(DEPDIR)/pq-invert_modp.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='src/invert_modp.c' object='src/pq-invert_modp.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) $(pq_CPPFLAGS) $(CPPFLAGS) $(pq_CFLAGS) $(CFLAGS) -c -o src/pq-invert_modp.obj `if test -f 'src/invert_modp.c'; then $(CYGPATH_W) 'src/invert_modp.c'; else $(CYGPATH_W) '$(srcdir)/src/invert_modp.c'; fi`
src/pq-is_genlim_exceeded.o: src/is_genlim_exceeded.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(pq_CPPFLAGS) $(CPPFLAGS) $(pq_CFLAGS) $(CFLAGS) -MT src/pq-is_genlim_exceeded.o -MD -MP -MF src/$(DEPDIR)/pq-is_genlim_exceeded.Tpo -c -o src/pq-is_genlim_exceeded.o `test -f 'src/is_genlim_exceeded.c' || echo '$(srcdir)/'`src/is_genlim_exceeded.c
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) src/$(DEPDIR)/pq-is_genlim_exceeded.Tpo src/$(DEPDIR)/pq-is_genlim_exceeded.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='src/is_genlim_exceeded.c' object='src/pq-is_genlim_exceeded.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) $(pq_CPPFLAGS) $(CPPFLAGS) $(pq_CFLAGS) $(CFLAGS) -c -o src/pq-is_genlim_exceeded.o `test -f 'src/is_genlim_exceeded.c' || echo '$(srcdir)/'`src/is_genlim_exceeded.c
src/pq-is_genlim_exceeded.obj: src/is_genlim_exceeded.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(pq_CPPFLAGS) $(CPPFLAGS) $(pq_CFLAGS) $(CFLAGS) -MT src/pq-is_genlim_exceeded.obj -MD -MP -MF src/$(DEPDIR)/pq-is_genlim_exceeded.Tpo -c -o src/pq-is_genlim_exceeded.obj `if test -f 'src/is_genlim_exceeded.c'; then $(CYGPATH_W) 'src/is_genlim_exceeded.c'; else $(CYGPATH_W) '$(srcdir)/src/is_genlim_exceeded.c'; fi`
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) src/$(DEPDIR)/pq-is_genlim_exceeded.Tpo src/$(DEPDIR)/pq-is_genlim_exceeded.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='src/is_genlim_exceeded.c' object='src/pq-is_genlim_exceeded.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) $(pq_CPPFLAGS) $(CPPFLAGS) $(pq_CFLAGS) $(CFLAGS) -c -o src/pq-is_genlim_exceeded.obj `if test -f 'src/is_genlim_exceeded.c'; then $(CYGPATH_W) 'src/is_genlim_exceeded.c'; else $(CYGPATH_W) '$(srcdir)/src/is_genlim_exceeded.c'; fi`
src/pq-is_space_exhausted.o: src/is_space_exhausted.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(pq_CPPFLAGS) $(CPPFLAGS) $(pq_CFLAGS) $(CFLAGS) -MT src/pq-is_space_exhausted.o -MD -MP -MF src/$(DEPDIR)/pq-is_space_exhausted.Tpo -c -o src/pq-is_space_exhausted.o `test -f 'src/is_space_exhausted.c' || echo '$(srcdir)/'`src/is_space_exhausted.c
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) src/$(DEPDIR)/pq-is_space_exhausted.Tpo src/$(DEPDIR)/pq-is_space_exhausted.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='src/is_space_exhausted.c' object='src/pq-is_space_exhausted.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) $(pq_CPPFLAGS) $(CPPFLAGS) $(pq_CFLAGS) $(CFLAGS) -c -o src/pq-is_space_exhausted.o `test -f 'src/is_space_exhausted.c' || echo '$(srcdir)/'`src/is_space_exhausted.c
src/pq-is_space_exhausted.obj: src/is_space_exhausted.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(pq_CPPFLAGS) $(CPPFLAGS) $(pq_CFLAGS) $(CFLAGS) -MT src/pq-is_space_exhausted.obj -MD -MP -MF src/$(DEPDIR)/pq-is_space_exhausted.Tpo -c -o src/pq-is_space_exhausted.obj `if test -f 'src/is_space_exhausted.c'; then $(CYGPATH_W) 'src/is_space_exhausted.c'; else $(CYGPATH_W) '$(srcdir)/src/is_space_exhausted.c'; fi`
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) src/$(DEPDIR)/pq-is_space_exhausted.Tpo src/$(DEPDIR)/pq-is_space_exhausted.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='src/is_space_exhausted.c' object='src/pq-is_space_exhausted.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) $(pq_CPPFLAGS) $(CPPFLAGS) $(pq_CFLAGS) $(CFLAGS) -c -o src/pq-is_space_exhausted.obj `if test -f 'src/is_space_exhausted.c'; then $(CYGPATH_W) 'src/is_space_exhausted.c'; else $(CYGPATH_W) '$(srcdir)/src/is_space_exhausted.c'; fi`
src/pq-isom_options.o: src/isom_options.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(pq_CPPFLAGS) $(CPPFLAGS) $(pq_CFLAGS) $(CFLAGS) -MT src/pq-isom_options.o -MD -MP -MF src/$(DEPDIR)/pq-isom_options.Tpo -c -o src/pq-isom_options.o `test -f 'src/isom_options.c' || echo '$(srcdir)/'`src/isom_options.c
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) src/$(DEPDIR)/pq-isom_options.Tpo src/$(DEPDIR)/pq-isom_options.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='src/isom_options.c' object='src/pq-isom_options.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) $(pq_CPPFLAGS) $(CPPFLAGS) $(pq_CFLAGS) $(CFLAGS) -c -o src/pq-isom_options.o `test -f 'src/isom_options.c' || echo '$(srcdir)/'`src/isom_options.c
src/pq-isom_options.obj: src/isom_options.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(pq_CPPFLAGS) $(CPPFLAGS) $(pq_CFLAGS) $(CFLAGS) -MT src/pq-isom_options.obj -MD -MP -MF src/$(DEPDIR)/pq-isom_options.Tpo -c -o src/pq-isom_options.obj `if test -f 'src/isom_options.c'; then $(CYGPATH_W) 'src/isom_options.c'; else $(CYGPATH_W) '$(srcdir)/src/isom_options.c'; fi`
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) src/$(DEPDIR)/pq-isom_options.Tpo src/$(DEPDIR)/pq-isom_options.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='src/isom_options.c' object='src/pq-isom_options.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) $(pq_CPPFLAGS) $(CPPFLAGS) $(pq_CFLAGS) $(CFLAGS) -c -o src/pq-isom_options.obj `if test -f 'src/isom_options.c'; then $(CYGPATH_W) 'src/isom_options.c'; else $(CYGPATH_W) '$(srcdir)/src/isom_options.c'; fi`
src/pq-iteration.o: src/iteration.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(pq_CPPFLAGS) $(CPPFLAGS) $(pq_CFLAGS) $(CFLAGS) -MT src/pq-iteration.o -MD -MP -MF src/$(DEPDIR)/pq-iteration.Tpo -c -o src/pq-iteration.o `test -f 'src/iteration.c' || echo '$(srcdir)/'`src/iteration.c
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) src/$(DEPDIR)/pq-iteration.Tpo src/$(DEPDIR)/pq-iteration.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='src/iteration.c' object='src/pq-iteration.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) $(pq_CPPFLAGS) $(CPPFLAGS) $(pq_CFLAGS) $(CFLAGS) -c -o src/pq-iteration.o `test -f 'src/iteration.c' || echo '$(srcdir)/'`src/iteration.c
src/pq-iteration.obj: src/iteration.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(pq_CPPFLAGS) $(CPPFLAGS) $(pq_CFLAGS) $(CFLAGS) -MT src/pq-iteration.obj -MD -MP -MF src/$(DEPDIR)/pq-iteration.Tpo -c -o src/pq-iteration.obj `if test -f 'src/iteration.c'; then $(CYGPATH_W) 'src/iteration.c'; else $(CYGPATH_W) '$(srcdir)/src/iteration.c'; fi`
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) src/$(DEPDIR)/pq-iteration.Tpo src/$(DEPDIR)/pq-iteration.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='src/iteration.c' object='src/pq-iteration.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) $(pq_CPPFLAGS) $(CPPFLAGS) $(pq_CFLAGS) $(CFLAGS) -c -o src/pq-iteration.obj `if test -f 'src/iteration.c'; then $(CYGPATH_W) 'src/iteration.c'; else $(CYGPATH_W) '$(srcdir)/src/iteration.c'; fi`
src/pq-jacobi.o: src/jacobi.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(pq_CPPFLAGS) $(CPPFLAGS) $(pq_CFLAGS) $(CFLAGS) -MT src/pq-jacobi.o -MD -MP -MF src/$(DEPDIR)/pq-jacobi.Tpo -c -o src/pq-jacobi.o `test -f 'src/jacobi.c' || echo '$(srcdir)/'`src/jacobi.c
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) src/$(DEPDIR)/pq-jacobi.Tpo src/$(DEPDIR)/pq-jacobi.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='src/jacobi.c' object='src/pq-jacobi.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) $(pq_CPPFLAGS) $(CPPFLAGS) $(pq_CFLAGS) $(CFLAGS) -c -o src/pq-jacobi.o `test -f 'src/jacobi.c' || echo '$(srcdir)/'`src/jacobi.c
src/pq-jacobi.obj: src/jacobi.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(pq_CPPFLAGS) $(CPPFLAGS) $(pq_CFLAGS) $(CFLAGS) -MT src/pq-jacobi.obj -MD -MP -MF src/$(DEPDIR)/pq-jacobi.Tpo -c -o src/pq-jacobi.obj `if test -f 'src/jacobi.c'; then $(CYGPATH_W) 'src/jacobi.c'; else $(CYGPATH_W) '$(srcdir)/src/jacobi.c'; fi`
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) src/$(DEPDIR)/pq-jacobi.Tpo src/$(DEPDIR)/pq-jacobi.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='src/jacobi.c' object='src/pq-jacobi.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) $(pq_CPPFLAGS) $(CPPFLAGS) $(pq_CFLAGS) $(CFLAGS) -c -o src/pq-jacobi.obj `if test -f 'src/jacobi.c'; then $(CYGPATH_W) 'src/jacobi.c'; else $(CYGPATH_W) '$(srcdir)/src/jacobi.c'; fi`
src/pq-label_to_subgroup.o: src/label_to_subgroup.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(pq_CPPFLAGS) $(CPPFLAGS) $(pq_CFLAGS) $(CFLAGS) -MT src/pq-label_to_subgroup.o -MD -MP -MF src/$(DEPDIR)/pq-label_to_subgroup.Tpo -c -o src/pq-label_to_subgroup.o `test -f 'src/label_to_subgroup.c' || echo '$(srcdir)/'`src/label_to_subgroup.c
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) src/$(DEPDIR)/pq-label_to_subgroup.Tpo src/$(DEPDIR)/pq-label_to_subgroup.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='src/label_to_subgroup.c' object='src/pq-label_to_subgroup.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) $(pq_CPPFLAGS) $(CPPFLAGS) $(pq_CFLAGS) $(CFLAGS) -c -o src/pq-label_to_subgroup.o `test -f 'src/label_to_subgroup.c' || echo '$(srcdir)/'`src/label_to_subgroup.c
src/pq-label_to_subgroup.obj: src/label_to_subgroup.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(pq_CPPFLAGS) $(CPPFLAGS) $(pq_CFLAGS) $(CFLAGS) -MT src/pq-label_to_subgroup.obj -MD -MP -MF src/$(DEPDIR)/pq-label_to_subgroup.Tpo -c -o src/pq-label_to_subgroup.obj `if test -f 'src/label_to_subgroup.c'; then $(CYGPATH_W) 'src/label_to_subgroup.c'; else $(CYGPATH_W) '$(srcdir)/src/label_to_subgroup.c'; fi`
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) src/$(DEPDIR)/pq-label_to_subgroup.Tpo src/$(DEPDIR)/pq-label_to_subgroup.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='src/label_to_subgroup.c' object='src/pq-label_to_subgroup.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) $(pq_CPPFLAGS) $(CPPFLAGS) $(pq_CFLAGS) $(CFLAGS) -c -o src/pq-label_to_subgroup.obj `if test -f 'src/label_to_subgroup.c'; then $(CYGPATH_W) 'src/label_to_subgroup.c'; else $(CYGPATH_W) '$(srcdir)/src/label_to_subgroup.c'; fi`
src/pq-last_class.o: src/last_class.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(pq_CPPFLAGS) $(CPPFLAGS) $(pq_CFLAGS) $(CFLAGS) -MT src/pq-last_class.o -MD -MP -MF src/$(DEPDIR)/pq-last_class.Tpo -c -o src/pq-last_class.o `test -f 'src/last_class.c' || echo '$(srcdir)/'`src/last_class.c
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) src/$(DEPDIR)/pq-last_class.Tpo src/$(DEPDIR)/pq-last_class.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='src/last_class.c' object='src/pq-last_class.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) $(pq_CPPFLAGS) $(CPPFLAGS) $(pq_CFLAGS) $(CFLAGS) -c -o src/pq-last_class.o `test -f 'src/last_class.c' || echo '$(srcdir)/'`src/last_class.c
src/pq-last_class.obj: src/last_class.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(pq_CPPFLAGS) $(CPPFLAGS) $(pq_CFLAGS) $(CFLAGS) -MT src/pq-last_class.obj -MD -MP -MF src/$(DEPDIR)/pq-last_class.Tpo -c -o src/pq-last_class.obj `if test -f 'src/last_class.c'; then $(CYGPATH_W) 'src/last_class.c'; else $(CYGPATH_W) '$(srcdir)/src/last_class.c'; fi`
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) src/$(DEPDIR)/pq-last_class.Tpo src/$(DEPDIR)/pq-last_class.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='src/last_class.c' object='src/pq-last_class.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) $(pq_CPPFLAGS) $(CPPFLAGS) $(pq_CFLAGS) $(CFLAGS) -c -o src/pq-last_class.obj `if test -f 'src/last_class.c'; then $(CYGPATH_W) 'src/last_class.c'; else $(CYGPATH_W) '$(srcdir)/src/last_class.c'; fi`
src/pq-list_commutators.o: src/list_commutators.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(pq_CPPFLAGS) $(CPPFLAGS) $(pq_CFLAGS) $(CFLAGS) -MT src/pq-list_commutators.o -MD -MP -MF src/$(DEPDIR)/pq-list_commutators.Tpo -c -o src/pq-list_commutators.o `test -f 'src/list_commutators.c' || echo '$(srcdir)/'`src/list_commutators.c
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) src/$(DEPDIR)/pq-list_commutators.Tpo src/$(DEPDIR)/pq-list_commutators.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='src/list_commutators.c' object='src/pq-list_commutators.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) $(pq_CPPFLAGS) $(CPPFLAGS) $(pq_CFLAGS) $(CFLAGS) -c -o src/pq-list_commutators.o `test -f 'src/list_commutators.c' || echo '$(srcdir)/'`src/list_commutators.c
src/pq-list_commutators.obj: src/list_commutators.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(pq_CPPFLAGS) $(CPPFLAGS) $(pq_CFLAGS) $(CFLAGS) -MT src/pq-list_commutators.obj -MD -MP -MF src/$(DEPDIR)/pq-list_commutators.Tpo -c -o src/pq-list_commutators.obj `if test -f 'src/list_commutators.c'; then $(CYGPATH_W) 'src/list_commutators.c'; else $(CYGPATH_W) '$(srcdir)/src/list_commutators.c'; fi`
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) src/$(DEPDIR)/pq-list_commutators.Tpo src/$(DEPDIR)/pq-list_commutators.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='src/list_commutators.c' object='src/pq-list_commutators.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) $(pq_CPPFLAGS) $(CPPFLAGS) $(pq_CFLAGS) $(CFLAGS) -c -o src/pq-list_commutators.obj `if test -f 'src/list_commutators.c'; then $(CYGPATH_W) 'src/list_commutators.c'; else $(CYGPATH_W) '$(srcdir)/src/list_commutators.c'; fi`
src/pq-map_relations.o: src/map_relations.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(pq_CPPFLAGS) $(CPPFLAGS) $(pq_CFLAGS) $(CFLAGS) -MT src/pq-map_relations.o -MD -MP -MF src/$(DEPDIR)/pq-map_relations.Tpo -c -o src/pq-map_relations.o `test -f 'src/map_relations.c' || echo '$(srcdir)/'`src/map_relations.c
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) src/$(DEPDIR)/pq-map_relations.Tpo src/$(DEPDIR)/pq-map_relations.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='src/map_relations.c' object='src/pq-map_relations.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) $(pq_CPPFLAGS) $(CPPFLAGS) $(pq_CFLAGS) $(CFLAGS) -c -o src/pq-map_relations.o `test -f 'src/map_relations.c' || echo '$(srcdir)/'`src/map_relations.c
src/pq-map_relations.obj: src/map_relations.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(pq_CPPFLAGS) $(CPPFLAGS) $(pq_CFLAGS) $(CFLAGS) -MT src/pq-map_relations.obj -MD -MP -MF src/$(DEPDIR)/pq-map_relations.Tpo -c -o src/pq-map_relations.obj `if test -f 'src/map_relations.c'; then $(CYGPATH_W) 'src/map_relations.c'; else $(CYGPATH_W) '$(srcdir)/src/map_relations.c'; fi`
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) src/$(DEPDIR)/pq-map_relations.Tpo src/$(DEPDIR)/pq-map_relations.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='src/map_relations.c' object='src/pq-map_relations.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) $(pq_CPPFLAGS) $(CPPFLAGS) $(pq_CFLAGS) $(CFLAGS) -c -o src/pq-map_relations.obj `if test -f 'src/map_relations.c'; then $(CYGPATH_W) 'src/map_relations.c'; else $(CYGPATH_W) '$(srcdir)/src/map_relations.c'; fi`
src/pq-matrix.o: src/matrix.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(pq_CPPFLAGS) $(CPPFLAGS) $(pq_CFLAGS) $(CFLAGS) -MT src/pq-matrix.o -MD -MP -MF src/$(DEPDIR)/pq-matrix.Tpo -c -o src/pq-matrix.o `test -f 'src/matrix.c' || echo '$(srcdir)/'`src/matrix.c
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) src/$(DEPDIR)/pq-matrix.Tpo src/$(DEPDIR)/pq-matrix.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='src/matrix.c' object='src/pq-matrix.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) $(pq_CPPFLAGS) $(CPPFLAGS) $(pq_CFLAGS) $(CFLAGS) -c -o src/pq-matrix.o `test -f 'src/matrix.c' || echo '$(srcdir)/'`src/matrix.c
src/pq-matrix.obj: src/matrix.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(pq_CPPFLAGS) $(CPPFLAGS) $(pq_CFLAGS) $(CFLAGS) -MT src/pq-matrix.obj -MD -MP -MF src/$(DEPDIR)/pq-matrix.Tpo -c -o src/pq-matrix.obj `if test -f 'src/matrix.c'; then $(CYGPATH_W) 'src/matrix.c'; else $(CYGPATH_W) '$(srcdir)/src/matrix.c'; fi`
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) src/$(DEPDIR)/pq-matrix.Tpo src/$(DEPDIR)/pq-matrix.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='src/matrix.c' object='src/pq-matrix.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) $(pq_CPPFLAGS) $(CPPFLAGS) $(pq_CFLAGS) $(CFLAGS) -c -o src/pq-matrix.obj `if test -f 'src/matrix.c'; then $(CYGPATH_W) 'src/matrix.c'; else $(CYGPATH_W) '$(srcdir)/src/matrix.c'; fi`
src/pq-maxoccur.o: src/maxoccur.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(pq_CPPFLAGS) $(CPPFLAGS) $(pq_CFLAGS) $(CFLAGS) -MT src/pq-maxoccur.o -MD -MP -MF src/$(DEPDIR)/pq-maxoccur.Tpo -c -o src/pq-maxoccur.o `test -f 'src/maxoccur.c' || echo '$(srcdir)/'`src/maxoccur.c
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) src/$(DEPDIR)/pq-maxoccur.Tpo src/$(DEPDIR)/pq-maxoccur.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='src/maxoccur.c' object='src/pq-maxoccur.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) $(pq_CPPFLAGS) $(CPPFLAGS) $(pq_CFLAGS) $(CFLAGS) -c -o src/pq-maxoccur.o `test -f 'src/maxoccur.c' || echo '$(srcdir)/'`src/maxoccur.c
src/pq-maxoccur.obj: src/maxoccur.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(pq_CPPFLAGS) $(CPPFLAGS) $(pq_CFLAGS) $(CFLAGS) -MT src/pq-maxoccur.obj -MD -MP -MF src/$(DEPDIR)/pq-maxoccur.Tpo -c -o src/pq-maxoccur.obj `if test -f 'src/maxoccur.c'; then $(CYGPATH_W) 'src/maxoccur.c'; else $(CYGPATH_W) '$(srcdir)/src/maxoccur.c'; fi`
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) src/$(DEPDIR)/pq-maxoccur.Tpo src/$(DEPDIR)/pq-maxoccur.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='src/maxoccur.c' object='src/pq-maxoccur.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) $(pq_CPPFLAGS) $(CPPFLAGS) $(pq_CFLAGS) $(CFLAGS) -c -o src/pq-maxoccur.obj `if test -f 'src/maxoccur.c'; then $(CYGPATH_W) 'src/maxoccur.c'; else $(CYGPATH_W) '$(srcdir)/src/maxoccur.c'; fi`
src/pq-multiply_word.o: src/multiply_word.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(pq_CPPFLAGS) $(CPPFLAGS) $(pq_CFLAGS) $(CFLAGS) -MT src/pq-multiply_word.o -MD -MP -MF src/$(DEPDIR)/pq-multiply_word.Tpo -c -o src/pq-multiply_word.o `test -f 'src/multiply_word.c' || echo '$(srcdir)/'`src/multiply_word.c
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) src/$(DEPDIR)/pq-multiply_word.Tpo src/$(DEPDIR)/pq-multiply_word.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='src/multiply_word.c' object='src/pq-multiply_word.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) $(pq_CPPFLAGS) $(CPPFLAGS) $(pq_CFLAGS) $(CFLAGS) -c -o src/pq-multiply_word.o `test -f 'src/multiply_word.c' || echo '$(srcdir)/'`src/multiply_word.c
src/pq-multiply_word.obj: src/multiply_word.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(pq_CPPFLAGS) $(CPPFLAGS) $(pq_CFLAGS) $(CFLAGS) -MT src/pq-multiply_word.obj -MD -MP -MF src/$(DEPDIR)/pq-multiply_word.Tpo -c -o src/pq-multiply_word.obj `if test -f 'src/multiply_word.c'; then $(CYGPATH_W) 'src/multiply_word.c'; else $(CYGPATH_W) '$(srcdir)/src/multiply_word.c'; fi`
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) src/$(DEPDIR)/pq-multiply_word.Tpo src/$(DEPDIR)/pq-multiply_word.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='src/multiply_word.c' object='src/pq-multiply_word.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) $(pq_CPPFLAGS) $(CPPFLAGS) $(pq_CFLAGS) $(CFLAGS) -c -o src/pq-multiply_word.obj `if test -f 'src/multiply_word.c'; then $(CYGPATH_W) 'src/multiply_word.c'; else $(CYGPATH_W) '$(srcdir)/src/multiply_word.c'; fi`
src/pq-next_class.o: src/next_class.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(pq_CPPFLAGS) $(CPPFLAGS) $(pq_CFLAGS) $(CFLAGS) -MT src/pq-next_class.o -MD -MP -MF src/$(DEPDIR)/pq-next_class.Tpo -c -o src/pq-next_class.o `test -f 'src/next_class.c' || echo '$(srcdir)/'`src/next_class.c
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) src/$(DEPDIR)/pq-next_class.Tpo src/$(DEPDIR)/pq-next_class.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='src/next_class.c' object='src/pq-next_class.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) $(pq_CPPFLAGS) $(CPPFLAGS) $(pq_CFLAGS) $(CFLAGS) -c -o src/pq-next_class.o `test -f 'src/next_class.c' || echo '$(srcdir)/'`src/next_class.c
src/pq-next_class.obj: src/next_class.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(pq_CPPFLAGS) $(CPPFLAGS) $(pq_CFLAGS) $(CFLAGS) -MT src/pq-next_class.obj -MD -MP -MF src/$(DEPDIR)/pq-next_class.Tpo -c -o src/pq-next_class.obj `if test -f 'src/next_class.c'; then $(CYGPATH_W) 'src/next_class.c'; else $(CYGPATH_W) '$(srcdir)/src/next_class.c'; fi`
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) src/$(DEPDIR)/pq-next_class.Tpo src/$(DEPDIR)/pq-next_class.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='src/next_class.c' object='src/pq-next_class.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) $(pq_CPPFLAGS) $(CPPFLAGS) $(pq_CFLAGS) $(CFLAGS) -c -o src/pq-next_class.obj `if test -f 'src/next_class.c'; then $(CYGPATH_W) 'src/next_class.c'; else $(CYGPATH_W) '$(srcdir)/src/next_class.c'; fi`
src/pq-options.o: src/options.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(pq_CPPFLAGS) $(CPPFLAGS) $(pq_CFLAGS) $(CFLAGS) -MT src/pq-options.o -MD -MP -MF src/$(DEPDIR)/pq-options.Tpo -c -o src/pq-options.o `test -f 'src/options.c' || echo '$(srcdir)/'`src/options.c
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) src/$(DEPDIR)/pq-options.Tpo src/$(DEPDIR)/pq-options.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='src/options.c' object='src/pq-options.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) $(pq_CPPFLAGS) $(CPPFLAGS) $(pq_CFLAGS) $(CFLAGS) -c -o src/pq-options.o `test -f 'src/options.c' || echo '$(srcdir)/'`src/options.c
src/pq-options.obj: src/options.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(pq_CPPFLAGS) $(CPPFLAGS) $(pq_CFLAGS) $(CFLAGS) -MT src/pq-options.obj -MD -MP -MF src/$(DEPDIR)/pq-options.Tpo -c -o src/pq-options.obj `if test -f 'src/options.c'; then $(CYGPATH_W) 'src/options.c'; else $(CYGPATH_W) '$(srcdir)/src/options.c'; fi`
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) src/$(DEPDIR)/pq-options.Tpo src/$(DEPDIR)/pq-options.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='src/options.c' object='src/pq-options.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) $(pq_CPPFLAGS) $(CPPFLAGS) $(pq_CFLAGS) $(CFLAGS) -c -o src/pq-options.obj `if test -f 'src/options.c'; then $(CYGPATH_W) 'src/options.c'; else $(CYGPATH_W) '$(srcdir)/src/options.c'; fi`
src/pq-orbit_summary.o: src/orbit_summary.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(pq_CPPFLAGS) $(CPPFLAGS) $(pq_CFLAGS) $(CFLAGS) -MT src/pq-orbit_summary.o -MD -MP -MF src/$(DEPDIR)/pq-orbit_summary.Tpo -c -o src/pq-orbit_summary.o `test -f 'src/orbit_summary.c' || echo '$(srcdir)/'`src/orbit_summary.c
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) src/$(DEPDIR)/pq-orbit_summary.Tpo src/$(DEPDIR)/pq-orbit_summary.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='src/orbit_summary.c' object='src/pq-orbit_summary.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) $(pq_CPPFLAGS) $(CPPFLAGS) $(pq_CFLAGS) $(CFLAGS) -c -o src/pq-orbit_summary.o `test -f 'src/orbit_summary.c' || echo '$(srcdir)/'`src/orbit_summary.c
src/pq-orbit_summary.obj: src/orbit_summary.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(pq_CPPFLAGS) $(CPPFLAGS) $(pq_CFLAGS) $(CFLAGS) -MT src/pq-orbit_summary.obj -MD -MP -MF src/$(DEPDIR)/pq-orbit_summary.Tpo -c -o src/pq-orbit_summary.obj `if test -f 'src/orbit_summary.c'; then $(CYGPATH_W) 'src/orbit_summary.c'; else $(CYGPATH_W) '$(srcdir)/src/orbit_summary.c'; fi`
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) src/$(DEPDIR)/pq-orbit_summary.Tpo src/$(DEPDIR)/pq-orbit_summary.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='src/orbit_summary.c' object='src/pq-orbit_summary.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) $(pq_CPPFLAGS) $(CPPFLAGS) $(pq_CFLAGS) $(CFLAGS) -c -o src/pq-orbit_summary.obj `if test -f 'src/orbit_summary.c'; then $(CYGPATH_W) 'src/orbit_summary.c'; else $(CYGPATH_W) '$(srcdir)/src/orbit_summary.c'; fi`
src/pq-permute_elements.o: src/permute_elements.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(pq_CPPFLAGS) $(CPPFLAGS) $(pq_CFLAGS) $(CFLAGS) -MT src/pq-permute_elements.o -MD -MP -MF src/$(DEPDIR)/pq-permute_elements.Tpo -c -o src/pq-permute_elements.o `test -f 'src/permute_elements.c' || echo '$(srcdir)/'`src/permute_elements.c
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) src/$(DEPDIR)/pq-permute_elements.Tpo src/$(DEPDIR)/pq-permute_elements.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='src/permute_elements.c' object='src/pq-permute_elements.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) $(pq_CPPFLAGS) $(CPPFLAGS) $(pq_CFLAGS) $(CFLAGS) -c -o src/pq-permute_elements.o `test -f 'src/permute_elements.c' || echo '$(srcdir)/'`src/permute_elements.c
src/pq-permute_elements.obj: src/permute_elements.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(pq_CPPFLAGS) $(CPPFLAGS) $(pq_CFLAGS) $(CFLAGS) -MT src/pq-permute_elements.obj -MD -MP -MF src/$(DEPDIR)/pq-permute_elements.Tpo -c -o src/pq-permute_elements.obj `if test -f 'src/permute_elements.c'; then $(CYGPATH_W) 'src/permute_elements.c'; else $(CYGPATH_W) '$(srcdir)/src/permute_elements.c'; fi`
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) src/$(DEPDIR)/pq-permute_elements.Tpo src/$(DEPDIR)/pq-permute_elements.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='src/permute_elements.c' object='src/pq-permute_elements.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) $(pq_CPPFLAGS) $(CPPFLAGS) $(pq_CFLAGS) $(CFLAGS) -c -o src/pq-permute_elements.obj `if test -f 'src/permute_elements.c'; then $(CYGPATH_W) 'src/permute_elements.c'; else $(CYGPATH_W) '$(srcdir)/src/permute_elements.c'; fi`
src/pq-permute_subgroups.o: src/permute_subgroups.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(pq_CPPFLAGS) $(CPPFLAGS) $(pq_CFLAGS) $(CFLAGS) -MT src/pq-permute_subgroups.o -MD -MP -MF src/$(DEPDIR)/pq-permute_subgroups.Tpo -c -o src/pq-permute_subgroups.o `test -f 'src/permute_subgroups.c' || echo '$(srcdir)/'`src/permute_subgroups.c
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) src/$(DEPDIR)/pq-permute_subgroups.Tpo src/$(DEPDIR)/pq-permute_subgroups.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='src/permute_subgroups.c' object='src/pq-permute_subgroups.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) $(pq_CPPFLAGS) $(CPPFLAGS) $(pq_CFLAGS) $(CFLAGS) -c -o src/pq-permute_subgroups.o `test -f 'src/permute_subgroups.c' || echo '$(srcdir)/'`src/permute_subgroups.c
src/pq-permute_subgroups.obj: src/permute_subgroups.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(pq_CPPFLAGS) $(CPPFLAGS) $(pq_CFLAGS) $(CFLAGS) -MT src/pq-permute_subgroups.obj -MD -MP -MF src/$(DEPDIR)/pq-permute_subgroups.Tpo -c -o src/pq-permute_subgroups.obj `if test -f 'src/permute_subgroups.c'; then $(CYGPATH_W) 'src/permute_subgroups.c'; else $(CYGPATH_W) '$(srcdir)/src/permute_subgroups.c'; fi`
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) src/$(DEPDIR)/pq-permute_subgroups.Tpo src/$(DEPDIR)/pq-permute_subgroups.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='src/permute_subgroups.c' object='src/pq-permute_subgroups.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) $(pq_CPPFLAGS) $(CPPFLAGS) $(pq_CFLAGS) $(CFLAGS) -c -o src/pq-permute_subgroups.obj `if test -f 'src/permute_subgroups.c'; then $(CYGPATH_W) 'src/permute_subgroups.c'; else $(CYGPATH_W) '$(srcdir)/src/permute_subgroups.c'; fi`
src/pq-pgroup.o: src/pgroup.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(pq_CPPFLAGS) $(CPPFLAGS) $(pq_CFLAGS) $(CFLAGS) -MT src/pq-pgroup.o -MD -MP -MF src/$(DEPDIR)/pq-pgroup.Tpo -c -o src/pq-pgroup.o `test -f 'src/pgroup.c' || echo '$(srcdir)/'`src/pgroup.c
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) src/$(DEPDIR)/pq-pgroup.Tpo src/$(DEPDIR)/pq-pgroup.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='src/pgroup.c' object='src/pq-pgroup.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) $(pq_CPPFLAGS) $(CPPFLAGS) $(pq_CFLAGS) $(CFLAGS) -c -o src/pq-pgroup.o `test -f 'src/pgroup.c' || echo '$(srcdir)/'`src/pgroup.c
src/pq-pgroup.obj: src/pgroup.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(pq_CPPFLAGS) $(CPPFLAGS) $(pq_CFLAGS) $(CFLAGS) -MT src/pq-pgroup.obj -MD -MP -MF src/$(DEPDIR)/pq-pgroup.Tpo -c -o src/pq-pgroup.obj `if test -f 'src/pgroup.c'; then $(CYGPATH_W) 'src/pgroup.c'; else $(CYGPATH_W) '$(srcdir)/src/pgroup.c'; fi`
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) src/$(DEPDIR)/pq-pgroup.Tpo src/$(DEPDIR)/pq-pgroup.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='src/pgroup.c' object='src/pq-pgroup.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) $(pq_CPPFLAGS) $(CPPFLAGS) $(pq_CFLAGS) $(CFLAGS) -c -o src/pq-pgroup.obj `if test -f 'src/pgroup.c'; then $(CYGPATH_W) 'src/pgroup.c'; else $(CYGPATH_W) '$(srcdir)/src/pgroup.c'; fi`
src/pq-power.o: src/power.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(pq_CPPFLAGS) $(CPPFLAGS) $(pq_CFLAGS) $(CFLAGS) -MT src/pq-power.o -MD -MP -MF src/$(DEPDIR)/pq-power.Tpo -c -o src/pq-power.o `test -f 'src/power.c' || echo '$(srcdir)/'`src/power.c
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) src/$(DEPDIR)/pq-power.Tpo src/$(DEPDIR)/pq-power.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='src/power.c' object='src/pq-power.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) $(pq_CPPFLAGS) $(CPPFLAGS) $(pq_CFLAGS) $(CFLAGS) -c -o src/pq-power.o `test -f 'src/power.c' || echo '$(srcdir)/'`src/power.c
src/pq-power.obj: src/power.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(pq_CPPFLAGS) $(CPPFLAGS) $(pq_CFLAGS) $(CFLAGS) -MT src/pq-power.obj -MD -MP -MF src/$(DEPDIR)/pq-power.Tpo -c -o src/pq-power.obj `if test -f 'src/power.c'; then $(CYGPATH_W) 'src/power.c'; else $(CYGPATH_W) '$(srcdir)/src/power.c'; fi`
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) src/$(DEPDIR)/pq-power.Tpo src/$(DEPDIR)/pq-power.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='src/power.c' object='src/pq-power.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) $(pq_CPPFLAGS) $(CPPFLAGS) $(pq_CFLAGS) $(CFLAGS) -c -o src/pq-power.obj `if test -f 'src/power.c'; then $(CYGPATH_W) 'src/power.c'; else $(CYGPATH_W) '$(srcdir)/src/power.c'; fi`
src/pq-pquotient.o: src/pquotient.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(pq_CPPFLAGS) $(CPPFLAGS) $(pq_CFLAGS) $(CFLAGS) -MT src/pq-pquotient.o -MD -MP -MF src/$(DEPDIR)/pq-pquotient.Tpo -c -o src/pq-pquotient.o `test -f 'src/pquotient.c' || echo '$(srcdir)/'`src/pquotient.c
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) src/$(DEPDIR)/pq-pquotient.Tpo src/$(DEPDIR)/pq-pquotient.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='src/pquotient.c' object='src/pq-pquotient.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) $(pq_CPPFLAGS) $(CPPFLAGS) $(pq_CFLAGS) $(CFLAGS) -c -o src/pq-pquotient.o `test -f 'src/pquotient.c' || echo '$(srcdir)/'`src/pquotient.c
src/pq-pquotient.obj: src/pquotient.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(pq_CPPFLAGS) $(CPPFLAGS) $(pq_CFLAGS) $(CFLAGS) -MT src/pq-pquotient.obj -MD -MP -MF src/$(DEPDIR)/pq-pquotient.Tpo -c -o src/pq-pquotient.obj `if test -f 'src/pquotient.c'; then $(CYGPATH_W) 'src/pquotient.c'; else $(CYGPATH_W) '$(srcdir)/src/pquotient.c'; fi`
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) src/$(DEPDIR)/pq-pquotient.Tpo src/$(DEPDIR)/pq-pquotient.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='src/pquotient.c' object='src/pq-pquotient.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) $(pq_CPPFLAGS) $(CPPFLAGS) $(pq_CFLAGS) $(CFLAGS) -c -o src/pq-pquotient.obj `if test -f 'src/pquotient.c'; then $(CYGPATH_W) 'src/pquotient.c'; else $(CYGPATH_W) '$(srcdir)/src/pquotient.c'; fi`
src/pq-pretty_filter.o: src/pretty_filter.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(pq_CPPFLAGS) $(CPPFLAGS) $(pq_CFLAGS) $(CFLAGS) -MT src/pq-pretty_filter.o -MD -MP -MF src/$(DEPDIR)/pq-pretty_filter.Tpo -c -o src/pq-pretty_filter.o `test -f 'src/pretty_filter.c' || echo '$(srcdir)/'`src/pretty_filter.c
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) src/$(DEPDIR)/pq-pretty_filter.Tpo src/$(DEPDIR)/pq-pretty_filter.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='src/pretty_filter.c' object='src/pq-pretty_filter.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) $(pq_CPPFLAGS) $(CPPFLAGS) $(pq_CFLAGS) $(CFLAGS) -c -o src/pq-pretty_filter.o `test -f 'src/pretty_filter.c' || echo '$(srcdir)/'`src/pretty_filter.c
src/pq-pretty_filter.obj: src/pretty_filter.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(pq_CPPFLAGS) $(CPPFLAGS) $(pq_CFLAGS) $(CFLAGS) -MT src/pq-pretty_filter.obj -MD -MP -MF src/$(DEPDIR)/pq-pretty_filter.Tpo -c -o src/pq-pretty_filter.obj `if test -f 'src/pretty_filter.c'; then $(CYGPATH_W) 'src/pretty_filter.c'; else $(CYGPATH_W) '$(srcdir)/src/pretty_filter.c'; fi`
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) src/$(DEPDIR)/pq-pretty_filter.Tpo src/$(DEPDIR)/pq-pretty_filter.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='src/pretty_filter.c' object='src/pq-pretty_filter.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) $(pq_CPPFLAGS) $(CPPFLAGS) $(pq_CFLAGS) $(CFLAGS) -c -o src/pq-pretty_filter.obj `if test -f 'src/pretty_filter.c'; then $(CYGPATH_W) 'src/pretty_filter.c'; else $(CYGPATH_W) '$(srcdir)/src/pretty_filter.c'; fi`
src/pq-pretty_filterfns.o: src/pretty_filterfns.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(pq_CPPFLAGS) $(CPPFLAGS) $(pq_CFLAGS) $(CFLAGS) -MT src/pq-pretty_filterfns.o -MD -MP -MF src/$(DEPDIR)/pq-pretty_filterfns.Tpo -c -o src/pq-pretty_filterfns.o `test -f 'src/pretty_filterfns.c' || echo '$(srcdir)/'`src/pretty_filterfns.c
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) src/$(DEPDIR)/pq-pretty_filterfns.Tpo src/$(DEPDIR)/pq-pretty_filterfns.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='src/pretty_filterfns.c' object='src/pq-pretty_filterfns.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) $(pq_CPPFLAGS) $(CPPFLAGS) $(pq_CFLAGS) $(CFLAGS) -c -o src/pq-pretty_filterfns.o `test -f 'src/pretty_filterfns.c' || echo '$(srcdir)/'`src/pretty_filterfns.c
src/pq-pretty_filterfns.obj: src/pretty_filterfns.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(pq_CPPFLAGS) $(CPPFLAGS) $(pq_CFLAGS) $(CFLAGS) -MT src/pq-pretty_filterfns.obj -MD -MP -MF src/$(DEPDIR)/pq-pretty_filterfns.Tpo -c -o src/pq-pretty_filterfns.obj `if test -f 'src/pretty_filterfns.c'; then $(CYGPATH_W) 'src/pretty_filterfns.c'; else $(CYGPATH_W) '$(srcdir)/src/pretty_filterfns.c'; fi`
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) src/$(DEPDIR)/pq-pretty_filterfns.Tpo src/$(DEPDIR)/pq-pretty_filterfns.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='src/pretty_filterfns.c' object='src/pq-pretty_filterfns.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) $(pq_CPPFLAGS) $(CPPFLAGS) $(pq_CFLAGS) $(CFLAGS) -c -o src/pq-pretty_filterfns.obj `if test -f 'src/pretty_filterfns.c'; then $(CYGPATH_W) 'src/pretty_filterfns.c'; else $(CYGPATH_W) '$(srcdir)/src/pretty_filterfns.c'; fi`
src/pq-print_arrays.o: src/print_arrays.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(pq_CPPFLAGS) $(CPPFLAGS) $(pq_CFLAGS) $(CFLAGS) -MT src/pq-print_arrays.o -MD -MP -MF src/$(DEPDIR)/pq-print_arrays.Tpo -c -o src/pq-print_arrays.o `test -f 'src/print_arrays.c' || echo '$(srcdir)/'`src/print_arrays.c
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) src/$(DEPDIR)/pq-print_arrays.Tpo src/$(DEPDIR)/pq-print_arrays.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='src/print_arrays.c' object='src/pq-print_arrays.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) $(pq_CPPFLAGS) $(CPPFLAGS) $(pq_CFLAGS) $(CFLAGS) -c -o src/pq-print_arrays.o `test -f 'src/print_arrays.c' || echo '$(srcdir)/'`src/print_arrays.c
src/pq-print_arrays.obj: src/print_arrays.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(pq_CPPFLAGS) $(CPPFLAGS) $(pq_CFLAGS) $(CFLAGS) -MT src/pq-print_arrays.obj -MD -MP -MF src/$(DEPDIR)/pq-print_arrays.Tpo -c -o src/pq-print_arrays.obj `if test -f 'src/print_arrays.c'; then $(CYGPATH_W) 'src/print_arrays.c'; else $(CYGPATH_W) '$(srcdir)/src/print_arrays.c'; fi`
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) src/$(DEPDIR)/pq-print_arrays.Tpo src/$(DEPDIR)/pq-print_arrays.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='src/print_arrays.c' object='src/pq-print_arrays.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) $(pq_CPPFLAGS) $(CPPFLAGS) $(pq_CFLAGS) $(CFLAGS) -c -o src/pq-print_arrays.obj `if test -f 'src/print_arrays.c'; then $(CYGPATH_W) 'src/print_arrays.c'; else $(CYGPATH_W) '$(srcdir)/src/print_arrays.c'; fi`
src/pq-print_auts.o: src/print_auts.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(pq_CPPFLAGS) $(CPPFLAGS) $(pq_CFLAGS) $(CFLAGS) -MT src/pq-print_auts.o -MD -MP -MF src/$(DEPDIR)/pq-print_auts.Tpo -c -o src/pq-print_auts.o `test -f 'src/print_auts.c' || echo '$(srcdir)/'`src/print_auts.c
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) src/$(DEPDIR)/pq-print_auts.Tpo src/$(DEPDIR)/pq-print_auts.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='src/print_auts.c' object='src/pq-print_auts.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) $(pq_CPPFLAGS) $(CPPFLAGS) $(pq_CFLAGS) $(CFLAGS) -c -o src/pq-print_auts.o `test -f 'src/print_auts.c' || echo '$(srcdir)/'`src/print_auts.c
src/pq-print_auts.obj: src/print_auts.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(pq_CPPFLAGS) $(CPPFLAGS) $(pq_CFLAGS) $(CFLAGS) -MT src/pq-print_auts.obj -MD -MP -MF src/$(DEPDIR)/pq-print_auts.Tpo -c -o src/pq-print_auts.obj `if test -f 'src/print_auts.c'; then $(CYGPATH_W) 'src/print_auts.c'; else $(CYGPATH_W) '$(srcdir)/src/print_auts.c'; fi`
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) src/$(DEPDIR)/pq-print_auts.Tpo src/$(DEPDIR)/pq-print_auts.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='src/print_auts.c' object='src/pq-print_auts.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) $(pq_CPPFLAGS) $(CPPFLAGS) $(pq_CFLAGS) $(CFLAGS) -c -o src/pq-print_auts.obj `if test -f 'src/print_auts.c'; then $(CYGPATH_W) 'src/print_auts.c'; else $(CYGPATH_W) '$(srcdir)/src/print_auts.c'; fi`
src/pq-print_level.o: src/print_level.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(pq_CPPFLAGS) $(CPPFLAGS) $(pq_CFLAGS) $(CFLAGS) -MT src/pq-print_level.o -MD -MP -MF src/$(DEPDIR)/pq-print_level.Tpo -c -o src/pq-print_level.o `test -f 'src/print_level.c' || echo '$(srcdir)/'`src/print_level.c
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) src/$(DEPDIR)/pq-print_level.Tpo src/$(DEPDIR)/pq-print_level.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='src/print_level.c' object='src/pq-print_level.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) $(pq_CPPFLAGS) $(CPPFLAGS) $(pq_CFLAGS) $(CFLAGS) -c -o src/pq-print_level.o `test -f 'src/print_level.c' || echo '$(srcdir)/'`src/print_level.c
src/pq-print_level.obj: src/print_level.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(pq_CPPFLAGS) $(CPPFLAGS) $(pq_CFLAGS) $(CFLAGS) -MT src/pq-print_level.obj -MD -MP -MF src/$(DEPDIR)/pq-print_level.Tpo -c -o src/pq-print_level.obj `if test -f 'src/print_level.c'; then $(CYGPATH_W) 'src/print_level.c'; else $(CYGPATH_W) '$(srcdir)/src/print_level.c'; fi`
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) src/$(DEPDIR)/pq-print_level.Tpo src/$(DEPDIR)/pq-print_level.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='src/print_level.c' object='src/pq-print_level.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) $(pq_CPPFLAGS) $(CPPFLAGS) $(pq_CFLAGS) $(CFLAGS) -c -o src/pq-print_level.obj `if test -f 'src/print_level.c'; then $(CYGPATH_W) 'src/print_level.c'; else $(CYGPATH_W) '$(srcdir)/src/print_level.c'; fi`
src/pq-print_multiweight.o: src/print_multiweight.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(pq_CPPFLAGS) $(CPPFLAGS) $(pq_CFLAGS) $(CFLAGS) -MT src/pq-print_multiweight.o -MD -MP -MF src/$(DEPDIR)/pq-print_multiweight.Tpo -c -o src/pq-print_multiweight.o `test -f 'src/print_multiweight.c' || echo '$(srcdir)/'`src/print_multiweight.c
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) src/$(DEPDIR)/pq-print_multiweight.Tpo src/$(DEPDIR)/pq-print_multiweight.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='src/print_multiweight.c' object='src/pq-print_multiweight.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) $(pq_CPPFLAGS) $(CPPFLAGS) $(pq_CFLAGS) $(CFLAGS) -c -o src/pq-print_multiweight.o `test -f 'src/print_multiweight.c' || echo '$(srcdir)/'`src/print_multiweight.c
src/pq-print_multiweight.obj: src/print_multiweight.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(pq_CPPFLAGS) $(CPPFLAGS) $(pq_CFLAGS) $(CFLAGS) -MT src/pq-print_multiweight.obj -MD -MP -MF src/$(DEPDIR)/pq-print_multiweight.Tpo -c -o src/pq-print_multiweight.obj `if test -f 'src/print_multiweight.c'; then $(CYGPATH_W) 'src/print_multiweight.c'; else $(CYGPATH_W) '$(srcdir)/src/print_multiweight.c'; fi`
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) src/$(DEPDIR)/pq-print_multiweight.Tpo src/$(DEPDIR)/pq-print_multiweight.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='src/print_multiweight.c' object='src/pq-print_multiweight.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) $(pq_CPPFLAGS) $(CPPFLAGS) $(pq_CFLAGS) $(CFLAGS) -c -o src/pq-print_multiweight.obj `if test -f 'src/print_multiweight.c'; then $(CYGPATH_W) 'src/print_multiweight.c'; else $(CYGPATH_W) '$(srcdir)/src/print_multiweight.c'; fi`
src/pq-print_presentation.o: src/print_presentation.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(pq_CPPFLAGS) $(CPPFLAGS) $(pq_CFLAGS) $(CFLAGS) -MT src/pq-print_presentation.o -MD -MP -MF src/$(DEPDIR)/pq-print_presentation.Tpo -c -o src/pq-print_presentation.o `test -f 'src/print_presentation.c' || echo '$(srcdir)/'`src/print_presentation.c
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) src/$(DEPDIR)/pq-print_presentation.Tpo src/$(DEPDIR)/pq-print_presentation.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='src/print_presentation.c' object='src/pq-print_presentation.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) $(pq_CPPFLAGS) $(CPPFLAGS) $(pq_CFLAGS) $(CFLAGS) -c -o src/pq-print_presentation.o `test -f 'src/print_presentation.c' || echo '$(srcdir)/'`src/print_presentation.c
src/pq-print_presentation.obj: src/print_presentation.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(pq_CPPFLAGS) $(CPPFLAGS) $(pq_CFLAGS) $(CFLAGS) -MT src/pq-print_presentation.obj -MD -MP -MF src/$(DEPDIR)/pq-print_presentation.Tpo -c -o src/pq-print_presentation.obj `if test -f 'src/print_presentation.c'; then $(CYGPATH_W) 'src/print_presentation.c'; else $(CYGPATH_W) '$(srcdir)/src/print_presentation.c'; fi`
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) src/$(DEPDIR)/pq-print_presentation.Tpo src/$(DEPDIR)/pq-print_presentation.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='src/print_presentation.c' object='src/pq-print_presentation.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) $(pq_CPPFLAGS) $(CPPFLAGS) $(pq_CFLAGS) $(CFLAGS) -c -o src/pq-print_presentation.obj `if test -f 'src/print_presentation.c'; then $(CYGPATH_W) 'src/print_presentation.c'; else $(CYGPATH_W) '$(srcdir)/src/print_presentation.c'; fi`
src/pq-print_structure.o: src/print_structure.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(pq_CPPFLAGS) $(CPPFLAGS) $(pq_CFLAGS) $(CFLAGS) -MT src/pq-print_structure.o -MD -MP -MF src/$(DEPDIR)/pq-print_structure.Tpo -c -o src/pq-print_structure.o `test -f 'src/print_structure.c' || echo '$(srcdir)/'`src/print_structure.c
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) src/$(DEPDIR)/pq-print_structure.Tpo src/$(DEPDIR)/pq-print_structure.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='src/print_structure.c' object='src/pq-print_structure.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) $(pq_CPPFLAGS) $(CPPFLAGS) $(pq_CFLAGS) $(CFLAGS) -c -o src/pq-print_structure.o `test -f 'src/print_structure.c' || echo '$(srcdir)/'`src/print_structure.c
src/pq-print_structure.obj: src/print_structure.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(pq_CPPFLAGS) $(CPPFLAGS) $(pq_CFLAGS) $(CFLAGS) -MT src/pq-print_structure.obj -MD -MP -MF src/$(DEPDIR)/pq-print_structure.Tpo -c -o src/pq-print_structure.obj `if test -f 'src/print_structure.c'; then $(CYGPATH_W) 'src/print_structure.c'; else $(CYGPATH_W) '$(srcdir)/src/print_structure.c'; fi`
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) src/$(DEPDIR)/pq-print_structure.Tpo src/$(DEPDIR)/pq-print_structure.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='src/print_structure.c' object='src/pq-print_structure.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) $(pq_CPPFLAGS) $(CPPFLAGS) $(pq_CFLAGS) $(CFLAGS) -c -o src/pq-print_structure.obj `if test -f 'src/print_structure.c'; then $(CYGPATH_W) 'src/print_structure.c'; else $(CYGPATH_W) '$(srcdir)/src/print_structure.c'; fi`
src/pq-print_word.o: src/print_word.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(pq_CPPFLAGS) $(CPPFLAGS) $(pq_CFLAGS) $(CFLAGS) -MT src/pq-print_word.o -MD -MP -MF src/$(DEPDIR)/pq-print_word.Tpo -c -o src/pq-print_word.o `test -f 'src/print_word.c' || echo '$(srcdir)/'`src/print_word.c
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) src/$(DEPDIR)/pq-print_word.Tpo src/$(DEPDIR)/pq-print_word.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='src/print_word.c' object='src/pq-print_word.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) $(pq_CPPFLAGS) $(CPPFLAGS) $(pq_CFLAGS) $(CFLAGS) -c -o src/pq-print_word.o `test -f 'src/print_word.c' || echo '$(srcdir)/'`src/print_word.c
src/pq-print_word.obj: src/print_word.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(pq_CPPFLAGS) $(CPPFLAGS) $(pq_CFLAGS) $(CFLAGS) -MT src/pq-print_word.obj -MD -MP -MF src/$(DEPDIR)/pq-print_word.Tpo -c -o src/pq-print_word.obj `if test -f 'src/print_word.c'; then $(CYGPATH_W) 'src/print_word.c'; else $(CYGPATH_W) '$(srcdir)/src/print_word.c'; fi`
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) src/$(DEPDIR)/pq-print_word.Tpo src/$(DEPDIR)/pq-print_word.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='src/print_word.c' object='src/pq-print_word.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) $(pq_CPPFLAGS) $(CPPFLAGS) $(pq_CFLAGS) $(CFLAGS) -c -o src/pq-print_word.obj `if test -f 'src/print_word.c'; then $(CYGPATH_W) 'src/print_word.c'; else $(CYGPATH_W) '$(srcdir)/src/print_word.c'; fi`
src/pq-read.o: src/read.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(pq_CPPFLAGS) $(CPPFLAGS) $(pq_CFLAGS) $(CFLAGS) -MT src/pq-read.o -MD -MP -MF src/$(DEPDIR)/pq-read.Tpo -c -o src/pq-read.o `test -f 'src/read.c' || echo '$(srcdir)/'`src/read.c
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) src/$(DEPDIR)/pq-read.Tpo src/$(DEPDIR)/pq-read.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='src/read.c' object='src/pq-read.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) $(pq_CPPFLAGS) $(CPPFLAGS) $(pq_CFLAGS) $(CFLAGS) -c -o src/pq-read.o `test -f 'src/read.c' || echo '$(srcdir)/'`src/read.c
src/pq-read.obj: src/read.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(pq_CPPFLAGS) $(CPPFLAGS) $(pq_CFLAGS) $(CFLAGS) -MT src/pq-read.obj -MD -MP -MF src/$(DEPDIR)/pq-read.Tpo -c -o src/pq-read.obj `if test -f 'src/read.c'; then $(CYGPATH_W) 'src/read.c'; else $(CYGPATH_W) '$(srcdir)/src/read.c'; fi`
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) src/$(DEPDIR)/pq-read.Tpo src/$(DEPDIR)/pq-read.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='src/read.c' object='src/pq-read.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) $(pq_CPPFLAGS) $(CPPFLAGS) $(pq_CFLAGS) $(CFLAGS) -c -o src/pq-read.obj `if test -f 'src/read.c'; then $(CYGPATH_W) 'src/read.c'; else $(CYGPATH_W) '$(srcdir)/src/read.c'; fi`
src/pq-read_auts.o: src/read_auts.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(pq_CPPFLAGS) $(CPPFLAGS) $(pq_CFLAGS) $(CFLAGS) -MT src/pq-read_auts.o -MD -MP -MF src/$(DEPDIR)/pq-read_auts.Tpo -c -o src/pq-read_auts.o `test -f 'src/read_auts.c' || echo '$(srcdir)/'`src/read_auts.c
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) src/$(DEPDIR)/pq-read_auts.Tpo src/$(DEPDIR)/pq-read_auts.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='src/read_auts.c' object='src/pq-read_auts.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) $(pq_CPPFLAGS) $(CPPFLAGS) $(pq_CFLAGS) $(CFLAGS) -c -o src/pq-read_auts.o `test -f 'src/read_auts.c' || echo '$(srcdir)/'`src/read_auts.c
src/pq-read_auts.obj: src/read_auts.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(pq_CPPFLAGS) $(CPPFLAGS) $(pq_CFLAGS) $(CFLAGS) -MT src/pq-read_auts.obj -MD -MP -MF src/$(DEPDIR)/pq-read_auts.Tpo -c -o src/pq-read_auts.obj `if test -f 'src/read_auts.c'; then $(CYGPATH_W) 'src/read_auts.c'; else $(CYGPATH_W) '$(srcdir)/src/read_auts.c'; fi`
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) src/$(DEPDIR)/pq-read_auts.Tpo src/$(DEPDIR)/pq-read_auts.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='src/read_auts.c' object='src/pq-read_auts.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) $(pq_CPPFLAGS) $(CPPFLAGS) $(pq_CFLAGS) $(CFLAGS) -c -o src/pq-read_auts.obj `if test -f 'src/read_auts.c'; then $(CYGPATH_W) 'src/read_auts.c'; else $(CYGPATH_W) '$(srcdir)/src/read_auts.c'; fi`
src/pq-read_parameters.o: src/read_parameters.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(pq_CPPFLAGS) $(CPPFLAGS) $(pq_CFLAGS) $(CFLAGS) -MT src/pq-read_parameters.o -MD -MP -MF src/$(DEPDIR)/pq-read_parameters.Tpo -c -o src/pq-read_parameters.o `test -f 'src/read_parameters.c' || echo '$(srcdir)/'`src/read_parameters.c
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) src/$(DEPDIR)/pq-read_parameters.Tpo src/$(DEPDIR)/pq-read_parameters.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='src/read_parameters.c' object='src/pq-read_parameters.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) $(pq_CPPFLAGS) $(CPPFLAGS) $(pq_CFLAGS) $(CFLAGS) -c -o src/pq-read_parameters.o `test -f 'src/read_parameters.c' || echo '$(srcdir)/'`src/read_parameters.c
src/pq-read_parameters.obj: src/read_parameters.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(pq_CPPFLAGS) $(CPPFLAGS) $(pq_CFLAGS) $(CFLAGS) -MT src/pq-read_parameters.obj -MD -MP -MF src/$(DEPDIR)/pq-read_parameters.Tpo -c -o src/pq-read_parameters.obj `if test -f 'src/read_parameters.c'; then $(CYGPATH_W) 'src/read_parameters.c'; else $(CYGPATH_W) '$(srcdir)/src/read_parameters.c'; fi`
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) src/$(DEPDIR)/pq-read_parameters.Tpo src/$(DEPDIR)/pq-read_parameters.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='src/read_parameters.c' object='src/pq-read_parameters.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) $(pq_CPPFLAGS) $(CPPFLAGS) $(pq_CFLAGS) $(CFLAGS) -c -o src/pq-read_parameters.obj `if test -f 'src/read_parameters.c'; then $(CYGPATH_W) 'src/read_parameters.c'; else $(CYGPATH_W) '$(srcdir)/src/read_parameters.c'; fi`
src/pq-read_relations.o: src/read_relations.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(pq_CPPFLAGS) $(CPPFLAGS) $(pq_CFLAGS) $(CFLAGS) -MT src/pq-read_relations.o -MD -MP -MF src/$(DEPDIR)/pq-read_relations.Tpo -c -o src/pq-read_relations.o `test -f 'src/read_relations.c' || echo '$(srcdir)/'`src/read_relations.c
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) src/$(DEPDIR)/pq-read_relations.Tpo src/$(DEPDIR)/pq-read_relations.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='src/read_relations.c' object='src/pq-read_relations.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) $(pq_CPPFLAGS) $(CPPFLAGS) $(pq_CFLAGS) $(CFLAGS) -c -o src/pq-read_relations.o `test -f 'src/read_relations.c' || echo '$(srcdir)/'`src/read_relations.c
src/pq-read_relations.obj: src/read_relations.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(pq_CPPFLAGS) $(CPPFLAGS) $(pq_CFLAGS) $(CFLAGS) -MT src/pq-read_relations.obj -MD -MP -MF src/$(DEPDIR)/pq-read_relations.Tpo -c -o src/pq-read_relations.obj `if test -f 'src/read_relations.c'; then $(CYGPATH_W) 'src/read_relations.c'; else $(CYGPATH_W) '$(srcdir)/src/read_relations.c'; fi`
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) src/$(DEPDIR)/pq-read_relations.Tpo src/$(DEPDIR)/pq-read_relations.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='src/read_relations.c' object='src/pq-read_relations.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) $(pq_CPPFLAGS) $(CPPFLAGS) $(pq_CFLAGS) $(CFLAGS) -c -o src/pq-read_relations.obj `if test -f 'src/read_relations.c'; then $(CYGPATH_W) 'src/read_relations.c'; else $(CYGPATH_W) '$(srcdir)/src/read_relations.c'; fi`
src/pq-read_relator_file.o: src/read_relator_file.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(pq_CPPFLAGS) $(CPPFLAGS) $(pq_CFLAGS) $(CFLAGS) -MT src/pq-read_relator_file.o -MD -MP -MF src/$(DEPDIR)/pq-read_relator_file.Tpo -c -o src/pq-read_relator_file.o `test -f 'src/read_relator_file.c' || echo '$(srcdir)/'`src/read_relator_file.c
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) src/$(DEPDIR)/pq-read_relator_file.Tpo src/$(DEPDIR)/pq-read_relator_file.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='src/read_relator_file.c' object='src/pq-read_relator_file.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) $(pq_CPPFLAGS) $(CPPFLAGS) $(pq_CFLAGS) $(CFLAGS) -c -o src/pq-read_relator_file.o `test -f 'src/read_relator_file.c' || echo '$(srcdir)/'`src/read_relator_file.c
src/pq-read_relator_file.obj: src/read_relator_file.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(pq_CPPFLAGS) $(CPPFLAGS) $(pq_CFLAGS) $(CFLAGS) -MT src/pq-read_relator_file.obj -MD -MP -MF src/$(DEPDIR)/pq-read_relator_file.Tpo -c -o src/pq-read_relator_file.obj `if test -f 'src/read_relator_file.c'; then $(CYGPATH_W) 'src/read_relator_file.c'; else $(CYGPATH_W) '$(srcdir)/src/read_relator_file.c'; fi`
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) src/$(DEPDIR)/pq-read_relator_file.Tpo src/$(DEPDIR)/pq-read_relator_file.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='src/read_relator_file.c' object='src/pq-read_relator_file.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) $(pq_CPPFLAGS) $(CPPFLAGS) $(pq_CFLAGS) $(CFLAGS) -c -o src/pq-read_relator_file.obj `if test -f 'src/read_relator_file.c'; then $(CYGPATH_W) 'src/read_relator_file.c'; else $(CYGPATH_W) '$(srcdir)/src/read_relator_file.c'; fi`
src/pq-read_value.o: src/read_value.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(pq_CPPFLAGS) $(CPPFLAGS) $(pq_CFLAGS) $(CFLAGS) -MT src/pq-read_value.o -MD -MP -MF src/$(DEPDIR)/pq-read_value.Tpo -c -o src/pq-read_value.o `test -f 'src/read_value.c' || echo '$(srcdir)/'`src/read_value.c
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) src/$(DEPDIR)/pq-read_value.Tpo src/$(DEPDIR)/pq-read_value.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='src/read_value.c' object='src/pq-read_value.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) $(pq_CPPFLAGS) $(CPPFLAGS) $(pq_CFLAGS) $(CFLAGS) -c -o src/pq-read_value.o `test -f 'src/read_value.c' || echo '$(srcdir)/'`src/read_value.c
src/pq-read_value.obj: src/read_value.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(pq_CPPFLAGS) $(CPPFLAGS) $(pq_CFLAGS) $(CFLAGS) -MT src/pq-read_value.obj -MD -MP -MF src/$(DEPDIR)/pq-read_value.Tpo -c -o src/pq-read_value.obj `if test -f 'src/read_value.c'; then $(CYGPATH_W) 'src/read_value.c'; else $(CYGPATH_W) '$(srcdir)/src/read_value.c'; fi`
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) src/$(DEPDIR)/pq-read_value.Tpo src/$(DEPDIR)/pq-read_value.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='src/read_value.c' object='src/pq-read_value.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) $(pq_CPPFLAGS) $(CPPFLAGS) $(pq_CFLAGS) $(CFLAGS) -c -o src/pq-read_value.obj `if test -f 'src/read_value.c'; then $(CYGPATH_W) 'src/read_value.c'; else $(CYGPATH_W) '$(srcdir)/src/read_value.c'; fi`
src/pq-read_word.o: src/read_word.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(pq_CPPFLAGS) $(CPPFLAGS) $(pq_CFLAGS) $(CFLAGS) -MT src/pq-read_word.o -MD -MP -MF src/$(DEPDIR)/pq-read_word.Tpo -c -o src/pq-read_word.o `test -f 'src/read_word.c' || echo '$(srcdir)/'`src/read_word.c
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) src/$(DEPDIR)/pq-read_word.Tpo src/$(DEPDIR)/pq-read_word.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='src/read_word.c' object='src/pq-read_word.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) $(pq_CPPFLAGS) $(CPPFLAGS) $(pq_CFLAGS) $(CFLAGS) -c -o src/pq-read_word.o `test -f 'src/read_word.c' || echo '$(srcdir)/'`src/read_word.c
src/pq-read_word.obj: src/read_word.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(pq_CPPFLAGS) $(CPPFLAGS) $(pq_CFLAGS) $(CFLAGS) -MT src/pq-read_word.obj -MD -MP -MF src/$(DEPDIR)/pq-read_word.Tpo -c -o src/pq-read_word.obj `if test -f 'src/read_word.c'; then $(CYGPATH_W) 'src/read_word.c'; else $(CYGPATH_W) '$(srcdir)/src/read_word.c'; fi`
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) src/$(DEPDIR)/pq-read_word.Tpo src/$(DEPDIR)/pq-read_word.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='src/read_word.c' object='src/pq-read_word.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) $(pq_CPPFLAGS) $(CPPFLAGS) $(pq_CFLAGS) $(CFLAGS) -c -o src/pq-read_word.obj `if test -f 'src/read_word.c'; then $(CYGPATH_W) 'src/read_word.c'; else $(CYGPATH_W) '$(srcdir)/src/read_word.c'; fi`
src/pq-reduce_matrix.o: src/reduce_matrix.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(pq_CPPFLAGS) $(CPPFLAGS) $(pq_CFLAGS) $(CFLAGS) -MT src/pq-reduce_matrix.o -MD -MP -MF src/$(DEPDIR)/pq-reduce_matrix.Tpo -c -o src/pq-reduce_matrix.o `test -f 'src/reduce_matrix.c' || echo '$(srcdir)/'`src/reduce_matrix.c
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) src/$(DEPDIR)/pq-reduce_matrix.Tpo src/$(DEPDIR)/pq-reduce_matrix.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='src/reduce_matrix.c' object='src/pq-reduce_matrix.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) $(pq_CPPFLAGS) $(CPPFLAGS) $(pq_CFLAGS) $(CFLAGS) -c -o src/pq-reduce_matrix.o `test -f 'src/reduce_matrix.c' || echo '$(srcdir)/'`src/reduce_matrix.c
src/pq-reduce_matrix.obj: src/reduce_matrix.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(pq_CPPFLAGS) $(CPPFLAGS) $(pq_CFLAGS) $(CFLAGS) -MT src/pq-reduce_matrix.obj -MD -MP -MF src/$(DEPDIR)/pq-reduce_matrix.Tpo -c -o src/pq-reduce_matrix.obj `if test -f 'src/reduce_matrix.c'; then $(CYGPATH_W) 'src/reduce_matrix.c'; else $(CYGPATH_W) '$(srcdir)/src/reduce_matrix.c'; fi`
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) src/$(DEPDIR)/pq-reduce_matrix.Tpo src/$(DEPDIR)/pq-reduce_matrix.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='src/reduce_matrix.c' object='src/pq-reduce_matrix.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) $(pq_CPPFLAGS) $(CPPFLAGS) $(pq_CFLAGS) $(CFLAGS) -c -o src/pq-reduce_matrix.obj `if test -f 'src/reduce_matrix.c'; then $(CYGPATH_W) 'src/reduce_matrix.c'; else $(CYGPATH_W) '$(srcdir)/src/reduce_matrix.c'; fi`
src/pq-reduced_covers.o: src/reduced_covers.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(pq_CPPFLAGS) $(CPPFLAGS) $(pq_CFLAGS) $(CFLAGS) -MT src/pq-reduced_covers.o -MD -MP -MF src/$(DEPDIR)/pq-reduced_covers.Tpo -c -o src/pq-reduced_covers.o `test -f 'src/reduced_covers.c' || echo '$(srcdir)/'`src/reduced_covers.c
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) src/$(DEPDIR)/pq-reduced_covers.Tpo src/$(DEPDIR)/pq-reduced_covers.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='src/reduced_covers.c' object='src/pq-reduced_covers.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) $(pq_CPPFLAGS) $(CPPFLAGS) $(pq_CFLAGS) $(CFLAGS) -c -o src/pq-reduced_covers.o `test -f 'src/reduced_covers.c' || echo '$(srcdir)/'`src/reduced_covers.c
src/pq-reduced_covers.obj: src/reduced_covers.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(pq_CPPFLAGS) $(CPPFLAGS) $(pq_CFLAGS) $(CFLAGS) -MT src/pq-reduced_covers.obj -MD -MP -MF src/$(DEPDIR)/pq-reduced_covers.Tpo -c -o src/pq-reduced_covers.obj `if test -f 'src/reduced_covers.c'; then $(CYGPATH_W) 'src/reduced_covers.c'; else $(CYGPATH_W) '$(srcdir)/src/reduced_covers.c'; fi`
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) src/$(DEPDIR)/pq-reduced_covers.Tpo src/$(DEPDIR)/pq-reduced_covers.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='src/reduced_covers.c' object='src/pq-reduced_covers.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) $(pq_CPPFLAGS) $(CPPFLAGS) $(pq_CFLAGS) $(CFLAGS) -c -o src/pq-reduced_covers.obj `if test -f 'src/reduced_covers.c'; then $(CYGPATH_W) 'src/reduced_covers.c'; else $(CYGPATH_W) '$(srcdir)/src/reduced_covers.c'; fi`
src/pq-report_error.o: src/report_error.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(pq_CPPFLAGS) $(CPPFLAGS) $(pq_CFLAGS) $(CFLAGS) -MT src/pq-report_error.o -MD -MP -MF src/$(DEPDIR)/pq-report_error.Tpo -c -o src/pq-report_error.o `test -f 'src/report_error.c' || echo '$(srcdir)/'`src/report_error.c
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) src/$(DEPDIR)/pq-report_error.Tpo src/$(DEPDIR)/pq-report_error.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='src/report_error.c' object='src/pq-report_error.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) $(pq_CPPFLAGS) $(CPPFLAGS) $(pq_CFLAGS) $(CFLAGS) -c -o src/pq-report_error.o `test -f 'src/report_error.c' || echo '$(srcdir)/'`src/report_error.c
src/pq-report_error.obj: src/report_error.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(pq_CPPFLAGS) $(CPPFLAGS) $(pq_CFLAGS) $(CFLAGS) -MT src/pq-report_error.obj -MD -MP -MF src/$(DEPDIR)/pq-report_error.Tpo -c -o src/pq-report_error.obj `if test -f 'src/report_error.c'; then $(CYGPATH_W) 'src/report_error.c'; else $(CYGPATH_W) '$(srcdir)/src/report_error.c'; fi`
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) src/$(DEPDIR)/pq-report_error.Tpo src/$(DEPDIR)/pq-report_error.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='src/report_error.c' object='src/pq-report_error.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) $(pq_CPPFLAGS) $(CPPFLAGS) $(pq_CFLAGS) $(CFLAGS) -c -o src/pq-report_error.obj `if test -f 'src/report_error.c'; then $(CYGPATH_W) 'src/report_error.c'; else $(CYGPATH_W) '$(srcdir)/src/report_error.c'; fi`
src/pq-restore_group.o: src/restore_group.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(pq_CPPFLAGS) $(CPPFLAGS) $(pq_CFLAGS) $(CFLAGS) -MT src/pq-restore_group.o -MD -MP -MF src/$(DEPDIR)/pq-restore_group.Tpo -c -o src/pq-restore_group.o `test -f 'src/restore_group.c' || echo '$(srcdir)/'`src/restore_group.c
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) src/$(DEPDIR)/pq-restore_group.Tpo src/$(DEPDIR)/pq-restore_group.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='src/restore_group.c' object='src/pq-restore_group.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) $(pq_CPPFLAGS) $(CPPFLAGS) $(pq_CFLAGS) $(CFLAGS) -c -o src/pq-restore_group.o `test -f 'src/restore_group.c' || echo '$(srcdir)/'`src/restore_group.c
src/pq-restore_group.obj: src/restore_group.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(pq_CPPFLAGS) $(CPPFLAGS) $(pq_CFLAGS) $(CFLAGS) -MT src/pq-restore_group.obj -MD -MP -MF src/$(DEPDIR)/pq-restore_group.Tpo -c -o src/pq-restore_group.obj `if test -f 'src/restore_group.c'; then $(CYGPATH_W) 'src/restore_group.c'; else $(CYGPATH_W) '$(srcdir)/src/restore_group.c'; fi`
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) src/$(DEPDIR)/pq-restore_group.Tpo src/$(DEPDIR)/pq-restore_group.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='src/restore_group.c' object='src/pq-restore_group.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) $(pq_CPPFLAGS) $(CPPFLAGS) $(pq_CFLAGS) $(CFLAGS) -c -o src/pq-restore_group.obj `if test -f 'src/restore_group.c'; then $(CYGPATH_W) 'src/restore_group.c'; else $(CYGPATH_W) '$(srcdir)/src/restore_group.c'; fi`
src/pq-setup.o: src/setup.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(pq_CPPFLAGS) $(CPPFLAGS) $(pq_CFLAGS) $(CFLAGS) -MT src/pq-setup.o -MD -MP -MF src/$(DEPDIR)/pq-setup.Tpo -c -o src/pq-setup.o `test -f 'src/setup.c' || echo '$(srcdir)/'`src/setup.c
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) src/$(DEPDIR)/pq-setup.Tpo src/$(DEPDIR)/pq-setup.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='src/setup.c' object='src/pq-setup.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) $(pq_CPPFLAGS) $(CPPFLAGS) $(pq_CFLAGS) $(CFLAGS) -c -o src/pq-setup.o `test -f 'src/setup.c' || echo '$(srcdir)/'`src/setup.c
src/pq-setup.obj: src/setup.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(pq_CPPFLAGS) $(CPPFLAGS) $(pq_CFLAGS) $(CFLAGS) -MT src/pq-setup.obj -MD -MP -MF src/$(DEPDIR)/pq-setup.Tpo -c -o src/pq-setup.obj `if test -f 'src/setup.c'; then $(CYGPATH_W) 'src/setup.c'; else $(CYGPATH_W) '$(srcdir)/src/setup.c'; fi`
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) src/$(DEPDIR)/pq-setup.Tpo src/$(DEPDIR)/pq-setup.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='src/setup.c' object='src/pq-setup.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) $(pq_CPPFLAGS) $(CPPFLAGS) $(pq_CFLAGS) $(CFLAGS) -c -o src/pq-setup.obj `if test -f 'src/setup.c'; then $(CYGPATH_W) 'src/setup.c'; else $(CYGPATH_W) '$(srcdir)/src/setup.c'; fi`
src/pq-setup_reps.o: src/setup_reps.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(pq_CPPFLAGS) $(CPPFLAGS) $(pq_CFLAGS) $(CFLAGS) -MT src/pq-setup_reps.o -MD -MP -MF src/$(DEPDIR)/pq-setup_reps.Tpo -c -o src/pq-setup_reps.o `test -f 'src/setup_reps.c' || echo '$(srcdir)/'`src/setup_reps.c
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) src/$(DEPDIR)/pq-setup_reps.Tpo src/$(DEPDIR)/pq-setup_reps.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='src/setup_reps.c' object='src/pq-setup_reps.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) $(pq_CPPFLAGS) $(CPPFLAGS) $(pq_CFLAGS) $(CFLAGS) -c -o src/pq-setup_reps.o `test -f 'src/setup_reps.c' || echo '$(srcdir)/'`src/setup_reps.c
src/pq-setup_reps.obj: src/setup_reps.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(pq_CPPFLAGS) $(CPPFLAGS) $(pq_CFLAGS) $(CFLAGS) -MT src/pq-setup_reps.obj -MD -MP -MF src/$(DEPDIR)/pq-setup_reps.Tpo -c -o src/pq-setup_reps.obj `if test -f 'src/setup_reps.c'; then $(CYGPATH_W) 'src/setup_reps.c'; else $(CYGPATH_W) '$(srcdir)/src/setup_reps.c'; fi`
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) src/$(DEPDIR)/pq-setup_reps.Tpo src/$(DEPDIR)/pq-setup_reps.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='src/setup_reps.c' object='src/pq-setup_reps.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) $(pq_CPPFLAGS) $(CPPFLAGS) $(pq_CFLAGS) $(CFLAGS) -c -o src/pq-setup_reps.obj `if test -f 'src/setup_reps.c'; then $(CYGPATH_W) 'src/setup_reps.c'; else $(CYGPATH_W) '$(srcdir)/src/setup_reps.c'; fi`
src/pq-soluble_orbits.o: src/soluble_orbits.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(pq_CPPFLAGS) $(CPPFLAGS) $(pq_CFLAGS) $(CFLAGS) -MT src/pq-soluble_orbits.o -MD -MP -MF src/$(DEPDIR)/pq-soluble_orbits.Tpo -c -o src/pq-soluble_orbits.o `test -f 'src/soluble_orbits.c' || echo '$(srcdir)/'`src/soluble_orbits.c
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) src/$(DEPDIR)/pq-soluble_orbits.Tpo src/$(DEPDIR)/pq-soluble_orbits.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='src/soluble_orbits.c' object='src/pq-soluble_orbits.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) $(pq_CPPFLAGS) $(CPPFLAGS) $(pq_CFLAGS) $(CFLAGS) -c -o src/pq-soluble_orbits.o `test -f 'src/soluble_orbits.c' || echo '$(srcdir)/'`src/soluble_orbits.c
src/pq-soluble_orbits.obj: src/soluble_orbits.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(pq_CPPFLAGS) $(CPPFLAGS) $(pq_CFLAGS) $(CFLAGS) -MT src/pq-soluble_orbits.obj -MD -MP -MF src/$(DEPDIR)/pq-soluble_orbits.Tpo -c -o src/pq-soluble_orbits.obj `if test -f 'src/soluble_orbits.c'; then $(CYGPATH_W) 'src/soluble_orbits.c'; else $(CYGPATH_W) '$(srcdir)/src/soluble_orbits.c'; fi`
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) src/$(DEPDIR)/pq-soluble_orbits.Tpo src/$(DEPDIR)/pq-soluble_orbits.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='src/soluble_orbits.c' object='src/pq-soluble_orbits.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) $(pq_CPPFLAGS) $(CPPFLAGS) $(pq_CFLAGS) $(CFLAGS) -c -o src/pq-soluble_orbits.obj `if test -f 'src/soluble_orbits.c'; then $(CYGPATH_W) 'src/soluble_orbits.c'; else $(CYGPATH_W) '$(srcdir)/src/soluble_orbits.c'; fi`
src/pq-solve_equation.o: src/solve_equation.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(pq_CPPFLAGS) $(CPPFLAGS) $(pq_CFLAGS) $(CFLAGS) -MT src/pq-solve_equation.o -MD -MP -MF src/$(DEPDIR)/pq-solve_equation.Tpo -c -o src/pq-solve_equation.o `test -f 'src/solve_equation.c' || echo '$(srcdir)/'`src/solve_equation.c
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) src/$(DEPDIR)/pq-solve_equation.Tpo src/$(DEPDIR)/pq-solve_equation.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='src/solve_equation.c' object='src/pq-solve_equation.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) $(pq_CPPFLAGS) $(CPPFLAGS) $(pq_CFLAGS) $(CFLAGS) -c -o src/pq-solve_equation.o `test -f 'src/solve_equation.c' || echo '$(srcdir)/'`src/solve_equation.c
src/pq-solve_equation.obj: src/solve_equation.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(pq_CPPFLAGS) $(CPPFLAGS) $(pq_CFLAGS) $(CFLAGS) -MT src/pq-solve_equation.obj -MD -MP -MF src/$(DEPDIR)/pq-solve_equation.Tpo -c -o src/pq-solve_equation.obj `if test -f 'src/solve_equation.c'; then $(CYGPATH_W) 'src/solve_equation.c'; else $(CYGPATH_W) '$(srcdir)/src/solve_equation.c'; fi`
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) src/$(DEPDIR)/pq-solve_equation.Tpo src/$(DEPDIR)/pq-solve_equation.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='src/solve_equation.c' object='src/pq-solve_equation.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) $(pq_CPPFLAGS) $(CPPFLAGS) $(pq_CFLAGS) $(CFLAGS) -c -o src/pq-solve_equation.obj `if test -f 'src/solve_equation.c'; then $(CYGPATH_W) 'src/solve_equation.c'; else $(CYGPATH_W) '$(srcdir)/src/solve_equation.c'; fi`
src/pq-stabiliser.o: src/stabiliser.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(pq_CPPFLAGS) $(CPPFLAGS) $(pq_CFLAGS) $(CFLAGS) -MT src/pq-stabiliser.o -MD -MP -MF src/$(DEPDIR)/pq-stabiliser.Tpo -c -o src/pq-stabiliser.o `test -f 'src/stabiliser.c' || echo '$(srcdir)/'`src/stabiliser.c
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) src/$(DEPDIR)/pq-stabiliser.Tpo src/$(DEPDIR)/pq-stabiliser.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='src/stabiliser.c' object='src/pq-stabiliser.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) $(pq_CPPFLAGS) $(CPPFLAGS) $(pq_CFLAGS) $(CFLAGS) -c -o src/pq-stabiliser.o `test -f 'src/stabiliser.c' || echo '$(srcdir)/'`src/stabiliser.c
src/pq-stabiliser.obj: src/stabiliser.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(pq_CPPFLAGS) $(CPPFLAGS) $(pq_CFLAGS) $(CFLAGS) -MT src/pq-stabiliser.obj -MD -MP -MF src/$(DEPDIR)/pq-stabiliser.Tpo -c -o src/pq-stabiliser.obj `if test -f 'src/stabiliser.c'; then $(CYGPATH_W) 'src/stabiliser.c'; else $(CYGPATH_W) '$(srcdir)/src/stabiliser.c'; fi`
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) src/$(DEPDIR)/pq-stabiliser.Tpo src/$(DEPDIR)/pq-stabiliser.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='src/stabiliser.c' object='src/pq-stabiliser.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) $(pq_CPPFLAGS) $(CPPFLAGS) $(pq_CFLAGS) $(CFLAGS) -c -o src/pq-stabiliser.obj `if test -f 'src/stabiliser.c'; then $(CYGPATH_W) 'src/stabiliser.c'; else $(CYGPATH_W) '$(srcdir)/src/stabiliser.c'; fi`
src/pq-stages.o: src/stages.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(pq_CPPFLAGS) $(CPPFLAGS) $(pq_CFLAGS) $(CFLAGS) -MT src/pq-stages.o -MD -MP -MF src/$(DEPDIR)/pq-stages.Tpo -c -o src/pq-stages.o `test -f 'src/stages.c' || echo '$(srcdir)/'`src/stages.c
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) src/$(DEPDIR)/pq-stages.Tpo src/$(DEPDIR)/pq-stages.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='src/stages.c' object='src/pq-stages.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) $(pq_CPPFLAGS) $(CPPFLAGS) $(pq_CFLAGS) $(CFLAGS) -c -o src/pq-stages.o `test -f 'src/stages.c' || echo '$(srcdir)/'`src/stages.c
src/pq-stages.obj: src/stages.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(pq_CPPFLAGS) $(CPPFLAGS) $(pq_CFLAGS) $(CFLAGS) -MT src/pq-stages.obj -MD -MP -MF src/$(DEPDIR)/pq-stages.Tpo -c -o src/pq-stages.obj `if test -f 'src/stages.c'; then $(CYGPATH_W) 'src/stages.c'; else $(CYGPATH_W) '$(srcdir)/src/stages.c'; fi`
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) src/$(DEPDIR)/pq-stages.Tpo src/$(DEPDIR)/pq-stages.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='src/stages.c' object='src/pq-stages.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) $(pq_CPPFLAGS) $(CPPFLAGS) $(pq_CFLAGS) $(CFLAGS) -c -o src/pq-stages.obj `if test -f 'src/stages.c'; then $(CYGPATH_W) 'src/stages.c'; else $(CYGPATH_W) '$(srcdir)/src/stages.c'; fi`
src/pq-standard.o: src/standard.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(pq_CPPFLAGS) $(CPPFLAGS) $(pq_CFLAGS) $(CFLAGS) -MT src/pq-standard.o -MD -MP -MF src/$(DEPDIR)/pq-standard.Tpo -c -o src/pq-standard.o `test -f 'src/standard.c' || echo '$(srcdir)/'`src/standard.c
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) src/$(DEPDIR)/pq-standard.Tpo src/$(DEPDIR)/pq-standard.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='src/standard.c' object='src/pq-standard.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) $(pq_CPPFLAGS) $(CPPFLAGS) $(pq_CFLAGS) $(CFLAGS) -c -o src/pq-standard.o `test -f 'src/standard.c' || echo '$(srcdir)/'`src/standard.c
src/pq-standard.obj: src/standard.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(pq_CPPFLAGS) $(CPPFLAGS) $(pq_CFLAGS) $(CFLAGS) -MT src/pq-standard.obj -MD -MP -MF src/$(DEPDIR)/pq-standard.Tpo -c -o src/pq-standard.obj `if test -f 'src/standard.c'; then $(CYGPATH_W) 'src/standard.c'; else $(CYGPATH_W) '$(srcdir)/src/standard.c'; fi`
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) src/$(DEPDIR)/pq-standard.Tpo src/$(DEPDIR)/pq-standard.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='src/standard.c' object='src/pq-standard.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) $(pq_CPPFLAGS) $(CPPFLAGS) $(pq_CFLAGS) $(CFLAGS) -c -o src/pq-standard.obj `if test -f 'src/standard.c'; then $(CYGPATH_W) 'src/standard.c'; else $(CYGPATH_W) '$(srcdir)/src/standard.c'; fi`
src/pq-start_group.o: src/start_group.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(pq_CPPFLAGS) $(CPPFLAGS) $(pq_CFLAGS) $(CFLAGS) -MT src/pq-start_group.o -MD -MP -MF src/$(DEPDIR)/pq-start_group.Tpo -c -o src/pq-start_group.o `test -f 'src/start_group.c' || echo '$(srcdir)/'`src/start_group.c
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) src/$(DEPDIR)/pq-start_group.Tpo src/$(DEPDIR)/pq-start_group.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='src/start_group.c' object='src/pq-start_group.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) $(pq_CPPFLAGS) $(CPPFLAGS) $(pq_CFLAGS) $(CFLAGS) -c -o src/pq-start_group.o `test -f 'src/start_group.c' || echo '$(srcdir)/'`src/start_group.c
src/pq-start_group.obj: src/start_group.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(pq_CPPFLAGS) $(CPPFLAGS) $(pq_CFLAGS) $(CFLAGS) -MT src/pq-start_group.obj -MD -MP -MF src/$(DEPDIR)/pq-start_group.Tpo -c -o src/pq-start_group.obj `if test -f 'src/start_group.c'; then $(CYGPATH_W) 'src/start_group.c'; else $(CYGPATH_W) '$(srcdir)/src/start_group.c'; fi`
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) src/$(DEPDIR)/pq-start_group.Tpo src/$(DEPDIR)/pq-start_group.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='src/start_group.c' object='src/pq-start_group.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) $(pq_CPPFLAGS) $(CPPFLAGS) $(pq_CFLAGS) $(CFLAGS) -c -o src/pq-start_group.obj `if test -f 'src/start_group.c'; then $(CYGPATH_W) 'src/start_group.c'; else $(CYGPATH_W) '$(srcdir)/src/start_group.c'; fi`
src/pq-start_iteration.o: src/start_iteration.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(pq_CPPFLAGS) $(CPPFLAGS) $(pq_CFLAGS) $(CFLAGS) -MT src/pq-start_iteration.o -MD -MP -MF src/$(DEPDIR)/pq-start_iteration.Tpo -c -o src/pq-start_iteration.o `test -f 'src/start_iteration.c' || echo '$(srcdir)/'`src/start_iteration.c
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) src/$(DEPDIR)/pq-start_iteration.Tpo src/$(DEPDIR)/pq-start_iteration.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='src/start_iteration.c' object='src/pq-start_iteration.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) $(pq_CPPFLAGS) $(CPPFLAGS) $(pq_CFLAGS) $(CFLAGS) -c -o src/pq-start_iteration.o `test -f 'src/start_iteration.c' || echo '$(srcdir)/'`src/start_iteration.c
src/pq-start_iteration.obj: src/start_iteration.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(pq_CPPFLAGS) $(CPPFLAGS) $(pq_CFLAGS) $(CFLAGS) -MT src/pq-start_iteration.obj -MD -MP -MF src/$(DEPDIR)/pq-start_iteration.Tpo -c -o src/pq-start_iteration.obj `if test -f 'src/start_iteration.c'; then $(CYGPATH_W) 'src/start_iteration.c'; else $(CYGPATH_W) '$(srcdir)/src/start_iteration.c'; fi`
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) src/$(DEPDIR)/pq-start_iteration.Tpo src/$(DEPDIR)/pq-start_iteration.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='src/start_iteration.c' object='src/pq-start_iteration.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) $(pq_CPPFLAGS) $(CPPFLAGS) $(pq_CFLAGS) $(CFLAGS) -c -o src/pq-start_iteration.obj `if test -f 'src/start_iteration.c'; then $(CYGPATH_W) 'src/start_iteration.c'; else $(CYGPATH_W) '$(srcdir)/src/start_iteration.c'; fi`
src/pq-step_range.o: src/step_range.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(pq_CPPFLAGS) $(CPPFLAGS) $(pq_CFLAGS) $(CFLAGS) -MT src/pq-step_range.o -MD -MP -MF src/$(DEPDIR)/pq-step_range.Tpo -c -o src/pq-step_range.o `test -f 'src/step_range.c' || echo '$(srcdir)/'`src/step_range.c
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) src/$(DEPDIR)/pq-step_range.Tpo src/$(DEPDIR)/pq-step_range.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='src/step_range.c' object='src/pq-step_range.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) $(pq_CPPFLAGS) $(CPPFLAGS) $(pq_CFLAGS) $(CFLAGS) -c -o src/pq-step_range.o `test -f 'src/step_range.c' || echo '$(srcdir)/'`src/step_range.c
src/pq-step_range.obj: src/step_range.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(pq_CPPFLAGS) $(CPPFLAGS) $(pq_CFLAGS) $(CFLAGS) -MT src/pq-step_range.obj -MD -MP -MF src/$(DEPDIR)/pq-step_range.Tpo -c -o src/pq-step_range.obj `if test -f 'src/step_range.c'; then $(CYGPATH_W) 'src/step_range.c'; else $(CYGPATH_W) '$(srcdir)/src/step_range.c'; fi`
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) src/$(DEPDIR)/pq-step_range.Tpo src/$(DEPDIR)/pq-step_range.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='src/step_range.c' object='src/pq-step_range.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) $(pq_CPPFLAGS) $(CPPFLAGS) $(pq_CFLAGS) $(CFLAGS) -c -o src/pq-step_range.obj `if test -f 'src/step_range.c'; then $(CYGPATH_W) 'src/step_range.c'; else $(CYGPATH_W) '$(srcdir)/src/step_range.c'; fi`
src/pq-store_definition_sets.o: src/store_definition_sets.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(pq_CPPFLAGS) $(CPPFLAGS) $(pq_CFLAGS) $(CFLAGS) -MT src/pq-store_definition_sets.o -MD -MP -MF src/$(DEPDIR)/pq-store_definition_sets.Tpo -c -o src/pq-store_definition_sets.o `test -f 'src/store_definition_sets.c' || echo '$(srcdir)/'`src/store_definition_sets.c
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) src/$(DEPDIR)/pq-store_definition_sets.Tpo src/$(DEPDIR)/pq-store_definition_sets.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='src/store_definition_sets.c' object='src/pq-store_definition_sets.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) $(pq_CPPFLAGS) $(CPPFLAGS) $(pq_CFLAGS) $(CFLAGS) -c -o src/pq-store_definition_sets.o `test -f 'src/store_definition_sets.c' || echo '$(srcdir)/'`src/store_definition_sets.c
src/pq-store_definition_sets.obj: src/store_definition_sets.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(pq_CPPFLAGS) $(CPPFLAGS) $(pq_CFLAGS) $(CFLAGS) -MT src/pq-store_definition_sets.obj -MD -MP -MF src/$(DEPDIR)/pq-store_definition_sets.Tpo -c -o src/pq-store_definition_sets.obj `if test -f 'src/store_definition_sets.c'; then $(CYGPATH_W) 'src/store_definition_sets.c'; else $(CYGPATH_W) '$(srcdir)/src/store_definition_sets.c'; fi`
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) src/$(DEPDIR)/pq-store_definition_sets.Tpo src/$(DEPDIR)/pq-store_definition_sets.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='src/store_definition_sets.c' object='src/pq-store_definition_sets.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) $(pq_CPPFLAGS) $(CPPFLAGS) $(pq_CFLAGS) $(CFLAGS) -c -o src/pq-store_definition_sets.obj `if test -f 'src/store_definition_sets.c'; then $(CYGPATH_W) 'src/store_definition_sets.c'; else $(CYGPATH_W) '$(srcdir)/src/store_definition_sets.c'; fi`
src/pq-strip_identities.o: src/strip_identities.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(pq_CPPFLAGS) $(CPPFLAGS) $(pq_CFLAGS) $(CFLAGS) -MT src/pq-strip_identities.o -MD -MP -MF src/$(DEPDIR)/pq-strip_identities.Tpo -c -o src/pq-strip_identities.o `test -f 'src/strip_identities.c' || echo '$(srcdir)/'`src/strip_identities.c
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) src/$(DEPDIR)/pq-strip_identities.Tpo src/$(DEPDIR)/pq-strip_identities.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='src/strip_identities.c' object='src/pq-strip_identities.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) $(pq_CPPFLAGS) $(CPPFLAGS) $(pq_CFLAGS) $(CFLAGS) -c -o src/pq-strip_identities.o `test -f 'src/strip_identities.c' || echo '$(srcdir)/'`src/strip_identities.c
src/pq-strip_identities.obj: src/strip_identities.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(pq_CPPFLAGS) $(CPPFLAGS) $(pq_CFLAGS) $(CFLAGS) -MT src/pq-strip_identities.obj -MD -MP -MF src/$(DEPDIR)/pq-strip_identities.Tpo -c -o src/pq-strip_identities.obj `if test -f 'src/strip_identities.c'; then $(CYGPATH_W) 'src/strip_identities.c'; else $(CYGPATH_W) '$(srcdir)/src/strip_identities.c'; fi`
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) src/$(DEPDIR)/pq-strip_identities.Tpo src/$(DEPDIR)/pq-strip_identities.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='src/strip_identities.c' object='src/pq-strip_identities.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) $(pq_CPPFLAGS) $(CPPFLAGS) $(pq_CFLAGS) $(CFLAGS) -c -o src/pq-strip_identities.obj `if test -f 'src/strip_identities.c'; then $(CYGPATH_W) 'src/strip_identities.c'; else $(CYGPATH_W) '$(srcdir)/src/strip_identities.c'; fi`
src/pq-subgroup_to_label.o: src/subgroup_to_label.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(pq_CPPFLAGS) $(CPPFLAGS) $(pq_CFLAGS) $(CFLAGS) -MT src/pq-subgroup_to_label.o -MD -MP -MF src/$(DEPDIR)/pq-subgroup_to_label.Tpo -c -o src/pq-subgroup_to_label.o `test -f 'src/subgroup_to_label.c' || echo '$(srcdir)/'`src/subgroup_to_label.c
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) src/$(DEPDIR)/pq-subgroup_to_label.Tpo src/$(DEPDIR)/pq-subgroup_to_label.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='src/subgroup_to_label.c' object='src/pq-subgroup_to_label.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) $(pq_CPPFLAGS) $(CPPFLAGS) $(pq_CFLAGS) $(CFLAGS) -c -o src/pq-subgroup_to_label.o `test -f 'src/subgroup_to_label.c' || echo '$(srcdir)/'`src/subgroup_to_label.c
src/pq-subgroup_to_label.obj: src/subgroup_to_label.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(pq_CPPFLAGS) $(CPPFLAGS) $(pq_CFLAGS) $(CFLAGS) -MT src/pq-subgroup_to_label.obj -MD -MP -MF src/$(DEPDIR)/pq-subgroup_to_label.Tpo -c -o src/pq-subgroup_to_label.obj `if test -f 'src/subgroup_to_label.c'; then $(CYGPATH_W) 'src/subgroup_to_label.c'; else $(CYGPATH_W) '$(srcdir)/src/subgroup_to_label.c'; fi`
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) src/$(DEPDIR)/pq-subgroup_to_label.Tpo src/$(DEPDIR)/pq-subgroup_to_label.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='src/subgroup_to_label.c' object='src/pq-subgroup_to_label.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) $(pq_CPPFLAGS) $(CPPFLAGS) $(pq_CFLAGS) $(CFLAGS) -c -o src/pq-subgroup_to_label.obj `if test -f 'src/subgroup_to_label.c'; then $(CYGPATH_W) 'src/subgroup_to_label.c'; else $(CYGPATH_W) '$(srcdir)/src/subgroup_to_label.c'; fi`
src/pq-system.o: src/system.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(pq_CPPFLAGS) $(CPPFLAGS) $(pq_CFLAGS) $(CFLAGS) -MT src/pq-system.o -MD -MP -MF src/$(DEPDIR)/pq-system.Tpo -c -o src/pq-system.o `test -f 'src/system.c' || echo '$(srcdir)/'`src/system.c
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) src/$(DEPDIR)/pq-system.Tpo src/$(DEPDIR)/pq-system.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='src/system.c' object='src/pq-system.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) $(pq_CPPFLAGS) $(CPPFLAGS) $(pq_CFLAGS) $(CFLAGS) -c -o src/pq-system.o `test -f 'src/system.c' || echo '$(srcdir)/'`src/system.c
src/pq-system.obj: src/system.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(pq_CPPFLAGS) $(CPPFLAGS) $(pq_CFLAGS) $(CFLAGS) -MT src/pq-system.obj -MD -MP -MF src/$(DEPDIR)/pq-system.Tpo -c -o src/pq-system.obj `if test -f 'src/system.c'; then $(CYGPATH_W) 'src/system.c'; else $(CYGPATH_W) '$(srcdir)/src/system.c'; fi`
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) src/$(DEPDIR)/pq-system.Tpo src/$(DEPDIR)/pq-system.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='src/system.c' object='src/pq-system.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) $(pq_CPPFLAGS) $(CPPFLAGS) $(pq_CFLAGS) $(CFLAGS) -c -o src/pq-system.obj `if test -f 'src/system.c'; then $(CYGPATH_W) 'src/system.c'; else $(CYGPATH_W) '$(srcdir)/src/system.c'; fi`
src/pq-tail_info.o: src/tail_info.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(pq_CPPFLAGS) $(CPPFLAGS) $(pq_CFLAGS) $(CFLAGS) -MT src/pq-tail_info.o -MD -MP -MF src/$(DEPDIR)/pq-tail_info.Tpo -c -o src/pq-tail_info.o `test -f 'src/tail_info.c' || echo '$(srcdir)/'`src/tail_info.c
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) src/$(DEPDIR)/pq-tail_info.Tpo src/$(DEPDIR)/pq-tail_info.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='src/tail_info.c' object='src/pq-tail_info.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) $(pq_CPPFLAGS) $(CPPFLAGS) $(pq_CFLAGS) $(CFLAGS) -c -o src/pq-tail_info.o `test -f 'src/tail_info.c' || echo '$(srcdir)/'`src/tail_info.c
src/pq-tail_info.obj: src/tail_info.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(pq_CPPFLAGS) $(CPPFLAGS) $(pq_CFLAGS) $(CFLAGS) -MT src/pq-tail_info.obj -MD -MP -MF src/$(DEPDIR)/pq-tail_info.Tpo -c -o src/pq-tail_info.obj `if test -f 'src/tail_info.c'; then $(CYGPATH_W) 'src/tail_info.c'; else $(CYGPATH_W) '$(srcdir)/src/tail_info.c'; fi`
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) src/$(DEPDIR)/pq-tail_info.Tpo src/$(DEPDIR)/pq-tail_info.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='src/tail_info.c' object='src/pq-tail_info.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) $(pq_CPPFLAGS) $(CPPFLAGS) $(pq_CFLAGS) $(CFLAGS) -c -o src/pq-tail_info.obj `if test -f 'src/tail_info.c'; then $(CYGPATH_W) 'src/tail_info.c'; else $(CYGPATH_W) '$(srcdir)/src/tail_info.c'; fi`
src/pq-tails.o: src/tails.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(pq_CPPFLAGS) $(CPPFLAGS) $(pq_CFLAGS) $(CFLAGS) -MT src/pq-tails.o -MD -MP -MF src/$(DEPDIR)/pq-tails.Tpo -c -o src/pq-tails.o `test -f 'src/tails.c' || echo '$(srcdir)/'`src/tails.c
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) src/$(DEPDIR)/pq-tails.Tpo src/$(DEPDIR)/pq-tails.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='src/tails.c' object='src/pq-tails.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) $(pq_CPPFLAGS) $(CPPFLAGS) $(pq_CFLAGS) $(CFLAGS) -c -o src/pq-tails.o `test -f 'src/tails.c' || echo '$(srcdir)/'`src/tails.c
src/pq-tails.obj: src/tails.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(pq_CPPFLAGS) $(CPPFLAGS) $(pq_CFLAGS) $(CFLAGS) -MT src/pq-tails.obj -MD -MP -MF src/$(DEPDIR)/pq-tails.Tpo -c -o src/pq-tails.obj `if test -f 'src/tails.c'; then $(CYGPATH_W) 'src/tails.c'; else $(CYGPATH_W) '$(srcdir)/src/tails.c'; fi`
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) src/$(DEPDIR)/pq-tails.Tpo src/$(DEPDIR)/pq-tails.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='src/tails.c' object='src/pq-tails.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) $(pq_CPPFLAGS) $(CPPFLAGS) $(pq_CFLAGS) $(CFLAGS) -c -o src/pq-tails.obj `if test -f 'src/tails.c'; then $(CYGPATH_W) 'src/tails.c'; else $(CYGPATH_W) '$(srcdir)/src/tails.c'; fi`
src/pq-tails_filter.o: src/tails_filter.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(pq_CPPFLAGS) $(CPPFLAGS) $(pq_CFLAGS) $(CFLAGS) -MT src/pq-tails_filter.o -MD -MP -MF src/$(DEPDIR)/pq-tails_filter.Tpo -c -o src/pq-tails_filter.o `test -f 'src/tails_filter.c' || echo '$(srcdir)/'`src/tails_filter.c
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) src/$(DEPDIR)/pq-tails_filter.Tpo src/$(DEPDIR)/pq-tails_filter.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='src/tails_filter.c' object='src/pq-tails_filter.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) $(pq_CPPFLAGS) $(CPPFLAGS) $(pq_CFLAGS) $(CFLAGS) -c -o src/pq-tails_filter.o `test -f 'src/tails_filter.c' || echo '$(srcdir)/'`src/tails_filter.c
src/pq-tails_filter.obj: src/tails_filter.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(pq_CPPFLAGS) $(CPPFLAGS) $(pq_CFLAGS) $(CFLAGS) -MT src/pq-tails_filter.obj -MD -MP -MF src/$(DEPDIR)/pq-tails_filter.Tpo -c -o src/pq-tails_filter.obj `if test -f 'src/tails_filter.c'; then $(CYGPATH_W) 'src/tails_filter.c'; else $(CYGPATH_W) '$(srcdir)/src/tails_filter.c'; fi`
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) src/$(DEPDIR)/pq-tails_filter.Tpo src/$(DEPDIR)/pq-tails_filter.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='src/tails_filter.c' object='src/pq-tails_filter.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) $(pq_CPPFLAGS) $(CPPFLAGS) $(pq_CFLAGS) $(CFLAGS) -c -o src/pq-tails_filter.obj `if test -f 'src/tails_filter.c'; then $(CYGPATH_W) 'src/tails_filter.c'; else $(CYGPATH_W) '$(srcdir)/src/tails_filter.c'; fi`
src/pq-text.o: src/text.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(pq_CPPFLAGS) $(CPPFLAGS) $(pq_CFLAGS) $(CFLAGS) -MT src/pq-text.o -MD -MP -MF src/$(DEPDIR)/pq-text.Tpo -c -o src/pq-text.o `test -f 'src/text.c' || echo '$(srcdir)/'`src/text.c
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) src/$(DEPDIR)/pq-text.Tpo src/$(DEPDIR)/pq-text.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='src/text.c' object='src/pq-text.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) $(pq_CPPFLAGS) $(CPPFLAGS) $(pq_CFLAGS) $(CFLAGS) -c -o src/pq-text.o `test -f 'src/text.c' || echo '$(srcdir)/'`src/text.c
src/pq-text.obj: src/text.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(pq_CPPFLAGS) $(CPPFLAGS) $(pq_CFLAGS) $(CFLAGS) -MT src/pq-text.obj -MD -MP -MF src/$(DEPDIR)/pq-text.Tpo -c -o src/pq-text.obj `if test -f 'src/text.c'; then $(CYGPATH_W) 'src/text.c'; else $(CYGPATH_W) '$(srcdir)/src/text.c'; fi`
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) src/$(DEPDIR)/pq-text.Tpo src/$(DEPDIR)/pq-text.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='src/text.c' object='src/pq-text.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) $(pq_CPPFLAGS) $(CPPFLAGS) $(pq_CFLAGS) $(CFLAGS) -c -o src/pq-text.obj `if test -f 'src/text.c'; then $(CYGPATH_W) 'src/text.c'; else $(CYGPATH_W) '$(srcdir)/src/text.c'; fi`
src/pq-update.o: src/update.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(pq_CPPFLAGS) $(CPPFLAGS) $(pq_CFLAGS) $(CFLAGS) -MT src/pq-update.o -MD -MP -MF src/$(DEPDIR)/pq-update.Tpo -c -o src/pq-update.o `test -f 'src/update.c' || echo '$(srcdir)/'`src/update.c
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) src/$(DEPDIR)/pq-update.Tpo src/$(DEPDIR)/pq-update.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='src/update.c' object='src/pq-update.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) $(pq_CPPFLAGS) $(CPPFLAGS) $(pq_CFLAGS) $(CFLAGS) -c -o src/pq-update.o `test -f 'src/update.c' || echo '$(srcdir)/'`src/update.c
src/pq-update.obj: src/update.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(pq_CPPFLAGS) $(CPPFLAGS) $(pq_CFLAGS) $(CFLAGS) -MT src/pq-update.obj -MD -MP -MF src/$(DEPDIR)/pq-update.Tpo -c -o src/pq-update.obj `if test -f 'src/update.c'; then $(CYGPATH_W) 'src/update.c'; else $(CYGPATH_W) '$(srcdir)/src/update.c'; fi`
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) src/$(DEPDIR)/pq-update.Tpo src/$(DEPDIR)/pq-update.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='src/update.c' object='src/pq-update.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) $(pq_CPPFLAGS) $(CPPFLAGS) $(pq_CFLAGS) $(CFLAGS) -c -o src/pq-update.obj `if test -f 'src/update.c'; then $(CYGPATH_W) 'src/update.c'; else $(CYGPATH_W) '$(srcdir)/src/update.c'; fi`
src/pq-update_generators.o: src/update_generators.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(pq_CPPFLAGS) $(CPPFLAGS) $(pq_CFLAGS) $(CFLAGS) -MT src/pq-update_generators.o -MD -MP -MF src/$(DEPDIR)/pq-update_generators.Tpo -c -o src/pq-update_generators.o `test -f 'src/update_generators.c' || echo '$(srcdir)/'`src/update_generators.c
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) src/$(DEPDIR)/pq-update_generators.Tpo src/$(DEPDIR)/pq-update_generators.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='src/update_generators.c' object='src/pq-update_generators.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) $(pq_CPPFLAGS) $(CPPFLAGS) $(pq_CFLAGS) $(CFLAGS) -c -o src/pq-update_generators.o `test -f 'src/update_generators.c' || echo '$(srcdir)/'`src/update_generators.c
src/pq-update_generators.obj: src/update_generators.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(pq_CPPFLAGS) $(CPPFLAGS) $(pq_CFLAGS) $(CFLAGS) -MT src/pq-update_generators.obj -MD -MP -MF src/$(DEPDIR)/pq-update_generators.Tpo -c -o src/pq-update_generators.obj `if test -f 'src/update_generators.c'; then $(CYGPATH_W) 'src/update_generators.c'; else $(CYGPATH_W) '$(srcdir)/src/update_generators.c'; fi`
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) src/$(DEPDIR)/pq-update_generators.Tpo src/$(DEPDIR)/pq-update_generators.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='src/update_generators.c' object='src/pq-update_generators.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) $(pq_CPPFLAGS) $(CPPFLAGS) $(pq_CFLAGS) $(CFLAGS) -c -o src/pq-update_generators.obj `if test -f 'src/update_generators.c'; then $(CYGPATH_W) 'src/update_generators.c'; else $(CYGPATH_W) '$(srcdir)/src/update_generators.c'; fi`
src/pq-update_name.o: src/update_name.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(pq_CPPFLAGS) $(CPPFLAGS) $(pq_CFLAGS) $(CFLAGS) -MT src/pq-update_name.o -MD -MP -MF src/$(DEPDIR)/pq-update_name.Tpo -c -o src/pq-update_name.o `test -f 'src/update_name.c' || echo '$(srcdir)/'`src/update_name.c
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) src/$(DEPDIR)/pq-update_name.Tpo src/$(DEPDIR)/pq-update_name.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='src/update_name.c' object='src/pq-update_name.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) $(pq_CPPFLAGS) $(CPPFLAGS) $(pq_CFLAGS) $(CFLAGS) -c -o src/pq-update_name.o `test -f 'src/update_name.c' || echo '$(srcdir)/'`src/update_name.c
src/pq-update_name.obj: src/update_name.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(pq_CPPFLAGS) $(CPPFLAGS) $(pq_CFLAGS) $(CFLAGS) -MT src/pq-update_name.obj -MD -MP -MF src/$(DEPDIR)/pq-update_name.Tpo -c -o src/pq-update_name.obj `if test -f 'src/update_name.c'; then $(CYGPATH_W) 'src/update_name.c'; else $(CYGPATH_W) '$(srcdir)/src/update_name.c'; fi`
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) src/$(DEPDIR)/pq-update_name.Tpo src/$(DEPDIR)/pq-update_name.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='src/update_name.c' object='src/pq-update_name.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) $(pq_CPPFLAGS) $(CPPFLAGS) $(pq_CFLAGS) $(CFLAGS) -c -o src/pq-update_name.obj `if test -f 'src/update_name.c'; then $(CYGPATH_W) 'src/update_name.c'; else $(CYGPATH_W) '$(srcdir)/src/update_name.c'; fi`
src/pq-write.o: src/write.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(pq_CPPFLAGS) $(CPPFLAGS) $(pq_CFLAGS) $(CFLAGS) -MT src/pq-write.o -MD -MP -MF src/$(DEPDIR)/pq-write.Tpo -c -o src/pq-write.o `test -f 'src/write.c' || echo '$(srcdir)/'`src/write.c
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) src/$(DEPDIR)/pq-write.Tpo src/$(DEPDIR)/pq-write.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='src/write.c' object='src/pq-write.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) $(pq_CPPFLAGS) $(CPPFLAGS) $(pq_CFLAGS) $(CFLAGS) -c -o src/pq-write.o `test -f 'src/write.c' || echo '$(srcdir)/'`src/write.c
src/pq-write.obj: src/write.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(pq_CPPFLAGS) $(CPPFLAGS) $(pq_CFLAGS) $(CFLAGS) -MT src/pq-write.obj -MD -MP -MF src/$(DEPDIR)/pq-write.Tpo -c -o src/pq-write.obj `if test -f 'src/write.c'; then $(CYGPATH_W) 'src/write.c'; else $(CYGPATH_W) '$(srcdir)/src/write.c'; fi`
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) src/$(DEPDIR)/pq-write.Tpo src/$(DEPDIR)/pq-write.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='src/write.c' object='src/pq-write.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) $(pq_CPPFLAGS) $(CPPFLAGS) $(pq_CFLAGS) $(CFLAGS) -c -o src/pq-write.obj `if test -f 'src/write.c'; then $(CYGPATH_W) 'src/write.c'; else $(CYGPATH_W) '$(srcdir)/src/write.c'; fi`
src/pq-main.o: src/main.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(pq_CPPFLAGS) $(CPPFLAGS) $(pq_CFLAGS) $(CFLAGS) -MT src/pq-main.o -MD -MP -MF src/$(DEPDIR)/pq-main.Tpo -c -o src/pq-main.o `test -f 'src/main.c' || echo '$(srcdir)/'`src/main.c
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) src/$(DEPDIR)/pq-main.Tpo src/$(DEPDIR)/pq-main.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='src/main.c' object='src/pq-main.o' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(pq_CPPFLAGS) $(CPPFLAGS) $(pq_CFLAGS) $(CFLAGS) -c -o src/pq-main.o `test -f 'src/main.c' || echo '$(srcdir)/'`src/main.c
src/pq-main.obj: src/main.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(pq_CPPFLAGS) $(CPPFLAGS) $(pq_CFLAGS) $(CFLAGS) -MT src/pq-main.obj -MD -MP -MF src/$(DEPDIR)/pq-main.Tpo -c -o src/pq-main.obj `if test -f 'src/main.c'; then $(CYGPATH_W) 'src/main.c'; else $(CYGPATH_W) '$(srcdir)/src/main.c'; fi`
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) src/$(DEPDIR)/pq-main.Tpo src/$(DEPDIR)/pq-main.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='src/main.c' object='src/pq-main.obj' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(pq_CPPFLAGS) $(CPPFLAGS) $(pq_CFLAGS) $(CFLAGS) -c -o src/pq-main.obj `if test -f 'src/main.c'; then $(CYGPATH_W) 'src/main.c'; else $(CYGPATH_W) '$(srcdir)/src/main.c'; fi`
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"
cscope: cscope.files
test ! -s cscope.files \
|| $(CSCOPE) -b -q $(AM_CSCOPEFLAGS) $(CSCOPEFLAGS) -i cscope.files $(CSCOPE_ARGS)
clean-cscope:
-rm -f cscope.files
cscope.files: clean-cscope cscopelist
cscopelist: cscopelist-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
-rm -f cscope.out cscope.in.out cscope.po.out cscope.files
check-am: all-am
check: check-am
all-am: Makefile $(PROGRAMS) all-local
installdirs:
for dir in "$(DESTDIR)$(bindir)"; do \
test -z "$$dir" || $(MKDIR_P) "$$dir"; \
done
install: install-am
install-exec: install-exec-am
install-data: install-data-am
uninstall: uninstall-am
install-am: all-am
@$(MAKE) $(AM_MAKEFLAGS) install-exec-am install-data-am
installcheck: installcheck-am
install-strip:
if test -z '$(STRIP)'; then \
$(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \
install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \
install; \
else \
$(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \
install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \
"INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'" install; \
fi
mostlyclean-generic:
clean-generic:
distclean-generic:
-test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES)
-test . = "$(srcdir)" || test -z "$(CONFIG_CLEAN_VPATH_FILES)" || rm -f $(CONFIG_CLEAN_VPATH_FILES)
-rm -f src/$(DEPDIR)/$(am__dirstamp)
-rm -f src/$(am__dirstamp)
maintainer-clean-generic:
@echo "This command is intended for maintainers to use"
@echo "it deletes files that may require special tools to rebuild."
clean: clean-am
clean-am: clean-binPROGRAMS clean-generic clean-local mostlyclean-am
distclean: distclean-am
-rm -f $(am__CONFIG_DISTCLEAN_FILES)
-rm -f src/$(DEPDIR)/pq-AllocateSpace.Po
-rm -f src/$(DEPDIR)/pq-CloseFile.Po
-rm -f src/$(DEPDIR)/pq-Extend_Auts.Po
-rm -f src/$(DEPDIR)/pq-FreeSpace.Po
-rm -f src/$(DEPDIR)/pq-GAP.Po
-rm -f src/$(DEPDIR)/pq-GAP_link_via_file.Po
-rm -f src/$(DEPDIR)/pq-GAP_present.Po
-rm -f src/$(DEPDIR)/pq-OpenFile.Po
-rm -f src/$(DEPDIR)/pq-TemporaryFile.Po
-rm -f src/$(DEPDIR)/pq-action.Po
-rm -f src/$(DEPDIR)/pq-assemble_matrix.Po
-rm -f src/$(DEPDIR)/pq-autgp_order.Po
-rm -f src/$(DEPDIR)/pq-calculate_jacobi.Po
-rm -f src/$(DEPDIR)/pq-central_auts.Po
-rm -f src/$(DEPDIR)/pq-check_exponent.Po
-rm -f src/$(DEPDIR)/pq-class1_eliminate.Po
-rm -f src/$(DEPDIR)/pq-close_relations.Po
-rm -f src/$(DEPDIR)/pq-close_subgroup.Po
-rm -f src/$(DEPDIR)/pq-collect.Po
-rm -f src/$(DEPDIR)/pq-collect_comm.Po
-rm -f src/$(DEPDIR)/pq-collect_gen_word.Po
-rm -f src/$(DEPDIR)/pq-collect_relations.Po
-rm -f src/$(DEPDIR)/pq-collect_word.Po
-rm -f src/$(DEPDIR)/pq-collectp2.Po
-rm -f src/$(DEPDIR)/pq-commutator.Po
-rm -f src/$(DEPDIR)/pq-commute_dgen.Po
-rm -f src/$(DEPDIR)/pq-compact.Po
-rm -f src/$(DEPDIR)/pq-compact_description.Po
-rm -f src/$(DEPDIR)/pq-consistency.Po
-rm -f src/$(DEPDIR)/pq-consistency_filter.Po
-rm -f src/$(DEPDIR)/pq-consistency_info.Po
-rm -f src/$(DEPDIR)/pq-construct.Po
-rm -f src/$(DEPDIR)/pq-convert.Po
-rm -f src/$(DEPDIR)/pq-defaults_pga.Po
-rm -f src/$(DEPDIR)/pq-degree.Po
-rm -f src/$(DEPDIR)/pq-delete_tables.Po
-rm -f src/$(DEPDIR)/pq-down_class.Po
-rm -f src/$(DEPDIR)/pq-echelon.Po
-rm -f src/$(DEPDIR)/pq-echelonise_matrix.Po
-rm -f src/$(DEPDIR)/pq-eliminate.Po
-rm -f src/$(DEPDIR)/pq-expand_commutator.Po
-rm -f src/$(DEPDIR)/pq-exponent_auts.Po
-rm -f src/$(DEPDIR)/pq-exponent_info.Po
-rm -f src/$(DEPDIR)/pq-extend_automorphisms.Po
-rm -f src/$(DEPDIR)/pq-extend_matrix.Po
-rm -f src/$(DEPDIR)/pq-extend_representation.Po
-rm -f src/$(DEPDIR)/pq-extra_relations.Po
-rm -f src/$(DEPDIR)/pq-find_allowable_subgroup.Po
-rm -f src/$(DEPDIR)/pq-find_image.Po
-rm -f src/$(DEPDIR)/pq-find_permutation.Po
-rm -f src/$(DEPDIR)/pq-formula.Po
-rm -f src/$(DEPDIR)/pq-generator_definition.Po
-rm -f src/$(DEPDIR)/pq-get_definition_sets.Po
-rm -f src/$(DEPDIR)/pq-identity.Po
-rm -f src/$(DEPDIR)/pq-immediate_descendant.Po
-rm -f src/$(DEPDIR)/pq-initialise_pcp.Po
-rm -f src/$(DEPDIR)/pq-initialise_pga.Po
-rm -f src/$(DEPDIR)/pq-insoluble_orbits.Po
-rm -f src/$(DEPDIR)/pq-int_power.Po
-rm -f src/$(DEPDIR)/pq-interactive_pga.Po
-rm -f src/$(DEPDIR)/pq-interactive_pq.Po
-rm -f src/$(DEPDIR)/pq-invert.Po
-rm -f src/$(DEPDIR)/pq-invert_auts.Po
-rm -f src/$(DEPDIR)/pq-invert_modp.Po
-rm -f src/$(DEPDIR)/pq-is_genlim_exceeded.Po
-rm -f src/$(DEPDIR)/pq-is_space_exhausted.Po
-rm -f src/$(DEPDIR)/pq-isom_options.Po
-rm -f src/$(DEPDIR)/pq-iteration.Po
-rm -f src/$(DEPDIR)/pq-jacobi.Po
-rm -f src/$(DEPDIR)/pq-label_to_subgroup.Po
-rm -f src/$(DEPDIR)/pq-last_class.Po
-rm -f src/$(DEPDIR)/pq-list_commutators.Po
-rm -f src/$(DEPDIR)/pq-main.Po
-rm -f src/$(DEPDIR)/pq-map_relations.Po
-rm -f src/$(DEPDIR)/pq-matrix.Po
-rm -f src/$(DEPDIR)/pq-maxoccur.Po
-rm -f src/$(DEPDIR)/pq-multiply_word.Po
-rm -f src/$(DEPDIR)/pq-next_class.Po
-rm -f src/$(DEPDIR)/pq-options.Po
-rm -f src/$(DEPDIR)/pq-orbit_summary.Po
-rm -f src/$(DEPDIR)/pq-permute_elements.Po
-rm -f src/$(DEPDIR)/pq-permute_subgroups.Po
-rm -f src/$(DEPDIR)/pq-pgroup.Po
-rm -f src/$(DEPDIR)/pq-power.Po
-rm -f src/$(DEPDIR)/pq-pquotient.Po
-rm -f src/$(DEPDIR)/pq-pretty_filter.Po
-rm -f src/$(DEPDIR)/pq-pretty_filterfns.Po
-rm -f src/$(DEPDIR)/pq-print_arrays.Po
-rm -f src/$(DEPDIR)/pq-print_auts.Po
-rm -f src/$(DEPDIR)/pq-print_level.Po
-rm -f src/$(DEPDIR)/pq-print_multiweight.Po
-rm -f src/$(DEPDIR)/pq-print_presentation.Po
-rm -f src/$(DEPDIR)/pq-print_structure.Po
-rm -f src/$(DEPDIR)/pq-print_word.Po
-rm -f src/$(DEPDIR)/pq-read.Po
-rm -f src/$(DEPDIR)/pq-read_auts.Po
-rm -f src/$(DEPDIR)/pq-read_parameters.Po
-rm -f src/$(DEPDIR)/pq-read_relations.Po
-rm -f src/$(DEPDIR)/pq-read_relator_file.Po
-rm -f src/$(DEPDIR)/pq-read_value.Po
-rm -f src/$(DEPDIR)/pq-read_word.Po
-rm -f src/$(DEPDIR)/pq-reduce_matrix.Po
-rm -f src/$(DEPDIR)/pq-reduced_covers.Po
-rm -f src/$(DEPDIR)/pq-report_error.Po
-rm -f src/$(DEPDIR)/pq-restore_group.Po
-rm -f src/$(DEPDIR)/pq-setup.Po
-rm -f src/$(DEPDIR)/pq-setup_reps.Po
-rm -f src/$(DEPDIR)/pq-soluble_orbits.Po
-rm -f src/$(DEPDIR)/pq-solve_equation.Po
-rm -f src/$(DEPDIR)/pq-stabiliser.Po
-rm -f src/$(DEPDIR)/pq-stages.Po
-rm -f src/$(DEPDIR)/pq-standard.Po
-rm -f src/$(DEPDIR)/pq-start_group.Po
-rm -f src/$(DEPDIR)/pq-start_iteration.Po
-rm -f src/$(DEPDIR)/pq-step_range.Po
-rm -f src/$(DEPDIR)/pq-store_definition_sets.Po
-rm -f src/$(DEPDIR)/pq-strip_identities.Po
-rm -f src/$(DEPDIR)/pq-subgroup_to_label.Po
-rm -f src/$(DEPDIR)/pq-system.Po
-rm -f src/$(DEPDIR)/pq-tail_info.Po
-rm -f src/$(DEPDIR)/pq-tails.Po
-rm -f src/$(DEPDIR)/pq-tails_filter.Po
-rm -f src/$(DEPDIR)/pq-text.Po
-rm -f src/$(DEPDIR)/pq-update.Po
-rm -f src/$(DEPDIR)/pq-update_generators.Po
-rm -f src/$(DEPDIR)/pq-update_name.Po
-rm -f src/$(DEPDIR)/pq-write.Po
-rm -f Makefile
distclean-am: clean-am distclean-compile distclean-generic \
distclean-hdr distclean-local distclean-tags
dvi: dvi-am
dvi-am:
html: html-am
html-am:
info: info-am
info-am:
install-data-am:
install-dvi: install-dvi-am
install-dvi-am:
install-exec-am: install-binPROGRAMS
install-html: install-html-am
install-html-am:
install-info: install-info-am
install-info-am:
install-man:
install-pdf: install-pdf-am
install-pdf-am:
install-ps: install-ps-am
install-ps-am:
installcheck-am:
maintainer-clean: maintainer-clean-am
-rm -f $(am__CONFIG_DISTCLEAN_FILES)
-rm -rf $(top_srcdir)/autom4te.cache
-rm -f src/$(DEPDIR)/pq-AllocateSpace.Po
-rm -f src/$(DEPDIR)/pq-CloseFile.Po
-rm -f src/$(DEPDIR)/pq-Extend_Auts.Po
-rm -f src/$(DEPDIR)/pq-FreeSpace.Po
-rm -f src/$(DEPDIR)/pq-GAP.Po
-rm -f src/$(DEPDIR)/pq-GAP_link_via_file.Po
-rm -f src/$(DEPDIR)/pq-GAP_present.Po
-rm -f src/$(DEPDIR)/pq-OpenFile.Po
-rm -f src/$(DEPDIR)/pq-TemporaryFile.Po
-rm -f src/$(DEPDIR)/pq-action.Po
-rm -f src/$(DEPDIR)/pq-assemble_matrix.Po
-rm -f src/$(DEPDIR)/pq-autgp_order.Po
-rm -f src/$(DEPDIR)/pq-calculate_jacobi.Po
-rm -f src/$(DEPDIR)/pq-central_auts.Po
-rm -f src/$(DEPDIR)/pq-check_exponent.Po
-rm -f src/$(DEPDIR)/pq-class1_eliminate.Po
-rm -f src/$(DEPDIR)/pq-close_relations.Po
-rm -f src/$(DEPDIR)/pq-close_subgroup.Po
-rm -f src/$(DEPDIR)/pq-collect.Po
-rm -f src/$(DEPDIR)/pq-collect_comm.Po
-rm -f src/$(DEPDIR)/pq-collect_gen_word.Po
-rm -f src/$(DEPDIR)/pq-collect_relations.Po
-rm -f src/$(DEPDIR)/pq-collect_word.Po
-rm -f src/$(DEPDIR)/pq-collectp2.Po
-rm -f src/$(DEPDIR)/pq-commutator.Po
-rm -f src/$(DEPDIR)/pq-commute_dgen.Po
-rm -f src/$(DEPDIR)/pq-compact.Po
-rm -f src/$(DEPDIR)/pq-compact_description.Po
-rm -f src/$(DEPDIR)/pq-consistency.Po
-rm -f src/$(DEPDIR)/pq-consistency_filter.Po
-rm -f src/$(DEPDIR)/pq-consistency_info.Po
-rm -f src/$(DEPDIR)/pq-construct.Po
-rm -f src/$(DEPDIR)/pq-convert.Po
-rm -f src/$(DEPDIR)/pq-defaults_pga.Po
-rm -f src/$(DEPDIR)/pq-degree.Po
-rm -f src/$(DEPDIR)/pq-delete_tables.Po
-rm -f src/$(DEPDIR)/pq-down_class.Po
-rm -f src/$(DEPDIR)/pq-echelon.Po
-rm -f src/$(DEPDIR)/pq-echelonise_matrix.Po
-rm -f src/$(DEPDIR)/pq-eliminate.Po
-rm -f src/$(DEPDIR)/pq-expand_commutator.Po
-rm -f src/$(DEPDIR)/pq-exponent_auts.Po
-rm -f src/$(DEPDIR)/pq-exponent_info.Po
-rm -f src/$(DEPDIR)/pq-extend_automorphisms.Po
-rm -f src/$(DEPDIR)/pq-extend_matrix.Po
-rm -f src/$(DEPDIR)/pq-extend_representation.Po
-rm -f src/$(DEPDIR)/pq-extra_relations.Po
-rm -f src/$(DEPDIR)/pq-find_allowable_subgroup.Po
-rm -f src/$(DEPDIR)/pq-find_image.Po
-rm -f src/$(DEPDIR)/pq-find_permutation.Po
-rm -f src/$(DEPDIR)/pq-formula.Po
-rm -f src/$(DEPDIR)/pq-generator_definition.Po
-rm -f src/$(DEPDIR)/pq-get_definition_sets.Po
-rm -f src/$(DEPDIR)/pq-identity.Po
-rm -f src/$(DEPDIR)/pq-immediate_descendant.Po
-rm -f src/$(DEPDIR)/pq-initialise_pcp.Po
-rm -f src/$(DEPDIR)/pq-initialise_pga.Po
-rm -f src/$(DEPDIR)/pq-insoluble_orbits.Po
-rm -f src/$(DEPDIR)/pq-int_power.Po
-rm -f src/$(DEPDIR)/pq-interactive_pga.Po
-rm -f src/$(DEPDIR)/pq-interactive_pq.Po
-rm -f src/$(DEPDIR)/pq-invert.Po
-rm -f src/$(DEPDIR)/pq-invert_auts.Po
-rm -f src/$(DEPDIR)/pq-invert_modp.Po
-rm -f src/$(DEPDIR)/pq-is_genlim_exceeded.Po
-rm -f src/$(DEPDIR)/pq-is_space_exhausted.Po
-rm -f src/$(DEPDIR)/pq-isom_options.Po
-rm -f src/$(DEPDIR)/pq-iteration.Po
-rm -f src/$(DEPDIR)/pq-jacobi.Po
-rm -f src/$(DEPDIR)/pq-label_to_subgroup.Po
-rm -f src/$(DEPDIR)/pq-last_class.Po
-rm -f src/$(DEPDIR)/pq-list_commutators.Po
-rm -f src/$(DEPDIR)/pq-main.Po
-rm -f src/$(DEPDIR)/pq-map_relations.Po
-rm -f src/$(DEPDIR)/pq-matrix.Po
-rm -f src/$(DEPDIR)/pq-maxoccur.Po
-rm -f src/$(DEPDIR)/pq-multiply_word.Po
-rm -f src/$(DEPDIR)/pq-next_class.Po
-rm -f src/$(DEPDIR)/pq-options.Po
-rm -f src/$(DEPDIR)/pq-orbit_summary.Po
-rm -f src/$(DEPDIR)/pq-permute_elements.Po
-rm -f src/$(DEPDIR)/pq-permute_subgroups.Po
-rm -f src/$(DEPDIR)/pq-pgroup.Po
-rm -f src/$(DEPDIR)/pq-power.Po
-rm -f src/$(DEPDIR)/pq-pquotient.Po
-rm -f src/$(DEPDIR)/pq-pretty_filter.Po
-rm -f src/$(DEPDIR)/pq-pretty_filterfns.Po
-rm -f src/$(DEPDIR)/pq-print_arrays.Po
-rm -f src/$(DEPDIR)/pq-print_auts.Po
-rm -f src/$(DEPDIR)/pq-print_level.Po
-rm -f src/$(DEPDIR)/pq-print_multiweight.Po
-rm -f src/$(DEPDIR)/pq-print_presentation.Po
-rm -f src/$(DEPDIR)/pq-print_structure.Po
-rm -f src/$(DEPDIR)/pq-print_word.Po
-rm -f src/$(DEPDIR)/pq-read.Po
-rm -f src/$(DEPDIR)/pq-read_auts.Po
-rm -f src/$(DEPDIR)/pq-read_parameters.Po
-rm -f src/$(DEPDIR)/pq-read_relations.Po
-rm -f src/$(DEPDIR)/pq-read_relator_file.Po
-rm -f src/$(DEPDIR)/pq-read_value.Po
-rm -f src/$(DEPDIR)/pq-read_word.Po
-rm -f src/$(DEPDIR)/pq-reduce_matrix.Po
-rm -f src/$(DEPDIR)/pq-reduced_covers.Po
-rm -f src/$(DEPDIR)/pq-report_error.Po
-rm -f src/$(DEPDIR)/pq-restore_group.Po
-rm -f src/$(DEPDIR)/pq-setup.Po
-rm -f src/$(DEPDIR)/pq-setup_reps.Po
-rm -f src/$(DEPDIR)/pq-soluble_orbits.Po
-rm -f src/$(DEPDIR)/pq-solve_equation.Po
-rm -f src/$(DEPDIR)/pq-stabiliser.Po
-rm -f src/$(DEPDIR)/pq-stages.Po
-rm -f src/$(DEPDIR)/pq-standard.Po
-rm -f src/$(DEPDIR)/pq-start_group.Po
-rm -f src/$(DEPDIR)/pq-start_iteration.Po
-rm -f src/$(DEPDIR)/pq-step_range.Po
-rm -f src/$(DEPDIR)/pq-store_definition_sets.Po
-rm -f src/$(DEPDIR)/pq-strip_identities.Po
-rm -f src/$(DEPDIR)/pq-subgroup_to_label.Po
-rm -f src/$(DEPDIR)/pq-system.Po
-rm -f src/$(DEPDIR)/pq-tail_info.Po
-rm -f src/$(DEPDIR)/pq-tails.Po
-rm -f src/$(DEPDIR)/pq-tails_filter.Po
-rm -f src/$(DEPDIR)/pq-text.Po
-rm -f src/$(DEPDIR)/pq-update.Po
-rm -f src/$(DEPDIR)/pq-update_generators.Po
-rm -f src/$(DEPDIR)/pq-update_name.Po
-rm -f src/$(DEPDIR)/pq-write.Po
-rm -f Makefile
maintainer-clean-am: distclean-am maintainer-clean-generic
mostlyclean: mostlyclean-am
mostlyclean-am: mostlyclean-compile mostlyclean-generic
pdf: pdf-am
pdf-am:
ps: ps-am
ps-am:
uninstall-am: uninstall-binPROGRAMS
.MAKE: install-am install-strip
.PHONY: CTAGS GTAGS TAGS all all-am all-local am--depfiles am--refresh \
check check-am clean clean-binPROGRAMS clean-cscope \
clean-generic clean-local cscope cscopelist-am ctags ctags-am \
distclean distclean-compile distclean-generic distclean-hdr \
distclean-local distclean-tags dvi dvi-am html html-am info \
info-am install install-am install-binPROGRAMS install-data \
install-data-am install-dvi install-dvi-am install-exec \
install-exec-am install-html install-html-am install-info \
install-info-am install-man install-pdf install-pdf-am \
install-ps install-ps-am install-strip installcheck \
installcheck-am installdirs maintainer-clean \
maintainer-clean-generic mostlyclean mostlyclean-compile \
mostlyclean-generic pdf pdf-am ps ps-am tags tags-am uninstall \
uninstall-am uninstall-binPROGRAMS
.PRECIOUS: Makefile
all-local: pq$(EXEEXT)
$(mkdir_p) $(top_srcdir)/$(BINARCHDIR)
rm -f $(abs_top_srcdir)/$(BINARCHDIR)/pq$(EXEEXT)
cp pq$(EXEEXT) $(abs_top_srcdir)/$(BINARCHDIR)
@echo "SUCCESS!"
clean-local:
rm -rf $(BINARCHDIR)
(cd doc && rm -f *.aux *.bbl *.blg *.brf *.idx *.ilg *.ind *.log *.out *.pnr *.toc)
(cd standalone-doc && rm -rf *.aux *.log *.toc)
distclean-local:
(cd examples; make distclean)
rm -rf standalone/bin
doc:
$(GAP_EXEC) -A --quitonbreak -b -q < makedoc.g
.PHONY: doc
#test:
# (cd examples; make)
# 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:
|