1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 1468 1469 1470 1471 1472 1473 1474 1475 1476 1477 1478 1479 1480 1481 1482 1483 1484 1485 1486 1487 1488 1489 1490 1491 1492 1493 1494 1495 1496 1497 1498 1499 1500 1501 1502 1503 1504 1505 1506 1507 1508 1509 1510 1511 1512 1513 1514 1515 1516 1517 1518 1519 1520 1521 1522 1523 1524 1525 1526 1527 1528 1529 1530 1531 1532 1533 1534 1535 1536 1537 1538 1539 1540 1541 1542 1543 1544 1545 1546 1547 1548 1549 1550 1551 1552 1553 1554 1555 1556 1557 1558 1559 1560 1561 1562 1563 1564 1565 1566 1567 1568 1569 1570 1571 1572 1573 1574 1575 1576 1577 1578 1579 1580 1581 1582 1583 1584 1585 1586 1587 1588 1589 1590 1591 1592 1593 1594 1595 1596 1597 1598 1599 1600 1601 1602 1603 1604 1605 1606 1607 1608 1609 1610 1611 1612 1613 1614 1615 1616 1617 1618 1619 1620 1621 1622 1623 1624 1625 1626 1627 1628 1629 1630 1631 1632 1633 1634 1635 1636 1637 1638 1639 1640 1641 1642 1643 1644 1645 1646 1647 1648 1649 1650 1651 1652 1653 1654 1655 1656 1657 1658 1659 1660 1661 1662 1663 1664 1665 1666 1667 1668 1669 1670 1671 1672 1673 1674 1675 1676 1677 1678 1679 1680 1681 1682 1683 1684 1685 1686 1687 1688 1689 1690 1691 1692 1693 1694 1695 1696 1697 1698 1699 1700 1701 1702 1703 1704 1705 1706 1707 1708 1709 1710 1711 1712 1713 1714 1715 1716 1717 1718 1719 1720 1721 1722 1723 1724 1725 1726 1727 1728 1729 1730 1731 1732 1733 1734 1735 1736 1737 1738 1739 1740 1741 1742 1743 1744 1745 1746 1747 1748 1749 1750 1751 1752 1753 1754 1755 1756 1757 1758 1759 1760 1761 1762 1763 1764 1765 1766 1767 1768 1769 1770 1771 1772 1773 1774 1775 1776 1777 1778 1779 1780 1781 1782 1783 1784 1785 1786 1787 1788 1789 1790 1791 1792 1793 1794 1795 1796 1797 1798 1799 1800 1801 1802 1803 1804 1805 1806 1807 1808 1809 1810 1811 1812 1813 1814 1815 1816 1817 1818 1819 1820 1821 1822 1823 1824 1825 1826 1827 1828 1829 1830 1831 1832 1833 1834 1835 1836 1837 1838 1839 1840 1841 1842 1843 1844 1845 1846 1847 1848 1849 1850 1851 1852 1853 1854 1855 1856 1857 1858 1859 1860 1861 1862 1863 1864 1865 1866 1867 1868 1869 1870 1871 1872 1873 1874 1875 1876 1877 1878 1879 1880 1881 1882 1883 1884 1885 1886 1887 1888 1889 1890 1891 1892 1893 1894 1895 1896 1897 1898 1899 1900 1901 1902 1903 1904 1905 1906 1907 1908 1909 1910 1911 1912 1913 1914 1915 1916 1917 1918 1919 1920 1921 1922 1923 1924 1925 1926 1927 1928 1929 1930 1931 1932 1933 1934 1935 1936 1937 1938 1939 1940 1941 1942 1943 1944 1945 1946 1947 1948 1949 1950 1951 1952 1953 1954 1955 1956 1957 1958 1959 1960 1961 1962 1963 1964 1965 1966 1967 1968 1969 1970 1971 1972 1973 1974 1975 1976 1977 1978 1979 1980 1981 1982 1983 1984 1985 1986 1987 1988 1989 1990 1991 1992 1993 1994 1995 1996 1997 1998 1999 2000 2001 2002 2003 2004 2005 2006 2007 2008 2009 2010 2011 2012 2013 2014 2015 2016 2017 2018 2019 2020 2021 2022 2023 2024 2025 2026 2027 2028 2029 2030 2031 2032 2033 2034 2035 2036 2037 2038 2039 2040 2041 2042 2043 2044 2045 2046 2047 2048 2049 2050 2051 2052 2053 2054 2055 2056 2057 2058 2059 2060 2061 2062 2063 2064 2065 2066 2067 2068 2069 2070 2071 2072 2073 2074 2075 2076 2077 2078 2079 2080 2081 2082 2083 2084 2085 2086 2087 2088 2089 2090 2091 2092 2093 2094 2095 2096 2097 2098 2099 2100 2101 2102 2103 2104 2105 2106 2107 2108 2109 2110 2111 2112 2113 2114 2115 2116 2117 2118 2119 2120 2121 2122 2123 2124 2125 2126 2127 2128 2129 2130 2131 2132 2133 2134 2135 2136 2137 2138 2139 2140 2141 2142 2143 2144 2145 2146 2147 2148 2149 2150 2151 2152 2153 2154 2155 2156 2157 2158 2159 2160 2161 2162 2163 2164 2165 2166 2167 2168 2169 2170 2171 2172 2173 2174 2175 2176 2177 2178 2179 2180 2181 2182 2183 2184 2185 2186 2187 2188 2189 2190 2191 2192 2193 2194 2195 2196 2197 2198 2199 2200 2201 2202 2203 2204 2205 2206 2207 2208 2209 2210 2211 2212 2213 2214 2215 2216 2217 2218 2219 2220 2221 2222 2223 2224 2225 2226 2227 2228 2229 2230 2231 2232 2233 2234 2235 2236 2237 2238 2239 2240 2241 2242 2243 2244 2245 2246 2247 2248 2249 2250 2251 2252 2253 2254 2255 2256 2257 2258 2259 2260 2261 2262 2263 2264 2265 2266 2267 2268 2269 2270 2271 2272 2273 2274 2275 2276 2277 2278 2279 2280 2281 2282 2283 2284 2285 2286 2287 2288 2289 2290 2291 2292 2293 2294 2295 2296 2297 2298 2299 2300 2301 2302 2303 2304 2305 2306 2307 2308 2309 2310 2311 2312 2313 2314 2315 2316 2317 2318 2319 2320 2321 2322 2323 2324 2325 2326 2327 2328 2329 2330 2331 2332 2333 2334 2335 2336 2337 2338 2339 2340 2341 2342 2343 2344 2345 2346 2347 2348 2349 2350 2351 2352 2353 2354 2355 2356 2357 2358 2359 2360 2361 2362 2363 2364 2365 2366 2367 2368 2369 2370 2371 2372 2373 2374 2375 2376 2377 2378 2379 2380 2381 2382 2383 2384 2385 2386 2387 2388 2389 2390 2391 2392 2393 2394 2395 2396 2397 2398 2399 2400 2401 2402 2403 2404 2405 2406 2407 2408 2409 2410 2411 2412 2413 2414 2415 2416 2417 2418 2419 2420 2421 2422 2423 2424 2425 2426 2427 2428 2429 2430 2431 2432 2433 2434 2435 2436 2437 2438 2439 2440 2441 2442 2443 2444 2445 2446 2447 2448 2449 2450 2451 2452 2453 2454 2455 2456 2457 2458 2459 2460 2461 2462 2463 2464 2465 2466 2467 2468 2469 2470 2471 2472 2473 2474 2475 2476 2477 2478 2479 2480 2481 2482 2483 2484 2485 2486 2487 2488 2489 2490 2491 2492 2493 2494 2495 2496 2497 2498 2499 2500 2501 2502 2503 2504 2505 2506 2507 2508 2509 2510 2511 2512 2513 2514 2515 2516 2517 2518 2519 2520 2521 2522 2523 2524 2525 2526 2527 2528 2529 2530 2531 2532 2533 2534 2535 2536 2537 2538 2539 2540 2541 2542 2543 2544 2545 2546 2547 2548 2549 2550 2551 2552 2553 2554 2555 2556 2557 2558 2559 2560 2561 2562 2563 2564 2565 2566 2567 2568 2569 2570 2571 2572 2573 2574 2575 2576 2577 2578 2579 2580 2581 2582 2583 2584 2585 2586 2587 2588 2589 2590 2591 2592 2593 2594 2595 2596 2597 2598 2599 2600 2601 2602 2603 2604 2605 2606 2607 2608 2609 2610 2611 2612 2613 2614 2615 2616 2617 2618 2619 2620 2621 2622 2623 2624 2625 2626 2627 2628 2629 2630 2631 2632 2633 2634 2635 2636 2637 2638 2639 2640 2641 2642 2643 2644 2645 2646 2647 2648 2649 2650 2651 2652 2653 2654 2655 2656 2657 2658 2659 2660 2661 2662 2663 2664 2665 2666 2667 2668 2669 2670 2671 2672 2673 2674 2675 2676 2677 2678 2679 2680 2681 2682 2683 2684 2685 2686 2687 2688 2689 2690 2691 2692 2693 2694 2695 2696 2697 2698 2699 2700 2701 2702 2703 2704 2705 2706 2707 2708 2709 2710 2711 2712 2713 2714 2715 2716 2717 2718 2719 2720 2721 2722 2723 2724 2725 2726 2727 2728 2729 2730 2731 2732 2733 2734 2735 2736 2737 2738 2739 2740 2741 2742 2743 2744 2745 2746 2747 2748 2749 2750 2751 2752 2753 2754 2755 2756 2757 2758 2759 2760 2761 2762 2763 2764 2765 2766 2767 2768 2769 2770 2771 2772 2773 2774 2775 2776 2777 2778 2779 2780 2781 2782 2783 2784 2785 2786 2787 2788 2789 2790 2791 2792 2793 2794 2795 2796 2797 2798 2799 2800 2801 2802 2803 2804 2805 2806 2807 2808 2809 2810 2811 2812 2813 2814 2815 2816 2817 2818 2819 2820 2821 2822 2823 2824 2825 2826 2827 2828 2829 2830 2831 2832 2833 2834 2835 2836 2837 2838 2839 2840 2841 2842 2843 2844 2845 2846 2847 2848 2849 2850 2851 2852 2853 2854 2855 2856 2857 2858 2859 2860 2861 2862 2863 2864 2865 2866 2867 2868 2869 2870 2871 2872 2873 2874 2875 2876 2877 2878 2879 2880 2881 2882 2883 2884 2885 2886 2887 2888 2889 2890 2891 2892 2893 2894 2895 2896 2897 2898 2899 2900 2901 2902 2903 2904 2905 2906 2907 2908 2909 2910 2911 2912 2913 2914 2915 2916 2917 2918 2919 2920 2921 2922 2923 2924 2925 2926 2927 2928 2929 2930 2931 2932 2933 2934 2935 2936 2937 2938 2939 2940 2941 2942 2943 2944 2945 2946 2947 2948 2949 2950 2951 2952 2953 2954 2955 2956 2957 2958 2959 2960 2961 2962 2963 2964 2965 2966 2967 2968 2969 2970 2971 2972 2973 2974 2975 2976 2977 2978 2979 2980 2981 2982 2983 2984 2985 2986 2987 2988 2989 2990 2991 2992 2993 2994 2995 2996 2997 2998 2999 3000 3001 3002 3003 3004 3005 3006 3007 3008 3009 3010 3011 3012 3013 3014 3015 3016 3017 3018 3019 3020 3021 3022 3023 3024 3025 3026 3027 3028 3029 3030 3031 3032 3033 3034 3035 3036 3037 3038 3039 3040 3041 3042 3043 3044 3045 3046 3047 3048 3049 3050 3051 3052 3053 3054 3055 3056 3057 3058 3059 3060 3061 3062 3063 3064 3065 3066 3067 3068 3069 3070 3071 3072 3073 3074 3075 3076 3077 3078 3079 3080 3081 3082 3083 3084 3085 3086 3087 3088 3089 3090 3091 3092 3093 3094 3095 3096 3097 3098 3099 3100 3101 3102 3103 3104 3105 3106 3107 3108 3109 3110 3111 3112 3113 3114 3115 3116 3117 3118 3119 3120 3121 3122 3123 3124 3125 3126 3127 3128 3129 3130 3131 3132 3133 3134 3135 3136 3137 3138 3139 3140 3141 3142 3143 3144 3145 3146 3147 3148 3149 3150 3151 3152 3153 3154 3155 3156 3157 3158 3159 3160 3161 3162 3163 3164 3165 3166 3167 3168 3169 3170 3171 3172 3173 3174 3175 3176 3177 3178 3179 3180 3181 3182 3183 3184 3185 3186 3187 3188 3189 3190 3191 3192 3193 3194 3195 3196 3197 3198 3199 3200 3201 3202 3203 3204 3205 3206 3207 3208 3209 3210 3211 3212 3213 3214 3215 3216 3217 3218 3219 3220 3221 3222 3223 3224 3225 3226 3227 3228 3229 3230 3231 3232 3233 3234 3235 3236 3237 3238 3239 3240 3241 3242 3243 3244 3245 3246 3247 3248 3249 3250 3251 3252 3253 3254 3255 3256 3257 3258 3259 3260 3261 3262 3263 3264 3265 3266 3267 3268 3269 3270 3271
|
# 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@
##########
### Sylvestre Ledru <sylvestre.ledru@inria.fr>
### INRIA - Scilab 2006
##########
# Scilab ( http://www.scilab.org/ ) - This file is part of Scilab
# Copyright (C) 2006-2008 - INRIA - Sylvestre LEDRU <sylvestre.ledru@inria.fr>
# Copyright (C) 2008 - INRIA - Pierre MARECHAL <pierre.marechal@inria.fr>
#
# This file must be used under the terms of the CeCILL.
# This source file is licensed as described in the file COPYING, which
# you should have received as part of this distribution. The terms
# are also available at
# http://www.cecill.info/licences/Licence_CeCILL_V2-en.txt
#
##########
### Makefile included stuff
### Target, variable, suffixes which are supposed to be usefull in every makefile.am
##########
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@
DIST_COMMON = $(srcdir)/Makefile.am $(srcdir)/Makefile.in \
$(top_srcdir)/Makefile.incl.am
@NEED_JAVA_TRUE@am__append_1 = java
subdir = modules/elementary_functions
ACLOCAL_M4 = $(top_srcdir)/aclocal.m4
am__aclocal_m4_deps = $(top_srcdir)/m4/docbook.m4 \
$(top_srcdir)/m4/fftw.m4 $(top_srcdir)/m4/fortran.m4 \
$(top_srcdir)/m4/giws.m4 $(top_srcdir)/m4/hdf5.m4 \
$(top_srcdir)/m4/intel_compiler.m4 \
$(top_srcdir)/m4/java-thirdparty.m4 $(top_srcdir)/m4/java.m4 \
$(top_srcdir)/m4/lib-ld.m4 $(top_srcdir)/m4/libsmath.m4 \
$(top_srcdir)/m4/libtool.m4 $(top_srcdir)/m4/libxml2.m4 \
$(top_srcdir)/m4/ltoptions.m4 $(top_srcdir)/m4/ltsugar.m4 \
$(top_srcdir)/m4/ltversion.m4 $(top_srcdir)/m4/lt~obsolete.m4 \
$(top_srcdir)/m4/ocaml.m4 $(top_srcdir)/m4/pcre.m4 \
$(top_srcdir)/m4/pkg.m4 $(top_srcdir)/m4/pvm.m4 \
$(top_srcdir)/m4/relocatable.m4 $(top_srcdir)/m4/swig.m4 \
$(top_srcdir)/m4/symlinks.m4 $(top_srcdir)/m4/tcltk.m4 \
$(top_srcdir)/m4/umfpack.m4 $(top_srcdir)/configure.ac
am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \
$(ACLOCAL_M4)
mkinstalldirs = $(SHELL) $(top_srcdir)/config/mkinstalldirs
CONFIG_HEADER = $(top_builddir)/modules/core/includes/machine.h
CONFIG_CLEAN_FILES =
CONFIG_CLEAN_VPATH_FILES =
am__vpath_adj_setup = srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`;
am__vpath_adj = case $$p in \
$(srcdir)/*) f=`echo "$$p" | sed "s|^$$srcdirstrip/||"`;; \
*) f=$$p;; \
esac;
am__strip_dir = f=`echo $$p | sed -e 's|^.*/||'`;
am__install_max = 40
am__nobase_strip_setup = \
srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*|]/\\\\&/g'`
am__nobase_strip = \
for p in $$list; do echo "$$p"; done | sed -e "s|$$srcdirstrip/||"
am__nobase_list = $(am__nobase_strip_setup); \
for p in $$list; do echo "$$p $$p"; done | \
sed "s| $$srcdirstrip/| |;"' / .*\//!s/ .*/ ./; s,\( .*\)/[^/]*$$,\1,' | \
$(AWK) 'BEGIN { files["."] = "" } { files[$$2] = files[$$2] " " $$1; \
if (++n[$$2] == $(am__install_max)) \
{ print $$2, files[$$2]; n[$$2] = 0; files[$$2] = "" } } \
END { for (dir in files) print dir, files[dir] }'
am__base_list = \
sed '$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;s/\n/ /g' | \
sed '$$!N;$$!N;$$!N;$$!N;s/\n/ /g'
am__installdirs = "$(DESTDIR)$(pkglibdir)" \
"$(DESTDIR)$(libscielementary_functions_la_etcdir)" \
"$(DESTDIR)$(libscielementary_functions_la_rootdir)" \
"$(DESTDIR)$(libscielementary_functions_la_sci_gatewaydir)"
LTLIBRARIES = $(noinst_LTLIBRARIES) $(pkglib_LTLIBRARIES)
libdummy_elementary_functions_la_LIBADD =
am_libdummy_elementary_functions_la_OBJECTS = \
libdummy_elementary_functions_la-hqror2.lo \
libdummy_elementary_functions_la-comqr3.lo \
libdummy_elementary_functions_la-pade.lo \
libdummy_elementary_functions_la-unsfdcopy.lo \
libdummy_elementary_functions_la-icopy.lo
libdummy_elementary_functions_la_OBJECTS = \
$(am_libdummy_elementary_functions_la_OBJECTS)
libdummy_elementary_functions_la_LINK = $(LIBTOOL) --tag=F77 \
$(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=link $(F77LD) \
$(libdummy_elementary_functions_la_FFLAGS) $(FFLAGS) \
$(AM_LDFLAGS) $(LDFLAGS) -o $@
libscielementary_functions_la_DEPENDENCIES = \
libdummy-elementary_functions.la
am__objects_1 = libscielementary_functions_la-zwrsk.lo \
libscielementary_functions_la-d9b0mp.lo \
libscielementary_functions_la-d9b1mp.lo \
libscielementary_functions_la-d9knus.lo \
libscielementary_functions_la-d9lgmc.lo \
libscielementary_functions_la-dasyik.lo \
libscielementary_functions_la-dasyjy.lo \
libscielementary_functions_la-dbdiff.lo \
libscielementary_functions_la-dbesi0.lo \
libscielementary_functions_la-dbesi1.lo \
libscielementary_functions_la-dbesi.lo \
libscielementary_functions_la-dbesj0.lo \
libscielementary_functions_la-dbesj1.lo \
libscielementary_functions_la-dbesj.lo \
libscielementary_functions_la-dbesk0.lo \
libscielementary_functions_la-dbesk1.lo \
libscielementary_functions_la-dbesk.lo \
libscielementary_functions_la-dbesks.lo \
libscielementary_functions_la-dbesy0.lo \
libscielementary_functions_la-dbesy1.lo \
libscielementary_functions_la-dbesy.lo \
libscielementary_functions_la-dbkias.lo \
libscielementary_functions_la-dbkisr.lo \
libscielementary_functions_la-dbsi0e.lo \
libscielementary_functions_la-dbsi1e.lo \
libscielementary_functions_la-dbsk0e.lo \
libscielementary_functions_la-dbsk1e.lo \
libscielementary_functions_la-dbskes.lo \
libscielementary_functions_la-dbskin.lo \
libscielementary_functions_la-dbsknu.lo \
libscielementary_functions_la-dbsynu.lo \
libscielementary_functions_la-dcsevl.lo \
libscielementary_functions_la-dexint.lo \
libscielementary_functions_la-dgamlm.lo \
libscielementary_functions_la-dgamln.lo \
libscielementary_functions_la-dgamma.lo \
libscielementary_functions_la-dgamrn.lo \
libscielementary_functions_la-dhkseq.lo \
libscielementary_functions_la-djairy.lo \
libscielementary_functions_la-dpsixn.lo \
libscielementary_functions_la-dxlegf.lo \
libscielementary_functions_la-dyairy.lo \
libscielementary_functions_la-fdump.lo \
libscielementary_functions_la-gamma.lo \
libscielementary_functions_la-initds.lo \
libscielementary_functions_la-j4save.lo \
libscielementary_functions_la-xercnt.lo \
libscielementary_functions_la-xermsg.lo \
libscielementary_functions_la-xerprn.lo \
libscielementary_functions_la-xersve.lo \
libscielementary_functions_la-xgetua.lo \
libscielementary_functions_la-zabs.lo \
libscielementary_functions_la-zacai.lo \
libscielementary_functions_la-zacon.lo \
libscielementary_functions_la-zairy.lo \
libscielementary_functions_la-zasyi.lo \
libscielementary_functions_la-zbesh.lo \
libscielementary_functions_la-zbesi.lo \
libscielementary_functions_la-zbesj.lo \
libscielementary_functions_la-zbesk.lo \
libscielementary_functions_la-zbesy.lo \
libscielementary_functions_la-zbinu.lo \
libscielementary_functions_la-zbknu.lo \
libscielementary_functions_la-zbuni.lo \
libscielementary_functions_la-zbunk.lo \
libscielementary_functions_la-zdiv.lo \
libscielementary_functions_la-zexp.lo \
libscielementary_functions_la-zkscl.lo \
libscielementary_functions_la-zlog.lo \
libscielementary_functions_la-zmlri.lo \
libscielementary_functions_la-zmlt.lo \
libscielementary_functions_la-zrati.lo \
libscielementary_functions_la-zs1s2.lo \
libscielementary_functions_la-zseri.lo \
libscielementary_functions_la-zshch.lo \
libscielementary_functions_la-zsqrt.lo \
libscielementary_functions_la-zuchk.lo \
libscielementary_functions_la-zunhj.lo \
libscielementary_functions_la-zuni1.lo \
libscielementary_functions_la-zuni2.lo \
libscielementary_functions_la-zunik.lo \
libscielementary_functions_la-zunk1.lo \
libscielementary_functions_la-zunk2.lo \
libscielementary_functions_la-zuoik.lo \
libscielementary_functions_la-dlngam.lo \
libscielementary_functions_la-balanc.lo \
libscielementary_functions_la-dtensbs.lo \
libscielementary_functions_la-pchim.lo
am__objects_2 = libscielementary_functions_la-dgesl.lo \
libscielementary_functions_la-wpade.lo \
libscielementary_functions_la-util.lo \
libscielementary_functions_la-wcopy.lo \
libscielementary_functions_la-dgefa.lo \
libscielementary_functions_la-dgbfa.lo \
libscielementary_functions_la-dgeco.lo \
libscielementary_functions_la-dgedi.lo \
libscielementary_functions_la-dqrdc.lo \
libscielementary_functions_la-dqrsl.lo \
libscielementary_functions_la-dqrsm.lo \
libscielementary_functions_la-hhdml.lo \
libscielementary_functions_la-spofa.lo \
libscielementary_functions_la-wgeco.lo \
libscielementary_functions_la-wgefa.lo \
libscielementary_functions_la-wgesl.lo \
libscielementary_functions_la-dpofa.lo
am__objects_3 = libscielementary_functions_la-balbak.lo
am__objects_4 = libscielementary_functions_la-sci_tools.lo \
libscielementary_functions_la-finite.lo \
libscielementary_functions_la-vfinite.lo \
libscielementary_functions_la-cmp.lo \
libscielementary_functions_la-vceil.lo \
libscielementary_functions_la-xerhlt.lo \
libscielementary_functions_la-vfloor.lo \
libscielementary_functions_la-vfrexp.lo \
libscielementary_functions_la-scidcopy.lo \
libscielementary_functions_la-int2db.lo \
libscielementary_functions_la-rea2db.lo \
libscielementary_functions_la-idmax.lo \
libscielementary_functions_la-idmin.lo \
libscielementary_functions_la-gsort.lo \
libscielementary_functions_la-qsort.lo \
libscielementary_functions_la-qsort-char.lo \
libscielementary_functions_la-qsort-double.lo \
libscielementary_functions_la-qsort-int.lo \
libscielementary_functions_la-qsort-short.lo \
libscielementary_functions_la-qsort-string.lo \
libscielementary_functions_la-IsEqualVar.lo
am__objects_5 = libscielementary_functions_la-psi.lo \
libscielementary_functions_la-wasum.lo \
libscielementary_functions_la-dexpm1.lo \
libscielementary_functions_la-wwdiv.lo \
libscielementary_functions_la-wdotcr.lo \
libscielementary_functions_la-iset.lo \
libscielementary_functions_la-franck.lo \
libscielementary_functions_la-dwpowe.lo \
libscielementary_functions_la-rcsort.lo \
libscielementary_functions_la-wddiv.lo \
libscielementary_functions_la-lnblnk.lo \
libscielementary_functions_la-entier.lo \
libscielementary_functions_la-round.lo \
libscielementary_functions_la-cortr.lo \
libscielementary_functions_la-simple.lo \
libscielementary_functions_la-split.lo \
libscielementary_functions_la-wdrdiv.lo \
libscielementary_functions_la-imcopy.lo \
libscielementary_functions_la-cbal.lo \
libscielementary_functions_la-cuproi.lo \
libscielementary_functions_la-dsum.lo \
libscielementary_functions_la-urand.lo \
libscielementary_functions_la-intp.lo \
libscielementary_functions_la-watan.lo \
libscielementary_functions_la-wipowe.lo \
libscielementary_functions_la-wacos.lo \
libscielementary_functions_la-wdpow1.lo \
libscielementary_functions_la-zbesjg.lo \
libscielementary_functions_la-dmsum.lo \
libscielementary_functions_la-dlgama.lo \
libscielementary_functions_la-exch.lo \
libscielementary_functions_la-wsign.lo \
libscielementary_functions_la-kronr.lo \
libscielementary_functions_la-wrscal.lo \
libscielementary_functions_la-pythag.lo \
libscielementary_functions_la-dbeskg.lo \
libscielementary_functions_la-dmmul1.lo \
libscielementary_functions_la-dwpow.lo \
libscielementary_functions_la-wmmul.lo \
libscielementary_functions_la-dsearch.lo \
libscielementary_functions_la-ddif.lo \
libscielementary_functions_la-wdiv.lo \
libscielementary_functions_la-wtan.lo \
libscielementary_functions_la-ccopy.lo \
libscielementary_functions_la-ddpow.lo \
libscielementary_functions_la-magic.lo \
libscielementary_functions_la-wcerr.lo \
libscielementary_functions_la-ivimp.lo \
libscielementary_functions_la-cupro.lo \
libscielementary_functions_la-dadd.lo \
libscielementary_functions_la-calerf.lo \
libscielementary_functions_la-isort.lo \
libscielementary_functions_la-hilber.lo \
libscielementary_functions_la-wdpowe.lo \
libscielementary_functions_la-wmprod.lo \
libscielementary_functions_la-wscal.lo \
libscielementary_functions_la-dlblks.lo \
libscielementary_functions_la-kronc.lo \
libscielementary_functions_la-ddrdiv.lo \
libscielementary_functions_la-dipow.lo \
libscielementary_functions_la-wshrsl.lo \
libscielementary_functions_la-wwrdiv.lo \
libscielementary_functions_la-zbeshg.lo \
libscielementary_functions_la-coshin.lo \
libscielementary_functions_la-iwamax.lo \
libscielementary_functions_la-dipowe.lo \
libscielementary_functions_la-getorient.lo \
libscielementary_functions_la-cusum.lo \
libscielementary_functions_la-dbesig.lo \
libscielementary_functions_la-d1mach.lo \
libscielementary_functions_la-wbdiag.lo \
libscielementary_functions_la-ddpow1.lo \
libscielementary_functions_la-vpythag.lo \
libscielementary_functions_la-isova0.lo \
libscielementary_functions_la-wswap.lo \
libscielementary_functions_la-wwpow1.lo \
libscielementary_functions_la-getdimfromvar.lo \
libscielementary_functions_la-gdcp2i.lo \
libscielementary_functions_la-drdiv.lo \
libscielementary_functions_la-wmsum.lo \
libscielementary_functions_la-dbesyg.lo \
libscielementary_functions_la-corth.lo \
libscielementary_functions_la-mtran.lo \
libscielementary_functions_la-wwpow.lo \
libscielementary_functions_la-zbeskg.lo \
libscielementary_functions_la-dvmul.lo \
libscielementary_functions_la-wclmat.lo \
libscielementary_functions_la-dsort.lo \
libscielementary_functions_la-cerr.lo \
libscielementary_functions_la-rcopy.lo \
libscielementary_functions_la-wdpow.lo \
libscielementary_functions_la-orthes.lo \
libscielementary_functions_la-waxpy.lo \
libscielementary_functions_la-coef.lo \
libscielementary_functions_la-dwdiv.lo \
libscielementary_functions_la-arcosh.lo \
libscielementary_functions_la-wasin.lo \
libscielementary_functions_la-wexpm1.lo \
libscielementary_functions_la-ddpowe.lo \
libscielementary_functions_la-nearfloat.lo \
libscielementary_functions_la-dmprod.lo \
libscielementary_functions_la-wwpowe.lo \
libscielementary_functions_la-wdotci.lo \
libscielementary_functions_la-dmcopy.lo \
libscielementary_functions_la-wexchn.lo \
libscielementary_functions_la-isoval.lo \
libscielementary_functions_la-dwrdiv.lo \
libscielementary_functions_la-wipow.lo \
libscielementary_functions_la-wlog.lo \
libscielementary_functions_la-infinity.lo \
libscielementary_functions_la-dwpow1.lo \
libscielementary_functions_la-zbesig.lo \
libscielementary_functions_la-wmul.lo \
libscielementary_functions_la-dad.lo \
libscielementary_functions_la-dbesjg.lo \
libscielementary_functions_la-dset.lo \
libscielementary_functions_la-dtild.lo \
libscielementary_functions_la-i1mach.lo \
libscielementary_functions_la-zbesyg.lo \
libscielementary_functions_la-dclmat.lo \
libscielementary_functions_la-ortran.lo \
libscielementary_functions_la-bdiag.lo \
libscielementary_functions_la-wvmul.lo \
libscielementary_functions_la-dmmul.lo \
libscielementary_functions_la-wsort.lo \
libscielementary_functions_la-wsqrt.lo \
libscielementary_functions_la-rat.lo \
libscielementary_functions_la-ribesl.lo \
libscielementary_functions_la-rjbesl.lo \
libscielementary_functions_la-rkbesl.lo \
libscielementary_functions_la-rybesl.lo \
libscielementary_functions_la-sdot.lo
am__objects_6 = libscielementary_functions_la-sci_isequal.lo \
libscielementary_functions_la-sci_matrix.lo \
libscielementary_functions_la-sci_prod.lo \
libscielementary_functions_la-sci_expm.lo \
libscielementary_functions_la-sci_size.lo \
libscielementary_functions_la-sci_tril.lo \
libscielementary_functions_la-sci_ceil.lo \
libscielementary_functions_la-sci_imag.lo \
libscielementary_functions_la-sci_log.lo \
libscielementary_functions_la-sci_log1p.lo \
libscielementary_functions_la-sci_eye.lo \
libscielementary_functions_la-sci_clean.lo \
libscielementary_functions_la-sci_tan.lo \
libscielementary_functions_la-sci_atan.lo \
libscielementary_functions_la-sci_triu.lo \
libscielementary_functions_la-sci_frexp.lo \
libscielementary_functions_la-sci_cos.lo \
libscielementary_functions_la-sci_rand.lo \
libscielementary_functions_la-sci_acos.lo \
libscielementary_functions_la-sci_sin.lo \
libscielementary_functions_la-sci_sqrt.lo \
libscielementary_functions_la-sci_asin.lo \
libscielementary_functions_la-sci_sign.lo \
libscielementary_functions_la-sci_zeros.lo \
libscielementary_functions_la-sci_ones.lo \
libscielementary_functions_la-gw_elementary_functions.lo \
libscielementary_functions_la-sci_number_properties.lo \
libscielementary_functions_la-sci_diag.lo \
libscielementary_functions_la-sci_sum.lo \
libscielementary_functions_la-sci_testmatrix.lo \
libscielementary_functions_la-sci_abs.lo \
libscielementary_functions_la-sci_spones.lo \
libscielementary_functions_la-sci_kron.lo \
libscielementary_functions_la-sci_cumprod.lo \
libscielementary_functions_la-sci_cumsum.lo \
libscielementary_functions_la-sci_dsearch.lo \
libscielementary_functions_la-sci_nearfloat.lo \
libscielementary_functions_la-sci_chinesehat.lo \
libscielementary_functions_la-sci_isreal.lo \
libscielementary_functions_la-sci_floor.lo \
libscielementary_functions_la-sci_real.lo \
libscielementary_functions_la-sci_round.lo \
libscielementary_functions_la-sci_conj.lo \
libscielementary_functions_la-sci_int.lo \
libscielementary_functions_la-sci_imult.lo \
libscielementary_functions_la-sci_exp.lo \
libscielementary_functions_la-sci_maxi.lo \
libscielementary_functions_la-sci_gsort.lo \
libscielementary_functions_la-sci_sort.lo \
libscielementary_functions_la-sci_isequalbitwise.lo
am__objects_7 = libscielementary_functions_la-sci_f_isequal.lo \
libscielementary_functions_la-sci_f_maxi.lo \
libscielementary_functions_la-sci_f_testmatrix.lo \
libscielementary_functions_la-sci_f_prod.lo \
libscielementary_functions_la-sci_f_matrix.lo \
libscielementary_functions_la-sci_f_expm.lo \
libscielementary_functions_la-sci_f_size.lo \
libscielementary_functions_la-sci_f_tril.lo \
libscielementary_functions_la-sci_f_ceil.lo \
libscielementary_functions_la-sci_f_imag.lo \
libscielementary_functions_la-sci_f_log.lo \
libscielementary_functions_la-sci_f_log1p.lo \
libscielementary_functions_la-sci_f_clean.lo \
libscielementary_functions_la-sci_f_eye.lo \
libscielementary_functions_la-sci_f_tan.lo \
libscielementary_functions_la-sci_f_atan.lo \
libscielementary_functions_la-sci_f_triu.lo \
libscielementary_functions_la-sci_f_frexp.lo \
libscielementary_functions_la-sci_f_cos.lo \
libscielementary_functions_la-sci_f_rand.lo \
libscielementary_functions_la-sci_f_acos.lo \
libscielementary_functions_la-sci_f_sin.lo \
libscielementary_functions_la-sci_f_sqrt.lo \
libscielementary_functions_la-sci_f_asin.lo \
libscielementary_functions_la-sci_f_sign.lo \
libscielementary_functions_la-sci_f_zeros.lo \
libscielementary_functions_la-sci_f_ones.lo \
libscielementary_functions_la-sci_f_diag.lo \
libscielementary_functions_la-sci_f_number_properties.lo \
libscielementary_functions_la-sci_f_sum.lo \
libscielementary_functions_la-sci_f_cumprod.lo \
libscielementary_functions_la-sci_f_abs.lo \
libscielementary_functions_la-sci_f_spones.lo \
libscielementary_functions_la-sci_f_kron.lo \
libscielementary_functions_la-sci_f_dsearch.lo \
libscielementary_functions_la-sci_f_cumsum.lo \
libscielementary_functions_la-sci_f_nearfloat.lo \
libscielementary_functions_la-sci_f_chinesehat.lo \
libscielementary_functions_la-sci_f_isreal.lo \
libscielementary_functions_la-sci_f_floor.lo \
libscielementary_functions_la-sci_f_real.lo \
libscielementary_functions_la-sci_f_round.lo \
libscielementary_functions_la-sci_f_conj.lo \
libscielementary_functions_la-sci_f_int.lo \
libscielementary_functions_la-sci_f_imult.lo \
libscielementary_functions_la-sci_f_exp.lo \
libscielementary_functions_la-sci_f_sort.lo
am__objects_8 =
am_libscielementary_functions_la_OBJECTS = $(am__objects_1) \
$(am__objects_2) $(am__objects_3) $(am__objects_4) \
$(am__objects_5) $(am__objects_6) $(am__objects_7) \
$(am__objects_8)
libscielementary_functions_la_OBJECTS = \
$(am_libscielementary_functions_la_OBJECTS)
libscielementary_functions_la_LINK = $(LIBTOOL) --tag=F77 \
$(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=link $(F77LD) \
$(libscielementary_functions_la_FFLAGS) $(FFLAGS) \
$(libscielementary_functions_la_LDFLAGS) $(LDFLAGS) -o $@
DEFAULT_INCLUDES = -I.@am__isrc@ -I$(top_builddir)/modules/core/includes
depcomp = $(SHELL) $(top_srcdir)/config/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 $@
F77COMPILE = $(F77) $(AM_FFLAGS) $(FFLAGS)
LTF77COMPILE = $(LIBTOOL) --tag=F77 $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) \
--mode=compile $(F77) $(AM_FFLAGS) $(FFLAGS)
F77LD = $(F77)
F77LINK = $(LIBTOOL) --tag=F77 $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) \
--mode=link $(F77LD) $(AM_FFLAGS) $(FFLAGS) $(AM_LDFLAGS) \
$(LDFLAGS) -o $@
SOURCES = $(libdummy_elementary_functions_la_SOURCES) \
$(libscielementary_functions_la_SOURCES)
DIST_SOURCES = $(libdummy_elementary_functions_la_SOURCES) \
$(libscielementary_functions_la_SOURCES)
DATA = $(libscielementary_functions_la_etc_DATA) \
$(libscielementary_functions_la_root_DATA) \
$(libscielementary_functions_la_sci_gateway_DATA)
ETAGS = etags
CTAGS = ctags
DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST)
ACLOCAL = @ACLOCAL@
ALL_LINGUAS = @ALL_LINGUAS@
AMTAR = @AMTAR@
ANT = @ANT@
ANTLR = @ANTLR@
AR = @AR@
AUTOCONF = @AUTOCONF@
AUTOHEADER = @AUTOHEADER@
AUTOMAKE = @AUTOMAKE@
AVALON_FRAMEWORK = @AVALON_FRAMEWORK@
AWK = @AWK@
BATIK = @BATIK@
BLAS_LIBS = @BLAS_LIBS@
CC = @CC@
CCDEPMODE = @CCDEPMODE@
CFLAGS = @CFLAGS@
CHECKSTYLE = @CHECKSTYLE@
COMMONS_BEANUTILS = @COMMONS_BEANUTILS@
COMMONS_IO = @COMMONS_IO@
COMMONS_LOGGING = @COMMONS_LOGGING@
CPP = @CPP@
CPPFLAGS = @CPPFLAGS@
CXX = @CXX@
CXXCPP = @CXXCPP@
CXXDEPMODE = @CXXDEPMODE@
CXXFLAGS = @CXXFLAGS@
CYGPATH_W = @CYGPATH_W@
DEFS = @DEFS@
DEMOTOOLS_ENABLE = @DEMOTOOLS_ENABLE@
DEPDIR = @DEPDIR@
DOCBOOK_ROOT = @DOCBOOK_ROOT@
DSYMUTIL = @DSYMUTIL@
DUMPBIN = @DUMPBIN@
ECHO_C = @ECHO_C@
ECHO_N = @ECHO_N@
ECHO_T = @ECHO_T@
EGREP = @EGREP@
EXEEXT = @EXEEXT@
F77 = @F77@
FFLAGS = @FFLAGS@
FFTW3_LIB = @FFTW3_LIB@
FFTW_ENABLE = @FFTW_ENABLE@
FGREP = @FGREP@
FLEXDOCK = @FLEXDOCK@
FLIBS = @FLIBS@
FOP = @FOP@
GETTEXT_MACRO_VERSION = @GETTEXT_MACRO_VERSION@
GIWS_BIN = @GIWS_BIN@
GLUEGEN_RT = @GLUEGEN_RT@
GMSGFMT = @GMSGFMT@
GMSGFMT_015 = @GMSGFMT_015@
GRAPHICS_ENABLE = @GRAPHICS_ENABLE@
GREP = @GREP@
GUI_ENABLE = @GUI_ENABLE@
HDF5_CFLAGS = @HDF5_CFLAGS@
HDF5_ENABLE = @HDF5_ENABLE@
HDF5_LIBS = @HDF5_LIBS@
HELP_ENABLE = @HELP_ENABLE@
INSTALL = @INSTALL@
INSTALL_DATA = @INSTALL_DATA@
INSTALL_PROGRAM = @INSTALL_PROGRAM@
INSTALL_SCRIPT = @INSTALL_SCRIPT@
INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@
INTLLIBS = @INTLLIBS@
INTL_MACOSX_LIBS = @INTL_MACOSX_LIBS@
JAR = @JAR@
JAVA = @JAVA@
JAVAC = @JAVAC@
JAVAH = @JAVAH@
JAVASCI_ENABLE = @JAVASCI_ENABLE@
JAVA_DEBUG_OPTIONS = @JAVA_DEBUG_OPTIONS@
JAVA_ENABLE = @JAVA_ENABLE@
JAVA_G = @JAVA_G@
JAVA_HOME = @JAVA_HOME@
JAVA_JNI_INCLUDE = @JAVA_JNI_INCLUDE@
JAVA_JNI_LIBS = @JAVA_JNI_LIBS@
JDB = @JDB@
JEUCLID_CORE = @JEUCLID_CORE@
JGRAPHX = @JGRAPHX@
JHALL = @JHALL@
JHDF5 = @JHDF5@
JLATEXMATH = @JLATEXMATH@
JOGL = @JOGL@
JROSETTA_API = @JROSETTA_API@
JROSETTA_ENGINE = @JROSETTA_ENGINE@
LAPACK_LIBS = @LAPACK_LIBS@
LD = @LD@
LDFLAGS = @LDFLAGS@
LIBICONV = @LIBICONV@
LIBINTL = @LIBINTL@
LIBM = @LIBM@
LIBOBJS = @LIBOBJS@
LIBS = @LIBS@
LIBTOOL = @LIBTOOL@
LIPO = @LIPO@
LN_S = @LN_S@
LOOKS = @LOOKS@
LTLIBICONV = @LTLIBICONV@
LTLIBINTL = @LTLIBINTL@
LTLIBOBJS = @LTLIBOBJS@
MAINT = @MAINT@
MAKEINFO = @MAKEINFO@
MATIO_CFLAGS = @MATIO_CFLAGS@
MATIO_ENABLE = @MATIO_ENABLE@
MATIO_LIBS = @MATIO_LIBS@
MKDIR_P = @MKDIR_P@
MSGCAT = @MSGCAT@
MSGFMT = @MSGFMT@
MSGFMT_015 = @MSGFMT_015@
MSGMERGE = @MSGMERGE@
NM = @NM@
NMEDIT = @NMEDIT@
OBJDUMP = @OBJDUMP@
OBJEXT = @OBJEXT@
OCAMLC = @OCAMLC@
OCAMLDEP = @OCAMLDEP@
OCAMLLEX = @OCAMLLEX@
OCAMLOPT = @OCAMLOPT@
OCAMLYACC = @OCAMLYACC@
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@
PCRE_CFLAGS = @PCRE_CFLAGS@
PCRE_CONFIG = @PCRE_CONFIG@
PCRE_LIBS = @PCRE_LIBS@
PCRE_VERSION = @PCRE_VERSION@
PKG_CONFIG = @PKG_CONFIG@
POSUB = @POSUB@
POW_LIB = @POW_LIB@
PVMGETARCH = @PVMGETARCH@
PVM_ARCH = @PVM_ARCH@
PVM_ENABLE = @PVM_ENABLE@
PVM_INCLUDE = @PVM_INCLUDE@
PVM_LIB = @PVM_LIB@
PYTHON = @PYTHON@
RANLIB = @RANLIB@
RELOCATABLE = @RELOCATABLE@
RT_LIB = @RT_LIB@
SAXON = @SAXON@
SCICOS_ENABLE = @SCICOS_ENABLE@
SCILAB_LIBRARY_VERSION = @SCILAB_LIBRARY_VERSION@
SED = @SED@
SET_MAKE = @SET_MAKE@
SET_RELOCATABLE = @SET_RELOCATABLE@
SHELL = @SHELL@
SKINLF = @SKINLF@
SPLINT = @SPLINT@
STRIP = @STRIP@
SWIG_BIN = @SWIG_BIN@
SWIG_JAVA = @SWIG_JAVA@
SWIG_RUNTIME_LIBS_DIR = @SWIG_RUNTIME_LIBS_DIR@
TCLTK_LIBS = @TCLTK_LIBS@
TCL_INC_PATH = @TCL_INC_PATH@
TK_INC_PATH = @TK_INC_PATH@
UMFPACK_ENABLE = @UMFPACK_ENABLE@
UMFPACK_LIB = @UMFPACK_LIB@
USE_NLS = @USE_NLS@
VERSION = @VERSION@
WITH_OCAML = @WITH_OCAML@
WITH_TKSCI = @WITH_TKSCI@
XGETTEXT = @XGETTEXT@
XGETTEXT_015 = @XGETTEXT_015@
XGETTEXT_EXTRA_OPTIONS = @XGETTEXT_EXTRA_OPTIONS@
XMKMF = @XMKMF@
XMLGRAPHICS_COMMONS = @XMLGRAPHICS_COMMONS@
XML_APIS_EXT = @XML_APIS_EXT@
XML_CONFIG = @XML_CONFIG@
XML_FLAGS = @XML_FLAGS@
XML_LIBS = @XML_LIBS@
XML_VERSION = @XML_VERSION@
X_CFLAGS = @X_CFLAGS@
X_EXTRA_LIBS = @X_EXTRA_LIBS@
X_LIBS = @X_LIBS@
X_PRE_LIBS = @X_PRE_LIBS@
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_CXX = @ac_ct_CXX@
ac_ct_DUMPBIN = @ac_ct_DUMPBIN@
ac_ct_F77 = @ac_ct_F77@
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@
cxx_present = @cxx_present@
datadir = @datadir@
datarootdir = @datarootdir@
docdir = @docdir@
dvidir = @dvidir@
exec_prefix = @exec_prefix@
host = @host@
host_alias = @host_alias@
host_cpu = @host_cpu@
host_os = @host_os@
host_vendor = @host_vendor@
htmldir = @htmldir@
includedir = @includedir@
infodir = @infodir@
install_sh = @install_sh@
libdir = @libdir@
libexecdir = @libexecdir@
localedir = @localedir@
localstatedir = @localstatedir@
mandir = @mandir@
mkdir_p = @mkdir_p@
oldincludedir = @oldincludedir@
pdfdir = @pdfdir@
prefix = @prefix@
program_transform_name = @program_transform_name@
psdir = @psdir@
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@
ELEMENTARIES_FUNCTIONS_C_SOURCES = src/c/sci_tools.c \
src/c/finite.c \
src/c/vfinite.c \
src/c/cmp.c \
src/c/vceil.c \
src/c/xerhlt.c \
src/c/vfloor.c \
src/c/vfrexp.c \
src/c/scidcopy.c \
src/c/int2db.c \
src/c/rea2db.c \
src/c/idmax.c \
src/c/idmin.c \
src/c/gsort.c \
src/c/qsort.c \
src/c/qsort-char.c \
src/c/qsort-double.c \
src/c/qsort-int.c \
src/c/qsort-short.c \
src/c/qsort-string.c \
src/c/IsEqualVar.c
# List of the cpp files
ELEMENTARIES_FUNCTIONS_CPP_SOURCES =
SLATEC_SOURCES = src/fortran/slatec/zwrsk.f \
src/fortran/slatec/d9b0mp.f \
src/fortran/slatec/d9b1mp.f \
src/fortran/slatec/d9knus.f \
src/fortran/slatec/d9lgmc.f \
src/fortran/slatec/dasyik.f \
src/fortran/slatec/dasyjy.f \
src/fortran/slatec/dbdiff.f \
src/fortran/slatec/dbesi0.f \
src/fortran/slatec/dbesi1.f \
src/fortran/slatec/dbesi.f \
src/fortran/slatec/dbesj0.f \
src/fortran/slatec/dbesj1.f \
src/fortran/slatec/dbesj.f \
src/fortran/slatec/dbesk0.f \
src/fortran/slatec/dbesk1.f \
src/fortran/slatec/dbesk.f \
src/fortran/slatec/dbesks.f \
src/fortran/slatec/dbesy0.f \
src/fortran/slatec/dbesy1.f \
src/fortran/slatec/dbesy.f \
src/fortran/slatec/dbkias.f \
src/fortran/slatec/dbkisr.f \
src/fortran/slatec/dbsi0e.f \
src/fortran/slatec/dbsi1e.f \
src/fortran/slatec/dbsk0e.f \
src/fortran/slatec/dbsk1e.f \
src/fortran/slatec/dbskes.f \
src/fortran/slatec/dbskin.f \
src/fortran/slatec/dbsknu.f \
src/fortran/slatec/dbsynu.f \
src/fortran/slatec/dcsevl.f \
src/fortran/slatec/dexint.f \
src/fortran/slatec/dgamlm.f \
src/fortran/slatec/dgamln.f \
src/fortran/slatec/dgamma.f \
src/fortran/slatec/dgamrn.f \
src/fortran/slatec/dhkseq.f \
src/fortran/slatec/djairy.f \
src/fortran/slatec/dpsixn.f \
src/fortran/slatec/dxlegf.f \
src/fortran/slatec/dyairy.f \
src/fortran/slatec/fdump.f \
src/fortran/slatec/gamma.f \
src/fortran/slatec/initds.f \
src/fortran/slatec/j4save.f \
src/fortran/slatec/xercnt.f \
src/fortran/slatec/xermsg.f \
src/fortran/slatec/xerprn.f \
src/fortran/slatec/xersve.f \
src/fortran/slatec/xgetua.f \
src/fortran/slatec/zabs.f \
src/fortran/slatec/zacai.f \
src/fortran/slatec/zacon.f \
src/fortran/slatec/zairy.f \
src/fortran/slatec/zasyi.f \
src/fortran/slatec/zbesh.f \
src/fortran/slatec/zbesi.f \
src/fortran/slatec/zbesj.f \
src/fortran/slatec/zbesk.f \
src/fortran/slatec/zbesy.f \
src/fortran/slatec/zbinu.f \
src/fortran/slatec/zbknu.f \
src/fortran/slatec/zbuni.f \
src/fortran/slatec/zbunk.f \
src/fortran/slatec/zdiv.f \
src/fortran/slatec/zexp.f \
src/fortran/slatec/zkscl.f \
src/fortran/slatec/zlog.f \
src/fortran/slatec/zmlri.f \
src/fortran/slatec/zmlt.f \
src/fortran/slatec/zrati.f \
src/fortran/slatec/zs1s2.f \
src/fortran/slatec/zseri.f \
src/fortran/slatec/zshch.f \
src/fortran/slatec/zsqrt.f \
src/fortran/slatec/zuchk.f \
src/fortran/slatec/zunhj.f \
src/fortran/slatec/zuni1.f \
src/fortran/slatec/zuni2.f \
src/fortran/slatec/zunik.f \
src/fortran/slatec/zunk1.f \
src/fortran/slatec/zunk2.f \
src/fortran/slatec/zuoik.f \
src/fortran/slatec/dlngam.f \
src/fortran/slatec/balanc.f \
src/fortran/slatec/dtensbs.f \
src/fortran/slatec/pchim.f
LINPACK_SOURCES = src/fortran/linpack/dgesl.f \
src/fortran/linpack/wpade.f \
src/fortran/linpack/util.f \
src/fortran/linpack/wcopy.f \
src/fortran/linpack/dgefa.f \
src/fortran/linpack/dgbfa.f \
src/fortran/linpack/dgeco.f \
src/fortran/linpack/dgedi.f \
src/fortran/linpack/dqrdc.f \
src/fortran/linpack/dqrsl.f \
src/fortran/linpack/dqrsm.f \
src/fortran/linpack/hhdml.f \
src/fortran/linpack/spofa.f \
src/fortran/linpack/wgeco.f \
src/fortran/linpack/wgefa.f \
src/fortran/linpack/wgesl.f \
src/fortran/linpack/dpofa.f
ELEMENTARIES_FUNCTIONS_FORTRAN_SOURCES = \
src/fortran/psi.f \
src/fortran/wasum.f \
src/fortran/dexpm1.f \
src/fortran/wwdiv.f \
src/fortran/wdotcr.f \
src/fortran/iset.f \
src/fortran/franck.f \
src/fortran/dwpowe.f \
src/fortran/rcsort.f \
src/fortran/wddiv.f \
src/fortran/lnblnk.f \
src/fortran/entier.f \
src/fortran/round.f \
src/fortran/cortr.f \
src/fortran/simple.f \
src/fortran/split.f \
src/fortran/wdrdiv.f \
src/fortran/imcopy.f \
src/fortran/cbal.f \
src/fortran/cuproi.f \
src/fortran/dsum.f \
src/fortran/urand.f \
src/fortran/intp.f \
src/fortran/watan.f \
src/fortran/wipowe.f \
src/fortran/wacos.f \
src/fortran/wdpow1.f \
src/fortran/zbesjg.f \
src/fortran/dmsum.f \
src/fortran/dlgama.f \
src/fortran/exch.f \
src/fortran/wsign.f \
src/fortran/kronr.f \
src/fortran/wrscal.f \
src/fortran/pythag.f \
src/fortran/dbeskg.f \
src/fortran/dmmul1.f \
src/fortran/dwpow.f \
src/fortran/wmmul.f \
src/fortran/dsearch.f \
src/fortran/ddif.f \
src/fortran/wdiv.f \
src/fortran/wtan.f \
src/fortran/ccopy.f \
src/fortran/ddpow.f \
src/fortran/magic.f \
src/fortran/wcerr.f \
src/fortran/ivimp.f \
src/fortran/cupro.f \
src/fortran/dadd.f \
src/fortran/calerf.f \
src/fortran/isort.f \
src/fortran/hilber.f \
src/fortran/wdpowe.f \
src/fortran/wmprod.f \
src/fortran/wscal.f \
src/fortran/dlblks.f \
src/fortran/kronc.f \
src/fortran/ddrdiv.f \
src/fortran/dipow.f \
src/fortran/wshrsl.f \
src/fortran/wwrdiv.f \
src/fortran/zbeshg.f \
src/fortran/coshin.f \
src/fortran/iwamax.f \
src/fortran/dipowe.f \
src/fortran/getorient.f \
src/fortran/cusum.f \
src/fortran/dbesig.f \
src/fortran/d1mach.f \
src/fortran/wbdiag.f \
src/fortran/ddpow1.f \
src/fortran/vpythag.f \
src/fortran/isova0.f \
src/fortran/wswap.f \
src/fortran/wwpow1.f \
src/fortran/getdimfromvar.f \
src/fortran/gdcp2i.f \
src/fortran/drdiv.f \
src/fortran/wmsum.f \
src/fortran/dbesyg.f \
src/fortran/corth.f \
src/fortran/mtran.f \
src/fortran/wwpow.f \
src/fortran/zbeskg.f \
src/fortran/dvmul.f \
src/fortran/wclmat.f \
src/fortran/dsort.f \
src/fortran/cerr.f \
src/fortran/rcopy.f \
src/fortran/wdpow.f \
src/fortran/orthes.f \
src/fortran/waxpy.f \
src/fortran/coef.f \
src/fortran/dwdiv.f \
src/fortran/arcosh.f \
src/fortran/wasin.f \
src/fortran/wexpm1.f \
src/fortran/ddpowe.f \
src/fortran/nearfloat.f \
src/fortran/dmprod.f \
src/fortran/wwpowe.f \
src/fortran/wdotci.f \
src/fortran/dmcopy.f \
src/fortran/wexchn.f \
src/fortran/isoval.f \
src/fortran/dwrdiv.f \
src/fortran/wipow.f \
src/fortran/wlog.f \
src/fortran/infinity.f \
src/fortran/dwpow1.f \
src/fortran/zbesig.f \
src/fortran/wmul.f \
src/fortran/dad.f \
src/fortran/dbesjg.f \
src/fortran/dset.f \
src/fortran/dtild.f \
src/fortran/i1mach.f \
src/fortran/zbesyg.f \
src/fortran/dclmat.f \
src/fortran/ortran.f \
src/fortran/bdiag.f \
src/fortran/wvmul.f \
src/fortran/dmmul.f \
src/fortran/wsort.f \
src/fortran/wsqrt.f \
src/fortran/rat.f \
src/fortran/ribesl.f \
src/fortran/rjbesl.f \
src/fortran/rkbesl.f \
src/fortran/rybesl.f \
src/fortran/sdot.f
GATEWAY_C_SOURCES = sci_gateway/c/sci_isequal.c \
sci_gateway/c/sci_matrix.c \
sci_gateway/c/sci_prod.c \
sci_gateway/c/sci_expm.c \
sci_gateway/c/sci_size.c \
sci_gateway/c/sci_tril.c \
sci_gateway/c/sci_ceil.c \
sci_gateway/c/sci_imag.c \
sci_gateway/c/sci_log.c \
sci_gateway/c/sci_log1p.c \
sci_gateway/c/sci_eye.c \
sci_gateway/c/sci_clean.c \
sci_gateway/c/sci_tan.c \
sci_gateway/c/sci_atan.c \
sci_gateway/c/sci_triu.c \
sci_gateway/c/sci_frexp.c \
sci_gateway/c/sci_cos.c \
sci_gateway/c/sci_rand.c \
sci_gateway/c/sci_acos.c \
sci_gateway/c/sci_sin.c \
sci_gateway/c/sci_sqrt.c \
sci_gateway/c/sci_asin.c \
sci_gateway/c/sci_sign.c \
sci_gateway/c/sci_zeros.c \
sci_gateway/c/sci_ones.c \
sci_gateway/c/gw_elementary_functions.c \
sci_gateway/c/sci_number_properties.c \
sci_gateway/c/sci_diag.c \
sci_gateway/c/sci_sum.c \
sci_gateway/c/sci_testmatrix.c \
sci_gateway/c/sci_abs.c \
sci_gateway/c/sci_spones.c \
sci_gateway/c/sci_kron.c \
sci_gateway/c/sci_cumprod.c \
sci_gateway/c/sci_cumsum.c \
sci_gateway/c/sci_dsearch.c \
sci_gateway/c/sci_nearfloat.c \
sci_gateway/c/sci_chinesehat.c \
sci_gateway/c/sci_isreal.c \
sci_gateway/c/sci_floor.c \
sci_gateway/c/sci_real.c \
sci_gateway/c/sci_round.c \
sci_gateway/c/sci_conj.c \
sci_gateway/c/sci_int.c \
sci_gateway/c/sci_imult.c \
sci_gateway/c/sci_exp.c \
sci_gateway/c/sci_maxi.c \
sci_gateway/c/sci_gsort.c \
sci_gateway/c/sci_sort.c \
sci_gateway/c/sci_isequalbitwise.c
GATEWAY_FORTRAN_SOURCES = sci_gateway/fortran/sci_f_isequal.f \
sci_gateway/fortran/sci_f_maxi.f \
sci_gateway/fortran/sci_f_testmatrix.f \
sci_gateway/fortran/sci_f_prod.f \
sci_gateway/fortran/sci_f_matrix.f \
sci_gateway/fortran/sci_f_expm.f \
sci_gateway/fortran/sci_f_size.f \
sci_gateway/fortran/sci_f_tril.f \
sci_gateway/fortran/sci_f_ceil.f \
sci_gateway/fortran/sci_f_imag.f \
sci_gateway/fortran/sci_f_log.f \
sci_gateway/fortran/sci_f_log1p.f \
sci_gateway/fortran/sci_f_clean.f \
sci_gateway/fortran/sci_f_eye.f \
sci_gateway/fortran/sci_f_tan.f \
sci_gateway/fortran/sci_f_atan.f \
sci_gateway/fortran/sci_f_triu.f \
sci_gateway/fortran/sci_f_frexp.f \
sci_gateway/fortran/sci_f_cos.f \
sci_gateway/fortran/sci_f_rand.f \
sci_gateway/fortran/sci_f_acos.f \
sci_gateway/fortran/sci_f_sin.f \
sci_gateway/fortran/sci_f_sqrt.f \
sci_gateway/fortran/sci_f_asin.f \
sci_gateway/fortran/sci_f_sign.f \
sci_gateway/fortran/sci_f_zeros.f \
sci_gateway/fortran/sci_f_ones.f \
sci_gateway/fortran/sci_f_diag.f \
sci_gateway/fortran/sci_f_number_properties.f \
sci_gateway/fortran/sci_f_sum.f \
sci_gateway/fortran/sci_f_cumprod.f \
sci_gateway/fortran/sci_f_abs.f \
sci_gateway/fortran/sci_f_spones.f \
sci_gateway/fortran/sci_f_kron.f \
sci_gateway/fortran/sci_f_dsearch.f \
sci_gateway/fortran/sci_f_cumsum.f \
sci_gateway/fortran/sci_f_nearfloat.f \
sci_gateway/fortran/sci_f_chinesehat.f \
sci_gateway/fortran/sci_f_isreal.f \
sci_gateway/fortran/sci_f_floor.f \
sci_gateway/fortran/sci_f_real.f \
sci_gateway/fortran/sci_f_round.f \
sci_gateway/fortran/sci_f_conj.f \
sci_gateway/fortran/sci_f_int.f \
sci_gateway/fortran/sci_f_imult.f \
sci_gateway/fortran/sci_f_exp.f \
sci_gateway/fortran/sci_f_sort.f
EISPACK_SOURCES = src/fortran/eispack/balbak.f
# Disable optimisation of the file hqror2.f comqr3.f pade.f
noinst_LTLIBRARIES = libdummy-elementary_functions.la
libdummy_elementary_functions_la_SOURCES = src/fortran/eispack/hqror2.f \
src/fortran/comqr3.f \
src/fortran/linpack/pade.f \
src/c/unsfdcopy.c \
src/fortran/linpack/icopy.f
libdummy_elementary_functions_la_FFLAGS = $(FFLAGS:-O%=)
libdummy_elementary_functions_la_CFLAGS = $(CFLAGS:-O%=) \
-I$(top_srcdir)/modules/core/includes/ \
-I$(srcdir)/includes/
# Includes need for the compilation
libscielementary_functions_la_FFLAGS = -I$(srcdir)/includes/
# Includes need for the compilation
libscielementary_functions_la_CPPFLAGS = -I$(srcdir)/includes/ \
-I$(srcdir)/src/cpp/ \
-I$(srcdir)/src/c/ \
-I$(top_srcdir)/libs/MALLOC/includes/ \
-I$(top_srcdir)/modules/api_scilab/includes \
-I$(top_srcdir)/modules/output_stream/includes
# Includes need for the compilation
libscielementary_functions_la_CFLAGS = -I$(srcdir)/includes/ \
-I$(top_srcdir)/libs/MALLOC/includes/ \
-I$(srcdir)/src/c/ \
-I$(top_srcdir)/modules/api_scilab/includes \
-I$(top_srcdir)/modules/output_stream/includes
pkglib_LTLIBRARIES = libscielementary_functions.la
libscielementary_functions_la_LDFLAGS = -version-info $(SCILAB_LIBRARY_VERSION)
libscielementary_functions_la_SOURCES = $(SLATEC_SOURCES) $(LINPACK_SOURCES) $(EISPACK_SOURCES) $(ELEMENTARIES_FUNCTIONS_C_SOURCES) $(ELEMENTARIES_FUNCTIONS_FORTRAN_SOURCES) $(GATEWAY_C_SOURCES) $(GATEWAY_FORTRAN_SOURCES) $(ELEMENTARIES_FUNCTIONS_CPP_SOURCES)
# For the code check (splint)
CHECK_SRC = $(ELEMENTARIES_FUNCTIONS_C_SOURCES) $(GATEWAY_C_SOURCES)
INCLUDE_FLAGS = $(libscielementary_functions_la_CFLAGS)
libscielementary_functions_la_LIBADD = libdummy-elementary_functions.la
#### Target ######
modulename = elementary_functions
#### elementary_functions : Conf files ####
libscielementary_functions_la_rootdir = $(mydatadir)
libscielementary_functions_la_root_DATA = changelog.txt license.txt readme.txt version.xml
#### elementary_functions : init scripts ####
libscielementary_functions_la_etcdir = $(mydatadir)/etc
libscielementary_functions_la_etc_DATA = etc/elementary_functions.quit etc/elementary_functions.start
#### elementary_functions : gateway declaration ####
libscielementary_functions_la_sci_gatewaydir = $(mydatadir)/sci_gateway
libscielementary_functions_la_sci_gateway_DATA = sci_gateway/elementary_functions_gateway.xml
# Where all the Scilab stuff is installed (macros, help, ...)
mydatadir = $(pkgdatadir)/modules/$(modulename)
# splint options
SPLINT_OPTIONS = -weak -booltype BOOL
########################### JAVA ######################################
#### We are delegating java compilation to ant... Thanks to that
#### the procedure will be the same with Microsoft Windows (C)
#### and Linux/Unix
#######################################################################
TARGETS_ALL = $(am__append_1)
################ MACROS ######################
# Rule to build a macro
# NOT USED AT THE MOMENT
SUFFIXES = .sci
########### INSTALL DOCUMENTATION ###################
# Install documentation files into the right target
# We do not use the automake mechanism (libxxxx_la_help_fr_DATA) because
# automake needs the html files to be present which is not the case when
# we are building Scilab
# Where it should be installed
pkgdocdir = $(mydatadir)
# What is the mask of the help source
DOCMASKXML = *.xml
# What is the mask of the MathML sources
DOCMASKMML = *.mml
########### INSTALL DATA ###################
# Install macros, help & demos
# Where it should be installed
pkgmacrosdir = $(mydatadir)
# Which directory we process
MACRODIRS = macros/
# Mask of the Scilab sources macros
MACROMASK = *.sci
# Mask of the Scilab executable sources macros
MACROBUILDMASK = *.sce
# Mask of the Scilab compiled macros
MACROBINMASK = *.bin
# List of the standard directory for tests
TESTS_DIR = tests/benchmarks tests/nonreg_tests tests/unit_tests
# Where the demos should be installed
pkgdemosdir = $(mydatadir)
# List of the standard directory for demos
DEMOS_DIR = demos
# List of the standard directory for examples
EXAMPLES_DIR = examples
# Where to export JAVA archives (.jar)
JARDIR = jar/
# JAR files mask
JARMASK = *.jar
# Chapter file
HELP_CHAPTERDIR = help/
HELP_CHAPTERFILE = addchapter.sce
HELP_CHAPTERLANG = en_US fr_FR pt_BR
all: all-am
.SUFFIXES:
.SUFFIXES: .sci .bin .c .f .lo .o .obj
$(srcdir)/Makefile.in: @MAINTAINER_MODE_TRUE@ $(srcdir)/Makefile.am $(top_srcdir)/Makefile.incl.am $(am__configure_deps)
@for dep in $?; do \
case '$(am__configure_deps)' in \
*$$dep*) \
( cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh ) \
&& { if test -f $@; then exit 0; else break; fi; }; \
exit 1;; \
esac; \
done; \
echo ' cd $(top_srcdir) && $(AUTOMAKE) --foreign modules/elementary_functions/Makefile'; \
$(am__cd) $(top_srcdir) && \
$(AUTOMAKE) --foreign modules/elementary_functions/Makefile
.PRECIOUS: Makefile
Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status
@case '$?' in \
*config.status*) \
cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \
*) \
echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \
cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \
esac;
$(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES)
cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh
$(top_srcdir)/configure: @MAINTAINER_MODE_TRUE@ $(am__configure_deps)
cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh
$(ACLOCAL_M4): @MAINTAINER_MODE_TRUE@ $(am__aclocal_m4_deps)
cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh
$(am__aclocal_m4_deps):
clean-noinstLTLIBRARIES:
-test -z "$(noinst_LTLIBRARIES)" || rm -f $(noinst_LTLIBRARIES)
@list='$(noinst_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
install-pkglibLTLIBRARIES: $(pkglib_LTLIBRARIES)
@$(NORMAL_INSTALL)
test -z "$(pkglibdir)" || $(MKDIR_P) "$(DESTDIR)$(pkglibdir)"
@list='$(pkglib_LTLIBRARIES)'; test -n "$(pkglibdir)" || 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)$(pkglibdir)'"; \
$(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=install $(INSTALL) $(INSTALL_STRIP_FLAG) $$list2 "$(DESTDIR)$(pkglibdir)"; \
}
uninstall-pkglibLTLIBRARIES:
@$(NORMAL_UNINSTALL)
@list='$(pkglib_LTLIBRARIES)'; test -n "$(pkglibdir)" || list=; \
for p in $$list; do \
$(am__strip_dir) \
echo " $(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=uninstall rm -f '$(DESTDIR)$(pkglibdir)/$$f'"; \
$(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=uninstall rm -f "$(DESTDIR)$(pkglibdir)/$$f"; \
done
clean-pkglibLTLIBRARIES:
-test -z "$(pkglib_LTLIBRARIES)" || rm -f $(pkglib_LTLIBRARIES)
@list='$(pkglib_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
libdummy-elementary_functions.la: $(libdummy_elementary_functions_la_OBJECTS) $(libdummy_elementary_functions_la_DEPENDENCIES)
$(libdummy_elementary_functions_la_LINK) $(libdummy_elementary_functions_la_OBJECTS) $(libdummy_elementary_functions_la_LIBADD) $(LIBS)
libscielementary_functions.la: $(libscielementary_functions_la_OBJECTS) $(libscielementary_functions_la_DEPENDENCIES)
$(libscielementary_functions_la_LINK) -rpath $(pkglibdir) $(libscielementary_functions_la_OBJECTS) $(libscielementary_functions_la_LIBADD) $(LIBS)
mostlyclean-compile:
-rm -f *.$(OBJEXT)
distclean-compile:
-rm -f *.tab.c
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libdummy_elementary_functions_la-unsfdcopy.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libscielementary_functions_la-IsEqualVar.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libscielementary_functions_la-cmp.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libscielementary_functions_la-finite.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libscielementary_functions_la-gsort.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libscielementary_functions_la-gw_elementary_functions.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libscielementary_functions_la-idmax.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libscielementary_functions_la-idmin.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libscielementary_functions_la-int2db.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libscielementary_functions_la-qsort-char.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libscielementary_functions_la-qsort-double.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libscielementary_functions_la-qsort-int.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libscielementary_functions_la-qsort-short.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libscielementary_functions_la-qsort-string.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libscielementary_functions_la-qsort.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libscielementary_functions_la-rea2db.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libscielementary_functions_la-sci_abs.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libscielementary_functions_la-sci_acos.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libscielementary_functions_la-sci_asin.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libscielementary_functions_la-sci_atan.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libscielementary_functions_la-sci_ceil.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libscielementary_functions_la-sci_chinesehat.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libscielementary_functions_la-sci_clean.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libscielementary_functions_la-sci_conj.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libscielementary_functions_la-sci_cos.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libscielementary_functions_la-sci_cumprod.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libscielementary_functions_la-sci_cumsum.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libscielementary_functions_la-sci_diag.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libscielementary_functions_la-sci_dsearch.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libscielementary_functions_la-sci_exp.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libscielementary_functions_la-sci_expm.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libscielementary_functions_la-sci_eye.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libscielementary_functions_la-sci_floor.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libscielementary_functions_la-sci_frexp.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libscielementary_functions_la-sci_gsort.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libscielementary_functions_la-sci_imag.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libscielementary_functions_la-sci_imult.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libscielementary_functions_la-sci_int.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libscielementary_functions_la-sci_isequal.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libscielementary_functions_la-sci_isequalbitwise.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libscielementary_functions_la-sci_isreal.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libscielementary_functions_la-sci_kron.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libscielementary_functions_la-sci_log.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libscielementary_functions_la-sci_log1p.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libscielementary_functions_la-sci_matrix.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libscielementary_functions_la-sci_maxi.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libscielementary_functions_la-sci_nearfloat.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libscielementary_functions_la-sci_number_properties.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libscielementary_functions_la-sci_ones.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libscielementary_functions_la-sci_prod.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libscielementary_functions_la-sci_rand.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libscielementary_functions_la-sci_real.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libscielementary_functions_la-sci_round.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libscielementary_functions_la-sci_sign.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libscielementary_functions_la-sci_sin.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libscielementary_functions_la-sci_size.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libscielementary_functions_la-sci_sort.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libscielementary_functions_la-sci_spones.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libscielementary_functions_la-sci_sqrt.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libscielementary_functions_la-sci_sum.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libscielementary_functions_la-sci_tan.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libscielementary_functions_la-sci_testmatrix.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libscielementary_functions_la-sci_tools.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libscielementary_functions_la-sci_tril.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libscielementary_functions_la-sci_triu.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libscielementary_functions_la-sci_zeros.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libscielementary_functions_la-scidcopy.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libscielementary_functions_la-vceil.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libscielementary_functions_la-vfinite.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libscielementary_functions_la-vfloor.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libscielementary_functions_la-vfrexp.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libscielementary_functions_la-xerhlt.Plo@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 $@ $<
libscielementary_functions_la-sci_tools.lo: src/c/sci_tools.c
@am__fastdepCC_TRUE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libscielementary_functions_la_CPPFLAGS) $(CPPFLAGS) $(libscielementary_functions_la_CFLAGS) $(CFLAGS) -MT libscielementary_functions_la-sci_tools.lo -MD -MP -MF $(DEPDIR)/libscielementary_functions_la-sci_tools.Tpo -c -o libscielementary_functions_la-sci_tools.lo `test -f 'src/c/sci_tools.c' || echo '$(srcdir)/'`src/c/sci_tools.c
@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/libscielementary_functions_la-sci_tools.Tpo $(DEPDIR)/libscielementary_functions_la-sci_tools.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/c/sci_tools.c' object='libscielementary_functions_la-sci_tools.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) $(libscielementary_functions_la_CPPFLAGS) $(CPPFLAGS) $(libscielementary_functions_la_CFLAGS) $(CFLAGS) -c -o libscielementary_functions_la-sci_tools.lo `test -f 'src/c/sci_tools.c' || echo '$(srcdir)/'`src/c/sci_tools.c
libscielementary_functions_la-finite.lo: src/c/finite.c
@am__fastdepCC_TRUE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libscielementary_functions_la_CPPFLAGS) $(CPPFLAGS) $(libscielementary_functions_la_CFLAGS) $(CFLAGS) -MT libscielementary_functions_la-finite.lo -MD -MP -MF $(DEPDIR)/libscielementary_functions_la-finite.Tpo -c -o libscielementary_functions_la-finite.lo `test -f 'src/c/finite.c' || echo '$(srcdir)/'`src/c/finite.c
@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/libscielementary_functions_la-finite.Tpo $(DEPDIR)/libscielementary_functions_la-finite.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/c/finite.c' object='libscielementary_functions_la-finite.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) $(libscielementary_functions_la_CPPFLAGS) $(CPPFLAGS) $(libscielementary_functions_la_CFLAGS) $(CFLAGS) -c -o libscielementary_functions_la-finite.lo `test -f 'src/c/finite.c' || echo '$(srcdir)/'`src/c/finite.c
libscielementary_functions_la-vfinite.lo: src/c/vfinite.c
@am__fastdepCC_TRUE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libscielementary_functions_la_CPPFLAGS) $(CPPFLAGS) $(libscielementary_functions_la_CFLAGS) $(CFLAGS) -MT libscielementary_functions_la-vfinite.lo -MD -MP -MF $(DEPDIR)/libscielementary_functions_la-vfinite.Tpo -c -o libscielementary_functions_la-vfinite.lo `test -f 'src/c/vfinite.c' || echo '$(srcdir)/'`src/c/vfinite.c
@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/libscielementary_functions_la-vfinite.Tpo $(DEPDIR)/libscielementary_functions_la-vfinite.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/c/vfinite.c' object='libscielementary_functions_la-vfinite.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) $(libscielementary_functions_la_CPPFLAGS) $(CPPFLAGS) $(libscielementary_functions_la_CFLAGS) $(CFLAGS) -c -o libscielementary_functions_la-vfinite.lo `test -f 'src/c/vfinite.c' || echo '$(srcdir)/'`src/c/vfinite.c
libscielementary_functions_la-cmp.lo: src/c/cmp.c
@am__fastdepCC_TRUE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libscielementary_functions_la_CPPFLAGS) $(CPPFLAGS) $(libscielementary_functions_la_CFLAGS) $(CFLAGS) -MT libscielementary_functions_la-cmp.lo -MD -MP -MF $(DEPDIR)/libscielementary_functions_la-cmp.Tpo -c -o libscielementary_functions_la-cmp.lo `test -f 'src/c/cmp.c' || echo '$(srcdir)/'`src/c/cmp.c
@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/libscielementary_functions_la-cmp.Tpo $(DEPDIR)/libscielementary_functions_la-cmp.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/c/cmp.c' object='libscielementary_functions_la-cmp.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) $(libscielementary_functions_la_CPPFLAGS) $(CPPFLAGS) $(libscielementary_functions_la_CFLAGS) $(CFLAGS) -c -o libscielementary_functions_la-cmp.lo `test -f 'src/c/cmp.c' || echo '$(srcdir)/'`src/c/cmp.c
libscielementary_functions_la-vceil.lo: src/c/vceil.c
@am__fastdepCC_TRUE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libscielementary_functions_la_CPPFLAGS) $(CPPFLAGS) $(libscielementary_functions_la_CFLAGS) $(CFLAGS) -MT libscielementary_functions_la-vceil.lo -MD -MP -MF $(DEPDIR)/libscielementary_functions_la-vceil.Tpo -c -o libscielementary_functions_la-vceil.lo `test -f 'src/c/vceil.c' || echo '$(srcdir)/'`src/c/vceil.c
@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/libscielementary_functions_la-vceil.Tpo $(DEPDIR)/libscielementary_functions_la-vceil.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/c/vceil.c' object='libscielementary_functions_la-vceil.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) $(libscielementary_functions_la_CPPFLAGS) $(CPPFLAGS) $(libscielementary_functions_la_CFLAGS) $(CFLAGS) -c -o libscielementary_functions_la-vceil.lo `test -f 'src/c/vceil.c' || echo '$(srcdir)/'`src/c/vceil.c
libscielementary_functions_la-xerhlt.lo: src/c/xerhlt.c
@am__fastdepCC_TRUE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libscielementary_functions_la_CPPFLAGS) $(CPPFLAGS) $(libscielementary_functions_la_CFLAGS) $(CFLAGS) -MT libscielementary_functions_la-xerhlt.lo -MD -MP -MF $(DEPDIR)/libscielementary_functions_la-xerhlt.Tpo -c -o libscielementary_functions_la-xerhlt.lo `test -f 'src/c/xerhlt.c' || echo '$(srcdir)/'`src/c/xerhlt.c
@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/libscielementary_functions_la-xerhlt.Tpo $(DEPDIR)/libscielementary_functions_la-xerhlt.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/c/xerhlt.c' object='libscielementary_functions_la-xerhlt.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) $(libscielementary_functions_la_CPPFLAGS) $(CPPFLAGS) $(libscielementary_functions_la_CFLAGS) $(CFLAGS) -c -o libscielementary_functions_la-xerhlt.lo `test -f 'src/c/xerhlt.c' || echo '$(srcdir)/'`src/c/xerhlt.c
libscielementary_functions_la-vfloor.lo: src/c/vfloor.c
@am__fastdepCC_TRUE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libscielementary_functions_la_CPPFLAGS) $(CPPFLAGS) $(libscielementary_functions_la_CFLAGS) $(CFLAGS) -MT libscielementary_functions_la-vfloor.lo -MD -MP -MF $(DEPDIR)/libscielementary_functions_la-vfloor.Tpo -c -o libscielementary_functions_la-vfloor.lo `test -f 'src/c/vfloor.c' || echo '$(srcdir)/'`src/c/vfloor.c
@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/libscielementary_functions_la-vfloor.Tpo $(DEPDIR)/libscielementary_functions_la-vfloor.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/c/vfloor.c' object='libscielementary_functions_la-vfloor.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) $(libscielementary_functions_la_CPPFLAGS) $(CPPFLAGS) $(libscielementary_functions_la_CFLAGS) $(CFLAGS) -c -o libscielementary_functions_la-vfloor.lo `test -f 'src/c/vfloor.c' || echo '$(srcdir)/'`src/c/vfloor.c
libscielementary_functions_la-vfrexp.lo: src/c/vfrexp.c
@am__fastdepCC_TRUE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libscielementary_functions_la_CPPFLAGS) $(CPPFLAGS) $(libscielementary_functions_la_CFLAGS) $(CFLAGS) -MT libscielementary_functions_la-vfrexp.lo -MD -MP -MF $(DEPDIR)/libscielementary_functions_la-vfrexp.Tpo -c -o libscielementary_functions_la-vfrexp.lo `test -f 'src/c/vfrexp.c' || echo '$(srcdir)/'`src/c/vfrexp.c
@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/libscielementary_functions_la-vfrexp.Tpo $(DEPDIR)/libscielementary_functions_la-vfrexp.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/c/vfrexp.c' object='libscielementary_functions_la-vfrexp.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) $(libscielementary_functions_la_CPPFLAGS) $(CPPFLAGS) $(libscielementary_functions_la_CFLAGS) $(CFLAGS) -c -o libscielementary_functions_la-vfrexp.lo `test -f 'src/c/vfrexp.c' || echo '$(srcdir)/'`src/c/vfrexp.c
libscielementary_functions_la-scidcopy.lo: src/c/scidcopy.c
@am__fastdepCC_TRUE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libscielementary_functions_la_CPPFLAGS) $(CPPFLAGS) $(libscielementary_functions_la_CFLAGS) $(CFLAGS) -MT libscielementary_functions_la-scidcopy.lo -MD -MP -MF $(DEPDIR)/libscielementary_functions_la-scidcopy.Tpo -c -o libscielementary_functions_la-scidcopy.lo `test -f 'src/c/scidcopy.c' || echo '$(srcdir)/'`src/c/scidcopy.c
@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/libscielementary_functions_la-scidcopy.Tpo $(DEPDIR)/libscielementary_functions_la-scidcopy.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/c/scidcopy.c' object='libscielementary_functions_la-scidcopy.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) $(libscielementary_functions_la_CPPFLAGS) $(CPPFLAGS) $(libscielementary_functions_la_CFLAGS) $(CFLAGS) -c -o libscielementary_functions_la-scidcopy.lo `test -f 'src/c/scidcopy.c' || echo '$(srcdir)/'`src/c/scidcopy.c
libscielementary_functions_la-int2db.lo: src/c/int2db.c
@am__fastdepCC_TRUE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libscielementary_functions_la_CPPFLAGS) $(CPPFLAGS) $(libscielementary_functions_la_CFLAGS) $(CFLAGS) -MT libscielementary_functions_la-int2db.lo -MD -MP -MF $(DEPDIR)/libscielementary_functions_la-int2db.Tpo -c -o libscielementary_functions_la-int2db.lo `test -f 'src/c/int2db.c' || echo '$(srcdir)/'`src/c/int2db.c
@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/libscielementary_functions_la-int2db.Tpo $(DEPDIR)/libscielementary_functions_la-int2db.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/c/int2db.c' object='libscielementary_functions_la-int2db.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) $(libscielementary_functions_la_CPPFLAGS) $(CPPFLAGS) $(libscielementary_functions_la_CFLAGS) $(CFLAGS) -c -o libscielementary_functions_la-int2db.lo `test -f 'src/c/int2db.c' || echo '$(srcdir)/'`src/c/int2db.c
libscielementary_functions_la-rea2db.lo: src/c/rea2db.c
@am__fastdepCC_TRUE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libscielementary_functions_la_CPPFLAGS) $(CPPFLAGS) $(libscielementary_functions_la_CFLAGS) $(CFLAGS) -MT libscielementary_functions_la-rea2db.lo -MD -MP -MF $(DEPDIR)/libscielementary_functions_la-rea2db.Tpo -c -o libscielementary_functions_la-rea2db.lo `test -f 'src/c/rea2db.c' || echo '$(srcdir)/'`src/c/rea2db.c
@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/libscielementary_functions_la-rea2db.Tpo $(DEPDIR)/libscielementary_functions_la-rea2db.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/c/rea2db.c' object='libscielementary_functions_la-rea2db.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) $(libscielementary_functions_la_CPPFLAGS) $(CPPFLAGS) $(libscielementary_functions_la_CFLAGS) $(CFLAGS) -c -o libscielementary_functions_la-rea2db.lo `test -f 'src/c/rea2db.c' || echo '$(srcdir)/'`src/c/rea2db.c
libscielementary_functions_la-idmax.lo: src/c/idmax.c
@am__fastdepCC_TRUE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libscielementary_functions_la_CPPFLAGS) $(CPPFLAGS) $(libscielementary_functions_la_CFLAGS) $(CFLAGS) -MT libscielementary_functions_la-idmax.lo -MD -MP -MF $(DEPDIR)/libscielementary_functions_la-idmax.Tpo -c -o libscielementary_functions_la-idmax.lo `test -f 'src/c/idmax.c' || echo '$(srcdir)/'`src/c/idmax.c
@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/libscielementary_functions_la-idmax.Tpo $(DEPDIR)/libscielementary_functions_la-idmax.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/c/idmax.c' object='libscielementary_functions_la-idmax.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) $(libscielementary_functions_la_CPPFLAGS) $(CPPFLAGS) $(libscielementary_functions_la_CFLAGS) $(CFLAGS) -c -o libscielementary_functions_la-idmax.lo `test -f 'src/c/idmax.c' || echo '$(srcdir)/'`src/c/idmax.c
libscielementary_functions_la-idmin.lo: src/c/idmin.c
@am__fastdepCC_TRUE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libscielementary_functions_la_CPPFLAGS) $(CPPFLAGS) $(libscielementary_functions_la_CFLAGS) $(CFLAGS) -MT libscielementary_functions_la-idmin.lo -MD -MP -MF $(DEPDIR)/libscielementary_functions_la-idmin.Tpo -c -o libscielementary_functions_la-idmin.lo `test -f 'src/c/idmin.c' || echo '$(srcdir)/'`src/c/idmin.c
@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/libscielementary_functions_la-idmin.Tpo $(DEPDIR)/libscielementary_functions_la-idmin.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/c/idmin.c' object='libscielementary_functions_la-idmin.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) $(libscielementary_functions_la_CPPFLAGS) $(CPPFLAGS) $(libscielementary_functions_la_CFLAGS) $(CFLAGS) -c -o libscielementary_functions_la-idmin.lo `test -f 'src/c/idmin.c' || echo '$(srcdir)/'`src/c/idmin.c
libscielementary_functions_la-gsort.lo: src/c/gsort.c
@am__fastdepCC_TRUE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libscielementary_functions_la_CPPFLAGS) $(CPPFLAGS) $(libscielementary_functions_la_CFLAGS) $(CFLAGS) -MT libscielementary_functions_la-gsort.lo -MD -MP -MF $(DEPDIR)/libscielementary_functions_la-gsort.Tpo -c -o libscielementary_functions_la-gsort.lo `test -f 'src/c/gsort.c' || echo '$(srcdir)/'`src/c/gsort.c
@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/libscielementary_functions_la-gsort.Tpo $(DEPDIR)/libscielementary_functions_la-gsort.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/c/gsort.c' object='libscielementary_functions_la-gsort.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) $(libscielementary_functions_la_CPPFLAGS) $(CPPFLAGS) $(libscielementary_functions_la_CFLAGS) $(CFLAGS) -c -o libscielementary_functions_la-gsort.lo `test -f 'src/c/gsort.c' || echo '$(srcdir)/'`src/c/gsort.c
libscielementary_functions_la-qsort.lo: src/c/qsort.c
@am__fastdepCC_TRUE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libscielementary_functions_la_CPPFLAGS) $(CPPFLAGS) $(libscielementary_functions_la_CFLAGS) $(CFLAGS) -MT libscielementary_functions_la-qsort.lo -MD -MP -MF $(DEPDIR)/libscielementary_functions_la-qsort.Tpo -c -o libscielementary_functions_la-qsort.lo `test -f 'src/c/qsort.c' || echo '$(srcdir)/'`src/c/qsort.c
@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/libscielementary_functions_la-qsort.Tpo $(DEPDIR)/libscielementary_functions_la-qsort.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/c/qsort.c' object='libscielementary_functions_la-qsort.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) $(libscielementary_functions_la_CPPFLAGS) $(CPPFLAGS) $(libscielementary_functions_la_CFLAGS) $(CFLAGS) -c -o libscielementary_functions_la-qsort.lo `test -f 'src/c/qsort.c' || echo '$(srcdir)/'`src/c/qsort.c
libscielementary_functions_la-qsort-char.lo: src/c/qsort-char.c
@am__fastdepCC_TRUE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libscielementary_functions_la_CPPFLAGS) $(CPPFLAGS) $(libscielementary_functions_la_CFLAGS) $(CFLAGS) -MT libscielementary_functions_la-qsort-char.lo -MD -MP -MF $(DEPDIR)/libscielementary_functions_la-qsort-char.Tpo -c -o libscielementary_functions_la-qsort-char.lo `test -f 'src/c/qsort-char.c' || echo '$(srcdir)/'`src/c/qsort-char.c
@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/libscielementary_functions_la-qsort-char.Tpo $(DEPDIR)/libscielementary_functions_la-qsort-char.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/c/qsort-char.c' object='libscielementary_functions_la-qsort-char.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) $(libscielementary_functions_la_CPPFLAGS) $(CPPFLAGS) $(libscielementary_functions_la_CFLAGS) $(CFLAGS) -c -o libscielementary_functions_la-qsort-char.lo `test -f 'src/c/qsort-char.c' || echo '$(srcdir)/'`src/c/qsort-char.c
libscielementary_functions_la-qsort-double.lo: src/c/qsort-double.c
@am__fastdepCC_TRUE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libscielementary_functions_la_CPPFLAGS) $(CPPFLAGS) $(libscielementary_functions_la_CFLAGS) $(CFLAGS) -MT libscielementary_functions_la-qsort-double.lo -MD -MP -MF $(DEPDIR)/libscielementary_functions_la-qsort-double.Tpo -c -o libscielementary_functions_la-qsort-double.lo `test -f 'src/c/qsort-double.c' || echo '$(srcdir)/'`src/c/qsort-double.c
@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/libscielementary_functions_la-qsort-double.Tpo $(DEPDIR)/libscielementary_functions_la-qsort-double.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/c/qsort-double.c' object='libscielementary_functions_la-qsort-double.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) $(libscielementary_functions_la_CPPFLAGS) $(CPPFLAGS) $(libscielementary_functions_la_CFLAGS) $(CFLAGS) -c -o libscielementary_functions_la-qsort-double.lo `test -f 'src/c/qsort-double.c' || echo '$(srcdir)/'`src/c/qsort-double.c
libscielementary_functions_la-qsort-int.lo: src/c/qsort-int.c
@am__fastdepCC_TRUE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libscielementary_functions_la_CPPFLAGS) $(CPPFLAGS) $(libscielementary_functions_la_CFLAGS) $(CFLAGS) -MT libscielementary_functions_la-qsort-int.lo -MD -MP -MF $(DEPDIR)/libscielementary_functions_la-qsort-int.Tpo -c -o libscielementary_functions_la-qsort-int.lo `test -f 'src/c/qsort-int.c' || echo '$(srcdir)/'`src/c/qsort-int.c
@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/libscielementary_functions_la-qsort-int.Tpo $(DEPDIR)/libscielementary_functions_la-qsort-int.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/c/qsort-int.c' object='libscielementary_functions_la-qsort-int.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) $(libscielementary_functions_la_CPPFLAGS) $(CPPFLAGS) $(libscielementary_functions_la_CFLAGS) $(CFLAGS) -c -o libscielementary_functions_la-qsort-int.lo `test -f 'src/c/qsort-int.c' || echo '$(srcdir)/'`src/c/qsort-int.c
libscielementary_functions_la-qsort-short.lo: src/c/qsort-short.c
@am__fastdepCC_TRUE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libscielementary_functions_la_CPPFLAGS) $(CPPFLAGS) $(libscielementary_functions_la_CFLAGS) $(CFLAGS) -MT libscielementary_functions_la-qsort-short.lo -MD -MP -MF $(DEPDIR)/libscielementary_functions_la-qsort-short.Tpo -c -o libscielementary_functions_la-qsort-short.lo `test -f 'src/c/qsort-short.c' || echo '$(srcdir)/'`src/c/qsort-short.c
@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/libscielementary_functions_la-qsort-short.Tpo $(DEPDIR)/libscielementary_functions_la-qsort-short.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/c/qsort-short.c' object='libscielementary_functions_la-qsort-short.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) $(libscielementary_functions_la_CPPFLAGS) $(CPPFLAGS) $(libscielementary_functions_la_CFLAGS) $(CFLAGS) -c -o libscielementary_functions_la-qsort-short.lo `test -f 'src/c/qsort-short.c' || echo '$(srcdir)/'`src/c/qsort-short.c
libscielementary_functions_la-qsort-string.lo: src/c/qsort-string.c
@am__fastdepCC_TRUE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libscielementary_functions_la_CPPFLAGS) $(CPPFLAGS) $(libscielementary_functions_la_CFLAGS) $(CFLAGS) -MT libscielementary_functions_la-qsort-string.lo -MD -MP -MF $(DEPDIR)/libscielementary_functions_la-qsort-string.Tpo -c -o libscielementary_functions_la-qsort-string.lo `test -f 'src/c/qsort-string.c' || echo '$(srcdir)/'`src/c/qsort-string.c
@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/libscielementary_functions_la-qsort-string.Tpo $(DEPDIR)/libscielementary_functions_la-qsort-string.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/c/qsort-string.c' object='libscielementary_functions_la-qsort-string.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) $(libscielementary_functions_la_CPPFLAGS) $(CPPFLAGS) $(libscielementary_functions_la_CFLAGS) $(CFLAGS) -c -o libscielementary_functions_la-qsort-string.lo `test -f 'src/c/qsort-string.c' || echo '$(srcdir)/'`src/c/qsort-string.c
libscielementary_functions_la-IsEqualVar.lo: src/c/IsEqualVar.c
@am__fastdepCC_TRUE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libscielementary_functions_la_CPPFLAGS) $(CPPFLAGS) $(libscielementary_functions_la_CFLAGS) $(CFLAGS) -MT libscielementary_functions_la-IsEqualVar.lo -MD -MP -MF $(DEPDIR)/libscielementary_functions_la-IsEqualVar.Tpo -c -o libscielementary_functions_la-IsEqualVar.lo `test -f 'src/c/IsEqualVar.c' || echo '$(srcdir)/'`src/c/IsEqualVar.c
@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/libscielementary_functions_la-IsEqualVar.Tpo $(DEPDIR)/libscielementary_functions_la-IsEqualVar.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/c/IsEqualVar.c' object='libscielementary_functions_la-IsEqualVar.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) $(libscielementary_functions_la_CPPFLAGS) $(CPPFLAGS) $(libscielementary_functions_la_CFLAGS) $(CFLAGS) -c -o libscielementary_functions_la-IsEqualVar.lo `test -f 'src/c/IsEqualVar.c' || echo '$(srcdir)/'`src/c/IsEqualVar.c
libscielementary_functions_la-sci_isequal.lo: sci_gateway/c/sci_isequal.c
@am__fastdepCC_TRUE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libscielementary_functions_la_CPPFLAGS) $(CPPFLAGS) $(libscielementary_functions_la_CFLAGS) $(CFLAGS) -MT libscielementary_functions_la-sci_isequal.lo -MD -MP -MF $(DEPDIR)/libscielementary_functions_la-sci_isequal.Tpo -c -o libscielementary_functions_la-sci_isequal.lo `test -f 'sci_gateway/c/sci_isequal.c' || echo '$(srcdir)/'`sci_gateway/c/sci_isequal.c
@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/libscielementary_functions_la-sci_isequal.Tpo $(DEPDIR)/libscielementary_functions_la-sci_isequal.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='sci_gateway/c/sci_isequal.c' object='libscielementary_functions_la-sci_isequal.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) $(libscielementary_functions_la_CPPFLAGS) $(CPPFLAGS) $(libscielementary_functions_la_CFLAGS) $(CFLAGS) -c -o libscielementary_functions_la-sci_isequal.lo `test -f 'sci_gateway/c/sci_isequal.c' || echo '$(srcdir)/'`sci_gateway/c/sci_isequal.c
libscielementary_functions_la-sci_matrix.lo: sci_gateway/c/sci_matrix.c
@am__fastdepCC_TRUE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libscielementary_functions_la_CPPFLAGS) $(CPPFLAGS) $(libscielementary_functions_la_CFLAGS) $(CFLAGS) -MT libscielementary_functions_la-sci_matrix.lo -MD -MP -MF $(DEPDIR)/libscielementary_functions_la-sci_matrix.Tpo -c -o libscielementary_functions_la-sci_matrix.lo `test -f 'sci_gateway/c/sci_matrix.c' || echo '$(srcdir)/'`sci_gateway/c/sci_matrix.c
@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/libscielementary_functions_la-sci_matrix.Tpo $(DEPDIR)/libscielementary_functions_la-sci_matrix.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='sci_gateway/c/sci_matrix.c' object='libscielementary_functions_la-sci_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) $(libscielementary_functions_la_CPPFLAGS) $(CPPFLAGS) $(libscielementary_functions_la_CFLAGS) $(CFLAGS) -c -o libscielementary_functions_la-sci_matrix.lo `test -f 'sci_gateway/c/sci_matrix.c' || echo '$(srcdir)/'`sci_gateway/c/sci_matrix.c
libscielementary_functions_la-sci_prod.lo: sci_gateway/c/sci_prod.c
@am__fastdepCC_TRUE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libscielementary_functions_la_CPPFLAGS) $(CPPFLAGS) $(libscielementary_functions_la_CFLAGS) $(CFLAGS) -MT libscielementary_functions_la-sci_prod.lo -MD -MP -MF $(DEPDIR)/libscielementary_functions_la-sci_prod.Tpo -c -o libscielementary_functions_la-sci_prod.lo `test -f 'sci_gateway/c/sci_prod.c' || echo '$(srcdir)/'`sci_gateway/c/sci_prod.c
@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/libscielementary_functions_la-sci_prod.Tpo $(DEPDIR)/libscielementary_functions_la-sci_prod.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='sci_gateway/c/sci_prod.c' object='libscielementary_functions_la-sci_prod.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) $(libscielementary_functions_la_CPPFLAGS) $(CPPFLAGS) $(libscielementary_functions_la_CFLAGS) $(CFLAGS) -c -o libscielementary_functions_la-sci_prod.lo `test -f 'sci_gateway/c/sci_prod.c' || echo '$(srcdir)/'`sci_gateway/c/sci_prod.c
libscielementary_functions_la-sci_expm.lo: sci_gateway/c/sci_expm.c
@am__fastdepCC_TRUE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libscielementary_functions_la_CPPFLAGS) $(CPPFLAGS) $(libscielementary_functions_la_CFLAGS) $(CFLAGS) -MT libscielementary_functions_la-sci_expm.lo -MD -MP -MF $(DEPDIR)/libscielementary_functions_la-sci_expm.Tpo -c -o libscielementary_functions_la-sci_expm.lo `test -f 'sci_gateway/c/sci_expm.c' || echo '$(srcdir)/'`sci_gateway/c/sci_expm.c
@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/libscielementary_functions_la-sci_expm.Tpo $(DEPDIR)/libscielementary_functions_la-sci_expm.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='sci_gateway/c/sci_expm.c' object='libscielementary_functions_la-sci_expm.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) $(libscielementary_functions_la_CPPFLAGS) $(CPPFLAGS) $(libscielementary_functions_la_CFLAGS) $(CFLAGS) -c -o libscielementary_functions_la-sci_expm.lo `test -f 'sci_gateway/c/sci_expm.c' || echo '$(srcdir)/'`sci_gateway/c/sci_expm.c
libscielementary_functions_la-sci_size.lo: sci_gateway/c/sci_size.c
@am__fastdepCC_TRUE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libscielementary_functions_la_CPPFLAGS) $(CPPFLAGS) $(libscielementary_functions_la_CFLAGS) $(CFLAGS) -MT libscielementary_functions_la-sci_size.lo -MD -MP -MF $(DEPDIR)/libscielementary_functions_la-sci_size.Tpo -c -o libscielementary_functions_la-sci_size.lo `test -f 'sci_gateway/c/sci_size.c' || echo '$(srcdir)/'`sci_gateway/c/sci_size.c
@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/libscielementary_functions_la-sci_size.Tpo $(DEPDIR)/libscielementary_functions_la-sci_size.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='sci_gateway/c/sci_size.c' object='libscielementary_functions_la-sci_size.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) $(libscielementary_functions_la_CPPFLAGS) $(CPPFLAGS) $(libscielementary_functions_la_CFLAGS) $(CFLAGS) -c -o libscielementary_functions_la-sci_size.lo `test -f 'sci_gateway/c/sci_size.c' || echo '$(srcdir)/'`sci_gateway/c/sci_size.c
libscielementary_functions_la-sci_tril.lo: sci_gateway/c/sci_tril.c
@am__fastdepCC_TRUE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libscielementary_functions_la_CPPFLAGS) $(CPPFLAGS) $(libscielementary_functions_la_CFLAGS) $(CFLAGS) -MT libscielementary_functions_la-sci_tril.lo -MD -MP -MF $(DEPDIR)/libscielementary_functions_la-sci_tril.Tpo -c -o libscielementary_functions_la-sci_tril.lo `test -f 'sci_gateway/c/sci_tril.c' || echo '$(srcdir)/'`sci_gateway/c/sci_tril.c
@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/libscielementary_functions_la-sci_tril.Tpo $(DEPDIR)/libscielementary_functions_la-sci_tril.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='sci_gateway/c/sci_tril.c' object='libscielementary_functions_la-sci_tril.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) $(libscielementary_functions_la_CPPFLAGS) $(CPPFLAGS) $(libscielementary_functions_la_CFLAGS) $(CFLAGS) -c -o libscielementary_functions_la-sci_tril.lo `test -f 'sci_gateway/c/sci_tril.c' || echo '$(srcdir)/'`sci_gateway/c/sci_tril.c
libscielementary_functions_la-sci_ceil.lo: sci_gateway/c/sci_ceil.c
@am__fastdepCC_TRUE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libscielementary_functions_la_CPPFLAGS) $(CPPFLAGS) $(libscielementary_functions_la_CFLAGS) $(CFLAGS) -MT libscielementary_functions_la-sci_ceil.lo -MD -MP -MF $(DEPDIR)/libscielementary_functions_la-sci_ceil.Tpo -c -o libscielementary_functions_la-sci_ceil.lo `test -f 'sci_gateway/c/sci_ceil.c' || echo '$(srcdir)/'`sci_gateway/c/sci_ceil.c
@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/libscielementary_functions_la-sci_ceil.Tpo $(DEPDIR)/libscielementary_functions_la-sci_ceil.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='sci_gateway/c/sci_ceil.c' object='libscielementary_functions_la-sci_ceil.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) $(libscielementary_functions_la_CPPFLAGS) $(CPPFLAGS) $(libscielementary_functions_la_CFLAGS) $(CFLAGS) -c -o libscielementary_functions_la-sci_ceil.lo `test -f 'sci_gateway/c/sci_ceil.c' || echo '$(srcdir)/'`sci_gateway/c/sci_ceil.c
libscielementary_functions_la-sci_imag.lo: sci_gateway/c/sci_imag.c
@am__fastdepCC_TRUE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libscielementary_functions_la_CPPFLAGS) $(CPPFLAGS) $(libscielementary_functions_la_CFLAGS) $(CFLAGS) -MT libscielementary_functions_la-sci_imag.lo -MD -MP -MF $(DEPDIR)/libscielementary_functions_la-sci_imag.Tpo -c -o libscielementary_functions_la-sci_imag.lo `test -f 'sci_gateway/c/sci_imag.c' || echo '$(srcdir)/'`sci_gateway/c/sci_imag.c
@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/libscielementary_functions_la-sci_imag.Tpo $(DEPDIR)/libscielementary_functions_la-sci_imag.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='sci_gateway/c/sci_imag.c' object='libscielementary_functions_la-sci_imag.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) $(libscielementary_functions_la_CPPFLAGS) $(CPPFLAGS) $(libscielementary_functions_la_CFLAGS) $(CFLAGS) -c -o libscielementary_functions_la-sci_imag.lo `test -f 'sci_gateway/c/sci_imag.c' || echo '$(srcdir)/'`sci_gateway/c/sci_imag.c
libscielementary_functions_la-sci_log.lo: sci_gateway/c/sci_log.c
@am__fastdepCC_TRUE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libscielementary_functions_la_CPPFLAGS) $(CPPFLAGS) $(libscielementary_functions_la_CFLAGS) $(CFLAGS) -MT libscielementary_functions_la-sci_log.lo -MD -MP -MF $(DEPDIR)/libscielementary_functions_la-sci_log.Tpo -c -o libscielementary_functions_la-sci_log.lo `test -f 'sci_gateway/c/sci_log.c' || echo '$(srcdir)/'`sci_gateway/c/sci_log.c
@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/libscielementary_functions_la-sci_log.Tpo $(DEPDIR)/libscielementary_functions_la-sci_log.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='sci_gateway/c/sci_log.c' object='libscielementary_functions_la-sci_log.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) $(libscielementary_functions_la_CPPFLAGS) $(CPPFLAGS) $(libscielementary_functions_la_CFLAGS) $(CFLAGS) -c -o libscielementary_functions_la-sci_log.lo `test -f 'sci_gateway/c/sci_log.c' || echo '$(srcdir)/'`sci_gateway/c/sci_log.c
libscielementary_functions_la-sci_log1p.lo: sci_gateway/c/sci_log1p.c
@am__fastdepCC_TRUE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libscielementary_functions_la_CPPFLAGS) $(CPPFLAGS) $(libscielementary_functions_la_CFLAGS) $(CFLAGS) -MT libscielementary_functions_la-sci_log1p.lo -MD -MP -MF $(DEPDIR)/libscielementary_functions_la-sci_log1p.Tpo -c -o libscielementary_functions_la-sci_log1p.lo `test -f 'sci_gateway/c/sci_log1p.c' || echo '$(srcdir)/'`sci_gateway/c/sci_log1p.c
@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/libscielementary_functions_la-sci_log1p.Tpo $(DEPDIR)/libscielementary_functions_la-sci_log1p.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='sci_gateway/c/sci_log1p.c' object='libscielementary_functions_la-sci_log1p.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) $(libscielementary_functions_la_CPPFLAGS) $(CPPFLAGS) $(libscielementary_functions_la_CFLAGS) $(CFLAGS) -c -o libscielementary_functions_la-sci_log1p.lo `test -f 'sci_gateway/c/sci_log1p.c' || echo '$(srcdir)/'`sci_gateway/c/sci_log1p.c
libscielementary_functions_la-sci_eye.lo: sci_gateway/c/sci_eye.c
@am__fastdepCC_TRUE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libscielementary_functions_la_CPPFLAGS) $(CPPFLAGS) $(libscielementary_functions_la_CFLAGS) $(CFLAGS) -MT libscielementary_functions_la-sci_eye.lo -MD -MP -MF $(DEPDIR)/libscielementary_functions_la-sci_eye.Tpo -c -o libscielementary_functions_la-sci_eye.lo `test -f 'sci_gateway/c/sci_eye.c' || echo '$(srcdir)/'`sci_gateway/c/sci_eye.c
@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/libscielementary_functions_la-sci_eye.Tpo $(DEPDIR)/libscielementary_functions_la-sci_eye.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='sci_gateway/c/sci_eye.c' object='libscielementary_functions_la-sci_eye.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) $(libscielementary_functions_la_CPPFLAGS) $(CPPFLAGS) $(libscielementary_functions_la_CFLAGS) $(CFLAGS) -c -o libscielementary_functions_la-sci_eye.lo `test -f 'sci_gateway/c/sci_eye.c' || echo '$(srcdir)/'`sci_gateway/c/sci_eye.c
libscielementary_functions_la-sci_clean.lo: sci_gateway/c/sci_clean.c
@am__fastdepCC_TRUE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libscielementary_functions_la_CPPFLAGS) $(CPPFLAGS) $(libscielementary_functions_la_CFLAGS) $(CFLAGS) -MT libscielementary_functions_la-sci_clean.lo -MD -MP -MF $(DEPDIR)/libscielementary_functions_la-sci_clean.Tpo -c -o libscielementary_functions_la-sci_clean.lo `test -f 'sci_gateway/c/sci_clean.c' || echo '$(srcdir)/'`sci_gateway/c/sci_clean.c
@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/libscielementary_functions_la-sci_clean.Tpo $(DEPDIR)/libscielementary_functions_la-sci_clean.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='sci_gateway/c/sci_clean.c' object='libscielementary_functions_la-sci_clean.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) $(libscielementary_functions_la_CPPFLAGS) $(CPPFLAGS) $(libscielementary_functions_la_CFLAGS) $(CFLAGS) -c -o libscielementary_functions_la-sci_clean.lo `test -f 'sci_gateway/c/sci_clean.c' || echo '$(srcdir)/'`sci_gateway/c/sci_clean.c
libscielementary_functions_la-sci_tan.lo: sci_gateway/c/sci_tan.c
@am__fastdepCC_TRUE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libscielementary_functions_la_CPPFLAGS) $(CPPFLAGS) $(libscielementary_functions_la_CFLAGS) $(CFLAGS) -MT libscielementary_functions_la-sci_tan.lo -MD -MP -MF $(DEPDIR)/libscielementary_functions_la-sci_tan.Tpo -c -o libscielementary_functions_la-sci_tan.lo `test -f 'sci_gateway/c/sci_tan.c' || echo '$(srcdir)/'`sci_gateway/c/sci_tan.c
@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/libscielementary_functions_la-sci_tan.Tpo $(DEPDIR)/libscielementary_functions_la-sci_tan.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='sci_gateway/c/sci_tan.c' object='libscielementary_functions_la-sci_tan.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) $(libscielementary_functions_la_CPPFLAGS) $(CPPFLAGS) $(libscielementary_functions_la_CFLAGS) $(CFLAGS) -c -o libscielementary_functions_la-sci_tan.lo `test -f 'sci_gateway/c/sci_tan.c' || echo '$(srcdir)/'`sci_gateway/c/sci_tan.c
libscielementary_functions_la-sci_atan.lo: sci_gateway/c/sci_atan.c
@am__fastdepCC_TRUE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libscielementary_functions_la_CPPFLAGS) $(CPPFLAGS) $(libscielementary_functions_la_CFLAGS) $(CFLAGS) -MT libscielementary_functions_la-sci_atan.lo -MD -MP -MF $(DEPDIR)/libscielementary_functions_la-sci_atan.Tpo -c -o libscielementary_functions_la-sci_atan.lo `test -f 'sci_gateway/c/sci_atan.c' || echo '$(srcdir)/'`sci_gateway/c/sci_atan.c
@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/libscielementary_functions_la-sci_atan.Tpo $(DEPDIR)/libscielementary_functions_la-sci_atan.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='sci_gateway/c/sci_atan.c' object='libscielementary_functions_la-sci_atan.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) $(libscielementary_functions_la_CPPFLAGS) $(CPPFLAGS) $(libscielementary_functions_la_CFLAGS) $(CFLAGS) -c -o libscielementary_functions_la-sci_atan.lo `test -f 'sci_gateway/c/sci_atan.c' || echo '$(srcdir)/'`sci_gateway/c/sci_atan.c
libscielementary_functions_la-sci_triu.lo: sci_gateway/c/sci_triu.c
@am__fastdepCC_TRUE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libscielementary_functions_la_CPPFLAGS) $(CPPFLAGS) $(libscielementary_functions_la_CFLAGS) $(CFLAGS) -MT libscielementary_functions_la-sci_triu.lo -MD -MP -MF $(DEPDIR)/libscielementary_functions_la-sci_triu.Tpo -c -o libscielementary_functions_la-sci_triu.lo `test -f 'sci_gateway/c/sci_triu.c' || echo '$(srcdir)/'`sci_gateway/c/sci_triu.c
@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/libscielementary_functions_la-sci_triu.Tpo $(DEPDIR)/libscielementary_functions_la-sci_triu.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='sci_gateway/c/sci_triu.c' object='libscielementary_functions_la-sci_triu.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) $(libscielementary_functions_la_CPPFLAGS) $(CPPFLAGS) $(libscielementary_functions_la_CFLAGS) $(CFLAGS) -c -o libscielementary_functions_la-sci_triu.lo `test -f 'sci_gateway/c/sci_triu.c' || echo '$(srcdir)/'`sci_gateway/c/sci_triu.c
libscielementary_functions_la-sci_frexp.lo: sci_gateway/c/sci_frexp.c
@am__fastdepCC_TRUE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libscielementary_functions_la_CPPFLAGS) $(CPPFLAGS) $(libscielementary_functions_la_CFLAGS) $(CFLAGS) -MT libscielementary_functions_la-sci_frexp.lo -MD -MP -MF $(DEPDIR)/libscielementary_functions_la-sci_frexp.Tpo -c -o libscielementary_functions_la-sci_frexp.lo `test -f 'sci_gateway/c/sci_frexp.c' || echo '$(srcdir)/'`sci_gateway/c/sci_frexp.c
@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/libscielementary_functions_la-sci_frexp.Tpo $(DEPDIR)/libscielementary_functions_la-sci_frexp.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='sci_gateway/c/sci_frexp.c' object='libscielementary_functions_la-sci_frexp.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) $(libscielementary_functions_la_CPPFLAGS) $(CPPFLAGS) $(libscielementary_functions_la_CFLAGS) $(CFLAGS) -c -o libscielementary_functions_la-sci_frexp.lo `test -f 'sci_gateway/c/sci_frexp.c' || echo '$(srcdir)/'`sci_gateway/c/sci_frexp.c
libscielementary_functions_la-sci_cos.lo: sci_gateway/c/sci_cos.c
@am__fastdepCC_TRUE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libscielementary_functions_la_CPPFLAGS) $(CPPFLAGS) $(libscielementary_functions_la_CFLAGS) $(CFLAGS) -MT libscielementary_functions_la-sci_cos.lo -MD -MP -MF $(DEPDIR)/libscielementary_functions_la-sci_cos.Tpo -c -o libscielementary_functions_la-sci_cos.lo `test -f 'sci_gateway/c/sci_cos.c' || echo '$(srcdir)/'`sci_gateway/c/sci_cos.c
@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/libscielementary_functions_la-sci_cos.Tpo $(DEPDIR)/libscielementary_functions_la-sci_cos.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='sci_gateway/c/sci_cos.c' object='libscielementary_functions_la-sci_cos.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) $(libscielementary_functions_la_CPPFLAGS) $(CPPFLAGS) $(libscielementary_functions_la_CFLAGS) $(CFLAGS) -c -o libscielementary_functions_la-sci_cos.lo `test -f 'sci_gateway/c/sci_cos.c' || echo '$(srcdir)/'`sci_gateway/c/sci_cos.c
libscielementary_functions_la-sci_rand.lo: sci_gateway/c/sci_rand.c
@am__fastdepCC_TRUE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libscielementary_functions_la_CPPFLAGS) $(CPPFLAGS) $(libscielementary_functions_la_CFLAGS) $(CFLAGS) -MT libscielementary_functions_la-sci_rand.lo -MD -MP -MF $(DEPDIR)/libscielementary_functions_la-sci_rand.Tpo -c -o libscielementary_functions_la-sci_rand.lo `test -f 'sci_gateway/c/sci_rand.c' || echo '$(srcdir)/'`sci_gateway/c/sci_rand.c
@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/libscielementary_functions_la-sci_rand.Tpo $(DEPDIR)/libscielementary_functions_la-sci_rand.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='sci_gateway/c/sci_rand.c' object='libscielementary_functions_la-sci_rand.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) $(libscielementary_functions_la_CPPFLAGS) $(CPPFLAGS) $(libscielementary_functions_la_CFLAGS) $(CFLAGS) -c -o libscielementary_functions_la-sci_rand.lo `test -f 'sci_gateway/c/sci_rand.c' || echo '$(srcdir)/'`sci_gateway/c/sci_rand.c
libscielementary_functions_la-sci_acos.lo: sci_gateway/c/sci_acos.c
@am__fastdepCC_TRUE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libscielementary_functions_la_CPPFLAGS) $(CPPFLAGS) $(libscielementary_functions_la_CFLAGS) $(CFLAGS) -MT libscielementary_functions_la-sci_acos.lo -MD -MP -MF $(DEPDIR)/libscielementary_functions_la-sci_acos.Tpo -c -o libscielementary_functions_la-sci_acos.lo `test -f 'sci_gateway/c/sci_acos.c' || echo '$(srcdir)/'`sci_gateway/c/sci_acos.c
@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/libscielementary_functions_la-sci_acos.Tpo $(DEPDIR)/libscielementary_functions_la-sci_acos.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='sci_gateway/c/sci_acos.c' object='libscielementary_functions_la-sci_acos.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) $(libscielementary_functions_la_CPPFLAGS) $(CPPFLAGS) $(libscielementary_functions_la_CFLAGS) $(CFLAGS) -c -o libscielementary_functions_la-sci_acos.lo `test -f 'sci_gateway/c/sci_acos.c' || echo '$(srcdir)/'`sci_gateway/c/sci_acos.c
libscielementary_functions_la-sci_sin.lo: sci_gateway/c/sci_sin.c
@am__fastdepCC_TRUE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libscielementary_functions_la_CPPFLAGS) $(CPPFLAGS) $(libscielementary_functions_la_CFLAGS) $(CFLAGS) -MT libscielementary_functions_la-sci_sin.lo -MD -MP -MF $(DEPDIR)/libscielementary_functions_la-sci_sin.Tpo -c -o libscielementary_functions_la-sci_sin.lo `test -f 'sci_gateway/c/sci_sin.c' || echo '$(srcdir)/'`sci_gateway/c/sci_sin.c
@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/libscielementary_functions_la-sci_sin.Tpo $(DEPDIR)/libscielementary_functions_la-sci_sin.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='sci_gateway/c/sci_sin.c' object='libscielementary_functions_la-sci_sin.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) $(libscielementary_functions_la_CPPFLAGS) $(CPPFLAGS) $(libscielementary_functions_la_CFLAGS) $(CFLAGS) -c -o libscielementary_functions_la-sci_sin.lo `test -f 'sci_gateway/c/sci_sin.c' || echo '$(srcdir)/'`sci_gateway/c/sci_sin.c
libscielementary_functions_la-sci_sqrt.lo: sci_gateway/c/sci_sqrt.c
@am__fastdepCC_TRUE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libscielementary_functions_la_CPPFLAGS) $(CPPFLAGS) $(libscielementary_functions_la_CFLAGS) $(CFLAGS) -MT libscielementary_functions_la-sci_sqrt.lo -MD -MP -MF $(DEPDIR)/libscielementary_functions_la-sci_sqrt.Tpo -c -o libscielementary_functions_la-sci_sqrt.lo `test -f 'sci_gateway/c/sci_sqrt.c' || echo '$(srcdir)/'`sci_gateway/c/sci_sqrt.c
@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/libscielementary_functions_la-sci_sqrt.Tpo $(DEPDIR)/libscielementary_functions_la-sci_sqrt.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='sci_gateway/c/sci_sqrt.c' object='libscielementary_functions_la-sci_sqrt.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) $(libscielementary_functions_la_CPPFLAGS) $(CPPFLAGS) $(libscielementary_functions_la_CFLAGS) $(CFLAGS) -c -o libscielementary_functions_la-sci_sqrt.lo `test -f 'sci_gateway/c/sci_sqrt.c' || echo '$(srcdir)/'`sci_gateway/c/sci_sqrt.c
libscielementary_functions_la-sci_asin.lo: sci_gateway/c/sci_asin.c
@am__fastdepCC_TRUE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libscielementary_functions_la_CPPFLAGS) $(CPPFLAGS) $(libscielementary_functions_la_CFLAGS) $(CFLAGS) -MT libscielementary_functions_la-sci_asin.lo -MD -MP -MF $(DEPDIR)/libscielementary_functions_la-sci_asin.Tpo -c -o libscielementary_functions_la-sci_asin.lo `test -f 'sci_gateway/c/sci_asin.c' || echo '$(srcdir)/'`sci_gateway/c/sci_asin.c
@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/libscielementary_functions_la-sci_asin.Tpo $(DEPDIR)/libscielementary_functions_la-sci_asin.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='sci_gateway/c/sci_asin.c' object='libscielementary_functions_la-sci_asin.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) $(libscielementary_functions_la_CPPFLAGS) $(CPPFLAGS) $(libscielementary_functions_la_CFLAGS) $(CFLAGS) -c -o libscielementary_functions_la-sci_asin.lo `test -f 'sci_gateway/c/sci_asin.c' || echo '$(srcdir)/'`sci_gateway/c/sci_asin.c
libscielementary_functions_la-sci_sign.lo: sci_gateway/c/sci_sign.c
@am__fastdepCC_TRUE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libscielementary_functions_la_CPPFLAGS) $(CPPFLAGS) $(libscielementary_functions_la_CFLAGS) $(CFLAGS) -MT libscielementary_functions_la-sci_sign.lo -MD -MP -MF $(DEPDIR)/libscielementary_functions_la-sci_sign.Tpo -c -o libscielementary_functions_la-sci_sign.lo `test -f 'sci_gateway/c/sci_sign.c' || echo '$(srcdir)/'`sci_gateway/c/sci_sign.c
@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/libscielementary_functions_la-sci_sign.Tpo $(DEPDIR)/libscielementary_functions_la-sci_sign.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='sci_gateway/c/sci_sign.c' object='libscielementary_functions_la-sci_sign.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) $(libscielementary_functions_la_CPPFLAGS) $(CPPFLAGS) $(libscielementary_functions_la_CFLAGS) $(CFLAGS) -c -o libscielementary_functions_la-sci_sign.lo `test -f 'sci_gateway/c/sci_sign.c' || echo '$(srcdir)/'`sci_gateway/c/sci_sign.c
libscielementary_functions_la-sci_zeros.lo: sci_gateway/c/sci_zeros.c
@am__fastdepCC_TRUE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libscielementary_functions_la_CPPFLAGS) $(CPPFLAGS) $(libscielementary_functions_la_CFLAGS) $(CFLAGS) -MT libscielementary_functions_la-sci_zeros.lo -MD -MP -MF $(DEPDIR)/libscielementary_functions_la-sci_zeros.Tpo -c -o libscielementary_functions_la-sci_zeros.lo `test -f 'sci_gateway/c/sci_zeros.c' || echo '$(srcdir)/'`sci_gateway/c/sci_zeros.c
@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/libscielementary_functions_la-sci_zeros.Tpo $(DEPDIR)/libscielementary_functions_la-sci_zeros.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='sci_gateway/c/sci_zeros.c' object='libscielementary_functions_la-sci_zeros.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) $(libscielementary_functions_la_CPPFLAGS) $(CPPFLAGS) $(libscielementary_functions_la_CFLAGS) $(CFLAGS) -c -o libscielementary_functions_la-sci_zeros.lo `test -f 'sci_gateway/c/sci_zeros.c' || echo '$(srcdir)/'`sci_gateway/c/sci_zeros.c
libscielementary_functions_la-sci_ones.lo: sci_gateway/c/sci_ones.c
@am__fastdepCC_TRUE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libscielementary_functions_la_CPPFLAGS) $(CPPFLAGS) $(libscielementary_functions_la_CFLAGS) $(CFLAGS) -MT libscielementary_functions_la-sci_ones.lo -MD -MP -MF $(DEPDIR)/libscielementary_functions_la-sci_ones.Tpo -c -o libscielementary_functions_la-sci_ones.lo `test -f 'sci_gateway/c/sci_ones.c' || echo '$(srcdir)/'`sci_gateway/c/sci_ones.c
@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/libscielementary_functions_la-sci_ones.Tpo $(DEPDIR)/libscielementary_functions_la-sci_ones.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='sci_gateway/c/sci_ones.c' object='libscielementary_functions_la-sci_ones.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) $(libscielementary_functions_la_CPPFLAGS) $(CPPFLAGS) $(libscielementary_functions_la_CFLAGS) $(CFLAGS) -c -o libscielementary_functions_la-sci_ones.lo `test -f 'sci_gateway/c/sci_ones.c' || echo '$(srcdir)/'`sci_gateway/c/sci_ones.c
libscielementary_functions_la-gw_elementary_functions.lo: sci_gateway/c/gw_elementary_functions.c
@am__fastdepCC_TRUE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libscielementary_functions_la_CPPFLAGS) $(CPPFLAGS) $(libscielementary_functions_la_CFLAGS) $(CFLAGS) -MT libscielementary_functions_la-gw_elementary_functions.lo -MD -MP -MF $(DEPDIR)/libscielementary_functions_la-gw_elementary_functions.Tpo -c -o libscielementary_functions_la-gw_elementary_functions.lo `test -f 'sci_gateway/c/gw_elementary_functions.c' || echo '$(srcdir)/'`sci_gateway/c/gw_elementary_functions.c
@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/libscielementary_functions_la-gw_elementary_functions.Tpo $(DEPDIR)/libscielementary_functions_la-gw_elementary_functions.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='sci_gateway/c/gw_elementary_functions.c' object='libscielementary_functions_la-gw_elementary_functions.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) $(libscielementary_functions_la_CPPFLAGS) $(CPPFLAGS) $(libscielementary_functions_la_CFLAGS) $(CFLAGS) -c -o libscielementary_functions_la-gw_elementary_functions.lo `test -f 'sci_gateway/c/gw_elementary_functions.c' || echo '$(srcdir)/'`sci_gateway/c/gw_elementary_functions.c
libscielementary_functions_la-sci_number_properties.lo: sci_gateway/c/sci_number_properties.c
@am__fastdepCC_TRUE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libscielementary_functions_la_CPPFLAGS) $(CPPFLAGS) $(libscielementary_functions_la_CFLAGS) $(CFLAGS) -MT libscielementary_functions_la-sci_number_properties.lo -MD -MP -MF $(DEPDIR)/libscielementary_functions_la-sci_number_properties.Tpo -c -o libscielementary_functions_la-sci_number_properties.lo `test -f 'sci_gateway/c/sci_number_properties.c' || echo '$(srcdir)/'`sci_gateway/c/sci_number_properties.c
@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/libscielementary_functions_la-sci_number_properties.Tpo $(DEPDIR)/libscielementary_functions_la-sci_number_properties.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='sci_gateway/c/sci_number_properties.c' object='libscielementary_functions_la-sci_number_properties.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) $(libscielementary_functions_la_CPPFLAGS) $(CPPFLAGS) $(libscielementary_functions_la_CFLAGS) $(CFLAGS) -c -o libscielementary_functions_la-sci_number_properties.lo `test -f 'sci_gateway/c/sci_number_properties.c' || echo '$(srcdir)/'`sci_gateway/c/sci_number_properties.c
libscielementary_functions_la-sci_diag.lo: sci_gateway/c/sci_diag.c
@am__fastdepCC_TRUE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libscielementary_functions_la_CPPFLAGS) $(CPPFLAGS) $(libscielementary_functions_la_CFLAGS) $(CFLAGS) -MT libscielementary_functions_la-sci_diag.lo -MD -MP -MF $(DEPDIR)/libscielementary_functions_la-sci_diag.Tpo -c -o libscielementary_functions_la-sci_diag.lo `test -f 'sci_gateway/c/sci_diag.c' || echo '$(srcdir)/'`sci_gateway/c/sci_diag.c
@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/libscielementary_functions_la-sci_diag.Tpo $(DEPDIR)/libscielementary_functions_la-sci_diag.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='sci_gateway/c/sci_diag.c' object='libscielementary_functions_la-sci_diag.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) $(libscielementary_functions_la_CPPFLAGS) $(CPPFLAGS) $(libscielementary_functions_la_CFLAGS) $(CFLAGS) -c -o libscielementary_functions_la-sci_diag.lo `test -f 'sci_gateway/c/sci_diag.c' || echo '$(srcdir)/'`sci_gateway/c/sci_diag.c
libscielementary_functions_la-sci_sum.lo: sci_gateway/c/sci_sum.c
@am__fastdepCC_TRUE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libscielementary_functions_la_CPPFLAGS) $(CPPFLAGS) $(libscielementary_functions_la_CFLAGS) $(CFLAGS) -MT libscielementary_functions_la-sci_sum.lo -MD -MP -MF $(DEPDIR)/libscielementary_functions_la-sci_sum.Tpo -c -o libscielementary_functions_la-sci_sum.lo `test -f 'sci_gateway/c/sci_sum.c' || echo '$(srcdir)/'`sci_gateway/c/sci_sum.c
@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/libscielementary_functions_la-sci_sum.Tpo $(DEPDIR)/libscielementary_functions_la-sci_sum.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='sci_gateway/c/sci_sum.c' object='libscielementary_functions_la-sci_sum.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) $(libscielementary_functions_la_CPPFLAGS) $(CPPFLAGS) $(libscielementary_functions_la_CFLAGS) $(CFLAGS) -c -o libscielementary_functions_la-sci_sum.lo `test -f 'sci_gateway/c/sci_sum.c' || echo '$(srcdir)/'`sci_gateway/c/sci_sum.c
libscielementary_functions_la-sci_testmatrix.lo: sci_gateway/c/sci_testmatrix.c
@am__fastdepCC_TRUE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libscielementary_functions_la_CPPFLAGS) $(CPPFLAGS) $(libscielementary_functions_la_CFLAGS) $(CFLAGS) -MT libscielementary_functions_la-sci_testmatrix.lo -MD -MP -MF $(DEPDIR)/libscielementary_functions_la-sci_testmatrix.Tpo -c -o libscielementary_functions_la-sci_testmatrix.lo `test -f 'sci_gateway/c/sci_testmatrix.c' || echo '$(srcdir)/'`sci_gateway/c/sci_testmatrix.c
@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/libscielementary_functions_la-sci_testmatrix.Tpo $(DEPDIR)/libscielementary_functions_la-sci_testmatrix.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='sci_gateway/c/sci_testmatrix.c' object='libscielementary_functions_la-sci_testmatrix.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) $(libscielementary_functions_la_CPPFLAGS) $(CPPFLAGS) $(libscielementary_functions_la_CFLAGS) $(CFLAGS) -c -o libscielementary_functions_la-sci_testmatrix.lo `test -f 'sci_gateway/c/sci_testmatrix.c' || echo '$(srcdir)/'`sci_gateway/c/sci_testmatrix.c
libscielementary_functions_la-sci_abs.lo: sci_gateway/c/sci_abs.c
@am__fastdepCC_TRUE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libscielementary_functions_la_CPPFLAGS) $(CPPFLAGS) $(libscielementary_functions_la_CFLAGS) $(CFLAGS) -MT libscielementary_functions_la-sci_abs.lo -MD -MP -MF $(DEPDIR)/libscielementary_functions_la-sci_abs.Tpo -c -o libscielementary_functions_la-sci_abs.lo `test -f 'sci_gateway/c/sci_abs.c' || echo '$(srcdir)/'`sci_gateway/c/sci_abs.c
@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/libscielementary_functions_la-sci_abs.Tpo $(DEPDIR)/libscielementary_functions_la-sci_abs.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='sci_gateway/c/sci_abs.c' object='libscielementary_functions_la-sci_abs.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) $(libscielementary_functions_la_CPPFLAGS) $(CPPFLAGS) $(libscielementary_functions_la_CFLAGS) $(CFLAGS) -c -o libscielementary_functions_la-sci_abs.lo `test -f 'sci_gateway/c/sci_abs.c' || echo '$(srcdir)/'`sci_gateway/c/sci_abs.c
libscielementary_functions_la-sci_spones.lo: sci_gateway/c/sci_spones.c
@am__fastdepCC_TRUE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libscielementary_functions_la_CPPFLAGS) $(CPPFLAGS) $(libscielementary_functions_la_CFLAGS) $(CFLAGS) -MT libscielementary_functions_la-sci_spones.lo -MD -MP -MF $(DEPDIR)/libscielementary_functions_la-sci_spones.Tpo -c -o libscielementary_functions_la-sci_spones.lo `test -f 'sci_gateway/c/sci_spones.c' || echo '$(srcdir)/'`sci_gateway/c/sci_spones.c
@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/libscielementary_functions_la-sci_spones.Tpo $(DEPDIR)/libscielementary_functions_la-sci_spones.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='sci_gateway/c/sci_spones.c' object='libscielementary_functions_la-sci_spones.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) $(libscielementary_functions_la_CPPFLAGS) $(CPPFLAGS) $(libscielementary_functions_la_CFLAGS) $(CFLAGS) -c -o libscielementary_functions_la-sci_spones.lo `test -f 'sci_gateway/c/sci_spones.c' || echo '$(srcdir)/'`sci_gateway/c/sci_spones.c
libscielementary_functions_la-sci_kron.lo: sci_gateway/c/sci_kron.c
@am__fastdepCC_TRUE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libscielementary_functions_la_CPPFLAGS) $(CPPFLAGS) $(libscielementary_functions_la_CFLAGS) $(CFLAGS) -MT libscielementary_functions_la-sci_kron.lo -MD -MP -MF $(DEPDIR)/libscielementary_functions_la-sci_kron.Tpo -c -o libscielementary_functions_la-sci_kron.lo `test -f 'sci_gateway/c/sci_kron.c' || echo '$(srcdir)/'`sci_gateway/c/sci_kron.c
@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/libscielementary_functions_la-sci_kron.Tpo $(DEPDIR)/libscielementary_functions_la-sci_kron.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='sci_gateway/c/sci_kron.c' object='libscielementary_functions_la-sci_kron.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) $(libscielementary_functions_la_CPPFLAGS) $(CPPFLAGS) $(libscielementary_functions_la_CFLAGS) $(CFLAGS) -c -o libscielementary_functions_la-sci_kron.lo `test -f 'sci_gateway/c/sci_kron.c' || echo '$(srcdir)/'`sci_gateway/c/sci_kron.c
libscielementary_functions_la-sci_cumprod.lo: sci_gateway/c/sci_cumprod.c
@am__fastdepCC_TRUE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libscielementary_functions_la_CPPFLAGS) $(CPPFLAGS) $(libscielementary_functions_la_CFLAGS) $(CFLAGS) -MT libscielementary_functions_la-sci_cumprod.lo -MD -MP -MF $(DEPDIR)/libscielementary_functions_la-sci_cumprod.Tpo -c -o libscielementary_functions_la-sci_cumprod.lo `test -f 'sci_gateway/c/sci_cumprod.c' || echo '$(srcdir)/'`sci_gateway/c/sci_cumprod.c
@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/libscielementary_functions_la-sci_cumprod.Tpo $(DEPDIR)/libscielementary_functions_la-sci_cumprod.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='sci_gateway/c/sci_cumprod.c' object='libscielementary_functions_la-sci_cumprod.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) $(libscielementary_functions_la_CPPFLAGS) $(CPPFLAGS) $(libscielementary_functions_la_CFLAGS) $(CFLAGS) -c -o libscielementary_functions_la-sci_cumprod.lo `test -f 'sci_gateway/c/sci_cumprod.c' || echo '$(srcdir)/'`sci_gateway/c/sci_cumprod.c
libscielementary_functions_la-sci_cumsum.lo: sci_gateway/c/sci_cumsum.c
@am__fastdepCC_TRUE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libscielementary_functions_la_CPPFLAGS) $(CPPFLAGS) $(libscielementary_functions_la_CFLAGS) $(CFLAGS) -MT libscielementary_functions_la-sci_cumsum.lo -MD -MP -MF $(DEPDIR)/libscielementary_functions_la-sci_cumsum.Tpo -c -o libscielementary_functions_la-sci_cumsum.lo `test -f 'sci_gateway/c/sci_cumsum.c' || echo '$(srcdir)/'`sci_gateway/c/sci_cumsum.c
@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/libscielementary_functions_la-sci_cumsum.Tpo $(DEPDIR)/libscielementary_functions_la-sci_cumsum.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='sci_gateway/c/sci_cumsum.c' object='libscielementary_functions_la-sci_cumsum.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) $(libscielementary_functions_la_CPPFLAGS) $(CPPFLAGS) $(libscielementary_functions_la_CFLAGS) $(CFLAGS) -c -o libscielementary_functions_la-sci_cumsum.lo `test -f 'sci_gateway/c/sci_cumsum.c' || echo '$(srcdir)/'`sci_gateway/c/sci_cumsum.c
libscielementary_functions_la-sci_dsearch.lo: sci_gateway/c/sci_dsearch.c
@am__fastdepCC_TRUE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libscielementary_functions_la_CPPFLAGS) $(CPPFLAGS) $(libscielementary_functions_la_CFLAGS) $(CFLAGS) -MT libscielementary_functions_la-sci_dsearch.lo -MD -MP -MF $(DEPDIR)/libscielementary_functions_la-sci_dsearch.Tpo -c -o libscielementary_functions_la-sci_dsearch.lo `test -f 'sci_gateway/c/sci_dsearch.c' || echo '$(srcdir)/'`sci_gateway/c/sci_dsearch.c
@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/libscielementary_functions_la-sci_dsearch.Tpo $(DEPDIR)/libscielementary_functions_la-sci_dsearch.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='sci_gateway/c/sci_dsearch.c' object='libscielementary_functions_la-sci_dsearch.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) $(libscielementary_functions_la_CPPFLAGS) $(CPPFLAGS) $(libscielementary_functions_la_CFLAGS) $(CFLAGS) -c -o libscielementary_functions_la-sci_dsearch.lo `test -f 'sci_gateway/c/sci_dsearch.c' || echo '$(srcdir)/'`sci_gateway/c/sci_dsearch.c
libscielementary_functions_la-sci_nearfloat.lo: sci_gateway/c/sci_nearfloat.c
@am__fastdepCC_TRUE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libscielementary_functions_la_CPPFLAGS) $(CPPFLAGS) $(libscielementary_functions_la_CFLAGS) $(CFLAGS) -MT libscielementary_functions_la-sci_nearfloat.lo -MD -MP -MF $(DEPDIR)/libscielementary_functions_la-sci_nearfloat.Tpo -c -o libscielementary_functions_la-sci_nearfloat.lo `test -f 'sci_gateway/c/sci_nearfloat.c' || echo '$(srcdir)/'`sci_gateway/c/sci_nearfloat.c
@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/libscielementary_functions_la-sci_nearfloat.Tpo $(DEPDIR)/libscielementary_functions_la-sci_nearfloat.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='sci_gateway/c/sci_nearfloat.c' object='libscielementary_functions_la-sci_nearfloat.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) $(libscielementary_functions_la_CPPFLAGS) $(CPPFLAGS) $(libscielementary_functions_la_CFLAGS) $(CFLAGS) -c -o libscielementary_functions_la-sci_nearfloat.lo `test -f 'sci_gateway/c/sci_nearfloat.c' || echo '$(srcdir)/'`sci_gateway/c/sci_nearfloat.c
libscielementary_functions_la-sci_chinesehat.lo: sci_gateway/c/sci_chinesehat.c
@am__fastdepCC_TRUE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libscielementary_functions_la_CPPFLAGS) $(CPPFLAGS) $(libscielementary_functions_la_CFLAGS) $(CFLAGS) -MT libscielementary_functions_la-sci_chinesehat.lo -MD -MP -MF $(DEPDIR)/libscielementary_functions_la-sci_chinesehat.Tpo -c -o libscielementary_functions_la-sci_chinesehat.lo `test -f 'sci_gateway/c/sci_chinesehat.c' || echo '$(srcdir)/'`sci_gateway/c/sci_chinesehat.c
@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/libscielementary_functions_la-sci_chinesehat.Tpo $(DEPDIR)/libscielementary_functions_la-sci_chinesehat.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='sci_gateway/c/sci_chinesehat.c' object='libscielementary_functions_la-sci_chinesehat.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) $(libscielementary_functions_la_CPPFLAGS) $(CPPFLAGS) $(libscielementary_functions_la_CFLAGS) $(CFLAGS) -c -o libscielementary_functions_la-sci_chinesehat.lo `test -f 'sci_gateway/c/sci_chinesehat.c' || echo '$(srcdir)/'`sci_gateway/c/sci_chinesehat.c
libscielementary_functions_la-sci_isreal.lo: sci_gateway/c/sci_isreal.c
@am__fastdepCC_TRUE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libscielementary_functions_la_CPPFLAGS) $(CPPFLAGS) $(libscielementary_functions_la_CFLAGS) $(CFLAGS) -MT libscielementary_functions_la-sci_isreal.lo -MD -MP -MF $(DEPDIR)/libscielementary_functions_la-sci_isreal.Tpo -c -o libscielementary_functions_la-sci_isreal.lo `test -f 'sci_gateway/c/sci_isreal.c' || echo '$(srcdir)/'`sci_gateway/c/sci_isreal.c
@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/libscielementary_functions_la-sci_isreal.Tpo $(DEPDIR)/libscielementary_functions_la-sci_isreal.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='sci_gateway/c/sci_isreal.c' object='libscielementary_functions_la-sci_isreal.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) $(libscielementary_functions_la_CPPFLAGS) $(CPPFLAGS) $(libscielementary_functions_la_CFLAGS) $(CFLAGS) -c -o libscielementary_functions_la-sci_isreal.lo `test -f 'sci_gateway/c/sci_isreal.c' || echo '$(srcdir)/'`sci_gateway/c/sci_isreal.c
libscielementary_functions_la-sci_floor.lo: sci_gateway/c/sci_floor.c
@am__fastdepCC_TRUE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libscielementary_functions_la_CPPFLAGS) $(CPPFLAGS) $(libscielementary_functions_la_CFLAGS) $(CFLAGS) -MT libscielementary_functions_la-sci_floor.lo -MD -MP -MF $(DEPDIR)/libscielementary_functions_la-sci_floor.Tpo -c -o libscielementary_functions_la-sci_floor.lo `test -f 'sci_gateway/c/sci_floor.c' || echo '$(srcdir)/'`sci_gateway/c/sci_floor.c
@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/libscielementary_functions_la-sci_floor.Tpo $(DEPDIR)/libscielementary_functions_la-sci_floor.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='sci_gateway/c/sci_floor.c' object='libscielementary_functions_la-sci_floor.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) $(libscielementary_functions_la_CPPFLAGS) $(CPPFLAGS) $(libscielementary_functions_la_CFLAGS) $(CFLAGS) -c -o libscielementary_functions_la-sci_floor.lo `test -f 'sci_gateway/c/sci_floor.c' || echo '$(srcdir)/'`sci_gateway/c/sci_floor.c
libscielementary_functions_la-sci_real.lo: sci_gateway/c/sci_real.c
@am__fastdepCC_TRUE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libscielementary_functions_la_CPPFLAGS) $(CPPFLAGS) $(libscielementary_functions_la_CFLAGS) $(CFLAGS) -MT libscielementary_functions_la-sci_real.lo -MD -MP -MF $(DEPDIR)/libscielementary_functions_la-sci_real.Tpo -c -o libscielementary_functions_la-sci_real.lo `test -f 'sci_gateway/c/sci_real.c' || echo '$(srcdir)/'`sci_gateway/c/sci_real.c
@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/libscielementary_functions_la-sci_real.Tpo $(DEPDIR)/libscielementary_functions_la-sci_real.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='sci_gateway/c/sci_real.c' object='libscielementary_functions_la-sci_real.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) $(libscielementary_functions_la_CPPFLAGS) $(CPPFLAGS) $(libscielementary_functions_la_CFLAGS) $(CFLAGS) -c -o libscielementary_functions_la-sci_real.lo `test -f 'sci_gateway/c/sci_real.c' || echo '$(srcdir)/'`sci_gateway/c/sci_real.c
libscielementary_functions_la-sci_round.lo: sci_gateway/c/sci_round.c
@am__fastdepCC_TRUE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libscielementary_functions_la_CPPFLAGS) $(CPPFLAGS) $(libscielementary_functions_la_CFLAGS) $(CFLAGS) -MT libscielementary_functions_la-sci_round.lo -MD -MP -MF $(DEPDIR)/libscielementary_functions_la-sci_round.Tpo -c -o libscielementary_functions_la-sci_round.lo `test -f 'sci_gateway/c/sci_round.c' || echo '$(srcdir)/'`sci_gateway/c/sci_round.c
@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/libscielementary_functions_la-sci_round.Tpo $(DEPDIR)/libscielementary_functions_la-sci_round.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='sci_gateway/c/sci_round.c' object='libscielementary_functions_la-sci_round.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) $(libscielementary_functions_la_CPPFLAGS) $(CPPFLAGS) $(libscielementary_functions_la_CFLAGS) $(CFLAGS) -c -o libscielementary_functions_la-sci_round.lo `test -f 'sci_gateway/c/sci_round.c' || echo '$(srcdir)/'`sci_gateway/c/sci_round.c
libscielementary_functions_la-sci_conj.lo: sci_gateway/c/sci_conj.c
@am__fastdepCC_TRUE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libscielementary_functions_la_CPPFLAGS) $(CPPFLAGS) $(libscielementary_functions_la_CFLAGS) $(CFLAGS) -MT libscielementary_functions_la-sci_conj.lo -MD -MP -MF $(DEPDIR)/libscielementary_functions_la-sci_conj.Tpo -c -o libscielementary_functions_la-sci_conj.lo `test -f 'sci_gateway/c/sci_conj.c' || echo '$(srcdir)/'`sci_gateway/c/sci_conj.c
@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/libscielementary_functions_la-sci_conj.Tpo $(DEPDIR)/libscielementary_functions_la-sci_conj.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='sci_gateway/c/sci_conj.c' object='libscielementary_functions_la-sci_conj.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) $(libscielementary_functions_la_CPPFLAGS) $(CPPFLAGS) $(libscielementary_functions_la_CFLAGS) $(CFLAGS) -c -o libscielementary_functions_la-sci_conj.lo `test -f 'sci_gateway/c/sci_conj.c' || echo '$(srcdir)/'`sci_gateway/c/sci_conj.c
libscielementary_functions_la-sci_int.lo: sci_gateway/c/sci_int.c
@am__fastdepCC_TRUE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libscielementary_functions_la_CPPFLAGS) $(CPPFLAGS) $(libscielementary_functions_la_CFLAGS) $(CFLAGS) -MT libscielementary_functions_la-sci_int.lo -MD -MP -MF $(DEPDIR)/libscielementary_functions_la-sci_int.Tpo -c -o libscielementary_functions_la-sci_int.lo `test -f 'sci_gateway/c/sci_int.c' || echo '$(srcdir)/'`sci_gateway/c/sci_int.c
@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/libscielementary_functions_la-sci_int.Tpo $(DEPDIR)/libscielementary_functions_la-sci_int.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='sci_gateway/c/sci_int.c' object='libscielementary_functions_la-sci_int.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) $(libscielementary_functions_la_CPPFLAGS) $(CPPFLAGS) $(libscielementary_functions_la_CFLAGS) $(CFLAGS) -c -o libscielementary_functions_la-sci_int.lo `test -f 'sci_gateway/c/sci_int.c' || echo '$(srcdir)/'`sci_gateway/c/sci_int.c
libscielementary_functions_la-sci_imult.lo: sci_gateway/c/sci_imult.c
@am__fastdepCC_TRUE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libscielementary_functions_la_CPPFLAGS) $(CPPFLAGS) $(libscielementary_functions_la_CFLAGS) $(CFLAGS) -MT libscielementary_functions_la-sci_imult.lo -MD -MP -MF $(DEPDIR)/libscielementary_functions_la-sci_imult.Tpo -c -o libscielementary_functions_la-sci_imult.lo `test -f 'sci_gateway/c/sci_imult.c' || echo '$(srcdir)/'`sci_gateway/c/sci_imult.c
@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/libscielementary_functions_la-sci_imult.Tpo $(DEPDIR)/libscielementary_functions_la-sci_imult.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='sci_gateway/c/sci_imult.c' object='libscielementary_functions_la-sci_imult.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) $(libscielementary_functions_la_CPPFLAGS) $(CPPFLAGS) $(libscielementary_functions_la_CFLAGS) $(CFLAGS) -c -o libscielementary_functions_la-sci_imult.lo `test -f 'sci_gateway/c/sci_imult.c' || echo '$(srcdir)/'`sci_gateway/c/sci_imult.c
libscielementary_functions_la-sci_exp.lo: sci_gateway/c/sci_exp.c
@am__fastdepCC_TRUE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libscielementary_functions_la_CPPFLAGS) $(CPPFLAGS) $(libscielementary_functions_la_CFLAGS) $(CFLAGS) -MT libscielementary_functions_la-sci_exp.lo -MD -MP -MF $(DEPDIR)/libscielementary_functions_la-sci_exp.Tpo -c -o libscielementary_functions_la-sci_exp.lo `test -f 'sci_gateway/c/sci_exp.c' || echo '$(srcdir)/'`sci_gateway/c/sci_exp.c
@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/libscielementary_functions_la-sci_exp.Tpo $(DEPDIR)/libscielementary_functions_la-sci_exp.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='sci_gateway/c/sci_exp.c' object='libscielementary_functions_la-sci_exp.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) $(libscielementary_functions_la_CPPFLAGS) $(CPPFLAGS) $(libscielementary_functions_la_CFLAGS) $(CFLAGS) -c -o libscielementary_functions_la-sci_exp.lo `test -f 'sci_gateway/c/sci_exp.c' || echo '$(srcdir)/'`sci_gateway/c/sci_exp.c
libscielementary_functions_la-sci_maxi.lo: sci_gateway/c/sci_maxi.c
@am__fastdepCC_TRUE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libscielementary_functions_la_CPPFLAGS) $(CPPFLAGS) $(libscielementary_functions_la_CFLAGS) $(CFLAGS) -MT libscielementary_functions_la-sci_maxi.lo -MD -MP -MF $(DEPDIR)/libscielementary_functions_la-sci_maxi.Tpo -c -o libscielementary_functions_la-sci_maxi.lo `test -f 'sci_gateway/c/sci_maxi.c' || echo '$(srcdir)/'`sci_gateway/c/sci_maxi.c
@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/libscielementary_functions_la-sci_maxi.Tpo $(DEPDIR)/libscielementary_functions_la-sci_maxi.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='sci_gateway/c/sci_maxi.c' object='libscielementary_functions_la-sci_maxi.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) $(libscielementary_functions_la_CPPFLAGS) $(CPPFLAGS) $(libscielementary_functions_la_CFLAGS) $(CFLAGS) -c -o libscielementary_functions_la-sci_maxi.lo `test -f 'sci_gateway/c/sci_maxi.c' || echo '$(srcdir)/'`sci_gateway/c/sci_maxi.c
libscielementary_functions_la-sci_gsort.lo: sci_gateway/c/sci_gsort.c
@am__fastdepCC_TRUE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libscielementary_functions_la_CPPFLAGS) $(CPPFLAGS) $(libscielementary_functions_la_CFLAGS) $(CFLAGS) -MT libscielementary_functions_la-sci_gsort.lo -MD -MP -MF $(DEPDIR)/libscielementary_functions_la-sci_gsort.Tpo -c -o libscielementary_functions_la-sci_gsort.lo `test -f 'sci_gateway/c/sci_gsort.c' || echo '$(srcdir)/'`sci_gateway/c/sci_gsort.c
@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/libscielementary_functions_la-sci_gsort.Tpo $(DEPDIR)/libscielementary_functions_la-sci_gsort.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='sci_gateway/c/sci_gsort.c' object='libscielementary_functions_la-sci_gsort.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) $(libscielementary_functions_la_CPPFLAGS) $(CPPFLAGS) $(libscielementary_functions_la_CFLAGS) $(CFLAGS) -c -o libscielementary_functions_la-sci_gsort.lo `test -f 'sci_gateway/c/sci_gsort.c' || echo '$(srcdir)/'`sci_gateway/c/sci_gsort.c
libscielementary_functions_la-sci_sort.lo: sci_gateway/c/sci_sort.c
@am__fastdepCC_TRUE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libscielementary_functions_la_CPPFLAGS) $(CPPFLAGS) $(libscielementary_functions_la_CFLAGS) $(CFLAGS) -MT libscielementary_functions_la-sci_sort.lo -MD -MP -MF $(DEPDIR)/libscielementary_functions_la-sci_sort.Tpo -c -o libscielementary_functions_la-sci_sort.lo `test -f 'sci_gateway/c/sci_sort.c' || echo '$(srcdir)/'`sci_gateway/c/sci_sort.c
@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/libscielementary_functions_la-sci_sort.Tpo $(DEPDIR)/libscielementary_functions_la-sci_sort.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='sci_gateway/c/sci_sort.c' object='libscielementary_functions_la-sci_sort.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) $(libscielementary_functions_la_CPPFLAGS) $(CPPFLAGS) $(libscielementary_functions_la_CFLAGS) $(CFLAGS) -c -o libscielementary_functions_la-sci_sort.lo `test -f 'sci_gateway/c/sci_sort.c' || echo '$(srcdir)/'`sci_gateway/c/sci_sort.c
libscielementary_functions_la-sci_isequalbitwise.lo: sci_gateway/c/sci_isequalbitwise.c
@am__fastdepCC_TRUE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libscielementary_functions_la_CPPFLAGS) $(CPPFLAGS) $(libscielementary_functions_la_CFLAGS) $(CFLAGS) -MT libscielementary_functions_la-sci_isequalbitwise.lo -MD -MP -MF $(DEPDIR)/libscielementary_functions_la-sci_isequalbitwise.Tpo -c -o libscielementary_functions_la-sci_isequalbitwise.lo `test -f 'sci_gateway/c/sci_isequalbitwise.c' || echo '$(srcdir)/'`sci_gateway/c/sci_isequalbitwise.c
@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/libscielementary_functions_la-sci_isequalbitwise.Tpo $(DEPDIR)/libscielementary_functions_la-sci_isequalbitwise.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='sci_gateway/c/sci_isequalbitwise.c' object='libscielementary_functions_la-sci_isequalbitwise.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) $(libscielementary_functions_la_CPPFLAGS) $(CPPFLAGS) $(libscielementary_functions_la_CFLAGS) $(CFLAGS) -c -o libscielementary_functions_la-sci_isequalbitwise.lo `test -f 'sci_gateway/c/sci_isequalbitwise.c' || echo '$(srcdir)/'`sci_gateway/c/sci_isequalbitwise.c
.f.o:
$(F77COMPILE) -c -o $@ $<
.f.obj:
$(F77COMPILE) -c -o $@ `$(CYGPATH_W) '$<'`
.f.lo:
$(LTF77COMPILE) -c -o $@ $<
libscielementary_functions_la-zwrsk.lo: src/fortran/slatec/zwrsk.f
$(LIBTOOL) --tag=F77 $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(F77) $(libscielementary_functions_la_FFLAGS) $(FFLAGS) -c -o libscielementary_functions_la-zwrsk.lo `test -f 'src/fortran/slatec/zwrsk.f' || echo '$(srcdir)/'`src/fortran/slatec/zwrsk.f
libscielementary_functions_la-d9b0mp.lo: src/fortran/slatec/d9b0mp.f
$(LIBTOOL) --tag=F77 $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(F77) $(libscielementary_functions_la_FFLAGS) $(FFLAGS) -c -o libscielementary_functions_la-d9b0mp.lo `test -f 'src/fortran/slatec/d9b0mp.f' || echo '$(srcdir)/'`src/fortran/slatec/d9b0mp.f
libscielementary_functions_la-d9b1mp.lo: src/fortran/slatec/d9b1mp.f
$(LIBTOOL) --tag=F77 $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(F77) $(libscielementary_functions_la_FFLAGS) $(FFLAGS) -c -o libscielementary_functions_la-d9b1mp.lo `test -f 'src/fortran/slatec/d9b1mp.f' || echo '$(srcdir)/'`src/fortran/slatec/d9b1mp.f
libscielementary_functions_la-d9knus.lo: src/fortran/slatec/d9knus.f
$(LIBTOOL) --tag=F77 $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(F77) $(libscielementary_functions_la_FFLAGS) $(FFLAGS) -c -o libscielementary_functions_la-d9knus.lo `test -f 'src/fortran/slatec/d9knus.f' || echo '$(srcdir)/'`src/fortran/slatec/d9knus.f
libscielementary_functions_la-d9lgmc.lo: src/fortran/slatec/d9lgmc.f
$(LIBTOOL) --tag=F77 $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(F77) $(libscielementary_functions_la_FFLAGS) $(FFLAGS) -c -o libscielementary_functions_la-d9lgmc.lo `test -f 'src/fortran/slatec/d9lgmc.f' || echo '$(srcdir)/'`src/fortran/slatec/d9lgmc.f
libscielementary_functions_la-dasyik.lo: src/fortran/slatec/dasyik.f
$(LIBTOOL) --tag=F77 $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(F77) $(libscielementary_functions_la_FFLAGS) $(FFLAGS) -c -o libscielementary_functions_la-dasyik.lo `test -f 'src/fortran/slatec/dasyik.f' || echo '$(srcdir)/'`src/fortran/slatec/dasyik.f
libscielementary_functions_la-dasyjy.lo: src/fortran/slatec/dasyjy.f
$(LIBTOOL) --tag=F77 $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(F77) $(libscielementary_functions_la_FFLAGS) $(FFLAGS) -c -o libscielementary_functions_la-dasyjy.lo `test -f 'src/fortran/slatec/dasyjy.f' || echo '$(srcdir)/'`src/fortran/slatec/dasyjy.f
libscielementary_functions_la-dbdiff.lo: src/fortran/slatec/dbdiff.f
$(LIBTOOL) --tag=F77 $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(F77) $(libscielementary_functions_la_FFLAGS) $(FFLAGS) -c -o libscielementary_functions_la-dbdiff.lo `test -f 'src/fortran/slatec/dbdiff.f' || echo '$(srcdir)/'`src/fortran/slatec/dbdiff.f
libscielementary_functions_la-dbesi0.lo: src/fortran/slatec/dbesi0.f
$(LIBTOOL) --tag=F77 $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(F77) $(libscielementary_functions_la_FFLAGS) $(FFLAGS) -c -o libscielementary_functions_la-dbesi0.lo `test -f 'src/fortran/slatec/dbesi0.f' || echo '$(srcdir)/'`src/fortran/slatec/dbesi0.f
libscielementary_functions_la-dbesi1.lo: src/fortran/slatec/dbesi1.f
$(LIBTOOL) --tag=F77 $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(F77) $(libscielementary_functions_la_FFLAGS) $(FFLAGS) -c -o libscielementary_functions_la-dbesi1.lo `test -f 'src/fortran/slatec/dbesi1.f' || echo '$(srcdir)/'`src/fortran/slatec/dbesi1.f
libscielementary_functions_la-dbesi.lo: src/fortran/slatec/dbesi.f
$(LIBTOOL) --tag=F77 $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(F77) $(libscielementary_functions_la_FFLAGS) $(FFLAGS) -c -o libscielementary_functions_la-dbesi.lo `test -f 'src/fortran/slatec/dbesi.f' || echo '$(srcdir)/'`src/fortran/slatec/dbesi.f
libscielementary_functions_la-dbesj0.lo: src/fortran/slatec/dbesj0.f
$(LIBTOOL) --tag=F77 $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(F77) $(libscielementary_functions_la_FFLAGS) $(FFLAGS) -c -o libscielementary_functions_la-dbesj0.lo `test -f 'src/fortran/slatec/dbesj0.f' || echo '$(srcdir)/'`src/fortran/slatec/dbesj0.f
libscielementary_functions_la-dbesj1.lo: src/fortran/slatec/dbesj1.f
$(LIBTOOL) --tag=F77 $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(F77) $(libscielementary_functions_la_FFLAGS) $(FFLAGS) -c -o libscielementary_functions_la-dbesj1.lo `test -f 'src/fortran/slatec/dbesj1.f' || echo '$(srcdir)/'`src/fortran/slatec/dbesj1.f
libscielementary_functions_la-dbesj.lo: src/fortran/slatec/dbesj.f
$(LIBTOOL) --tag=F77 $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(F77) $(libscielementary_functions_la_FFLAGS) $(FFLAGS) -c -o libscielementary_functions_la-dbesj.lo `test -f 'src/fortran/slatec/dbesj.f' || echo '$(srcdir)/'`src/fortran/slatec/dbesj.f
libscielementary_functions_la-dbesk0.lo: src/fortran/slatec/dbesk0.f
$(LIBTOOL) --tag=F77 $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(F77) $(libscielementary_functions_la_FFLAGS) $(FFLAGS) -c -o libscielementary_functions_la-dbesk0.lo `test -f 'src/fortran/slatec/dbesk0.f' || echo '$(srcdir)/'`src/fortran/slatec/dbesk0.f
libscielementary_functions_la-dbesk1.lo: src/fortran/slatec/dbesk1.f
$(LIBTOOL) --tag=F77 $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(F77) $(libscielementary_functions_la_FFLAGS) $(FFLAGS) -c -o libscielementary_functions_la-dbesk1.lo `test -f 'src/fortran/slatec/dbesk1.f' || echo '$(srcdir)/'`src/fortran/slatec/dbesk1.f
libscielementary_functions_la-dbesk.lo: src/fortran/slatec/dbesk.f
$(LIBTOOL) --tag=F77 $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(F77) $(libscielementary_functions_la_FFLAGS) $(FFLAGS) -c -o libscielementary_functions_la-dbesk.lo `test -f 'src/fortran/slatec/dbesk.f' || echo '$(srcdir)/'`src/fortran/slatec/dbesk.f
libscielementary_functions_la-dbesks.lo: src/fortran/slatec/dbesks.f
$(LIBTOOL) --tag=F77 $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(F77) $(libscielementary_functions_la_FFLAGS) $(FFLAGS) -c -o libscielementary_functions_la-dbesks.lo `test -f 'src/fortran/slatec/dbesks.f' || echo '$(srcdir)/'`src/fortran/slatec/dbesks.f
libscielementary_functions_la-dbesy0.lo: src/fortran/slatec/dbesy0.f
$(LIBTOOL) --tag=F77 $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(F77) $(libscielementary_functions_la_FFLAGS) $(FFLAGS) -c -o libscielementary_functions_la-dbesy0.lo `test -f 'src/fortran/slatec/dbesy0.f' || echo '$(srcdir)/'`src/fortran/slatec/dbesy0.f
libscielementary_functions_la-dbesy1.lo: src/fortran/slatec/dbesy1.f
$(LIBTOOL) --tag=F77 $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(F77) $(libscielementary_functions_la_FFLAGS) $(FFLAGS) -c -o libscielementary_functions_la-dbesy1.lo `test -f 'src/fortran/slatec/dbesy1.f' || echo '$(srcdir)/'`src/fortran/slatec/dbesy1.f
libscielementary_functions_la-dbesy.lo: src/fortran/slatec/dbesy.f
$(LIBTOOL) --tag=F77 $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(F77) $(libscielementary_functions_la_FFLAGS) $(FFLAGS) -c -o libscielementary_functions_la-dbesy.lo `test -f 'src/fortran/slatec/dbesy.f' || echo '$(srcdir)/'`src/fortran/slatec/dbesy.f
libscielementary_functions_la-dbkias.lo: src/fortran/slatec/dbkias.f
$(LIBTOOL) --tag=F77 $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(F77) $(libscielementary_functions_la_FFLAGS) $(FFLAGS) -c -o libscielementary_functions_la-dbkias.lo `test -f 'src/fortran/slatec/dbkias.f' || echo '$(srcdir)/'`src/fortran/slatec/dbkias.f
libscielementary_functions_la-dbkisr.lo: src/fortran/slatec/dbkisr.f
$(LIBTOOL) --tag=F77 $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(F77) $(libscielementary_functions_la_FFLAGS) $(FFLAGS) -c -o libscielementary_functions_la-dbkisr.lo `test -f 'src/fortran/slatec/dbkisr.f' || echo '$(srcdir)/'`src/fortran/slatec/dbkisr.f
libscielementary_functions_la-dbsi0e.lo: src/fortran/slatec/dbsi0e.f
$(LIBTOOL) --tag=F77 $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(F77) $(libscielementary_functions_la_FFLAGS) $(FFLAGS) -c -o libscielementary_functions_la-dbsi0e.lo `test -f 'src/fortran/slatec/dbsi0e.f' || echo '$(srcdir)/'`src/fortran/slatec/dbsi0e.f
libscielementary_functions_la-dbsi1e.lo: src/fortran/slatec/dbsi1e.f
$(LIBTOOL) --tag=F77 $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(F77) $(libscielementary_functions_la_FFLAGS) $(FFLAGS) -c -o libscielementary_functions_la-dbsi1e.lo `test -f 'src/fortran/slatec/dbsi1e.f' || echo '$(srcdir)/'`src/fortran/slatec/dbsi1e.f
libscielementary_functions_la-dbsk0e.lo: src/fortran/slatec/dbsk0e.f
$(LIBTOOL) --tag=F77 $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(F77) $(libscielementary_functions_la_FFLAGS) $(FFLAGS) -c -o libscielementary_functions_la-dbsk0e.lo `test -f 'src/fortran/slatec/dbsk0e.f' || echo '$(srcdir)/'`src/fortran/slatec/dbsk0e.f
libscielementary_functions_la-dbsk1e.lo: src/fortran/slatec/dbsk1e.f
$(LIBTOOL) --tag=F77 $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(F77) $(libscielementary_functions_la_FFLAGS) $(FFLAGS) -c -o libscielementary_functions_la-dbsk1e.lo `test -f 'src/fortran/slatec/dbsk1e.f' || echo '$(srcdir)/'`src/fortran/slatec/dbsk1e.f
libscielementary_functions_la-dbskes.lo: src/fortran/slatec/dbskes.f
$(LIBTOOL) --tag=F77 $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(F77) $(libscielementary_functions_la_FFLAGS) $(FFLAGS) -c -o libscielementary_functions_la-dbskes.lo `test -f 'src/fortran/slatec/dbskes.f' || echo '$(srcdir)/'`src/fortran/slatec/dbskes.f
libscielementary_functions_la-dbskin.lo: src/fortran/slatec/dbskin.f
$(LIBTOOL) --tag=F77 $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(F77) $(libscielementary_functions_la_FFLAGS) $(FFLAGS) -c -o libscielementary_functions_la-dbskin.lo `test -f 'src/fortran/slatec/dbskin.f' || echo '$(srcdir)/'`src/fortran/slatec/dbskin.f
libscielementary_functions_la-dbsknu.lo: src/fortran/slatec/dbsknu.f
$(LIBTOOL) --tag=F77 $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(F77) $(libscielementary_functions_la_FFLAGS) $(FFLAGS) -c -o libscielementary_functions_la-dbsknu.lo `test -f 'src/fortran/slatec/dbsknu.f' || echo '$(srcdir)/'`src/fortran/slatec/dbsknu.f
libscielementary_functions_la-dbsynu.lo: src/fortran/slatec/dbsynu.f
$(LIBTOOL) --tag=F77 $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(F77) $(libscielementary_functions_la_FFLAGS) $(FFLAGS) -c -o libscielementary_functions_la-dbsynu.lo `test -f 'src/fortran/slatec/dbsynu.f' || echo '$(srcdir)/'`src/fortran/slatec/dbsynu.f
libscielementary_functions_la-dcsevl.lo: src/fortran/slatec/dcsevl.f
$(LIBTOOL) --tag=F77 $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(F77) $(libscielementary_functions_la_FFLAGS) $(FFLAGS) -c -o libscielementary_functions_la-dcsevl.lo `test -f 'src/fortran/slatec/dcsevl.f' || echo '$(srcdir)/'`src/fortran/slatec/dcsevl.f
libscielementary_functions_la-dexint.lo: src/fortran/slatec/dexint.f
$(LIBTOOL) --tag=F77 $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(F77) $(libscielementary_functions_la_FFLAGS) $(FFLAGS) -c -o libscielementary_functions_la-dexint.lo `test -f 'src/fortran/slatec/dexint.f' || echo '$(srcdir)/'`src/fortran/slatec/dexint.f
libscielementary_functions_la-dgamlm.lo: src/fortran/slatec/dgamlm.f
$(LIBTOOL) --tag=F77 $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(F77) $(libscielementary_functions_la_FFLAGS) $(FFLAGS) -c -o libscielementary_functions_la-dgamlm.lo `test -f 'src/fortran/slatec/dgamlm.f' || echo '$(srcdir)/'`src/fortran/slatec/dgamlm.f
libscielementary_functions_la-dgamln.lo: src/fortran/slatec/dgamln.f
$(LIBTOOL) --tag=F77 $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(F77) $(libscielementary_functions_la_FFLAGS) $(FFLAGS) -c -o libscielementary_functions_la-dgamln.lo `test -f 'src/fortran/slatec/dgamln.f' || echo '$(srcdir)/'`src/fortran/slatec/dgamln.f
libscielementary_functions_la-dgamma.lo: src/fortran/slatec/dgamma.f
$(LIBTOOL) --tag=F77 $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(F77) $(libscielementary_functions_la_FFLAGS) $(FFLAGS) -c -o libscielementary_functions_la-dgamma.lo `test -f 'src/fortran/slatec/dgamma.f' || echo '$(srcdir)/'`src/fortran/slatec/dgamma.f
libscielementary_functions_la-dgamrn.lo: src/fortran/slatec/dgamrn.f
$(LIBTOOL) --tag=F77 $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(F77) $(libscielementary_functions_la_FFLAGS) $(FFLAGS) -c -o libscielementary_functions_la-dgamrn.lo `test -f 'src/fortran/slatec/dgamrn.f' || echo '$(srcdir)/'`src/fortran/slatec/dgamrn.f
libscielementary_functions_la-dhkseq.lo: src/fortran/slatec/dhkseq.f
$(LIBTOOL) --tag=F77 $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(F77) $(libscielementary_functions_la_FFLAGS) $(FFLAGS) -c -o libscielementary_functions_la-dhkseq.lo `test -f 'src/fortran/slatec/dhkseq.f' || echo '$(srcdir)/'`src/fortran/slatec/dhkseq.f
libscielementary_functions_la-djairy.lo: src/fortran/slatec/djairy.f
$(LIBTOOL) --tag=F77 $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(F77) $(libscielementary_functions_la_FFLAGS) $(FFLAGS) -c -o libscielementary_functions_la-djairy.lo `test -f 'src/fortran/slatec/djairy.f' || echo '$(srcdir)/'`src/fortran/slatec/djairy.f
libscielementary_functions_la-dpsixn.lo: src/fortran/slatec/dpsixn.f
$(LIBTOOL) --tag=F77 $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(F77) $(libscielementary_functions_la_FFLAGS) $(FFLAGS) -c -o libscielementary_functions_la-dpsixn.lo `test -f 'src/fortran/slatec/dpsixn.f' || echo '$(srcdir)/'`src/fortran/slatec/dpsixn.f
libscielementary_functions_la-dxlegf.lo: src/fortran/slatec/dxlegf.f
$(LIBTOOL) --tag=F77 $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(F77) $(libscielementary_functions_la_FFLAGS) $(FFLAGS) -c -o libscielementary_functions_la-dxlegf.lo `test -f 'src/fortran/slatec/dxlegf.f' || echo '$(srcdir)/'`src/fortran/slatec/dxlegf.f
libscielementary_functions_la-dyairy.lo: src/fortran/slatec/dyairy.f
$(LIBTOOL) --tag=F77 $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(F77) $(libscielementary_functions_la_FFLAGS) $(FFLAGS) -c -o libscielementary_functions_la-dyairy.lo `test -f 'src/fortran/slatec/dyairy.f' || echo '$(srcdir)/'`src/fortran/slatec/dyairy.f
libscielementary_functions_la-fdump.lo: src/fortran/slatec/fdump.f
$(LIBTOOL) --tag=F77 $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(F77) $(libscielementary_functions_la_FFLAGS) $(FFLAGS) -c -o libscielementary_functions_la-fdump.lo `test -f 'src/fortran/slatec/fdump.f' || echo '$(srcdir)/'`src/fortran/slatec/fdump.f
libscielementary_functions_la-gamma.lo: src/fortran/slatec/gamma.f
$(LIBTOOL) --tag=F77 $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(F77) $(libscielementary_functions_la_FFLAGS) $(FFLAGS) -c -o libscielementary_functions_la-gamma.lo `test -f 'src/fortran/slatec/gamma.f' || echo '$(srcdir)/'`src/fortran/slatec/gamma.f
libscielementary_functions_la-initds.lo: src/fortran/slatec/initds.f
$(LIBTOOL) --tag=F77 $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(F77) $(libscielementary_functions_la_FFLAGS) $(FFLAGS) -c -o libscielementary_functions_la-initds.lo `test -f 'src/fortran/slatec/initds.f' || echo '$(srcdir)/'`src/fortran/slatec/initds.f
libscielementary_functions_la-j4save.lo: src/fortran/slatec/j4save.f
$(LIBTOOL) --tag=F77 $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(F77) $(libscielementary_functions_la_FFLAGS) $(FFLAGS) -c -o libscielementary_functions_la-j4save.lo `test -f 'src/fortran/slatec/j4save.f' || echo '$(srcdir)/'`src/fortran/slatec/j4save.f
libscielementary_functions_la-xercnt.lo: src/fortran/slatec/xercnt.f
$(LIBTOOL) --tag=F77 $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(F77) $(libscielementary_functions_la_FFLAGS) $(FFLAGS) -c -o libscielementary_functions_la-xercnt.lo `test -f 'src/fortran/slatec/xercnt.f' || echo '$(srcdir)/'`src/fortran/slatec/xercnt.f
libscielementary_functions_la-xermsg.lo: src/fortran/slatec/xermsg.f
$(LIBTOOL) --tag=F77 $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(F77) $(libscielementary_functions_la_FFLAGS) $(FFLAGS) -c -o libscielementary_functions_la-xermsg.lo `test -f 'src/fortran/slatec/xermsg.f' || echo '$(srcdir)/'`src/fortran/slatec/xermsg.f
libscielementary_functions_la-xerprn.lo: src/fortran/slatec/xerprn.f
$(LIBTOOL) --tag=F77 $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(F77) $(libscielementary_functions_la_FFLAGS) $(FFLAGS) -c -o libscielementary_functions_la-xerprn.lo `test -f 'src/fortran/slatec/xerprn.f' || echo '$(srcdir)/'`src/fortran/slatec/xerprn.f
libscielementary_functions_la-xersve.lo: src/fortran/slatec/xersve.f
$(LIBTOOL) --tag=F77 $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(F77) $(libscielementary_functions_la_FFLAGS) $(FFLAGS) -c -o libscielementary_functions_la-xersve.lo `test -f 'src/fortran/slatec/xersve.f' || echo '$(srcdir)/'`src/fortran/slatec/xersve.f
libscielementary_functions_la-xgetua.lo: src/fortran/slatec/xgetua.f
$(LIBTOOL) --tag=F77 $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(F77) $(libscielementary_functions_la_FFLAGS) $(FFLAGS) -c -o libscielementary_functions_la-xgetua.lo `test -f 'src/fortran/slatec/xgetua.f' || echo '$(srcdir)/'`src/fortran/slatec/xgetua.f
libscielementary_functions_la-zabs.lo: src/fortran/slatec/zabs.f
$(LIBTOOL) --tag=F77 $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(F77) $(libscielementary_functions_la_FFLAGS) $(FFLAGS) -c -o libscielementary_functions_la-zabs.lo `test -f 'src/fortran/slatec/zabs.f' || echo '$(srcdir)/'`src/fortran/slatec/zabs.f
libscielementary_functions_la-zacai.lo: src/fortran/slatec/zacai.f
$(LIBTOOL) --tag=F77 $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(F77) $(libscielementary_functions_la_FFLAGS) $(FFLAGS) -c -o libscielementary_functions_la-zacai.lo `test -f 'src/fortran/slatec/zacai.f' || echo '$(srcdir)/'`src/fortran/slatec/zacai.f
libscielementary_functions_la-zacon.lo: src/fortran/slatec/zacon.f
$(LIBTOOL) --tag=F77 $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(F77) $(libscielementary_functions_la_FFLAGS) $(FFLAGS) -c -o libscielementary_functions_la-zacon.lo `test -f 'src/fortran/slatec/zacon.f' || echo '$(srcdir)/'`src/fortran/slatec/zacon.f
libscielementary_functions_la-zairy.lo: src/fortran/slatec/zairy.f
$(LIBTOOL) --tag=F77 $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(F77) $(libscielementary_functions_la_FFLAGS) $(FFLAGS) -c -o libscielementary_functions_la-zairy.lo `test -f 'src/fortran/slatec/zairy.f' || echo '$(srcdir)/'`src/fortran/slatec/zairy.f
libscielementary_functions_la-zasyi.lo: src/fortran/slatec/zasyi.f
$(LIBTOOL) --tag=F77 $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(F77) $(libscielementary_functions_la_FFLAGS) $(FFLAGS) -c -o libscielementary_functions_la-zasyi.lo `test -f 'src/fortran/slatec/zasyi.f' || echo '$(srcdir)/'`src/fortran/slatec/zasyi.f
libscielementary_functions_la-zbesh.lo: src/fortran/slatec/zbesh.f
$(LIBTOOL) --tag=F77 $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(F77) $(libscielementary_functions_la_FFLAGS) $(FFLAGS) -c -o libscielementary_functions_la-zbesh.lo `test -f 'src/fortran/slatec/zbesh.f' || echo '$(srcdir)/'`src/fortran/slatec/zbesh.f
libscielementary_functions_la-zbesi.lo: src/fortran/slatec/zbesi.f
$(LIBTOOL) --tag=F77 $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(F77) $(libscielementary_functions_la_FFLAGS) $(FFLAGS) -c -o libscielementary_functions_la-zbesi.lo `test -f 'src/fortran/slatec/zbesi.f' || echo '$(srcdir)/'`src/fortran/slatec/zbesi.f
libscielementary_functions_la-zbesj.lo: src/fortran/slatec/zbesj.f
$(LIBTOOL) --tag=F77 $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(F77) $(libscielementary_functions_la_FFLAGS) $(FFLAGS) -c -o libscielementary_functions_la-zbesj.lo `test -f 'src/fortran/slatec/zbesj.f' || echo '$(srcdir)/'`src/fortran/slatec/zbesj.f
libscielementary_functions_la-zbesk.lo: src/fortran/slatec/zbesk.f
$(LIBTOOL) --tag=F77 $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(F77) $(libscielementary_functions_la_FFLAGS) $(FFLAGS) -c -o libscielementary_functions_la-zbesk.lo `test -f 'src/fortran/slatec/zbesk.f' || echo '$(srcdir)/'`src/fortran/slatec/zbesk.f
libscielementary_functions_la-zbesy.lo: src/fortran/slatec/zbesy.f
$(LIBTOOL) --tag=F77 $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(F77) $(libscielementary_functions_la_FFLAGS) $(FFLAGS) -c -o libscielementary_functions_la-zbesy.lo `test -f 'src/fortran/slatec/zbesy.f' || echo '$(srcdir)/'`src/fortran/slatec/zbesy.f
libscielementary_functions_la-zbinu.lo: src/fortran/slatec/zbinu.f
$(LIBTOOL) --tag=F77 $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(F77) $(libscielementary_functions_la_FFLAGS) $(FFLAGS) -c -o libscielementary_functions_la-zbinu.lo `test -f 'src/fortran/slatec/zbinu.f' || echo '$(srcdir)/'`src/fortran/slatec/zbinu.f
libscielementary_functions_la-zbknu.lo: src/fortran/slatec/zbknu.f
$(LIBTOOL) --tag=F77 $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(F77) $(libscielementary_functions_la_FFLAGS) $(FFLAGS) -c -o libscielementary_functions_la-zbknu.lo `test -f 'src/fortran/slatec/zbknu.f' || echo '$(srcdir)/'`src/fortran/slatec/zbknu.f
libscielementary_functions_la-zbuni.lo: src/fortran/slatec/zbuni.f
$(LIBTOOL) --tag=F77 $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(F77) $(libscielementary_functions_la_FFLAGS) $(FFLAGS) -c -o libscielementary_functions_la-zbuni.lo `test -f 'src/fortran/slatec/zbuni.f' || echo '$(srcdir)/'`src/fortran/slatec/zbuni.f
libscielementary_functions_la-zbunk.lo: src/fortran/slatec/zbunk.f
$(LIBTOOL) --tag=F77 $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(F77) $(libscielementary_functions_la_FFLAGS) $(FFLAGS) -c -o libscielementary_functions_la-zbunk.lo `test -f 'src/fortran/slatec/zbunk.f' || echo '$(srcdir)/'`src/fortran/slatec/zbunk.f
libscielementary_functions_la-zdiv.lo: src/fortran/slatec/zdiv.f
$(LIBTOOL) --tag=F77 $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(F77) $(libscielementary_functions_la_FFLAGS) $(FFLAGS) -c -o libscielementary_functions_la-zdiv.lo `test -f 'src/fortran/slatec/zdiv.f' || echo '$(srcdir)/'`src/fortran/slatec/zdiv.f
libscielementary_functions_la-zexp.lo: src/fortran/slatec/zexp.f
$(LIBTOOL) --tag=F77 $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(F77) $(libscielementary_functions_la_FFLAGS) $(FFLAGS) -c -o libscielementary_functions_la-zexp.lo `test -f 'src/fortran/slatec/zexp.f' || echo '$(srcdir)/'`src/fortran/slatec/zexp.f
libscielementary_functions_la-zkscl.lo: src/fortran/slatec/zkscl.f
$(LIBTOOL) --tag=F77 $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(F77) $(libscielementary_functions_la_FFLAGS) $(FFLAGS) -c -o libscielementary_functions_la-zkscl.lo `test -f 'src/fortran/slatec/zkscl.f' || echo '$(srcdir)/'`src/fortran/slatec/zkscl.f
libscielementary_functions_la-zlog.lo: src/fortran/slatec/zlog.f
$(LIBTOOL) --tag=F77 $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(F77) $(libscielementary_functions_la_FFLAGS) $(FFLAGS) -c -o libscielementary_functions_la-zlog.lo `test -f 'src/fortran/slatec/zlog.f' || echo '$(srcdir)/'`src/fortran/slatec/zlog.f
libscielementary_functions_la-zmlri.lo: src/fortran/slatec/zmlri.f
$(LIBTOOL) --tag=F77 $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(F77) $(libscielementary_functions_la_FFLAGS) $(FFLAGS) -c -o libscielementary_functions_la-zmlri.lo `test -f 'src/fortran/slatec/zmlri.f' || echo '$(srcdir)/'`src/fortran/slatec/zmlri.f
libscielementary_functions_la-zmlt.lo: src/fortran/slatec/zmlt.f
$(LIBTOOL) --tag=F77 $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(F77) $(libscielementary_functions_la_FFLAGS) $(FFLAGS) -c -o libscielementary_functions_la-zmlt.lo `test -f 'src/fortran/slatec/zmlt.f' || echo '$(srcdir)/'`src/fortran/slatec/zmlt.f
libscielementary_functions_la-zrati.lo: src/fortran/slatec/zrati.f
$(LIBTOOL) --tag=F77 $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(F77) $(libscielementary_functions_la_FFLAGS) $(FFLAGS) -c -o libscielementary_functions_la-zrati.lo `test -f 'src/fortran/slatec/zrati.f' || echo '$(srcdir)/'`src/fortran/slatec/zrati.f
libscielementary_functions_la-zs1s2.lo: src/fortran/slatec/zs1s2.f
$(LIBTOOL) --tag=F77 $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(F77) $(libscielementary_functions_la_FFLAGS) $(FFLAGS) -c -o libscielementary_functions_la-zs1s2.lo `test -f 'src/fortran/slatec/zs1s2.f' || echo '$(srcdir)/'`src/fortran/slatec/zs1s2.f
libscielementary_functions_la-zseri.lo: src/fortran/slatec/zseri.f
$(LIBTOOL) --tag=F77 $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(F77) $(libscielementary_functions_la_FFLAGS) $(FFLAGS) -c -o libscielementary_functions_la-zseri.lo `test -f 'src/fortran/slatec/zseri.f' || echo '$(srcdir)/'`src/fortran/slatec/zseri.f
libscielementary_functions_la-zshch.lo: src/fortran/slatec/zshch.f
$(LIBTOOL) --tag=F77 $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(F77) $(libscielementary_functions_la_FFLAGS) $(FFLAGS) -c -o libscielementary_functions_la-zshch.lo `test -f 'src/fortran/slatec/zshch.f' || echo '$(srcdir)/'`src/fortran/slatec/zshch.f
libscielementary_functions_la-zsqrt.lo: src/fortran/slatec/zsqrt.f
$(LIBTOOL) --tag=F77 $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(F77) $(libscielementary_functions_la_FFLAGS) $(FFLAGS) -c -o libscielementary_functions_la-zsqrt.lo `test -f 'src/fortran/slatec/zsqrt.f' || echo '$(srcdir)/'`src/fortran/slatec/zsqrt.f
libscielementary_functions_la-zuchk.lo: src/fortran/slatec/zuchk.f
$(LIBTOOL) --tag=F77 $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(F77) $(libscielementary_functions_la_FFLAGS) $(FFLAGS) -c -o libscielementary_functions_la-zuchk.lo `test -f 'src/fortran/slatec/zuchk.f' || echo '$(srcdir)/'`src/fortran/slatec/zuchk.f
libscielementary_functions_la-zunhj.lo: src/fortran/slatec/zunhj.f
$(LIBTOOL) --tag=F77 $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(F77) $(libscielementary_functions_la_FFLAGS) $(FFLAGS) -c -o libscielementary_functions_la-zunhj.lo `test -f 'src/fortran/slatec/zunhj.f' || echo '$(srcdir)/'`src/fortran/slatec/zunhj.f
libscielementary_functions_la-zuni1.lo: src/fortran/slatec/zuni1.f
$(LIBTOOL) --tag=F77 $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(F77) $(libscielementary_functions_la_FFLAGS) $(FFLAGS) -c -o libscielementary_functions_la-zuni1.lo `test -f 'src/fortran/slatec/zuni1.f' || echo '$(srcdir)/'`src/fortran/slatec/zuni1.f
libscielementary_functions_la-zuni2.lo: src/fortran/slatec/zuni2.f
$(LIBTOOL) --tag=F77 $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(F77) $(libscielementary_functions_la_FFLAGS) $(FFLAGS) -c -o libscielementary_functions_la-zuni2.lo `test -f 'src/fortran/slatec/zuni2.f' || echo '$(srcdir)/'`src/fortran/slatec/zuni2.f
libscielementary_functions_la-zunik.lo: src/fortran/slatec/zunik.f
$(LIBTOOL) --tag=F77 $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(F77) $(libscielementary_functions_la_FFLAGS) $(FFLAGS) -c -o libscielementary_functions_la-zunik.lo `test -f 'src/fortran/slatec/zunik.f' || echo '$(srcdir)/'`src/fortran/slatec/zunik.f
libscielementary_functions_la-zunk1.lo: src/fortran/slatec/zunk1.f
$(LIBTOOL) --tag=F77 $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(F77) $(libscielementary_functions_la_FFLAGS) $(FFLAGS) -c -o libscielementary_functions_la-zunk1.lo `test -f 'src/fortran/slatec/zunk1.f' || echo '$(srcdir)/'`src/fortran/slatec/zunk1.f
libscielementary_functions_la-zunk2.lo: src/fortran/slatec/zunk2.f
$(LIBTOOL) --tag=F77 $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(F77) $(libscielementary_functions_la_FFLAGS) $(FFLAGS) -c -o libscielementary_functions_la-zunk2.lo `test -f 'src/fortran/slatec/zunk2.f' || echo '$(srcdir)/'`src/fortran/slatec/zunk2.f
libscielementary_functions_la-zuoik.lo: src/fortran/slatec/zuoik.f
$(LIBTOOL) --tag=F77 $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(F77) $(libscielementary_functions_la_FFLAGS) $(FFLAGS) -c -o libscielementary_functions_la-zuoik.lo `test -f 'src/fortran/slatec/zuoik.f' || echo '$(srcdir)/'`src/fortran/slatec/zuoik.f
libscielementary_functions_la-dlngam.lo: src/fortran/slatec/dlngam.f
$(LIBTOOL) --tag=F77 $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(F77) $(libscielementary_functions_la_FFLAGS) $(FFLAGS) -c -o libscielementary_functions_la-dlngam.lo `test -f 'src/fortran/slatec/dlngam.f' || echo '$(srcdir)/'`src/fortran/slatec/dlngam.f
libscielementary_functions_la-balanc.lo: src/fortran/slatec/balanc.f
$(LIBTOOL) --tag=F77 $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(F77) $(libscielementary_functions_la_FFLAGS) $(FFLAGS) -c -o libscielementary_functions_la-balanc.lo `test -f 'src/fortran/slatec/balanc.f' || echo '$(srcdir)/'`src/fortran/slatec/balanc.f
libscielementary_functions_la-dtensbs.lo: src/fortran/slatec/dtensbs.f
$(LIBTOOL) --tag=F77 $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(F77) $(libscielementary_functions_la_FFLAGS) $(FFLAGS) -c -o libscielementary_functions_la-dtensbs.lo `test -f 'src/fortran/slatec/dtensbs.f' || echo '$(srcdir)/'`src/fortran/slatec/dtensbs.f
libscielementary_functions_la-pchim.lo: src/fortran/slatec/pchim.f
$(LIBTOOL) --tag=F77 $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(F77) $(libscielementary_functions_la_FFLAGS) $(FFLAGS) -c -o libscielementary_functions_la-pchim.lo `test -f 'src/fortran/slatec/pchim.f' || echo '$(srcdir)/'`src/fortran/slatec/pchim.f
libscielementary_functions_la-dgesl.lo: src/fortran/linpack/dgesl.f
$(LIBTOOL) --tag=F77 $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(F77) $(libscielementary_functions_la_FFLAGS) $(FFLAGS) -c -o libscielementary_functions_la-dgesl.lo `test -f 'src/fortran/linpack/dgesl.f' || echo '$(srcdir)/'`src/fortran/linpack/dgesl.f
libscielementary_functions_la-wpade.lo: src/fortran/linpack/wpade.f
$(LIBTOOL) --tag=F77 $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(F77) $(libscielementary_functions_la_FFLAGS) $(FFLAGS) -c -o libscielementary_functions_la-wpade.lo `test -f 'src/fortran/linpack/wpade.f' || echo '$(srcdir)/'`src/fortran/linpack/wpade.f
libscielementary_functions_la-util.lo: src/fortran/linpack/util.f
$(LIBTOOL) --tag=F77 $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(F77) $(libscielementary_functions_la_FFLAGS) $(FFLAGS) -c -o libscielementary_functions_la-util.lo `test -f 'src/fortran/linpack/util.f' || echo '$(srcdir)/'`src/fortran/linpack/util.f
libscielementary_functions_la-wcopy.lo: src/fortran/linpack/wcopy.f
$(LIBTOOL) --tag=F77 $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(F77) $(libscielementary_functions_la_FFLAGS) $(FFLAGS) -c -o libscielementary_functions_la-wcopy.lo `test -f 'src/fortran/linpack/wcopy.f' || echo '$(srcdir)/'`src/fortran/linpack/wcopy.f
libscielementary_functions_la-dgefa.lo: src/fortran/linpack/dgefa.f
$(LIBTOOL) --tag=F77 $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(F77) $(libscielementary_functions_la_FFLAGS) $(FFLAGS) -c -o libscielementary_functions_la-dgefa.lo `test -f 'src/fortran/linpack/dgefa.f' || echo '$(srcdir)/'`src/fortran/linpack/dgefa.f
libscielementary_functions_la-dgbfa.lo: src/fortran/linpack/dgbfa.f
$(LIBTOOL) --tag=F77 $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(F77) $(libscielementary_functions_la_FFLAGS) $(FFLAGS) -c -o libscielementary_functions_la-dgbfa.lo `test -f 'src/fortran/linpack/dgbfa.f' || echo '$(srcdir)/'`src/fortran/linpack/dgbfa.f
libscielementary_functions_la-dgeco.lo: src/fortran/linpack/dgeco.f
$(LIBTOOL) --tag=F77 $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(F77) $(libscielementary_functions_la_FFLAGS) $(FFLAGS) -c -o libscielementary_functions_la-dgeco.lo `test -f 'src/fortran/linpack/dgeco.f' || echo '$(srcdir)/'`src/fortran/linpack/dgeco.f
libscielementary_functions_la-dgedi.lo: src/fortran/linpack/dgedi.f
$(LIBTOOL) --tag=F77 $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(F77) $(libscielementary_functions_la_FFLAGS) $(FFLAGS) -c -o libscielementary_functions_la-dgedi.lo `test -f 'src/fortran/linpack/dgedi.f' || echo '$(srcdir)/'`src/fortran/linpack/dgedi.f
libscielementary_functions_la-dqrdc.lo: src/fortran/linpack/dqrdc.f
$(LIBTOOL) --tag=F77 $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(F77) $(libscielementary_functions_la_FFLAGS) $(FFLAGS) -c -o libscielementary_functions_la-dqrdc.lo `test -f 'src/fortran/linpack/dqrdc.f' || echo '$(srcdir)/'`src/fortran/linpack/dqrdc.f
libscielementary_functions_la-dqrsl.lo: src/fortran/linpack/dqrsl.f
$(LIBTOOL) --tag=F77 $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(F77) $(libscielementary_functions_la_FFLAGS) $(FFLAGS) -c -o libscielementary_functions_la-dqrsl.lo `test -f 'src/fortran/linpack/dqrsl.f' || echo '$(srcdir)/'`src/fortran/linpack/dqrsl.f
libscielementary_functions_la-dqrsm.lo: src/fortran/linpack/dqrsm.f
$(LIBTOOL) --tag=F77 $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(F77) $(libscielementary_functions_la_FFLAGS) $(FFLAGS) -c -o libscielementary_functions_la-dqrsm.lo `test -f 'src/fortran/linpack/dqrsm.f' || echo '$(srcdir)/'`src/fortran/linpack/dqrsm.f
libscielementary_functions_la-hhdml.lo: src/fortran/linpack/hhdml.f
$(LIBTOOL) --tag=F77 $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(F77) $(libscielementary_functions_la_FFLAGS) $(FFLAGS) -c -o libscielementary_functions_la-hhdml.lo `test -f 'src/fortran/linpack/hhdml.f' || echo '$(srcdir)/'`src/fortran/linpack/hhdml.f
libscielementary_functions_la-spofa.lo: src/fortran/linpack/spofa.f
$(LIBTOOL) --tag=F77 $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(F77) $(libscielementary_functions_la_FFLAGS) $(FFLAGS) -c -o libscielementary_functions_la-spofa.lo `test -f 'src/fortran/linpack/spofa.f' || echo '$(srcdir)/'`src/fortran/linpack/spofa.f
libscielementary_functions_la-wgeco.lo: src/fortran/linpack/wgeco.f
$(LIBTOOL) --tag=F77 $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(F77) $(libscielementary_functions_la_FFLAGS) $(FFLAGS) -c -o libscielementary_functions_la-wgeco.lo `test -f 'src/fortran/linpack/wgeco.f' || echo '$(srcdir)/'`src/fortran/linpack/wgeco.f
libscielementary_functions_la-wgefa.lo: src/fortran/linpack/wgefa.f
$(LIBTOOL) --tag=F77 $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(F77) $(libscielementary_functions_la_FFLAGS) $(FFLAGS) -c -o libscielementary_functions_la-wgefa.lo `test -f 'src/fortran/linpack/wgefa.f' || echo '$(srcdir)/'`src/fortran/linpack/wgefa.f
libscielementary_functions_la-wgesl.lo: src/fortran/linpack/wgesl.f
$(LIBTOOL) --tag=F77 $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(F77) $(libscielementary_functions_la_FFLAGS) $(FFLAGS) -c -o libscielementary_functions_la-wgesl.lo `test -f 'src/fortran/linpack/wgesl.f' || echo '$(srcdir)/'`src/fortran/linpack/wgesl.f
libscielementary_functions_la-dpofa.lo: src/fortran/linpack/dpofa.f
$(LIBTOOL) --tag=F77 $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(F77) $(libscielementary_functions_la_FFLAGS) $(FFLAGS) -c -o libscielementary_functions_la-dpofa.lo `test -f 'src/fortran/linpack/dpofa.f' || echo '$(srcdir)/'`src/fortran/linpack/dpofa.f
libscielementary_functions_la-balbak.lo: src/fortran/eispack/balbak.f
$(LIBTOOL) --tag=F77 $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(F77) $(libscielementary_functions_la_FFLAGS) $(FFLAGS) -c -o libscielementary_functions_la-balbak.lo `test -f 'src/fortran/eispack/balbak.f' || echo '$(srcdir)/'`src/fortran/eispack/balbak.f
libscielementary_functions_la-psi.lo: src/fortran/psi.f
$(LIBTOOL) --tag=F77 $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(F77) $(libscielementary_functions_la_FFLAGS) $(FFLAGS) -c -o libscielementary_functions_la-psi.lo `test -f 'src/fortran/psi.f' || echo '$(srcdir)/'`src/fortran/psi.f
libscielementary_functions_la-wasum.lo: src/fortran/wasum.f
$(LIBTOOL) --tag=F77 $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(F77) $(libscielementary_functions_la_FFLAGS) $(FFLAGS) -c -o libscielementary_functions_la-wasum.lo `test -f 'src/fortran/wasum.f' || echo '$(srcdir)/'`src/fortran/wasum.f
libscielementary_functions_la-dexpm1.lo: src/fortran/dexpm1.f
$(LIBTOOL) --tag=F77 $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(F77) $(libscielementary_functions_la_FFLAGS) $(FFLAGS) -c -o libscielementary_functions_la-dexpm1.lo `test -f 'src/fortran/dexpm1.f' || echo '$(srcdir)/'`src/fortran/dexpm1.f
libscielementary_functions_la-wwdiv.lo: src/fortran/wwdiv.f
$(LIBTOOL) --tag=F77 $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(F77) $(libscielementary_functions_la_FFLAGS) $(FFLAGS) -c -o libscielementary_functions_la-wwdiv.lo `test -f 'src/fortran/wwdiv.f' || echo '$(srcdir)/'`src/fortran/wwdiv.f
libscielementary_functions_la-wdotcr.lo: src/fortran/wdotcr.f
$(LIBTOOL) --tag=F77 $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(F77) $(libscielementary_functions_la_FFLAGS) $(FFLAGS) -c -o libscielementary_functions_la-wdotcr.lo `test -f 'src/fortran/wdotcr.f' || echo '$(srcdir)/'`src/fortran/wdotcr.f
libscielementary_functions_la-iset.lo: src/fortran/iset.f
$(LIBTOOL) --tag=F77 $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(F77) $(libscielementary_functions_la_FFLAGS) $(FFLAGS) -c -o libscielementary_functions_la-iset.lo `test -f 'src/fortran/iset.f' || echo '$(srcdir)/'`src/fortran/iset.f
libscielementary_functions_la-franck.lo: src/fortran/franck.f
$(LIBTOOL) --tag=F77 $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(F77) $(libscielementary_functions_la_FFLAGS) $(FFLAGS) -c -o libscielementary_functions_la-franck.lo `test -f 'src/fortran/franck.f' || echo '$(srcdir)/'`src/fortran/franck.f
libscielementary_functions_la-dwpowe.lo: src/fortran/dwpowe.f
$(LIBTOOL) --tag=F77 $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(F77) $(libscielementary_functions_la_FFLAGS) $(FFLAGS) -c -o libscielementary_functions_la-dwpowe.lo `test -f 'src/fortran/dwpowe.f' || echo '$(srcdir)/'`src/fortran/dwpowe.f
libscielementary_functions_la-rcsort.lo: src/fortran/rcsort.f
$(LIBTOOL) --tag=F77 $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(F77) $(libscielementary_functions_la_FFLAGS) $(FFLAGS) -c -o libscielementary_functions_la-rcsort.lo `test -f 'src/fortran/rcsort.f' || echo '$(srcdir)/'`src/fortran/rcsort.f
libscielementary_functions_la-wddiv.lo: src/fortran/wddiv.f
$(LIBTOOL) --tag=F77 $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(F77) $(libscielementary_functions_la_FFLAGS) $(FFLAGS) -c -o libscielementary_functions_la-wddiv.lo `test -f 'src/fortran/wddiv.f' || echo '$(srcdir)/'`src/fortran/wddiv.f
libscielementary_functions_la-lnblnk.lo: src/fortran/lnblnk.f
$(LIBTOOL) --tag=F77 $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(F77) $(libscielementary_functions_la_FFLAGS) $(FFLAGS) -c -o libscielementary_functions_la-lnblnk.lo `test -f 'src/fortran/lnblnk.f' || echo '$(srcdir)/'`src/fortran/lnblnk.f
libscielementary_functions_la-entier.lo: src/fortran/entier.f
$(LIBTOOL) --tag=F77 $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(F77) $(libscielementary_functions_la_FFLAGS) $(FFLAGS) -c -o libscielementary_functions_la-entier.lo `test -f 'src/fortran/entier.f' || echo '$(srcdir)/'`src/fortran/entier.f
libscielementary_functions_la-round.lo: src/fortran/round.f
$(LIBTOOL) --tag=F77 $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(F77) $(libscielementary_functions_la_FFLAGS) $(FFLAGS) -c -o libscielementary_functions_la-round.lo `test -f 'src/fortran/round.f' || echo '$(srcdir)/'`src/fortran/round.f
libscielementary_functions_la-cortr.lo: src/fortran/cortr.f
$(LIBTOOL) --tag=F77 $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(F77) $(libscielementary_functions_la_FFLAGS) $(FFLAGS) -c -o libscielementary_functions_la-cortr.lo `test -f 'src/fortran/cortr.f' || echo '$(srcdir)/'`src/fortran/cortr.f
libscielementary_functions_la-simple.lo: src/fortran/simple.f
$(LIBTOOL) --tag=F77 $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(F77) $(libscielementary_functions_la_FFLAGS) $(FFLAGS) -c -o libscielementary_functions_la-simple.lo `test -f 'src/fortran/simple.f' || echo '$(srcdir)/'`src/fortran/simple.f
libscielementary_functions_la-split.lo: src/fortran/split.f
$(LIBTOOL) --tag=F77 $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(F77) $(libscielementary_functions_la_FFLAGS) $(FFLAGS) -c -o libscielementary_functions_la-split.lo `test -f 'src/fortran/split.f' || echo '$(srcdir)/'`src/fortran/split.f
libscielementary_functions_la-wdrdiv.lo: src/fortran/wdrdiv.f
$(LIBTOOL) --tag=F77 $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(F77) $(libscielementary_functions_la_FFLAGS) $(FFLAGS) -c -o libscielementary_functions_la-wdrdiv.lo `test -f 'src/fortran/wdrdiv.f' || echo '$(srcdir)/'`src/fortran/wdrdiv.f
libscielementary_functions_la-imcopy.lo: src/fortran/imcopy.f
$(LIBTOOL) --tag=F77 $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(F77) $(libscielementary_functions_la_FFLAGS) $(FFLAGS) -c -o libscielementary_functions_la-imcopy.lo `test -f 'src/fortran/imcopy.f' || echo '$(srcdir)/'`src/fortran/imcopy.f
libscielementary_functions_la-cbal.lo: src/fortran/cbal.f
$(LIBTOOL) --tag=F77 $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(F77) $(libscielementary_functions_la_FFLAGS) $(FFLAGS) -c -o libscielementary_functions_la-cbal.lo `test -f 'src/fortran/cbal.f' || echo '$(srcdir)/'`src/fortran/cbal.f
libscielementary_functions_la-cuproi.lo: src/fortran/cuproi.f
$(LIBTOOL) --tag=F77 $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(F77) $(libscielementary_functions_la_FFLAGS) $(FFLAGS) -c -o libscielementary_functions_la-cuproi.lo `test -f 'src/fortran/cuproi.f' || echo '$(srcdir)/'`src/fortran/cuproi.f
libscielementary_functions_la-dsum.lo: src/fortran/dsum.f
$(LIBTOOL) --tag=F77 $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(F77) $(libscielementary_functions_la_FFLAGS) $(FFLAGS) -c -o libscielementary_functions_la-dsum.lo `test -f 'src/fortran/dsum.f' || echo '$(srcdir)/'`src/fortran/dsum.f
libscielementary_functions_la-urand.lo: src/fortran/urand.f
$(LIBTOOL) --tag=F77 $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(F77) $(libscielementary_functions_la_FFLAGS) $(FFLAGS) -c -o libscielementary_functions_la-urand.lo `test -f 'src/fortran/urand.f' || echo '$(srcdir)/'`src/fortran/urand.f
libscielementary_functions_la-intp.lo: src/fortran/intp.f
$(LIBTOOL) --tag=F77 $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(F77) $(libscielementary_functions_la_FFLAGS) $(FFLAGS) -c -o libscielementary_functions_la-intp.lo `test -f 'src/fortran/intp.f' || echo '$(srcdir)/'`src/fortran/intp.f
libscielementary_functions_la-watan.lo: src/fortran/watan.f
$(LIBTOOL) --tag=F77 $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(F77) $(libscielementary_functions_la_FFLAGS) $(FFLAGS) -c -o libscielementary_functions_la-watan.lo `test -f 'src/fortran/watan.f' || echo '$(srcdir)/'`src/fortran/watan.f
libscielementary_functions_la-wipowe.lo: src/fortran/wipowe.f
$(LIBTOOL) --tag=F77 $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(F77) $(libscielementary_functions_la_FFLAGS) $(FFLAGS) -c -o libscielementary_functions_la-wipowe.lo `test -f 'src/fortran/wipowe.f' || echo '$(srcdir)/'`src/fortran/wipowe.f
libscielementary_functions_la-wacos.lo: src/fortran/wacos.f
$(LIBTOOL) --tag=F77 $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(F77) $(libscielementary_functions_la_FFLAGS) $(FFLAGS) -c -o libscielementary_functions_la-wacos.lo `test -f 'src/fortran/wacos.f' || echo '$(srcdir)/'`src/fortran/wacos.f
libscielementary_functions_la-wdpow1.lo: src/fortran/wdpow1.f
$(LIBTOOL) --tag=F77 $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(F77) $(libscielementary_functions_la_FFLAGS) $(FFLAGS) -c -o libscielementary_functions_la-wdpow1.lo `test -f 'src/fortran/wdpow1.f' || echo '$(srcdir)/'`src/fortran/wdpow1.f
libscielementary_functions_la-zbesjg.lo: src/fortran/zbesjg.f
$(LIBTOOL) --tag=F77 $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(F77) $(libscielementary_functions_la_FFLAGS) $(FFLAGS) -c -o libscielementary_functions_la-zbesjg.lo `test -f 'src/fortran/zbesjg.f' || echo '$(srcdir)/'`src/fortran/zbesjg.f
libscielementary_functions_la-dmsum.lo: src/fortran/dmsum.f
$(LIBTOOL) --tag=F77 $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(F77) $(libscielementary_functions_la_FFLAGS) $(FFLAGS) -c -o libscielementary_functions_la-dmsum.lo `test -f 'src/fortran/dmsum.f' || echo '$(srcdir)/'`src/fortran/dmsum.f
libscielementary_functions_la-dlgama.lo: src/fortran/dlgama.f
$(LIBTOOL) --tag=F77 $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(F77) $(libscielementary_functions_la_FFLAGS) $(FFLAGS) -c -o libscielementary_functions_la-dlgama.lo `test -f 'src/fortran/dlgama.f' || echo '$(srcdir)/'`src/fortran/dlgama.f
libscielementary_functions_la-exch.lo: src/fortran/exch.f
$(LIBTOOL) --tag=F77 $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(F77) $(libscielementary_functions_la_FFLAGS) $(FFLAGS) -c -o libscielementary_functions_la-exch.lo `test -f 'src/fortran/exch.f' || echo '$(srcdir)/'`src/fortran/exch.f
libscielementary_functions_la-wsign.lo: src/fortran/wsign.f
$(LIBTOOL) --tag=F77 $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(F77) $(libscielementary_functions_la_FFLAGS) $(FFLAGS) -c -o libscielementary_functions_la-wsign.lo `test -f 'src/fortran/wsign.f' || echo '$(srcdir)/'`src/fortran/wsign.f
libscielementary_functions_la-kronr.lo: src/fortran/kronr.f
$(LIBTOOL) --tag=F77 $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(F77) $(libscielementary_functions_la_FFLAGS) $(FFLAGS) -c -o libscielementary_functions_la-kronr.lo `test -f 'src/fortran/kronr.f' || echo '$(srcdir)/'`src/fortran/kronr.f
libscielementary_functions_la-wrscal.lo: src/fortran/wrscal.f
$(LIBTOOL) --tag=F77 $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(F77) $(libscielementary_functions_la_FFLAGS) $(FFLAGS) -c -o libscielementary_functions_la-wrscal.lo `test -f 'src/fortran/wrscal.f' || echo '$(srcdir)/'`src/fortran/wrscal.f
libscielementary_functions_la-pythag.lo: src/fortran/pythag.f
$(LIBTOOL) --tag=F77 $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(F77) $(libscielementary_functions_la_FFLAGS) $(FFLAGS) -c -o libscielementary_functions_la-pythag.lo `test -f 'src/fortran/pythag.f' || echo '$(srcdir)/'`src/fortran/pythag.f
libscielementary_functions_la-dbeskg.lo: src/fortran/dbeskg.f
$(LIBTOOL) --tag=F77 $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(F77) $(libscielementary_functions_la_FFLAGS) $(FFLAGS) -c -o libscielementary_functions_la-dbeskg.lo `test -f 'src/fortran/dbeskg.f' || echo '$(srcdir)/'`src/fortran/dbeskg.f
libscielementary_functions_la-dmmul1.lo: src/fortran/dmmul1.f
$(LIBTOOL) --tag=F77 $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(F77) $(libscielementary_functions_la_FFLAGS) $(FFLAGS) -c -o libscielementary_functions_la-dmmul1.lo `test -f 'src/fortran/dmmul1.f' || echo '$(srcdir)/'`src/fortran/dmmul1.f
libscielementary_functions_la-dwpow.lo: src/fortran/dwpow.f
$(LIBTOOL) --tag=F77 $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(F77) $(libscielementary_functions_la_FFLAGS) $(FFLAGS) -c -o libscielementary_functions_la-dwpow.lo `test -f 'src/fortran/dwpow.f' || echo '$(srcdir)/'`src/fortran/dwpow.f
libscielementary_functions_la-wmmul.lo: src/fortran/wmmul.f
$(LIBTOOL) --tag=F77 $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(F77) $(libscielementary_functions_la_FFLAGS) $(FFLAGS) -c -o libscielementary_functions_la-wmmul.lo `test -f 'src/fortran/wmmul.f' || echo '$(srcdir)/'`src/fortran/wmmul.f
libscielementary_functions_la-dsearch.lo: src/fortran/dsearch.f
$(LIBTOOL) --tag=F77 $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(F77) $(libscielementary_functions_la_FFLAGS) $(FFLAGS) -c -o libscielementary_functions_la-dsearch.lo `test -f 'src/fortran/dsearch.f' || echo '$(srcdir)/'`src/fortran/dsearch.f
libscielementary_functions_la-ddif.lo: src/fortran/ddif.f
$(LIBTOOL) --tag=F77 $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(F77) $(libscielementary_functions_la_FFLAGS) $(FFLAGS) -c -o libscielementary_functions_la-ddif.lo `test -f 'src/fortran/ddif.f' || echo '$(srcdir)/'`src/fortran/ddif.f
libscielementary_functions_la-wdiv.lo: src/fortran/wdiv.f
$(LIBTOOL) --tag=F77 $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(F77) $(libscielementary_functions_la_FFLAGS) $(FFLAGS) -c -o libscielementary_functions_la-wdiv.lo `test -f 'src/fortran/wdiv.f' || echo '$(srcdir)/'`src/fortran/wdiv.f
libscielementary_functions_la-wtan.lo: src/fortran/wtan.f
$(LIBTOOL) --tag=F77 $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(F77) $(libscielementary_functions_la_FFLAGS) $(FFLAGS) -c -o libscielementary_functions_la-wtan.lo `test -f 'src/fortran/wtan.f' || echo '$(srcdir)/'`src/fortran/wtan.f
libscielementary_functions_la-ccopy.lo: src/fortran/ccopy.f
$(LIBTOOL) --tag=F77 $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(F77) $(libscielementary_functions_la_FFLAGS) $(FFLAGS) -c -o libscielementary_functions_la-ccopy.lo `test -f 'src/fortran/ccopy.f' || echo '$(srcdir)/'`src/fortran/ccopy.f
libscielementary_functions_la-ddpow.lo: src/fortran/ddpow.f
$(LIBTOOL) --tag=F77 $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(F77) $(libscielementary_functions_la_FFLAGS) $(FFLAGS) -c -o libscielementary_functions_la-ddpow.lo `test -f 'src/fortran/ddpow.f' || echo '$(srcdir)/'`src/fortran/ddpow.f
libscielementary_functions_la-magic.lo: src/fortran/magic.f
$(LIBTOOL) --tag=F77 $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(F77) $(libscielementary_functions_la_FFLAGS) $(FFLAGS) -c -o libscielementary_functions_la-magic.lo `test -f 'src/fortran/magic.f' || echo '$(srcdir)/'`src/fortran/magic.f
libscielementary_functions_la-wcerr.lo: src/fortran/wcerr.f
$(LIBTOOL) --tag=F77 $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(F77) $(libscielementary_functions_la_FFLAGS) $(FFLAGS) -c -o libscielementary_functions_la-wcerr.lo `test -f 'src/fortran/wcerr.f' || echo '$(srcdir)/'`src/fortran/wcerr.f
libscielementary_functions_la-ivimp.lo: src/fortran/ivimp.f
$(LIBTOOL) --tag=F77 $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(F77) $(libscielementary_functions_la_FFLAGS) $(FFLAGS) -c -o libscielementary_functions_la-ivimp.lo `test -f 'src/fortran/ivimp.f' || echo '$(srcdir)/'`src/fortran/ivimp.f
libscielementary_functions_la-cupro.lo: src/fortran/cupro.f
$(LIBTOOL) --tag=F77 $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(F77) $(libscielementary_functions_la_FFLAGS) $(FFLAGS) -c -o libscielementary_functions_la-cupro.lo `test -f 'src/fortran/cupro.f' || echo '$(srcdir)/'`src/fortran/cupro.f
libscielementary_functions_la-dadd.lo: src/fortran/dadd.f
$(LIBTOOL) --tag=F77 $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(F77) $(libscielementary_functions_la_FFLAGS) $(FFLAGS) -c -o libscielementary_functions_la-dadd.lo `test -f 'src/fortran/dadd.f' || echo '$(srcdir)/'`src/fortran/dadd.f
libscielementary_functions_la-calerf.lo: src/fortran/calerf.f
$(LIBTOOL) --tag=F77 $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(F77) $(libscielementary_functions_la_FFLAGS) $(FFLAGS) -c -o libscielementary_functions_la-calerf.lo `test -f 'src/fortran/calerf.f' || echo '$(srcdir)/'`src/fortran/calerf.f
libscielementary_functions_la-isort.lo: src/fortran/isort.f
$(LIBTOOL) --tag=F77 $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(F77) $(libscielementary_functions_la_FFLAGS) $(FFLAGS) -c -o libscielementary_functions_la-isort.lo `test -f 'src/fortran/isort.f' || echo '$(srcdir)/'`src/fortran/isort.f
libscielementary_functions_la-hilber.lo: src/fortran/hilber.f
$(LIBTOOL) --tag=F77 $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(F77) $(libscielementary_functions_la_FFLAGS) $(FFLAGS) -c -o libscielementary_functions_la-hilber.lo `test -f 'src/fortran/hilber.f' || echo '$(srcdir)/'`src/fortran/hilber.f
libscielementary_functions_la-wdpowe.lo: src/fortran/wdpowe.f
$(LIBTOOL) --tag=F77 $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(F77) $(libscielementary_functions_la_FFLAGS) $(FFLAGS) -c -o libscielementary_functions_la-wdpowe.lo `test -f 'src/fortran/wdpowe.f' || echo '$(srcdir)/'`src/fortran/wdpowe.f
libscielementary_functions_la-wmprod.lo: src/fortran/wmprod.f
$(LIBTOOL) --tag=F77 $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(F77) $(libscielementary_functions_la_FFLAGS) $(FFLAGS) -c -o libscielementary_functions_la-wmprod.lo `test -f 'src/fortran/wmprod.f' || echo '$(srcdir)/'`src/fortran/wmprod.f
libscielementary_functions_la-wscal.lo: src/fortran/wscal.f
$(LIBTOOL) --tag=F77 $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(F77) $(libscielementary_functions_la_FFLAGS) $(FFLAGS) -c -o libscielementary_functions_la-wscal.lo `test -f 'src/fortran/wscal.f' || echo '$(srcdir)/'`src/fortran/wscal.f
libscielementary_functions_la-dlblks.lo: src/fortran/dlblks.f
$(LIBTOOL) --tag=F77 $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(F77) $(libscielementary_functions_la_FFLAGS) $(FFLAGS) -c -o libscielementary_functions_la-dlblks.lo `test -f 'src/fortran/dlblks.f' || echo '$(srcdir)/'`src/fortran/dlblks.f
libscielementary_functions_la-kronc.lo: src/fortran/kronc.f
$(LIBTOOL) --tag=F77 $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(F77) $(libscielementary_functions_la_FFLAGS) $(FFLAGS) -c -o libscielementary_functions_la-kronc.lo `test -f 'src/fortran/kronc.f' || echo '$(srcdir)/'`src/fortran/kronc.f
libscielementary_functions_la-ddrdiv.lo: src/fortran/ddrdiv.f
$(LIBTOOL) --tag=F77 $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(F77) $(libscielementary_functions_la_FFLAGS) $(FFLAGS) -c -o libscielementary_functions_la-ddrdiv.lo `test -f 'src/fortran/ddrdiv.f' || echo '$(srcdir)/'`src/fortran/ddrdiv.f
libscielementary_functions_la-dipow.lo: src/fortran/dipow.f
$(LIBTOOL) --tag=F77 $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(F77) $(libscielementary_functions_la_FFLAGS) $(FFLAGS) -c -o libscielementary_functions_la-dipow.lo `test -f 'src/fortran/dipow.f' || echo '$(srcdir)/'`src/fortran/dipow.f
libscielementary_functions_la-wshrsl.lo: src/fortran/wshrsl.f
$(LIBTOOL) --tag=F77 $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(F77) $(libscielementary_functions_la_FFLAGS) $(FFLAGS) -c -o libscielementary_functions_la-wshrsl.lo `test -f 'src/fortran/wshrsl.f' || echo '$(srcdir)/'`src/fortran/wshrsl.f
libscielementary_functions_la-wwrdiv.lo: src/fortran/wwrdiv.f
$(LIBTOOL) --tag=F77 $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(F77) $(libscielementary_functions_la_FFLAGS) $(FFLAGS) -c -o libscielementary_functions_la-wwrdiv.lo `test -f 'src/fortran/wwrdiv.f' || echo '$(srcdir)/'`src/fortran/wwrdiv.f
libscielementary_functions_la-zbeshg.lo: src/fortran/zbeshg.f
$(LIBTOOL) --tag=F77 $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(F77) $(libscielementary_functions_la_FFLAGS) $(FFLAGS) -c -o libscielementary_functions_la-zbeshg.lo `test -f 'src/fortran/zbeshg.f' || echo '$(srcdir)/'`src/fortran/zbeshg.f
libscielementary_functions_la-coshin.lo: src/fortran/coshin.f
$(LIBTOOL) --tag=F77 $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(F77) $(libscielementary_functions_la_FFLAGS) $(FFLAGS) -c -o libscielementary_functions_la-coshin.lo `test -f 'src/fortran/coshin.f' || echo '$(srcdir)/'`src/fortran/coshin.f
libscielementary_functions_la-iwamax.lo: src/fortran/iwamax.f
$(LIBTOOL) --tag=F77 $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(F77) $(libscielementary_functions_la_FFLAGS) $(FFLAGS) -c -o libscielementary_functions_la-iwamax.lo `test -f 'src/fortran/iwamax.f' || echo '$(srcdir)/'`src/fortran/iwamax.f
libscielementary_functions_la-dipowe.lo: src/fortran/dipowe.f
$(LIBTOOL) --tag=F77 $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(F77) $(libscielementary_functions_la_FFLAGS) $(FFLAGS) -c -o libscielementary_functions_la-dipowe.lo `test -f 'src/fortran/dipowe.f' || echo '$(srcdir)/'`src/fortran/dipowe.f
libscielementary_functions_la-getorient.lo: src/fortran/getorient.f
$(LIBTOOL) --tag=F77 $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(F77) $(libscielementary_functions_la_FFLAGS) $(FFLAGS) -c -o libscielementary_functions_la-getorient.lo `test -f 'src/fortran/getorient.f' || echo '$(srcdir)/'`src/fortran/getorient.f
libscielementary_functions_la-cusum.lo: src/fortran/cusum.f
$(LIBTOOL) --tag=F77 $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(F77) $(libscielementary_functions_la_FFLAGS) $(FFLAGS) -c -o libscielementary_functions_la-cusum.lo `test -f 'src/fortran/cusum.f' || echo '$(srcdir)/'`src/fortran/cusum.f
libscielementary_functions_la-dbesig.lo: src/fortran/dbesig.f
$(LIBTOOL) --tag=F77 $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(F77) $(libscielementary_functions_la_FFLAGS) $(FFLAGS) -c -o libscielementary_functions_la-dbesig.lo `test -f 'src/fortran/dbesig.f' || echo '$(srcdir)/'`src/fortran/dbesig.f
libscielementary_functions_la-d1mach.lo: src/fortran/d1mach.f
$(LIBTOOL) --tag=F77 $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(F77) $(libscielementary_functions_la_FFLAGS) $(FFLAGS) -c -o libscielementary_functions_la-d1mach.lo `test -f 'src/fortran/d1mach.f' || echo '$(srcdir)/'`src/fortran/d1mach.f
libscielementary_functions_la-wbdiag.lo: src/fortran/wbdiag.f
$(LIBTOOL) --tag=F77 $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(F77) $(libscielementary_functions_la_FFLAGS) $(FFLAGS) -c -o libscielementary_functions_la-wbdiag.lo `test -f 'src/fortran/wbdiag.f' || echo '$(srcdir)/'`src/fortran/wbdiag.f
libscielementary_functions_la-ddpow1.lo: src/fortran/ddpow1.f
$(LIBTOOL) --tag=F77 $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(F77) $(libscielementary_functions_la_FFLAGS) $(FFLAGS) -c -o libscielementary_functions_la-ddpow1.lo `test -f 'src/fortran/ddpow1.f' || echo '$(srcdir)/'`src/fortran/ddpow1.f
libscielementary_functions_la-vpythag.lo: src/fortran/vpythag.f
$(LIBTOOL) --tag=F77 $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(F77) $(libscielementary_functions_la_FFLAGS) $(FFLAGS) -c -o libscielementary_functions_la-vpythag.lo `test -f 'src/fortran/vpythag.f' || echo '$(srcdir)/'`src/fortran/vpythag.f
libscielementary_functions_la-isova0.lo: src/fortran/isova0.f
$(LIBTOOL) --tag=F77 $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(F77) $(libscielementary_functions_la_FFLAGS) $(FFLAGS) -c -o libscielementary_functions_la-isova0.lo `test -f 'src/fortran/isova0.f' || echo '$(srcdir)/'`src/fortran/isova0.f
libscielementary_functions_la-wswap.lo: src/fortran/wswap.f
$(LIBTOOL) --tag=F77 $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(F77) $(libscielementary_functions_la_FFLAGS) $(FFLAGS) -c -o libscielementary_functions_la-wswap.lo `test -f 'src/fortran/wswap.f' || echo '$(srcdir)/'`src/fortran/wswap.f
libscielementary_functions_la-wwpow1.lo: src/fortran/wwpow1.f
$(LIBTOOL) --tag=F77 $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(F77) $(libscielementary_functions_la_FFLAGS) $(FFLAGS) -c -o libscielementary_functions_la-wwpow1.lo `test -f 'src/fortran/wwpow1.f' || echo '$(srcdir)/'`src/fortran/wwpow1.f
libscielementary_functions_la-getdimfromvar.lo: src/fortran/getdimfromvar.f
$(LIBTOOL) --tag=F77 $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(F77) $(libscielementary_functions_la_FFLAGS) $(FFLAGS) -c -o libscielementary_functions_la-getdimfromvar.lo `test -f 'src/fortran/getdimfromvar.f' || echo '$(srcdir)/'`src/fortran/getdimfromvar.f
libscielementary_functions_la-gdcp2i.lo: src/fortran/gdcp2i.f
$(LIBTOOL) --tag=F77 $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(F77) $(libscielementary_functions_la_FFLAGS) $(FFLAGS) -c -o libscielementary_functions_la-gdcp2i.lo `test -f 'src/fortran/gdcp2i.f' || echo '$(srcdir)/'`src/fortran/gdcp2i.f
libscielementary_functions_la-drdiv.lo: src/fortran/drdiv.f
$(LIBTOOL) --tag=F77 $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(F77) $(libscielementary_functions_la_FFLAGS) $(FFLAGS) -c -o libscielementary_functions_la-drdiv.lo `test -f 'src/fortran/drdiv.f' || echo '$(srcdir)/'`src/fortran/drdiv.f
libscielementary_functions_la-wmsum.lo: src/fortran/wmsum.f
$(LIBTOOL) --tag=F77 $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(F77) $(libscielementary_functions_la_FFLAGS) $(FFLAGS) -c -o libscielementary_functions_la-wmsum.lo `test -f 'src/fortran/wmsum.f' || echo '$(srcdir)/'`src/fortran/wmsum.f
libscielementary_functions_la-dbesyg.lo: src/fortran/dbesyg.f
$(LIBTOOL) --tag=F77 $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(F77) $(libscielementary_functions_la_FFLAGS) $(FFLAGS) -c -o libscielementary_functions_la-dbesyg.lo `test -f 'src/fortran/dbesyg.f' || echo '$(srcdir)/'`src/fortran/dbesyg.f
libscielementary_functions_la-corth.lo: src/fortran/corth.f
$(LIBTOOL) --tag=F77 $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(F77) $(libscielementary_functions_la_FFLAGS) $(FFLAGS) -c -o libscielementary_functions_la-corth.lo `test -f 'src/fortran/corth.f' || echo '$(srcdir)/'`src/fortran/corth.f
libscielementary_functions_la-mtran.lo: src/fortran/mtran.f
$(LIBTOOL) --tag=F77 $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(F77) $(libscielementary_functions_la_FFLAGS) $(FFLAGS) -c -o libscielementary_functions_la-mtran.lo `test -f 'src/fortran/mtran.f' || echo '$(srcdir)/'`src/fortran/mtran.f
libscielementary_functions_la-wwpow.lo: src/fortran/wwpow.f
$(LIBTOOL) --tag=F77 $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(F77) $(libscielementary_functions_la_FFLAGS) $(FFLAGS) -c -o libscielementary_functions_la-wwpow.lo `test -f 'src/fortran/wwpow.f' || echo '$(srcdir)/'`src/fortran/wwpow.f
libscielementary_functions_la-zbeskg.lo: src/fortran/zbeskg.f
$(LIBTOOL) --tag=F77 $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(F77) $(libscielementary_functions_la_FFLAGS) $(FFLAGS) -c -o libscielementary_functions_la-zbeskg.lo `test -f 'src/fortran/zbeskg.f' || echo '$(srcdir)/'`src/fortran/zbeskg.f
libscielementary_functions_la-dvmul.lo: src/fortran/dvmul.f
$(LIBTOOL) --tag=F77 $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(F77) $(libscielementary_functions_la_FFLAGS) $(FFLAGS) -c -o libscielementary_functions_la-dvmul.lo `test -f 'src/fortran/dvmul.f' || echo '$(srcdir)/'`src/fortran/dvmul.f
libscielementary_functions_la-wclmat.lo: src/fortran/wclmat.f
$(LIBTOOL) --tag=F77 $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(F77) $(libscielementary_functions_la_FFLAGS) $(FFLAGS) -c -o libscielementary_functions_la-wclmat.lo `test -f 'src/fortran/wclmat.f' || echo '$(srcdir)/'`src/fortran/wclmat.f
libscielementary_functions_la-dsort.lo: src/fortran/dsort.f
$(LIBTOOL) --tag=F77 $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(F77) $(libscielementary_functions_la_FFLAGS) $(FFLAGS) -c -o libscielementary_functions_la-dsort.lo `test -f 'src/fortran/dsort.f' || echo '$(srcdir)/'`src/fortran/dsort.f
libscielementary_functions_la-cerr.lo: src/fortran/cerr.f
$(LIBTOOL) --tag=F77 $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(F77) $(libscielementary_functions_la_FFLAGS) $(FFLAGS) -c -o libscielementary_functions_la-cerr.lo `test -f 'src/fortran/cerr.f' || echo '$(srcdir)/'`src/fortran/cerr.f
libscielementary_functions_la-rcopy.lo: src/fortran/rcopy.f
$(LIBTOOL) --tag=F77 $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(F77) $(libscielementary_functions_la_FFLAGS) $(FFLAGS) -c -o libscielementary_functions_la-rcopy.lo `test -f 'src/fortran/rcopy.f' || echo '$(srcdir)/'`src/fortran/rcopy.f
libscielementary_functions_la-wdpow.lo: src/fortran/wdpow.f
$(LIBTOOL) --tag=F77 $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(F77) $(libscielementary_functions_la_FFLAGS) $(FFLAGS) -c -o libscielementary_functions_la-wdpow.lo `test -f 'src/fortran/wdpow.f' || echo '$(srcdir)/'`src/fortran/wdpow.f
libscielementary_functions_la-orthes.lo: src/fortran/orthes.f
$(LIBTOOL) --tag=F77 $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(F77) $(libscielementary_functions_la_FFLAGS) $(FFLAGS) -c -o libscielementary_functions_la-orthes.lo `test -f 'src/fortran/orthes.f' || echo '$(srcdir)/'`src/fortran/orthes.f
libscielementary_functions_la-waxpy.lo: src/fortran/waxpy.f
$(LIBTOOL) --tag=F77 $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(F77) $(libscielementary_functions_la_FFLAGS) $(FFLAGS) -c -o libscielementary_functions_la-waxpy.lo `test -f 'src/fortran/waxpy.f' || echo '$(srcdir)/'`src/fortran/waxpy.f
libscielementary_functions_la-coef.lo: src/fortran/coef.f
$(LIBTOOL) --tag=F77 $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(F77) $(libscielementary_functions_la_FFLAGS) $(FFLAGS) -c -o libscielementary_functions_la-coef.lo `test -f 'src/fortran/coef.f' || echo '$(srcdir)/'`src/fortran/coef.f
libscielementary_functions_la-dwdiv.lo: src/fortran/dwdiv.f
$(LIBTOOL) --tag=F77 $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(F77) $(libscielementary_functions_la_FFLAGS) $(FFLAGS) -c -o libscielementary_functions_la-dwdiv.lo `test -f 'src/fortran/dwdiv.f' || echo '$(srcdir)/'`src/fortran/dwdiv.f
libscielementary_functions_la-arcosh.lo: src/fortran/arcosh.f
$(LIBTOOL) --tag=F77 $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(F77) $(libscielementary_functions_la_FFLAGS) $(FFLAGS) -c -o libscielementary_functions_la-arcosh.lo `test -f 'src/fortran/arcosh.f' || echo '$(srcdir)/'`src/fortran/arcosh.f
libscielementary_functions_la-wasin.lo: src/fortran/wasin.f
$(LIBTOOL) --tag=F77 $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(F77) $(libscielementary_functions_la_FFLAGS) $(FFLAGS) -c -o libscielementary_functions_la-wasin.lo `test -f 'src/fortran/wasin.f' || echo '$(srcdir)/'`src/fortran/wasin.f
libscielementary_functions_la-wexpm1.lo: src/fortran/wexpm1.f
$(LIBTOOL) --tag=F77 $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(F77) $(libscielementary_functions_la_FFLAGS) $(FFLAGS) -c -o libscielementary_functions_la-wexpm1.lo `test -f 'src/fortran/wexpm1.f' || echo '$(srcdir)/'`src/fortran/wexpm1.f
libscielementary_functions_la-ddpowe.lo: src/fortran/ddpowe.f
$(LIBTOOL) --tag=F77 $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(F77) $(libscielementary_functions_la_FFLAGS) $(FFLAGS) -c -o libscielementary_functions_la-ddpowe.lo `test -f 'src/fortran/ddpowe.f' || echo '$(srcdir)/'`src/fortran/ddpowe.f
libscielementary_functions_la-nearfloat.lo: src/fortran/nearfloat.f
$(LIBTOOL) --tag=F77 $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(F77) $(libscielementary_functions_la_FFLAGS) $(FFLAGS) -c -o libscielementary_functions_la-nearfloat.lo `test -f 'src/fortran/nearfloat.f' || echo '$(srcdir)/'`src/fortran/nearfloat.f
libscielementary_functions_la-dmprod.lo: src/fortran/dmprod.f
$(LIBTOOL) --tag=F77 $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(F77) $(libscielementary_functions_la_FFLAGS) $(FFLAGS) -c -o libscielementary_functions_la-dmprod.lo `test -f 'src/fortran/dmprod.f' || echo '$(srcdir)/'`src/fortran/dmprod.f
libscielementary_functions_la-wwpowe.lo: src/fortran/wwpowe.f
$(LIBTOOL) --tag=F77 $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(F77) $(libscielementary_functions_la_FFLAGS) $(FFLAGS) -c -o libscielementary_functions_la-wwpowe.lo `test -f 'src/fortran/wwpowe.f' || echo '$(srcdir)/'`src/fortran/wwpowe.f
libscielementary_functions_la-wdotci.lo: src/fortran/wdotci.f
$(LIBTOOL) --tag=F77 $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(F77) $(libscielementary_functions_la_FFLAGS) $(FFLAGS) -c -o libscielementary_functions_la-wdotci.lo `test -f 'src/fortran/wdotci.f' || echo '$(srcdir)/'`src/fortran/wdotci.f
libscielementary_functions_la-dmcopy.lo: src/fortran/dmcopy.f
$(LIBTOOL) --tag=F77 $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(F77) $(libscielementary_functions_la_FFLAGS) $(FFLAGS) -c -o libscielementary_functions_la-dmcopy.lo `test -f 'src/fortran/dmcopy.f' || echo '$(srcdir)/'`src/fortran/dmcopy.f
libscielementary_functions_la-wexchn.lo: src/fortran/wexchn.f
$(LIBTOOL) --tag=F77 $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(F77) $(libscielementary_functions_la_FFLAGS) $(FFLAGS) -c -o libscielementary_functions_la-wexchn.lo `test -f 'src/fortran/wexchn.f' || echo '$(srcdir)/'`src/fortran/wexchn.f
libscielementary_functions_la-isoval.lo: src/fortran/isoval.f
$(LIBTOOL) --tag=F77 $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(F77) $(libscielementary_functions_la_FFLAGS) $(FFLAGS) -c -o libscielementary_functions_la-isoval.lo `test -f 'src/fortran/isoval.f' || echo '$(srcdir)/'`src/fortran/isoval.f
libscielementary_functions_la-dwrdiv.lo: src/fortran/dwrdiv.f
$(LIBTOOL) --tag=F77 $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(F77) $(libscielementary_functions_la_FFLAGS) $(FFLAGS) -c -o libscielementary_functions_la-dwrdiv.lo `test -f 'src/fortran/dwrdiv.f' || echo '$(srcdir)/'`src/fortran/dwrdiv.f
libscielementary_functions_la-wipow.lo: src/fortran/wipow.f
$(LIBTOOL) --tag=F77 $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(F77) $(libscielementary_functions_la_FFLAGS) $(FFLAGS) -c -o libscielementary_functions_la-wipow.lo `test -f 'src/fortran/wipow.f' || echo '$(srcdir)/'`src/fortran/wipow.f
libscielementary_functions_la-wlog.lo: src/fortran/wlog.f
$(LIBTOOL) --tag=F77 $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(F77) $(libscielementary_functions_la_FFLAGS) $(FFLAGS) -c -o libscielementary_functions_la-wlog.lo `test -f 'src/fortran/wlog.f' || echo '$(srcdir)/'`src/fortran/wlog.f
libscielementary_functions_la-infinity.lo: src/fortran/infinity.f
$(LIBTOOL) --tag=F77 $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(F77) $(libscielementary_functions_la_FFLAGS) $(FFLAGS) -c -o libscielementary_functions_la-infinity.lo `test -f 'src/fortran/infinity.f' || echo '$(srcdir)/'`src/fortran/infinity.f
libscielementary_functions_la-dwpow1.lo: src/fortran/dwpow1.f
$(LIBTOOL) --tag=F77 $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(F77) $(libscielementary_functions_la_FFLAGS) $(FFLAGS) -c -o libscielementary_functions_la-dwpow1.lo `test -f 'src/fortran/dwpow1.f' || echo '$(srcdir)/'`src/fortran/dwpow1.f
libscielementary_functions_la-zbesig.lo: src/fortran/zbesig.f
$(LIBTOOL) --tag=F77 $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(F77) $(libscielementary_functions_la_FFLAGS) $(FFLAGS) -c -o libscielementary_functions_la-zbesig.lo `test -f 'src/fortran/zbesig.f' || echo '$(srcdir)/'`src/fortran/zbesig.f
libscielementary_functions_la-wmul.lo: src/fortran/wmul.f
$(LIBTOOL) --tag=F77 $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(F77) $(libscielementary_functions_la_FFLAGS) $(FFLAGS) -c -o libscielementary_functions_la-wmul.lo `test -f 'src/fortran/wmul.f' || echo '$(srcdir)/'`src/fortran/wmul.f
libscielementary_functions_la-dad.lo: src/fortran/dad.f
$(LIBTOOL) --tag=F77 $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(F77) $(libscielementary_functions_la_FFLAGS) $(FFLAGS) -c -o libscielementary_functions_la-dad.lo `test -f 'src/fortran/dad.f' || echo '$(srcdir)/'`src/fortran/dad.f
libscielementary_functions_la-dbesjg.lo: src/fortran/dbesjg.f
$(LIBTOOL) --tag=F77 $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(F77) $(libscielementary_functions_la_FFLAGS) $(FFLAGS) -c -o libscielementary_functions_la-dbesjg.lo `test -f 'src/fortran/dbesjg.f' || echo '$(srcdir)/'`src/fortran/dbesjg.f
libscielementary_functions_la-dset.lo: src/fortran/dset.f
$(LIBTOOL) --tag=F77 $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(F77) $(libscielementary_functions_la_FFLAGS) $(FFLAGS) -c -o libscielementary_functions_la-dset.lo `test -f 'src/fortran/dset.f' || echo '$(srcdir)/'`src/fortran/dset.f
libscielementary_functions_la-dtild.lo: src/fortran/dtild.f
$(LIBTOOL) --tag=F77 $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(F77) $(libscielementary_functions_la_FFLAGS) $(FFLAGS) -c -o libscielementary_functions_la-dtild.lo `test -f 'src/fortran/dtild.f' || echo '$(srcdir)/'`src/fortran/dtild.f
libscielementary_functions_la-i1mach.lo: src/fortran/i1mach.f
$(LIBTOOL) --tag=F77 $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(F77) $(libscielementary_functions_la_FFLAGS) $(FFLAGS) -c -o libscielementary_functions_la-i1mach.lo `test -f 'src/fortran/i1mach.f' || echo '$(srcdir)/'`src/fortran/i1mach.f
libscielementary_functions_la-zbesyg.lo: src/fortran/zbesyg.f
$(LIBTOOL) --tag=F77 $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(F77) $(libscielementary_functions_la_FFLAGS) $(FFLAGS) -c -o libscielementary_functions_la-zbesyg.lo `test -f 'src/fortran/zbesyg.f' || echo '$(srcdir)/'`src/fortran/zbesyg.f
libscielementary_functions_la-dclmat.lo: src/fortran/dclmat.f
$(LIBTOOL) --tag=F77 $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(F77) $(libscielementary_functions_la_FFLAGS) $(FFLAGS) -c -o libscielementary_functions_la-dclmat.lo `test -f 'src/fortran/dclmat.f' || echo '$(srcdir)/'`src/fortran/dclmat.f
libscielementary_functions_la-ortran.lo: src/fortran/ortran.f
$(LIBTOOL) --tag=F77 $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(F77) $(libscielementary_functions_la_FFLAGS) $(FFLAGS) -c -o libscielementary_functions_la-ortran.lo `test -f 'src/fortran/ortran.f' || echo '$(srcdir)/'`src/fortran/ortran.f
libscielementary_functions_la-bdiag.lo: src/fortran/bdiag.f
$(LIBTOOL) --tag=F77 $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(F77) $(libscielementary_functions_la_FFLAGS) $(FFLAGS) -c -o libscielementary_functions_la-bdiag.lo `test -f 'src/fortran/bdiag.f' || echo '$(srcdir)/'`src/fortran/bdiag.f
libscielementary_functions_la-wvmul.lo: src/fortran/wvmul.f
$(LIBTOOL) --tag=F77 $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(F77) $(libscielementary_functions_la_FFLAGS) $(FFLAGS) -c -o libscielementary_functions_la-wvmul.lo `test -f 'src/fortran/wvmul.f' || echo '$(srcdir)/'`src/fortran/wvmul.f
libscielementary_functions_la-dmmul.lo: src/fortran/dmmul.f
$(LIBTOOL) --tag=F77 $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(F77) $(libscielementary_functions_la_FFLAGS) $(FFLAGS) -c -o libscielementary_functions_la-dmmul.lo `test -f 'src/fortran/dmmul.f' || echo '$(srcdir)/'`src/fortran/dmmul.f
libscielementary_functions_la-wsort.lo: src/fortran/wsort.f
$(LIBTOOL) --tag=F77 $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(F77) $(libscielementary_functions_la_FFLAGS) $(FFLAGS) -c -o libscielementary_functions_la-wsort.lo `test -f 'src/fortran/wsort.f' || echo '$(srcdir)/'`src/fortran/wsort.f
libscielementary_functions_la-wsqrt.lo: src/fortran/wsqrt.f
$(LIBTOOL) --tag=F77 $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(F77) $(libscielementary_functions_la_FFLAGS) $(FFLAGS) -c -o libscielementary_functions_la-wsqrt.lo `test -f 'src/fortran/wsqrt.f' || echo '$(srcdir)/'`src/fortran/wsqrt.f
libscielementary_functions_la-rat.lo: src/fortran/rat.f
$(LIBTOOL) --tag=F77 $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(F77) $(libscielementary_functions_la_FFLAGS) $(FFLAGS) -c -o libscielementary_functions_la-rat.lo `test -f 'src/fortran/rat.f' || echo '$(srcdir)/'`src/fortran/rat.f
libscielementary_functions_la-ribesl.lo: src/fortran/ribesl.f
$(LIBTOOL) --tag=F77 $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(F77) $(libscielementary_functions_la_FFLAGS) $(FFLAGS) -c -o libscielementary_functions_la-ribesl.lo `test -f 'src/fortran/ribesl.f' || echo '$(srcdir)/'`src/fortran/ribesl.f
libscielementary_functions_la-rjbesl.lo: src/fortran/rjbesl.f
$(LIBTOOL) --tag=F77 $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(F77) $(libscielementary_functions_la_FFLAGS) $(FFLAGS) -c -o libscielementary_functions_la-rjbesl.lo `test -f 'src/fortran/rjbesl.f' || echo '$(srcdir)/'`src/fortran/rjbesl.f
libscielementary_functions_la-rkbesl.lo: src/fortran/rkbesl.f
$(LIBTOOL) --tag=F77 $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(F77) $(libscielementary_functions_la_FFLAGS) $(FFLAGS) -c -o libscielementary_functions_la-rkbesl.lo `test -f 'src/fortran/rkbesl.f' || echo '$(srcdir)/'`src/fortran/rkbesl.f
libscielementary_functions_la-rybesl.lo: src/fortran/rybesl.f
$(LIBTOOL) --tag=F77 $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(F77) $(libscielementary_functions_la_FFLAGS) $(FFLAGS) -c -o libscielementary_functions_la-rybesl.lo `test -f 'src/fortran/rybesl.f' || echo '$(srcdir)/'`src/fortran/rybesl.f
libscielementary_functions_la-sdot.lo: src/fortran/sdot.f
$(LIBTOOL) --tag=F77 $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(F77) $(libscielementary_functions_la_FFLAGS) $(FFLAGS) -c -o libscielementary_functions_la-sdot.lo `test -f 'src/fortran/sdot.f' || echo '$(srcdir)/'`src/fortran/sdot.f
libscielementary_functions_la-sci_f_isequal.lo: sci_gateway/fortran/sci_f_isequal.f
$(LIBTOOL) --tag=F77 $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(F77) $(libscielementary_functions_la_FFLAGS) $(FFLAGS) -c -o libscielementary_functions_la-sci_f_isequal.lo `test -f 'sci_gateway/fortran/sci_f_isequal.f' || echo '$(srcdir)/'`sci_gateway/fortran/sci_f_isequal.f
libscielementary_functions_la-sci_f_maxi.lo: sci_gateway/fortran/sci_f_maxi.f
$(LIBTOOL) --tag=F77 $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(F77) $(libscielementary_functions_la_FFLAGS) $(FFLAGS) -c -o libscielementary_functions_la-sci_f_maxi.lo `test -f 'sci_gateway/fortran/sci_f_maxi.f' || echo '$(srcdir)/'`sci_gateway/fortran/sci_f_maxi.f
libscielementary_functions_la-sci_f_testmatrix.lo: sci_gateway/fortran/sci_f_testmatrix.f
$(LIBTOOL) --tag=F77 $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(F77) $(libscielementary_functions_la_FFLAGS) $(FFLAGS) -c -o libscielementary_functions_la-sci_f_testmatrix.lo `test -f 'sci_gateway/fortran/sci_f_testmatrix.f' || echo '$(srcdir)/'`sci_gateway/fortran/sci_f_testmatrix.f
libscielementary_functions_la-sci_f_prod.lo: sci_gateway/fortran/sci_f_prod.f
$(LIBTOOL) --tag=F77 $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(F77) $(libscielementary_functions_la_FFLAGS) $(FFLAGS) -c -o libscielementary_functions_la-sci_f_prod.lo `test -f 'sci_gateway/fortran/sci_f_prod.f' || echo '$(srcdir)/'`sci_gateway/fortran/sci_f_prod.f
libscielementary_functions_la-sci_f_matrix.lo: sci_gateway/fortran/sci_f_matrix.f
$(LIBTOOL) --tag=F77 $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(F77) $(libscielementary_functions_la_FFLAGS) $(FFLAGS) -c -o libscielementary_functions_la-sci_f_matrix.lo `test -f 'sci_gateway/fortran/sci_f_matrix.f' || echo '$(srcdir)/'`sci_gateway/fortran/sci_f_matrix.f
libscielementary_functions_la-sci_f_expm.lo: sci_gateway/fortran/sci_f_expm.f
$(LIBTOOL) --tag=F77 $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(F77) $(libscielementary_functions_la_FFLAGS) $(FFLAGS) -c -o libscielementary_functions_la-sci_f_expm.lo `test -f 'sci_gateway/fortran/sci_f_expm.f' || echo '$(srcdir)/'`sci_gateway/fortran/sci_f_expm.f
libscielementary_functions_la-sci_f_size.lo: sci_gateway/fortran/sci_f_size.f
$(LIBTOOL) --tag=F77 $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(F77) $(libscielementary_functions_la_FFLAGS) $(FFLAGS) -c -o libscielementary_functions_la-sci_f_size.lo `test -f 'sci_gateway/fortran/sci_f_size.f' || echo '$(srcdir)/'`sci_gateway/fortran/sci_f_size.f
libscielementary_functions_la-sci_f_tril.lo: sci_gateway/fortran/sci_f_tril.f
$(LIBTOOL) --tag=F77 $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(F77) $(libscielementary_functions_la_FFLAGS) $(FFLAGS) -c -o libscielementary_functions_la-sci_f_tril.lo `test -f 'sci_gateway/fortran/sci_f_tril.f' || echo '$(srcdir)/'`sci_gateway/fortran/sci_f_tril.f
libscielementary_functions_la-sci_f_ceil.lo: sci_gateway/fortran/sci_f_ceil.f
$(LIBTOOL) --tag=F77 $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(F77) $(libscielementary_functions_la_FFLAGS) $(FFLAGS) -c -o libscielementary_functions_la-sci_f_ceil.lo `test -f 'sci_gateway/fortran/sci_f_ceil.f' || echo '$(srcdir)/'`sci_gateway/fortran/sci_f_ceil.f
libscielementary_functions_la-sci_f_imag.lo: sci_gateway/fortran/sci_f_imag.f
$(LIBTOOL) --tag=F77 $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(F77) $(libscielementary_functions_la_FFLAGS) $(FFLAGS) -c -o libscielementary_functions_la-sci_f_imag.lo `test -f 'sci_gateway/fortran/sci_f_imag.f' || echo '$(srcdir)/'`sci_gateway/fortran/sci_f_imag.f
libscielementary_functions_la-sci_f_log.lo: sci_gateway/fortran/sci_f_log.f
$(LIBTOOL) --tag=F77 $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(F77) $(libscielementary_functions_la_FFLAGS) $(FFLAGS) -c -o libscielementary_functions_la-sci_f_log.lo `test -f 'sci_gateway/fortran/sci_f_log.f' || echo '$(srcdir)/'`sci_gateway/fortran/sci_f_log.f
libscielementary_functions_la-sci_f_log1p.lo: sci_gateway/fortran/sci_f_log1p.f
$(LIBTOOL) --tag=F77 $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(F77) $(libscielementary_functions_la_FFLAGS) $(FFLAGS) -c -o libscielementary_functions_la-sci_f_log1p.lo `test -f 'sci_gateway/fortran/sci_f_log1p.f' || echo '$(srcdir)/'`sci_gateway/fortran/sci_f_log1p.f
libscielementary_functions_la-sci_f_clean.lo: sci_gateway/fortran/sci_f_clean.f
$(LIBTOOL) --tag=F77 $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(F77) $(libscielementary_functions_la_FFLAGS) $(FFLAGS) -c -o libscielementary_functions_la-sci_f_clean.lo `test -f 'sci_gateway/fortran/sci_f_clean.f' || echo '$(srcdir)/'`sci_gateway/fortran/sci_f_clean.f
libscielementary_functions_la-sci_f_eye.lo: sci_gateway/fortran/sci_f_eye.f
$(LIBTOOL) --tag=F77 $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(F77) $(libscielementary_functions_la_FFLAGS) $(FFLAGS) -c -o libscielementary_functions_la-sci_f_eye.lo `test -f 'sci_gateway/fortran/sci_f_eye.f' || echo '$(srcdir)/'`sci_gateway/fortran/sci_f_eye.f
libscielementary_functions_la-sci_f_tan.lo: sci_gateway/fortran/sci_f_tan.f
$(LIBTOOL) --tag=F77 $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(F77) $(libscielementary_functions_la_FFLAGS) $(FFLAGS) -c -o libscielementary_functions_la-sci_f_tan.lo `test -f 'sci_gateway/fortran/sci_f_tan.f' || echo '$(srcdir)/'`sci_gateway/fortran/sci_f_tan.f
libscielementary_functions_la-sci_f_atan.lo: sci_gateway/fortran/sci_f_atan.f
$(LIBTOOL) --tag=F77 $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(F77) $(libscielementary_functions_la_FFLAGS) $(FFLAGS) -c -o libscielementary_functions_la-sci_f_atan.lo `test -f 'sci_gateway/fortran/sci_f_atan.f' || echo '$(srcdir)/'`sci_gateway/fortran/sci_f_atan.f
libscielementary_functions_la-sci_f_triu.lo: sci_gateway/fortran/sci_f_triu.f
$(LIBTOOL) --tag=F77 $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(F77) $(libscielementary_functions_la_FFLAGS) $(FFLAGS) -c -o libscielementary_functions_la-sci_f_triu.lo `test -f 'sci_gateway/fortran/sci_f_triu.f' || echo '$(srcdir)/'`sci_gateway/fortran/sci_f_triu.f
libscielementary_functions_la-sci_f_frexp.lo: sci_gateway/fortran/sci_f_frexp.f
$(LIBTOOL) --tag=F77 $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(F77) $(libscielementary_functions_la_FFLAGS) $(FFLAGS) -c -o libscielementary_functions_la-sci_f_frexp.lo `test -f 'sci_gateway/fortran/sci_f_frexp.f' || echo '$(srcdir)/'`sci_gateway/fortran/sci_f_frexp.f
libscielementary_functions_la-sci_f_cos.lo: sci_gateway/fortran/sci_f_cos.f
$(LIBTOOL) --tag=F77 $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(F77) $(libscielementary_functions_la_FFLAGS) $(FFLAGS) -c -o libscielementary_functions_la-sci_f_cos.lo `test -f 'sci_gateway/fortran/sci_f_cos.f' || echo '$(srcdir)/'`sci_gateway/fortran/sci_f_cos.f
libscielementary_functions_la-sci_f_rand.lo: sci_gateway/fortran/sci_f_rand.f
$(LIBTOOL) --tag=F77 $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(F77) $(libscielementary_functions_la_FFLAGS) $(FFLAGS) -c -o libscielementary_functions_la-sci_f_rand.lo `test -f 'sci_gateway/fortran/sci_f_rand.f' || echo '$(srcdir)/'`sci_gateway/fortran/sci_f_rand.f
libscielementary_functions_la-sci_f_acos.lo: sci_gateway/fortran/sci_f_acos.f
$(LIBTOOL) --tag=F77 $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(F77) $(libscielementary_functions_la_FFLAGS) $(FFLAGS) -c -o libscielementary_functions_la-sci_f_acos.lo `test -f 'sci_gateway/fortran/sci_f_acos.f' || echo '$(srcdir)/'`sci_gateway/fortran/sci_f_acos.f
libscielementary_functions_la-sci_f_sin.lo: sci_gateway/fortran/sci_f_sin.f
$(LIBTOOL) --tag=F77 $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(F77) $(libscielementary_functions_la_FFLAGS) $(FFLAGS) -c -o libscielementary_functions_la-sci_f_sin.lo `test -f 'sci_gateway/fortran/sci_f_sin.f' || echo '$(srcdir)/'`sci_gateway/fortran/sci_f_sin.f
libscielementary_functions_la-sci_f_sqrt.lo: sci_gateway/fortran/sci_f_sqrt.f
$(LIBTOOL) --tag=F77 $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(F77) $(libscielementary_functions_la_FFLAGS) $(FFLAGS) -c -o libscielementary_functions_la-sci_f_sqrt.lo `test -f 'sci_gateway/fortran/sci_f_sqrt.f' || echo '$(srcdir)/'`sci_gateway/fortran/sci_f_sqrt.f
libscielementary_functions_la-sci_f_asin.lo: sci_gateway/fortran/sci_f_asin.f
$(LIBTOOL) --tag=F77 $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(F77) $(libscielementary_functions_la_FFLAGS) $(FFLAGS) -c -o libscielementary_functions_la-sci_f_asin.lo `test -f 'sci_gateway/fortran/sci_f_asin.f' || echo '$(srcdir)/'`sci_gateway/fortran/sci_f_asin.f
libscielementary_functions_la-sci_f_sign.lo: sci_gateway/fortran/sci_f_sign.f
$(LIBTOOL) --tag=F77 $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(F77) $(libscielementary_functions_la_FFLAGS) $(FFLAGS) -c -o libscielementary_functions_la-sci_f_sign.lo `test -f 'sci_gateway/fortran/sci_f_sign.f' || echo '$(srcdir)/'`sci_gateway/fortran/sci_f_sign.f
libscielementary_functions_la-sci_f_zeros.lo: sci_gateway/fortran/sci_f_zeros.f
$(LIBTOOL) --tag=F77 $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(F77) $(libscielementary_functions_la_FFLAGS) $(FFLAGS) -c -o libscielementary_functions_la-sci_f_zeros.lo `test -f 'sci_gateway/fortran/sci_f_zeros.f' || echo '$(srcdir)/'`sci_gateway/fortran/sci_f_zeros.f
libscielementary_functions_la-sci_f_ones.lo: sci_gateway/fortran/sci_f_ones.f
$(LIBTOOL) --tag=F77 $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(F77) $(libscielementary_functions_la_FFLAGS) $(FFLAGS) -c -o libscielementary_functions_la-sci_f_ones.lo `test -f 'sci_gateway/fortran/sci_f_ones.f' || echo '$(srcdir)/'`sci_gateway/fortran/sci_f_ones.f
libscielementary_functions_la-sci_f_diag.lo: sci_gateway/fortran/sci_f_diag.f
$(LIBTOOL) --tag=F77 $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(F77) $(libscielementary_functions_la_FFLAGS) $(FFLAGS) -c -o libscielementary_functions_la-sci_f_diag.lo `test -f 'sci_gateway/fortran/sci_f_diag.f' || echo '$(srcdir)/'`sci_gateway/fortran/sci_f_diag.f
libscielementary_functions_la-sci_f_number_properties.lo: sci_gateway/fortran/sci_f_number_properties.f
$(LIBTOOL) --tag=F77 $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(F77) $(libscielementary_functions_la_FFLAGS) $(FFLAGS) -c -o libscielementary_functions_la-sci_f_number_properties.lo `test -f 'sci_gateway/fortran/sci_f_number_properties.f' || echo '$(srcdir)/'`sci_gateway/fortran/sci_f_number_properties.f
libscielementary_functions_la-sci_f_sum.lo: sci_gateway/fortran/sci_f_sum.f
$(LIBTOOL) --tag=F77 $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(F77) $(libscielementary_functions_la_FFLAGS) $(FFLAGS) -c -o libscielementary_functions_la-sci_f_sum.lo `test -f 'sci_gateway/fortran/sci_f_sum.f' || echo '$(srcdir)/'`sci_gateway/fortran/sci_f_sum.f
libscielementary_functions_la-sci_f_cumprod.lo: sci_gateway/fortran/sci_f_cumprod.f
$(LIBTOOL) --tag=F77 $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(F77) $(libscielementary_functions_la_FFLAGS) $(FFLAGS) -c -o libscielementary_functions_la-sci_f_cumprod.lo `test -f 'sci_gateway/fortran/sci_f_cumprod.f' || echo '$(srcdir)/'`sci_gateway/fortran/sci_f_cumprod.f
libscielementary_functions_la-sci_f_abs.lo: sci_gateway/fortran/sci_f_abs.f
$(LIBTOOL) --tag=F77 $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(F77) $(libscielementary_functions_la_FFLAGS) $(FFLAGS) -c -o libscielementary_functions_la-sci_f_abs.lo `test -f 'sci_gateway/fortran/sci_f_abs.f' || echo '$(srcdir)/'`sci_gateway/fortran/sci_f_abs.f
libscielementary_functions_la-sci_f_spones.lo: sci_gateway/fortran/sci_f_spones.f
$(LIBTOOL) --tag=F77 $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(F77) $(libscielementary_functions_la_FFLAGS) $(FFLAGS) -c -o libscielementary_functions_la-sci_f_spones.lo `test -f 'sci_gateway/fortran/sci_f_spones.f' || echo '$(srcdir)/'`sci_gateway/fortran/sci_f_spones.f
libscielementary_functions_la-sci_f_kron.lo: sci_gateway/fortran/sci_f_kron.f
$(LIBTOOL) --tag=F77 $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(F77) $(libscielementary_functions_la_FFLAGS) $(FFLAGS) -c -o libscielementary_functions_la-sci_f_kron.lo `test -f 'sci_gateway/fortran/sci_f_kron.f' || echo '$(srcdir)/'`sci_gateway/fortran/sci_f_kron.f
libscielementary_functions_la-sci_f_dsearch.lo: sci_gateway/fortran/sci_f_dsearch.f
$(LIBTOOL) --tag=F77 $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(F77) $(libscielementary_functions_la_FFLAGS) $(FFLAGS) -c -o libscielementary_functions_la-sci_f_dsearch.lo `test -f 'sci_gateway/fortran/sci_f_dsearch.f' || echo '$(srcdir)/'`sci_gateway/fortran/sci_f_dsearch.f
libscielementary_functions_la-sci_f_cumsum.lo: sci_gateway/fortran/sci_f_cumsum.f
$(LIBTOOL) --tag=F77 $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(F77) $(libscielementary_functions_la_FFLAGS) $(FFLAGS) -c -o libscielementary_functions_la-sci_f_cumsum.lo `test -f 'sci_gateway/fortran/sci_f_cumsum.f' || echo '$(srcdir)/'`sci_gateway/fortran/sci_f_cumsum.f
libscielementary_functions_la-sci_f_nearfloat.lo: sci_gateway/fortran/sci_f_nearfloat.f
$(LIBTOOL) --tag=F77 $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(F77) $(libscielementary_functions_la_FFLAGS) $(FFLAGS) -c -o libscielementary_functions_la-sci_f_nearfloat.lo `test -f 'sci_gateway/fortran/sci_f_nearfloat.f' || echo '$(srcdir)/'`sci_gateway/fortran/sci_f_nearfloat.f
libscielementary_functions_la-sci_f_chinesehat.lo: sci_gateway/fortran/sci_f_chinesehat.f
$(LIBTOOL) --tag=F77 $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(F77) $(libscielementary_functions_la_FFLAGS) $(FFLAGS) -c -o libscielementary_functions_la-sci_f_chinesehat.lo `test -f 'sci_gateway/fortran/sci_f_chinesehat.f' || echo '$(srcdir)/'`sci_gateway/fortran/sci_f_chinesehat.f
libscielementary_functions_la-sci_f_isreal.lo: sci_gateway/fortran/sci_f_isreal.f
$(LIBTOOL) --tag=F77 $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(F77) $(libscielementary_functions_la_FFLAGS) $(FFLAGS) -c -o libscielementary_functions_la-sci_f_isreal.lo `test -f 'sci_gateway/fortran/sci_f_isreal.f' || echo '$(srcdir)/'`sci_gateway/fortran/sci_f_isreal.f
libscielementary_functions_la-sci_f_floor.lo: sci_gateway/fortran/sci_f_floor.f
$(LIBTOOL) --tag=F77 $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(F77) $(libscielementary_functions_la_FFLAGS) $(FFLAGS) -c -o libscielementary_functions_la-sci_f_floor.lo `test -f 'sci_gateway/fortran/sci_f_floor.f' || echo '$(srcdir)/'`sci_gateway/fortran/sci_f_floor.f
libscielementary_functions_la-sci_f_real.lo: sci_gateway/fortran/sci_f_real.f
$(LIBTOOL) --tag=F77 $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(F77) $(libscielementary_functions_la_FFLAGS) $(FFLAGS) -c -o libscielementary_functions_la-sci_f_real.lo `test -f 'sci_gateway/fortran/sci_f_real.f' || echo '$(srcdir)/'`sci_gateway/fortran/sci_f_real.f
libscielementary_functions_la-sci_f_round.lo: sci_gateway/fortran/sci_f_round.f
$(LIBTOOL) --tag=F77 $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(F77) $(libscielementary_functions_la_FFLAGS) $(FFLAGS) -c -o libscielementary_functions_la-sci_f_round.lo `test -f 'sci_gateway/fortran/sci_f_round.f' || echo '$(srcdir)/'`sci_gateway/fortran/sci_f_round.f
libscielementary_functions_la-sci_f_conj.lo: sci_gateway/fortran/sci_f_conj.f
$(LIBTOOL) --tag=F77 $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(F77) $(libscielementary_functions_la_FFLAGS) $(FFLAGS) -c -o libscielementary_functions_la-sci_f_conj.lo `test -f 'sci_gateway/fortran/sci_f_conj.f' || echo '$(srcdir)/'`sci_gateway/fortran/sci_f_conj.f
libscielementary_functions_la-sci_f_int.lo: sci_gateway/fortran/sci_f_int.f
$(LIBTOOL) --tag=F77 $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(F77) $(libscielementary_functions_la_FFLAGS) $(FFLAGS) -c -o libscielementary_functions_la-sci_f_int.lo `test -f 'sci_gateway/fortran/sci_f_int.f' || echo '$(srcdir)/'`sci_gateway/fortran/sci_f_int.f
libscielementary_functions_la-sci_f_imult.lo: sci_gateway/fortran/sci_f_imult.f
$(LIBTOOL) --tag=F77 $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(F77) $(libscielementary_functions_la_FFLAGS) $(FFLAGS) -c -o libscielementary_functions_la-sci_f_imult.lo `test -f 'sci_gateway/fortran/sci_f_imult.f' || echo '$(srcdir)/'`sci_gateway/fortran/sci_f_imult.f
libscielementary_functions_la-sci_f_exp.lo: sci_gateway/fortran/sci_f_exp.f
$(LIBTOOL) --tag=F77 $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(F77) $(libscielementary_functions_la_FFLAGS) $(FFLAGS) -c -o libscielementary_functions_la-sci_f_exp.lo `test -f 'sci_gateway/fortran/sci_f_exp.f' || echo '$(srcdir)/'`sci_gateway/fortran/sci_f_exp.f
libscielementary_functions_la-sci_f_sort.lo: sci_gateway/fortran/sci_f_sort.f
$(LIBTOOL) --tag=F77 $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(F77) $(libscielementary_functions_la_FFLAGS) $(FFLAGS) -c -o libscielementary_functions_la-sci_f_sort.lo `test -f 'sci_gateway/fortran/sci_f_sort.f' || echo '$(srcdir)/'`sci_gateway/fortran/sci_f_sort.f
mostlyclean-libtool:
-rm -f *.lo
clean-libtool:
-rm -rf .libs _libs
install-libscielementary_functions_la_etcDATA: $(libscielementary_functions_la_etc_DATA)
@$(NORMAL_INSTALL)
test -z "$(libscielementary_functions_la_etcdir)" || $(MKDIR_P) "$(DESTDIR)$(libscielementary_functions_la_etcdir)"
@list='$(libscielementary_functions_la_etc_DATA)'; test -n "$(libscielementary_functions_la_etcdir)" || list=; \
for p in $$list; do \
if test -f "$$p"; then d=; else d="$(srcdir)/"; fi; \
echo "$$d$$p"; \
done | $(am__base_list) | \
while read files; do \
echo " $(INSTALL_DATA) $$files '$(DESTDIR)$(libscielementary_functions_la_etcdir)'"; \
$(INSTALL_DATA) $$files "$(DESTDIR)$(libscielementary_functions_la_etcdir)" || exit $$?; \
done
uninstall-libscielementary_functions_la_etcDATA:
@$(NORMAL_UNINSTALL)
@list='$(libscielementary_functions_la_etc_DATA)'; test -n "$(libscielementary_functions_la_etcdir)" || list=; \
files=`for p in $$list; do echo $$p; done | sed -e 's|^.*/||'`; \
test -n "$$files" || exit 0; \
echo " ( cd '$(DESTDIR)$(libscielementary_functions_la_etcdir)' && rm -f" $$files ")"; \
cd "$(DESTDIR)$(libscielementary_functions_la_etcdir)" && rm -f $$files
install-libscielementary_functions_la_rootDATA: $(libscielementary_functions_la_root_DATA)
@$(NORMAL_INSTALL)
test -z "$(libscielementary_functions_la_rootdir)" || $(MKDIR_P) "$(DESTDIR)$(libscielementary_functions_la_rootdir)"
@list='$(libscielementary_functions_la_root_DATA)'; test -n "$(libscielementary_functions_la_rootdir)" || list=; \
for p in $$list; do \
if test -f "$$p"; then d=; else d="$(srcdir)/"; fi; \
echo "$$d$$p"; \
done | $(am__base_list) | \
while read files; do \
echo " $(INSTALL_DATA) $$files '$(DESTDIR)$(libscielementary_functions_la_rootdir)'"; \
$(INSTALL_DATA) $$files "$(DESTDIR)$(libscielementary_functions_la_rootdir)" || exit $$?; \
done
uninstall-libscielementary_functions_la_rootDATA:
@$(NORMAL_UNINSTALL)
@list='$(libscielementary_functions_la_root_DATA)'; test -n "$(libscielementary_functions_la_rootdir)" || list=; \
files=`for p in $$list; do echo $$p; done | sed -e 's|^.*/||'`; \
test -n "$$files" || exit 0; \
echo " ( cd '$(DESTDIR)$(libscielementary_functions_la_rootdir)' && rm -f" $$files ")"; \
cd "$(DESTDIR)$(libscielementary_functions_la_rootdir)" && rm -f $$files
install-libscielementary_functions_la_sci_gatewayDATA: $(libscielementary_functions_la_sci_gateway_DATA)
@$(NORMAL_INSTALL)
test -z "$(libscielementary_functions_la_sci_gatewaydir)" || $(MKDIR_P) "$(DESTDIR)$(libscielementary_functions_la_sci_gatewaydir)"
@list='$(libscielementary_functions_la_sci_gateway_DATA)'; test -n "$(libscielementary_functions_la_sci_gatewaydir)" || list=; \
for p in $$list; do \
if test -f "$$p"; then d=; else d="$(srcdir)/"; fi; \
echo "$$d$$p"; \
done | $(am__base_list) | \
while read files; do \
echo " $(INSTALL_DATA) $$files '$(DESTDIR)$(libscielementary_functions_la_sci_gatewaydir)'"; \
$(INSTALL_DATA) $$files "$(DESTDIR)$(libscielementary_functions_la_sci_gatewaydir)" || exit $$?; \
done
uninstall-libscielementary_functions_la_sci_gatewayDATA:
@$(NORMAL_UNINSTALL)
@list='$(libscielementary_functions_la_sci_gateway_DATA)'; test -n "$(libscielementary_functions_la_sci_gatewaydir)" || list=; \
files=`for p in $$list; do echo $$p; done | sed -e 's|^.*/||'`; \
test -n "$$files" || exit 0; \
echo " ( cd '$(DESTDIR)$(libscielementary_functions_la_sci_gatewaydir)' && rm -f" $$files ")"; \
cd "$(DESTDIR)$(libscielementary_functions_la_sci_gatewaydir)" && rm -f $$files
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: $(HEADERS) $(SOURCES) $(TAGS_DEPENDENCIES) \
$(TAGS_FILES) $(LISP)
set x; \
here=`pwd`; \
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; }; }'`; \
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: $(HEADERS) $(SOURCES) $(TAGS_DEPENDENCIES) \
$(TAGS_FILES) $(LISP)
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; }; }'`; \
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)
@srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \
topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \
list='$(DISTFILES)'; \
dist_files=`for file in $$list; do echo $$file; done | \
sed -e "s|^$$srcdirstrip/||;t" \
-e "s|^$$topsrcdirstrip/|$(top_builddir)/|;t"`; \
case $$dist_files in \
*/*) $(MKDIR_P) `echo "$$dist_files" | \
sed '/\//!d;s|^|$(distdir)/|;s,/[^/]*$$,,' | \
sort -u` ;; \
esac; \
for file in $$dist_files; do \
if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \
if test -d $$d/$$file; then \
dir=`echo "/$$file" | sed -e 's,/[^/]*$$,,'`; \
if test -d "$(distdir)/$$file"; then \
find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \
fi; \
if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \
cp -fpR $(srcdir)/$$file "$(distdir)$$dir" || exit 1; \
find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \
fi; \
cp -fpR $$d/$$file "$(distdir)$$dir" || exit 1; \
else \
test -f "$(distdir)/$$file" \
|| cp -p $$d/$$file "$(distdir)/$$file" \
|| exit 1; \
fi; \
done
check-am: all-am
$(MAKE) $(AM_MAKEFLAGS) check-local
check: check-am
all-am: Makefile $(LTLIBRARIES) $(DATA) all-local
installdirs:
for dir in "$(DESTDIR)$(pkglibdir)" "$(DESTDIR)$(libscielementary_functions_la_etcdir)" "$(DESTDIR)$(libscielementary_functions_la_rootdir)" "$(DESTDIR)$(libscielementary_functions_la_sci_gatewaydir)"; do \
test -z "$$dir" || $(MKDIR_P) "$$dir"; \
done
install: install-am
install-exec: install-exec-am
install-data: install-data-am
uninstall: uninstall-am
install-am: all-am
@$(MAKE) $(AM_MAKEFLAGS) install-exec-am install-data-am
installcheck: installcheck-am
install-strip:
$(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-am
clean-am: clean-generic clean-libtool clean-local \
clean-noinstLTLIBRARIES clean-pkglibLTLIBRARIES mostlyclean-am
distclean: distclean-am
-rm -rf ./$(DEPDIR)
-rm -f Makefile
distclean-am: clean-am distclean-compile distclean-generic \
distclean-local distclean-tags
dvi: dvi-am
dvi-am:
html: html-am
html-am:
info: info-am
info-am:
install-data-am: install-data-local \
install-libscielementary_functions_la_etcDATA \
install-libscielementary_functions_la_rootDATA \
install-libscielementary_functions_la_sci_gatewayDATA
install-dvi: install-dvi-am
install-dvi-am:
install-exec-am: install-pkglibLTLIBRARIES
install-html: install-html-am
install-html-am: install-html-local
install-info: install-info-am
install-info-am:
install-man:
install-pdf: install-pdf-am
install-pdf-am:
install-ps: install-ps-am
install-ps-am:
installcheck-am:
maintainer-clean: maintainer-clean-am
-rm -rf ./$(DEPDIR)
-rm -f Makefile
maintainer-clean-am: distclean-am maintainer-clean-generic
mostlyclean: mostlyclean-am
mostlyclean-am: mostlyclean-compile mostlyclean-generic \
mostlyclean-libtool
pdf: pdf-am
pdf-am:
ps: ps-am
ps-am:
uninstall-am: uninstall-libscielementary_functions_la_etcDATA \
uninstall-libscielementary_functions_la_rootDATA \
uninstall-libscielementary_functions_la_sci_gatewayDATA \
uninstall-pkglibLTLIBRARIES
.MAKE: check-am install-am install-strip
.PHONY: CTAGS GTAGS all all-am all-local check check-am check-local \
clean clean-generic clean-libtool clean-local \
clean-noinstLTLIBRARIES clean-pkglibLTLIBRARIES ctags \
distclean distclean-compile distclean-generic \
distclean-libtool distclean-local distclean-tags distdir dvi \
dvi-am html html-am info info-am install install-am \
install-data install-data-am install-data-local install-dvi \
install-dvi-am install-exec install-exec-am install-html \
install-html-am install-html-local install-info \
install-info-am install-libscielementary_functions_la_etcDATA \
install-libscielementary_functions_la_rootDATA \
install-libscielementary_functions_la_sci_gatewayDATA \
install-man install-pdf install-pdf-am \
install-pkglibLTLIBRARIES install-ps install-ps-am \
install-strip installcheck installcheck-am installdirs \
maintainer-clean maintainer-clean-generic mostlyclean \
mostlyclean-compile mostlyclean-generic mostlyclean-libtool \
pdf pdf-am ps ps-am tags uninstall uninstall-am \
uninstall-libscielementary_functions_la_etcDATA \
uninstall-libscielementary_functions_la_rootDATA \
uninstall-libscielementary_functions_la_sci_gatewayDATA \
uninstall-pkglibLTLIBRARIES
# Commented because it is one of the first module to be compiled
#libdummy-elementary_functions.la $(top_builddir)/modules/core/libscicore.la $(top_builddir)/modules/polynomials/libscipolynomials.la $(top_builddir)/libs/blas/libsciblas.la $(top_builddir)/modules/sparse/libscisparse.la $(top_builddir)/modules/string/libscistring.la $(top_builddir)/libs/MALLOC/libscimalloc.la $(top_builddir)/modules/output_stream/libscioutput_stream.la $(top_builddir)/libs/lapack/libscilapack.la $(top_builddir)/modules/integer/libsciinteger.la $(top_builddir)/modules/cacsd/libscicacsd.la
libdummy_elementary_functions_la-hqror2.lo: src/fortran/eispack/hqror2.f
$(LIBTOOL) --tag=F77 --mode=compile $(F77) $(libdummy_elementary_functions_la_FFLAGS) -c -o libdummy_elementary_functions_la-hqror2.lo `test -f 'src/fortran/eispack/hqror2.f' || echo '$(srcdir)/'`src/fortran/eispack/hqror2.f
libdummy_elementary_functions_la-comqr3.lo: src/fortran/comqr3.f
$(LIBTOOL) --tag=F77 --mode=compile $(F77) $(libdummy_elementary_functions_la_FFLAGS) -c -o libdummy_elementary_functions_la-comqr3.lo `test -f 'src/fortran/comqr3.f' || echo '$(srcdir)/'`src/fortran/comqr3.f
libdummy_elementary_functions_la-pade.lo: src/fortran/linpack/pade.f
$(LIBTOOL) --tag=F77 --mode=compile $(F77) $(libdummy_elementary_functions_la_FFLAGS) -c -o libdummy_elementary_functions_la-pade.lo `test -f 'src/fortran/linpack/pade.f' || echo '$(srcdir)/'`src/fortran/linpack/pade.f
libdummy_elementary_functions_la-unsfdcopy.lo: src/c/unsfdcopy.c
$(LIBTOOL) --tag=CC --mode=compile $(CC) $(DEFAULT_INCLUDES) $(libdummy_elementary_functions_la_CFLAGS) -c -o libdummy_elementary_functions_la-unsfdcopy.lo `test -f 'src/c/unsfdcopy.c' || echo '$(srcdir)/'`src/c/unsfdcopy.c
libdummy_elementary_functions_la-icopy.lo: src/fortran/linpack/icopy.f
$(LIBTOOL) --tag=F77 --mode=compile $(F77) $(libdummy_elementary_functions_la_FFLAGS) -c -o libdummy_elementary_functions_la-icopy.lo `test -f 'src/fortran/linpack/icopy.f' || echo '$(srcdir)/'`src/fortran/linpack/icopy.f
# This target enables tests for Scilab
check-local: $(top_builddir)/scilab-bin
@COMMAND="test_run('$(modulename)');quit";\
export LANG=C;\
$(top_builddir)/bin/scilab -nwni -nb -e "$$COMMAND"
check-code:
if test -f build.xml; then \
$(ANT) checkstyle; \
fi
if test -x "$(SPLINT)"; then \
$(SPLINT) $(SPLINT_OPTIONS) -I$(top_srcdir)/modules/core/includes/ -I$(top_srcdir)/libs/MALLOC/includes/ -I$(top_srcdir)/modules/localization/includes/ $(INCLUDE_FLAGS) $(CHECK_SRC); \
fi
@NEED_JAVA_TRUE@java:
# Some configurations needs to export JAVA_HOME in the current env
@NEED_JAVA_TRUE@ @if test "$(JAVA_HOME)"; then export JAVA_HOME=$(JAVA_HOME); fi; \
@NEED_JAVA_TRUE@ if test -z "$(USEANT)"; then USEANT=0; else USEANT=1; fi; \
@NEED_JAVA_TRUE@ if test -f build.xml -a $$USEANT -eq 1; then \
@NEED_JAVA_TRUE@ $(ANT); \
@NEED_JAVA_TRUE@ fi
@NEED_JAVA_TRUE@clean-java:
# Some configurations needs to export JAVA_HOME in the current env
@NEED_JAVA_TRUE@ @if test "$(JAVA_HOME)"; then export JAVA_HOME=$(JAVA_HOME); fi; \
@NEED_JAVA_TRUE@ if test -z "$(USEANT)"; then USEANT=0; else USEANT=1; fi; \
@NEED_JAVA_TRUE@ if test -f build.xml -a $$USEANT -eq 1; then \
@NEED_JAVA_TRUE@ $(ANT) clean; \
@NEED_JAVA_TRUE@ fi;
# If the user request for the SWIG generation of the wrappers Java => C/C++
# We call the target swig-build on the variable SWIG_WRAPPERS
@SWIG_TRUE@swig: $(SWIG_WRAPPERS)
@SWIG_TRUE@ @SWIG_PACKAGENAME=org.scilab.modules.$(modulename); \
@SWIG_TRUE@ SWIG_OUTDIR=src/java/org/scilab/modules/$(modulename)/; \
@SWIG_TRUE@ if test -n "$(SWIG_WRAPPERS)"; then \
@SWIG_TRUE@ for file in $(SWIG_WRAPPERS) ; do \
@SWIG_TRUE@ echo "Swig process of $$file ..."; \
@SWIG_TRUE@ $(SWIG_BIN) $(SWIG_JAVA) -package $$SWIG_PACKAGENAME -outdir $$SWIG_OUTDIR $$file; \
@SWIG_TRUE@ done; \
@SWIG_TRUE@ fi
# If the user request for the SWIG generation of the wrappers Java => C/C++
# We call the target swig-build on the variable SWIG_WRAPPERS
@GIWS_TRUE@giws: $(GIWS_WRAPPERS)
@GIWS_TRUE@ @GIWS_OUTPUTDIR=src/jni/;\
@GIWS_TRUE@ if test -n "$(GIWS_WRAPPERS)"; then \
@GIWS_TRUE@ for file in $(GIWS_WRAPPERS) ; do \
@GIWS_TRUE@ echo "GIWS process of $$file ..."; \
@GIWS_TRUE@ $(GIWS_BIN) --output-dir $$GIWS_OUTPUTDIR --throws-exception-on-error --description-file $$file; \
@GIWS_TRUE@ done; \
@GIWS_TRUE@ fi
macros:
-@( if test ! -x $(top_builddir)/scilab-bin; then \
echo "Error : Cannot build $< : Scilab has not been built"; \
else \
$(top_builddir)/bin/scilab -ns -nwni -e "exec('macros/buildmacros.sce');quit;";\
fi)
# Removes the macros
clean-macros:
# Removes macros (*.bin generated from .sci)
@for dir in $(MACRODIRS) $(MACROSDIRSEXT) ; do \
echo "rm -f $(builddir)/$$dir/$(MACROBINMASK)"; \
rm -f $(builddir)/$$dir/$(MACROBINMASK); \
done
all-local: $(TARGETS_ALL)
.sci.bin:
-@( if test ! -x $(top_builddir)/scilab-bin; then \
echo "Error : Cannot build $< : Scilab has not been build"; \
else \
echo "Creating $@"; \
$(top_builddir)/bin/scilab -ns -nwni -e "exec('$(abs_srcdir)/$<');save('$(abs_srcdir)/$@');exit;"; \
fi )
install-html-local:
# If the user wants the help sources to be installed
@INSTALL_HELP_XML_TRUE@ @echo "-------- Install of XML sources of help files --------"; \
@INSTALL_HELP_XML_TRUE@ for lang in $(ALL_LINGUAS); do \
@INSTALL_HELP_XML_TRUE@ if test -d $(srcdir)/help/$$lang; then \
@INSTALL_HELP_XML_TRUE@ $(mkinstalldirs) $(DESTDIR)$(pkgdocdir)/help/$$lang && \
@INSTALL_HELP_XML_TRUE@ if ls -lLd $(srcdir)/help/$$lang/$(DOCMASKXML) >/dev/null 2>&1; then \
@INSTALL_HELP_XML_TRUE@ for file in $(srcdir)/help/$$lang/$(DOCMASKXML) ; do \
@INSTALL_HELP_XML_TRUE@ echo "$(INSTALL_DATA) $$file $(DESTDIR)$(pkgdocdir)/help/$$lang" ; \
@INSTALL_HELP_XML_TRUE@ $(INSTALL_DATA) "$$file" $(DESTDIR)$(pkgdocdir)/help/$$lang ; \
@INSTALL_HELP_XML_TRUE@ done ; \
@INSTALL_HELP_XML_TRUE@ fi; \
@INSTALL_HELP_XML_TRUE@ fi; \
@INSTALL_HELP_XML_TRUE@ done; \
@INSTALL_HELP_XML_TRUE@ @echo "-------- Install of MathML sources --------"; \
@INSTALL_HELP_XML_TRUE@ if test -d $(srcdir)/help/mml/; then \
@INSTALL_HELP_XML_TRUE@ $(mkinstalldirs) $(DESTDIR)$(pkgdocdir)/help/mml/ && \
@INSTALL_HELP_XML_TRUE@ if ls -lLd $(srcdir)/help/mml/$(DOCMASKMML) >/dev/null 2>&1; then \
@INSTALL_HELP_XML_TRUE@ for file in $(srcdir)/help/mml/$(DOCMASKMML) ; do \
@INSTALL_HELP_XML_TRUE@ echo "$(INSTALL_DATA) $$file $(DESTDIR)$(pkgdocdir)/help/mml" ; \
@INSTALL_HELP_XML_TRUE@ $(INSTALL_DATA) "$$file" $(DESTDIR)$(pkgdocdir)/help/mml ; \
@INSTALL_HELP_XML_TRUE@ done ; \
@INSTALL_HELP_XML_TRUE@ fi; \
@INSTALL_HELP_XML_TRUE@ fi
install-data-local:
# Install the tests
@echo "-------- Install tests (if any) --------"; \
for dir in $(TESTS_DIR) $(TESTS_DIREXT) ; do \
if test -d $(srcdir)/$$dir/; then \
$(mkinstalldirs) $(DESTDIR)$(pkgmacrosdir)/$$dir && \
for file in `find $(srcdir)/$$dir | sed "s|^$(srcdir)/$$dir||" 2>/dev/null`; do \
if test -d "$(srcdir)/$$dir/$$file"; then \
echo $(mkinstalldirs) $(DESTDIR)$(pkgmacrosdir)/$$dir/$$file; \
$(mkinstalldirs) "$(DESTDIR)$(pkgmacrosdir)/$$dir/$$file"; \
else \
echo "$(INSTALL_DATA) $(srcdir)/$$dir/$$file $(DESTDIR)$(pkgmacrosdir)/`dirname $$dir/$$file`" ; \
$(INSTALL_DATA) "$(srcdir)/$$dir/$$file" "$(DESTDIR)$(pkgmacrosdir)/`dirname $$dir/$$file`" ; \
fi \
done; \
fi; \
done
# Install the help chapter
@echo "-------- Install the help chapter (if any) --------"; \
for lang in $(HELP_CHAPTERLANG); do \
HELPFILE=$(srcdir)/$(HELP_CHAPTERDIR)$$lang/$(HELP_CHAPTERFILE); \
if test -f $$HELPFILE; then \
echo $(mkinstalldirs) $(DESTDIR)$(pkgdocdir)/$(HELP_CHAPTERDIR)/$$lang/; \
$(mkinstalldirs) $(DESTDIR)$(pkgdocdir)/$(HELP_CHAPTERDIR)/$$lang/; \
echo $(INSTALL_DATA) $$HELPFILE $(DESTDIR)$(pkgdocdir)/$$HELPFILE; \
$(INSTALL_DATA) $$HELPFILE $(DESTDIR)$(pkgdocdir)/$$HELPFILE; \
fi; \
done
# Install the demos & examples
@echo "-------- Install demos & examples (if any) --------"; \
for dir in $(DEMOS_DIR) $(DEMOS_DIREXT) $(EXAMPLES_DIR) $(EXAMPLES_DIREXT) ; do \
if test -d $(srcdir)/$$dir/; then \
$(mkinstalldirs) $(DESTDIR)$(pkgdocdir)/$$dir && \
for file in `find $(srcdir)/$$dir | sed "s|^$(srcdir)/$$dir||" 2>/dev/null`; do \
if test -d "$(srcdir)/$$dir/$$file"; then \
echo $(mkinstalldirs) $(DESTDIR)$(pkgdocdir)/$$dir/$$file; \
$(mkinstalldirs) "$(DESTDIR)$(pkgdocdir)/$$dir/$$file"; \
else \
echo "$(INSTALL_DATA) $(srcdir)/$$dir/$$file $(DESTDIR)$(pkgdocdir)/`dirname $$dir/$$file`" ; \
$(INSTALL_DATA) "$(srcdir)/$$dir/$$file" "$(DESTDIR)$(pkgdocdir)/`dirname $$dir/$$file`" ; \
fi \
done; \
fi; \
done
# Install the macros
@echo "-------- Install macros (if any) --------"; \
for dir in $(MACRODIRS) $(MACROSDIRSEXT) ; do \
$(mkinstalldirs) $(DESTDIR)$(pkgmacrosdir)/$$dir && \
if test -d $(srcdir)/$$dir/; then \
FILELIST="$(srcdir)/$$dir/$(MACROMASK) $(srcdir)/$$dir/$(MACROBINMASK) $(srcdir)/$$dir/$(MACROBUILDMASK) $(srcdir)/$$dir/names $(srcdir)/$$dir/lib";\
if test -n "$(MACROSSPECIALEXT)"; then \
specialExtDir=""; \
for specialExt in $(MACROSSPECIALEXT); do \
specialExtDir="$$specialExtDir $(srcdir)/$$dir/$$specialExt"; \
done; \
FILELIST="$$FILELIST $$specialExtDir"; \
fi; \
for file in `ls -1 $$FILELIST 2>/dev/null`; do \
echo "$(INSTALL_DATA) $$file $(DESTDIR)$(pkgmacrosdir)/$$dir" ; \
$(INSTALL_DATA) "$$file" $(DESTDIR)$(pkgmacrosdir)/$$dir ; \
done; \
fi; \
done
# Install java files (.jar)
@if ls -lLd $(srcdir)/$(JARDIR)$(JARMASK) >/dev/null 2>&1; then \
echo "-------- Install jar files --------"; \
$(mkinstalldirs) $(DESTDIR)$(pkgdocdir)/$(JARDIR); \
for file in $(srcdir)/$(JARDIR)$(JARMASK); do\
echo "$(INSTALL_DATA) $$file $(DESTDIR)$(pkgdocdir)/$(JARDIR)" ; \
$(INSTALL_DATA) "$$file" $(DESTDIR)$(pkgdocdir)/$(JARDIR) ; \
done ; \
fi
########### CLEAN ###################
# Clean macros and help (generated automatically by Scilab)
@NEED_JAVA_TRUE@clean-local: clean-java clean-macros
@NEED_JAVA_FALSE@clean-local: clean-macros
distclean-local:
rm -f $(builddir)/help/*/.last_successful_build_javaHelp $(builddir)/help/*/.list_*
.PHONY: macros java swig giws
# 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:
|