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
|
# Makefile.in generated by automake 1.11.1 from Makefile.am.
# @configure_input@
# Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002,
# 2003, 2004, 2005, 2006, 2007, 2008, 2009 Free Software Foundation,
# Inc.
# This Makefile.in is free software; the Free Software Foundation
# gives unlimited permission to copy and/or distribute it,
# with or without modifications, as long as this notice is preserved.
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY, to the extent permitted by law; without
# even the implied warranty of MERCHANTABILITY or FITNESS FOR A
# PARTICULAR PURPOSE.
@SET_MAKE@
VPATH = @srcdir@
pkgdatadir = $(datadir)/@PACKAGE@
pkgincludedir = $(includedir)/@PACKAGE@
pkglibdir = $(libdir)/@PACKAGE@
pkglibexecdir = $(libexecdir)/@PACKAGE@
am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd
install_sh_DATA = $(install_sh) -c -m 644
install_sh_PROGRAM = $(install_sh) -c
install_sh_SCRIPT = $(install_sh) -c
INSTALL_HEADER = $(INSTALL_DATA)
transform = $(program_transform_name)
NORMAL_INSTALL = :
PRE_INSTALL = :
POST_INSTALL = :
NORMAL_UNINSTALL = :
PRE_UNINSTALL = :
POST_UNINSTALL = :
build_triplet = @build@
host_triplet = @host@
noinst_PROGRAMS = testlib$(EXEEXT) example$(EXEEXT) count$(EXEEXT) \
@multi_noinst_programs@ $(am__empty)
bin_PROGRAMS = c2p$(EXEEXT) r2p$(EXEEXT) findv$(EXEEXT) \
disjoint_union_sep$(EXEEXT) disjoint_union_adj$(EXEEXT) \
ehrhart_quick_apx$(EXEEXT) ehrhart_upper_bound$(EXEEXT) \
ehrhart_lower_bound$(EXEEXT) @multi_bin_programs@
subdir = .
DIST_COMMON = README $(am__configure_deps) $(srcdir)/Makefile.am \
$(srcdir)/Makefile.in $(srcdir)/config.h.in \
$(srcdir)/polylib.doxygen.in $(top_srcdir)/configure AUTHORS \
COPYING ChangeLog INSTALL NEWS compile config.guess config.sub \
depcomp install-sh ltmain.sh missing mp_get_memory_functions.c
ACLOCAL_M4 = $(top_srcdir)/aclocal.m4
am__aclocal_m4_deps = $(top_srcdir)/m4/ax_create_pkgconfig_info.m4 \
$(top_srcdir)/m4/libtool.m4 $(top_srcdir)/m4/ltoptions.m4 \
$(top_srcdir)/m4/ltsugar.m4 $(top_srcdir)/m4/ltversion.m4 \
$(top_srcdir)/m4/lt~obsolete.m4 $(top_srcdir)/configure.in
am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \
$(ACLOCAL_M4)
am__CONFIG_DISTCLEAN_FILES = config.status config.cache config.log \
configure.lineno config.status.lineno
mkinstalldirs = $(install_sh) -d
CONFIG_HEADER = config.h
CONFIG_CLEAN_FILES = polylib.doxygen
CONFIG_CLEAN_VPATH_FILES =
am__vpath_adj_setup = srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`;
am__vpath_adj = case $$p in \
$(srcdir)/*) f=`echo "$$p" | sed "s|^$$srcdirstrip/||"`;; \
*) f=$$p;; \
esac;
am__strip_dir = f=`echo $$p | sed -e 's|^.*/||'`;
am__install_max = 40
am__nobase_strip_setup = \
srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*|]/\\\\&/g'`
am__nobase_strip = \
for p in $$list; do echo "$$p"; done | sed -e "s|$$srcdirstrip/||"
am__nobase_list = $(am__nobase_strip_setup); \
for p in $$list; do echo "$$p $$p"; done | \
sed "s| $$srcdirstrip/| |;"' / .*\//!s/ .*/ ./; s,\( .*\)/[^/]*$$,\1,' | \
$(AWK) 'BEGIN { files["."] = "" } { files[$$2] = files[$$2] " " $$1; \
if (++n[$$2] == $(am__install_max)) \
{ print $$2, files[$$2]; n[$$2] = 0; files[$$2] = "" } } \
END { for (dir in files) print dir, files[dir] }'
am__base_list = \
sed '$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;s/\n/ /g' | \
sed '$$!N;$$!N;$$!N;$$!N;s/\n/ /g'
am__installdirs = "$(DESTDIR)$(libdir)" "$(DESTDIR)$(bindir)"
LTLIBRARIES = $(lib_LTLIBRARIES)
libpolylib128_la_DEPENDENCIES = @LTLIBOBJS@
am__objects_1 = libpolylib128_la-errors.lo \
libpolylib128_la-errormsg.lo libpolylib128_la-vector.lo \
libpolylib128_la-matrix.lo libpolylib128_la-polyhedron.lo \
libpolylib128_la-polyparam.lo libpolylib128_la-param.lo \
libpolylib128_la-alpha.lo libpolylib128_la-ehrhart.lo \
libpolylib128_la-ext_ehrhart.lo \
libpolylib128_la-eval_ehrhart.lo \
libpolylib128_la-homogenization.lo libpolylib128_la-ranking.lo \
libpolylib128_la-matrix_addon.lo \
libpolylib128_la-matrix_permutations.lo \
libpolylib128_la-compress_parms.lo \
libpolylib128_la-SolveDio.lo libpolylib128_la-Lattice.lo \
libpolylib128_la-Matop.lo libpolylib128_la-NormalForms.lo \
libpolylib128_la-Zpolyhedron.lo
am__objects_2 = $(am__objects_1)
am_libpolylib128_la_OBJECTS = $(am__objects_2)
libpolylib128_la_OBJECTS = $(am_libpolylib128_la_OBJECTS)
libpolylib128_la_LINK = $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) \
$(LIBTOOLFLAGS) --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) \
$(libpolylib128_la_LDFLAGS) $(LDFLAGS) -o $@
libpolylib32_la_DEPENDENCIES = @LTLIBOBJS@
am__objects_3 = libpolylib32_la-errors.lo libpolylib32_la-errormsg.lo \
libpolylib32_la-vector.lo libpolylib32_la-matrix.lo \
libpolylib32_la-polyhedron.lo libpolylib32_la-polyparam.lo \
libpolylib32_la-param.lo libpolylib32_la-alpha.lo \
libpolylib32_la-ehrhart.lo libpolylib32_la-ext_ehrhart.lo \
libpolylib32_la-eval_ehrhart.lo \
libpolylib32_la-homogenization.lo libpolylib32_la-ranking.lo \
libpolylib32_la-matrix_addon.lo \
libpolylib32_la-matrix_permutations.lo \
libpolylib32_la-compress_parms.lo libpolylib32_la-SolveDio.lo \
libpolylib32_la-Lattice.lo libpolylib32_la-Matop.lo \
libpolylib32_la-NormalForms.lo libpolylib32_la-Zpolyhedron.lo
am__objects_4 = $(am__objects_3)
am_libpolylib32_la_OBJECTS = $(am__objects_4)
libpolylib32_la_OBJECTS = $(am_libpolylib32_la_OBJECTS)
libpolylib32_la_LINK = $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) \
$(LIBTOOLFLAGS) --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) \
$(libpolylib32_la_LDFLAGS) $(LDFLAGS) -o $@
libpolylib64_la_DEPENDENCIES = @LTLIBOBJS@
am__objects_5 = libpolylib64_la-errors.lo libpolylib64_la-errormsg.lo \
libpolylib64_la-vector.lo libpolylib64_la-matrix.lo \
libpolylib64_la-polyhedron.lo libpolylib64_la-polyparam.lo \
libpolylib64_la-param.lo libpolylib64_la-alpha.lo \
libpolylib64_la-ehrhart.lo libpolylib64_la-ext_ehrhart.lo \
libpolylib64_la-eval_ehrhart.lo \
libpolylib64_la-homogenization.lo libpolylib64_la-ranking.lo \
libpolylib64_la-matrix_addon.lo \
libpolylib64_la-matrix_permutations.lo \
libpolylib64_la-compress_parms.lo libpolylib64_la-SolveDio.lo \
libpolylib64_la-Lattice.lo libpolylib64_la-Matop.lo \
libpolylib64_la-NormalForms.lo libpolylib64_la-Zpolyhedron.lo
am__objects_6 = $(am__objects_5)
am_libpolylib64_la_OBJECTS = $(am__objects_6)
libpolylib64_la_OBJECTS = $(am_libpolylib64_la_OBJECTS)
libpolylib64_la_LINK = $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) \
$(LIBTOOLFLAGS) --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) \
$(libpolylib64_la_LDFLAGS) $(LDFLAGS) -o $@
libpolylibgmp_la_DEPENDENCIES = @LTLIBOBJS@
am__objects_7 = libpolylibgmp_la-errors.lo \
libpolylibgmp_la-errormsg.lo libpolylibgmp_la-vector.lo \
libpolylibgmp_la-matrix.lo libpolylibgmp_la-polyhedron.lo \
libpolylibgmp_la-polyparam.lo libpolylibgmp_la-param.lo \
libpolylibgmp_la-alpha.lo libpolylibgmp_la-ehrhart.lo \
libpolylibgmp_la-ext_ehrhart.lo \
libpolylibgmp_la-eval_ehrhart.lo \
libpolylibgmp_la-homogenization.lo libpolylibgmp_la-ranking.lo \
libpolylibgmp_la-matrix_addon.lo \
libpolylibgmp_la-matrix_permutations.lo \
libpolylibgmp_la-compress_parms.lo \
libpolylibgmp_la-SolveDio.lo libpolylibgmp_la-Lattice.lo \
libpolylibgmp_la-Matop.lo libpolylibgmp_la-NormalForms.lo \
libpolylibgmp_la-Zpolyhedron.lo
am__objects_8 = $(am__objects_7)
am_libpolylibgmp_la_OBJECTS = $(am__objects_8)
libpolylibgmp_la_OBJECTS = $(am_libpolylibgmp_la_OBJECTS)
libpolylibgmp_la_LINK = $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) \
$(LIBTOOLFLAGS) --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) \
$(libpolylibgmp_la_LDFLAGS) $(LDFLAGS) -o $@
PROGRAMS = $(bin_PROGRAMS) $(noinst_PROGRAMS)
am_Zpolytest32_OBJECTS = Zpolytest32-Zpolytest.$(OBJEXT)
Zpolytest32_OBJECTS = $(am_Zpolytest32_OBJECTS)
Zpolytest32_DEPENDENCIES = libpolylib32.la
am_Zpolytest64_OBJECTS = Zpolytest64-Zpolytest.$(OBJEXT)
Zpolytest64_OBJECTS = $(am_Zpolytest64_OBJECTS)
Zpolytest64_DEPENDENCIES = libpolylib64.la
am_Zpolytestgmp_OBJECTS = Zpolytestgmp-Zpolytest.$(OBJEXT)
Zpolytestgmp_OBJECTS = $(am_Zpolytestgmp_OBJECTS)
Zpolytestgmp_DEPENDENCIES = libpolylibgmp.la
am_c2p_OBJECTS = c2p-c2p.$(OBJEXT)
c2p_OBJECTS = $(am_c2p_OBJECTS)
c2p_LDADD = $(LDADD)
am_count_OBJECTS = count-count.$(OBJEXT)
count_OBJECTS = $(am_count_OBJECTS)
count_LDADD = $(LDADD)
am_disjoint_union_adj_OBJECTS = \
disjoint_union_adj-disjoint_union_adj.$(OBJEXT)
disjoint_union_adj_OBJECTS = $(am_disjoint_union_adj_OBJECTS)
disjoint_union_adj_LDADD = $(LDADD)
am_disjoint_union_sep_OBJECTS = \
disjoint_union_sep-disjoint_union_sep.$(OBJEXT)
disjoint_union_sep_OBJECTS = $(am_disjoint_union_sep_OBJECTS)
disjoint_union_sep_LDADD = $(LDADD)
am_ehrhart_lower_bound_OBJECTS = \
ehrhart_lower_bound-ehrhart_lower_bound.$(OBJEXT)
ehrhart_lower_bound_OBJECTS = $(am_ehrhart_lower_bound_OBJECTS)
ehrhart_lower_bound_LDADD = $(LDADD)
am_ehrhart_quick_apx_OBJECTS = \
ehrhart_quick_apx-ehrhart_quick_apx.$(OBJEXT)
ehrhart_quick_apx_OBJECTS = $(am_ehrhart_quick_apx_OBJECTS)
ehrhart_quick_apx_LDADD = $(LDADD)
am_ehrhart_ranking32_OBJECTS = \
ehrhart_ranking32-ehrhart_ranking.$(OBJEXT)
ehrhart_ranking32_OBJECTS = $(am_ehrhart_ranking32_OBJECTS)
ehrhart_ranking32_DEPENDENCIES = libpolylib32.la
am_ehrhart_ranking64_OBJECTS = \
ehrhart_ranking64-ehrhart_ranking.$(OBJEXT)
ehrhart_ranking64_OBJECTS = $(am_ehrhart_ranking64_OBJECTS)
ehrhart_ranking64_DEPENDENCIES = libpolylib64.la
am_ehrhart_rankinggmp_OBJECTS = \
ehrhart_rankinggmp-ehrhart_ranking.$(OBJEXT)
ehrhart_rankinggmp_OBJECTS = $(am_ehrhart_rankinggmp_OBJECTS)
ehrhart_rankinggmp_DEPENDENCIES = libpolylibgmp.la
am_ehrhart_union32_OBJECTS = ehrhart_union32-ehrhart_union.$(OBJEXT)
ehrhart_union32_OBJECTS = $(am_ehrhart_union32_OBJECTS)
ehrhart_union32_DEPENDENCIES = libpolylib32.la
am_ehrhart_union64_OBJECTS = ehrhart_union64-ehrhart_union.$(OBJEXT)
ehrhart_union64_OBJECTS = $(am_ehrhart_union64_OBJECTS)
ehrhart_union64_DEPENDENCIES = libpolylib64.la
am_ehrhart_uniongmp_OBJECTS = \
ehrhart_uniongmp-ehrhart_union.$(OBJEXT)
ehrhart_uniongmp_OBJECTS = $(am_ehrhart_uniongmp_OBJECTS)
ehrhart_uniongmp_DEPENDENCIES = libpolylibgmp.la
am_ehrhart_upper_bound_OBJECTS = \
ehrhart_upper_bound-ehrhart_upper_bound.$(OBJEXT)
ehrhart_upper_bound_OBJECTS = $(am_ehrhart_upper_bound_OBJECTS)
ehrhart_upper_bound_LDADD = $(LDADD)
am_example_OBJECTS = example-example.$(OBJEXT)
example_OBJECTS = $(am_example_OBJECTS)
example_LDADD = $(LDADD)
am_findv_OBJECTS = findv-findv.$(OBJEXT)
findv_OBJECTS = $(am_findv_OBJECTS)
findv_LDADD = $(LDADD)
am_polytest32_OBJECTS = polytest32-polytest.$(OBJEXT)
polytest32_OBJECTS = $(am_polytest32_OBJECTS)
polytest32_DEPENDENCIES = libpolylib32.la
am_polytest64_OBJECTS = polytest64-polytest.$(OBJEXT)
polytest64_OBJECTS = $(am_polytest64_OBJECTS)
polytest64_DEPENDENCIES = libpolylib64.la
am_polytestgmp_OBJECTS = polytestgmp-polytest.$(OBJEXT)
polytestgmp_OBJECTS = $(am_polytestgmp_OBJECTS)
polytestgmp_DEPENDENCIES = libpolylibgmp.la
am_pp32_OBJECTS = pp32-pp.$(OBJEXT)
pp32_OBJECTS = $(am_pp32_OBJECTS)
pp32_DEPENDENCIES = libpolylib32.la
am_pp64_OBJECTS = pp64-pp.$(OBJEXT)
pp64_OBJECTS = $(am_pp64_OBJECTS)
pp64_DEPENDENCIES = libpolylib64.la
am_ppgmp_OBJECTS = ppgmp-pp.$(OBJEXT)
ppgmp_OBJECTS = $(am_ppgmp_OBJECTS)
ppgmp_DEPENDENCIES = libpolylibgmp.la
am_r2p_OBJECTS = r2p-r2p.$(OBJEXT)
r2p_OBJECTS = $(am_r2p_OBJECTS)
r2p_LDADD = $(LDADD)
am_testCompressParms32_OBJECTS = \
testCompressParms32-testCompressParms.$(OBJEXT)
testCompressParms32_OBJECTS = $(am_testCompressParms32_OBJECTS)
testCompressParms32_DEPENDENCIES = libpolylib32.la
am_testCompressParms64_OBJECTS = \
testCompressParms64-testCompressParms.$(OBJEXT)
testCompressParms64_OBJECTS = $(am_testCompressParms64_OBJECTS)
testCompressParms64_DEPENDENCIES = libpolylib64.la
am_testCompressParmsgmp_OBJECTS = \
testCompressParmsgmp-testCompressParms.$(OBJEXT)
testCompressParmsgmp_OBJECTS = $(am_testCompressParmsgmp_OBJECTS)
testCompressParmsgmp_DEPENDENCIES = libpolylibgmp.la
am_testehrhart32_OBJECTS = testehrhart32-testehrhart.$(OBJEXT)
testehrhart32_OBJECTS = $(am_testehrhart32_OBJECTS)
testehrhart32_DEPENDENCIES = libpolylib32.la
am_testehrhart64_OBJECTS = testehrhart64-testehrhart.$(OBJEXT)
testehrhart64_OBJECTS = $(am_testehrhart64_OBJECTS)
testehrhart64_DEPENDENCIES = libpolylib64.la
am_testehrhartgmp_OBJECTS = testehrhartgmp-testehrhart.$(OBJEXT)
testehrhartgmp_OBJECTS = $(am_testehrhartgmp_OBJECTS)
testehrhartgmp_DEPENDENCIES = libpolylibgmp.la
am_testlib_OBJECTS = testlib-testlib.$(OBJEXT)
testlib_OBJECTS = $(am_testlib_OBJECTS)
testlib_LDADD = $(LDADD)
am_verif_ehrhart32_OBJECTS = verif_ehrhart32-verif_ehrhart.$(OBJEXT)
verif_ehrhart32_OBJECTS = $(am_verif_ehrhart32_OBJECTS)
verif_ehrhart32_DEPENDENCIES = libpolylib32.la
am_verif_ehrhart64_OBJECTS = verif_ehrhart64-verif_ehrhart.$(OBJEXT)
verif_ehrhart64_OBJECTS = $(am_verif_ehrhart64_OBJECTS)
verif_ehrhart64_DEPENDENCIES = libpolylib64.la
am_verif_ehrhartgmp_OBJECTS = \
verif_ehrhartgmp-verif_ehrhart.$(OBJEXT)
verif_ehrhartgmp_OBJECTS = $(am_verif_ehrhartgmp_OBJECTS)
verif_ehrhartgmp_DEPENDENCIES = libpolylibgmp.la
DEFAULT_INCLUDES = -I.@am__isrc@
depcomp = $(SHELL) $(top_srcdir)/depcomp
am__depfiles_maybe = depfiles
am__mv = mv -f
COMPILE = $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) \
$(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS)
LTCOMPILE = $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) \
--mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) \
$(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS)
CCLD = $(CC)
LINK = $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) \
--mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) $(AM_LDFLAGS) \
$(LDFLAGS) -o $@
SOURCES = $(libpolylib128_la_SOURCES) $(libpolylib32_la_SOURCES) \
$(libpolylib64_la_SOURCES) $(libpolylibgmp_la_SOURCES) \
$(Zpolytest32_SOURCES) $(Zpolytest64_SOURCES) \
$(Zpolytestgmp_SOURCES) $(c2p_SOURCES) $(count_SOURCES) \
$(disjoint_union_adj_SOURCES) $(disjoint_union_sep_SOURCES) \
$(ehrhart_lower_bound_SOURCES) $(ehrhart_quick_apx_SOURCES) \
$(ehrhart_ranking32_SOURCES) $(ehrhart_ranking64_SOURCES) \
$(ehrhart_rankinggmp_SOURCES) $(ehrhart_union32_SOURCES) \
$(ehrhart_union64_SOURCES) $(ehrhart_uniongmp_SOURCES) \
$(ehrhart_upper_bound_SOURCES) $(example_SOURCES) \
$(findv_SOURCES) $(polytest32_SOURCES) $(polytest64_SOURCES) \
$(polytestgmp_SOURCES) $(pp32_SOURCES) $(pp64_SOURCES) \
$(ppgmp_SOURCES) $(r2p_SOURCES) $(testCompressParms32_SOURCES) \
$(testCompressParms64_SOURCES) $(testCompressParmsgmp_SOURCES) \
$(testehrhart32_SOURCES) $(testehrhart64_SOURCES) \
$(testehrhartgmp_SOURCES) $(testlib_SOURCES) \
$(verif_ehrhart32_SOURCES) $(verif_ehrhart64_SOURCES) \
$(verif_ehrhartgmp_SOURCES)
DIST_SOURCES = $(libpolylib128_la_SOURCES) $(libpolylib32_la_SOURCES) \
$(libpolylib64_la_SOURCES) $(libpolylibgmp_la_SOURCES) \
$(Zpolytest32_SOURCES) $(Zpolytest64_SOURCES) \
$(Zpolytestgmp_SOURCES) $(c2p_SOURCES) $(count_SOURCES) \
$(disjoint_union_adj_SOURCES) $(disjoint_union_sep_SOURCES) \
$(ehrhart_lower_bound_SOURCES) $(ehrhart_quick_apx_SOURCES) \
$(ehrhart_ranking32_SOURCES) $(ehrhart_ranking64_SOURCES) \
$(ehrhart_rankinggmp_SOURCES) $(ehrhart_union32_SOURCES) \
$(ehrhart_union64_SOURCES) $(ehrhart_uniongmp_SOURCES) \
$(ehrhart_upper_bound_SOURCES) $(example_SOURCES) \
$(findv_SOURCES) $(polytest32_SOURCES) $(polytest64_SOURCES) \
$(polytestgmp_SOURCES) $(pp32_SOURCES) $(pp64_SOURCES) \
$(ppgmp_SOURCES) $(r2p_SOURCES) $(testCompressParms32_SOURCES) \
$(testCompressParms64_SOURCES) $(testCompressParmsgmp_SOURCES) \
$(testehrhart32_SOURCES) $(testehrhart64_SOURCES) \
$(testehrhartgmp_SOURCES) $(testlib_SOURCES) \
$(verif_ehrhart32_SOURCES) $(verif_ehrhart64_SOURCES) \
$(verif_ehrhartgmp_SOURCES)
RECURSIVE_TARGETS = all-recursive check-recursive dvi-recursive \
html-recursive info-recursive install-data-recursive \
install-dvi-recursive install-exec-recursive \
install-html-recursive install-info-recursive \
install-pdf-recursive install-ps-recursive install-recursive \
installcheck-recursive installdirs-recursive pdf-recursive \
ps-recursive uninstall-recursive
RECURSIVE_CLEAN_TARGETS = mostlyclean-recursive clean-recursive \
distclean-recursive maintainer-clean-recursive
AM_RECURSIVE_TARGETS = $(RECURSIVE_TARGETS:-recursive=) \
$(RECURSIVE_CLEAN_TARGETS:-recursive=) tags TAGS ctags CTAGS \
distdir dist dist-all distcheck
ETAGS = etags
CTAGS = ctags
DIST_SUBDIRS = $(SUBDIRS)
DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST)
distdir = $(PACKAGE)-$(VERSION)
top_distdir = $(distdir)
am__remove_distdir = \
{ test ! -d "$(distdir)" \
|| { find "$(distdir)" -type d ! -perm -200 -exec chmod u+w {} ';' \
&& rm -fr "$(distdir)"; }; }
am__relativize = \
dir0=`pwd`; \
sed_first='s,^\([^/]*\)/.*$$,\1,'; \
sed_rest='s,^[^/]*/*,,'; \
sed_last='s,^.*/\([^/]*\)$$,\1,'; \
sed_butlast='s,/*[^/]*$$,,'; \
while test -n "$$dir1"; do \
first=`echo "$$dir1" | sed -e "$$sed_first"`; \
if test "$$first" != "."; then \
if test "$$first" = ".."; then \
dir2=`echo "$$dir0" | sed -e "$$sed_last"`/"$$dir2"; \
dir0=`echo "$$dir0" | sed -e "$$sed_butlast"`; \
else \
first2=`echo "$$dir2" | sed -e "$$sed_first"`; \
if test "$$first2" = "$$first"; then \
dir2=`echo "$$dir2" | sed -e "$$sed_rest"`; \
else \
dir2="../$$dir2"; \
fi; \
dir0="$$dir0"/"$$first"; \
fi; \
fi; \
dir1=`echo "$$dir1" | sed -e "$$sed_rest"`; \
done; \
reldir="$$dir2"
DIST_ARCHIVES = $(distdir).tar.gz
GZIP_ENV = --best
distuninstallcheck_listfiles = find . -type f -print
distcleancheck_listfiles = find . -type f -print
ACLOCAL = @ACLOCAL@
ALL_BITS = @ALL_BITS@
AMTAR = @AMTAR@
AR = @AR@
AUTOCONF = @AUTOCONF@
AUTOHEADER = @AUTOHEADER@
AUTOMAKE = @AUTOMAKE@
AWK = @AWK@
BITS = @BITS@
CC = @CC@
CCDEPMODE = @CCDEPMODE@
CFLAGS = @CFLAGS@
CPP = @CPP@
CPPFLAGS = @CPPFLAGS@
CYGPATH_W = @CYGPATH_W@
DEFS = @DEFS@
DEPDIR = @DEPDIR@
DOXYGEN = @DOXYGEN@
DSYMUTIL = @DSYMUTIL@
DUMPBIN = @DUMPBIN@
ECHO_C = @ECHO_C@
ECHO_N = @ECHO_N@
ECHO_T = @ECHO_T@
EGREP = @EGREP@
EXEEXT = @EXEEXT@
FGREP = @FGREP@
GREP = @GREP@
INSTALL = @INSTALL@
INSTALL_DATA = @INSTALL_DATA@
INSTALL_PROGRAM = @INSTALL_PROGRAM@
INSTALL_SCRIPT = @INSTALL_SCRIPT@
INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@
LD = @LD@
LDFLAGS = @LDFLAGS@
LIBOBJS = @LIBOBJS@
LIBS = @LIBS@
LIBTOOL = @LIBTOOL@
LIPO = @LIPO@
LN_S = @LN_S@
LTLIBOBJS = @LTLIBOBJS@
MAKEINFO = @MAKEINFO@
MKDIR_P = @MKDIR_P@
NM = @NM@
NMEDIT = @NMEDIT@
OBJDUMP = @OBJDUMP@
OBJEXT = @OBJEXT@
OTOOL = @OTOOL@
OTOOL64 = @OTOOL64@
PACKAGE = @PACKAGE@
PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@
PACKAGE_NAME = @PACKAGE_NAME@
PACKAGE_STRING = @PACKAGE_STRING@
PACKAGE_TARNAME = @PACKAGE_TARNAME@
PACKAGE_URL = @PACKAGE_URL@
PACKAGE_VERSION = @PACKAGE_VERSION@
PATH_SEPARATOR = @PATH_SEPARATOR@
RANLIB = @RANLIB@
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@
ac_ct_DUMPBIN = @ac_ct_DUMPBIN@
am__include = @am__include@
am__leading_dot = @am__leading_dot@
am__quote = @am__quote@
am__tar = @am__tar@
am__untar = @am__untar@
bindir = @bindir@
build = @build@
build_alias = @build_alias@
build_cpu = @build_cpu@
build_os = @build_os@
build_vendor = @build_vendor@
builddir = @builddir@
datadir = @datadir@
datarootdir = @datarootdir@
docdir = @docdir@
dvidir = @dvidir@
exec_prefix = @exec_prefix@
host = @host@
host_alias = @host_alias@
host_cpu = @host_cpu@
host_os = @host_os@
host_vendor = @host_vendor@
htmldir = @htmldir@
includedir = @includedir@
infodir = @infodir@
install_sh = @install_sh@
libdir = @libdir@
libexecdir = @libexecdir@
localedir = @localedir@
localstatedir = @localstatedir@
lt_ECHO = @lt_ECHO@
mandir = @mandir@
mkdir_p = @mkdir_p@
multi_bin_programs = @multi_bin_programs@
multi_noinst_programs = @multi_noinst_programs@
oldincludedir = @oldincludedir@
pdfdir = @pdfdir@
pkgconfig_libdir = @pkgconfig_libdir@
pkgconfig_libfile = @pkgconfig_libfile@
polylib = @polylib@
polylib128_defs = @polylib128_defs@
polylib32_defs = @polylib32_defs@
polylib64_defs = @polylib64_defs@
polylibs = @polylibs@
prefix = @prefix@
program_transform_name = @program_transform_name@
psdir = @psdir@
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@
versioninfo = @versioninfo@
SUBDIRS = include Test
EXTRA_CPPFLAGS = -I$(srcdir)/include -Iinclude @CPPFLAGS@
ACLOCAL_AMFLAGS = -I m4
poly_src = $(srcdir)/applications
poly_arith = $(srcdir)/source/arith
CFILES = \
source/arith/errors.c \
source/kernel/errormsg.c \
source/kernel/vector.c \
source/kernel/matrix.c \
source/kernel/polyhedron.c \
source/kernel/polyparam.c \
source/kernel/param.c \
source/kernel/alpha.c \
source/ehrhart/ehrhart.c \
source/ehrhart/ext_ehrhart.c \
source/ehrhart/eval_ehrhart.c \
source/ehrhart/homogenization.c \
source/ehrhart/ranking.c \
source/kernel/matrix_addon.c \
source/kernel/matrix_permutations.c \
source/kernel/compress_parms.c \
source/kernel/SolveDio.c \
source/kernel/Lattice.c \
source/kernel/Matop.c \
source/kernel/NormalForms.c \
source/kernel/Zpolyhedron.c
sources = $(CFILES) \
$(poly_arith)/assert.h \
$(poly_arith)/arithmetique.h \
$(poly_arith)/arithmetic_errors.h
EXTRA_DIST = doc source/oldpolytest.c INSTALL COPYING
lib_LTLIBRARIES = @polylibs@
libpolylib32_la_LDFLAGS = -rpath $(libdir) -version-info @versioninfo@
libpolylib32_la_SOURCES = $(sources)
libpolylib32_la_CPPFLAGS = -DPOLYLIB_BITS=32 $(EXTRA_CPPFLAGS)
libpolylib32_la_LIBADD = @LTLIBOBJS@
libpolylib64_la_LDFLAGS = -rpath $(libdir) -version-info @versioninfo@
libpolylib64_la_SOURCES = $(sources)
libpolylib64_la_CPPFLAGS = -DPOLYLIB_BITS=64 $(EXTRA_CPPFLAGS)
libpolylib64_la_LIBADD = @LTLIBOBJS@
libpolylib128_la_LDFLAGS = -rpath $(libdir) -version-info @versioninfo@
libpolylib128_la_SOURCES = $(sources)
libpolylib128_la_CPPFLAGS = -DPOLYLIB_BITS=128 $(EXTRA_CPPFLAGS)
libpolylib128_la_LIBADD = @LTLIBOBJS@
libpolylibgmp_la_LDFLAGS = -rpath $(libdir) -version-info @versioninfo@
libpolylibgmp_la_SOURCES = $(sources)
libpolylibgmp_la_CPPFLAGS = -DGNUMP $(EXTRA_CPPFLAGS)
libpolylibgmp_la_LIBADD = @LTLIBOBJS@
testlib_CPPFLAGS = $(libpolylib@BITS@_la_CPPFLAGS)
example_CPPFLAGS = $(libpolylib@BITS@_la_CPPFLAGS)
count_CPPFLAGS = $(libpolylib@BITS@_la_CPPFLAGS)
c2p_CPPFLAGS = $(libpolylib@BITS@_la_CPPFLAGS)
r2p_CPPFLAGS = $(libpolylib@BITS@_la_CPPFLAGS)
findv_CPPFLAGS = $(libpolylib@BITS@_la_CPPFLAGS)
disjoint_union_sep_CPPFLAGS = $(libpolylib@BITS@_la_CPPFLAGS)
disjoint_union_adj_CPPFLAGS = $(libpolylib@BITS@_la_CPPFLAGS)
ehrhart_quick_apx_CPPFLAGS = $(libpolylib@BITS@_la_CPPFLAGS)
ehrhart_lower_bound_CPPFLAGS = $(libpolylib@BITS@_la_CPPFLAGS)
ehrhart_upper_bound_CPPFLAGS = $(libpolylib@BITS@_la_CPPFLAGS)
EXTRA_LTLIBRARIES = libpolylib32.la libpolylib64.la libpolylib128.la \
libpolylibgmp.la
# not using foreach GNU make extension
no_inst_programs_32 = Zpolytest32$(EXEEXT) polytest32$(EXEEXT) verif_ehrhart32$(EXEEXT) testCompressParms32$(EXEEXT)
no_inst_programs_64 = Zpolytest64$(EXEEXT) polytest64$(EXEEXT) verif_ehrhart64$(EXEEXT) testCompressParms64$(EXEEXT)
no_inst_programs_gmp = Zpolytestgmp$(EXEEXT) polytestgmp$(EXEEXT) verif_ehrhartgmp$(EXEEXT) testCompressParmsgmp$(EXEEXT)
multi_bin_programs_32 = ehrhart_ranking32$(EXEEXT) ehrhart_union32$(EXEEXT) pp32$(EXEEXT) testehrhart32$(EXEEXT)
multi_bin_programs_64 = ehrhart_ranking64$(EXEEXT) ehrhart_union64$(EXEEXT) pp64$(EXEEXT) testehrhart64$(EXEEXT)
multi_bin_programs_gmp = ehrhart_rankinggmp$(EXEEXT) ehrhart_uniongmp$(EXEEXT) ppgmp$(EXEEXT) testehrhartgmp$(EXEEXT)
EXTRA_PROGRAMS = $(no_inst_programs_32) $(no_inst_programs_64) $(no_inst_programs_gmp) \
$(multi_bin_programs_32) $(multi_bin_programs_64) $(multi_bin_programs_gmp)
LDADD = @polylib@
c2p_SOURCES = $(poly_src)/c2p.c
c2p_DEPENDENCIES = @polylib@
r2p_SOURCES = $(poly_src)/r2p.c
r2p_DEPENDENCIES = @polylib@
findv_SOURCES = $(poly_src)/findv.c
findv_DEPENDENCIES = @polylib@
disjoint_union_sep_SOURCES = $(poly_src)/disjoint_union_sep.c
disjoint_union_sep_DEPENDENCIES = @polylib@
disjoint_union_adj_SOURCES = $(poly_src)/disjoint_union_adj.c
disjoint_union_adj_DEPENDENCIES = @polylib@
ehrhart_quick_apx_SOURCES = $(poly_src)/ehrhart_quick_apx.c
ehrhart_quick_apx_DEPENDENCIES = @polylib@
ehrhart_upper_bound_SOURCES = $(poly_src)/ehrhart_upper_bound.c
ehrhart_upper_bound_DEPENDENCIES = @polylib@
ehrhart_lower_bound_SOURCES = $(poly_src)/ehrhart_lower_bound.c
ehrhart_lower_bound_DEPENDENCIES = @polylib@
testlib_SOURCES = $(poly_src)/testlib.c
testlib_DEPENDENCIES = @polylib@
example_SOURCES = $(poly_src)/example.c
example_DEPENDENCIES = @polylib@
count_SOURCES = source/count.c
count_DEPENDENCIES = @polylib@
Zpolytest32_CPPFLAGS = $(libpolylib32_la_CPPFLAGS)
Zpolytest32_SOURCES = $(poly_src)/Zpolytest.c
Zpolytest32_LDADD = libpolylib32.la
Zpolytest64_CPPFLAGS = $(libpolylib64_la_CPPFLAGS)
Zpolytest64_SOURCES = $(poly_src)/Zpolytest.c
Zpolytest64_LDADD = libpolylib64.la
Zpolytestgmp_CPPFLAGS = $(libpolylibgmp_la_CPPFLAGS)
Zpolytestgmp_SOURCES = $(poly_src)/Zpolytest.c
Zpolytestgmp_LDADD = libpolylibgmp.la
ehrhart_ranking32_CPPFLAGS = $(libpolylib32_la_CPPFLAGS)
ehrhart_ranking32_SOURCES = $(poly_src)/ehrhart_ranking.c
ehrhart_ranking32_LDADD = libpolylib32.la
ehrhart_ranking64_CPPFLAGS = $(libpolylib64_la_CPPFLAGS)
ehrhart_ranking64_SOURCES = $(poly_src)/ehrhart_ranking.c
ehrhart_ranking64_LDADD = libpolylib64.la
ehrhart_rankinggmp_CPPFLAGS = $(libpolylibgmp_la_CPPFLAGS)
ehrhart_rankinggmp_SOURCES = $(poly_src)/ehrhart_ranking.c
ehrhart_rankinggmp_LDADD = libpolylibgmp.la
ehrhart_union32_CPPFLAGS = $(libpolylib32_la_CPPFLAGS)
ehrhart_union32_SOURCES = $(poly_src)/ehrhart_union.c
ehrhart_union32_LDADD = libpolylib32.la
ehrhart_union64_CPPFLAGS = $(libpolylib64_la_CPPFLAGS)
ehrhart_union64_SOURCES = $(poly_src)/ehrhart_union.c
ehrhart_union64_LDADD = libpolylib64.la
ehrhart_uniongmp_CPPFLAGS = $(libpolylibgmp_la_CPPFLAGS)
ehrhart_uniongmp_SOURCES = $(poly_src)/ehrhart_union.c
ehrhart_uniongmp_LDADD = libpolylibgmp.la
polytest32_CPPFLAGS = $(libpolylib32_la_CPPFLAGS)
polytest32_SOURCES = $(poly_src)/polytest.c
polytest32_LDADD = libpolylib32.la
polytest64_CPPFLAGS = $(libpolylib64_la_CPPFLAGS)
polytest64_SOURCES = $(poly_src)/polytest.c
polytest64_LDADD = libpolylib64.la
polytestgmp_CPPFLAGS = $(libpolylibgmp_la_CPPFLAGS)
polytestgmp_SOURCES = $(poly_src)/polytest.c
polytestgmp_LDADD = libpolylibgmp.la
pp32_CPPFLAGS = $(libpolylib32_la_CPPFLAGS)
pp32_SOURCES = $(poly_src)/pp.c
pp32_LDADD = libpolylib32.la
pp64_CPPFLAGS = $(libpolylib64_la_CPPFLAGS)
pp64_SOURCES = $(poly_src)/pp.c
pp64_LDADD = libpolylib64.la
ppgmp_CPPFLAGS = $(libpolylibgmp_la_CPPFLAGS)
ppgmp_SOURCES = $(poly_src)/pp.c
ppgmp_LDADD = libpolylibgmp.la
testehrhart32_CPPFLAGS = $(libpolylib32_la_CPPFLAGS)
testehrhart32_SOURCES = $(poly_src)/testehrhart.c
testehrhart32_LDADD = libpolylib32.la
testehrhart64_CPPFLAGS = $(libpolylib64_la_CPPFLAGS)
testehrhart64_SOURCES = $(poly_src)/testehrhart.c
testehrhart64_LDADD = libpolylib64.la
testehrhartgmp_CPPFLAGS = $(libpolylibgmp_la_CPPFLAGS)
testehrhartgmp_SOURCES = $(poly_src)/testehrhart.c
testehrhartgmp_LDADD = libpolylibgmp.la
testCompressParms32_CPPFLAGS = $(libpolylib32_la_CPPFLAGS)
testCompressParms32_SOURCES = $(poly_src)/testCompressParms.c
testCompressParms32_LDADD = libpolylib32.la
testCompressParms64_CPPFLAGS = $(libpolylib64_la_CPPFLAGS)
testCompressParms64_SOURCES = $(poly_src)/testCompressParms.c
testCompressParms64_LDADD = libpolylib64.la
testCompressParmsgmp_CPPFLAGS = $(libpolylibgmp_la_CPPFLAGS)
testCompressParmsgmp_SOURCES = $(poly_src)/testCompressParms.c
testCompressParmsgmp_LDADD = libpolylibgmp.la
verif_ehrhart32_CPPFLAGS = $(libpolylib32_la_CPPFLAGS)
verif_ehrhart32_SOURCES = $(poly_src)/verif_ehrhart.c
verif_ehrhart32_LDADD = libpolylib32.la
verif_ehrhart64_CPPFLAGS = $(libpolylib64_la_CPPFLAGS)
verif_ehrhart64_SOURCES = $(poly_src)/verif_ehrhart.c
verif_ehrhart64_LDADD = libpolylib64.la
verif_ehrhartgmp_CPPFLAGS = $(libpolylibgmp_la_CPPFLAGS)
verif_ehrhartgmp_SOURCES = $(poly_src)/verif_ehrhart.c
verif_ehrhartgmp_LDADD = libpolylibgmp.la
all: config.h
$(MAKE) $(AM_MAKEFLAGS) all-recursive
.SUFFIXES:
.SUFFIXES: .c .lo .o .obj
am--refresh:
@:
$(srcdir)/Makefile.in: $(srcdir)/Makefile.am $(am__configure_deps)
@for dep in $?; do \
case '$(am__configure_deps)' in \
*$$dep*) \
echo ' cd $(srcdir) && $(AUTOMAKE) --gnu'; \
$(am__cd) $(srcdir) && $(AUTOMAKE) --gnu \
&& exit 0; \
exit 1;; \
esac; \
done; \
echo ' cd $(top_srcdir) && $(AUTOMAKE) --gnu Makefile'; \
$(am__cd) $(top_srcdir) && \
$(AUTOMAKE) --gnu Makefile
.PRECIOUS: 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__depfiles_maybe)'; \
cd $(top_builddir) && $(SHELL) ./config.status $@ $(am__depfiles_maybe);; \
esac;
$(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES)
$(SHELL) ./config.status --recheck
$(top_srcdir)/configure: $(am__configure_deps)
$(am__cd) $(srcdir) && $(AUTOCONF)
$(ACLOCAL_M4): $(am__aclocal_m4_deps)
$(am__cd) $(srcdir) && $(ACLOCAL) $(ACLOCAL_AMFLAGS)
$(am__aclocal_m4_deps):
config.h: stamp-h1
@if test ! -f $@; then \
rm -f stamp-h1; \
$(MAKE) $(AM_MAKEFLAGS) stamp-h1; \
else :; fi
stamp-h1: $(srcdir)/config.h.in $(top_builddir)/config.status
@rm -f stamp-h1
cd $(top_builddir) && $(SHELL) ./config.status config.h
$(srcdir)/config.h.in: $(am__configure_deps)
($(am__cd) $(top_srcdir) && $(AUTOHEADER))
rm -f stamp-h1
touch $@
distclean-hdr:
-rm -f config.h stamp-h1
polylib.doxygen: $(top_builddir)/config.status $(srcdir)/polylib.doxygen.in
cd $(top_builddir) && $(SHELL) ./config.status $@
install-libLTLIBRARIES: $(lib_LTLIBRARIES)
@$(NORMAL_INSTALL)
test -z "$(libdir)" || $(MKDIR_P) "$(DESTDIR)$(libdir)"
@list='$(lib_LTLIBRARIES)'; test -n "$(libdir)" || list=; \
list2=; for p in $$list; do \
if test -f $$p; then \
list2="$$list2 $$p"; \
else :; fi; \
done; \
test -z "$$list2" || { \
echo " $(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=install $(INSTALL) $(INSTALL_STRIP_FLAG) $$list2 '$(DESTDIR)$(libdir)'"; \
$(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=install $(INSTALL) $(INSTALL_STRIP_FLAG) $$list2 "$(DESTDIR)$(libdir)"; \
}
uninstall-libLTLIBRARIES:
@$(NORMAL_UNINSTALL)
@list='$(lib_LTLIBRARIES)'; test -n "$(libdir)" || list=; \
for p in $$list; do \
$(am__strip_dir) \
echo " $(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=uninstall rm -f '$(DESTDIR)$(libdir)/$$f'"; \
$(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=uninstall rm -f "$(DESTDIR)$(libdir)/$$f"; \
done
clean-libLTLIBRARIES:
-test -z "$(lib_LTLIBRARIES)" || rm -f $(lib_LTLIBRARIES)
@list='$(lib_LTLIBRARIES)'; for p in $$list; do \
dir="`echo $$p | sed -e 's|/[^/]*$$||'`"; \
test "$$dir" != "$$p" || dir=.; \
echo "rm -f \"$${dir}/so_locations\""; \
rm -f "$${dir}/so_locations"; \
done
libpolylib128.la: $(libpolylib128_la_OBJECTS) $(libpolylib128_la_DEPENDENCIES)
$(libpolylib128_la_LINK) $(libpolylib128_la_OBJECTS) $(libpolylib128_la_LIBADD) $(LIBS)
libpolylib32.la: $(libpolylib32_la_OBJECTS) $(libpolylib32_la_DEPENDENCIES)
$(libpolylib32_la_LINK) $(libpolylib32_la_OBJECTS) $(libpolylib32_la_LIBADD) $(LIBS)
libpolylib64.la: $(libpolylib64_la_OBJECTS) $(libpolylib64_la_DEPENDENCIES)
$(libpolylib64_la_LINK) $(libpolylib64_la_OBJECTS) $(libpolylib64_la_LIBADD) $(LIBS)
libpolylibgmp.la: $(libpolylibgmp_la_OBJECTS) $(libpolylibgmp_la_DEPENDENCIES)
$(libpolylibgmp_la_LINK) $(libpolylibgmp_la_OBJECTS) $(libpolylibgmp_la_LIBADD) $(LIBS)
install-binPROGRAMS: $(bin_PROGRAMS)
@$(NORMAL_INSTALL)
test -z "$(bindir)" || $(MKDIR_P) "$(DESTDIR)$(bindir)"
@list='$(bin_PROGRAMS)'; test -n "$(bindir)" || list=; \
for p in $$list; do echo "$$p $$p"; done | \
sed 's/$(EXEEXT)$$//' | \
while read p p1; do if test -f $$p || test -f $$p1; \
then echo "$$p"; echo "$$p"; else :; fi; \
done | \
sed -e 'p;s,.*/,,;n;h' -e 's|.*|.|' \
-e 'p;x;s,.*/,,;s/$(EXEEXT)$$//;$(transform);s/$$/$(EXEEXT)/' | \
sed 'N;N;N;s,\n, ,g' | \
$(AWK) 'BEGIN { files["."] = ""; dirs["."] = 1 } \
{ d=$$3; if (dirs[d] != 1) { print "d", d; dirs[d] = 1 } \
if ($$2 == $$4) files[d] = files[d] " " $$1; \
else { print "f", $$3 "/" $$4, $$1; } } \
END { for (d in files) print "f", d, files[d] }' | \
while read type dir files; do \
if test "$$dir" = .; then dir=; else dir=/$$dir; fi; \
test -z "$$files" || { \
echo " $(INSTALL_PROGRAM_ENV) $(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=install $(INSTALL_PROGRAM) $$files '$(DESTDIR)$(bindir)$$dir'"; \
$(INSTALL_PROGRAM_ENV) $(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=install $(INSTALL_PROGRAM) $$files "$(DESTDIR)$(bindir)$$dir" || exit $$?; \
} \
; done
uninstall-binPROGRAMS:
@$(NORMAL_UNINSTALL)
@list='$(bin_PROGRAMS)'; test -n "$(bindir)" || list=; \
files=`for p in $$list; do echo "$$p"; done | \
sed -e 'h;s,^.*/,,;s/$(EXEEXT)$$//;$(transform)' \
-e 's/$$/$(EXEEXT)/' `; \
test -n "$$list" || exit 0; \
echo " ( cd '$(DESTDIR)$(bindir)' && rm -f" $$files ")"; \
cd "$(DESTDIR)$(bindir)" && rm -f $$files
clean-binPROGRAMS:
@list='$(bin_PROGRAMS)'; test -n "$$list" || exit 0; \
echo " rm -f" $$list; \
rm -f $$list || exit $$?; \
test -n "$(EXEEXT)" || exit 0; \
list=`for p in $$list; do echo "$$p"; done | sed 's/$(EXEEXT)$$//'`; \
echo " rm -f" $$list; \
rm -f $$list
clean-noinstPROGRAMS:
@list='$(noinst_PROGRAMS)'; test -n "$$list" || exit 0; \
echo " rm -f" $$list; \
rm -f $$list || exit $$?; \
test -n "$(EXEEXT)" || exit 0; \
list=`for p in $$list; do echo "$$p"; done | sed 's/$(EXEEXT)$$//'`; \
echo " rm -f" $$list; \
rm -f $$list
Zpolytest32$(EXEEXT): $(Zpolytest32_OBJECTS) $(Zpolytest32_DEPENDENCIES)
@rm -f Zpolytest32$(EXEEXT)
$(LINK) $(Zpolytest32_OBJECTS) $(Zpolytest32_LDADD) $(LIBS)
Zpolytest64$(EXEEXT): $(Zpolytest64_OBJECTS) $(Zpolytest64_DEPENDENCIES)
@rm -f Zpolytest64$(EXEEXT)
$(LINK) $(Zpolytest64_OBJECTS) $(Zpolytest64_LDADD) $(LIBS)
Zpolytestgmp$(EXEEXT): $(Zpolytestgmp_OBJECTS) $(Zpolytestgmp_DEPENDENCIES)
@rm -f Zpolytestgmp$(EXEEXT)
$(LINK) $(Zpolytestgmp_OBJECTS) $(Zpolytestgmp_LDADD) $(LIBS)
c2p$(EXEEXT): $(c2p_OBJECTS) $(c2p_DEPENDENCIES)
@rm -f c2p$(EXEEXT)
$(LINK) $(c2p_OBJECTS) $(c2p_LDADD) $(LIBS)
count$(EXEEXT): $(count_OBJECTS) $(count_DEPENDENCIES)
@rm -f count$(EXEEXT)
$(LINK) $(count_OBJECTS) $(count_LDADD) $(LIBS)
disjoint_union_adj$(EXEEXT): $(disjoint_union_adj_OBJECTS) $(disjoint_union_adj_DEPENDENCIES)
@rm -f disjoint_union_adj$(EXEEXT)
$(LINK) $(disjoint_union_adj_OBJECTS) $(disjoint_union_adj_LDADD) $(LIBS)
disjoint_union_sep$(EXEEXT): $(disjoint_union_sep_OBJECTS) $(disjoint_union_sep_DEPENDENCIES)
@rm -f disjoint_union_sep$(EXEEXT)
$(LINK) $(disjoint_union_sep_OBJECTS) $(disjoint_union_sep_LDADD) $(LIBS)
ehrhart_lower_bound$(EXEEXT): $(ehrhart_lower_bound_OBJECTS) $(ehrhart_lower_bound_DEPENDENCIES)
@rm -f ehrhart_lower_bound$(EXEEXT)
$(LINK) $(ehrhart_lower_bound_OBJECTS) $(ehrhart_lower_bound_LDADD) $(LIBS)
ehrhart_quick_apx$(EXEEXT): $(ehrhart_quick_apx_OBJECTS) $(ehrhart_quick_apx_DEPENDENCIES)
@rm -f ehrhart_quick_apx$(EXEEXT)
$(LINK) $(ehrhart_quick_apx_OBJECTS) $(ehrhart_quick_apx_LDADD) $(LIBS)
ehrhart_ranking32$(EXEEXT): $(ehrhart_ranking32_OBJECTS) $(ehrhart_ranking32_DEPENDENCIES)
@rm -f ehrhart_ranking32$(EXEEXT)
$(LINK) $(ehrhart_ranking32_OBJECTS) $(ehrhart_ranking32_LDADD) $(LIBS)
ehrhart_ranking64$(EXEEXT): $(ehrhart_ranking64_OBJECTS) $(ehrhart_ranking64_DEPENDENCIES)
@rm -f ehrhart_ranking64$(EXEEXT)
$(LINK) $(ehrhart_ranking64_OBJECTS) $(ehrhart_ranking64_LDADD) $(LIBS)
ehrhart_rankinggmp$(EXEEXT): $(ehrhart_rankinggmp_OBJECTS) $(ehrhart_rankinggmp_DEPENDENCIES)
@rm -f ehrhart_rankinggmp$(EXEEXT)
$(LINK) $(ehrhart_rankinggmp_OBJECTS) $(ehrhart_rankinggmp_LDADD) $(LIBS)
ehrhart_union32$(EXEEXT): $(ehrhart_union32_OBJECTS) $(ehrhart_union32_DEPENDENCIES)
@rm -f ehrhart_union32$(EXEEXT)
$(LINK) $(ehrhart_union32_OBJECTS) $(ehrhart_union32_LDADD) $(LIBS)
ehrhart_union64$(EXEEXT): $(ehrhart_union64_OBJECTS) $(ehrhart_union64_DEPENDENCIES)
@rm -f ehrhart_union64$(EXEEXT)
$(LINK) $(ehrhart_union64_OBJECTS) $(ehrhart_union64_LDADD) $(LIBS)
ehrhart_uniongmp$(EXEEXT): $(ehrhart_uniongmp_OBJECTS) $(ehrhart_uniongmp_DEPENDENCIES)
@rm -f ehrhart_uniongmp$(EXEEXT)
$(LINK) $(ehrhart_uniongmp_OBJECTS) $(ehrhart_uniongmp_LDADD) $(LIBS)
ehrhart_upper_bound$(EXEEXT): $(ehrhart_upper_bound_OBJECTS) $(ehrhart_upper_bound_DEPENDENCIES)
@rm -f ehrhart_upper_bound$(EXEEXT)
$(LINK) $(ehrhart_upper_bound_OBJECTS) $(ehrhart_upper_bound_LDADD) $(LIBS)
example$(EXEEXT): $(example_OBJECTS) $(example_DEPENDENCIES)
@rm -f example$(EXEEXT)
$(LINK) $(example_OBJECTS) $(example_LDADD) $(LIBS)
findv$(EXEEXT): $(findv_OBJECTS) $(findv_DEPENDENCIES)
@rm -f findv$(EXEEXT)
$(LINK) $(findv_OBJECTS) $(findv_LDADD) $(LIBS)
polytest32$(EXEEXT): $(polytest32_OBJECTS) $(polytest32_DEPENDENCIES)
@rm -f polytest32$(EXEEXT)
$(LINK) $(polytest32_OBJECTS) $(polytest32_LDADD) $(LIBS)
polytest64$(EXEEXT): $(polytest64_OBJECTS) $(polytest64_DEPENDENCIES)
@rm -f polytest64$(EXEEXT)
$(LINK) $(polytest64_OBJECTS) $(polytest64_LDADD) $(LIBS)
polytestgmp$(EXEEXT): $(polytestgmp_OBJECTS) $(polytestgmp_DEPENDENCIES)
@rm -f polytestgmp$(EXEEXT)
$(LINK) $(polytestgmp_OBJECTS) $(polytestgmp_LDADD) $(LIBS)
pp32$(EXEEXT): $(pp32_OBJECTS) $(pp32_DEPENDENCIES)
@rm -f pp32$(EXEEXT)
$(LINK) $(pp32_OBJECTS) $(pp32_LDADD) $(LIBS)
pp64$(EXEEXT): $(pp64_OBJECTS) $(pp64_DEPENDENCIES)
@rm -f pp64$(EXEEXT)
$(LINK) $(pp64_OBJECTS) $(pp64_LDADD) $(LIBS)
ppgmp$(EXEEXT): $(ppgmp_OBJECTS) $(ppgmp_DEPENDENCIES)
@rm -f ppgmp$(EXEEXT)
$(LINK) $(ppgmp_OBJECTS) $(ppgmp_LDADD) $(LIBS)
r2p$(EXEEXT): $(r2p_OBJECTS) $(r2p_DEPENDENCIES)
@rm -f r2p$(EXEEXT)
$(LINK) $(r2p_OBJECTS) $(r2p_LDADD) $(LIBS)
testCompressParms32$(EXEEXT): $(testCompressParms32_OBJECTS) $(testCompressParms32_DEPENDENCIES)
@rm -f testCompressParms32$(EXEEXT)
$(LINK) $(testCompressParms32_OBJECTS) $(testCompressParms32_LDADD) $(LIBS)
testCompressParms64$(EXEEXT): $(testCompressParms64_OBJECTS) $(testCompressParms64_DEPENDENCIES)
@rm -f testCompressParms64$(EXEEXT)
$(LINK) $(testCompressParms64_OBJECTS) $(testCompressParms64_LDADD) $(LIBS)
testCompressParmsgmp$(EXEEXT): $(testCompressParmsgmp_OBJECTS) $(testCompressParmsgmp_DEPENDENCIES)
@rm -f testCompressParmsgmp$(EXEEXT)
$(LINK) $(testCompressParmsgmp_OBJECTS) $(testCompressParmsgmp_LDADD) $(LIBS)
testehrhart32$(EXEEXT): $(testehrhart32_OBJECTS) $(testehrhart32_DEPENDENCIES)
@rm -f testehrhart32$(EXEEXT)
$(LINK) $(testehrhart32_OBJECTS) $(testehrhart32_LDADD) $(LIBS)
testehrhart64$(EXEEXT): $(testehrhart64_OBJECTS) $(testehrhart64_DEPENDENCIES)
@rm -f testehrhart64$(EXEEXT)
$(LINK) $(testehrhart64_OBJECTS) $(testehrhart64_LDADD) $(LIBS)
testehrhartgmp$(EXEEXT): $(testehrhartgmp_OBJECTS) $(testehrhartgmp_DEPENDENCIES)
@rm -f testehrhartgmp$(EXEEXT)
$(LINK) $(testehrhartgmp_OBJECTS) $(testehrhartgmp_LDADD) $(LIBS)
testlib$(EXEEXT): $(testlib_OBJECTS) $(testlib_DEPENDENCIES)
@rm -f testlib$(EXEEXT)
$(LINK) $(testlib_OBJECTS) $(testlib_LDADD) $(LIBS)
verif_ehrhart32$(EXEEXT): $(verif_ehrhart32_OBJECTS) $(verif_ehrhart32_DEPENDENCIES)
@rm -f verif_ehrhart32$(EXEEXT)
$(LINK) $(verif_ehrhart32_OBJECTS) $(verif_ehrhart32_LDADD) $(LIBS)
verif_ehrhart64$(EXEEXT): $(verif_ehrhart64_OBJECTS) $(verif_ehrhart64_DEPENDENCIES)
@rm -f verif_ehrhart64$(EXEEXT)
$(LINK) $(verif_ehrhart64_OBJECTS) $(verif_ehrhart64_LDADD) $(LIBS)
verif_ehrhartgmp$(EXEEXT): $(verif_ehrhartgmp_OBJECTS) $(verif_ehrhartgmp_DEPENDENCIES)
@rm -f verif_ehrhartgmp$(EXEEXT)
$(LINK) $(verif_ehrhartgmp_OBJECTS) $(verif_ehrhartgmp_LDADD) $(LIBS)
mostlyclean-compile:
-rm -f *.$(OBJEXT)
distclean-compile:
-rm -f *.tab.c
@AMDEP_TRUE@@am__include@ @am__quote@$(DEPDIR)/mp_get_memory_functions.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/Zpolytest32-Zpolytest.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/Zpolytest64-Zpolytest.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/Zpolytestgmp-Zpolytest.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/c2p-c2p.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/count-count.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/disjoint_union_adj-disjoint_union_adj.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/disjoint_union_sep-disjoint_union_sep.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/ehrhart_lower_bound-ehrhart_lower_bound.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/ehrhart_quick_apx-ehrhart_quick_apx.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/ehrhart_ranking32-ehrhart_ranking.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/ehrhart_ranking64-ehrhart_ranking.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/ehrhart_rankinggmp-ehrhart_ranking.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/ehrhart_union32-ehrhart_union.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/ehrhart_union64-ehrhart_union.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/ehrhart_uniongmp-ehrhart_union.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/ehrhart_upper_bound-ehrhart_upper_bound.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/example-example.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/findv-findv.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libpolylib128_la-Lattice.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libpolylib128_la-Matop.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libpolylib128_la-NormalForms.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libpolylib128_la-SolveDio.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libpolylib128_la-Zpolyhedron.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libpolylib128_la-alpha.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libpolylib128_la-compress_parms.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libpolylib128_la-ehrhart.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libpolylib128_la-errormsg.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libpolylib128_la-errors.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libpolylib128_la-eval_ehrhart.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libpolylib128_la-ext_ehrhart.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libpolylib128_la-homogenization.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libpolylib128_la-matrix.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libpolylib128_la-matrix_addon.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libpolylib128_la-matrix_permutations.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libpolylib128_la-param.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libpolylib128_la-polyhedron.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libpolylib128_la-polyparam.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libpolylib128_la-ranking.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libpolylib128_la-vector.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libpolylib32_la-Lattice.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libpolylib32_la-Matop.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libpolylib32_la-NormalForms.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libpolylib32_la-SolveDio.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libpolylib32_la-Zpolyhedron.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libpolylib32_la-alpha.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libpolylib32_la-compress_parms.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libpolylib32_la-ehrhart.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libpolylib32_la-errormsg.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libpolylib32_la-errors.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libpolylib32_la-eval_ehrhart.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libpolylib32_la-ext_ehrhart.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libpolylib32_la-homogenization.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libpolylib32_la-matrix.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libpolylib32_la-matrix_addon.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libpolylib32_la-matrix_permutations.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libpolylib32_la-param.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libpolylib32_la-polyhedron.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libpolylib32_la-polyparam.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libpolylib32_la-ranking.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libpolylib32_la-vector.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libpolylib64_la-Lattice.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libpolylib64_la-Matop.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libpolylib64_la-NormalForms.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libpolylib64_la-SolveDio.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libpolylib64_la-Zpolyhedron.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libpolylib64_la-alpha.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libpolylib64_la-compress_parms.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libpolylib64_la-ehrhart.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libpolylib64_la-errormsg.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libpolylib64_la-errors.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libpolylib64_la-eval_ehrhart.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libpolylib64_la-ext_ehrhart.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libpolylib64_la-homogenization.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libpolylib64_la-matrix.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libpolylib64_la-matrix_addon.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libpolylib64_la-matrix_permutations.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libpolylib64_la-param.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libpolylib64_la-polyhedron.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libpolylib64_la-polyparam.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libpolylib64_la-ranking.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libpolylib64_la-vector.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libpolylibgmp_la-Lattice.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libpolylibgmp_la-Matop.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libpolylibgmp_la-NormalForms.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libpolylibgmp_la-SolveDio.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libpolylibgmp_la-Zpolyhedron.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libpolylibgmp_la-alpha.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libpolylibgmp_la-compress_parms.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libpolylibgmp_la-ehrhart.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libpolylibgmp_la-errormsg.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libpolylibgmp_la-errors.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libpolylibgmp_la-eval_ehrhart.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libpolylibgmp_la-ext_ehrhart.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libpolylibgmp_la-homogenization.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libpolylibgmp_la-matrix.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libpolylibgmp_la-matrix_addon.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libpolylibgmp_la-matrix_permutations.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libpolylibgmp_la-param.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libpolylibgmp_la-polyhedron.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libpolylibgmp_la-polyparam.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libpolylibgmp_la-ranking.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libpolylibgmp_la-vector.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/polytest32-polytest.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/polytest64-polytest.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/polytestgmp-polytest.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/pp32-pp.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/pp64-pp.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/ppgmp-pp.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/r2p-r2p.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/testCompressParms32-testCompressParms.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/testCompressParms64-testCompressParms.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/testCompressParmsgmp-testCompressParms.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/testehrhart32-testehrhart.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/testehrhart64-testehrhart.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/testehrhartgmp-testehrhart.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/testlib-testlib.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/verif_ehrhart32-verif_ehrhart.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/verif_ehrhart64-verif_ehrhart.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/verif_ehrhartgmp-verif_ehrhart.Po@am__quote@
.c.o:
@am__fastdepCC_TRUE@ $(COMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $<
@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='$<' object='$@' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(COMPILE) -c $<
.c.obj:
@am__fastdepCC_TRUE@ $(COMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ `$(CYGPATH_W) '$<'`
@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='$<' object='$@' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(COMPILE) -c `$(CYGPATH_W) '$<'`
.c.lo:
@am__fastdepCC_TRUE@ $(LTCOMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $<
@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='$<' object='$@' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(LTCOMPILE) -c -o $@ $<
libpolylib128_la-errors.lo: source/arith/errors.c
@am__fastdepCC_TRUE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libpolylib128_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT libpolylib128_la-errors.lo -MD -MP -MF $(DEPDIR)/libpolylib128_la-errors.Tpo -c -o libpolylib128_la-errors.lo `test -f 'source/arith/errors.c' || echo '$(srcdir)/'`source/arith/errors.c
@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/libpolylib128_la-errors.Tpo $(DEPDIR)/libpolylib128_la-errors.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='source/arith/errors.c' object='libpolylib128_la-errors.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libpolylib128_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o libpolylib128_la-errors.lo `test -f 'source/arith/errors.c' || echo '$(srcdir)/'`source/arith/errors.c
libpolylib128_la-errormsg.lo: source/kernel/errormsg.c
@am__fastdepCC_TRUE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libpolylib128_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT libpolylib128_la-errormsg.lo -MD -MP -MF $(DEPDIR)/libpolylib128_la-errormsg.Tpo -c -o libpolylib128_la-errormsg.lo `test -f 'source/kernel/errormsg.c' || echo '$(srcdir)/'`source/kernel/errormsg.c
@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/libpolylib128_la-errormsg.Tpo $(DEPDIR)/libpolylib128_la-errormsg.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='source/kernel/errormsg.c' object='libpolylib128_la-errormsg.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libpolylib128_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o libpolylib128_la-errormsg.lo `test -f 'source/kernel/errormsg.c' || echo '$(srcdir)/'`source/kernel/errormsg.c
libpolylib128_la-vector.lo: source/kernel/vector.c
@am__fastdepCC_TRUE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libpolylib128_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT libpolylib128_la-vector.lo -MD -MP -MF $(DEPDIR)/libpolylib128_la-vector.Tpo -c -o libpolylib128_la-vector.lo `test -f 'source/kernel/vector.c' || echo '$(srcdir)/'`source/kernel/vector.c
@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/libpolylib128_la-vector.Tpo $(DEPDIR)/libpolylib128_la-vector.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='source/kernel/vector.c' object='libpolylib128_la-vector.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libpolylib128_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o libpolylib128_la-vector.lo `test -f 'source/kernel/vector.c' || echo '$(srcdir)/'`source/kernel/vector.c
libpolylib128_la-matrix.lo: source/kernel/matrix.c
@am__fastdepCC_TRUE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libpolylib128_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT libpolylib128_la-matrix.lo -MD -MP -MF $(DEPDIR)/libpolylib128_la-matrix.Tpo -c -o libpolylib128_la-matrix.lo `test -f 'source/kernel/matrix.c' || echo '$(srcdir)/'`source/kernel/matrix.c
@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/libpolylib128_la-matrix.Tpo $(DEPDIR)/libpolylib128_la-matrix.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='source/kernel/matrix.c' object='libpolylib128_la-matrix.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libpolylib128_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o libpolylib128_la-matrix.lo `test -f 'source/kernel/matrix.c' || echo '$(srcdir)/'`source/kernel/matrix.c
libpolylib128_la-polyhedron.lo: source/kernel/polyhedron.c
@am__fastdepCC_TRUE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libpolylib128_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT libpolylib128_la-polyhedron.lo -MD -MP -MF $(DEPDIR)/libpolylib128_la-polyhedron.Tpo -c -o libpolylib128_la-polyhedron.lo `test -f 'source/kernel/polyhedron.c' || echo '$(srcdir)/'`source/kernel/polyhedron.c
@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/libpolylib128_la-polyhedron.Tpo $(DEPDIR)/libpolylib128_la-polyhedron.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='source/kernel/polyhedron.c' object='libpolylib128_la-polyhedron.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libpolylib128_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o libpolylib128_la-polyhedron.lo `test -f 'source/kernel/polyhedron.c' || echo '$(srcdir)/'`source/kernel/polyhedron.c
libpolylib128_la-polyparam.lo: source/kernel/polyparam.c
@am__fastdepCC_TRUE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libpolylib128_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT libpolylib128_la-polyparam.lo -MD -MP -MF $(DEPDIR)/libpolylib128_la-polyparam.Tpo -c -o libpolylib128_la-polyparam.lo `test -f 'source/kernel/polyparam.c' || echo '$(srcdir)/'`source/kernel/polyparam.c
@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/libpolylib128_la-polyparam.Tpo $(DEPDIR)/libpolylib128_la-polyparam.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='source/kernel/polyparam.c' object='libpolylib128_la-polyparam.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libpolylib128_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o libpolylib128_la-polyparam.lo `test -f 'source/kernel/polyparam.c' || echo '$(srcdir)/'`source/kernel/polyparam.c
libpolylib128_la-param.lo: source/kernel/param.c
@am__fastdepCC_TRUE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libpolylib128_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT libpolylib128_la-param.lo -MD -MP -MF $(DEPDIR)/libpolylib128_la-param.Tpo -c -o libpolylib128_la-param.lo `test -f 'source/kernel/param.c' || echo '$(srcdir)/'`source/kernel/param.c
@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/libpolylib128_la-param.Tpo $(DEPDIR)/libpolylib128_la-param.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='source/kernel/param.c' object='libpolylib128_la-param.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libpolylib128_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o libpolylib128_la-param.lo `test -f 'source/kernel/param.c' || echo '$(srcdir)/'`source/kernel/param.c
libpolylib128_la-alpha.lo: source/kernel/alpha.c
@am__fastdepCC_TRUE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libpolylib128_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT libpolylib128_la-alpha.lo -MD -MP -MF $(DEPDIR)/libpolylib128_la-alpha.Tpo -c -o libpolylib128_la-alpha.lo `test -f 'source/kernel/alpha.c' || echo '$(srcdir)/'`source/kernel/alpha.c
@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/libpolylib128_la-alpha.Tpo $(DEPDIR)/libpolylib128_la-alpha.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='source/kernel/alpha.c' object='libpolylib128_la-alpha.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libpolylib128_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o libpolylib128_la-alpha.lo `test -f 'source/kernel/alpha.c' || echo '$(srcdir)/'`source/kernel/alpha.c
libpolylib128_la-ehrhart.lo: source/ehrhart/ehrhart.c
@am__fastdepCC_TRUE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libpolylib128_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT libpolylib128_la-ehrhart.lo -MD -MP -MF $(DEPDIR)/libpolylib128_la-ehrhart.Tpo -c -o libpolylib128_la-ehrhart.lo `test -f 'source/ehrhart/ehrhart.c' || echo '$(srcdir)/'`source/ehrhart/ehrhart.c
@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/libpolylib128_la-ehrhart.Tpo $(DEPDIR)/libpolylib128_la-ehrhart.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='source/ehrhart/ehrhart.c' object='libpolylib128_la-ehrhart.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libpolylib128_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o libpolylib128_la-ehrhart.lo `test -f 'source/ehrhart/ehrhart.c' || echo '$(srcdir)/'`source/ehrhart/ehrhart.c
libpolylib128_la-ext_ehrhart.lo: source/ehrhart/ext_ehrhart.c
@am__fastdepCC_TRUE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libpolylib128_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT libpolylib128_la-ext_ehrhart.lo -MD -MP -MF $(DEPDIR)/libpolylib128_la-ext_ehrhart.Tpo -c -o libpolylib128_la-ext_ehrhart.lo `test -f 'source/ehrhart/ext_ehrhart.c' || echo '$(srcdir)/'`source/ehrhart/ext_ehrhart.c
@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/libpolylib128_la-ext_ehrhart.Tpo $(DEPDIR)/libpolylib128_la-ext_ehrhart.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='source/ehrhart/ext_ehrhart.c' object='libpolylib128_la-ext_ehrhart.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libpolylib128_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o libpolylib128_la-ext_ehrhart.lo `test -f 'source/ehrhart/ext_ehrhart.c' || echo '$(srcdir)/'`source/ehrhart/ext_ehrhart.c
libpolylib128_la-eval_ehrhart.lo: source/ehrhart/eval_ehrhart.c
@am__fastdepCC_TRUE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libpolylib128_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT libpolylib128_la-eval_ehrhart.lo -MD -MP -MF $(DEPDIR)/libpolylib128_la-eval_ehrhart.Tpo -c -o libpolylib128_la-eval_ehrhart.lo `test -f 'source/ehrhart/eval_ehrhart.c' || echo '$(srcdir)/'`source/ehrhart/eval_ehrhart.c
@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/libpolylib128_la-eval_ehrhart.Tpo $(DEPDIR)/libpolylib128_la-eval_ehrhart.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='source/ehrhart/eval_ehrhart.c' object='libpolylib128_la-eval_ehrhart.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libpolylib128_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o libpolylib128_la-eval_ehrhart.lo `test -f 'source/ehrhart/eval_ehrhart.c' || echo '$(srcdir)/'`source/ehrhart/eval_ehrhart.c
libpolylib128_la-homogenization.lo: source/ehrhart/homogenization.c
@am__fastdepCC_TRUE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libpolylib128_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT libpolylib128_la-homogenization.lo -MD -MP -MF $(DEPDIR)/libpolylib128_la-homogenization.Tpo -c -o libpolylib128_la-homogenization.lo `test -f 'source/ehrhart/homogenization.c' || echo '$(srcdir)/'`source/ehrhart/homogenization.c
@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/libpolylib128_la-homogenization.Tpo $(DEPDIR)/libpolylib128_la-homogenization.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='source/ehrhart/homogenization.c' object='libpolylib128_la-homogenization.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libpolylib128_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o libpolylib128_la-homogenization.lo `test -f 'source/ehrhart/homogenization.c' || echo '$(srcdir)/'`source/ehrhart/homogenization.c
libpolylib128_la-ranking.lo: source/ehrhart/ranking.c
@am__fastdepCC_TRUE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libpolylib128_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT libpolylib128_la-ranking.lo -MD -MP -MF $(DEPDIR)/libpolylib128_la-ranking.Tpo -c -o libpolylib128_la-ranking.lo `test -f 'source/ehrhart/ranking.c' || echo '$(srcdir)/'`source/ehrhart/ranking.c
@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/libpolylib128_la-ranking.Tpo $(DEPDIR)/libpolylib128_la-ranking.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='source/ehrhart/ranking.c' object='libpolylib128_la-ranking.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libpolylib128_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o libpolylib128_la-ranking.lo `test -f 'source/ehrhart/ranking.c' || echo '$(srcdir)/'`source/ehrhart/ranking.c
libpolylib128_la-matrix_addon.lo: source/kernel/matrix_addon.c
@am__fastdepCC_TRUE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libpolylib128_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT libpolylib128_la-matrix_addon.lo -MD -MP -MF $(DEPDIR)/libpolylib128_la-matrix_addon.Tpo -c -o libpolylib128_la-matrix_addon.lo `test -f 'source/kernel/matrix_addon.c' || echo '$(srcdir)/'`source/kernel/matrix_addon.c
@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/libpolylib128_la-matrix_addon.Tpo $(DEPDIR)/libpolylib128_la-matrix_addon.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='source/kernel/matrix_addon.c' object='libpolylib128_la-matrix_addon.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libpolylib128_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o libpolylib128_la-matrix_addon.lo `test -f 'source/kernel/matrix_addon.c' || echo '$(srcdir)/'`source/kernel/matrix_addon.c
libpolylib128_la-matrix_permutations.lo: source/kernel/matrix_permutations.c
@am__fastdepCC_TRUE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libpolylib128_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT libpolylib128_la-matrix_permutations.lo -MD -MP -MF $(DEPDIR)/libpolylib128_la-matrix_permutations.Tpo -c -o libpolylib128_la-matrix_permutations.lo `test -f 'source/kernel/matrix_permutations.c' || echo '$(srcdir)/'`source/kernel/matrix_permutations.c
@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/libpolylib128_la-matrix_permutations.Tpo $(DEPDIR)/libpolylib128_la-matrix_permutations.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='source/kernel/matrix_permutations.c' object='libpolylib128_la-matrix_permutations.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libpolylib128_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o libpolylib128_la-matrix_permutations.lo `test -f 'source/kernel/matrix_permutations.c' || echo '$(srcdir)/'`source/kernel/matrix_permutations.c
libpolylib128_la-compress_parms.lo: source/kernel/compress_parms.c
@am__fastdepCC_TRUE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libpolylib128_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT libpolylib128_la-compress_parms.lo -MD -MP -MF $(DEPDIR)/libpolylib128_la-compress_parms.Tpo -c -o libpolylib128_la-compress_parms.lo `test -f 'source/kernel/compress_parms.c' || echo '$(srcdir)/'`source/kernel/compress_parms.c
@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/libpolylib128_la-compress_parms.Tpo $(DEPDIR)/libpolylib128_la-compress_parms.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='source/kernel/compress_parms.c' object='libpolylib128_la-compress_parms.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libpolylib128_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o libpolylib128_la-compress_parms.lo `test -f 'source/kernel/compress_parms.c' || echo '$(srcdir)/'`source/kernel/compress_parms.c
libpolylib128_la-SolveDio.lo: source/kernel/SolveDio.c
@am__fastdepCC_TRUE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libpolylib128_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT libpolylib128_la-SolveDio.lo -MD -MP -MF $(DEPDIR)/libpolylib128_la-SolveDio.Tpo -c -o libpolylib128_la-SolveDio.lo `test -f 'source/kernel/SolveDio.c' || echo '$(srcdir)/'`source/kernel/SolveDio.c
@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/libpolylib128_la-SolveDio.Tpo $(DEPDIR)/libpolylib128_la-SolveDio.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='source/kernel/SolveDio.c' object='libpolylib128_la-SolveDio.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libpolylib128_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o libpolylib128_la-SolveDio.lo `test -f 'source/kernel/SolveDio.c' || echo '$(srcdir)/'`source/kernel/SolveDio.c
libpolylib128_la-Lattice.lo: source/kernel/Lattice.c
@am__fastdepCC_TRUE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libpolylib128_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT libpolylib128_la-Lattice.lo -MD -MP -MF $(DEPDIR)/libpolylib128_la-Lattice.Tpo -c -o libpolylib128_la-Lattice.lo `test -f 'source/kernel/Lattice.c' || echo '$(srcdir)/'`source/kernel/Lattice.c
@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/libpolylib128_la-Lattice.Tpo $(DEPDIR)/libpolylib128_la-Lattice.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='source/kernel/Lattice.c' object='libpolylib128_la-Lattice.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libpolylib128_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o libpolylib128_la-Lattice.lo `test -f 'source/kernel/Lattice.c' || echo '$(srcdir)/'`source/kernel/Lattice.c
libpolylib128_la-Matop.lo: source/kernel/Matop.c
@am__fastdepCC_TRUE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libpolylib128_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT libpolylib128_la-Matop.lo -MD -MP -MF $(DEPDIR)/libpolylib128_la-Matop.Tpo -c -o libpolylib128_la-Matop.lo `test -f 'source/kernel/Matop.c' || echo '$(srcdir)/'`source/kernel/Matop.c
@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/libpolylib128_la-Matop.Tpo $(DEPDIR)/libpolylib128_la-Matop.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='source/kernel/Matop.c' object='libpolylib128_la-Matop.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libpolylib128_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o libpolylib128_la-Matop.lo `test -f 'source/kernel/Matop.c' || echo '$(srcdir)/'`source/kernel/Matop.c
libpolylib128_la-NormalForms.lo: source/kernel/NormalForms.c
@am__fastdepCC_TRUE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libpolylib128_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT libpolylib128_la-NormalForms.lo -MD -MP -MF $(DEPDIR)/libpolylib128_la-NormalForms.Tpo -c -o libpolylib128_la-NormalForms.lo `test -f 'source/kernel/NormalForms.c' || echo '$(srcdir)/'`source/kernel/NormalForms.c
@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/libpolylib128_la-NormalForms.Tpo $(DEPDIR)/libpolylib128_la-NormalForms.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='source/kernel/NormalForms.c' object='libpolylib128_la-NormalForms.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libpolylib128_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o libpolylib128_la-NormalForms.lo `test -f 'source/kernel/NormalForms.c' || echo '$(srcdir)/'`source/kernel/NormalForms.c
libpolylib128_la-Zpolyhedron.lo: source/kernel/Zpolyhedron.c
@am__fastdepCC_TRUE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libpolylib128_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT libpolylib128_la-Zpolyhedron.lo -MD -MP -MF $(DEPDIR)/libpolylib128_la-Zpolyhedron.Tpo -c -o libpolylib128_la-Zpolyhedron.lo `test -f 'source/kernel/Zpolyhedron.c' || echo '$(srcdir)/'`source/kernel/Zpolyhedron.c
@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/libpolylib128_la-Zpolyhedron.Tpo $(DEPDIR)/libpolylib128_la-Zpolyhedron.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='source/kernel/Zpolyhedron.c' object='libpolylib128_la-Zpolyhedron.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libpolylib128_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o libpolylib128_la-Zpolyhedron.lo `test -f 'source/kernel/Zpolyhedron.c' || echo '$(srcdir)/'`source/kernel/Zpolyhedron.c
libpolylib32_la-errors.lo: source/arith/errors.c
@am__fastdepCC_TRUE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libpolylib32_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT libpolylib32_la-errors.lo -MD -MP -MF $(DEPDIR)/libpolylib32_la-errors.Tpo -c -o libpolylib32_la-errors.lo `test -f 'source/arith/errors.c' || echo '$(srcdir)/'`source/arith/errors.c
@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/libpolylib32_la-errors.Tpo $(DEPDIR)/libpolylib32_la-errors.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='source/arith/errors.c' object='libpolylib32_la-errors.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libpolylib32_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o libpolylib32_la-errors.lo `test -f 'source/arith/errors.c' || echo '$(srcdir)/'`source/arith/errors.c
libpolylib32_la-errormsg.lo: source/kernel/errormsg.c
@am__fastdepCC_TRUE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libpolylib32_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT libpolylib32_la-errormsg.lo -MD -MP -MF $(DEPDIR)/libpolylib32_la-errormsg.Tpo -c -o libpolylib32_la-errormsg.lo `test -f 'source/kernel/errormsg.c' || echo '$(srcdir)/'`source/kernel/errormsg.c
@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/libpolylib32_la-errormsg.Tpo $(DEPDIR)/libpolylib32_la-errormsg.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='source/kernel/errormsg.c' object='libpolylib32_la-errormsg.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libpolylib32_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o libpolylib32_la-errormsg.lo `test -f 'source/kernel/errormsg.c' || echo '$(srcdir)/'`source/kernel/errormsg.c
libpolylib32_la-vector.lo: source/kernel/vector.c
@am__fastdepCC_TRUE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libpolylib32_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT libpolylib32_la-vector.lo -MD -MP -MF $(DEPDIR)/libpolylib32_la-vector.Tpo -c -o libpolylib32_la-vector.lo `test -f 'source/kernel/vector.c' || echo '$(srcdir)/'`source/kernel/vector.c
@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/libpolylib32_la-vector.Tpo $(DEPDIR)/libpolylib32_la-vector.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='source/kernel/vector.c' object='libpolylib32_la-vector.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libpolylib32_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o libpolylib32_la-vector.lo `test -f 'source/kernel/vector.c' || echo '$(srcdir)/'`source/kernel/vector.c
libpolylib32_la-matrix.lo: source/kernel/matrix.c
@am__fastdepCC_TRUE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libpolylib32_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT libpolylib32_la-matrix.lo -MD -MP -MF $(DEPDIR)/libpolylib32_la-matrix.Tpo -c -o libpolylib32_la-matrix.lo `test -f 'source/kernel/matrix.c' || echo '$(srcdir)/'`source/kernel/matrix.c
@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/libpolylib32_la-matrix.Tpo $(DEPDIR)/libpolylib32_la-matrix.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='source/kernel/matrix.c' object='libpolylib32_la-matrix.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libpolylib32_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o libpolylib32_la-matrix.lo `test -f 'source/kernel/matrix.c' || echo '$(srcdir)/'`source/kernel/matrix.c
libpolylib32_la-polyhedron.lo: source/kernel/polyhedron.c
@am__fastdepCC_TRUE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libpolylib32_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT libpolylib32_la-polyhedron.lo -MD -MP -MF $(DEPDIR)/libpolylib32_la-polyhedron.Tpo -c -o libpolylib32_la-polyhedron.lo `test -f 'source/kernel/polyhedron.c' || echo '$(srcdir)/'`source/kernel/polyhedron.c
@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/libpolylib32_la-polyhedron.Tpo $(DEPDIR)/libpolylib32_la-polyhedron.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='source/kernel/polyhedron.c' object='libpolylib32_la-polyhedron.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libpolylib32_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o libpolylib32_la-polyhedron.lo `test -f 'source/kernel/polyhedron.c' || echo '$(srcdir)/'`source/kernel/polyhedron.c
libpolylib32_la-polyparam.lo: source/kernel/polyparam.c
@am__fastdepCC_TRUE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libpolylib32_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT libpolylib32_la-polyparam.lo -MD -MP -MF $(DEPDIR)/libpolylib32_la-polyparam.Tpo -c -o libpolylib32_la-polyparam.lo `test -f 'source/kernel/polyparam.c' || echo '$(srcdir)/'`source/kernel/polyparam.c
@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/libpolylib32_la-polyparam.Tpo $(DEPDIR)/libpolylib32_la-polyparam.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='source/kernel/polyparam.c' object='libpolylib32_la-polyparam.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libpolylib32_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o libpolylib32_la-polyparam.lo `test -f 'source/kernel/polyparam.c' || echo '$(srcdir)/'`source/kernel/polyparam.c
libpolylib32_la-param.lo: source/kernel/param.c
@am__fastdepCC_TRUE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libpolylib32_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT libpolylib32_la-param.lo -MD -MP -MF $(DEPDIR)/libpolylib32_la-param.Tpo -c -o libpolylib32_la-param.lo `test -f 'source/kernel/param.c' || echo '$(srcdir)/'`source/kernel/param.c
@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/libpolylib32_la-param.Tpo $(DEPDIR)/libpolylib32_la-param.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='source/kernel/param.c' object='libpolylib32_la-param.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libpolylib32_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o libpolylib32_la-param.lo `test -f 'source/kernel/param.c' || echo '$(srcdir)/'`source/kernel/param.c
libpolylib32_la-alpha.lo: source/kernel/alpha.c
@am__fastdepCC_TRUE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libpolylib32_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT libpolylib32_la-alpha.lo -MD -MP -MF $(DEPDIR)/libpolylib32_la-alpha.Tpo -c -o libpolylib32_la-alpha.lo `test -f 'source/kernel/alpha.c' || echo '$(srcdir)/'`source/kernel/alpha.c
@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/libpolylib32_la-alpha.Tpo $(DEPDIR)/libpolylib32_la-alpha.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='source/kernel/alpha.c' object='libpolylib32_la-alpha.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libpolylib32_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o libpolylib32_la-alpha.lo `test -f 'source/kernel/alpha.c' || echo '$(srcdir)/'`source/kernel/alpha.c
libpolylib32_la-ehrhart.lo: source/ehrhart/ehrhart.c
@am__fastdepCC_TRUE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libpolylib32_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT libpolylib32_la-ehrhart.lo -MD -MP -MF $(DEPDIR)/libpolylib32_la-ehrhart.Tpo -c -o libpolylib32_la-ehrhart.lo `test -f 'source/ehrhart/ehrhart.c' || echo '$(srcdir)/'`source/ehrhart/ehrhart.c
@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/libpolylib32_la-ehrhart.Tpo $(DEPDIR)/libpolylib32_la-ehrhart.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='source/ehrhart/ehrhart.c' object='libpolylib32_la-ehrhart.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libpolylib32_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o libpolylib32_la-ehrhart.lo `test -f 'source/ehrhart/ehrhart.c' || echo '$(srcdir)/'`source/ehrhart/ehrhart.c
libpolylib32_la-ext_ehrhart.lo: source/ehrhart/ext_ehrhart.c
@am__fastdepCC_TRUE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libpolylib32_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT libpolylib32_la-ext_ehrhart.lo -MD -MP -MF $(DEPDIR)/libpolylib32_la-ext_ehrhart.Tpo -c -o libpolylib32_la-ext_ehrhart.lo `test -f 'source/ehrhart/ext_ehrhart.c' || echo '$(srcdir)/'`source/ehrhart/ext_ehrhart.c
@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/libpolylib32_la-ext_ehrhart.Tpo $(DEPDIR)/libpolylib32_la-ext_ehrhart.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='source/ehrhart/ext_ehrhart.c' object='libpolylib32_la-ext_ehrhart.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libpolylib32_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o libpolylib32_la-ext_ehrhart.lo `test -f 'source/ehrhart/ext_ehrhart.c' || echo '$(srcdir)/'`source/ehrhart/ext_ehrhart.c
libpolylib32_la-eval_ehrhart.lo: source/ehrhart/eval_ehrhart.c
@am__fastdepCC_TRUE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libpolylib32_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT libpolylib32_la-eval_ehrhart.lo -MD -MP -MF $(DEPDIR)/libpolylib32_la-eval_ehrhart.Tpo -c -o libpolylib32_la-eval_ehrhart.lo `test -f 'source/ehrhart/eval_ehrhart.c' || echo '$(srcdir)/'`source/ehrhart/eval_ehrhart.c
@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/libpolylib32_la-eval_ehrhart.Tpo $(DEPDIR)/libpolylib32_la-eval_ehrhart.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='source/ehrhart/eval_ehrhart.c' object='libpolylib32_la-eval_ehrhart.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libpolylib32_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o libpolylib32_la-eval_ehrhart.lo `test -f 'source/ehrhart/eval_ehrhart.c' || echo '$(srcdir)/'`source/ehrhart/eval_ehrhart.c
libpolylib32_la-homogenization.lo: source/ehrhart/homogenization.c
@am__fastdepCC_TRUE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libpolylib32_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT libpolylib32_la-homogenization.lo -MD -MP -MF $(DEPDIR)/libpolylib32_la-homogenization.Tpo -c -o libpolylib32_la-homogenization.lo `test -f 'source/ehrhart/homogenization.c' || echo '$(srcdir)/'`source/ehrhart/homogenization.c
@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/libpolylib32_la-homogenization.Tpo $(DEPDIR)/libpolylib32_la-homogenization.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='source/ehrhart/homogenization.c' object='libpolylib32_la-homogenization.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libpolylib32_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o libpolylib32_la-homogenization.lo `test -f 'source/ehrhart/homogenization.c' || echo '$(srcdir)/'`source/ehrhart/homogenization.c
libpolylib32_la-ranking.lo: source/ehrhart/ranking.c
@am__fastdepCC_TRUE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libpolylib32_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT libpolylib32_la-ranking.lo -MD -MP -MF $(DEPDIR)/libpolylib32_la-ranking.Tpo -c -o libpolylib32_la-ranking.lo `test -f 'source/ehrhart/ranking.c' || echo '$(srcdir)/'`source/ehrhart/ranking.c
@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/libpolylib32_la-ranking.Tpo $(DEPDIR)/libpolylib32_la-ranking.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='source/ehrhart/ranking.c' object='libpolylib32_la-ranking.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libpolylib32_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o libpolylib32_la-ranking.lo `test -f 'source/ehrhart/ranking.c' || echo '$(srcdir)/'`source/ehrhart/ranking.c
libpolylib32_la-matrix_addon.lo: source/kernel/matrix_addon.c
@am__fastdepCC_TRUE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libpolylib32_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT libpolylib32_la-matrix_addon.lo -MD -MP -MF $(DEPDIR)/libpolylib32_la-matrix_addon.Tpo -c -o libpolylib32_la-matrix_addon.lo `test -f 'source/kernel/matrix_addon.c' || echo '$(srcdir)/'`source/kernel/matrix_addon.c
@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/libpolylib32_la-matrix_addon.Tpo $(DEPDIR)/libpolylib32_la-matrix_addon.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='source/kernel/matrix_addon.c' object='libpolylib32_la-matrix_addon.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libpolylib32_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o libpolylib32_la-matrix_addon.lo `test -f 'source/kernel/matrix_addon.c' || echo '$(srcdir)/'`source/kernel/matrix_addon.c
libpolylib32_la-matrix_permutations.lo: source/kernel/matrix_permutations.c
@am__fastdepCC_TRUE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libpolylib32_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT libpolylib32_la-matrix_permutations.lo -MD -MP -MF $(DEPDIR)/libpolylib32_la-matrix_permutations.Tpo -c -o libpolylib32_la-matrix_permutations.lo `test -f 'source/kernel/matrix_permutations.c' || echo '$(srcdir)/'`source/kernel/matrix_permutations.c
@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/libpolylib32_la-matrix_permutations.Tpo $(DEPDIR)/libpolylib32_la-matrix_permutations.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='source/kernel/matrix_permutations.c' object='libpolylib32_la-matrix_permutations.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libpolylib32_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o libpolylib32_la-matrix_permutations.lo `test -f 'source/kernel/matrix_permutations.c' || echo '$(srcdir)/'`source/kernel/matrix_permutations.c
libpolylib32_la-compress_parms.lo: source/kernel/compress_parms.c
@am__fastdepCC_TRUE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libpolylib32_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT libpolylib32_la-compress_parms.lo -MD -MP -MF $(DEPDIR)/libpolylib32_la-compress_parms.Tpo -c -o libpolylib32_la-compress_parms.lo `test -f 'source/kernel/compress_parms.c' || echo '$(srcdir)/'`source/kernel/compress_parms.c
@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/libpolylib32_la-compress_parms.Tpo $(DEPDIR)/libpolylib32_la-compress_parms.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='source/kernel/compress_parms.c' object='libpolylib32_la-compress_parms.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libpolylib32_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o libpolylib32_la-compress_parms.lo `test -f 'source/kernel/compress_parms.c' || echo '$(srcdir)/'`source/kernel/compress_parms.c
libpolylib32_la-SolveDio.lo: source/kernel/SolveDio.c
@am__fastdepCC_TRUE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libpolylib32_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT libpolylib32_la-SolveDio.lo -MD -MP -MF $(DEPDIR)/libpolylib32_la-SolveDio.Tpo -c -o libpolylib32_la-SolveDio.lo `test -f 'source/kernel/SolveDio.c' || echo '$(srcdir)/'`source/kernel/SolveDio.c
@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/libpolylib32_la-SolveDio.Tpo $(DEPDIR)/libpolylib32_la-SolveDio.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='source/kernel/SolveDio.c' object='libpolylib32_la-SolveDio.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libpolylib32_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o libpolylib32_la-SolveDio.lo `test -f 'source/kernel/SolveDio.c' || echo '$(srcdir)/'`source/kernel/SolveDio.c
libpolylib32_la-Lattice.lo: source/kernel/Lattice.c
@am__fastdepCC_TRUE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libpolylib32_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT libpolylib32_la-Lattice.lo -MD -MP -MF $(DEPDIR)/libpolylib32_la-Lattice.Tpo -c -o libpolylib32_la-Lattice.lo `test -f 'source/kernel/Lattice.c' || echo '$(srcdir)/'`source/kernel/Lattice.c
@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/libpolylib32_la-Lattice.Tpo $(DEPDIR)/libpolylib32_la-Lattice.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='source/kernel/Lattice.c' object='libpolylib32_la-Lattice.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libpolylib32_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o libpolylib32_la-Lattice.lo `test -f 'source/kernel/Lattice.c' || echo '$(srcdir)/'`source/kernel/Lattice.c
libpolylib32_la-Matop.lo: source/kernel/Matop.c
@am__fastdepCC_TRUE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libpolylib32_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT libpolylib32_la-Matop.lo -MD -MP -MF $(DEPDIR)/libpolylib32_la-Matop.Tpo -c -o libpolylib32_la-Matop.lo `test -f 'source/kernel/Matop.c' || echo '$(srcdir)/'`source/kernel/Matop.c
@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/libpolylib32_la-Matop.Tpo $(DEPDIR)/libpolylib32_la-Matop.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='source/kernel/Matop.c' object='libpolylib32_la-Matop.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libpolylib32_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o libpolylib32_la-Matop.lo `test -f 'source/kernel/Matop.c' || echo '$(srcdir)/'`source/kernel/Matop.c
libpolylib32_la-NormalForms.lo: source/kernel/NormalForms.c
@am__fastdepCC_TRUE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libpolylib32_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT libpolylib32_la-NormalForms.lo -MD -MP -MF $(DEPDIR)/libpolylib32_la-NormalForms.Tpo -c -o libpolylib32_la-NormalForms.lo `test -f 'source/kernel/NormalForms.c' || echo '$(srcdir)/'`source/kernel/NormalForms.c
@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/libpolylib32_la-NormalForms.Tpo $(DEPDIR)/libpolylib32_la-NormalForms.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='source/kernel/NormalForms.c' object='libpolylib32_la-NormalForms.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libpolylib32_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o libpolylib32_la-NormalForms.lo `test -f 'source/kernel/NormalForms.c' || echo '$(srcdir)/'`source/kernel/NormalForms.c
libpolylib32_la-Zpolyhedron.lo: source/kernel/Zpolyhedron.c
@am__fastdepCC_TRUE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libpolylib32_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT libpolylib32_la-Zpolyhedron.lo -MD -MP -MF $(DEPDIR)/libpolylib32_la-Zpolyhedron.Tpo -c -o libpolylib32_la-Zpolyhedron.lo `test -f 'source/kernel/Zpolyhedron.c' || echo '$(srcdir)/'`source/kernel/Zpolyhedron.c
@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/libpolylib32_la-Zpolyhedron.Tpo $(DEPDIR)/libpolylib32_la-Zpolyhedron.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='source/kernel/Zpolyhedron.c' object='libpolylib32_la-Zpolyhedron.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libpolylib32_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o libpolylib32_la-Zpolyhedron.lo `test -f 'source/kernel/Zpolyhedron.c' || echo '$(srcdir)/'`source/kernel/Zpolyhedron.c
libpolylib64_la-errors.lo: source/arith/errors.c
@am__fastdepCC_TRUE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libpolylib64_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT libpolylib64_la-errors.lo -MD -MP -MF $(DEPDIR)/libpolylib64_la-errors.Tpo -c -o libpolylib64_la-errors.lo `test -f 'source/arith/errors.c' || echo '$(srcdir)/'`source/arith/errors.c
@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/libpolylib64_la-errors.Tpo $(DEPDIR)/libpolylib64_la-errors.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='source/arith/errors.c' object='libpolylib64_la-errors.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libpolylib64_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o libpolylib64_la-errors.lo `test -f 'source/arith/errors.c' || echo '$(srcdir)/'`source/arith/errors.c
libpolylib64_la-errormsg.lo: source/kernel/errormsg.c
@am__fastdepCC_TRUE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libpolylib64_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT libpolylib64_la-errormsg.lo -MD -MP -MF $(DEPDIR)/libpolylib64_la-errormsg.Tpo -c -o libpolylib64_la-errormsg.lo `test -f 'source/kernel/errormsg.c' || echo '$(srcdir)/'`source/kernel/errormsg.c
@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/libpolylib64_la-errormsg.Tpo $(DEPDIR)/libpolylib64_la-errormsg.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='source/kernel/errormsg.c' object='libpolylib64_la-errormsg.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libpolylib64_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o libpolylib64_la-errormsg.lo `test -f 'source/kernel/errormsg.c' || echo '$(srcdir)/'`source/kernel/errormsg.c
libpolylib64_la-vector.lo: source/kernel/vector.c
@am__fastdepCC_TRUE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libpolylib64_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT libpolylib64_la-vector.lo -MD -MP -MF $(DEPDIR)/libpolylib64_la-vector.Tpo -c -o libpolylib64_la-vector.lo `test -f 'source/kernel/vector.c' || echo '$(srcdir)/'`source/kernel/vector.c
@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/libpolylib64_la-vector.Tpo $(DEPDIR)/libpolylib64_la-vector.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='source/kernel/vector.c' object='libpolylib64_la-vector.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libpolylib64_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o libpolylib64_la-vector.lo `test -f 'source/kernel/vector.c' || echo '$(srcdir)/'`source/kernel/vector.c
libpolylib64_la-matrix.lo: source/kernel/matrix.c
@am__fastdepCC_TRUE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libpolylib64_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT libpolylib64_la-matrix.lo -MD -MP -MF $(DEPDIR)/libpolylib64_la-matrix.Tpo -c -o libpolylib64_la-matrix.lo `test -f 'source/kernel/matrix.c' || echo '$(srcdir)/'`source/kernel/matrix.c
@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/libpolylib64_la-matrix.Tpo $(DEPDIR)/libpolylib64_la-matrix.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='source/kernel/matrix.c' object='libpolylib64_la-matrix.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libpolylib64_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o libpolylib64_la-matrix.lo `test -f 'source/kernel/matrix.c' || echo '$(srcdir)/'`source/kernel/matrix.c
libpolylib64_la-polyhedron.lo: source/kernel/polyhedron.c
@am__fastdepCC_TRUE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libpolylib64_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT libpolylib64_la-polyhedron.lo -MD -MP -MF $(DEPDIR)/libpolylib64_la-polyhedron.Tpo -c -o libpolylib64_la-polyhedron.lo `test -f 'source/kernel/polyhedron.c' || echo '$(srcdir)/'`source/kernel/polyhedron.c
@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/libpolylib64_la-polyhedron.Tpo $(DEPDIR)/libpolylib64_la-polyhedron.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='source/kernel/polyhedron.c' object='libpolylib64_la-polyhedron.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libpolylib64_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o libpolylib64_la-polyhedron.lo `test -f 'source/kernel/polyhedron.c' || echo '$(srcdir)/'`source/kernel/polyhedron.c
libpolylib64_la-polyparam.lo: source/kernel/polyparam.c
@am__fastdepCC_TRUE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libpolylib64_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT libpolylib64_la-polyparam.lo -MD -MP -MF $(DEPDIR)/libpolylib64_la-polyparam.Tpo -c -o libpolylib64_la-polyparam.lo `test -f 'source/kernel/polyparam.c' || echo '$(srcdir)/'`source/kernel/polyparam.c
@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/libpolylib64_la-polyparam.Tpo $(DEPDIR)/libpolylib64_la-polyparam.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='source/kernel/polyparam.c' object='libpolylib64_la-polyparam.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libpolylib64_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o libpolylib64_la-polyparam.lo `test -f 'source/kernel/polyparam.c' || echo '$(srcdir)/'`source/kernel/polyparam.c
libpolylib64_la-param.lo: source/kernel/param.c
@am__fastdepCC_TRUE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libpolylib64_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT libpolylib64_la-param.lo -MD -MP -MF $(DEPDIR)/libpolylib64_la-param.Tpo -c -o libpolylib64_la-param.lo `test -f 'source/kernel/param.c' || echo '$(srcdir)/'`source/kernel/param.c
@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/libpolylib64_la-param.Tpo $(DEPDIR)/libpolylib64_la-param.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='source/kernel/param.c' object='libpolylib64_la-param.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libpolylib64_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o libpolylib64_la-param.lo `test -f 'source/kernel/param.c' || echo '$(srcdir)/'`source/kernel/param.c
libpolylib64_la-alpha.lo: source/kernel/alpha.c
@am__fastdepCC_TRUE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libpolylib64_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT libpolylib64_la-alpha.lo -MD -MP -MF $(DEPDIR)/libpolylib64_la-alpha.Tpo -c -o libpolylib64_la-alpha.lo `test -f 'source/kernel/alpha.c' || echo '$(srcdir)/'`source/kernel/alpha.c
@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/libpolylib64_la-alpha.Tpo $(DEPDIR)/libpolylib64_la-alpha.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='source/kernel/alpha.c' object='libpolylib64_la-alpha.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libpolylib64_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o libpolylib64_la-alpha.lo `test -f 'source/kernel/alpha.c' || echo '$(srcdir)/'`source/kernel/alpha.c
libpolylib64_la-ehrhart.lo: source/ehrhart/ehrhart.c
@am__fastdepCC_TRUE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libpolylib64_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT libpolylib64_la-ehrhart.lo -MD -MP -MF $(DEPDIR)/libpolylib64_la-ehrhart.Tpo -c -o libpolylib64_la-ehrhart.lo `test -f 'source/ehrhart/ehrhart.c' || echo '$(srcdir)/'`source/ehrhart/ehrhart.c
@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/libpolylib64_la-ehrhart.Tpo $(DEPDIR)/libpolylib64_la-ehrhart.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='source/ehrhart/ehrhart.c' object='libpolylib64_la-ehrhart.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libpolylib64_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o libpolylib64_la-ehrhart.lo `test -f 'source/ehrhart/ehrhart.c' || echo '$(srcdir)/'`source/ehrhart/ehrhart.c
libpolylib64_la-ext_ehrhart.lo: source/ehrhart/ext_ehrhart.c
@am__fastdepCC_TRUE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libpolylib64_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT libpolylib64_la-ext_ehrhart.lo -MD -MP -MF $(DEPDIR)/libpolylib64_la-ext_ehrhart.Tpo -c -o libpolylib64_la-ext_ehrhart.lo `test -f 'source/ehrhart/ext_ehrhart.c' || echo '$(srcdir)/'`source/ehrhart/ext_ehrhart.c
@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/libpolylib64_la-ext_ehrhart.Tpo $(DEPDIR)/libpolylib64_la-ext_ehrhart.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='source/ehrhart/ext_ehrhart.c' object='libpolylib64_la-ext_ehrhart.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libpolylib64_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o libpolylib64_la-ext_ehrhart.lo `test -f 'source/ehrhart/ext_ehrhart.c' || echo '$(srcdir)/'`source/ehrhart/ext_ehrhart.c
libpolylib64_la-eval_ehrhart.lo: source/ehrhart/eval_ehrhart.c
@am__fastdepCC_TRUE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libpolylib64_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT libpolylib64_la-eval_ehrhart.lo -MD -MP -MF $(DEPDIR)/libpolylib64_la-eval_ehrhart.Tpo -c -o libpolylib64_la-eval_ehrhart.lo `test -f 'source/ehrhart/eval_ehrhart.c' || echo '$(srcdir)/'`source/ehrhart/eval_ehrhart.c
@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/libpolylib64_la-eval_ehrhart.Tpo $(DEPDIR)/libpolylib64_la-eval_ehrhart.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='source/ehrhart/eval_ehrhart.c' object='libpolylib64_la-eval_ehrhart.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libpolylib64_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o libpolylib64_la-eval_ehrhart.lo `test -f 'source/ehrhart/eval_ehrhart.c' || echo '$(srcdir)/'`source/ehrhart/eval_ehrhart.c
libpolylib64_la-homogenization.lo: source/ehrhart/homogenization.c
@am__fastdepCC_TRUE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libpolylib64_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT libpolylib64_la-homogenization.lo -MD -MP -MF $(DEPDIR)/libpolylib64_la-homogenization.Tpo -c -o libpolylib64_la-homogenization.lo `test -f 'source/ehrhart/homogenization.c' || echo '$(srcdir)/'`source/ehrhart/homogenization.c
@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/libpolylib64_la-homogenization.Tpo $(DEPDIR)/libpolylib64_la-homogenization.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='source/ehrhart/homogenization.c' object='libpolylib64_la-homogenization.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libpolylib64_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o libpolylib64_la-homogenization.lo `test -f 'source/ehrhart/homogenization.c' || echo '$(srcdir)/'`source/ehrhart/homogenization.c
libpolylib64_la-ranking.lo: source/ehrhart/ranking.c
@am__fastdepCC_TRUE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libpolylib64_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT libpolylib64_la-ranking.lo -MD -MP -MF $(DEPDIR)/libpolylib64_la-ranking.Tpo -c -o libpolylib64_la-ranking.lo `test -f 'source/ehrhart/ranking.c' || echo '$(srcdir)/'`source/ehrhart/ranking.c
@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/libpolylib64_la-ranking.Tpo $(DEPDIR)/libpolylib64_la-ranking.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='source/ehrhart/ranking.c' object='libpolylib64_la-ranking.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libpolylib64_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o libpolylib64_la-ranking.lo `test -f 'source/ehrhart/ranking.c' || echo '$(srcdir)/'`source/ehrhart/ranking.c
libpolylib64_la-matrix_addon.lo: source/kernel/matrix_addon.c
@am__fastdepCC_TRUE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libpolylib64_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT libpolylib64_la-matrix_addon.lo -MD -MP -MF $(DEPDIR)/libpolylib64_la-matrix_addon.Tpo -c -o libpolylib64_la-matrix_addon.lo `test -f 'source/kernel/matrix_addon.c' || echo '$(srcdir)/'`source/kernel/matrix_addon.c
@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/libpolylib64_la-matrix_addon.Tpo $(DEPDIR)/libpolylib64_la-matrix_addon.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='source/kernel/matrix_addon.c' object='libpolylib64_la-matrix_addon.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libpolylib64_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o libpolylib64_la-matrix_addon.lo `test -f 'source/kernel/matrix_addon.c' || echo '$(srcdir)/'`source/kernel/matrix_addon.c
libpolylib64_la-matrix_permutations.lo: source/kernel/matrix_permutations.c
@am__fastdepCC_TRUE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libpolylib64_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT libpolylib64_la-matrix_permutations.lo -MD -MP -MF $(DEPDIR)/libpolylib64_la-matrix_permutations.Tpo -c -o libpolylib64_la-matrix_permutations.lo `test -f 'source/kernel/matrix_permutations.c' || echo '$(srcdir)/'`source/kernel/matrix_permutations.c
@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/libpolylib64_la-matrix_permutations.Tpo $(DEPDIR)/libpolylib64_la-matrix_permutations.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='source/kernel/matrix_permutations.c' object='libpolylib64_la-matrix_permutations.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libpolylib64_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o libpolylib64_la-matrix_permutations.lo `test -f 'source/kernel/matrix_permutations.c' || echo '$(srcdir)/'`source/kernel/matrix_permutations.c
libpolylib64_la-compress_parms.lo: source/kernel/compress_parms.c
@am__fastdepCC_TRUE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libpolylib64_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT libpolylib64_la-compress_parms.lo -MD -MP -MF $(DEPDIR)/libpolylib64_la-compress_parms.Tpo -c -o libpolylib64_la-compress_parms.lo `test -f 'source/kernel/compress_parms.c' || echo '$(srcdir)/'`source/kernel/compress_parms.c
@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/libpolylib64_la-compress_parms.Tpo $(DEPDIR)/libpolylib64_la-compress_parms.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='source/kernel/compress_parms.c' object='libpolylib64_la-compress_parms.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libpolylib64_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o libpolylib64_la-compress_parms.lo `test -f 'source/kernel/compress_parms.c' || echo '$(srcdir)/'`source/kernel/compress_parms.c
libpolylib64_la-SolveDio.lo: source/kernel/SolveDio.c
@am__fastdepCC_TRUE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libpolylib64_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT libpolylib64_la-SolveDio.lo -MD -MP -MF $(DEPDIR)/libpolylib64_la-SolveDio.Tpo -c -o libpolylib64_la-SolveDio.lo `test -f 'source/kernel/SolveDio.c' || echo '$(srcdir)/'`source/kernel/SolveDio.c
@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/libpolylib64_la-SolveDio.Tpo $(DEPDIR)/libpolylib64_la-SolveDio.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='source/kernel/SolveDio.c' object='libpolylib64_la-SolveDio.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libpolylib64_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o libpolylib64_la-SolveDio.lo `test -f 'source/kernel/SolveDio.c' || echo '$(srcdir)/'`source/kernel/SolveDio.c
libpolylib64_la-Lattice.lo: source/kernel/Lattice.c
@am__fastdepCC_TRUE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libpolylib64_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT libpolylib64_la-Lattice.lo -MD -MP -MF $(DEPDIR)/libpolylib64_la-Lattice.Tpo -c -o libpolylib64_la-Lattice.lo `test -f 'source/kernel/Lattice.c' || echo '$(srcdir)/'`source/kernel/Lattice.c
@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/libpolylib64_la-Lattice.Tpo $(DEPDIR)/libpolylib64_la-Lattice.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='source/kernel/Lattice.c' object='libpolylib64_la-Lattice.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libpolylib64_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o libpolylib64_la-Lattice.lo `test -f 'source/kernel/Lattice.c' || echo '$(srcdir)/'`source/kernel/Lattice.c
libpolylib64_la-Matop.lo: source/kernel/Matop.c
@am__fastdepCC_TRUE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libpolylib64_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT libpolylib64_la-Matop.lo -MD -MP -MF $(DEPDIR)/libpolylib64_la-Matop.Tpo -c -o libpolylib64_la-Matop.lo `test -f 'source/kernel/Matop.c' || echo '$(srcdir)/'`source/kernel/Matop.c
@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/libpolylib64_la-Matop.Tpo $(DEPDIR)/libpolylib64_la-Matop.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='source/kernel/Matop.c' object='libpolylib64_la-Matop.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libpolylib64_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o libpolylib64_la-Matop.lo `test -f 'source/kernel/Matop.c' || echo '$(srcdir)/'`source/kernel/Matop.c
libpolylib64_la-NormalForms.lo: source/kernel/NormalForms.c
@am__fastdepCC_TRUE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libpolylib64_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT libpolylib64_la-NormalForms.lo -MD -MP -MF $(DEPDIR)/libpolylib64_la-NormalForms.Tpo -c -o libpolylib64_la-NormalForms.lo `test -f 'source/kernel/NormalForms.c' || echo '$(srcdir)/'`source/kernel/NormalForms.c
@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/libpolylib64_la-NormalForms.Tpo $(DEPDIR)/libpolylib64_la-NormalForms.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='source/kernel/NormalForms.c' object='libpolylib64_la-NormalForms.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libpolylib64_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o libpolylib64_la-NormalForms.lo `test -f 'source/kernel/NormalForms.c' || echo '$(srcdir)/'`source/kernel/NormalForms.c
libpolylib64_la-Zpolyhedron.lo: source/kernel/Zpolyhedron.c
@am__fastdepCC_TRUE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libpolylib64_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT libpolylib64_la-Zpolyhedron.lo -MD -MP -MF $(DEPDIR)/libpolylib64_la-Zpolyhedron.Tpo -c -o libpolylib64_la-Zpolyhedron.lo `test -f 'source/kernel/Zpolyhedron.c' || echo '$(srcdir)/'`source/kernel/Zpolyhedron.c
@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/libpolylib64_la-Zpolyhedron.Tpo $(DEPDIR)/libpolylib64_la-Zpolyhedron.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='source/kernel/Zpolyhedron.c' object='libpolylib64_la-Zpolyhedron.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libpolylib64_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o libpolylib64_la-Zpolyhedron.lo `test -f 'source/kernel/Zpolyhedron.c' || echo '$(srcdir)/'`source/kernel/Zpolyhedron.c
libpolylibgmp_la-errors.lo: source/arith/errors.c
@am__fastdepCC_TRUE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libpolylibgmp_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT libpolylibgmp_la-errors.lo -MD -MP -MF $(DEPDIR)/libpolylibgmp_la-errors.Tpo -c -o libpolylibgmp_la-errors.lo `test -f 'source/arith/errors.c' || echo '$(srcdir)/'`source/arith/errors.c
@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/libpolylibgmp_la-errors.Tpo $(DEPDIR)/libpolylibgmp_la-errors.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='source/arith/errors.c' object='libpolylibgmp_la-errors.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libpolylibgmp_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o libpolylibgmp_la-errors.lo `test -f 'source/arith/errors.c' || echo '$(srcdir)/'`source/arith/errors.c
libpolylibgmp_la-errormsg.lo: source/kernel/errormsg.c
@am__fastdepCC_TRUE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libpolylibgmp_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT libpolylibgmp_la-errormsg.lo -MD -MP -MF $(DEPDIR)/libpolylibgmp_la-errormsg.Tpo -c -o libpolylibgmp_la-errormsg.lo `test -f 'source/kernel/errormsg.c' || echo '$(srcdir)/'`source/kernel/errormsg.c
@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/libpolylibgmp_la-errormsg.Tpo $(DEPDIR)/libpolylibgmp_la-errormsg.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='source/kernel/errormsg.c' object='libpolylibgmp_la-errormsg.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libpolylibgmp_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o libpolylibgmp_la-errormsg.lo `test -f 'source/kernel/errormsg.c' || echo '$(srcdir)/'`source/kernel/errormsg.c
libpolylibgmp_la-vector.lo: source/kernel/vector.c
@am__fastdepCC_TRUE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libpolylibgmp_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT libpolylibgmp_la-vector.lo -MD -MP -MF $(DEPDIR)/libpolylibgmp_la-vector.Tpo -c -o libpolylibgmp_la-vector.lo `test -f 'source/kernel/vector.c' || echo '$(srcdir)/'`source/kernel/vector.c
@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/libpolylibgmp_la-vector.Tpo $(DEPDIR)/libpolylibgmp_la-vector.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='source/kernel/vector.c' object='libpolylibgmp_la-vector.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libpolylibgmp_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o libpolylibgmp_la-vector.lo `test -f 'source/kernel/vector.c' || echo '$(srcdir)/'`source/kernel/vector.c
libpolylibgmp_la-matrix.lo: source/kernel/matrix.c
@am__fastdepCC_TRUE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libpolylibgmp_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT libpolylibgmp_la-matrix.lo -MD -MP -MF $(DEPDIR)/libpolylibgmp_la-matrix.Tpo -c -o libpolylibgmp_la-matrix.lo `test -f 'source/kernel/matrix.c' || echo '$(srcdir)/'`source/kernel/matrix.c
@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/libpolylibgmp_la-matrix.Tpo $(DEPDIR)/libpolylibgmp_la-matrix.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='source/kernel/matrix.c' object='libpolylibgmp_la-matrix.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libpolylibgmp_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o libpolylibgmp_la-matrix.lo `test -f 'source/kernel/matrix.c' || echo '$(srcdir)/'`source/kernel/matrix.c
libpolylibgmp_la-polyhedron.lo: source/kernel/polyhedron.c
@am__fastdepCC_TRUE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libpolylibgmp_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT libpolylibgmp_la-polyhedron.lo -MD -MP -MF $(DEPDIR)/libpolylibgmp_la-polyhedron.Tpo -c -o libpolylibgmp_la-polyhedron.lo `test -f 'source/kernel/polyhedron.c' || echo '$(srcdir)/'`source/kernel/polyhedron.c
@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/libpolylibgmp_la-polyhedron.Tpo $(DEPDIR)/libpolylibgmp_la-polyhedron.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='source/kernel/polyhedron.c' object='libpolylibgmp_la-polyhedron.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libpolylibgmp_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o libpolylibgmp_la-polyhedron.lo `test -f 'source/kernel/polyhedron.c' || echo '$(srcdir)/'`source/kernel/polyhedron.c
libpolylibgmp_la-polyparam.lo: source/kernel/polyparam.c
@am__fastdepCC_TRUE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libpolylibgmp_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT libpolylibgmp_la-polyparam.lo -MD -MP -MF $(DEPDIR)/libpolylibgmp_la-polyparam.Tpo -c -o libpolylibgmp_la-polyparam.lo `test -f 'source/kernel/polyparam.c' || echo '$(srcdir)/'`source/kernel/polyparam.c
@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/libpolylibgmp_la-polyparam.Tpo $(DEPDIR)/libpolylibgmp_la-polyparam.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='source/kernel/polyparam.c' object='libpolylibgmp_la-polyparam.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libpolylibgmp_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o libpolylibgmp_la-polyparam.lo `test -f 'source/kernel/polyparam.c' || echo '$(srcdir)/'`source/kernel/polyparam.c
libpolylibgmp_la-param.lo: source/kernel/param.c
@am__fastdepCC_TRUE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libpolylibgmp_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT libpolylibgmp_la-param.lo -MD -MP -MF $(DEPDIR)/libpolylibgmp_la-param.Tpo -c -o libpolylibgmp_la-param.lo `test -f 'source/kernel/param.c' || echo '$(srcdir)/'`source/kernel/param.c
@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/libpolylibgmp_la-param.Tpo $(DEPDIR)/libpolylibgmp_la-param.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='source/kernel/param.c' object='libpolylibgmp_la-param.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libpolylibgmp_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o libpolylibgmp_la-param.lo `test -f 'source/kernel/param.c' || echo '$(srcdir)/'`source/kernel/param.c
libpolylibgmp_la-alpha.lo: source/kernel/alpha.c
@am__fastdepCC_TRUE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libpolylibgmp_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT libpolylibgmp_la-alpha.lo -MD -MP -MF $(DEPDIR)/libpolylibgmp_la-alpha.Tpo -c -o libpolylibgmp_la-alpha.lo `test -f 'source/kernel/alpha.c' || echo '$(srcdir)/'`source/kernel/alpha.c
@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/libpolylibgmp_la-alpha.Tpo $(DEPDIR)/libpolylibgmp_la-alpha.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='source/kernel/alpha.c' object='libpolylibgmp_la-alpha.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libpolylibgmp_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o libpolylibgmp_la-alpha.lo `test -f 'source/kernel/alpha.c' || echo '$(srcdir)/'`source/kernel/alpha.c
libpolylibgmp_la-ehrhart.lo: source/ehrhart/ehrhart.c
@am__fastdepCC_TRUE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libpolylibgmp_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT libpolylibgmp_la-ehrhart.lo -MD -MP -MF $(DEPDIR)/libpolylibgmp_la-ehrhart.Tpo -c -o libpolylibgmp_la-ehrhart.lo `test -f 'source/ehrhart/ehrhart.c' || echo '$(srcdir)/'`source/ehrhart/ehrhart.c
@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/libpolylibgmp_la-ehrhart.Tpo $(DEPDIR)/libpolylibgmp_la-ehrhart.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='source/ehrhart/ehrhart.c' object='libpolylibgmp_la-ehrhart.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libpolylibgmp_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o libpolylibgmp_la-ehrhart.lo `test -f 'source/ehrhart/ehrhart.c' || echo '$(srcdir)/'`source/ehrhart/ehrhart.c
libpolylibgmp_la-ext_ehrhart.lo: source/ehrhart/ext_ehrhart.c
@am__fastdepCC_TRUE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libpolylibgmp_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT libpolylibgmp_la-ext_ehrhart.lo -MD -MP -MF $(DEPDIR)/libpolylibgmp_la-ext_ehrhart.Tpo -c -o libpolylibgmp_la-ext_ehrhart.lo `test -f 'source/ehrhart/ext_ehrhart.c' || echo '$(srcdir)/'`source/ehrhart/ext_ehrhart.c
@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/libpolylibgmp_la-ext_ehrhart.Tpo $(DEPDIR)/libpolylibgmp_la-ext_ehrhart.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='source/ehrhart/ext_ehrhart.c' object='libpolylibgmp_la-ext_ehrhart.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libpolylibgmp_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o libpolylibgmp_la-ext_ehrhart.lo `test -f 'source/ehrhart/ext_ehrhart.c' || echo '$(srcdir)/'`source/ehrhart/ext_ehrhart.c
libpolylibgmp_la-eval_ehrhart.lo: source/ehrhart/eval_ehrhart.c
@am__fastdepCC_TRUE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libpolylibgmp_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT libpolylibgmp_la-eval_ehrhart.lo -MD -MP -MF $(DEPDIR)/libpolylibgmp_la-eval_ehrhart.Tpo -c -o libpolylibgmp_la-eval_ehrhart.lo `test -f 'source/ehrhart/eval_ehrhart.c' || echo '$(srcdir)/'`source/ehrhart/eval_ehrhart.c
@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/libpolylibgmp_la-eval_ehrhart.Tpo $(DEPDIR)/libpolylibgmp_la-eval_ehrhart.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='source/ehrhart/eval_ehrhart.c' object='libpolylibgmp_la-eval_ehrhart.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libpolylibgmp_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o libpolylibgmp_la-eval_ehrhart.lo `test -f 'source/ehrhart/eval_ehrhart.c' || echo '$(srcdir)/'`source/ehrhart/eval_ehrhart.c
libpolylibgmp_la-homogenization.lo: source/ehrhart/homogenization.c
@am__fastdepCC_TRUE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libpolylibgmp_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT libpolylibgmp_la-homogenization.lo -MD -MP -MF $(DEPDIR)/libpolylibgmp_la-homogenization.Tpo -c -o libpolylibgmp_la-homogenization.lo `test -f 'source/ehrhart/homogenization.c' || echo '$(srcdir)/'`source/ehrhart/homogenization.c
@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/libpolylibgmp_la-homogenization.Tpo $(DEPDIR)/libpolylibgmp_la-homogenization.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='source/ehrhart/homogenization.c' object='libpolylibgmp_la-homogenization.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libpolylibgmp_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o libpolylibgmp_la-homogenization.lo `test -f 'source/ehrhart/homogenization.c' || echo '$(srcdir)/'`source/ehrhart/homogenization.c
libpolylibgmp_la-ranking.lo: source/ehrhart/ranking.c
@am__fastdepCC_TRUE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libpolylibgmp_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT libpolylibgmp_la-ranking.lo -MD -MP -MF $(DEPDIR)/libpolylibgmp_la-ranking.Tpo -c -o libpolylibgmp_la-ranking.lo `test -f 'source/ehrhart/ranking.c' || echo '$(srcdir)/'`source/ehrhart/ranking.c
@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/libpolylibgmp_la-ranking.Tpo $(DEPDIR)/libpolylibgmp_la-ranking.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='source/ehrhart/ranking.c' object='libpolylibgmp_la-ranking.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libpolylibgmp_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o libpolylibgmp_la-ranking.lo `test -f 'source/ehrhart/ranking.c' || echo '$(srcdir)/'`source/ehrhart/ranking.c
libpolylibgmp_la-matrix_addon.lo: source/kernel/matrix_addon.c
@am__fastdepCC_TRUE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libpolylibgmp_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT libpolylibgmp_la-matrix_addon.lo -MD -MP -MF $(DEPDIR)/libpolylibgmp_la-matrix_addon.Tpo -c -o libpolylibgmp_la-matrix_addon.lo `test -f 'source/kernel/matrix_addon.c' || echo '$(srcdir)/'`source/kernel/matrix_addon.c
@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/libpolylibgmp_la-matrix_addon.Tpo $(DEPDIR)/libpolylibgmp_la-matrix_addon.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='source/kernel/matrix_addon.c' object='libpolylibgmp_la-matrix_addon.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libpolylibgmp_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o libpolylibgmp_la-matrix_addon.lo `test -f 'source/kernel/matrix_addon.c' || echo '$(srcdir)/'`source/kernel/matrix_addon.c
libpolylibgmp_la-matrix_permutations.lo: source/kernel/matrix_permutations.c
@am__fastdepCC_TRUE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libpolylibgmp_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT libpolylibgmp_la-matrix_permutations.lo -MD -MP -MF $(DEPDIR)/libpolylibgmp_la-matrix_permutations.Tpo -c -o libpolylibgmp_la-matrix_permutations.lo `test -f 'source/kernel/matrix_permutations.c' || echo '$(srcdir)/'`source/kernel/matrix_permutations.c
@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/libpolylibgmp_la-matrix_permutations.Tpo $(DEPDIR)/libpolylibgmp_la-matrix_permutations.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='source/kernel/matrix_permutations.c' object='libpolylibgmp_la-matrix_permutations.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libpolylibgmp_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o libpolylibgmp_la-matrix_permutations.lo `test -f 'source/kernel/matrix_permutations.c' || echo '$(srcdir)/'`source/kernel/matrix_permutations.c
libpolylibgmp_la-compress_parms.lo: source/kernel/compress_parms.c
@am__fastdepCC_TRUE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libpolylibgmp_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT libpolylibgmp_la-compress_parms.lo -MD -MP -MF $(DEPDIR)/libpolylibgmp_la-compress_parms.Tpo -c -o libpolylibgmp_la-compress_parms.lo `test -f 'source/kernel/compress_parms.c' || echo '$(srcdir)/'`source/kernel/compress_parms.c
@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/libpolylibgmp_la-compress_parms.Tpo $(DEPDIR)/libpolylibgmp_la-compress_parms.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='source/kernel/compress_parms.c' object='libpolylibgmp_la-compress_parms.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libpolylibgmp_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o libpolylibgmp_la-compress_parms.lo `test -f 'source/kernel/compress_parms.c' || echo '$(srcdir)/'`source/kernel/compress_parms.c
libpolylibgmp_la-SolveDio.lo: source/kernel/SolveDio.c
@am__fastdepCC_TRUE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libpolylibgmp_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT libpolylibgmp_la-SolveDio.lo -MD -MP -MF $(DEPDIR)/libpolylibgmp_la-SolveDio.Tpo -c -o libpolylibgmp_la-SolveDio.lo `test -f 'source/kernel/SolveDio.c' || echo '$(srcdir)/'`source/kernel/SolveDio.c
@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/libpolylibgmp_la-SolveDio.Tpo $(DEPDIR)/libpolylibgmp_la-SolveDio.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='source/kernel/SolveDio.c' object='libpolylibgmp_la-SolveDio.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libpolylibgmp_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o libpolylibgmp_la-SolveDio.lo `test -f 'source/kernel/SolveDio.c' || echo '$(srcdir)/'`source/kernel/SolveDio.c
libpolylibgmp_la-Lattice.lo: source/kernel/Lattice.c
@am__fastdepCC_TRUE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libpolylibgmp_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT libpolylibgmp_la-Lattice.lo -MD -MP -MF $(DEPDIR)/libpolylibgmp_la-Lattice.Tpo -c -o libpolylibgmp_la-Lattice.lo `test -f 'source/kernel/Lattice.c' || echo '$(srcdir)/'`source/kernel/Lattice.c
@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/libpolylibgmp_la-Lattice.Tpo $(DEPDIR)/libpolylibgmp_la-Lattice.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='source/kernel/Lattice.c' object='libpolylibgmp_la-Lattice.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libpolylibgmp_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o libpolylibgmp_la-Lattice.lo `test -f 'source/kernel/Lattice.c' || echo '$(srcdir)/'`source/kernel/Lattice.c
libpolylibgmp_la-Matop.lo: source/kernel/Matop.c
@am__fastdepCC_TRUE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libpolylibgmp_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT libpolylibgmp_la-Matop.lo -MD -MP -MF $(DEPDIR)/libpolylibgmp_la-Matop.Tpo -c -o libpolylibgmp_la-Matop.lo `test -f 'source/kernel/Matop.c' || echo '$(srcdir)/'`source/kernel/Matop.c
@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/libpolylibgmp_la-Matop.Tpo $(DEPDIR)/libpolylibgmp_la-Matop.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='source/kernel/Matop.c' object='libpolylibgmp_la-Matop.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libpolylibgmp_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o libpolylibgmp_la-Matop.lo `test -f 'source/kernel/Matop.c' || echo '$(srcdir)/'`source/kernel/Matop.c
libpolylibgmp_la-NormalForms.lo: source/kernel/NormalForms.c
@am__fastdepCC_TRUE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libpolylibgmp_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT libpolylibgmp_la-NormalForms.lo -MD -MP -MF $(DEPDIR)/libpolylibgmp_la-NormalForms.Tpo -c -o libpolylibgmp_la-NormalForms.lo `test -f 'source/kernel/NormalForms.c' || echo '$(srcdir)/'`source/kernel/NormalForms.c
@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/libpolylibgmp_la-NormalForms.Tpo $(DEPDIR)/libpolylibgmp_la-NormalForms.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='source/kernel/NormalForms.c' object='libpolylibgmp_la-NormalForms.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libpolylibgmp_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o libpolylibgmp_la-NormalForms.lo `test -f 'source/kernel/NormalForms.c' || echo '$(srcdir)/'`source/kernel/NormalForms.c
libpolylibgmp_la-Zpolyhedron.lo: source/kernel/Zpolyhedron.c
@am__fastdepCC_TRUE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libpolylibgmp_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT libpolylibgmp_la-Zpolyhedron.lo -MD -MP -MF $(DEPDIR)/libpolylibgmp_la-Zpolyhedron.Tpo -c -o libpolylibgmp_la-Zpolyhedron.lo `test -f 'source/kernel/Zpolyhedron.c' || echo '$(srcdir)/'`source/kernel/Zpolyhedron.c
@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/libpolylibgmp_la-Zpolyhedron.Tpo $(DEPDIR)/libpolylibgmp_la-Zpolyhedron.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='source/kernel/Zpolyhedron.c' object='libpolylibgmp_la-Zpolyhedron.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libpolylibgmp_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o libpolylibgmp_la-Zpolyhedron.lo `test -f 'source/kernel/Zpolyhedron.c' || echo '$(srcdir)/'`source/kernel/Zpolyhedron.c
Zpolytest32-Zpolytest.o: $(poly_src)/Zpolytest.c
@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(Zpolytest32_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT Zpolytest32-Zpolytest.o -MD -MP -MF $(DEPDIR)/Zpolytest32-Zpolytest.Tpo -c -o Zpolytest32-Zpolytest.o `test -f '$(poly_src)/Zpolytest.c' || echo '$(srcdir)/'`$(poly_src)/Zpolytest.c
@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/Zpolytest32-Zpolytest.Tpo $(DEPDIR)/Zpolytest32-Zpolytest.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='$(poly_src)/Zpolytest.c' object='Zpolytest32-Zpolytest.o' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(Zpolytest32_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o Zpolytest32-Zpolytest.o `test -f '$(poly_src)/Zpolytest.c' || echo '$(srcdir)/'`$(poly_src)/Zpolytest.c
Zpolytest32-Zpolytest.obj: $(poly_src)/Zpolytest.c
@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(Zpolytest32_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT Zpolytest32-Zpolytest.obj -MD -MP -MF $(DEPDIR)/Zpolytest32-Zpolytest.Tpo -c -o Zpolytest32-Zpolytest.obj `if test -f '$(poly_src)/Zpolytest.c'; then $(CYGPATH_W) '$(poly_src)/Zpolytest.c'; else $(CYGPATH_W) '$(srcdir)/$(poly_src)/Zpolytest.c'; fi`
@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/Zpolytest32-Zpolytest.Tpo $(DEPDIR)/Zpolytest32-Zpolytest.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='$(poly_src)/Zpolytest.c' object='Zpolytest32-Zpolytest.obj' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(Zpolytest32_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o Zpolytest32-Zpolytest.obj `if test -f '$(poly_src)/Zpolytest.c'; then $(CYGPATH_W) '$(poly_src)/Zpolytest.c'; else $(CYGPATH_W) '$(srcdir)/$(poly_src)/Zpolytest.c'; fi`
Zpolytest64-Zpolytest.o: $(poly_src)/Zpolytest.c
@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(Zpolytest64_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT Zpolytest64-Zpolytest.o -MD -MP -MF $(DEPDIR)/Zpolytest64-Zpolytest.Tpo -c -o Zpolytest64-Zpolytest.o `test -f '$(poly_src)/Zpolytest.c' || echo '$(srcdir)/'`$(poly_src)/Zpolytest.c
@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/Zpolytest64-Zpolytest.Tpo $(DEPDIR)/Zpolytest64-Zpolytest.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='$(poly_src)/Zpolytest.c' object='Zpolytest64-Zpolytest.o' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(Zpolytest64_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o Zpolytest64-Zpolytest.o `test -f '$(poly_src)/Zpolytest.c' || echo '$(srcdir)/'`$(poly_src)/Zpolytest.c
Zpolytest64-Zpolytest.obj: $(poly_src)/Zpolytest.c
@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(Zpolytest64_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT Zpolytest64-Zpolytest.obj -MD -MP -MF $(DEPDIR)/Zpolytest64-Zpolytest.Tpo -c -o Zpolytest64-Zpolytest.obj `if test -f '$(poly_src)/Zpolytest.c'; then $(CYGPATH_W) '$(poly_src)/Zpolytest.c'; else $(CYGPATH_W) '$(srcdir)/$(poly_src)/Zpolytest.c'; fi`
@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/Zpolytest64-Zpolytest.Tpo $(DEPDIR)/Zpolytest64-Zpolytest.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='$(poly_src)/Zpolytest.c' object='Zpolytest64-Zpolytest.obj' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(Zpolytest64_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o Zpolytest64-Zpolytest.obj `if test -f '$(poly_src)/Zpolytest.c'; then $(CYGPATH_W) '$(poly_src)/Zpolytest.c'; else $(CYGPATH_W) '$(srcdir)/$(poly_src)/Zpolytest.c'; fi`
Zpolytestgmp-Zpolytest.o: $(poly_src)/Zpolytest.c
@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(Zpolytestgmp_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT Zpolytestgmp-Zpolytest.o -MD -MP -MF $(DEPDIR)/Zpolytestgmp-Zpolytest.Tpo -c -o Zpolytestgmp-Zpolytest.o `test -f '$(poly_src)/Zpolytest.c' || echo '$(srcdir)/'`$(poly_src)/Zpolytest.c
@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/Zpolytestgmp-Zpolytest.Tpo $(DEPDIR)/Zpolytestgmp-Zpolytest.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='$(poly_src)/Zpolytest.c' object='Zpolytestgmp-Zpolytest.o' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(Zpolytestgmp_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o Zpolytestgmp-Zpolytest.o `test -f '$(poly_src)/Zpolytest.c' || echo '$(srcdir)/'`$(poly_src)/Zpolytest.c
Zpolytestgmp-Zpolytest.obj: $(poly_src)/Zpolytest.c
@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(Zpolytestgmp_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT Zpolytestgmp-Zpolytest.obj -MD -MP -MF $(DEPDIR)/Zpolytestgmp-Zpolytest.Tpo -c -o Zpolytestgmp-Zpolytest.obj `if test -f '$(poly_src)/Zpolytest.c'; then $(CYGPATH_W) '$(poly_src)/Zpolytest.c'; else $(CYGPATH_W) '$(srcdir)/$(poly_src)/Zpolytest.c'; fi`
@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/Zpolytestgmp-Zpolytest.Tpo $(DEPDIR)/Zpolytestgmp-Zpolytest.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='$(poly_src)/Zpolytest.c' object='Zpolytestgmp-Zpolytest.obj' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(Zpolytestgmp_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o Zpolytestgmp-Zpolytest.obj `if test -f '$(poly_src)/Zpolytest.c'; then $(CYGPATH_W) '$(poly_src)/Zpolytest.c'; else $(CYGPATH_W) '$(srcdir)/$(poly_src)/Zpolytest.c'; fi`
c2p-c2p.o: $(poly_src)/c2p.c
@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(c2p_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT c2p-c2p.o -MD -MP -MF $(DEPDIR)/c2p-c2p.Tpo -c -o c2p-c2p.o `test -f '$(poly_src)/c2p.c' || echo '$(srcdir)/'`$(poly_src)/c2p.c
@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/c2p-c2p.Tpo $(DEPDIR)/c2p-c2p.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='$(poly_src)/c2p.c' object='c2p-c2p.o' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(c2p_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o c2p-c2p.o `test -f '$(poly_src)/c2p.c' || echo '$(srcdir)/'`$(poly_src)/c2p.c
c2p-c2p.obj: $(poly_src)/c2p.c
@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(c2p_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT c2p-c2p.obj -MD -MP -MF $(DEPDIR)/c2p-c2p.Tpo -c -o c2p-c2p.obj `if test -f '$(poly_src)/c2p.c'; then $(CYGPATH_W) '$(poly_src)/c2p.c'; else $(CYGPATH_W) '$(srcdir)/$(poly_src)/c2p.c'; fi`
@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/c2p-c2p.Tpo $(DEPDIR)/c2p-c2p.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='$(poly_src)/c2p.c' object='c2p-c2p.obj' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(c2p_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o c2p-c2p.obj `if test -f '$(poly_src)/c2p.c'; then $(CYGPATH_W) '$(poly_src)/c2p.c'; else $(CYGPATH_W) '$(srcdir)/$(poly_src)/c2p.c'; fi`
count-count.o: source/count.c
@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(count_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT count-count.o -MD -MP -MF $(DEPDIR)/count-count.Tpo -c -o count-count.o `test -f 'source/count.c' || echo '$(srcdir)/'`source/count.c
@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/count-count.Tpo $(DEPDIR)/count-count.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='source/count.c' object='count-count.o' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(count_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o count-count.o `test -f 'source/count.c' || echo '$(srcdir)/'`source/count.c
count-count.obj: source/count.c
@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(count_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT count-count.obj -MD -MP -MF $(DEPDIR)/count-count.Tpo -c -o count-count.obj `if test -f 'source/count.c'; then $(CYGPATH_W) 'source/count.c'; else $(CYGPATH_W) '$(srcdir)/source/count.c'; fi`
@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/count-count.Tpo $(DEPDIR)/count-count.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='source/count.c' object='count-count.obj' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(count_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o count-count.obj `if test -f 'source/count.c'; then $(CYGPATH_W) 'source/count.c'; else $(CYGPATH_W) '$(srcdir)/source/count.c'; fi`
disjoint_union_adj-disjoint_union_adj.o: $(poly_src)/disjoint_union_adj.c
@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(disjoint_union_adj_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT disjoint_union_adj-disjoint_union_adj.o -MD -MP -MF $(DEPDIR)/disjoint_union_adj-disjoint_union_adj.Tpo -c -o disjoint_union_adj-disjoint_union_adj.o `test -f '$(poly_src)/disjoint_union_adj.c' || echo '$(srcdir)/'`$(poly_src)/disjoint_union_adj.c
@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/disjoint_union_adj-disjoint_union_adj.Tpo $(DEPDIR)/disjoint_union_adj-disjoint_union_adj.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='$(poly_src)/disjoint_union_adj.c' object='disjoint_union_adj-disjoint_union_adj.o' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(disjoint_union_adj_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o disjoint_union_adj-disjoint_union_adj.o `test -f '$(poly_src)/disjoint_union_adj.c' || echo '$(srcdir)/'`$(poly_src)/disjoint_union_adj.c
disjoint_union_adj-disjoint_union_adj.obj: $(poly_src)/disjoint_union_adj.c
@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(disjoint_union_adj_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT disjoint_union_adj-disjoint_union_adj.obj -MD -MP -MF $(DEPDIR)/disjoint_union_adj-disjoint_union_adj.Tpo -c -o disjoint_union_adj-disjoint_union_adj.obj `if test -f '$(poly_src)/disjoint_union_adj.c'; then $(CYGPATH_W) '$(poly_src)/disjoint_union_adj.c'; else $(CYGPATH_W) '$(srcdir)/$(poly_src)/disjoint_union_adj.c'; fi`
@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/disjoint_union_adj-disjoint_union_adj.Tpo $(DEPDIR)/disjoint_union_adj-disjoint_union_adj.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='$(poly_src)/disjoint_union_adj.c' object='disjoint_union_adj-disjoint_union_adj.obj' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(disjoint_union_adj_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o disjoint_union_adj-disjoint_union_adj.obj `if test -f '$(poly_src)/disjoint_union_adj.c'; then $(CYGPATH_W) '$(poly_src)/disjoint_union_adj.c'; else $(CYGPATH_W) '$(srcdir)/$(poly_src)/disjoint_union_adj.c'; fi`
disjoint_union_sep-disjoint_union_sep.o: $(poly_src)/disjoint_union_sep.c
@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(disjoint_union_sep_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT disjoint_union_sep-disjoint_union_sep.o -MD -MP -MF $(DEPDIR)/disjoint_union_sep-disjoint_union_sep.Tpo -c -o disjoint_union_sep-disjoint_union_sep.o `test -f '$(poly_src)/disjoint_union_sep.c' || echo '$(srcdir)/'`$(poly_src)/disjoint_union_sep.c
@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/disjoint_union_sep-disjoint_union_sep.Tpo $(DEPDIR)/disjoint_union_sep-disjoint_union_sep.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='$(poly_src)/disjoint_union_sep.c' object='disjoint_union_sep-disjoint_union_sep.o' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(disjoint_union_sep_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o disjoint_union_sep-disjoint_union_sep.o `test -f '$(poly_src)/disjoint_union_sep.c' || echo '$(srcdir)/'`$(poly_src)/disjoint_union_sep.c
disjoint_union_sep-disjoint_union_sep.obj: $(poly_src)/disjoint_union_sep.c
@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(disjoint_union_sep_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT disjoint_union_sep-disjoint_union_sep.obj -MD -MP -MF $(DEPDIR)/disjoint_union_sep-disjoint_union_sep.Tpo -c -o disjoint_union_sep-disjoint_union_sep.obj `if test -f '$(poly_src)/disjoint_union_sep.c'; then $(CYGPATH_W) '$(poly_src)/disjoint_union_sep.c'; else $(CYGPATH_W) '$(srcdir)/$(poly_src)/disjoint_union_sep.c'; fi`
@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/disjoint_union_sep-disjoint_union_sep.Tpo $(DEPDIR)/disjoint_union_sep-disjoint_union_sep.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='$(poly_src)/disjoint_union_sep.c' object='disjoint_union_sep-disjoint_union_sep.obj' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(disjoint_union_sep_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o disjoint_union_sep-disjoint_union_sep.obj `if test -f '$(poly_src)/disjoint_union_sep.c'; then $(CYGPATH_W) '$(poly_src)/disjoint_union_sep.c'; else $(CYGPATH_W) '$(srcdir)/$(poly_src)/disjoint_union_sep.c'; fi`
ehrhart_lower_bound-ehrhart_lower_bound.o: $(poly_src)/ehrhart_lower_bound.c
@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(ehrhart_lower_bound_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ehrhart_lower_bound-ehrhart_lower_bound.o -MD -MP -MF $(DEPDIR)/ehrhart_lower_bound-ehrhart_lower_bound.Tpo -c -o ehrhart_lower_bound-ehrhart_lower_bound.o `test -f '$(poly_src)/ehrhart_lower_bound.c' || echo '$(srcdir)/'`$(poly_src)/ehrhart_lower_bound.c
@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/ehrhart_lower_bound-ehrhart_lower_bound.Tpo $(DEPDIR)/ehrhart_lower_bound-ehrhart_lower_bound.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='$(poly_src)/ehrhart_lower_bound.c' object='ehrhart_lower_bound-ehrhart_lower_bound.o' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(ehrhart_lower_bound_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ehrhart_lower_bound-ehrhart_lower_bound.o `test -f '$(poly_src)/ehrhart_lower_bound.c' || echo '$(srcdir)/'`$(poly_src)/ehrhart_lower_bound.c
ehrhart_lower_bound-ehrhart_lower_bound.obj: $(poly_src)/ehrhart_lower_bound.c
@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(ehrhart_lower_bound_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ehrhart_lower_bound-ehrhart_lower_bound.obj -MD -MP -MF $(DEPDIR)/ehrhart_lower_bound-ehrhart_lower_bound.Tpo -c -o ehrhart_lower_bound-ehrhart_lower_bound.obj `if test -f '$(poly_src)/ehrhart_lower_bound.c'; then $(CYGPATH_W) '$(poly_src)/ehrhart_lower_bound.c'; else $(CYGPATH_W) '$(srcdir)/$(poly_src)/ehrhart_lower_bound.c'; fi`
@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/ehrhart_lower_bound-ehrhart_lower_bound.Tpo $(DEPDIR)/ehrhart_lower_bound-ehrhart_lower_bound.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='$(poly_src)/ehrhart_lower_bound.c' object='ehrhart_lower_bound-ehrhart_lower_bound.obj' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(ehrhart_lower_bound_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ehrhart_lower_bound-ehrhart_lower_bound.obj `if test -f '$(poly_src)/ehrhart_lower_bound.c'; then $(CYGPATH_W) '$(poly_src)/ehrhart_lower_bound.c'; else $(CYGPATH_W) '$(srcdir)/$(poly_src)/ehrhart_lower_bound.c'; fi`
ehrhart_quick_apx-ehrhart_quick_apx.o: $(poly_src)/ehrhart_quick_apx.c
@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(ehrhart_quick_apx_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ehrhart_quick_apx-ehrhart_quick_apx.o -MD -MP -MF $(DEPDIR)/ehrhart_quick_apx-ehrhart_quick_apx.Tpo -c -o ehrhart_quick_apx-ehrhart_quick_apx.o `test -f '$(poly_src)/ehrhart_quick_apx.c' || echo '$(srcdir)/'`$(poly_src)/ehrhart_quick_apx.c
@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/ehrhart_quick_apx-ehrhart_quick_apx.Tpo $(DEPDIR)/ehrhart_quick_apx-ehrhart_quick_apx.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='$(poly_src)/ehrhart_quick_apx.c' object='ehrhart_quick_apx-ehrhart_quick_apx.o' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(ehrhart_quick_apx_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ehrhart_quick_apx-ehrhart_quick_apx.o `test -f '$(poly_src)/ehrhart_quick_apx.c' || echo '$(srcdir)/'`$(poly_src)/ehrhart_quick_apx.c
ehrhart_quick_apx-ehrhart_quick_apx.obj: $(poly_src)/ehrhart_quick_apx.c
@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(ehrhart_quick_apx_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ehrhart_quick_apx-ehrhart_quick_apx.obj -MD -MP -MF $(DEPDIR)/ehrhart_quick_apx-ehrhart_quick_apx.Tpo -c -o ehrhart_quick_apx-ehrhart_quick_apx.obj `if test -f '$(poly_src)/ehrhart_quick_apx.c'; then $(CYGPATH_W) '$(poly_src)/ehrhart_quick_apx.c'; else $(CYGPATH_W) '$(srcdir)/$(poly_src)/ehrhart_quick_apx.c'; fi`
@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/ehrhart_quick_apx-ehrhart_quick_apx.Tpo $(DEPDIR)/ehrhart_quick_apx-ehrhart_quick_apx.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='$(poly_src)/ehrhart_quick_apx.c' object='ehrhart_quick_apx-ehrhart_quick_apx.obj' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(ehrhart_quick_apx_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ehrhart_quick_apx-ehrhart_quick_apx.obj `if test -f '$(poly_src)/ehrhart_quick_apx.c'; then $(CYGPATH_W) '$(poly_src)/ehrhart_quick_apx.c'; else $(CYGPATH_W) '$(srcdir)/$(poly_src)/ehrhart_quick_apx.c'; fi`
ehrhart_ranking32-ehrhart_ranking.o: $(poly_src)/ehrhart_ranking.c
@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(ehrhart_ranking32_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ehrhart_ranking32-ehrhart_ranking.o -MD -MP -MF $(DEPDIR)/ehrhart_ranking32-ehrhart_ranking.Tpo -c -o ehrhart_ranking32-ehrhart_ranking.o `test -f '$(poly_src)/ehrhart_ranking.c' || echo '$(srcdir)/'`$(poly_src)/ehrhart_ranking.c
@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/ehrhart_ranking32-ehrhart_ranking.Tpo $(DEPDIR)/ehrhart_ranking32-ehrhart_ranking.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='$(poly_src)/ehrhart_ranking.c' object='ehrhart_ranking32-ehrhart_ranking.o' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(ehrhart_ranking32_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ehrhart_ranking32-ehrhart_ranking.o `test -f '$(poly_src)/ehrhart_ranking.c' || echo '$(srcdir)/'`$(poly_src)/ehrhart_ranking.c
ehrhart_ranking32-ehrhart_ranking.obj: $(poly_src)/ehrhart_ranking.c
@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(ehrhart_ranking32_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ehrhart_ranking32-ehrhart_ranking.obj -MD -MP -MF $(DEPDIR)/ehrhart_ranking32-ehrhart_ranking.Tpo -c -o ehrhart_ranking32-ehrhart_ranking.obj `if test -f '$(poly_src)/ehrhart_ranking.c'; then $(CYGPATH_W) '$(poly_src)/ehrhart_ranking.c'; else $(CYGPATH_W) '$(srcdir)/$(poly_src)/ehrhart_ranking.c'; fi`
@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/ehrhart_ranking32-ehrhart_ranking.Tpo $(DEPDIR)/ehrhart_ranking32-ehrhart_ranking.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='$(poly_src)/ehrhart_ranking.c' object='ehrhart_ranking32-ehrhart_ranking.obj' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(ehrhart_ranking32_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ehrhart_ranking32-ehrhart_ranking.obj `if test -f '$(poly_src)/ehrhart_ranking.c'; then $(CYGPATH_W) '$(poly_src)/ehrhart_ranking.c'; else $(CYGPATH_W) '$(srcdir)/$(poly_src)/ehrhart_ranking.c'; fi`
ehrhart_ranking64-ehrhart_ranking.o: $(poly_src)/ehrhart_ranking.c
@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(ehrhart_ranking64_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ehrhart_ranking64-ehrhart_ranking.o -MD -MP -MF $(DEPDIR)/ehrhart_ranking64-ehrhart_ranking.Tpo -c -o ehrhart_ranking64-ehrhart_ranking.o `test -f '$(poly_src)/ehrhart_ranking.c' || echo '$(srcdir)/'`$(poly_src)/ehrhart_ranking.c
@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/ehrhart_ranking64-ehrhart_ranking.Tpo $(DEPDIR)/ehrhart_ranking64-ehrhart_ranking.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='$(poly_src)/ehrhart_ranking.c' object='ehrhart_ranking64-ehrhart_ranking.o' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(ehrhart_ranking64_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ehrhart_ranking64-ehrhart_ranking.o `test -f '$(poly_src)/ehrhart_ranking.c' || echo '$(srcdir)/'`$(poly_src)/ehrhart_ranking.c
ehrhart_ranking64-ehrhart_ranking.obj: $(poly_src)/ehrhart_ranking.c
@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(ehrhart_ranking64_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ehrhart_ranking64-ehrhart_ranking.obj -MD -MP -MF $(DEPDIR)/ehrhart_ranking64-ehrhart_ranking.Tpo -c -o ehrhart_ranking64-ehrhart_ranking.obj `if test -f '$(poly_src)/ehrhart_ranking.c'; then $(CYGPATH_W) '$(poly_src)/ehrhart_ranking.c'; else $(CYGPATH_W) '$(srcdir)/$(poly_src)/ehrhart_ranking.c'; fi`
@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/ehrhart_ranking64-ehrhart_ranking.Tpo $(DEPDIR)/ehrhart_ranking64-ehrhart_ranking.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='$(poly_src)/ehrhart_ranking.c' object='ehrhart_ranking64-ehrhart_ranking.obj' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(ehrhart_ranking64_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ehrhart_ranking64-ehrhart_ranking.obj `if test -f '$(poly_src)/ehrhart_ranking.c'; then $(CYGPATH_W) '$(poly_src)/ehrhart_ranking.c'; else $(CYGPATH_W) '$(srcdir)/$(poly_src)/ehrhart_ranking.c'; fi`
ehrhart_rankinggmp-ehrhart_ranking.o: $(poly_src)/ehrhart_ranking.c
@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(ehrhart_rankinggmp_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ehrhart_rankinggmp-ehrhart_ranking.o -MD -MP -MF $(DEPDIR)/ehrhart_rankinggmp-ehrhart_ranking.Tpo -c -o ehrhart_rankinggmp-ehrhart_ranking.o `test -f '$(poly_src)/ehrhart_ranking.c' || echo '$(srcdir)/'`$(poly_src)/ehrhart_ranking.c
@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/ehrhart_rankinggmp-ehrhart_ranking.Tpo $(DEPDIR)/ehrhart_rankinggmp-ehrhart_ranking.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='$(poly_src)/ehrhart_ranking.c' object='ehrhart_rankinggmp-ehrhart_ranking.o' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(ehrhart_rankinggmp_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ehrhart_rankinggmp-ehrhart_ranking.o `test -f '$(poly_src)/ehrhart_ranking.c' || echo '$(srcdir)/'`$(poly_src)/ehrhart_ranking.c
ehrhart_rankinggmp-ehrhart_ranking.obj: $(poly_src)/ehrhart_ranking.c
@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(ehrhart_rankinggmp_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ehrhart_rankinggmp-ehrhart_ranking.obj -MD -MP -MF $(DEPDIR)/ehrhart_rankinggmp-ehrhart_ranking.Tpo -c -o ehrhart_rankinggmp-ehrhart_ranking.obj `if test -f '$(poly_src)/ehrhart_ranking.c'; then $(CYGPATH_W) '$(poly_src)/ehrhart_ranking.c'; else $(CYGPATH_W) '$(srcdir)/$(poly_src)/ehrhart_ranking.c'; fi`
@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/ehrhart_rankinggmp-ehrhart_ranking.Tpo $(DEPDIR)/ehrhart_rankinggmp-ehrhart_ranking.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='$(poly_src)/ehrhart_ranking.c' object='ehrhart_rankinggmp-ehrhart_ranking.obj' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(ehrhart_rankinggmp_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ehrhart_rankinggmp-ehrhart_ranking.obj `if test -f '$(poly_src)/ehrhart_ranking.c'; then $(CYGPATH_W) '$(poly_src)/ehrhart_ranking.c'; else $(CYGPATH_W) '$(srcdir)/$(poly_src)/ehrhart_ranking.c'; fi`
ehrhart_union32-ehrhart_union.o: $(poly_src)/ehrhart_union.c
@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(ehrhart_union32_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ehrhart_union32-ehrhart_union.o -MD -MP -MF $(DEPDIR)/ehrhart_union32-ehrhart_union.Tpo -c -o ehrhart_union32-ehrhart_union.o `test -f '$(poly_src)/ehrhart_union.c' || echo '$(srcdir)/'`$(poly_src)/ehrhart_union.c
@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/ehrhart_union32-ehrhart_union.Tpo $(DEPDIR)/ehrhart_union32-ehrhart_union.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='$(poly_src)/ehrhart_union.c' object='ehrhart_union32-ehrhart_union.o' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(ehrhart_union32_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ehrhart_union32-ehrhart_union.o `test -f '$(poly_src)/ehrhart_union.c' || echo '$(srcdir)/'`$(poly_src)/ehrhart_union.c
ehrhart_union32-ehrhart_union.obj: $(poly_src)/ehrhart_union.c
@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(ehrhart_union32_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ehrhart_union32-ehrhart_union.obj -MD -MP -MF $(DEPDIR)/ehrhart_union32-ehrhart_union.Tpo -c -o ehrhart_union32-ehrhart_union.obj `if test -f '$(poly_src)/ehrhart_union.c'; then $(CYGPATH_W) '$(poly_src)/ehrhart_union.c'; else $(CYGPATH_W) '$(srcdir)/$(poly_src)/ehrhart_union.c'; fi`
@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/ehrhart_union32-ehrhart_union.Tpo $(DEPDIR)/ehrhart_union32-ehrhart_union.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='$(poly_src)/ehrhart_union.c' object='ehrhart_union32-ehrhart_union.obj' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(ehrhart_union32_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ehrhart_union32-ehrhart_union.obj `if test -f '$(poly_src)/ehrhart_union.c'; then $(CYGPATH_W) '$(poly_src)/ehrhart_union.c'; else $(CYGPATH_W) '$(srcdir)/$(poly_src)/ehrhart_union.c'; fi`
ehrhart_union64-ehrhart_union.o: $(poly_src)/ehrhart_union.c
@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(ehrhart_union64_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ehrhart_union64-ehrhart_union.o -MD -MP -MF $(DEPDIR)/ehrhart_union64-ehrhart_union.Tpo -c -o ehrhart_union64-ehrhart_union.o `test -f '$(poly_src)/ehrhart_union.c' || echo '$(srcdir)/'`$(poly_src)/ehrhart_union.c
@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/ehrhart_union64-ehrhart_union.Tpo $(DEPDIR)/ehrhart_union64-ehrhart_union.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='$(poly_src)/ehrhart_union.c' object='ehrhart_union64-ehrhart_union.o' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(ehrhart_union64_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ehrhart_union64-ehrhart_union.o `test -f '$(poly_src)/ehrhart_union.c' || echo '$(srcdir)/'`$(poly_src)/ehrhart_union.c
ehrhart_union64-ehrhart_union.obj: $(poly_src)/ehrhart_union.c
@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(ehrhart_union64_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ehrhart_union64-ehrhart_union.obj -MD -MP -MF $(DEPDIR)/ehrhart_union64-ehrhart_union.Tpo -c -o ehrhart_union64-ehrhart_union.obj `if test -f '$(poly_src)/ehrhart_union.c'; then $(CYGPATH_W) '$(poly_src)/ehrhart_union.c'; else $(CYGPATH_W) '$(srcdir)/$(poly_src)/ehrhart_union.c'; fi`
@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/ehrhart_union64-ehrhart_union.Tpo $(DEPDIR)/ehrhart_union64-ehrhart_union.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='$(poly_src)/ehrhart_union.c' object='ehrhart_union64-ehrhart_union.obj' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(ehrhart_union64_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ehrhart_union64-ehrhart_union.obj `if test -f '$(poly_src)/ehrhart_union.c'; then $(CYGPATH_W) '$(poly_src)/ehrhart_union.c'; else $(CYGPATH_W) '$(srcdir)/$(poly_src)/ehrhart_union.c'; fi`
ehrhart_uniongmp-ehrhart_union.o: $(poly_src)/ehrhart_union.c
@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(ehrhart_uniongmp_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ehrhart_uniongmp-ehrhart_union.o -MD -MP -MF $(DEPDIR)/ehrhart_uniongmp-ehrhart_union.Tpo -c -o ehrhart_uniongmp-ehrhart_union.o `test -f '$(poly_src)/ehrhart_union.c' || echo '$(srcdir)/'`$(poly_src)/ehrhart_union.c
@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/ehrhart_uniongmp-ehrhart_union.Tpo $(DEPDIR)/ehrhart_uniongmp-ehrhart_union.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='$(poly_src)/ehrhart_union.c' object='ehrhart_uniongmp-ehrhart_union.o' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(ehrhart_uniongmp_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ehrhart_uniongmp-ehrhart_union.o `test -f '$(poly_src)/ehrhart_union.c' || echo '$(srcdir)/'`$(poly_src)/ehrhart_union.c
ehrhart_uniongmp-ehrhart_union.obj: $(poly_src)/ehrhart_union.c
@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(ehrhart_uniongmp_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ehrhart_uniongmp-ehrhart_union.obj -MD -MP -MF $(DEPDIR)/ehrhart_uniongmp-ehrhart_union.Tpo -c -o ehrhart_uniongmp-ehrhart_union.obj `if test -f '$(poly_src)/ehrhart_union.c'; then $(CYGPATH_W) '$(poly_src)/ehrhart_union.c'; else $(CYGPATH_W) '$(srcdir)/$(poly_src)/ehrhart_union.c'; fi`
@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/ehrhart_uniongmp-ehrhart_union.Tpo $(DEPDIR)/ehrhart_uniongmp-ehrhart_union.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='$(poly_src)/ehrhart_union.c' object='ehrhart_uniongmp-ehrhart_union.obj' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(ehrhart_uniongmp_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ehrhart_uniongmp-ehrhart_union.obj `if test -f '$(poly_src)/ehrhart_union.c'; then $(CYGPATH_W) '$(poly_src)/ehrhart_union.c'; else $(CYGPATH_W) '$(srcdir)/$(poly_src)/ehrhart_union.c'; fi`
ehrhart_upper_bound-ehrhart_upper_bound.o: $(poly_src)/ehrhart_upper_bound.c
@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(ehrhart_upper_bound_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ehrhart_upper_bound-ehrhart_upper_bound.o -MD -MP -MF $(DEPDIR)/ehrhart_upper_bound-ehrhart_upper_bound.Tpo -c -o ehrhart_upper_bound-ehrhart_upper_bound.o `test -f '$(poly_src)/ehrhart_upper_bound.c' || echo '$(srcdir)/'`$(poly_src)/ehrhart_upper_bound.c
@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/ehrhart_upper_bound-ehrhart_upper_bound.Tpo $(DEPDIR)/ehrhart_upper_bound-ehrhart_upper_bound.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='$(poly_src)/ehrhart_upper_bound.c' object='ehrhart_upper_bound-ehrhart_upper_bound.o' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(ehrhart_upper_bound_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ehrhart_upper_bound-ehrhart_upper_bound.o `test -f '$(poly_src)/ehrhart_upper_bound.c' || echo '$(srcdir)/'`$(poly_src)/ehrhart_upper_bound.c
ehrhart_upper_bound-ehrhart_upper_bound.obj: $(poly_src)/ehrhart_upper_bound.c
@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(ehrhart_upper_bound_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ehrhart_upper_bound-ehrhart_upper_bound.obj -MD -MP -MF $(DEPDIR)/ehrhart_upper_bound-ehrhart_upper_bound.Tpo -c -o ehrhart_upper_bound-ehrhart_upper_bound.obj `if test -f '$(poly_src)/ehrhart_upper_bound.c'; then $(CYGPATH_W) '$(poly_src)/ehrhart_upper_bound.c'; else $(CYGPATH_W) '$(srcdir)/$(poly_src)/ehrhart_upper_bound.c'; fi`
@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/ehrhart_upper_bound-ehrhart_upper_bound.Tpo $(DEPDIR)/ehrhart_upper_bound-ehrhart_upper_bound.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='$(poly_src)/ehrhart_upper_bound.c' object='ehrhart_upper_bound-ehrhart_upper_bound.obj' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(ehrhart_upper_bound_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ehrhart_upper_bound-ehrhart_upper_bound.obj `if test -f '$(poly_src)/ehrhart_upper_bound.c'; then $(CYGPATH_W) '$(poly_src)/ehrhart_upper_bound.c'; else $(CYGPATH_W) '$(srcdir)/$(poly_src)/ehrhart_upper_bound.c'; fi`
example-example.o: $(poly_src)/example.c
@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(example_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT example-example.o -MD -MP -MF $(DEPDIR)/example-example.Tpo -c -o example-example.o `test -f '$(poly_src)/example.c' || echo '$(srcdir)/'`$(poly_src)/example.c
@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/example-example.Tpo $(DEPDIR)/example-example.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='$(poly_src)/example.c' object='example-example.o' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(example_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o example-example.o `test -f '$(poly_src)/example.c' || echo '$(srcdir)/'`$(poly_src)/example.c
example-example.obj: $(poly_src)/example.c
@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(example_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT example-example.obj -MD -MP -MF $(DEPDIR)/example-example.Tpo -c -o example-example.obj `if test -f '$(poly_src)/example.c'; then $(CYGPATH_W) '$(poly_src)/example.c'; else $(CYGPATH_W) '$(srcdir)/$(poly_src)/example.c'; fi`
@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/example-example.Tpo $(DEPDIR)/example-example.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='$(poly_src)/example.c' object='example-example.obj' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(example_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o example-example.obj `if test -f '$(poly_src)/example.c'; then $(CYGPATH_W) '$(poly_src)/example.c'; else $(CYGPATH_W) '$(srcdir)/$(poly_src)/example.c'; fi`
findv-findv.o: $(poly_src)/findv.c
@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(findv_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT findv-findv.o -MD -MP -MF $(DEPDIR)/findv-findv.Tpo -c -o findv-findv.o `test -f '$(poly_src)/findv.c' || echo '$(srcdir)/'`$(poly_src)/findv.c
@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/findv-findv.Tpo $(DEPDIR)/findv-findv.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='$(poly_src)/findv.c' object='findv-findv.o' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(findv_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o findv-findv.o `test -f '$(poly_src)/findv.c' || echo '$(srcdir)/'`$(poly_src)/findv.c
findv-findv.obj: $(poly_src)/findv.c
@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(findv_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT findv-findv.obj -MD -MP -MF $(DEPDIR)/findv-findv.Tpo -c -o findv-findv.obj `if test -f '$(poly_src)/findv.c'; then $(CYGPATH_W) '$(poly_src)/findv.c'; else $(CYGPATH_W) '$(srcdir)/$(poly_src)/findv.c'; fi`
@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/findv-findv.Tpo $(DEPDIR)/findv-findv.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='$(poly_src)/findv.c' object='findv-findv.obj' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(findv_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o findv-findv.obj `if test -f '$(poly_src)/findv.c'; then $(CYGPATH_W) '$(poly_src)/findv.c'; else $(CYGPATH_W) '$(srcdir)/$(poly_src)/findv.c'; fi`
polytest32-polytest.o: $(poly_src)/polytest.c
@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(polytest32_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT polytest32-polytest.o -MD -MP -MF $(DEPDIR)/polytest32-polytest.Tpo -c -o polytest32-polytest.o `test -f '$(poly_src)/polytest.c' || echo '$(srcdir)/'`$(poly_src)/polytest.c
@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/polytest32-polytest.Tpo $(DEPDIR)/polytest32-polytest.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='$(poly_src)/polytest.c' object='polytest32-polytest.o' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(polytest32_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o polytest32-polytest.o `test -f '$(poly_src)/polytest.c' || echo '$(srcdir)/'`$(poly_src)/polytest.c
polytest32-polytest.obj: $(poly_src)/polytest.c
@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(polytest32_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT polytest32-polytest.obj -MD -MP -MF $(DEPDIR)/polytest32-polytest.Tpo -c -o polytest32-polytest.obj `if test -f '$(poly_src)/polytest.c'; then $(CYGPATH_W) '$(poly_src)/polytest.c'; else $(CYGPATH_W) '$(srcdir)/$(poly_src)/polytest.c'; fi`
@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/polytest32-polytest.Tpo $(DEPDIR)/polytest32-polytest.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='$(poly_src)/polytest.c' object='polytest32-polytest.obj' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(polytest32_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o polytest32-polytest.obj `if test -f '$(poly_src)/polytest.c'; then $(CYGPATH_W) '$(poly_src)/polytest.c'; else $(CYGPATH_W) '$(srcdir)/$(poly_src)/polytest.c'; fi`
polytest64-polytest.o: $(poly_src)/polytest.c
@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(polytest64_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT polytest64-polytest.o -MD -MP -MF $(DEPDIR)/polytest64-polytest.Tpo -c -o polytest64-polytest.o `test -f '$(poly_src)/polytest.c' || echo '$(srcdir)/'`$(poly_src)/polytest.c
@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/polytest64-polytest.Tpo $(DEPDIR)/polytest64-polytest.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='$(poly_src)/polytest.c' object='polytest64-polytest.o' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(polytest64_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o polytest64-polytest.o `test -f '$(poly_src)/polytest.c' || echo '$(srcdir)/'`$(poly_src)/polytest.c
polytest64-polytest.obj: $(poly_src)/polytest.c
@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(polytest64_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT polytest64-polytest.obj -MD -MP -MF $(DEPDIR)/polytest64-polytest.Tpo -c -o polytest64-polytest.obj `if test -f '$(poly_src)/polytest.c'; then $(CYGPATH_W) '$(poly_src)/polytest.c'; else $(CYGPATH_W) '$(srcdir)/$(poly_src)/polytest.c'; fi`
@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/polytest64-polytest.Tpo $(DEPDIR)/polytest64-polytest.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='$(poly_src)/polytest.c' object='polytest64-polytest.obj' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(polytest64_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o polytest64-polytest.obj `if test -f '$(poly_src)/polytest.c'; then $(CYGPATH_W) '$(poly_src)/polytest.c'; else $(CYGPATH_W) '$(srcdir)/$(poly_src)/polytest.c'; fi`
polytestgmp-polytest.o: $(poly_src)/polytest.c
@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(polytestgmp_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT polytestgmp-polytest.o -MD -MP -MF $(DEPDIR)/polytestgmp-polytest.Tpo -c -o polytestgmp-polytest.o `test -f '$(poly_src)/polytest.c' || echo '$(srcdir)/'`$(poly_src)/polytest.c
@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/polytestgmp-polytest.Tpo $(DEPDIR)/polytestgmp-polytest.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='$(poly_src)/polytest.c' object='polytestgmp-polytest.o' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(polytestgmp_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o polytestgmp-polytest.o `test -f '$(poly_src)/polytest.c' || echo '$(srcdir)/'`$(poly_src)/polytest.c
polytestgmp-polytest.obj: $(poly_src)/polytest.c
@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(polytestgmp_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT polytestgmp-polytest.obj -MD -MP -MF $(DEPDIR)/polytestgmp-polytest.Tpo -c -o polytestgmp-polytest.obj `if test -f '$(poly_src)/polytest.c'; then $(CYGPATH_W) '$(poly_src)/polytest.c'; else $(CYGPATH_W) '$(srcdir)/$(poly_src)/polytest.c'; fi`
@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/polytestgmp-polytest.Tpo $(DEPDIR)/polytestgmp-polytest.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='$(poly_src)/polytest.c' object='polytestgmp-polytest.obj' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(polytestgmp_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o polytestgmp-polytest.obj `if test -f '$(poly_src)/polytest.c'; then $(CYGPATH_W) '$(poly_src)/polytest.c'; else $(CYGPATH_W) '$(srcdir)/$(poly_src)/polytest.c'; fi`
pp32-pp.o: $(poly_src)/pp.c
@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(pp32_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT pp32-pp.o -MD -MP -MF $(DEPDIR)/pp32-pp.Tpo -c -o pp32-pp.o `test -f '$(poly_src)/pp.c' || echo '$(srcdir)/'`$(poly_src)/pp.c
@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/pp32-pp.Tpo $(DEPDIR)/pp32-pp.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='$(poly_src)/pp.c' object='pp32-pp.o' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(pp32_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o pp32-pp.o `test -f '$(poly_src)/pp.c' || echo '$(srcdir)/'`$(poly_src)/pp.c
pp32-pp.obj: $(poly_src)/pp.c
@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(pp32_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT pp32-pp.obj -MD -MP -MF $(DEPDIR)/pp32-pp.Tpo -c -o pp32-pp.obj `if test -f '$(poly_src)/pp.c'; then $(CYGPATH_W) '$(poly_src)/pp.c'; else $(CYGPATH_W) '$(srcdir)/$(poly_src)/pp.c'; fi`
@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/pp32-pp.Tpo $(DEPDIR)/pp32-pp.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='$(poly_src)/pp.c' object='pp32-pp.obj' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(pp32_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o pp32-pp.obj `if test -f '$(poly_src)/pp.c'; then $(CYGPATH_W) '$(poly_src)/pp.c'; else $(CYGPATH_W) '$(srcdir)/$(poly_src)/pp.c'; fi`
pp64-pp.o: $(poly_src)/pp.c
@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(pp64_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT pp64-pp.o -MD -MP -MF $(DEPDIR)/pp64-pp.Tpo -c -o pp64-pp.o `test -f '$(poly_src)/pp.c' || echo '$(srcdir)/'`$(poly_src)/pp.c
@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/pp64-pp.Tpo $(DEPDIR)/pp64-pp.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='$(poly_src)/pp.c' object='pp64-pp.o' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(pp64_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o pp64-pp.o `test -f '$(poly_src)/pp.c' || echo '$(srcdir)/'`$(poly_src)/pp.c
pp64-pp.obj: $(poly_src)/pp.c
@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(pp64_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT pp64-pp.obj -MD -MP -MF $(DEPDIR)/pp64-pp.Tpo -c -o pp64-pp.obj `if test -f '$(poly_src)/pp.c'; then $(CYGPATH_W) '$(poly_src)/pp.c'; else $(CYGPATH_W) '$(srcdir)/$(poly_src)/pp.c'; fi`
@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/pp64-pp.Tpo $(DEPDIR)/pp64-pp.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='$(poly_src)/pp.c' object='pp64-pp.obj' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(pp64_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o pp64-pp.obj `if test -f '$(poly_src)/pp.c'; then $(CYGPATH_W) '$(poly_src)/pp.c'; else $(CYGPATH_W) '$(srcdir)/$(poly_src)/pp.c'; fi`
ppgmp-pp.o: $(poly_src)/pp.c
@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(ppgmp_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ppgmp-pp.o -MD -MP -MF $(DEPDIR)/ppgmp-pp.Tpo -c -o ppgmp-pp.o `test -f '$(poly_src)/pp.c' || echo '$(srcdir)/'`$(poly_src)/pp.c
@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/ppgmp-pp.Tpo $(DEPDIR)/ppgmp-pp.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='$(poly_src)/pp.c' object='ppgmp-pp.o' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(ppgmp_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ppgmp-pp.o `test -f '$(poly_src)/pp.c' || echo '$(srcdir)/'`$(poly_src)/pp.c
ppgmp-pp.obj: $(poly_src)/pp.c
@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(ppgmp_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT ppgmp-pp.obj -MD -MP -MF $(DEPDIR)/ppgmp-pp.Tpo -c -o ppgmp-pp.obj `if test -f '$(poly_src)/pp.c'; then $(CYGPATH_W) '$(poly_src)/pp.c'; else $(CYGPATH_W) '$(srcdir)/$(poly_src)/pp.c'; fi`
@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/ppgmp-pp.Tpo $(DEPDIR)/ppgmp-pp.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='$(poly_src)/pp.c' object='ppgmp-pp.obj' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(ppgmp_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o ppgmp-pp.obj `if test -f '$(poly_src)/pp.c'; then $(CYGPATH_W) '$(poly_src)/pp.c'; else $(CYGPATH_W) '$(srcdir)/$(poly_src)/pp.c'; fi`
r2p-r2p.o: $(poly_src)/r2p.c
@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(r2p_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT r2p-r2p.o -MD -MP -MF $(DEPDIR)/r2p-r2p.Tpo -c -o r2p-r2p.o `test -f '$(poly_src)/r2p.c' || echo '$(srcdir)/'`$(poly_src)/r2p.c
@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/r2p-r2p.Tpo $(DEPDIR)/r2p-r2p.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='$(poly_src)/r2p.c' object='r2p-r2p.o' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(r2p_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o r2p-r2p.o `test -f '$(poly_src)/r2p.c' || echo '$(srcdir)/'`$(poly_src)/r2p.c
r2p-r2p.obj: $(poly_src)/r2p.c
@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(r2p_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT r2p-r2p.obj -MD -MP -MF $(DEPDIR)/r2p-r2p.Tpo -c -o r2p-r2p.obj `if test -f '$(poly_src)/r2p.c'; then $(CYGPATH_W) '$(poly_src)/r2p.c'; else $(CYGPATH_W) '$(srcdir)/$(poly_src)/r2p.c'; fi`
@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/r2p-r2p.Tpo $(DEPDIR)/r2p-r2p.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='$(poly_src)/r2p.c' object='r2p-r2p.obj' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(r2p_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o r2p-r2p.obj `if test -f '$(poly_src)/r2p.c'; then $(CYGPATH_W) '$(poly_src)/r2p.c'; else $(CYGPATH_W) '$(srcdir)/$(poly_src)/r2p.c'; fi`
testCompressParms32-testCompressParms.o: $(poly_src)/testCompressParms.c
@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(testCompressParms32_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT testCompressParms32-testCompressParms.o -MD -MP -MF $(DEPDIR)/testCompressParms32-testCompressParms.Tpo -c -o testCompressParms32-testCompressParms.o `test -f '$(poly_src)/testCompressParms.c' || echo '$(srcdir)/'`$(poly_src)/testCompressParms.c
@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/testCompressParms32-testCompressParms.Tpo $(DEPDIR)/testCompressParms32-testCompressParms.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='$(poly_src)/testCompressParms.c' object='testCompressParms32-testCompressParms.o' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(testCompressParms32_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o testCompressParms32-testCompressParms.o `test -f '$(poly_src)/testCompressParms.c' || echo '$(srcdir)/'`$(poly_src)/testCompressParms.c
testCompressParms32-testCompressParms.obj: $(poly_src)/testCompressParms.c
@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(testCompressParms32_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT testCompressParms32-testCompressParms.obj -MD -MP -MF $(DEPDIR)/testCompressParms32-testCompressParms.Tpo -c -o testCompressParms32-testCompressParms.obj `if test -f '$(poly_src)/testCompressParms.c'; then $(CYGPATH_W) '$(poly_src)/testCompressParms.c'; else $(CYGPATH_W) '$(srcdir)/$(poly_src)/testCompressParms.c'; fi`
@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/testCompressParms32-testCompressParms.Tpo $(DEPDIR)/testCompressParms32-testCompressParms.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='$(poly_src)/testCompressParms.c' object='testCompressParms32-testCompressParms.obj' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(testCompressParms32_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o testCompressParms32-testCompressParms.obj `if test -f '$(poly_src)/testCompressParms.c'; then $(CYGPATH_W) '$(poly_src)/testCompressParms.c'; else $(CYGPATH_W) '$(srcdir)/$(poly_src)/testCompressParms.c'; fi`
testCompressParms64-testCompressParms.o: $(poly_src)/testCompressParms.c
@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(testCompressParms64_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT testCompressParms64-testCompressParms.o -MD -MP -MF $(DEPDIR)/testCompressParms64-testCompressParms.Tpo -c -o testCompressParms64-testCompressParms.o `test -f '$(poly_src)/testCompressParms.c' || echo '$(srcdir)/'`$(poly_src)/testCompressParms.c
@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/testCompressParms64-testCompressParms.Tpo $(DEPDIR)/testCompressParms64-testCompressParms.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='$(poly_src)/testCompressParms.c' object='testCompressParms64-testCompressParms.o' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(testCompressParms64_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o testCompressParms64-testCompressParms.o `test -f '$(poly_src)/testCompressParms.c' || echo '$(srcdir)/'`$(poly_src)/testCompressParms.c
testCompressParms64-testCompressParms.obj: $(poly_src)/testCompressParms.c
@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(testCompressParms64_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT testCompressParms64-testCompressParms.obj -MD -MP -MF $(DEPDIR)/testCompressParms64-testCompressParms.Tpo -c -o testCompressParms64-testCompressParms.obj `if test -f '$(poly_src)/testCompressParms.c'; then $(CYGPATH_W) '$(poly_src)/testCompressParms.c'; else $(CYGPATH_W) '$(srcdir)/$(poly_src)/testCompressParms.c'; fi`
@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/testCompressParms64-testCompressParms.Tpo $(DEPDIR)/testCompressParms64-testCompressParms.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='$(poly_src)/testCompressParms.c' object='testCompressParms64-testCompressParms.obj' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(testCompressParms64_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o testCompressParms64-testCompressParms.obj `if test -f '$(poly_src)/testCompressParms.c'; then $(CYGPATH_W) '$(poly_src)/testCompressParms.c'; else $(CYGPATH_W) '$(srcdir)/$(poly_src)/testCompressParms.c'; fi`
testCompressParmsgmp-testCompressParms.o: $(poly_src)/testCompressParms.c
@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(testCompressParmsgmp_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT testCompressParmsgmp-testCompressParms.o -MD -MP -MF $(DEPDIR)/testCompressParmsgmp-testCompressParms.Tpo -c -o testCompressParmsgmp-testCompressParms.o `test -f '$(poly_src)/testCompressParms.c' || echo '$(srcdir)/'`$(poly_src)/testCompressParms.c
@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/testCompressParmsgmp-testCompressParms.Tpo $(DEPDIR)/testCompressParmsgmp-testCompressParms.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='$(poly_src)/testCompressParms.c' object='testCompressParmsgmp-testCompressParms.o' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(testCompressParmsgmp_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o testCompressParmsgmp-testCompressParms.o `test -f '$(poly_src)/testCompressParms.c' || echo '$(srcdir)/'`$(poly_src)/testCompressParms.c
testCompressParmsgmp-testCompressParms.obj: $(poly_src)/testCompressParms.c
@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(testCompressParmsgmp_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT testCompressParmsgmp-testCompressParms.obj -MD -MP -MF $(DEPDIR)/testCompressParmsgmp-testCompressParms.Tpo -c -o testCompressParmsgmp-testCompressParms.obj `if test -f '$(poly_src)/testCompressParms.c'; then $(CYGPATH_W) '$(poly_src)/testCompressParms.c'; else $(CYGPATH_W) '$(srcdir)/$(poly_src)/testCompressParms.c'; fi`
@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/testCompressParmsgmp-testCompressParms.Tpo $(DEPDIR)/testCompressParmsgmp-testCompressParms.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='$(poly_src)/testCompressParms.c' object='testCompressParmsgmp-testCompressParms.obj' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(testCompressParmsgmp_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o testCompressParmsgmp-testCompressParms.obj `if test -f '$(poly_src)/testCompressParms.c'; then $(CYGPATH_W) '$(poly_src)/testCompressParms.c'; else $(CYGPATH_W) '$(srcdir)/$(poly_src)/testCompressParms.c'; fi`
testehrhart32-testehrhart.o: $(poly_src)/testehrhart.c
@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(testehrhart32_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT testehrhart32-testehrhart.o -MD -MP -MF $(DEPDIR)/testehrhart32-testehrhart.Tpo -c -o testehrhart32-testehrhart.o `test -f '$(poly_src)/testehrhart.c' || echo '$(srcdir)/'`$(poly_src)/testehrhart.c
@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/testehrhart32-testehrhart.Tpo $(DEPDIR)/testehrhart32-testehrhart.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='$(poly_src)/testehrhart.c' object='testehrhart32-testehrhart.o' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(testehrhart32_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o testehrhart32-testehrhart.o `test -f '$(poly_src)/testehrhart.c' || echo '$(srcdir)/'`$(poly_src)/testehrhart.c
testehrhart32-testehrhart.obj: $(poly_src)/testehrhart.c
@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(testehrhart32_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT testehrhart32-testehrhart.obj -MD -MP -MF $(DEPDIR)/testehrhart32-testehrhart.Tpo -c -o testehrhart32-testehrhart.obj `if test -f '$(poly_src)/testehrhart.c'; then $(CYGPATH_W) '$(poly_src)/testehrhart.c'; else $(CYGPATH_W) '$(srcdir)/$(poly_src)/testehrhart.c'; fi`
@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/testehrhart32-testehrhart.Tpo $(DEPDIR)/testehrhart32-testehrhart.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='$(poly_src)/testehrhart.c' object='testehrhart32-testehrhart.obj' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(testehrhart32_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o testehrhart32-testehrhart.obj `if test -f '$(poly_src)/testehrhart.c'; then $(CYGPATH_W) '$(poly_src)/testehrhart.c'; else $(CYGPATH_W) '$(srcdir)/$(poly_src)/testehrhart.c'; fi`
testehrhart64-testehrhart.o: $(poly_src)/testehrhart.c
@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(testehrhart64_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT testehrhart64-testehrhart.o -MD -MP -MF $(DEPDIR)/testehrhart64-testehrhart.Tpo -c -o testehrhart64-testehrhart.o `test -f '$(poly_src)/testehrhart.c' || echo '$(srcdir)/'`$(poly_src)/testehrhart.c
@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/testehrhart64-testehrhart.Tpo $(DEPDIR)/testehrhart64-testehrhart.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='$(poly_src)/testehrhart.c' object='testehrhart64-testehrhart.o' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(testehrhart64_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o testehrhart64-testehrhart.o `test -f '$(poly_src)/testehrhart.c' || echo '$(srcdir)/'`$(poly_src)/testehrhart.c
testehrhart64-testehrhart.obj: $(poly_src)/testehrhart.c
@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(testehrhart64_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT testehrhart64-testehrhart.obj -MD -MP -MF $(DEPDIR)/testehrhart64-testehrhart.Tpo -c -o testehrhart64-testehrhart.obj `if test -f '$(poly_src)/testehrhart.c'; then $(CYGPATH_W) '$(poly_src)/testehrhart.c'; else $(CYGPATH_W) '$(srcdir)/$(poly_src)/testehrhart.c'; fi`
@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/testehrhart64-testehrhart.Tpo $(DEPDIR)/testehrhart64-testehrhart.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='$(poly_src)/testehrhart.c' object='testehrhart64-testehrhart.obj' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(testehrhart64_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o testehrhart64-testehrhart.obj `if test -f '$(poly_src)/testehrhart.c'; then $(CYGPATH_W) '$(poly_src)/testehrhart.c'; else $(CYGPATH_W) '$(srcdir)/$(poly_src)/testehrhart.c'; fi`
testehrhartgmp-testehrhart.o: $(poly_src)/testehrhart.c
@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(testehrhartgmp_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT testehrhartgmp-testehrhart.o -MD -MP -MF $(DEPDIR)/testehrhartgmp-testehrhart.Tpo -c -o testehrhartgmp-testehrhart.o `test -f '$(poly_src)/testehrhart.c' || echo '$(srcdir)/'`$(poly_src)/testehrhart.c
@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/testehrhartgmp-testehrhart.Tpo $(DEPDIR)/testehrhartgmp-testehrhart.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='$(poly_src)/testehrhart.c' object='testehrhartgmp-testehrhart.o' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(testehrhartgmp_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o testehrhartgmp-testehrhart.o `test -f '$(poly_src)/testehrhart.c' || echo '$(srcdir)/'`$(poly_src)/testehrhart.c
testehrhartgmp-testehrhart.obj: $(poly_src)/testehrhart.c
@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(testehrhartgmp_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT testehrhartgmp-testehrhart.obj -MD -MP -MF $(DEPDIR)/testehrhartgmp-testehrhart.Tpo -c -o testehrhartgmp-testehrhart.obj `if test -f '$(poly_src)/testehrhart.c'; then $(CYGPATH_W) '$(poly_src)/testehrhart.c'; else $(CYGPATH_W) '$(srcdir)/$(poly_src)/testehrhart.c'; fi`
@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/testehrhartgmp-testehrhart.Tpo $(DEPDIR)/testehrhartgmp-testehrhart.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='$(poly_src)/testehrhart.c' object='testehrhartgmp-testehrhart.obj' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(testehrhartgmp_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o testehrhartgmp-testehrhart.obj `if test -f '$(poly_src)/testehrhart.c'; then $(CYGPATH_W) '$(poly_src)/testehrhart.c'; else $(CYGPATH_W) '$(srcdir)/$(poly_src)/testehrhart.c'; fi`
testlib-testlib.o: $(poly_src)/testlib.c
@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(testlib_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT testlib-testlib.o -MD -MP -MF $(DEPDIR)/testlib-testlib.Tpo -c -o testlib-testlib.o `test -f '$(poly_src)/testlib.c' || echo '$(srcdir)/'`$(poly_src)/testlib.c
@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/testlib-testlib.Tpo $(DEPDIR)/testlib-testlib.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='$(poly_src)/testlib.c' object='testlib-testlib.o' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(testlib_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o testlib-testlib.o `test -f '$(poly_src)/testlib.c' || echo '$(srcdir)/'`$(poly_src)/testlib.c
testlib-testlib.obj: $(poly_src)/testlib.c
@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(testlib_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT testlib-testlib.obj -MD -MP -MF $(DEPDIR)/testlib-testlib.Tpo -c -o testlib-testlib.obj `if test -f '$(poly_src)/testlib.c'; then $(CYGPATH_W) '$(poly_src)/testlib.c'; else $(CYGPATH_W) '$(srcdir)/$(poly_src)/testlib.c'; fi`
@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/testlib-testlib.Tpo $(DEPDIR)/testlib-testlib.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='$(poly_src)/testlib.c' object='testlib-testlib.obj' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(testlib_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o testlib-testlib.obj `if test -f '$(poly_src)/testlib.c'; then $(CYGPATH_W) '$(poly_src)/testlib.c'; else $(CYGPATH_W) '$(srcdir)/$(poly_src)/testlib.c'; fi`
verif_ehrhart32-verif_ehrhart.o: $(poly_src)/verif_ehrhart.c
@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(verif_ehrhart32_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT verif_ehrhart32-verif_ehrhart.o -MD -MP -MF $(DEPDIR)/verif_ehrhart32-verif_ehrhart.Tpo -c -o verif_ehrhart32-verif_ehrhart.o `test -f '$(poly_src)/verif_ehrhart.c' || echo '$(srcdir)/'`$(poly_src)/verif_ehrhart.c
@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/verif_ehrhart32-verif_ehrhart.Tpo $(DEPDIR)/verif_ehrhart32-verif_ehrhart.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='$(poly_src)/verif_ehrhart.c' object='verif_ehrhart32-verif_ehrhart.o' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(verif_ehrhart32_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o verif_ehrhart32-verif_ehrhart.o `test -f '$(poly_src)/verif_ehrhart.c' || echo '$(srcdir)/'`$(poly_src)/verif_ehrhart.c
verif_ehrhart32-verif_ehrhart.obj: $(poly_src)/verif_ehrhart.c
@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(verif_ehrhart32_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT verif_ehrhart32-verif_ehrhart.obj -MD -MP -MF $(DEPDIR)/verif_ehrhart32-verif_ehrhart.Tpo -c -o verif_ehrhart32-verif_ehrhart.obj `if test -f '$(poly_src)/verif_ehrhart.c'; then $(CYGPATH_W) '$(poly_src)/verif_ehrhart.c'; else $(CYGPATH_W) '$(srcdir)/$(poly_src)/verif_ehrhart.c'; fi`
@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/verif_ehrhart32-verif_ehrhart.Tpo $(DEPDIR)/verif_ehrhart32-verif_ehrhart.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='$(poly_src)/verif_ehrhart.c' object='verif_ehrhart32-verif_ehrhart.obj' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(verif_ehrhart32_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o verif_ehrhart32-verif_ehrhart.obj `if test -f '$(poly_src)/verif_ehrhart.c'; then $(CYGPATH_W) '$(poly_src)/verif_ehrhart.c'; else $(CYGPATH_W) '$(srcdir)/$(poly_src)/verif_ehrhart.c'; fi`
verif_ehrhart64-verif_ehrhart.o: $(poly_src)/verif_ehrhart.c
@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(verif_ehrhart64_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT verif_ehrhart64-verif_ehrhart.o -MD -MP -MF $(DEPDIR)/verif_ehrhart64-verif_ehrhart.Tpo -c -o verif_ehrhart64-verif_ehrhart.o `test -f '$(poly_src)/verif_ehrhart.c' || echo '$(srcdir)/'`$(poly_src)/verif_ehrhart.c
@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/verif_ehrhart64-verif_ehrhart.Tpo $(DEPDIR)/verif_ehrhart64-verif_ehrhart.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='$(poly_src)/verif_ehrhart.c' object='verif_ehrhart64-verif_ehrhart.o' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(verif_ehrhart64_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o verif_ehrhart64-verif_ehrhart.o `test -f '$(poly_src)/verif_ehrhart.c' || echo '$(srcdir)/'`$(poly_src)/verif_ehrhart.c
verif_ehrhart64-verif_ehrhart.obj: $(poly_src)/verif_ehrhart.c
@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(verif_ehrhart64_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT verif_ehrhart64-verif_ehrhart.obj -MD -MP -MF $(DEPDIR)/verif_ehrhart64-verif_ehrhart.Tpo -c -o verif_ehrhart64-verif_ehrhart.obj `if test -f '$(poly_src)/verif_ehrhart.c'; then $(CYGPATH_W) '$(poly_src)/verif_ehrhart.c'; else $(CYGPATH_W) '$(srcdir)/$(poly_src)/verif_ehrhart.c'; fi`
@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/verif_ehrhart64-verif_ehrhart.Tpo $(DEPDIR)/verif_ehrhart64-verif_ehrhart.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='$(poly_src)/verif_ehrhart.c' object='verif_ehrhart64-verif_ehrhart.obj' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(verif_ehrhart64_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o verif_ehrhart64-verif_ehrhart.obj `if test -f '$(poly_src)/verif_ehrhart.c'; then $(CYGPATH_W) '$(poly_src)/verif_ehrhart.c'; else $(CYGPATH_W) '$(srcdir)/$(poly_src)/verif_ehrhart.c'; fi`
verif_ehrhartgmp-verif_ehrhart.o: $(poly_src)/verif_ehrhart.c
@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(verif_ehrhartgmp_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT verif_ehrhartgmp-verif_ehrhart.o -MD -MP -MF $(DEPDIR)/verif_ehrhartgmp-verif_ehrhart.Tpo -c -o verif_ehrhartgmp-verif_ehrhart.o `test -f '$(poly_src)/verif_ehrhart.c' || echo '$(srcdir)/'`$(poly_src)/verif_ehrhart.c
@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/verif_ehrhartgmp-verif_ehrhart.Tpo $(DEPDIR)/verif_ehrhartgmp-verif_ehrhart.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='$(poly_src)/verif_ehrhart.c' object='verif_ehrhartgmp-verif_ehrhart.o' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(verif_ehrhartgmp_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o verif_ehrhartgmp-verif_ehrhart.o `test -f '$(poly_src)/verif_ehrhart.c' || echo '$(srcdir)/'`$(poly_src)/verif_ehrhart.c
verif_ehrhartgmp-verif_ehrhart.obj: $(poly_src)/verif_ehrhart.c
@am__fastdepCC_TRUE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(verif_ehrhartgmp_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT verif_ehrhartgmp-verif_ehrhart.obj -MD -MP -MF $(DEPDIR)/verif_ehrhartgmp-verif_ehrhart.Tpo -c -o verif_ehrhartgmp-verif_ehrhart.obj `if test -f '$(poly_src)/verif_ehrhart.c'; then $(CYGPATH_W) '$(poly_src)/verif_ehrhart.c'; else $(CYGPATH_W) '$(srcdir)/$(poly_src)/verif_ehrhart.c'; fi`
@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/verif_ehrhartgmp-verif_ehrhart.Tpo $(DEPDIR)/verif_ehrhartgmp-verif_ehrhart.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='$(poly_src)/verif_ehrhart.c' object='verif_ehrhartgmp-verif_ehrhart.obj' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(verif_ehrhartgmp_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o verif_ehrhartgmp-verif_ehrhart.obj `if test -f '$(poly_src)/verif_ehrhart.c'; then $(CYGPATH_W) '$(poly_src)/verif_ehrhart.c'; else $(CYGPATH_W) '$(srcdir)/$(poly_src)/verif_ehrhart.c'; fi`
mostlyclean-libtool:
-rm -f *.lo
clean-libtool:
-rm -rf .libs _libs
distclean-libtool:
-rm -f libtool config.lt
# This directory's subdirectories are mostly independent; you can cd
# into them and run `make' without going through this Makefile.
# To change the values of `make' variables: instead of editing Makefiles,
# (1) if the variable is set in `config.status', edit `config.status'
# (which will cause the Makefiles to be regenerated when you run `make');
# (2) otherwise, pass the desired values on the `make' command line.
$(RECURSIVE_TARGETS):
@fail= failcom='exit 1'; \
for f in x $$MAKEFLAGS; do \
case $$f in \
*=* | --[!k]*);; \
*k*) failcom='fail=yes';; \
esac; \
done; \
dot_seen=no; \
target=`echo $@ | sed s/-recursive//`; \
list='$(SUBDIRS)'; for subdir in $$list; do \
echo "Making $$target in $$subdir"; \
if test "$$subdir" = "."; then \
dot_seen=yes; \
local_target="$$target-am"; \
else \
local_target="$$target"; \
fi; \
($(am__cd) $$subdir && $(MAKE) $(AM_MAKEFLAGS) $$local_target) \
|| eval $$failcom; \
done; \
if test "$$dot_seen" = "no"; then \
$(MAKE) $(AM_MAKEFLAGS) "$$target-am" || exit 1; \
fi; test -z "$$fail"
$(RECURSIVE_CLEAN_TARGETS):
@fail= failcom='exit 1'; \
for f in x $$MAKEFLAGS; do \
case $$f in \
*=* | --[!k]*);; \
*k*) failcom='fail=yes';; \
esac; \
done; \
dot_seen=no; \
case "$@" in \
distclean-* | maintainer-clean-*) list='$(DIST_SUBDIRS)' ;; \
*) list='$(SUBDIRS)' ;; \
esac; \
rev=''; for subdir in $$list; do \
if test "$$subdir" = "."; then :; else \
rev="$$subdir $$rev"; \
fi; \
done; \
rev="$$rev ."; \
target=`echo $@ | sed s/-recursive//`; \
for subdir in $$rev; do \
echo "Making $$target in $$subdir"; \
if test "$$subdir" = "."; then \
local_target="$$target-am"; \
else \
local_target="$$target"; \
fi; \
($(am__cd) $$subdir && $(MAKE) $(AM_MAKEFLAGS) $$local_target) \
|| eval $$failcom; \
done && test -z "$$fail"
tags-recursive:
list='$(SUBDIRS)'; for subdir in $$list; do \
test "$$subdir" = . || ($(am__cd) $$subdir && $(MAKE) $(AM_MAKEFLAGS) tags); \
done
ctags-recursive:
list='$(SUBDIRS)'; for subdir in $$list; do \
test "$$subdir" = . || ($(am__cd) $$subdir && $(MAKE) $(AM_MAKEFLAGS) ctags); \
done
ID: $(HEADERS) $(SOURCES) $(LISP) $(TAGS_FILES)
list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \
unique=`for i in $$list; do \
if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \
done | \
$(AWK) '{ files[$$0] = 1; nonempty = 1; } \
END { if (nonempty) { for (i in files) print i; }; }'`; \
mkid -fID $$unique
tags: TAGS
TAGS: tags-recursive $(HEADERS) $(SOURCES) config.h.in $(TAGS_DEPENDENCIES) \
$(TAGS_FILES) $(LISP)
set x; \
here=`pwd`; \
if ($(ETAGS) --etags-include --version) >/dev/null 2>&1; then \
include_option=--etags-include; \
empty_fix=.; \
else \
include_option=--include; \
empty_fix=; \
fi; \
list='$(SUBDIRS)'; for subdir in $$list; do \
if test "$$subdir" = .; then :; else \
test ! -f $$subdir/TAGS || \
set "$$@" "$$include_option=$$here/$$subdir/TAGS"; \
fi; \
done; \
list='$(SOURCES) $(HEADERS) config.h.in $(LISP) $(TAGS_FILES)'; \
unique=`for i in $$list; do \
if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \
done | \
$(AWK) '{ files[$$0] = 1; nonempty = 1; } \
END { if (nonempty) { for (i in files) print i; }; }'`; \
shift; \
if test -z "$(ETAGS_ARGS)$$*$$unique"; then :; else \
test -n "$$unique" || unique=$$empty_fix; \
if test $$# -gt 0; then \
$(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \
"$$@" $$unique; \
else \
$(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \
$$unique; \
fi; \
fi
ctags: CTAGS
CTAGS: ctags-recursive $(HEADERS) $(SOURCES) config.h.in $(TAGS_DEPENDENCIES) \
$(TAGS_FILES) $(LISP)
list='$(SOURCES) $(HEADERS) config.h.in $(LISP) $(TAGS_FILES)'; \
unique=`for i in $$list; do \
if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \
done | \
$(AWK) '{ files[$$0] = 1; nonempty = 1; } \
END { if (nonempty) { for (i in files) print i; }; }'`; \
test -z "$(CTAGS_ARGS)$$unique" \
|| $(CTAGS) $(CTAGSFLAGS) $(AM_CTAGSFLAGS) $(CTAGS_ARGS) \
$$unique
GTAGS:
here=`$(am__cd) $(top_builddir) && pwd` \
&& $(am__cd) $(top_srcdir) \
&& gtags -i $(GTAGS_ARGS) "$$here"
distclean-tags:
-rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags
distdir: $(DISTFILES)
$(am__remove_distdir)
test -d "$(distdir)" || mkdir "$(distdir)"
@srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \
topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \
list='$(DISTFILES)'; \
dist_files=`for file in $$list; do echo $$file; done | \
sed -e "s|^$$srcdirstrip/||;t" \
-e "s|^$$topsrcdirstrip/|$(top_builddir)/|;t"`; \
case $$dist_files in \
*/*) $(MKDIR_P) `echo "$$dist_files" | \
sed '/\//!d;s|^|$(distdir)/|;s,/[^/]*$$,,' | \
sort -u` ;; \
esac; \
for file in $$dist_files; do \
if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \
if test -d $$d/$$file; then \
dir=`echo "/$$file" | sed -e 's,/[^/]*$$,,'`; \
if test -d "$(distdir)/$$file"; then \
find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \
fi; \
if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \
cp -fpR $(srcdir)/$$file "$(distdir)$$dir" || exit 1; \
find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \
fi; \
cp -fpR $$d/$$file "$(distdir)$$dir" || exit 1; \
else \
test -f "$(distdir)/$$file" \
|| cp -p $$d/$$file "$(distdir)/$$file" \
|| exit 1; \
fi; \
done
@list='$(DIST_SUBDIRS)'; for subdir in $$list; do \
if test "$$subdir" = .; then :; else \
test -d "$(distdir)/$$subdir" \
|| $(MKDIR_P) "$(distdir)/$$subdir" \
|| exit 1; \
fi; \
done
@list='$(DIST_SUBDIRS)'; for subdir in $$list; do \
if test "$$subdir" = .; then :; else \
dir1=$$subdir; dir2="$(distdir)/$$subdir"; \
$(am__relativize); \
new_distdir=$$reldir; \
dir1=$$subdir; dir2="$(top_distdir)"; \
$(am__relativize); \
new_top_distdir=$$reldir; \
echo " (cd $$subdir && $(MAKE) $(AM_MAKEFLAGS) top_distdir="$$new_top_distdir" distdir="$$new_distdir" \\"; \
echo " am__remove_distdir=: am__skip_length_check=: am__skip_mode_fix=: distdir)"; \
($(am__cd) $$subdir && \
$(MAKE) $(AM_MAKEFLAGS) \
top_distdir="$$new_top_distdir" \
distdir="$$new_distdir" \
am__remove_distdir=: \
am__skip_length_check=: \
am__skip_mode_fix=: \
distdir) \
|| exit 1; \
fi; \
done
$(MAKE) $(AM_MAKEFLAGS) \
top_distdir="$(top_distdir)" distdir="$(distdir)" \
dist-hook
-test -n "$(am__skip_mode_fix)" \
|| find "$(distdir)" -type d ! -perm -755 \
-exec chmod u+rwx,go+rx {} \; -o \
! -type d ! -perm -444 -links 1 -exec chmod a+r {} \; -o \
! -type d ! -perm -400 -exec chmod a+r {} \; -o \
! -type d ! -perm -444 -exec $(install_sh) -c -m a+r {} {} \; \
|| chmod -R a+r "$(distdir)"
dist-gzip: distdir
tardir=$(distdir) && $(am__tar) | GZIP=$(GZIP_ENV) gzip -c >$(distdir).tar.gz
$(am__remove_distdir)
dist-bzip2: distdir
tardir=$(distdir) && $(am__tar) | bzip2 -9 -c >$(distdir).tar.bz2
$(am__remove_distdir)
dist-lzma: distdir
tardir=$(distdir) && $(am__tar) | lzma -9 -c >$(distdir).tar.lzma
$(am__remove_distdir)
dist-xz: distdir
tardir=$(distdir) && $(am__tar) | xz -c >$(distdir).tar.xz
$(am__remove_distdir)
dist-tarZ: distdir
tardir=$(distdir) && $(am__tar) | compress -c >$(distdir).tar.Z
$(am__remove_distdir)
dist-shar: distdir
shar $(distdir) | GZIP=$(GZIP_ENV) gzip -c >$(distdir).shar.gz
$(am__remove_distdir)
dist-zip: distdir
-rm -f $(distdir).zip
zip -rq $(distdir).zip $(distdir)
$(am__remove_distdir)
dist dist-all: distdir
tardir=$(distdir) && $(am__tar) | GZIP=$(GZIP_ENV) gzip -c >$(distdir).tar.gz
$(am__remove_distdir)
# This target untars the dist file and tries a VPATH configuration. Then
# it guarantees that the distribution is self-contained by making another
# tarfile.
distcheck: dist
case '$(DIST_ARCHIVES)' in \
*.tar.gz*) \
GZIP=$(GZIP_ENV) gzip -dc $(distdir).tar.gz | $(am__untar) ;;\
*.tar.bz2*) \
bzip2 -dc $(distdir).tar.bz2 | $(am__untar) ;;\
*.tar.lzma*) \
lzma -dc $(distdir).tar.lzma | $(am__untar) ;;\
*.tar.xz*) \
xz -dc $(distdir).tar.xz | $(am__untar) ;;\
*.tar.Z*) \
uncompress -c $(distdir).tar.Z | $(am__untar) ;;\
*.shar.gz*) \
GZIP=$(GZIP_ENV) gzip -dc $(distdir).shar.gz | unshar ;;\
*.zip*) \
unzip $(distdir).zip ;;\
esac
chmod -R a-w $(distdir); chmod a+w $(distdir)
mkdir $(distdir)/_build
mkdir $(distdir)/_inst
chmod a-w $(distdir)
test -d $(distdir)/_build || exit 0; \
dc_install_base=`$(am__cd) $(distdir)/_inst && pwd | sed -e 's,^[^:\\/]:[\\/],/,'` \
&& dc_destdir="$${TMPDIR-/tmp}/am-dc-$$$$/" \
&& am__cwd=`pwd` \
&& $(am__cd) $(distdir)/_build \
&& ../configure --srcdir=.. --prefix="$$dc_install_base" \
$(DISTCHECK_CONFIGURE_FLAGS) \
&& $(MAKE) $(AM_MAKEFLAGS) \
&& $(MAKE) $(AM_MAKEFLAGS) dvi \
&& $(MAKE) $(AM_MAKEFLAGS) check \
&& $(MAKE) $(AM_MAKEFLAGS) install \
&& $(MAKE) $(AM_MAKEFLAGS) installcheck \
&& $(MAKE) $(AM_MAKEFLAGS) uninstall \
&& $(MAKE) $(AM_MAKEFLAGS) distuninstallcheck_dir="$$dc_install_base" \
distuninstallcheck \
&& chmod -R a-w "$$dc_install_base" \
&& ({ \
(cd ../.. && umask 077 && mkdir "$$dc_destdir") \
&& $(MAKE) $(AM_MAKEFLAGS) DESTDIR="$$dc_destdir" install \
&& $(MAKE) $(AM_MAKEFLAGS) DESTDIR="$$dc_destdir" uninstall \
&& $(MAKE) $(AM_MAKEFLAGS) DESTDIR="$$dc_destdir" \
distuninstallcheck_dir="$$dc_destdir" distuninstallcheck; \
} || { rm -rf "$$dc_destdir"; exit 1; }) \
&& rm -rf "$$dc_destdir" \
&& $(MAKE) $(AM_MAKEFLAGS) dist \
&& rm -rf $(DIST_ARCHIVES) \
&& $(MAKE) $(AM_MAKEFLAGS) distcleancheck \
&& cd "$$am__cwd" \
|| exit 1
$(am__remove_distdir)
@(echo "$(distdir) archives ready for distribution: "; \
list='$(DIST_ARCHIVES)'; for i in $$list; do echo $$i; done) | \
sed -e 1h -e 1s/./=/g -e 1p -e 1x -e '$$p' -e '$$x'
distuninstallcheck:
@$(am__cd) '$(distuninstallcheck_dir)' \
&& test `$(distuninstallcheck_listfiles) | wc -l` -le 1 \
|| { echo "ERROR: files left after uninstall:" ; \
if test -n "$(DESTDIR)"; then \
echo " (check DESTDIR support)"; \
fi ; \
$(distuninstallcheck_listfiles) ; \
exit 1; } >&2
distcleancheck: distclean
@if test '$(srcdir)' = . ; then \
echo "ERROR: distcleancheck can only run from a VPATH build" ; \
exit 1 ; \
fi
@test `$(distcleancheck_listfiles) | wc -l` -eq 0 \
|| { echo "ERROR: files left in build directory after distclean:" ; \
$(distcleancheck_listfiles) ; \
exit 1; } >&2
check-am: all-am
check: check-recursive
all-am: Makefile $(LTLIBRARIES) $(PROGRAMS) config.h
install-binPROGRAMS: install-libLTLIBRARIES
installdirs: installdirs-recursive
installdirs-am:
for dir in "$(DESTDIR)$(libdir)" "$(DESTDIR)$(bindir)"; do \
test -z "$$dir" || $(MKDIR_P) "$$dir"; \
done
install: install-recursive
install-exec: install-exec-recursive
install-data: install-data-recursive
uninstall: uninstall-recursive
install-am: all-am
@$(MAKE) $(AM_MAKEFLAGS) install-exec-am install-data-am
installcheck: installcheck-recursive
install-strip:
$(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \
install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \
`test -z '$(STRIP)' || \
echo "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'"` install
mostlyclean-generic:
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)
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-recursive
clean-am: clean-binPROGRAMS clean-generic clean-libLTLIBRARIES \
clean-libtool clean-local clean-noinstPROGRAMS mostlyclean-am
distclean: distclean-recursive
-rm -f $(am__CONFIG_DISTCLEAN_FILES)
-rm -rf $(DEPDIR) ./$(DEPDIR)
-rm -f Makefile
distclean-am: clean-am distclean-compile distclean-generic \
distclean-hdr distclean-libtool distclean-local distclean-tags
dvi: dvi-recursive
dvi-am:
html: html-recursive
html-am:
info: info-recursive
info-am:
install-data-am: install-data-local
install-dvi: install-dvi-recursive
install-dvi-am:
install-exec-am: install-binPROGRAMS install-libLTLIBRARIES
install-html: install-html-recursive
install-html-am:
install-info: install-info-recursive
install-info-am:
install-man:
install-pdf: install-pdf-recursive
install-pdf-am:
install-ps: install-ps-recursive
install-ps-am:
installcheck-am:
maintainer-clean: maintainer-clean-recursive
-rm -f $(am__CONFIG_DISTCLEAN_FILES)
-rm -rf $(top_srcdir)/autom4te.cache
-rm -rf $(DEPDIR) ./$(DEPDIR)
-rm -f Makefile
maintainer-clean-am: distclean-am maintainer-clean-generic
mostlyclean: mostlyclean-recursive
mostlyclean-am: mostlyclean-compile mostlyclean-generic \
mostlyclean-libtool
pdf: pdf-recursive
pdf-am:
ps: ps-recursive
ps-am:
uninstall-am: uninstall-binPROGRAMS uninstall-libLTLIBRARIES \
uninstall-local
.MAKE: $(RECURSIVE_CLEAN_TARGETS) $(RECURSIVE_TARGETS) all \
ctags-recursive install-am install-strip tags-recursive
.PHONY: $(RECURSIVE_CLEAN_TARGETS) $(RECURSIVE_TARGETS) CTAGS GTAGS \
all all-am am--refresh check check-am clean clean-binPROGRAMS \
clean-generic clean-libLTLIBRARIES clean-libtool clean-local \
clean-noinstPROGRAMS ctags ctags-recursive dist dist-all \
dist-bzip2 dist-gzip dist-hook dist-lzma dist-shar dist-tarZ \
dist-xz dist-zip distcheck distclean distclean-compile \
distclean-generic distclean-hdr distclean-libtool \
distclean-local distclean-tags distcleancheck distdir \
distuninstallcheck dvi dvi-am html html-am info info-am \
install install-am install-binPROGRAMS install-data \
install-data-am install-data-local install-dvi install-dvi-am \
install-exec install-exec-am install-html install-html-am \
install-info install-info-am install-libLTLIBRARIES \
install-man install-pdf install-pdf-am install-ps \
install-ps-am install-strip installcheck installcheck-am \
installdirs installdirs-am maintainer-clean \
maintainer-clean-generic mostlyclean mostlyclean-compile \
mostlyclean-generic mostlyclean-libtool pdf pdf-am ps ps-am \
tags tags-recursive uninstall uninstall-am \
uninstall-binPROGRAMS uninstall-libLTLIBRARIES uninstall-local
check: tests
tests: all
(cd Test; $(MAKE) tests)
longtest: all
(cd Test; $(MAKE) long_tests)
# Make the 'javadoc' style documentation
document:
-mkdir doc
$(DOXYGEN) polylib.doxygen
dist-hook: document
rm -rf `find $(distdir)/doc -name CVS`
clean-local:
rm -rf doc
distclean-local:
rm -f polylib*.pc polylib*-uninstalled.pc polylib*-uninstalled.sh polylib*.pc.in
install-data-local:
@test -z "$(pkgconfig_libdir)" || $(mkdir_p) "$(DESTDIR)$(pkgconfig_libdir)"
$(INSTALL_DATA) $(pkgconfig_libfile) "$(DESTDIR)$(pkgconfig_libdir)/$(pkgconfig_libfile)"
uninstall-local:
rm -f "$(DESTDIR)$(pkgconfig_libdir)/$(pkgconfig_libfile)"
# 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:
|