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
|
# 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@
# Scilab ( http://www.scilab.org/ ) - This file is part of Scilab
# Copyright (C) 2006-2008 - INRIA - Sylvestre LEDRU
#
# 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
# 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@
@USE_DYNAMIC_STACK_TRUE@am__append_1 = src/c/scimem64.c
@USE_DYNAMIC_STACK_TRUE@am__append_2 = src/fortran/relocstack.f
# Used by sci_getdebuginfo:
@TCLTK_TRUE@am__append_3 = $(TCL_INC_PATH) \
@TCLTK_TRUE@ $(TK_INC_PATH)
DIST_COMMON = $(libscicore_la_include_HEADERS) $(srcdir)/Makefile.am \
$(srcdir)/Makefile.in $(top_srcdir)/Makefile.incl.am
@NEED_JAVA_TRUE@am__append_4 = java
subdir = modules/core
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)$(libscicore_la_etcdir)" \
"$(DESTDIR)$(libscicore_la_rootdir)" \
"$(DESTDIR)$(libscicore_la_sci_gatewaydir)" \
"$(DESTDIR)$(libscicore_la_xmldir)" \
"$(DESTDIR)$(libscicore_la_includedir)"
LTLIBRARIES = $(pkglib_LTLIBRARIES)
libscicore_la_LIBADD =
am__libscicore_la_SOURCES_DIST = src/c/inffic.c src/c/cs2st.c \
src/c/tmpdir.c src/c/intmacr2tree.c src/c/run.c \
src/c/InitScilab.c src/c/getval.c src/c/md5.c src/c/inisci-c.c \
src/c/IsAScalar.c src/c/texmacs.c src/c/sciquit.c \
src/c/stack1.c src/c/realmain.c src/c/stack3.c src/c/str2sci.c \
src/c/getmodules.c src/c/setgetSCIpath.c src/c/getmemory.c \
src/c/Funtab.c src/c/csignal.c src/c/callinterf.c \
src/c/scimem.c src/c/banier.c src/c/isanan.c src/c/parse.c \
src/c/timer.c src/c/stack2.c src/c/xscion.c \
src/c/SetScilabEnvironment.c src/c/hashtable_core.c \
src/c/returnanan.c src/c/LoadFunctionsTab.c \
src/c/with_module.c src/c/loadversion.c src/c/version.c \
src/c/stackinfo.c src/c/scirun.c src/c/SCIHOME.c \
src/c/warningmode.c src/c/InitializeCore.c \
src/c/TerminateCore.c src/c/coretable.c src/c/returnProperty.c \
src/c/returnPropertyList.c src/c/scilabmode.c \
src/c/GetXmlFileEncoding.c src/c/islittleendian.c \
src/c/terme.c src/c/ifexpr.c src/c/expr.c \
src/c/getcommandlineargs.c src/c/syncexec.c \
src/c/callFunctionFromGateway.c src/c/getvariablesname.c \
src/c/commandwords.c src/c/freeArrayOfString.c \
src/c/getstaticdebuginfo.c src/c/getdynamicdebuginfo.c \
src/c/callDynamicGateway.c src/c/gw_dynamic_generic.c \
src/c/dynamic_gateways.c src/c/readGateway.c \
src/c/comparehandles.c src/c/setPrecisionFPU.c \
src/c/LaunchScilabSignal.c src/c/getos.c src/c/mode_exec.c \
src/c/predef.c src/c/transposeMatrix.c \
src/c/recursionFunction.c src/c/typename.c \
src/c/inittypenames.c src/c/funcprot.c src/c/scimem64.c \
src/fortran/clunit.f src/fortran/getlin.f \
src/fortran/allowptr.f src/fortran/isany.f \
src/fortran/hmcreate.f src/fortran/nextj.f \
src/fortran/setgetmode.f src/fortran/showstack.f \
src/fortran/misops.f src/fortran/iseye.f src/fortran/chkvar.f \
src/fortran/setippty.f src/fortran/compil.f \
src/fortran/funnam.f src/fortran/isnum.f src/fortran/cmdstr.f \
src/fortran/logops.f src/fortran/atome.f src/fortran/hndlops.f \
src/fortran/cmplxt.f src/fortran/skpins.f src/fortran/folhp.f \
src/fortran/cvname.f src/fortran/funs.f src/fortran/fact.f \
src/fortran/inibrk.f src/fortran/typ2cod.f \
src/fortran/prompt.f src/fortran/intstr.f \
src/fortran/createref.f src/fortran/btof.f src/fortran/matzs.f \
src/fortran/getnum.f src/fortran/btofm.f src/fortran/getsym.f \
src/fortran/findequal.f src/fortran/stackg.f \
src/fortran/find.f src/fortran/israt.f src/fortran/setlnb.f \
src/fortran/mrknmd.f src/fortran/stackgl.f \
src/fortran/allops.f src/fortran/mname.f src/fortran/command.f \
src/fortran/ref2val.f src/fortran/namstr.f src/fortran/stack.f \
src/fortran/isbrk.f src/fortran/majmin.f src/fortran/xerbla.f \
src/fortran/dtosci.f src/fortran/bexec.f \
src/fortran/varfunptr.f src/fortran/getfun.f \
src/fortran/savlod.f src/fortran/error.f src/fortran/cvdm.f \
src/fortran/tradsl.f src/fortran/mkindx.f src/fortran/whatln.f \
src/fortran/errmgr.f src/fortran/defmat.f src/fortran/mklist.f \
src/fortran/sigbas.f src/fortran/indxg.f src/fortran/matz.f \
src/fortran/istrue.f src/fortran/inisci.f src/fortran/ptover.f \
src/fortran/getfunction.f src/fortran/stackp.f \
src/fortran/dbasin.f src/fortran/macro.f src/fortran/extlarg.f \
src/fortran/getstr.f src/fortran/cvwm.f \
src/fortran/storeglobal.f src/fortran/lst2vars.f \
src/fortran/basnms.f src/fortran/matc.f src/fortran/ptrback.f \
src/fortran/getch.f src/fortran/ftob.f src/fortran/seteol.f \
src/fortran/basin.f src/fortran/clause.f src/fortran/compcl.f \
src/fortran/termf.f src/fortran/expsum.f src/fortran/eqid.f \
src/fortran/copyvar.f src/fortran/putid.f src/fortran/itosci.f \
src/fortran/stackr2d.f src/fortran/stacki2d.f \
src/fortran/stackc2i.f src/fortran/isinstring.f \
src/fortran/relocstack.f sci_gateway/c/sci_stacksize.c \
sci_gateway/c/sci_resume.c sci_gateway/c/sci_mtlb_mode.c \
sci_gateway/c/sci_banner.c sci_gateway/c/sci_where.c \
sci_gateway/c/sci_errcatch.c sci_gateway/c/sci_getos.c \
sci_gateway/c/sci_format.c sci_gateway/c/sci_getmemory.c \
sci_gateway/c/sci_havewindow.c sci_gateway/c/sci_delbpt.c \
sci_gateway/c/sci_macr2lst.c sci_gateway/c/sci_isdef.c \
sci_gateway/c/sci_isglobal.c sci_gateway/c/sci_who.c \
sci_gateway/c/sci_errclear.c sci_gateway/c/sci_global.c \
sci_gateway/c/sci_funcprot.c sci_gateway/c/sci_newfun.c \
sci_gateway/c/sci_warning.c sci_gateway/c/sci_dispbpt.c \
sci_gateway/c/sci_intppty.c sci_gateway/c/sci_ieee.c \
sci_gateway/c/sci_gstacksize.c sci_gateway/c/sci_lasterror.c \
sci_gateway/c/sci_funptr.c sci_gateway/c/sci_return.c \
sci_gateway/c/sci_exists.c sci_gateway/c/sci_getmd5.c \
sci_gateway/c/sci_clear.c sci_gateway/c/sci_clearfun.c \
sci_gateway/c/sci_setbpt.c sci_gateway/c/sci_getmodules.c \
sci_gateway/c/sci_what.c sci_gateway/c/sci_predef.c \
sci_gateway/c/sci_clearglobal.c sci_gateway/c/sci_arg.c \
sci_gateway/c/sci_type.c sci_gateway/c/sci_typename.c \
sci_gateway/c/sci_mode.c sci_gateway/c/sci_macr2tree.c \
sci_gateway/c/sci_iserror.c sci_gateway/c/sci_getversion.c \
sci_gateway/c/sci_getdebuginfo.c sci_gateway/c/sci_debug.c \
sci_gateway/c/gw_core.c sci_gateway/c/gw_user.c \
sci_gateway/c/gw_user2.c sci_gateway/c/sci_error.c \
sci_gateway/c/sci_sciargs.c sci_gateway/c/sci_with_module.c \
sci_gateway/c/sci_islittleendian.c \
sci_gateway/c/sci_getscilabmode.c \
sci_gateway/c/sci_getvariablesonstack.c \
sci_gateway/c/sci_readgateway.c sci_gateway/c/sci_comp.c \
sci_gateway/c/sci_exit.c sci_gateway/fortran/sci_errclear.f \
sci_gateway/fortran/sci_global.f \
sci_gateway/fortran/sci_mtlb_mode.f \
sci_gateway/fortran/sci_resume.f \
sci_gateway/fortran/sci_dispbpt.f \
sci_gateway/fortran/sci_useascommand.f \
sci_gateway/fortran/sci_intppty.f \
sci_gateway/fortran/sci_ieee.f \
sci_gateway/fortran/sci_macrovar.f \
sci_gateway/fortran/sci_exists.f \
sci_gateway/fortran/sci_errcatch.f \
sci_gateway/fortran/sci_clear.f sci_gateway/fortran/sci_argn.f \
sci_gateway/fortran/sci_setbpt.f \
sci_gateway/fortran/sci_clearglobal.f \
sci_gateway/fortran/sci_delbpt.f sci_gateway/fortran/where.f \
sci_gateway/fortran/sci_iserror.f \
sci_gateway/fortran/sci_debug.f sci_gateway/fortran/sci_comp.f \
sci_gateway/fortran/sci_isglobal.f
@USE_DYNAMIC_STACK_TRUE@am__objects_1 = libscicore_la-scimem64.lo
am__objects_2 = libscicore_la-inffic.lo libscicore_la-cs2st.lo \
libscicore_la-tmpdir.lo libscicore_la-intmacr2tree.lo \
libscicore_la-run.lo libscicore_la-InitScilab.lo \
libscicore_la-getval.lo libscicore_la-md5.lo \
libscicore_la-inisci-c.lo libscicore_la-IsAScalar.lo \
libscicore_la-texmacs.lo libscicore_la-sciquit.lo \
libscicore_la-stack1.lo libscicore_la-realmain.lo \
libscicore_la-stack3.lo libscicore_la-str2sci.lo \
libscicore_la-getmodules.lo libscicore_la-setgetSCIpath.lo \
libscicore_la-getmemory.lo libscicore_la-Funtab.lo \
libscicore_la-csignal.lo libscicore_la-callinterf.lo \
libscicore_la-scimem.lo libscicore_la-banier.lo \
libscicore_la-isanan.lo libscicore_la-parse.lo \
libscicore_la-timer.lo libscicore_la-stack2.lo \
libscicore_la-xscion.lo libscicore_la-SetScilabEnvironment.lo \
libscicore_la-hashtable_core.lo libscicore_la-returnanan.lo \
libscicore_la-LoadFunctionsTab.lo libscicore_la-with_module.lo \
libscicore_la-loadversion.lo libscicore_la-version.lo \
libscicore_la-stackinfo.lo libscicore_la-scirun.lo \
libscicore_la-SCIHOME.lo libscicore_la-warningmode.lo \
libscicore_la-InitializeCore.lo libscicore_la-TerminateCore.lo \
libscicore_la-coretable.lo libscicore_la-returnProperty.lo \
libscicore_la-returnPropertyList.lo \
libscicore_la-scilabmode.lo \
libscicore_la-GetXmlFileEncoding.lo \
libscicore_la-islittleendian.lo libscicore_la-terme.lo \
libscicore_la-ifexpr.lo libscicore_la-expr.lo \
libscicore_la-getcommandlineargs.lo libscicore_la-syncexec.lo \
libscicore_la-callFunctionFromGateway.lo \
libscicore_la-getvariablesname.lo \
libscicore_la-commandwords.lo \
libscicore_la-freeArrayOfString.lo \
libscicore_la-getstaticdebuginfo.lo \
libscicore_la-getdynamicdebuginfo.lo \
libscicore_la-callDynamicGateway.lo \
libscicore_la-gw_dynamic_generic.lo \
libscicore_la-dynamic_gateways.lo libscicore_la-readGateway.lo \
libscicore_la-comparehandles.lo \
libscicore_la-setPrecisionFPU.lo \
libscicore_la-LaunchScilabSignal.lo libscicore_la-getos.lo \
libscicore_la-mode_exec.lo libscicore_la-predef.lo \
libscicore_la-transposeMatrix.lo \
libscicore_la-recursionFunction.lo libscicore_la-typename.lo \
libscicore_la-inittypenames.lo libscicore_la-funcprot.lo \
$(am__objects_1)
@USE_DYNAMIC_STACK_TRUE@am__objects_3 = relocstack.lo
am__objects_4 = clunit.lo getlin.lo allowptr.lo isany.lo hmcreate.lo \
nextj.lo setgetmode.lo showstack.lo misops.lo iseye.lo \
chkvar.lo setippty.lo compil.lo funnam.lo isnum.lo cmdstr.lo \
logops.lo atome.lo hndlops.lo cmplxt.lo skpins.lo folhp.lo \
cvname.lo funs.lo fact.lo inibrk.lo typ2cod.lo prompt.lo \
intstr.lo createref.lo btof.lo matzs.lo getnum.lo btofm.lo \
getsym.lo findequal.lo stackg.lo find.lo israt.lo setlnb.lo \
mrknmd.lo stackgl.lo allops.lo mname.lo command.lo ref2val.lo \
namstr.lo stack.lo isbrk.lo majmin.lo xerbla.lo dtosci.lo \
bexec.lo varfunptr.lo getfun.lo savlod.lo error.lo cvdm.lo \
tradsl.lo mkindx.lo whatln.lo errmgr.lo defmat.lo mklist.lo \
sigbas.lo indxg.lo matz.lo istrue.lo inisci.lo ptover.lo \
getfunction.lo stackp.lo dbasin.lo macro.lo extlarg.lo \
getstr.lo cvwm.lo storeglobal.lo lst2vars.lo basnms.lo matc.lo \
ptrback.lo getch.lo ftob.lo seteol.lo basin.lo clause.lo \
compcl.lo termf.lo expsum.lo eqid.lo copyvar.lo putid.lo \
itosci.lo stackr2d.lo stacki2d.lo stackc2i.lo isinstring.lo \
$(am__objects_3)
am__objects_5 = libscicore_la-sci_stacksize.lo \
libscicore_la-sci_resume.lo libscicore_la-sci_mtlb_mode.lo \
libscicore_la-sci_banner.lo libscicore_la-sci_where.lo \
libscicore_la-sci_errcatch.lo libscicore_la-sci_getos.lo \
libscicore_la-sci_format.lo libscicore_la-sci_getmemory.lo \
libscicore_la-sci_havewindow.lo libscicore_la-sci_delbpt.lo \
libscicore_la-sci_macr2lst.lo libscicore_la-sci_isdef.lo \
libscicore_la-sci_isglobal.lo libscicore_la-sci_who.lo \
libscicore_la-sci_errclear.lo libscicore_la-sci_global.lo \
libscicore_la-sci_funcprot.lo libscicore_la-sci_newfun.lo \
libscicore_la-sci_warning.lo libscicore_la-sci_dispbpt.lo \
libscicore_la-sci_intppty.lo libscicore_la-sci_ieee.lo \
libscicore_la-sci_gstacksize.lo libscicore_la-sci_lasterror.lo \
libscicore_la-sci_funptr.lo libscicore_la-sci_return.lo \
libscicore_la-sci_exists.lo libscicore_la-sci_getmd5.lo \
libscicore_la-sci_clear.lo libscicore_la-sci_clearfun.lo \
libscicore_la-sci_setbpt.lo libscicore_la-sci_getmodules.lo \
libscicore_la-sci_what.lo libscicore_la-sci_predef.lo \
libscicore_la-sci_clearglobal.lo libscicore_la-sci_arg.lo \
libscicore_la-sci_type.lo libscicore_la-sci_typename.lo \
libscicore_la-sci_mode.lo libscicore_la-sci_macr2tree.lo \
libscicore_la-sci_iserror.lo libscicore_la-sci_getversion.lo \
libscicore_la-sci_getdebuginfo.lo libscicore_la-sci_debug.lo \
libscicore_la-gw_core.lo libscicore_la-gw_user.lo \
libscicore_la-gw_user2.lo libscicore_la-sci_error.lo \
libscicore_la-sci_sciargs.lo libscicore_la-sci_with_module.lo \
libscicore_la-sci_islittleendian.lo \
libscicore_la-sci_getscilabmode.lo \
libscicore_la-sci_getvariablesonstack.lo \
libscicore_la-sci_readgateway.lo libscicore_la-sci_comp.lo \
libscicore_la-sci_exit.lo
am__objects_6 = sci_errclear.lo sci_global.lo sci_mtlb_mode.lo \
sci_resume.lo sci_dispbpt.lo sci_useascommand.lo \
sci_intppty.lo sci_ieee.lo sci_macrovar.lo sci_exists.lo \
sci_errcatch.lo sci_clear.lo sci_argn.lo sci_setbpt.lo \
sci_clearglobal.lo sci_delbpt.lo where.lo sci_iserror.lo \
sci_debug.lo sci_comp.lo sci_isglobal.lo
am_libscicore_la_OBJECTS = $(am__objects_2) $(am__objects_4) \
$(am__objects_5) $(am__objects_6)
libscicore_la_OBJECTS = $(am_libscicore_la_OBJECTS)
libscicore_la_LINK = $(LIBTOOL) --tag=F77 $(AM_LIBTOOLFLAGS) \
$(LIBTOOLFLAGS) --mode=link $(F77LD) $(AM_FFLAGS) $(FFLAGS) \
$(libscicore_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 = $(libscicore_la_SOURCES)
DIST_SOURCES = $(am__libscicore_la_SOURCES_DIST)
DATA = $(libscicore_la_etc_DATA) $(libscicore_la_root_DATA) \
$(libscicore_la_sci_gateway_DATA) $(libscicore_la_xml_DATA)
HEADERS = $(libscicore_la_include_HEADERS)
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@
CORE_C_SOURCES = src/c/inffic.c src/c/cs2st.c src/c/tmpdir.c \
src/c/intmacr2tree.c src/c/run.c src/c/InitScilab.c \
src/c/getval.c src/c/md5.c src/c/inisci-c.c src/c/IsAScalar.c \
src/c/texmacs.c src/c/sciquit.c src/c/stack1.c \
src/c/realmain.c src/c/stack3.c src/c/str2sci.c \
src/c/getmodules.c src/c/setgetSCIpath.c src/c/getmemory.c \
src/c/Funtab.c src/c/csignal.c src/c/callinterf.c \
src/c/scimem.c src/c/banier.c src/c/isanan.c src/c/parse.c \
src/c/timer.c src/c/stack2.c src/c/xscion.c \
src/c/SetScilabEnvironment.c src/c/hashtable_core.c \
src/c/returnanan.c src/c/LoadFunctionsTab.c \
src/c/with_module.c src/c/loadversion.c src/c/version.c \
src/c/stackinfo.c src/c/scirun.c src/c/SCIHOME.c \
src/c/warningmode.c src/c/InitializeCore.c \
src/c/TerminateCore.c src/c/coretable.c src/c/returnProperty.c \
src/c/returnPropertyList.c src/c/scilabmode.c \
src/c/GetXmlFileEncoding.c src/c/islittleendian.c \
src/c/terme.c src/c/ifexpr.c src/c/expr.c \
src/c/getcommandlineargs.c src/c/syncexec.c \
src/c/callFunctionFromGateway.c src/c/getvariablesname.c \
src/c/commandwords.c src/c/freeArrayOfString.c \
src/c/getstaticdebuginfo.c src/c/getdynamicdebuginfo.c \
src/c/callDynamicGateway.c src/c/gw_dynamic_generic.c \
src/c/dynamic_gateways.c src/c/readGateway.c \
src/c/comparehandles.c src/c/setPrecisionFPU.c \
src/c/LaunchScilabSignal.c src/c/getos.c src/c/mode_exec.c \
src/c/predef.c src/c/transposeMatrix.c \
src/c/recursionFunction.c src/c/typename.c \
src/c/inittypenames.c src/c/funcprot.c $(am__append_1)
CORE_FORTRAN_SOURCES = src/fortran/clunit.f src/fortran/getlin.f \
src/fortran/allowptr.f src/fortran/isany.f \
src/fortran/hmcreate.f src/fortran/nextj.f \
src/fortran/setgetmode.f src/fortran/showstack.f \
src/fortran/misops.f src/fortran/iseye.f src/fortran/chkvar.f \
src/fortran/setippty.f src/fortran/compil.f \
src/fortran/funnam.f src/fortran/isnum.f src/fortran/cmdstr.f \
src/fortran/logops.f src/fortran/atome.f src/fortran/hndlops.f \
src/fortran/cmplxt.f src/fortran/skpins.f src/fortran/folhp.f \
src/fortran/cvname.f src/fortran/funs.f src/fortran/fact.f \
src/fortran/inibrk.f src/fortran/typ2cod.f \
src/fortran/prompt.f src/fortran/intstr.f \
src/fortran/createref.f src/fortran/btof.f src/fortran/matzs.f \
src/fortran/getnum.f src/fortran/btofm.f src/fortran/getsym.f \
src/fortran/findequal.f src/fortran/stackg.f \
src/fortran/find.f src/fortran/israt.f src/fortran/setlnb.f \
src/fortran/mrknmd.f src/fortran/stackgl.f \
src/fortran/allops.f src/fortran/mname.f src/fortran/command.f \
src/fortran/ref2val.f src/fortran/namstr.f src/fortran/stack.f \
src/fortran/isbrk.f src/fortran/majmin.f src/fortran/xerbla.f \
src/fortran/dtosci.f src/fortran/bexec.f \
src/fortran/varfunptr.f src/fortran/getfun.f \
src/fortran/savlod.f src/fortran/error.f src/fortran/cvdm.f \
src/fortran/tradsl.f src/fortran/mkindx.f src/fortran/whatln.f \
src/fortran/errmgr.f src/fortran/defmat.f src/fortran/mklist.f \
src/fortran/sigbas.f src/fortran/indxg.f src/fortran/matz.f \
src/fortran/istrue.f src/fortran/inisci.f src/fortran/ptover.f \
src/fortran/getfunction.f src/fortran/stackp.f \
src/fortran/dbasin.f src/fortran/macro.f src/fortran/extlarg.f \
src/fortran/getstr.f src/fortran/cvwm.f \
src/fortran/storeglobal.f src/fortran/lst2vars.f \
src/fortran/basnms.f src/fortran/matc.f src/fortran/ptrback.f \
src/fortran/getch.f src/fortran/ftob.f src/fortran/seteol.f \
src/fortran/basin.f src/fortran/clause.f src/fortran/compcl.f \
src/fortran/termf.f src/fortran/expsum.f src/fortran/eqid.f \
src/fortran/copyvar.f src/fortran/putid.f src/fortran/itosci.f \
src/fortran/stackr2d.f src/fortran/stacki2d.f \
src/fortran/stackc2i.f src/fortran/isinstring.f \
$(am__append_2)
GATEWAY_C_SOURCES = sci_gateway/c/sci_stacksize.c \
sci_gateway/c/sci_resume.c \
sci_gateway/c/sci_mtlb_mode.c \
sci_gateway/c/sci_banner.c \
sci_gateway/c/sci_where.c \
sci_gateway/c/sci_errcatch.c \
sci_gateway/c/sci_getos.c \
sci_gateway/c/sci_format.c \
sci_gateway/c/sci_getmemory.c \
sci_gateway/c/sci_havewindow.c \
sci_gateway/c/sci_delbpt.c \
sci_gateway/c/sci_macr2lst.c \
sci_gateway/c/sci_isdef.c \
sci_gateway/c/sci_isglobal.c \
sci_gateway/c/sci_who.c \
sci_gateway/c/sci_errclear.c \
sci_gateway/c/sci_global.c \
sci_gateway/c/sci_funcprot.c \
sci_gateway/c/sci_newfun.c \
sci_gateway/c/sci_warning.c \
sci_gateway/c/sci_dispbpt.c \
sci_gateway/c/sci_intppty.c \
sci_gateway/c/sci_ieee.c \
sci_gateway/c/sci_gstacksize.c \
sci_gateway/c/sci_lasterror.c \
sci_gateway/c/sci_funptr.c \
sci_gateway/c/sci_return.c \
sci_gateway/c/sci_exists.c \
sci_gateway/c/sci_getmd5.c \
sci_gateway/c/sci_clear.c \
sci_gateway/c/sci_clearfun.c \
sci_gateway/c/sci_setbpt.c \
sci_gateway/c/sci_getmodules.c \
sci_gateway/c/sci_what.c \
sci_gateway/c/sci_predef.c \
sci_gateway/c/sci_clearglobal.c \
sci_gateway/c/sci_arg.c \
sci_gateway/c/sci_type.c \
sci_gateway/c/sci_typename.c \
sci_gateway/c/sci_mode.c \
sci_gateway/c/sci_macr2tree.c \
sci_gateway/c/sci_iserror.c \
sci_gateway/c/sci_getversion.c \
sci_gateway/c/sci_getdebuginfo.c \
sci_gateway/c/sci_debug.c \
sci_gateway/c/gw_core.c \
sci_gateway/c/gw_user.c \
sci_gateway/c/gw_user2.c \
sci_gateway/c/sci_error.c \
sci_gateway/c/sci_sciargs.c \
sci_gateway/c/sci_with_module.c \
sci_gateway/c/sci_islittleendian.c \
sci_gateway/c/sci_getscilabmode.c \
sci_gateway/c/sci_getvariablesonstack.c \
sci_gateway/c/sci_readgateway.c \
sci_gateway/c/sci_comp.c \
sci_gateway/c/sci_exit.c
GATEWAY_FORTRAN_SOURCES = sci_gateway/fortran/sci_errclear.f \
sci_gateway/fortran/sci_global.f \
sci_gateway/fortran/sci_mtlb_mode.f \
sci_gateway/fortran/sci_resume.f \
sci_gateway/fortran/sci_dispbpt.f \
sci_gateway/fortran/sci_useascommand.f \
sci_gateway/fortran/sci_intppty.f \
sci_gateway/fortran/sci_ieee.f \
sci_gateway/fortran/sci_macrovar.f \
sci_gateway/fortran/sci_exists.f \
sci_gateway/fortran/sci_errcatch.f \
sci_gateway/fortran/sci_clear.f \
sci_gateway/fortran/sci_argn.f \
sci_gateway/fortran/sci_setbpt.f \
sci_gateway/fortran/sci_clearglobal.f \
sci_gateway/fortran/sci_delbpt.f \
sci_gateway/fortran/where.f \
sci_gateway/fortran/sci_iserror.f \
sci_gateway/fortran/sci_debug.f \
sci_gateway/fortran/sci_comp.f \
sci_gateway/fortran/sci_isglobal.f
libscicore_la_CFLAGS = -I$(srcdir)/includes/ -I$(srcdir)/src/c/ \
-I$(top_srcdir)/libs/MALLOC/includes/ \
-I$(top_srcdir)/libs/dynamiclibrary/includes/ \
-I$(top_srcdir)/libs/doublylinkedlist/includes \
-I$(top_srcdir)/modules/intersci/includes \
-I$(top_srcdir)/modules/call_scilab/includes \
-I$(top_srcdir)/modules/api_scilab/includes \
-I$(top_srcdir)/modules/action_binding/includes \
-I$(top_srcdir)/modules/output_stream/includes \
-I$(top_srcdir)/modules/localization/includes \
-I$(top_srcdir)/modules/tclsci/includes \
-I$(top_srcdir)/modules/dynamic_link/includes \
-I$(top_srcdir)/modules/pvm/includes \
-I$(top_srcdir)/modules/elementary_functions/includes \
-I$(top_srcdir)/modules/string/includes \
-I$(top_srcdir)/modules/fileio/includes \
-I$(top_srcdir)/modules/shell/includes $(XML_FLAGS) \
$(am__append_3)
pkglib_LTLIBRARIES = libscicore.la
libscicore_la_LDFLAGS = -version-info $(SCILAB_LIBRARY_VERSION) $(XML_LIBS)
# For the code check (splint)
CHECK_SRC = $(CORE_C_SOURCES) $(GATEWAY_C_SOURCES)
INCLUDE_FLAGS = $(libscicore_la_CFLAGS)
libscicore_la_SOURCES = $(CORE_C_SOURCES) $(CORE_FORTRAN_SOURCES) $(GATEWAY_C_SOURCES) $(GATEWAY_FORTRAN_SOURCES) $(JNI_SOURCES)
# Commented because it is easier to comment first the core module
#�libscicore_la_LIBADD = $(top_builddir)/modules/io/libsciio.la $(top_builddir)/modules/fftw/libscifftw.la $(top_builddir)/modules/console/libsciconsole.la $(top_builddir)/modules/special_functions/libscispecial_functions.la $(top_builddir)/modules/cacsd/libscicacsd.la $(top_builddir)/modules/polynomials/libscipolynomials.la $(top_builddir)/modules/data_structures/libscidata_structures.la $(top_builddir)/modules/boolean/libsciboolean.la $(top_builddir)/modules/dynamic_link/libscidynamic_link.la $(top_builddir)/modules/randlib/libscirandlib.la $(top_builddir)/modules/localization/libscilocalization.la $(top_builddir)/libs/MALLOC/libscimalloc.la $(top_builddir)/modules/signal_processing/libscisignal_processing.la $(top_builddir)/modules/completion/libscicompletion.la $(top_builddir)/modules/action_binding/libsciaction_binding.la $(top_builddir)/modules/differential_equations/libscidifferential_equations.la $(top_builddir)/modules/tclsci/libscitclsci.la $(top_builddir)/modules/arnoldi/libsciarnoldi.la $(top_builddir)/libs/dynamiclibrary/libscidynamiclibrary.la $(top_builddir)/modules/shell/libscishell.la $(top_builddir)/modules/pvm/libscipvm.la $(top_builddir)/modules/string/libscistring.la $(top_builddir)/modules/double/libscidouble.la $(top_builddir)/modules/sound/libscisound.la $(top_builddir)/modules/intersci/libsciintersci.la $(top_builddir)/modules/graphics/libscigraphics.la $(top_builddir)/modules/elementary_functions/libscielementary_functions.la $(top_builddir)/modules/graphic_export/libscigraphic_export.la $(top_builddir)/modules/fileio/libscifileio.la $(top_builddir)/modules/spreadsheet/libscispreadsheet.la $(top_builddir)/modules/gui/libscigui.la $(top_builddir)/modules/history_manager/libscihistory_manager.la $(top_builddir)/modules/time/libscitime.la $(top_builddir)/modules/metanet/libscimetanet.la $(top_builddir)/modules/windows_tools/libsciwindows_tools.la $(top_builddir)/modules/interpolation/libsciinterpolation.la $(top_builddir)/modules/symbolic/libscisymbolic.la $(top_builddir)/libs/blas/libsciblas.la $(top_builddir)/modules/statistics/libscistatistics.la $(top_builddir)/modules/jvm/libscijvm.la $(top_builddir)/modules/sparse/libscisparse.la $(top_builddir)/modules/linear_algebra/libscilinear_algebra.la $(top_builddir)/modules/optimization/libscioptimization.la $(top_builddir)/modules/output_stream/libscioutput_stream.la $(top_builddir)/libs/lapack/libscilapack.la
#### Target ######
modulename = core
#### core : Conf files ####
libscicore_la_rootdir = $(mydatadir)
libscicore_la_root_DATA = changelog.txt license.txt readme.txt version.xml
#### core : init scripts ####
libscicore_la_etcdir = $(mydatadir)/etc
libscicore_la_etc_DATA = etc/core.quit etc/core.start
#### core : gateway declaration ####
libscicore_la_sci_gatewaydir = $(mydatadir)/sci_gateway
libscicore_la_sci_gateway_DATA = sci_gateway/core_gateway.xml
#### core : dtd files ####
libscicore_la_xmldir = $(mydatadir)/xml
libscicore_la_xml_DATA = xml/modules.dtd xml/version.dtd
#### core : include files ####
libscicore_la_includedir = $(pkgincludedir)
libscicore_la_include_HEADERS = \
includes/BOOL.h \
includes/core_math.h \
includes/doublecomplex.h \
includes/freeArrayOfString.h \
includes/getcommandlineargs.h \
includes/getmemory.h \
includes/getos.h \
includes/machine.h \
includes/mode_exec.h \
includes/PATH_MAX.h \
includes/SCIHOME.h \
includes/scilabDefaults.h \
includes/scilabmode.h \
includes/scisparse.h \
includes/sciquit.h \
includes/setgetSCIpath.h \
includes/stack-c.h \
includes/stack-def.h \
includes/stack.h \
includes/stack1.h \
includes/stack2.h \
includes/stack3.h \
includes/stackinfo.h \
includes/stackTypeVariable.h \
includes/version.h \
includes/warningmode.h
# 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_4)
################ 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/core/Makefile'; \
$(am__cd) $(top_srcdir) && \
$(AUTOMAKE) --foreign modules/core/Makefile
.PRECIOUS: Makefile
Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status
@case '$?' in \
*config.status*) \
cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \
*) \
echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \
cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \
esac;
$(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES)
cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh
$(top_srcdir)/configure: @MAINTAINER_MODE_TRUE@ $(am__configure_deps)
cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh
$(ACLOCAL_M4): @MAINTAINER_MODE_TRUE@ $(am__aclocal_m4_deps)
cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh
$(am__aclocal_m4_deps):
install-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
libscicore.la: $(libscicore_la_OBJECTS) $(libscicore_la_DEPENDENCIES)
$(libscicore_la_LINK) -rpath $(pkglibdir) $(libscicore_la_OBJECTS) $(libscicore_la_LIBADD) $(LIBS)
mostlyclean-compile:
-rm -f *.$(OBJEXT)
distclean-compile:
-rm -f *.tab.c
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libscicore_la-Funtab.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libscicore_la-GetXmlFileEncoding.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libscicore_la-InitScilab.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libscicore_la-InitializeCore.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libscicore_la-IsAScalar.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libscicore_la-LaunchScilabSignal.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libscicore_la-LoadFunctionsTab.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libscicore_la-SCIHOME.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libscicore_la-SetScilabEnvironment.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libscicore_la-TerminateCore.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libscicore_la-banier.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libscicore_la-callDynamicGateway.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libscicore_la-callFunctionFromGateway.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libscicore_la-callinterf.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libscicore_la-commandwords.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libscicore_la-comparehandles.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libscicore_la-coretable.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libscicore_la-cs2st.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libscicore_la-csignal.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libscicore_la-dynamic_gateways.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libscicore_la-expr.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libscicore_la-freeArrayOfString.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libscicore_la-funcprot.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libscicore_la-getcommandlineargs.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libscicore_la-getdynamicdebuginfo.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libscicore_la-getmemory.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libscicore_la-getmodules.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libscicore_la-getos.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libscicore_la-getstaticdebuginfo.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libscicore_la-getval.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libscicore_la-getvariablesname.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libscicore_la-gw_core.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libscicore_la-gw_dynamic_generic.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libscicore_la-gw_user.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libscicore_la-gw_user2.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libscicore_la-hashtable_core.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libscicore_la-ifexpr.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libscicore_la-inffic.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libscicore_la-inisci-c.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libscicore_la-inittypenames.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libscicore_la-intmacr2tree.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libscicore_la-isanan.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libscicore_la-islittleendian.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libscicore_la-loadversion.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libscicore_la-md5.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libscicore_la-mode_exec.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libscicore_la-parse.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libscicore_la-predef.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libscicore_la-readGateway.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libscicore_la-realmain.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libscicore_la-recursionFunction.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libscicore_la-returnProperty.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libscicore_la-returnPropertyList.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libscicore_la-returnanan.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libscicore_la-run.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libscicore_la-sci_arg.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libscicore_la-sci_banner.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libscicore_la-sci_clear.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libscicore_la-sci_clearfun.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libscicore_la-sci_clearglobal.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libscicore_la-sci_comp.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libscicore_la-sci_debug.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libscicore_la-sci_delbpt.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libscicore_la-sci_dispbpt.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libscicore_la-sci_errcatch.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libscicore_la-sci_errclear.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libscicore_la-sci_error.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libscicore_la-sci_exists.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libscicore_la-sci_exit.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libscicore_la-sci_format.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libscicore_la-sci_funcprot.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libscicore_la-sci_funptr.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libscicore_la-sci_getdebuginfo.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libscicore_la-sci_getmd5.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libscicore_la-sci_getmemory.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libscicore_la-sci_getmodules.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libscicore_la-sci_getos.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libscicore_la-sci_getscilabmode.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libscicore_la-sci_getvariablesonstack.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libscicore_la-sci_getversion.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libscicore_la-sci_global.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libscicore_la-sci_gstacksize.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libscicore_la-sci_havewindow.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libscicore_la-sci_ieee.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libscicore_la-sci_intppty.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libscicore_la-sci_isdef.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libscicore_la-sci_iserror.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libscicore_la-sci_isglobal.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libscicore_la-sci_islittleendian.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libscicore_la-sci_lasterror.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libscicore_la-sci_macr2lst.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libscicore_la-sci_macr2tree.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libscicore_la-sci_mode.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libscicore_la-sci_mtlb_mode.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libscicore_la-sci_newfun.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libscicore_la-sci_predef.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libscicore_la-sci_readgateway.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libscicore_la-sci_resume.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libscicore_la-sci_return.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libscicore_la-sci_sciargs.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libscicore_la-sci_setbpt.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libscicore_la-sci_stacksize.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libscicore_la-sci_type.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libscicore_la-sci_typename.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libscicore_la-sci_warning.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libscicore_la-sci_what.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libscicore_la-sci_where.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libscicore_la-sci_who.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libscicore_la-sci_with_module.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libscicore_la-scilabmode.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libscicore_la-scimem.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libscicore_la-scimem64.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libscicore_la-sciquit.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libscicore_la-scirun.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libscicore_la-setPrecisionFPU.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libscicore_la-setgetSCIpath.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libscicore_la-stack1.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libscicore_la-stack2.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libscicore_la-stack3.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libscicore_la-stackinfo.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libscicore_la-str2sci.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libscicore_la-syncexec.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libscicore_la-terme.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libscicore_la-texmacs.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libscicore_la-timer.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libscicore_la-tmpdir.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libscicore_la-transposeMatrix.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libscicore_la-typename.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libscicore_la-version.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libscicore_la-warningmode.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libscicore_la-with_module.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libscicore_la-xscion.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 $@ $<
libscicore_la-inffic.lo: src/c/inffic.c
@am__fastdepCC_TRUE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libscicore_la_CFLAGS) $(CFLAGS) -MT libscicore_la-inffic.lo -MD -MP -MF $(DEPDIR)/libscicore_la-inffic.Tpo -c -o libscicore_la-inffic.lo `test -f 'src/c/inffic.c' || echo '$(srcdir)/'`src/c/inffic.c
@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/libscicore_la-inffic.Tpo $(DEPDIR)/libscicore_la-inffic.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/c/inffic.c' object='libscicore_la-inffic.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) $(AM_CPPFLAGS) $(CPPFLAGS) $(libscicore_la_CFLAGS) $(CFLAGS) -c -o libscicore_la-inffic.lo `test -f 'src/c/inffic.c' || echo '$(srcdir)/'`src/c/inffic.c
libscicore_la-cs2st.lo: src/c/cs2st.c
@am__fastdepCC_TRUE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libscicore_la_CFLAGS) $(CFLAGS) -MT libscicore_la-cs2st.lo -MD -MP -MF $(DEPDIR)/libscicore_la-cs2st.Tpo -c -o libscicore_la-cs2st.lo `test -f 'src/c/cs2st.c' || echo '$(srcdir)/'`src/c/cs2st.c
@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/libscicore_la-cs2st.Tpo $(DEPDIR)/libscicore_la-cs2st.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/c/cs2st.c' object='libscicore_la-cs2st.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) $(AM_CPPFLAGS) $(CPPFLAGS) $(libscicore_la_CFLAGS) $(CFLAGS) -c -o libscicore_la-cs2st.lo `test -f 'src/c/cs2st.c' || echo '$(srcdir)/'`src/c/cs2st.c
libscicore_la-tmpdir.lo: src/c/tmpdir.c
@am__fastdepCC_TRUE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libscicore_la_CFLAGS) $(CFLAGS) -MT libscicore_la-tmpdir.lo -MD -MP -MF $(DEPDIR)/libscicore_la-tmpdir.Tpo -c -o libscicore_la-tmpdir.lo `test -f 'src/c/tmpdir.c' || echo '$(srcdir)/'`src/c/tmpdir.c
@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/libscicore_la-tmpdir.Tpo $(DEPDIR)/libscicore_la-tmpdir.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/c/tmpdir.c' object='libscicore_la-tmpdir.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) $(AM_CPPFLAGS) $(CPPFLAGS) $(libscicore_la_CFLAGS) $(CFLAGS) -c -o libscicore_la-tmpdir.lo `test -f 'src/c/tmpdir.c' || echo '$(srcdir)/'`src/c/tmpdir.c
libscicore_la-intmacr2tree.lo: src/c/intmacr2tree.c
@am__fastdepCC_TRUE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libscicore_la_CFLAGS) $(CFLAGS) -MT libscicore_la-intmacr2tree.lo -MD -MP -MF $(DEPDIR)/libscicore_la-intmacr2tree.Tpo -c -o libscicore_la-intmacr2tree.lo `test -f 'src/c/intmacr2tree.c' || echo '$(srcdir)/'`src/c/intmacr2tree.c
@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/libscicore_la-intmacr2tree.Tpo $(DEPDIR)/libscicore_la-intmacr2tree.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/c/intmacr2tree.c' object='libscicore_la-intmacr2tree.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) $(AM_CPPFLAGS) $(CPPFLAGS) $(libscicore_la_CFLAGS) $(CFLAGS) -c -o libscicore_la-intmacr2tree.lo `test -f 'src/c/intmacr2tree.c' || echo '$(srcdir)/'`src/c/intmacr2tree.c
libscicore_la-run.lo: src/c/run.c
@am__fastdepCC_TRUE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libscicore_la_CFLAGS) $(CFLAGS) -MT libscicore_la-run.lo -MD -MP -MF $(DEPDIR)/libscicore_la-run.Tpo -c -o libscicore_la-run.lo `test -f 'src/c/run.c' || echo '$(srcdir)/'`src/c/run.c
@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/libscicore_la-run.Tpo $(DEPDIR)/libscicore_la-run.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/c/run.c' object='libscicore_la-run.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) $(AM_CPPFLAGS) $(CPPFLAGS) $(libscicore_la_CFLAGS) $(CFLAGS) -c -o libscicore_la-run.lo `test -f 'src/c/run.c' || echo '$(srcdir)/'`src/c/run.c
libscicore_la-InitScilab.lo: src/c/InitScilab.c
@am__fastdepCC_TRUE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libscicore_la_CFLAGS) $(CFLAGS) -MT libscicore_la-InitScilab.lo -MD -MP -MF $(DEPDIR)/libscicore_la-InitScilab.Tpo -c -o libscicore_la-InitScilab.lo `test -f 'src/c/InitScilab.c' || echo '$(srcdir)/'`src/c/InitScilab.c
@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/libscicore_la-InitScilab.Tpo $(DEPDIR)/libscicore_la-InitScilab.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/c/InitScilab.c' object='libscicore_la-InitScilab.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) $(AM_CPPFLAGS) $(CPPFLAGS) $(libscicore_la_CFLAGS) $(CFLAGS) -c -o libscicore_la-InitScilab.lo `test -f 'src/c/InitScilab.c' || echo '$(srcdir)/'`src/c/InitScilab.c
libscicore_la-getval.lo: src/c/getval.c
@am__fastdepCC_TRUE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libscicore_la_CFLAGS) $(CFLAGS) -MT libscicore_la-getval.lo -MD -MP -MF $(DEPDIR)/libscicore_la-getval.Tpo -c -o libscicore_la-getval.lo `test -f 'src/c/getval.c' || echo '$(srcdir)/'`src/c/getval.c
@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/libscicore_la-getval.Tpo $(DEPDIR)/libscicore_la-getval.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/c/getval.c' object='libscicore_la-getval.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) $(AM_CPPFLAGS) $(CPPFLAGS) $(libscicore_la_CFLAGS) $(CFLAGS) -c -o libscicore_la-getval.lo `test -f 'src/c/getval.c' || echo '$(srcdir)/'`src/c/getval.c
libscicore_la-md5.lo: src/c/md5.c
@am__fastdepCC_TRUE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libscicore_la_CFLAGS) $(CFLAGS) -MT libscicore_la-md5.lo -MD -MP -MF $(DEPDIR)/libscicore_la-md5.Tpo -c -o libscicore_la-md5.lo `test -f 'src/c/md5.c' || echo '$(srcdir)/'`src/c/md5.c
@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/libscicore_la-md5.Tpo $(DEPDIR)/libscicore_la-md5.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/c/md5.c' object='libscicore_la-md5.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) $(AM_CPPFLAGS) $(CPPFLAGS) $(libscicore_la_CFLAGS) $(CFLAGS) -c -o libscicore_la-md5.lo `test -f 'src/c/md5.c' || echo '$(srcdir)/'`src/c/md5.c
libscicore_la-inisci-c.lo: src/c/inisci-c.c
@am__fastdepCC_TRUE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libscicore_la_CFLAGS) $(CFLAGS) -MT libscicore_la-inisci-c.lo -MD -MP -MF $(DEPDIR)/libscicore_la-inisci-c.Tpo -c -o libscicore_la-inisci-c.lo `test -f 'src/c/inisci-c.c' || echo '$(srcdir)/'`src/c/inisci-c.c
@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/libscicore_la-inisci-c.Tpo $(DEPDIR)/libscicore_la-inisci-c.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/c/inisci-c.c' object='libscicore_la-inisci-c.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) $(AM_CPPFLAGS) $(CPPFLAGS) $(libscicore_la_CFLAGS) $(CFLAGS) -c -o libscicore_la-inisci-c.lo `test -f 'src/c/inisci-c.c' || echo '$(srcdir)/'`src/c/inisci-c.c
libscicore_la-IsAScalar.lo: src/c/IsAScalar.c
@am__fastdepCC_TRUE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libscicore_la_CFLAGS) $(CFLAGS) -MT libscicore_la-IsAScalar.lo -MD -MP -MF $(DEPDIR)/libscicore_la-IsAScalar.Tpo -c -o libscicore_la-IsAScalar.lo `test -f 'src/c/IsAScalar.c' || echo '$(srcdir)/'`src/c/IsAScalar.c
@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/libscicore_la-IsAScalar.Tpo $(DEPDIR)/libscicore_la-IsAScalar.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/c/IsAScalar.c' object='libscicore_la-IsAScalar.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) $(AM_CPPFLAGS) $(CPPFLAGS) $(libscicore_la_CFLAGS) $(CFLAGS) -c -o libscicore_la-IsAScalar.lo `test -f 'src/c/IsAScalar.c' || echo '$(srcdir)/'`src/c/IsAScalar.c
libscicore_la-texmacs.lo: src/c/texmacs.c
@am__fastdepCC_TRUE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libscicore_la_CFLAGS) $(CFLAGS) -MT libscicore_la-texmacs.lo -MD -MP -MF $(DEPDIR)/libscicore_la-texmacs.Tpo -c -o libscicore_la-texmacs.lo `test -f 'src/c/texmacs.c' || echo '$(srcdir)/'`src/c/texmacs.c
@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/libscicore_la-texmacs.Tpo $(DEPDIR)/libscicore_la-texmacs.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/c/texmacs.c' object='libscicore_la-texmacs.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) $(AM_CPPFLAGS) $(CPPFLAGS) $(libscicore_la_CFLAGS) $(CFLAGS) -c -o libscicore_la-texmacs.lo `test -f 'src/c/texmacs.c' || echo '$(srcdir)/'`src/c/texmacs.c
libscicore_la-sciquit.lo: src/c/sciquit.c
@am__fastdepCC_TRUE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libscicore_la_CFLAGS) $(CFLAGS) -MT libscicore_la-sciquit.lo -MD -MP -MF $(DEPDIR)/libscicore_la-sciquit.Tpo -c -o libscicore_la-sciquit.lo `test -f 'src/c/sciquit.c' || echo '$(srcdir)/'`src/c/sciquit.c
@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/libscicore_la-sciquit.Tpo $(DEPDIR)/libscicore_la-sciquit.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/c/sciquit.c' object='libscicore_la-sciquit.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) $(AM_CPPFLAGS) $(CPPFLAGS) $(libscicore_la_CFLAGS) $(CFLAGS) -c -o libscicore_la-sciquit.lo `test -f 'src/c/sciquit.c' || echo '$(srcdir)/'`src/c/sciquit.c
libscicore_la-stack1.lo: src/c/stack1.c
@am__fastdepCC_TRUE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libscicore_la_CFLAGS) $(CFLAGS) -MT libscicore_la-stack1.lo -MD -MP -MF $(DEPDIR)/libscicore_la-stack1.Tpo -c -o libscicore_la-stack1.lo `test -f 'src/c/stack1.c' || echo '$(srcdir)/'`src/c/stack1.c
@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/libscicore_la-stack1.Tpo $(DEPDIR)/libscicore_la-stack1.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/c/stack1.c' object='libscicore_la-stack1.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) $(AM_CPPFLAGS) $(CPPFLAGS) $(libscicore_la_CFLAGS) $(CFLAGS) -c -o libscicore_la-stack1.lo `test -f 'src/c/stack1.c' || echo '$(srcdir)/'`src/c/stack1.c
libscicore_la-realmain.lo: src/c/realmain.c
@am__fastdepCC_TRUE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libscicore_la_CFLAGS) $(CFLAGS) -MT libscicore_la-realmain.lo -MD -MP -MF $(DEPDIR)/libscicore_la-realmain.Tpo -c -o libscicore_la-realmain.lo `test -f 'src/c/realmain.c' || echo '$(srcdir)/'`src/c/realmain.c
@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/libscicore_la-realmain.Tpo $(DEPDIR)/libscicore_la-realmain.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/c/realmain.c' object='libscicore_la-realmain.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) $(AM_CPPFLAGS) $(CPPFLAGS) $(libscicore_la_CFLAGS) $(CFLAGS) -c -o libscicore_la-realmain.lo `test -f 'src/c/realmain.c' || echo '$(srcdir)/'`src/c/realmain.c
libscicore_la-stack3.lo: src/c/stack3.c
@am__fastdepCC_TRUE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libscicore_la_CFLAGS) $(CFLAGS) -MT libscicore_la-stack3.lo -MD -MP -MF $(DEPDIR)/libscicore_la-stack3.Tpo -c -o libscicore_la-stack3.lo `test -f 'src/c/stack3.c' || echo '$(srcdir)/'`src/c/stack3.c
@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/libscicore_la-stack3.Tpo $(DEPDIR)/libscicore_la-stack3.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/c/stack3.c' object='libscicore_la-stack3.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) $(AM_CPPFLAGS) $(CPPFLAGS) $(libscicore_la_CFLAGS) $(CFLAGS) -c -o libscicore_la-stack3.lo `test -f 'src/c/stack3.c' || echo '$(srcdir)/'`src/c/stack3.c
libscicore_la-str2sci.lo: src/c/str2sci.c
@am__fastdepCC_TRUE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libscicore_la_CFLAGS) $(CFLAGS) -MT libscicore_la-str2sci.lo -MD -MP -MF $(DEPDIR)/libscicore_la-str2sci.Tpo -c -o libscicore_la-str2sci.lo `test -f 'src/c/str2sci.c' || echo '$(srcdir)/'`src/c/str2sci.c
@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/libscicore_la-str2sci.Tpo $(DEPDIR)/libscicore_la-str2sci.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/c/str2sci.c' object='libscicore_la-str2sci.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) $(AM_CPPFLAGS) $(CPPFLAGS) $(libscicore_la_CFLAGS) $(CFLAGS) -c -o libscicore_la-str2sci.lo `test -f 'src/c/str2sci.c' || echo '$(srcdir)/'`src/c/str2sci.c
libscicore_la-getmodules.lo: src/c/getmodules.c
@am__fastdepCC_TRUE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libscicore_la_CFLAGS) $(CFLAGS) -MT libscicore_la-getmodules.lo -MD -MP -MF $(DEPDIR)/libscicore_la-getmodules.Tpo -c -o libscicore_la-getmodules.lo `test -f 'src/c/getmodules.c' || echo '$(srcdir)/'`src/c/getmodules.c
@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/libscicore_la-getmodules.Tpo $(DEPDIR)/libscicore_la-getmodules.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/c/getmodules.c' object='libscicore_la-getmodules.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) $(AM_CPPFLAGS) $(CPPFLAGS) $(libscicore_la_CFLAGS) $(CFLAGS) -c -o libscicore_la-getmodules.lo `test -f 'src/c/getmodules.c' || echo '$(srcdir)/'`src/c/getmodules.c
libscicore_la-setgetSCIpath.lo: src/c/setgetSCIpath.c
@am__fastdepCC_TRUE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libscicore_la_CFLAGS) $(CFLAGS) -MT libscicore_la-setgetSCIpath.lo -MD -MP -MF $(DEPDIR)/libscicore_la-setgetSCIpath.Tpo -c -o libscicore_la-setgetSCIpath.lo `test -f 'src/c/setgetSCIpath.c' || echo '$(srcdir)/'`src/c/setgetSCIpath.c
@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/libscicore_la-setgetSCIpath.Tpo $(DEPDIR)/libscicore_la-setgetSCIpath.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/c/setgetSCIpath.c' object='libscicore_la-setgetSCIpath.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) $(AM_CPPFLAGS) $(CPPFLAGS) $(libscicore_la_CFLAGS) $(CFLAGS) -c -o libscicore_la-setgetSCIpath.lo `test -f 'src/c/setgetSCIpath.c' || echo '$(srcdir)/'`src/c/setgetSCIpath.c
libscicore_la-getmemory.lo: src/c/getmemory.c
@am__fastdepCC_TRUE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libscicore_la_CFLAGS) $(CFLAGS) -MT libscicore_la-getmemory.lo -MD -MP -MF $(DEPDIR)/libscicore_la-getmemory.Tpo -c -o libscicore_la-getmemory.lo `test -f 'src/c/getmemory.c' || echo '$(srcdir)/'`src/c/getmemory.c
@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/libscicore_la-getmemory.Tpo $(DEPDIR)/libscicore_la-getmemory.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/c/getmemory.c' object='libscicore_la-getmemory.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) $(AM_CPPFLAGS) $(CPPFLAGS) $(libscicore_la_CFLAGS) $(CFLAGS) -c -o libscicore_la-getmemory.lo `test -f 'src/c/getmemory.c' || echo '$(srcdir)/'`src/c/getmemory.c
libscicore_la-Funtab.lo: src/c/Funtab.c
@am__fastdepCC_TRUE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libscicore_la_CFLAGS) $(CFLAGS) -MT libscicore_la-Funtab.lo -MD -MP -MF $(DEPDIR)/libscicore_la-Funtab.Tpo -c -o libscicore_la-Funtab.lo `test -f 'src/c/Funtab.c' || echo '$(srcdir)/'`src/c/Funtab.c
@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/libscicore_la-Funtab.Tpo $(DEPDIR)/libscicore_la-Funtab.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/c/Funtab.c' object='libscicore_la-Funtab.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) $(AM_CPPFLAGS) $(CPPFLAGS) $(libscicore_la_CFLAGS) $(CFLAGS) -c -o libscicore_la-Funtab.lo `test -f 'src/c/Funtab.c' || echo '$(srcdir)/'`src/c/Funtab.c
libscicore_la-csignal.lo: src/c/csignal.c
@am__fastdepCC_TRUE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libscicore_la_CFLAGS) $(CFLAGS) -MT libscicore_la-csignal.lo -MD -MP -MF $(DEPDIR)/libscicore_la-csignal.Tpo -c -o libscicore_la-csignal.lo `test -f 'src/c/csignal.c' || echo '$(srcdir)/'`src/c/csignal.c
@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/libscicore_la-csignal.Tpo $(DEPDIR)/libscicore_la-csignal.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/c/csignal.c' object='libscicore_la-csignal.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) $(AM_CPPFLAGS) $(CPPFLAGS) $(libscicore_la_CFLAGS) $(CFLAGS) -c -o libscicore_la-csignal.lo `test -f 'src/c/csignal.c' || echo '$(srcdir)/'`src/c/csignal.c
libscicore_la-callinterf.lo: src/c/callinterf.c
@am__fastdepCC_TRUE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libscicore_la_CFLAGS) $(CFLAGS) -MT libscicore_la-callinterf.lo -MD -MP -MF $(DEPDIR)/libscicore_la-callinterf.Tpo -c -o libscicore_la-callinterf.lo `test -f 'src/c/callinterf.c' || echo '$(srcdir)/'`src/c/callinterf.c
@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/libscicore_la-callinterf.Tpo $(DEPDIR)/libscicore_la-callinterf.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/c/callinterf.c' object='libscicore_la-callinterf.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) $(AM_CPPFLAGS) $(CPPFLAGS) $(libscicore_la_CFLAGS) $(CFLAGS) -c -o libscicore_la-callinterf.lo `test -f 'src/c/callinterf.c' || echo '$(srcdir)/'`src/c/callinterf.c
libscicore_la-scimem.lo: src/c/scimem.c
@am__fastdepCC_TRUE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libscicore_la_CFLAGS) $(CFLAGS) -MT libscicore_la-scimem.lo -MD -MP -MF $(DEPDIR)/libscicore_la-scimem.Tpo -c -o libscicore_la-scimem.lo `test -f 'src/c/scimem.c' || echo '$(srcdir)/'`src/c/scimem.c
@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/libscicore_la-scimem.Tpo $(DEPDIR)/libscicore_la-scimem.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/c/scimem.c' object='libscicore_la-scimem.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) $(AM_CPPFLAGS) $(CPPFLAGS) $(libscicore_la_CFLAGS) $(CFLAGS) -c -o libscicore_la-scimem.lo `test -f 'src/c/scimem.c' || echo '$(srcdir)/'`src/c/scimem.c
libscicore_la-banier.lo: src/c/banier.c
@am__fastdepCC_TRUE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libscicore_la_CFLAGS) $(CFLAGS) -MT libscicore_la-banier.lo -MD -MP -MF $(DEPDIR)/libscicore_la-banier.Tpo -c -o libscicore_la-banier.lo `test -f 'src/c/banier.c' || echo '$(srcdir)/'`src/c/banier.c
@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/libscicore_la-banier.Tpo $(DEPDIR)/libscicore_la-banier.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/c/banier.c' object='libscicore_la-banier.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) $(AM_CPPFLAGS) $(CPPFLAGS) $(libscicore_la_CFLAGS) $(CFLAGS) -c -o libscicore_la-banier.lo `test -f 'src/c/banier.c' || echo '$(srcdir)/'`src/c/banier.c
libscicore_la-isanan.lo: src/c/isanan.c
@am__fastdepCC_TRUE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libscicore_la_CFLAGS) $(CFLAGS) -MT libscicore_la-isanan.lo -MD -MP -MF $(DEPDIR)/libscicore_la-isanan.Tpo -c -o libscicore_la-isanan.lo `test -f 'src/c/isanan.c' || echo '$(srcdir)/'`src/c/isanan.c
@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/libscicore_la-isanan.Tpo $(DEPDIR)/libscicore_la-isanan.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/c/isanan.c' object='libscicore_la-isanan.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) $(AM_CPPFLAGS) $(CPPFLAGS) $(libscicore_la_CFLAGS) $(CFLAGS) -c -o libscicore_la-isanan.lo `test -f 'src/c/isanan.c' || echo '$(srcdir)/'`src/c/isanan.c
libscicore_la-parse.lo: src/c/parse.c
@am__fastdepCC_TRUE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libscicore_la_CFLAGS) $(CFLAGS) -MT libscicore_la-parse.lo -MD -MP -MF $(DEPDIR)/libscicore_la-parse.Tpo -c -o libscicore_la-parse.lo `test -f 'src/c/parse.c' || echo '$(srcdir)/'`src/c/parse.c
@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/libscicore_la-parse.Tpo $(DEPDIR)/libscicore_la-parse.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/c/parse.c' object='libscicore_la-parse.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) $(AM_CPPFLAGS) $(CPPFLAGS) $(libscicore_la_CFLAGS) $(CFLAGS) -c -o libscicore_la-parse.lo `test -f 'src/c/parse.c' || echo '$(srcdir)/'`src/c/parse.c
libscicore_la-timer.lo: src/c/timer.c
@am__fastdepCC_TRUE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libscicore_la_CFLAGS) $(CFLAGS) -MT libscicore_la-timer.lo -MD -MP -MF $(DEPDIR)/libscicore_la-timer.Tpo -c -o libscicore_la-timer.lo `test -f 'src/c/timer.c' || echo '$(srcdir)/'`src/c/timer.c
@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/libscicore_la-timer.Tpo $(DEPDIR)/libscicore_la-timer.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/c/timer.c' object='libscicore_la-timer.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) $(AM_CPPFLAGS) $(CPPFLAGS) $(libscicore_la_CFLAGS) $(CFLAGS) -c -o libscicore_la-timer.lo `test -f 'src/c/timer.c' || echo '$(srcdir)/'`src/c/timer.c
libscicore_la-stack2.lo: src/c/stack2.c
@am__fastdepCC_TRUE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libscicore_la_CFLAGS) $(CFLAGS) -MT libscicore_la-stack2.lo -MD -MP -MF $(DEPDIR)/libscicore_la-stack2.Tpo -c -o libscicore_la-stack2.lo `test -f 'src/c/stack2.c' || echo '$(srcdir)/'`src/c/stack2.c
@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/libscicore_la-stack2.Tpo $(DEPDIR)/libscicore_la-stack2.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/c/stack2.c' object='libscicore_la-stack2.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) $(AM_CPPFLAGS) $(CPPFLAGS) $(libscicore_la_CFLAGS) $(CFLAGS) -c -o libscicore_la-stack2.lo `test -f 'src/c/stack2.c' || echo '$(srcdir)/'`src/c/stack2.c
libscicore_la-xscion.lo: src/c/xscion.c
@am__fastdepCC_TRUE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libscicore_la_CFLAGS) $(CFLAGS) -MT libscicore_la-xscion.lo -MD -MP -MF $(DEPDIR)/libscicore_la-xscion.Tpo -c -o libscicore_la-xscion.lo `test -f 'src/c/xscion.c' || echo '$(srcdir)/'`src/c/xscion.c
@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/libscicore_la-xscion.Tpo $(DEPDIR)/libscicore_la-xscion.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/c/xscion.c' object='libscicore_la-xscion.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) $(AM_CPPFLAGS) $(CPPFLAGS) $(libscicore_la_CFLAGS) $(CFLAGS) -c -o libscicore_la-xscion.lo `test -f 'src/c/xscion.c' || echo '$(srcdir)/'`src/c/xscion.c
libscicore_la-SetScilabEnvironment.lo: src/c/SetScilabEnvironment.c
@am__fastdepCC_TRUE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libscicore_la_CFLAGS) $(CFLAGS) -MT libscicore_la-SetScilabEnvironment.lo -MD -MP -MF $(DEPDIR)/libscicore_la-SetScilabEnvironment.Tpo -c -o libscicore_la-SetScilabEnvironment.lo `test -f 'src/c/SetScilabEnvironment.c' || echo '$(srcdir)/'`src/c/SetScilabEnvironment.c
@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/libscicore_la-SetScilabEnvironment.Tpo $(DEPDIR)/libscicore_la-SetScilabEnvironment.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/c/SetScilabEnvironment.c' object='libscicore_la-SetScilabEnvironment.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) $(AM_CPPFLAGS) $(CPPFLAGS) $(libscicore_la_CFLAGS) $(CFLAGS) -c -o libscicore_la-SetScilabEnvironment.lo `test -f 'src/c/SetScilabEnvironment.c' || echo '$(srcdir)/'`src/c/SetScilabEnvironment.c
libscicore_la-hashtable_core.lo: src/c/hashtable_core.c
@am__fastdepCC_TRUE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libscicore_la_CFLAGS) $(CFLAGS) -MT libscicore_la-hashtable_core.lo -MD -MP -MF $(DEPDIR)/libscicore_la-hashtable_core.Tpo -c -o libscicore_la-hashtable_core.lo `test -f 'src/c/hashtable_core.c' || echo '$(srcdir)/'`src/c/hashtable_core.c
@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/libscicore_la-hashtable_core.Tpo $(DEPDIR)/libscicore_la-hashtable_core.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/c/hashtable_core.c' object='libscicore_la-hashtable_core.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) $(AM_CPPFLAGS) $(CPPFLAGS) $(libscicore_la_CFLAGS) $(CFLAGS) -c -o libscicore_la-hashtable_core.lo `test -f 'src/c/hashtable_core.c' || echo '$(srcdir)/'`src/c/hashtable_core.c
libscicore_la-returnanan.lo: src/c/returnanan.c
@am__fastdepCC_TRUE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libscicore_la_CFLAGS) $(CFLAGS) -MT libscicore_la-returnanan.lo -MD -MP -MF $(DEPDIR)/libscicore_la-returnanan.Tpo -c -o libscicore_la-returnanan.lo `test -f 'src/c/returnanan.c' || echo '$(srcdir)/'`src/c/returnanan.c
@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/libscicore_la-returnanan.Tpo $(DEPDIR)/libscicore_la-returnanan.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/c/returnanan.c' object='libscicore_la-returnanan.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) $(AM_CPPFLAGS) $(CPPFLAGS) $(libscicore_la_CFLAGS) $(CFLAGS) -c -o libscicore_la-returnanan.lo `test -f 'src/c/returnanan.c' || echo '$(srcdir)/'`src/c/returnanan.c
libscicore_la-LoadFunctionsTab.lo: src/c/LoadFunctionsTab.c
@am__fastdepCC_TRUE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libscicore_la_CFLAGS) $(CFLAGS) -MT libscicore_la-LoadFunctionsTab.lo -MD -MP -MF $(DEPDIR)/libscicore_la-LoadFunctionsTab.Tpo -c -o libscicore_la-LoadFunctionsTab.lo `test -f 'src/c/LoadFunctionsTab.c' || echo '$(srcdir)/'`src/c/LoadFunctionsTab.c
@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/libscicore_la-LoadFunctionsTab.Tpo $(DEPDIR)/libscicore_la-LoadFunctionsTab.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/c/LoadFunctionsTab.c' object='libscicore_la-LoadFunctionsTab.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) $(AM_CPPFLAGS) $(CPPFLAGS) $(libscicore_la_CFLAGS) $(CFLAGS) -c -o libscicore_la-LoadFunctionsTab.lo `test -f 'src/c/LoadFunctionsTab.c' || echo '$(srcdir)/'`src/c/LoadFunctionsTab.c
libscicore_la-with_module.lo: src/c/with_module.c
@am__fastdepCC_TRUE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libscicore_la_CFLAGS) $(CFLAGS) -MT libscicore_la-with_module.lo -MD -MP -MF $(DEPDIR)/libscicore_la-with_module.Tpo -c -o libscicore_la-with_module.lo `test -f 'src/c/with_module.c' || echo '$(srcdir)/'`src/c/with_module.c
@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/libscicore_la-with_module.Tpo $(DEPDIR)/libscicore_la-with_module.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/c/with_module.c' object='libscicore_la-with_module.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) $(AM_CPPFLAGS) $(CPPFLAGS) $(libscicore_la_CFLAGS) $(CFLAGS) -c -o libscicore_la-with_module.lo `test -f 'src/c/with_module.c' || echo '$(srcdir)/'`src/c/with_module.c
libscicore_la-loadversion.lo: src/c/loadversion.c
@am__fastdepCC_TRUE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libscicore_la_CFLAGS) $(CFLAGS) -MT libscicore_la-loadversion.lo -MD -MP -MF $(DEPDIR)/libscicore_la-loadversion.Tpo -c -o libscicore_la-loadversion.lo `test -f 'src/c/loadversion.c' || echo '$(srcdir)/'`src/c/loadversion.c
@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/libscicore_la-loadversion.Tpo $(DEPDIR)/libscicore_la-loadversion.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/c/loadversion.c' object='libscicore_la-loadversion.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) $(AM_CPPFLAGS) $(CPPFLAGS) $(libscicore_la_CFLAGS) $(CFLAGS) -c -o libscicore_la-loadversion.lo `test -f 'src/c/loadversion.c' || echo '$(srcdir)/'`src/c/loadversion.c
libscicore_la-version.lo: src/c/version.c
@am__fastdepCC_TRUE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libscicore_la_CFLAGS) $(CFLAGS) -MT libscicore_la-version.lo -MD -MP -MF $(DEPDIR)/libscicore_la-version.Tpo -c -o libscicore_la-version.lo `test -f 'src/c/version.c' || echo '$(srcdir)/'`src/c/version.c
@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/libscicore_la-version.Tpo $(DEPDIR)/libscicore_la-version.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/c/version.c' object='libscicore_la-version.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) $(AM_CPPFLAGS) $(CPPFLAGS) $(libscicore_la_CFLAGS) $(CFLAGS) -c -o libscicore_la-version.lo `test -f 'src/c/version.c' || echo '$(srcdir)/'`src/c/version.c
libscicore_la-stackinfo.lo: src/c/stackinfo.c
@am__fastdepCC_TRUE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libscicore_la_CFLAGS) $(CFLAGS) -MT libscicore_la-stackinfo.lo -MD -MP -MF $(DEPDIR)/libscicore_la-stackinfo.Tpo -c -o libscicore_la-stackinfo.lo `test -f 'src/c/stackinfo.c' || echo '$(srcdir)/'`src/c/stackinfo.c
@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/libscicore_la-stackinfo.Tpo $(DEPDIR)/libscicore_la-stackinfo.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/c/stackinfo.c' object='libscicore_la-stackinfo.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) $(AM_CPPFLAGS) $(CPPFLAGS) $(libscicore_la_CFLAGS) $(CFLAGS) -c -o libscicore_la-stackinfo.lo `test -f 'src/c/stackinfo.c' || echo '$(srcdir)/'`src/c/stackinfo.c
libscicore_la-scirun.lo: src/c/scirun.c
@am__fastdepCC_TRUE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libscicore_la_CFLAGS) $(CFLAGS) -MT libscicore_la-scirun.lo -MD -MP -MF $(DEPDIR)/libscicore_la-scirun.Tpo -c -o libscicore_la-scirun.lo `test -f 'src/c/scirun.c' || echo '$(srcdir)/'`src/c/scirun.c
@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/libscicore_la-scirun.Tpo $(DEPDIR)/libscicore_la-scirun.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/c/scirun.c' object='libscicore_la-scirun.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) $(AM_CPPFLAGS) $(CPPFLAGS) $(libscicore_la_CFLAGS) $(CFLAGS) -c -o libscicore_la-scirun.lo `test -f 'src/c/scirun.c' || echo '$(srcdir)/'`src/c/scirun.c
libscicore_la-SCIHOME.lo: src/c/SCIHOME.c
@am__fastdepCC_TRUE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libscicore_la_CFLAGS) $(CFLAGS) -MT libscicore_la-SCIHOME.lo -MD -MP -MF $(DEPDIR)/libscicore_la-SCIHOME.Tpo -c -o libscicore_la-SCIHOME.lo `test -f 'src/c/SCIHOME.c' || echo '$(srcdir)/'`src/c/SCIHOME.c
@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/libscicore_la-SCIHOME.Tpo $(DEPDIR)/libscicore_la-SCIHOME.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/c/SCIHOME.c' object='libscicore_la-SCIHOME.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) $(AM_CPPFLAGS) $(CPPFLAGS) $(libscicore_la_CFLAGS) $(CFLAGS) -c -o libscicore_la-SCIHOME.lo `test -f 'src/c/SCIHOME.c' || echo '$(srcdir)/'`src/c/SCIHOME.c
libscicore_la-warningmode.lo: src/c/warningmode.c
@am__fastdepCC_TRUE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libscicore_la_CFLAGS) $(CFLAGS) -MT libscicore_la-warningmode.lo -MD -MP -MF $(DEPDIR)/libscicore_la-warningmode.Tpo -c -o libscicore_la-warningmode.lo `test -f 'src/c/warningmode.c' || echo '$(srcdir)/'`src/c/warningmode.c
@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/libscicore_la-warningmode.Tpo $(DEPDIR)/libscicore_la-warningmode.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/c/warningmode.c' object='libscicore_la-warningmode.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) $(AM_CPPFLAGS) $(CPPFLAGS) $(libscicore_la_CFLAGS) $(CFLAGS) -c -o libscicore_la-warningmode.lo `test -f 'src/c/warningmode.c' || echo '$(srcdir)/'`src/c/warningmode.c
libscicore_la-InitializeCore.lo: src/c/InitializeCore.c
@am__fastdepCC_TRUE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libscicore_la_CFLAGS) $(CFLAGS) -MT libscicore_la-InitializeCore.lo -MD -MP -MF $(DEPDIR)/libscicore_la-InitializeCore.Tpo -c -o libscicore_la-InitializeCore.lo `test -f 'src/c/InitializeCore.c' || echo '$(srcdir)/'`src/c/InitializeCore.c
@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/libscicore_la-InitializeCore.Tpo $(DEPDIR)/libscicore_la-InitializeCore.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/c/InitializeCore.c' object='libscicore_la-InitializeCore.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) $(AM_CPPFLAGS) $(CPPFLAGS) $(libscicore_la_CFLAGS) $(CFLAGS) -c -o libscicore_la-InitializeCore.lo `test -f 'src/c/InitializeCore.c' || echo '$(srcdir)/'`src/c/InitializeCore.c
libscicore_la-TerminateCore.lo: src/c/TerminateCore.c
@am__fastdepCC_TRUE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libscicore_la_CFLAGS) $(CFLAGS) -MT libscicore_la-TerminateCore.lo -MD -MP -MF $(DEPDIR)/libscicore_la-TerminateCore.Tpo -c -o libscicore_la-TerminateCore.lo `test -f 'src/c/TerminateCore.c' || echo '$(srcdir)/'`src/c/TerminateCore.c
@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/libscicore_la-TerminateCore.Tpo $(DEPDIR)/libscicore_la-TerminateCore.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/c/TerminateCore.c' object='libscicore_la-TerminateCore.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) $(AM_CPPFLAGS) $(CPPFLAGS) $(libscicore_la_CFLAGS) $(CFLAGS) -c -o libscicore_la-TerminateCore.lo `test -f 'src/c/TerminateCore.c' || echo '$(srcdir)/'`src/c/TerminateCore.c
libscicore_la-coretable.lo: src/c/coretable.c
@am__fastdepCC_TRUE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libscicore_la_CFLAGS) $(CFLAGS) -MT libscicore_la-coretable.lo -MD -MP -MF $(DEPDIR)/libscicore_la-coretable.Tpo -c -o libscicore_la-coretable.lo `test -f 'src/c/coretable.c' || echo '$(srcdir)/'`src/c/coretable.c
@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/libscicore_la-coretable.Tpo $(DEPDIR)/libscicore_la-coretable.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/c/coretable.c' object='libscicore_la-coretable.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) $(AM_CPPFLAGS) $(CPPFLAGS) $(libscicore_la_CFLAGS) $(CFLAGS) -c -o libscicore_la-coretable.lo `test -f 'src/c/coretable.c' || echo '$(srcdir)/'`src/c/coretable.c
libscicore_la-returnProperty.lo: src/c/returnProperty.c
@am__fastdepCC_TRUE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libscicore_la_CFLAGS) $(CFLAGS) -MT libscicore_la-returnProperty.lo -MD -MP -MF $(DEPDIR)/libscicore_la-returnProperty.Tpo -c -o libscicore_la-returnProperty.lo `test -f 'src/c/returnProperty.c' || echo '$(srcdir)/'`src/c/returnProperty.c
@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/libscicore_la-returnProperty.Tpo $(DEPDIR)/libscicore_la-returnProperty.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/c/returnProperty.c' object='libscicore_la-returnProperty.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) $(AM_CPPFLAGS) $(CPPFLAGS) $(libscicore_la_CFLAGS) $(CFLAGS) -c -o libscicore_la-returnProperty.lo `test -f 'src/c/returnProperty.c' || echo '$(srcdir)/'`src/c/returnProperty.c
libscicore_la-returnPropertyList.lo: src/c/returnPropertyList.c
@am__fastdepCC_TRUE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libscicore_la_CFLAGS) $(CFLAGS) -MT libscicore_la-returnPropertyList.lo -MD -MP -MF $(DEPDIR)/libscicore_la-returnPropertyList.Tpo -c -o libscicore_la-returnPropertyList.lo `test -f 'src/c/returnPropertyList.c' || echo '$(srcdir)/'`src/c/returnPropertyList.c
@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/libscicore_la-returnPropertyList.Tpo $(DEPDIR)/libscicore_la-returnPropertyList.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/c/returnPropertyList.c' object='libscicore_la-returnPropertyList.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) $(AM_CPPFLAGS) $(CPPFLAGS) $(libscicore_la_CFLAGS) $(CFLAGS) -c -o libscicore_la-returnPropertyList.lo `test -f 'src/c/returnPropertyList.c' || echo '$(srcdir)/'`src/c/returnPropertyList.c
libscicore_la-scilabmode.lo: src/c/scilabmode.c
@am__fastdepCC_TRUE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libscicore_la_CFLAGS) $(CFLAGS) -MT libscicore_la-scilabmode.lo -MD -MP -MF $(DEPDIR)/libscicore_la-scilabmode.Tpo -c -o libscicore_la-scilabmode.lo `test -f 'src/c/scilabmode.c' || echo '$(srcdir)/'`src/c/scilabmode.c
@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/libscicore_la-scilabmode.Tpo $(DEPDIR)/libscicore_la-scilabmode.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/c/scilabmode.c' object='libscicore_la-scilabmode.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) $(AM_CPPFLAGS) $(CPPFLAGS) $(libscicore_la_CFLAGS) $(CFLAGS) -c -o libscicore_la-scilabmode.lo `test -f 'src/c/scilabmode.c' || echo '$(srcdir)/'`src/c/scilabmode.c
libscicore_la-GetXmlFileEncoding.lo: src/c/GetXmlFileEncoding.c
@am__fastdepCC_TRUE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libscicore_la_CFLAGS) $(CFLAGS) -MT libscicore_la-GetXmlFileEncoding.lo -MD -MP -MF $(DEPDIR)/libscicore_la-GetXmlFileEncoding.Tpo -c -o libscicore_la-GetXmlFileEncoding.lo `test -f 'src/c/GetXmlFileEncoding.c' || echo '$(srcdir)/'`src/c/GetXmlFileEncoding.c
@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/libscicore_la-GetXmlFileEncoding.Tpo $(DEPDIR)/libscicore_la-GetXmlFileEncoding.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/c/GetXmlFileEncoding.c' object='libscicore_la-GetXmlFileEncoding.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) $(AM_CPPFLAGS) $(CPPFLAGS) $(libscicore_la_CFLAGS) $(CFLAGS) -c -o libscicore_la-GetXmlFileEncoding.lo `test -f 'src/c/GetXmlFileEncoding.c' || echo '$(srcdir)/'`src/c/GetXmlFileEncoding.c
libscicore_la-islittleendian.lo: src/c/islittleendian.c
@am__fastdepCC_TRUE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libscicore_la_CFLAGS) $(CFLAGS) -MT libscicore_la-islittleendian.lo -MD -MP -MF $(DEPDIR)/libscicore_la-islittleendian.Tpo -c -o libscicore_la-islittleendian.lo `test -f 'src/c/islittleendian.c' || echo '$(srcdir)/'`src/c/islittleendian.c
@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/libscicore_la-islittleendian.Tpo $(DEPDIR)/libscicore_la-islittleendian.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/c/islittleendian.c' object='libscicore_la-islittleendian.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) $(AM_CPPFLAGS) $(CPPFLAGS) $(libscicore_la_CFLAGS) $(CFLAGS) -c -o libscicore_la-islittleendian.lo `test -f 'src/c/islittleendian.c' || echo '$(srcdir)/'`src/c/islittleendian.c
libscicore_la-terme.lo: src/c/terme.c
@am__fastdepCC_TRUE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libscicore_la_CFLAGS) $(CFLAGS) -MT libscicore_la-terme.lo -MD -MP -MF $(DEPDIR)/libscicore_la-terme.Tpo -c -o libscicore_la-terme.lo `test -f 'src/c/terme.c' || echo '$(srcdir)/'`src/c/terme.c
@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/libscicore_la-terme.Tpo $(DEPDIR)/libscicore_la-terme.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/c/terme.c' object='libscicore_la-terme.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) $(AM_CPPFLAGS) $(CPPFLAGS) $(libscicore_la_CFLAGS) $(CFLAGS) -c -o libscicore_la-terme.lo `test -f 'src/c/terme.c' || echo '$(srcdir)/'`src/c/terme.c
libscicore_la-ifexpr.lo: src/c/ifexpr.c
@am__fastdepCC_TRUE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libscicore_la_CFLAGS) $(CFLAGS) -MT libscicore_la-ifexpr.lo -MD -MP -MF $(DEPDIR)/libscicore_la-ifexpr.Tpo -c -o libscicore_la-ifexpr.lo `test -f 'src/c/ifexpr.c' || echo '$(srcdir)/'`src/c/ifexpr.c
@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/libscicore_la-ifexpr.Tpo $(DEPDIR)/libscicore_la-ifexpr.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/c/ifexpr.c' object='libscicore_la-ifexpr.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) $(AM_CPPFLAGS) $(CPPFLAGS) $(libscicore_la_CFLAGS) $(CFLAGS) -c -o libscicore_la-ifexpr.lo `test -f 'src/c/ifexpr.c' || echo '$(srcdir)/'`src/c/ifexpr.c
libscicore_la-expr.lo: src/c/expr.c
@am__fastdepCC_TRUE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libscicore_la_CFLAGS) $(CFLAGS) -MT libscicore_la-expr.lo -MD -MP -MF $(DEPDIR)/libscicore_la-expr.Tpo -c -o libscicore_la-expr.lo `test -f 'src/c/expr.c' || echo '$(srcdir)/'`src/c/expr.c
@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/libscicore_la-expr.Tpo $(DEPDIR)/libscicore_la-expr.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/c/expr.c' object='libscicore_la-expr.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) $(AM_CPPFLAGS) $(CPPFLAGS) $(libscicore_la_CFLAGS) $(CFLAGS) -c -o libscicore_la-expr.lo `test -f 'src/c/expr.c' || echo '$(srcdir)/'`src/c/expr.c
libscicore_la-getcommandlineargs.lo: src/c/getcommandlineargs.c
@am__fastdepCC_TRUE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libscicore_la_CFLAGS) $(CFLAGS) -MT libscicore_la-getcommandlineargs.lo -MD -MP -MF $(DEPDIR)/libscicore_la-getcommandlineargs.Tpo -c -o libscicore_la-getcommandlineargs.lo `test -f 'src/c/getcommandlineargs.c' || echo '$(srcdir)/'`src/c/getcommandlineargs.c
@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/libscicore_la-getcommandlineargs.Tpo $(DEPDIR)/libscicore_la-getcommandlineargs.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/c/getcommandlineargs.c' object='libscicore_la-getcommandlineargs.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) $(AM_CPPFLAGS) $(CPPFLAGS) $(libscicore_la_CFLAGS) $(CFLAGS) -c -o libscicore_la-getcommandlineargs.lo `test -f 'src/c/getcommandlineargs.c' || echo '$(srcdir)/'`src/c/getcommandlineargs.c
libscicore_la-syncexec.lo: src/c/syncexec.c
@am__fastdepCC_TRUE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libscicore_la_CFLAGS) $(CFLAGS) -MT libscicore_la-syncexec.lo -MD -MP -MF $(DEPDIR)/libscicore_la-syncexec.Tpo -c -o libscicore_la-syncexec.lo `test -f 'src/c/syncexec.c' || echo '$(srcdir)/'`src/c/syncexec.c
@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/libscicore_la-syncexec.Tpo $(DEPDIR)/libscicore_la-syncexec.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/c/syncexec.c' object='libscicore_la-syncexec.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) $(AM_CPPFLAGS) $(CPPFLAGS) $(libscicore_la_CFLAGS) $(CFLAGS) -c -o libscicore_la-syncexec.lo `test -f 'src/c/syncexec.c' || echo '$(srcdir)/'`src/c/syncexec.c
libscicore_la-callFunctionFromGateway.lo: src/c/callFunctionFromGateway.c
@am__fastdepCC_TRUE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libscicore_la_CFLAGS) $(CFLAGS) -MT libscicore_la-callFunctionFromGateway.lo -MD -MP -MF $(DEPDIR)/libscicore_la-callFunctionFromGateway.Tpo -c -o libscicore_la-callFunctionFromGateway.lo `test -f 'src/c/callFunctionFromGateway.c' || echo '$(srcdir)/'`src/c/callFunctionFromGateway.c
@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/libscicore_la-callFunctionFromGateway.Tpo $(DEPDIR)/libscicore_la-callFunctionFromGateway.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/c/callFunctionFromGateway.c' object='libscicore_la-callFunctionFromGateway.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) $(AM_CPPFLAGS) $(CPPFLAGS) $(libscicore_la_CFLAGS) $(CFLAGS) -c -o libscicore_la-callFunctionFromGateway.lo `test -f 'src/c/callFunctionFromGateway.c' || echo '$(srcdir)/'`src/c/callFunctionFromGateway.c
libscicore_la-getvariablesname.lo: src/c/getvariablesname.c
@am__fastdepCC_TRUE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libscicore_la_CFLAGS) $(CFLAGS) -MT libscicore_la-getvariablesname.lo -MD -MP -MF $(DEPDIR)/libscicore_la-getvariablesname.Tpo -c -o libscicore_la-getvariablesname.lo `test -f 'src/c/getvariablesname.c' || echo '$(srcdir)/'`src/c/getvariablesname.c
@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/libscicore_la-getvariablesname.Tpo $(DEPDIR)/libscicore_la-getvariablesname.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/c/getvariablesname.c' object='libscicore_la-getvariablesname.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) $(AM_CPPFLAGS) $(CPPFLAGS) $(libscicore_la_CFLAGS) $(CFLAGS) -c -o libscicore_la-getvariablesname.lo `test -f 'src/c/getvariablesname.c' || echo '$(srcdir)/'`src/c/getvariablesname.c
libscicore_la-commandwords.lo: src/c/commandwords.c
@am__fastdepCC_TRUE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libscicore_la_CFLAGS) $(CFLAGS) -MT libscicore_la-commandwords.lo -MD -MP -MF $(DEPDIR)/libscicore_la-commandwords.Tpo -c -o libscicore_la-commandwords.lo `test -f 'src/c/commandwords.c' || echo '$(srcdir)/'`src/c/commandwords.c
@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/libscicore_la-commandwords.Tpo $(DEPDIR)/libscicore_la-commandwords.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/c/commandwords.c' object='libscicore_la-commandwords.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) $(AM_CPPFLAGS) $(CPPFLAGS) $(libscicore_la_CFLAGS) $(CFLAGS) -c -o libscicore_la-commandwords.lo `test -f 'src/c/commandwords.c' || echo '$(srcdir)/'`src/c/commandwords.c
libscicore_la-freeArrayOfString.lo: src/c/freeArrayOfString.c
@am__fastdepCC_TRUE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libscicore_la_CFLAGS) $(CFLAGS) -MT libscicore_la-freeArrayOfString.lo -MD -MP -MF $(DEPDIR)/libscicore_la-freeArrayOfString.Tpo -c -o libscicore_la-freeArrayOfString.lo `test -f 'src/c/freeArrayOfString.c' || echo '$(srcdir)/'`src/c/freeArrayOfString.c
@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/libscicore_la-freeArrayOfString.Tpo $(DEPDIR)/libscicore_la-freeArrayOfString.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/c/freeArrayOfString.c' object='libscicore_la-freeArrayOfString.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) $(AM_CPPFLAGS) $(CPPFLAGS) $(libscicore_la_CFLAGS) $(CFLAGS) -c -o libscicore_la-freeArrayOfString.lo `test -f 'src/c/freeArrayOfString.c' || echo '$(srcdir)/'`src/c/freeArrayOfString.c
libscicore_la-getstaticdebuginfo.lo: src/c/getstaticdebuginfo.c
@am__fastdepCC_TRUE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libscicore_la_CFLAGS) $(CFLAGS) -MT libscicore_la-getstaticdebuginfo.lo -MD -MP -MF $(DEPDIR)/libscicore_la-getstaticdebuginfo.Tpo -c -o libscicore_la-getstaticdebuginfo.lo `test -f 'src/c/getstaticdebuginfo.c' || echo '$(srcdir)/'`src/c/getstaticdebuginfo.c
@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/libscicore_la-getstaticdebuginfo.Tpo $(DEPDIR)/libscicore_la-getstaticdebuginfo.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/c/getstaticdebuginfo.c' object='libscicore_la-getstaticdebuginfo.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) $(AM_CPPFLAGS) $(CPPFLAGS) $(libscicore_la_CFLAGS) $(CFLAGS) -c -o libscicore_la-getstaticdebuginfo.lo `test -f 'src/c/getstaticdebuginfo.c' || echo '$(srcdir)/'`src/c/getstaticdebuginfo.c
libscicore_la-getdynamicdebuginfo.lo: src/c/getdynamicdebuginfo.c
@am__fastdepCC_TRUE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libscicore_la_CFLAGS) $(CFLAGS) -MT libscicore_la-getdynamicdebuginfo.lo -MD -MP -MF $(DEPDIR)/libscicore_la-getdynamicdebuginfo.Tpo -c -o libscicore_la-getdynamicdebuginfo.lo `test -f 'src/c/getdynamicdebuginfo.c' || echo '$(srcdir)/'`src/c/getdynamicdebuginfo.c
@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/libscicore_la-getdynamicdebuginfo.Tpo $(DEPDIR)/libscicore_la-getdynamicdebuginfo.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/c/getdynamicdebuginfo.c' object='libscicore_la-getdynamicdebuginfo.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) $(AM_CPPFLAGS) $(CPPFLAGS) $(libscicore_la_CFLAGS) $(CFLAGS) -c -o libscicore_la-getdynamicdebuginfo.lo `test -f 'src/c/getdynamicdebuginfo.c' || echo '$(srcdir)/'`src/c/getdynamicdebuginfo.c
libscicore_la-callDynamicGateway.lo: src/c/callDynamicGateway.c
@am__fastdepCC_TRUE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libscicore_la_CFLAGS) $(CFLAGS) -MT libscicore_la-callDynamicGateway.lo -MD -MP -MF $(DEPDIR)/libscicore_la-callDynamicGateway.Tpo -c -o libscicore_la-callDynamicGateway.lo `test -f 'src/c/callDynamicGateway.c' || echo '$(srcdir)/'`src/c/callDynamicGateway.c
@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/libscicore_la-callDynamicGateway.Tpo $(DEPDIR)/libscicore_la-callDynamicGateway.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/c/callDynamicGateway.c' object='libscicore_la-callDynamicGateway.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) $(AM_CPPFLAGS) $(CPPFLAGS) $(libscicore_la_CFLAGS) $(CFLAGS) -c -o libscicore_la-callDynamicGateway.lo `test -f 'src/c/callDynamicGateway.c' || echo '$(srcdir)/'`src/c/callDynamicGateway.c
libscicore_la-gw_dynamic_generic.lo: src/c/gw_dynamic_generic.c
@am__fastdepCC_TRUE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libscicore_la_CFLAGS) $(CFLAGS) -MT libscicore_la-gw_dynamic_generic.lo -MD -MP -MF $(DEPDIR)/libscicore_la-gw_dynamic_generic.Tpo -c -o libscicore_la-gw_dynamic_generic.lo `test -f 'src/c/gw_dynamic_generic.c' || echo '$(srcdir)/'`src/c/gw_dynamic_generic.c
@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/libscicore_la-gw_dynamic_generic.Tpo $(DEPDIR)/libscicore_la-gw_dynamic_generic.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/c/gw_dynamic_generic.c' object='libscicore_la-gw_dynamic_generic.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) $(AM_CPPFLAGS) $(CPPFLAGS) $(libscicore_la_CFLAGS) $(CFLAGS) -c -o libscicore_la-gw_dynamic_generic.lo `test -f 'src/c/gw_dynamic_generic.c' || echo '$(srcdir)/'`src/c/gw_dynamic_generic.c
libscicore_la-dynamic_gateways.lo: src/c/dynamic_gateways.c
@am__fastdepCC_TRUE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libscicore_la_CFLAGS) $(CFLAGS) -MT libscicore_la-dynamic_gateways.lo -MD -MP -MF $(DEPDIR)/libscicore_la-dynamic_gateways.Tpo -c -o libscicore_la-dynamic_gateways.lo `test -f 'src/c/dynamic_gateways.c' || echo '$(srcdir)/'`src/c/dynamic_gateways.c
@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/libscicore_la-dynamic_gateways.Tpo $(DEPDIR)/libscicore_la-dynamic_gateways.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/c/dynamic_gateways.c' object='libscicore_la-dynamic_gateways.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) $(AM_CPPFLAGS) $(CPPFLAGS) $(libscicore_la_CFLAGS) $(CFLAGS) -c -o libscicore_la-dynamic_gateways.lo `test -f 'src/c/dynamic_gateways.c' || echo '$(srcdir)/'`src/c/dynamic_gateways.c
libscicore_la-readGateway.lo: src/c/readGateway.c
@am__fastdepCC_TRUE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libscicore_la_CFLAGS) $(CFLAGS) -MT libscicore_la-readGateway.lo -MD -MP -MF $(DEPDIR)/libscicore_la-readGateway.Tpo -c -o libscicore_la-readGateway.lo `test -f 'src/c/readGateway.c' || echo '$(srcdir)/'`src/c/readGateway.c
@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/libscicore_la-readGateway.Tpo $(DEPDIR)/libscicore_la-readGateway.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/c/readGateway.c' object='libscicore_la-readGateway.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) $(AM_CPPFLAGS) $(CPPFLAGS) $(libscicore_la_CFLAGS) $(CFLAGS) -c -o libscicore_la-readGateway.lo `test -f 'src/c/readGateway.c' || echo '$(srcdir)/'`src/c/readGateway.c
libscicore_la-comparehandles.lo: src/c/comparehandles.c
@am__fastdepCC_TRUE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libscicore_la_CFLAGS) $(CFLAGS) -MT libscicore_la-comparehandles.lo -MD -MP -MF $(DEPDIR)/libscicore_la-comparehandles.Tpo -c -o libscicore_la-comparehandles.lo `test -f 'src/c/comparehandles.c' || echo '$(srcdir)/'`src/c/comparehandles.c
@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/libscicore_la-comparehandles.Tpo $(DEPDIR)/libscicore_la-comparehandles.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/c/comparehandles.c' object='libscicore_la-comparehandles.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) $(AM_CPPFLAGS) $(CPPFLAGS) $(libscicore_la_CFLAGS) $(CFLAGS) -c -o libscicore_la-comparehandles.lo `test -f 'src/c/comparehandles.c' || echo '$(srcdir)/'`src/c/comparehandles.c
libscicore_la-setPrecisionFPU.lo: src/c/setPrecisionFPU.c
@am__fastdepCC_TRUE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libscicore_la_CFLAGS) $(CFLAGS) -MT libscicore_la-setPrecisionFPU.lo -MD -MP -MF $(DEPDIR)/libscicore_la-setPrecisionFPU.Tpo -c -o libscicore_la-setPrecisionFPU.lo `test -f 'src/c/setPrecisionFPU.c' || echo '$(srcdir)/'`src/c/setPrecisionFPU.c
@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/libscicore_la-setPrecisionFPU.Tpo $(DEPDIR)/libscicore_la-setPrecisionFPU.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/c/setPrecisionFPU.c' object='libscicore_la-setPrecisionFPU.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) $(AM_CPPFLAGS) $(CPPFLAGS) $(libscicore_la_CFLAGS) $(CFLAGS) -c -o libscicore_la-setPrecisionFPU.lo `test -f 'src/c/setPrecisionFPU.c' || echo '$(srcdir)/'`src/c/setPrecisionFPU.c
libscicore_la-LaunchScilabSignal.lo: src/c/LaunchScilabSignal.c
@am__fastdepCC_TRUE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libscicore_la_CFLAGS) $(CFLAGS) -MT libscicore_la-LaunchScilabSignal.lo -MD -MP -MF $(DEPDIR)/libscicore_la-LaunchScilabSignal.Tpo -c -o libscicore_la-LaunchScilabSignal.lo `test -f 'src/c/LaunchScilabSignal.c' || echo '$(srcdir)/'`src/c/LaunchScilabSignal.c
@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/libscicore_la-LaunchScilabSignal.Tpo $(DEPDIR)/libscicore_la-LaunchScilabSignal.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/c/LaunchScilabSignal.c' object='libscicore_la-LaunchScilabSignal.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) $(AM_CPPFLAGS) $(CPPFLAGS) $(libscicore_la_CFLAGS) $(CFLAGS) -c -o libscicore_la-LaunchScilabSignal.lo `test -f 'src/c/LaunchScilabSignal.c' || echo '$(srcdir)/'`src/c/LaunchScilabSignal.c
libscicore_la-getos.lo: src/c/getos.c
@am__fastdepCC_TRUE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libscicore_la_CFLAGS) $(CFLAGS) -MT libscicore_la-getos.lo -MD -MP -MF $(DEPDIR)/libscicore_la-getos.Tpo -c -o libscicore_la-getos.lo `test -f 'src/c/getos.c' || echo '$(srcdir)/'`src/c/getos.c
@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/libscicore_la-getos.Tpo $(DEPDIR)/libscicore_la-getos.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/c/getos.c' object='libscicore_la-getos.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) $(AM_CPPFLAGS) $(CPPFLAGS) $(libscicore_la_CFLAGS) $(CFLAGS) -c -o libscicore_la-getos.lo `test -f 'src/c/getos.c' || echo '$(srcdir)/'`src/c/getos.c
libscicore_la-mode_exec.lo: src/c/mode_exec.c
@am__fastdepCC_TRUE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libscicore_la_CFLAGS) $(CFLAGS) -MT libscicore_la-mode_exec.lo -MD -MP -MF $(DEPDIR)/libscicore_la-mode_exec.Tpo -c -o libscicore_la-mode_exec.lo `test -f 'src/c/mode_exec.c' || echo '$(srcdir)/'`src/c/mode_exec.c
@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/libscicore_la-mode_exec.Tpo $(DEPDIR)/libscicore_la-mode_exec.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/c/mode_exec.c' object='libscicore_la-mode_exec.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) $(AM_CPPFLAGS) $(CPPFLAGS) $(libscicore_la_CFLAGS) $(CFLAGS) -c -o libscicore_la-mode_exec.lo `test -f 'src/c/mode_exec.c' || echo '$(srcdir)/'`src/c/mode_exec.c
libscicore_la-predef.lo: src/c/predef.c
@am__fastdepCC_TRUE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libscicore_la_CFLAGS) $(CFLAGS) -MT libscicore_la-predef.lo -MD -MP -MF $(DEPDIR)/libscicore_la-predef.Tpo -c -o libscicore_la-predef.lo `test -f 'src/c/predef.c' || echo '$(srcdir)/'`src/c/predef.c
@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/libscicore_la-predef.Tpo $(DEPDIR)/libscicore_la-predef.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/c/predef.c' object='libscicore_la-predef.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) $(AM_CPPFLAGS) $(CPPFLAGS) $(libscicore_la_CFLAGS) $(CFLAGS) -c -o libscicore_la-predef.lo `test -f 'src/c/predef.c' || echo '$(srcdir)/'`src/c/predef.c
libscicore_la-transposeMatrix.lo: src/c/transposeMatrix.c
@am__fastdepCC_TRUE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libscicore_la_CFLAGS) $(CFLAGS) -MT libscicore_la-transposeMatrix.lo -MD -MP -MF $(DEPDIR)/libscicore_la-transposeMatrix.Tpo -c -o libscicore_la-transposeMatrix.lo `test -f 'src/c/transposeMatrix.c' || echo '$(srcdir)/'`src/c/transposeMatrix.c
@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/libscicore_la-transposeMatrix.Tpo $(DEPDIR)/libscicore_la-transposeMatrix.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/c/transposeMatrix.c' object='libscicore_la-transposeMatrix.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) $(AM_CPPFLAGS) $(CPPFLAGS) $(libscicore_la_CFLAGS) $(CFLAGS) -c -o libscicore_la-transposeMatrix.lo `test -f 'src/c/transposeMatrix.c' || echo '$(srcdir)/'`src/c/transposeMatrix.c
libscicore_la-recursionFunction.lo: src/c/recursionFunction.c
@am__fastdepCC_TRUE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libscicore_la_CFLAGS) $(CFLAGS) -MT libscicore_la-recursionFunction.lo -MD -MP -MF $(DEPDIR)/libscicore_la-recursionFunction.Tpo -c -o libscicore_la-recursionFunction.lo `test -f 'src/c/recursionFunction.c' || echo '$(srcdir)/'`src/c/recursionFunction.c
@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/libscicore_la-recursionFunction.Tpo $(DEPDIR)/libscicore_la-recursionFunction.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/c/recursionFunction.c' object='libscicore_la-recursionFunction.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) $(AM_CPPFLAGS) $(CPPFLAGS) $(libscicore_la_CFLAGS) $(CFLAGS) -c -o libscicore_la-recursionFunction.lo `test -f 'src/c/recursionFunction.c' || echo '$(srcdir)/'`src/c/recursionFunction.c
libscicore_la-typename.lo: src/c/typename.c
@am__fastdepCC_TRUE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libscicore_la_CFLAGS) $(CFLAGS) -MT libscicore_la-typename.lo -MD -MP -MF $(DEPDIR)/libscicore_la-typename.Tpo -c -o libscicore_la-typename.lo `test -f 'src/c/typename.c' || echo '$(srcdir)/'`src/c/typename.c
@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/libscicore_la-typename.Tpo $(DEPDIR)/libscicore_la-typename.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/c/typename.c' object='libscicore_la-typename.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) $(AM_CPPFLAGS) $(CPPFLAGS) $(libscicore_la_CFLAGS) $(CFLAGS) -c -o libscicore_la-typename.lo `test -f 'src/c/typename.c' || echo '$(srcdir)/'`src/c/typename.c
libscicore_la-inittypenames.lo: src/c/inittypenames.c
@am__fastdepCC_TRUE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libscicore_la_CFLAGS) $(CFLAGS) -MT libscicore_la-inittypenames.lo -MD -MP -MF $(DEPDIR)/libscicore_la-inittypenames.Tpo -c -o libscicore_la-inittypenames.lo `test -f 'src/c/inittypenames.c' || echo '$(srcdir)/'`src/c/inittypenames.c
@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/libscicore_la-inittypenames.Tpo $(DEPDIR)/libscicore_la-inittypenames.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/c/inittypenames.c' object='libscicore_la-inittypenames.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) $(AM_CPPFLAGS) $(CPPFLAGS) $(libscicore_la_CFLAGS) $(CFLAGS) -c -o libscicore_la-inittypenames.lo `test -f 'src/c/inittypenames.c' || echo '$(srcdir)/'`src/c/inittypenames.c
libscicore_la-funcprot.lo: src/c/funcprot.c
@am__fastdepCC_TRUE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libscicore_la_CFLAGS) $(CFLAGS) -MT libscicore_la-funcprot.lo -MD -MP -MF $(DEPDIR)/libscicore_la-funcprot.Tpo -c -o libscicore_la-funcprot.lo `test -f 'src/c/funcprot.c' || echo '$(srcdir)/'`src/c/funcprot.c
@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/libscicore_la-funcprot.Tpo $(DEPDIR)/libscicore_la-funcprot.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/c/funcprot.c' object='libscicore_la-funcprot.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) $(AM_CPPFLAGS) $(CPPFLAGS) $(libscicore_la_CFLAGS) $(CFLAGS) -c -o libscicore_la-funcprot.lo `test -f 'src/c/funcprot.c' || echo '$(srcdir)/'`src/c/funcprot.c
libscicore_la-scimem64.lo: src/c/scimem64.c
@am__fastdepCC_TRUE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libscicore_la_CFLAGS) $(CFLAGS) -MT libscicore_la-scimem64.lo -MD -MP -MF $(DEPDIR)/libscicore_la-scimem64.Tpo -c -o libscicore_la-scimem64.lo `test -f 'src/c/scimem64.c' || echo '$(srcdir)/'`src/c/scimem64.c
@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/libscicore_la-scimem64.Tpo $(DEPDIR)/libscicore_la-scimem64.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='src/c/scimem64.c' object='libscicore_la-scimem64.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) $(AM_CPPFLAGS) $(CPPFLAGS) $(libscicore_la_CFLAGS) $(CFLAGS) -c -o libscicore_la-scimem64.lo `test -f 'src/c/scimem64.c' || echo '$(srcdir)/'`src/c/scimem64.c
libscicore_la-sci_stacksize.lo: sci_gateway/c/sci_stacksize.c
@am__fastdepCC_TRUE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libscicore_la_CFLAGS) $(CFLAGS) -MT libscicore_la-sci_stacksize.lo -MD -MP -MF $(DEPDIR)/libscicore_la-sci_stacksize.Tpo -c -o libscicore_la-sci_stacksize.lo `test -f 'sci_gateway/c/sci_stacksize.c' || echo '$(srcdir)/'`sci_gateway/c/sci_stacksize.c
@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/libscicore_la-sci_stacksize.Tpo $(DEPDIR)/libscicore_la-sci_stacksize.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='sci_gateway/c/sci_stacksize.c' object='libscicore_la-sci_stacksize.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) $(AM_CPPFLAGS) $(CPPFLAGS) $(libscicore_la_CFLAGS) $(CFLAGS) -c -o libscicore_la-sci_stacksize.lo `test -f 'sci_gateway/c/sci_stacksize.c' || echo '$(srcdir)/'`sci_gateway/c/sci_stacksize.c
libscicore_la-sci_resume.lo: sci_gateway/c/sci_resume.c
@am__fastdepCC_TRUE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libscicore_la_CFLAGS) $(CFLAGS) -MT libscicore_la-sci_resume.lo -MD -MP -MF $(DEPDIR)/libscicore_la-sci_resume.Tpo -c -o libscicore_la-sci_resume.lo `test -f 'sci_gateway/c/sci_resume.c' || echo '$(srcdir)/'`sci_gateway/c/sci_resume.c
@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/libscicore_la-sci_resume.Tpo $(DEPDIR)/libscicore_la-sci_resume.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='sci_gateway/c/sci_resume.c' object='libscicore_la-sci_resume.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) $(AM_CPPFLAGS) $(CPPFLAGS) $(libscicore_la_CFLAGS) $(CFLAGS) -c -o libscicore_la-sci_resume.lo `test -f 'sci_gateway/c/sci_resume.c' || echo '$(srcdir)/'`sci_gateway/c/sci_resume.c
libscicore_la-sci_mtlb_mode.lo: sci_gateway/c/sci_mtlb_mode.c
@am__fastdepCC_TRUE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libscicore_la_CFLAGS) $(CFLAGS) -MT libscicore_la-sci_mtlb_mode.lo -MD -MP -MF $(DEPDIR)/libscicore_la-sci_mtlb_mode.Tpo -c -o libscicore_la-sci_mtlb_mode.lo `test -f 'sci_gateway/c/sci_mtlb_mode.c' || echo '$(srcdir)/'`sci_gateway/c/sci_mtlb_mode.c
@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/libscicore_la-sci_mtlb_mode.Tpo $(DEPDIR)/libscicore_la-sci_mtlb_mode.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='sci_gateway/c/sci_mtlb_mode.c' object='libscicore_la-sci_mtlb_mode.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) $(AM_CPPFLAGS) $(CPPFLAGS) $(libscicore_la_CFLAGS) $(CFLAGS) -c -o libscicore_la-sci_mtlb_mode.lo `test -f 'sci_gateway/c/sci_mtlb_mode.c' || echo '$(srcdir)/'`sci_gateway/c/sci_mtlb_mode.c
libscicore_la-sci_banner.lo: sci_gateway/c/sci_banner.c
@am__fastdepCC_TRUE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libscicore_la_CFLAGS) $(CFLAGS) -MT libscicore_la-sci_banner.lo -MD -MP -MF $(DEPDIR)/libscicore_la-sci_banner.Tpo -c -o libscicore_la-sci_banner.lo `test -f 'sci_gateway/c/sci_banner.c' || echo '$(srcdir)/'`sci_gateway/c/sci_banner.c
@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/libscicore_la-sci_banner.Tpo $(DEPDIR)/libscicore_la-sci_banner.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='sci_gateway/c/sci_banner.c' object='libscicore_la-sci_banner.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) $(AM_CPPFLAGS) $(CPPFLAGS) $(libscicore_la_CFLAGS) $(CFLAGS) -c -o libscicore_la-sci_banner.lo `test -f 'sci_gateway/c/sci_banner.c' || echo '$(srcdir)/'`sci_gateway/c/sci_banner.c
libscicore_la-sci_where.lo: sci_gateway/c/sci_where.c
@am__fastdepCC_TRUE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libscicore_la_CFLAGS) $(CFLAGS) -MT libscicore_la-sci_where.lo -MD -MP -MF $(DEPDIR)/libscicore_la-sci_where.Tpo -c -o libscicore_la-sci_where.lo `test -f 'sci_gateway/c/sci_where.c' || echo '$(srcdir)/'`sci_gateway/c/sci_where.c
@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/libscicore_la-sci_where.Tpo $(DEPDIR)/libscicore_la-sci_where.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='sci_gateway/c/sci_where.c' object='libscicore_la-sci_where.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) $(AM_CPPFLAGS) $(CPPFLAGS) $(libscicore_la_CFLAGS) $(CFLAGS) -c -o libscicore_la-sci_where.lo `test -f 'sci_gateway/c/sci_where.c' || echo '$(srcdir)/'`sci_gateway/c/sci_where.c
libscicore_la-sci_errcatch.lo: sci_gateway/c/sci_errcatch.c
@am__fastdepCC_TRUE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libscicore_la_CFLAGS) $(CFLAGS) -MT libscicore_la-sci_errcatch.lo -MD -MP -MF $(DEPDIR)/libscicore_la-sci_errcatch.Tpo -c -o libscicore_la-sci_errcatch.lo `test -f 'sci_gateway/c/sci_errcatch.c' || echo '$(srcdir)/'`sci_gateway/c/sci_errcatch.c
@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/libscicore_la-sci_errcatch.Tpo $(DEPDIR)/libscicore_la-sci_errcatch.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='sci_gateway/c/sci_errcatch.c' object='libscicore_la-sci_errcatch.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) $(AM_CPPFLAGS) $(CPPFLAGS) $(libscicore_la_CFLAGS) $(CFLAGS) -c -o libscicore_la-sci_errcatch.lo `test -f 'sci_gateway/c/sci_errcatch.c' || echo '$(srcdir)/'`sci_gateway/c/sci_errcatch.c
libscicore_la-sci_getos.lo: sci_gateway/c/sci_getos.c
@am__fastdepCC_TRUE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libscicore_la_CFLAGS) $(CFLAGS) -MT libscicore_la-sci_getos.lo -MD -MP -MF $(DEPDIR)/libscicore_la-sci_getos.Tpo -c -o libscicore_la-sci_getos.lo `test -f 'sci_gateway/c/sci_getos.c' || echo '$(srcdir)/'`sci_gateway/c/sci_getos.c
@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/libscicore_la-sci_getos.Tpo $(DEPDIR)/libscicore_la-sci_getos.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='sci_gateway/c/sci_getos.c' object='libscicore_la-sci_getos.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) $(AM_CPPFLAGS) $(CPPFLAGS) $(libscicore_la_CFLAGS) $(CFLAGS) -c -o libscicore_la-sci_getos.lo `test -f 'sci_gateway/c/sci_getos.c' || echo '$(srcdir)/'`sci_gateway/c/sci_getos.c
libscicore_la-sci_format.lo: sci_gateway/c/sci_format.c
@am__fastdepCC_TRUE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libscicore_la_CFLAGS) $(CFLAGS) -MT libscicore_la-sci_format.lo -MD -MP -MF $(DEPDIR)/libscicore_la-sci_format.Tpo -c -o libscicore_la-sci_format.lo `test -f 'sci_gateway/c/sci_format.c' || echo '$(srcdir)/'`sci_gateway/c/sci_format.c
@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/libscicore_la-sci_format.Tpo $(DEPDIR)/libscicore_la-sci_format.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='sci_gateway/c/sci_format.c' object='libscicore_la-sci_format.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) $(AM_CPPFLAGS) $(CPPFLAGS) $(libscicore_la_CFLAGS) $(CFLAGS) -c -o libscicore_la-sci_format.lo `test -f 'sci_gateway/c/sci_format.c' || echo '$(srcdir)/'`sci_gateway/c/sci_format.c
libscicore_la-sci_getmemory.lo: sci_gateway/c/sci_getmemory.c
@am__fastdepCC_TRUE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libscicore_la_CFLAGS) $(CFLAGS) -MT libscicore_la-sci_getmemory.lo -MD -MP -MF $(DEPDIR)/libscicore_la-sci_getmemory.Tpo -c -o libscicore_la-sci_getmemory.lo `test -f 'sci_gateway/c/sci_getmemory.c' || echo '$(srcdir)/'`sci_gateway/c/sci_getmemory.c
@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/libscicore_la-sci_getmemory.Tpo $(DEPDIR)/libscicore_la-sci_getmemory.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='sci_gateway/c/sci_getmemory.c' object='libscicore_la-sci_getmemory.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) $(AM_CPPFLAGS) $(CPPFLAGS) $(libscicore_la_CFLAGS) $(CFLAGS) -c -o libscicore_la-sci_getmemory.lo `test -f 'sci_gateway/c/sci_getmemory.c' || echo '$(srcdir)/'`sci_gateway/c/sci_getmemory.c
libscicore_la-sci_havewindow.lo: sci_gateway/c/sci_havewindow.c
@am__fastdepCC_TRUE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libscicore_la_CFLAGS) $(CFLAGS) -MT libscicore_la-sci_havewindow.lo -MD -MP -MF $(DEPDIR)/libscicore_la-sci_havewindow.Tpo -c -o libscicore_la-sci_havewindow.lo `test -f 'sci_gateway/c/sci_havewindow.c' || echo '$(srcdir)/'`sci_gateway/c/sci_havewindow.c
@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/libscicore_la-sci_havewindow.Tpo $(DEPDIR)/libscicore_la-sci_havewindow.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='sci_gateway/c/sci_havewindow.c' object='libscicore_la-sci_havewindow.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) $(AM_CPPFLAGS) $(CPPFLAGS) $(libscicore_la_CFLAGS) $(CFLAGS) -c -o libscicore_la-sci_havewindow.lo `test -f 'sci_gateway/c/sci_havewindow.c' || echo '$(srcdir)/'`sci_gateway/c/sci_havewindow.c
libscicore_la-sci_delbpt.lo: sci_gateway/c/sci_delbpt.c
@am__fastdepCC_TRUE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libscicore_la_CFLAGS) $(CFLAGS) -MT libscicore_la-sci_delbpt.lo -MD -MP -MF $(DEPDIR)/libscicore_la-sci_delbpt.Tpo -c -o libscicore_la-sci_delbpt.lo `test -f 'sci_gateway/c/sci_delbpt.c' || echo '$(srcdir)/'`sci_gateway/c/sci_delbpt.c
@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/libscicore_la-sci_delbpt.Tpo $(DEPDIR)/libscicore_la-sci_delbpt.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='sci_gateway/c/sci_delbpt.c' object='libscicore_la-sci_delbpt.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) $(AM_CPPFLAGS) $(CPPFLAGS) $(libscicore_la_CFLAGS) $(CFLAGS) -c -o libscicore_la-sci_delbpt.lo `test -f 'sci_gateway/c/sci_delbpt.c' || echo '$(srcdir)/'`sci_gateway/c/sci_delbpt.c
libscicore_la-sci_macr2lst.lo: sci_gateway/c/sci_macr2lst.c
@am__fastdepCC_TRUE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libscicore_la_CFLAGS) $(CFLAGS) -MT libscicore_la-sci_macr2lst.lo -MD -MP -MF $(DEPDIR)/libscicore_la-sci_macr2lst.Tpo -c -o libscicore_la-sci_macr2lst.lo `test -f 'sci_gateway/c/sci_macr2lst.c' || echo '$(srcdir)/'`sci_gateway/c/sci_macr2lst.c
@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/libscicore_la-sci_macr2lst.Tpo $(DEPDIR)/libscicore_la-sci_macr2lst.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='sci_gateway/c/sci_macr2lst.c' object='libscicore_la-sci_macr2lst.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) $(AM_CPPFLAGS) $(CPPFLAGS) $(libscicore_la_CFLAGS) $(CFLAGS) -c -o libscicore_la-sci_macr2lst.lo `test -f 'sci_gateway/c/sci_macr2lst.c' || echo '$(srcdir)/'`sci_gateway/c/sci_macr2lst.c
libscicore_la-sci_isdef.lo: sci_gateway/c/sci_isdef.c
@am__fastdepCC_TRUE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libscicore_la_CFLAGS) $(CFLAGS) -MT libscicore_la-sci_isdef.lo -MD -MP -MF $(DEPDIR)/libscicore_la-sci_isdef.Tpo -c -o libscicore_la-sci_isdef.lo `test -f 'sci_gateway/c/sci_isdef.c' || echo '$(srcdir)/'`sci_gateway/c/sci_isdef.c
@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/libscicore_la-sci_isdef.Tpo $(DEPDIR)/libscicore_la-sci_isdef.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='sci_gateway/c/sci_isdef.c' object='libscicore_la-sci_isdef.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) $(AM_CPPFLAGS) $(CPPFLAGS) $(libscicore_la_CFLAGS) $(CFLAGS) -c -o libscicore_la-sci_isdef.lo `test -f 'sci_gateway/c/sci_isdef.c' || echo '$(srcdir)/'`sci_gateway/c/sci_isdef.c
libscicore_la-sci_isglobal.lo: sci_gateway/c/sci_isglobal.c
@am__fastdepCC_TRUE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libscicore_la_CFLAGS) $(CFLAGS) -MT libscicore_la-sci_isglobal.lo -MD -MP -MF $(DEPDIR)/libscicore_la-sci_isglobal.Tpo -c -o libscicore_la-sci_isglobal.lo `test -f 'sci_gateway/c/sci_isglobal.c' || echo '$(srcdir)/'`sci_gateway/c/sci_isglobal.c
@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/libscicore_la-sci_isglobal.Tpo $(DEPDIR)/libscicore_la-sci_isglobal.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='sci_gateway/c/sci_isglobal.c' object='libscicore_la-sci_isglobal.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) $(AM_CPPFLAGS) $(CPPFLAGS) $(libscicore_la_CFLAGS) $(CFLAGS) -c -o libscicore_la-sci_isglobal.lo `test -f 'sci_gateway/c/sci_isglobal.c' || echo '$(srcdir)/'`sci_gateway/c/sci_isglobal.c
libscicore_la-sci_who.lo: sci_gateway/c/sci_who.c
@am__fastdepCC_TRUE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libscicore_la_CFLAGS) $(CFLAGS) -MT libscicore_la-sci_who.lo -MD -MP -MF $(DEPDIR)/libscicore_la-sci_who.Tpo -c -o libscicore_la-sci_who.lo `test -f 'sci_gateway/c/sci_who.c' || echo '$(srcdir)/'`sci_gateway/c/sci_who.c
@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/libscicore_la-sci_who.Tpo $(DEPDIR)/libscicore_la-sci_who.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='sci_gateway/c/sci_who.c' object='libscicore_la-sci_who.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) $(AM_CPPFLAGS) $(CPPFLAGS) $(libscicore_la_CFLAGS) $(CFLAGS) -c -o libscicore_la-sci_who.lo `test -f 'sci_gateway/c/sci_who.c' || echo '$(srcdir)/'`sci_gateway/c/sci_who.c
libscicore_la-sci_errclear.lo: sci_gateway/c/sci_errclear.c
@am__fastdepCC_TRUE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libscicore_la_CFLAGS) $(CFLAGS) -MT libscicore_la-sci_errclear.lo -MD -MP -MF $(DEPDIR)/libscicore_la-sci_errclear.Tpo -c -o libscicore_la-sci_errclear.lo `test -f 'sci_gateway/c/sci_errclear.c' || echo '$(srcdir)/'`sci_gateway/c/sci_errclear.c
@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/libscicore_la-sci_errclear.Tpo $(DEPDIR)/libscicore_la-sci_errclear.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='sci_gateway/c/sci_errclear.c' object='libscicore_la-sci_errclear.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) $(AM_CPPFLAGS) $(CPPFLAGS) $(libscicore_la_CFLAGS) $(CFLAGS) -c -o libscicore_la-sci_errclear.lo `test -f 'sci_gateway/c/sci_errclear.c' || echo '$(srcdir)/'`sci_gateway/c/sci_errclear.c
libscicore_la-sci_global.lo: sci_gateway/c/sci_global.c
@am__fastdepCC_TRUE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libscicore_la_CFLAGS) $(CFLAGS) -MT libscicore_la-sci_global.lo -MD -MP -MF $(DEPDIR)/libscicore_la-sci_global.Tpo -c -o libscicore_la-sci_global.lo `test -f 'sci_gateway/c/sci_global.c' || echo '$(srcdir)/'`sci_gateway/c/sci_global.c
@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/libscicore_la-sci_global.Tpo $(DEPDIR)/libscicore_la-sci_global.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='sci_gateway/c/sci_global.c' object='libscicore_la-sci_global.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) $(AM_CPPFLAGS) $(CPPFLAGS) $(libscicore_la_CFLAGS) $(CFLAGS) -c -o libscicore_la-sci_global.lo `test -f 'sci_gateway/c/sci_global.c' || echo '$(srcdir)/'`sci_gateway/c/sci_global.c
libscicore_la-sci_funcprot.lo: sci_gateway/c/sci_funcprot.c
@am__fastdepCC_TRUE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libscicore_la_CFLAGS) $(CFLAGS) -MT libscicore_la-sci_funcprot.lo -MD -MP -MF $(DEPDIR)/libscicore_la-sci_funcprot.Tpo -c -o libscicore_la-sci_funcprot.lo `test -f 'sci_gateway/c/sci_funcprot.c' || echo '$(srcdir)/'`sci_gateway/c/sci_funcprot.c
@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/libscicore_la-sci_funcprot.Tpo $(DEPDIR)/libscicore_la-sci_funcprot.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='sci_gateway/c/sci_funcprot.c' object='libscicore_la-sci_funcprot.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) $(AM_CPPFLAGS) $(CPPFLAGS) $(libscicore_la_CFLAGS) $(CFLAGS) -c -o libscicore_la-sci_funcprot.lo `test -f 'sci_gateway/c/sci_funcprot.c' || echo '$(srcdir)/'`sci_gateway/c/sci_funcprot.c
libscicore_la-sci_newfun.lo: sci_gateway/c/sci_newfun.c
@am__fastdepCC_TRUE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libscicore_la_CFLAGS) $(CFLAGS) -MT libscicore_la-sci_newfun.lo -MD -MP -MF $(DEPDIR)/libscicore_la-sci_newfun.Tpo -c -o libscicore_la-sci_newfun.lo `test -f 'sci_gateway/c/sci_newfun.c' || echo '$(srcdir)/'`sci_gateway/c/sci_newfun.c
@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/libscicore_la-sci_newfun.Tpo $(DEPDIR)/libscicore_la-sci_newfun.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='sci_gateway/c/sci_newfun.c' object='libscicore_la-sci_newfun.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) $(AM_CPPFLAGS) $(CPPFLAGS) $(libscicore_la_CFLAGS) $(CFLAGS) -c -o libscicore_la-sci_newfun.lo `test -f 'sci_gateway/c/sci_newfun.c' || echo '$(srcdir)/'`sci_gateway/c/sci_newfun.c
libscicore_la-sci_warning.lo: sci_gateway/c/sci_warning.c
@am__fastdepCC_TRUE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libscicore_la_CFLAGS) $(CFLAGS) -MT libscicore_la-sci_warning.lo -MD -MP -MF $(DEPDIR)/libscicore_la-sci_warning.Tpo -c -o libscicore_la-sci_warning.lo `test -f 'sci_gateway/c/sci_warning.c' || echo '$(srcdir)/'`sci_gateway/c/sci_warning.c
@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/libscicore_la-sci_warning.Tpo $(DEPDIR)/libscicore_la-sci_warning.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='sci_gateway/c/sci_warning.c' object='libscicore_la-sci_warning.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) $(AM_CPPFLAGS) $(CPPFLAGS) $(libscicore_la_CFLAGS) $(CFLAGS) -c -o libscicore_la-sci_warning.lo `test -f 'sci_gateway/c/sci_warning.c' || echo '$(srcdir)/'`sci_gateway/c/sci_warning.c
libscicore_la-sci_dispbpt.lo: sci_gateway/c/sci_dispbpt.c
@am__fastdepCC_TRUE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libscicore_la_CFLAGS) $(CFLAGS) -MT libscicore_la-sci_dispbpt.lo -MD -MP -MF $(DEPDIR)/libscicore_la-sci_dispbpt.Tpo -c -o libscicore_la-sci_dispbpt.lo `test -f 'sci_gateway/c/sci_dispbpt.c' || echo '$(srcdir)/'`sci_gateway/c/sci_dispbpt.c
@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/libscicore_la-sci_dispbpt.Tpo $(DEPDIR)/libscicore_la-sci_dispbpt.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='sci_gateway/c/sci_dispbpt.c' object='libscicore_la-sci_dispbpt.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) $(AM_CPPFLAGS) $(CPPFLAGS) $(libscicore_la_CFLAGS) $(CFLAGS) -c -o libscicore_la-sci_dispbpt.lo `test -f 'sci_gateway/c/sci_dispbpt.c' || echo '$(srcdir)/'`sci_gateway/c/sci_dispbpt.c
libscicore_la-sci_intppty.lo: sci_gateway/c/sci_intppty.c
@am__fastdepCC_TRUE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libscicore_la_CFLAGS) $(CFLAGS) -MT libscicore_la-sci_intppty.lo -MD -MP -MF $(DEPDIR)/libscicore_la-sci_intppty.Tpo -c -o libscicore_la-sci_intppty.lo `test -f 'sci_gateway/c/sci_intppty.c' || echo '$(srcdir)/'`sci_gateway/c/sci_intppty.c
@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/libscicore_la-sci_intppty.Tpo $(DEPDIR)/libscicore_la-sci_intppty.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='sci_gateway/c/sci_intppty.c' object='libscicore_la-sci_intppty.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) $(AM_CPPFLAGS) $(CPPFLAGS) $(libscicore_la_CFLAGS) $(CFLAGS) -c -o libscicore_la-sci_intppty.lo `test -f 'sci_gateway/c/sci_intppty.c' || echo '$(srcdir)/'`sci_gateway/c/sci_intppty.c
libscicore_la-sci_ieee.lo: sci_gateway/c/sci_ieee.c
@am__fastdepCC_TRUE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libscicore_la_CFLAGS) $(CFLAGS) -MT libscicore_la-sci_ieee.lo -MD -MP -MF $(DEPDIR)/libscicore_la-sci_ieee.Tpo -c -o libscicore_la-sci_ieee.lo `test -f 'sci_gateway/c/sci_ieee.c' || echo '$(srcdir)/'`sci_gateway/c/sci_ieee.c
@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/libscicore_la-sci_ieee.Tpo $(DEPDIR)/libscicore_la-sci_ieee.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='sci_gateway/c/sci_ieee.c' object='libscicore_la-sci_ieee.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) $(AM_CPPFLAGS) $(CPPFLAGS) $(libscicore_la_CFLAGS) $(CFLAGS) -c -o libscicore_la-sci_ieee.lo `test -f 'sci_gateway/c/sci_ieee.c' || echo '$(srcdir)/'`sci_gateway/c/sci_ieee.c
libscicore_la-sci_gstacksize.lo: sci_gateway/c/sci_gstacksize.c
@am__fastdepCC_TRUE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libscicore_la_CFLAGS) $(CFLAGS) -MT libscicore_la-sci_gstacksize.lo -MD -MP -MF $(DEPDIR)/libscicore_la-sci_gstacksize.Tpo -c -o libscicore_la-sci_gstacksize.lo `test -f 'sci_gateway/c/sci_gstacksize.c' || echo '$(srcdir)/'`sci_gateway/c/sci_gstacksize.c
@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/libscicore_la-sci_gstacksize.Tpo $(DEPDIR)/libscicore_la-sci_gstacksize.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='sci_gateway/c/sci_gstacksize.c' object='libscicore_la-sci_gstacksize.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) $(AM_CPPFLAGS) $(CPPFLAGS) $(libscicore_la_CFLAGS) $(CFLAGS) -c -o libscicore_la-sci_gstacksize.lo `test -f 'sci_gateway/c/sci_gstacksize.c' || echo '$(srcdir)/'`sci_gateway/c/sci_gstacksize.c
libscicore_la-sci_lasterror.lo: sci_gateway/c/sci_lasterror.c
@am__fastdepCC_TRUE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libscicore_la_CFLAGS) $(CFLAGS) -MT libscicore_la-sci_lasterror.lo -MD -MP -MF $(DEPDIR)/libscicore_la-sci_lasterror.Tpo -c -o libscicore_la-sci_lasterror.lo `test -f 'sci_gateway/c/sci_lasterror.c' || echo '$(srcdir)/'`sci_gateway/c/sci_lasterror.c
@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/libscicore_la-sci_lasterror.Tpo $(DEPDIR)/libscicore_la-sci_lasterror.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='sci_gateway/c/sci_lasterror.c' object='libscicore_la-sci_lasterror.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) $(AM_CPPFLAGS) $(CPPFLAGS) $(libscicore_la_CFLAGS) $(CFLAGS) -c -o libscicore_la-sci_lasterror.lo `test -f 'sci_gateway/c/sci_lasterror.c' || echo '$(srcdir)/'`sci_gateway/c/sci_lasterror.c
libscicore_la-sci_funptr.lo: sci_gateway/c/sci_funptr.c
@am__fastdepCC_TRUE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libscicore_la_CFLAGS) $(CFLAGS) -MT libscicore_la-sci_funptr.lo -MD -MP -MF $(DEPDIR)/libscicore_la-sci_funptr.Tpo -c -o libscicore_la-sci_funptr.lo `test -f 'sci_gateway/c/sci_funptr.c' || echo '$(srcdir)/'`sci_gateway/c/sci_funptr.c
@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/libscicore_la-sci_funptr.Tpo $(DEPDIR)/libscicore_la-sci_funptr.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='sci_gateway/c/sci_funptr.c' object='libscicore_la-sci_funptr.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) $(AM_CPPFLAGS) $(CPPFLAGS) $(libscicore_la_CFLAGS) $(CFLAGS) -c -o libscicore_la-sci_funptr.lo `test -f 'sci_gateway/c/sci_funptr.c' || echo '$(srcdir)/'`sci_gateway/c/sci_funptr.c
libscicore_la-sci_return.lo: sci_gateway/c/sci_return.c
@am__fastdepCC_TRUE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libscicore_la_CFLAGS) $(CFLAGS) -MT libscicore_la-sci_return.lo -MD -MP -MF $(DEPDIR)/libscicore_la-sci_return.Tpo -c -o libscicore_la-sci_return.lo `test -f 'sci_gateway/c/sci_return.c' || echo '$(srcdir)/'`sci_gateway/c/sci_return.c
@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/libscicore_la-sci_return.Tpo $(DEPDIR)/libscicore_la-sci_return.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='sci_gateway/c/sci_return.c' object='libscicore_la-sci_return.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) $(AM_CPPFLAGS) $(CPPFLAGS) $(libscicore_la_CFLAGS) $(CFLAGS) -c -o libscicore_la-sci_return.lo `test -f 'sci_gateway/c/sci_return.c' || echo '$(srcdir)/'`sci_gateway/c/sci_return.c
libscicore_la-sci_exists.lo: sci_gateway/c/sci_exists.c
@am__fastdepCC_TRUE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libscicore_la_CFLAGS) $(CFLAGS) -MT libscicore_la-sci_exists.lo -MD -MP -MF $(DEPDIR)/libscicore_la-sci_exists.Tpo -c -o libscicore_la-sci_exists.lo `test -f 'sci_gateway/c/sci_exists.c' || echo '$(srcdir)/'`sci_gateway/c/sci_exists.c
@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/libscicore_la-sci_exists.Tpo $(DEPDIR)/libscicore_la-sci_exists.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='sci_gateway/c/sci_exists.c' object='libscicore_la-sci_exists.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) $(AM_CPPFLAGS) $(CPPFLAGS) $(libscicore_la_CFLAGS) $(CFLAGS) -c -o libscicore_la-sci_exists.lo `test -f 'sci_gateway/c/sci_exists.c' || echo '$(srcdir)/'`sci_gateway/c/sci_exists.c
libscicore_la-sci_getmd5.lo: sci_gateway/c/sci_getmd5.c
@am__fastdepCC_TRUE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libscicore_la_CFLAGS) $(CFLAGS) -MT libscicore_la-sci_getmd5.lo -MD -MP -MF $(DEPDIR)/libscicore_la-sci_getmd5.Tpo -c -o libscicore_la-sci_getmd5.lo `test -f 'sci_gateway/c/sci_getmd5.c' || echo '$(srcdir)/'`sci_gateway/c/sci_getmd5.c
@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/libscicore_la-sci_getmd5.Tpo $(DEPDIR)/libscicore_la-sci_getmd5.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='sci_gateway/c/sci_getmd5.c' object='libscicore_la-sci_getmd5.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) $(AM_CPPFLAGS) $(CPPFLAGS) $(libscicore_la_CFLAGS) $(CFLAGS) -c -o libscicore_la-sci_getmd5.lo `test -f 'sci_gateway/c/sci_getmd5.c' || echo '$(srcdir)/'`sci_gateway/c/sci_getmd5.c
libscicore_la-sci_clear.lo: sci_gateway/c/sci_clear.c
@am__fastdepCC_TRUE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libscicore_la_CFLAGS) $(CFLAGS) -MT libscicore_la-sci_clear.lo -MD -MP -MF $(DEPDIR)/libscicore_la-sci_clear.Tpo -c -o libscicore_la-sci_clear.lo `test -f 'sci_gateway/c/sci_clear.c' || echo '$(srcdir)/'`sci_gateway/c/sci_clear.c
@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/libscicore_la-sci_clear.Tpo $(DEPDIR)/libscicore_la-sci_clear.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='sci_gateway/c/sci_clear.c' object='libscicore_la-sci_clear.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) $(AM_CPPFLAGS) $(CPPFLAGS) $(libscicore_la_CFLAGS) $(CFLAGS) -c -o libscicore_la-sci_clear.lo `test -f 'sci_gateway/c/sci_clear.c' || echo '$(srcdir)/'`sci_gateway/c/sci_clear.c
libscicore_la-sci_clearfun.lo: sci_gateway/c/sci_clearfun.c
@am__fastdepCC_TRUE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libscicore_la_CFLAGS) $(CFLAGS) -MT libscicore_la-sci_clearfun.lo -MD -MP -MF $(DEPDIR)/libscicore_la-sci_clearfun.Tpo -c -o libscicore_la-sci_clearfun.lo `test -f 'sci_gateway/c/sci_clearfun.c' || echo '$(srcdir)/'`sci_gateway/c/sci_clearfun.c
@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/libscicore_la-sci_clearfun.Tpo $(DEPDIR)/libscicore_la-sci_clearfun.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='sci_gateway/c/sci_clearfun.c' object='libscicore_la-sci_clearfun.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) $(AM_CPPFLAGS) $(CPPFLAGS) $(libscicore_la_CFLAGS) $(CFLAGS) -c -o libscicore_la-sci_clearfun.lo `test -f 'sci_gateway/c/sci_clearfun.c' || echo '$(srcdir)/'`sci_gateway/c/sci_clearfun.c
libscicore_la-sci_setbpt.lo: sci_gateway/c/sci_setbpt.c
@am__fastdepCC_TRUE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libscicore_la_CFLAGS) $(CFLAGS) -MT libscicore_la-sci_setbpt.lo -MD -MP -MF $(DEPDIR)/libscicore_la-sci_setbpt.Tpo -c -o libscicore_la-sci_setbpt.lo `test -f 'sci_gateway/c/sci_setbpt.c' || echo '$(srcdir)/'`sci_gateway/c/sci_setbpt.c
@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/libscicore_la-sci_setbpt.Tpo $(DEPDIR)/libscicore_la-sci_setbpt.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='sci_gateway/c/sci_setbpt.c' object='libscicore_la-sci_setbpt.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) $(AM_CPPFLAGS) $(CPPFLAGS) $(libscicore_la_CFLAGS) $(CFLAGS) -c -o libscicore_la-sci_setbpt.lo `test -f 'sci_gateway/c/sci_setbpt.c' || echo '$(srcdir)/'`sci_gateway/c/sci_setbpt.c
libscicore_la-sci_getmodules.lo: sci_gateway/c/sci_getmodules.c
@am__fastdepCC_TRUE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libscicore_la_CFLAGS) $(CFLAGS) -MT libscicore_la-sci_getmodules.lo -MD -MP -MF $(DEPDIR)/libscicore_la-sci_getmodules.Tpo -c -o libscicore_la-sci_getmodules.lo `test -f 'sci_gateway/c/sci_getmodules.c' || echo '$(srcdir)/'`sci_gateway/c/sci_getmodules.c
@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/libscicore_la-sci_getmodules.Tpo $(DEPDIR)/libscicore_la-sci_getmodules.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='sci_gateway/c/sci_getmodules.c' object='libscicore_la-sci_getmodules.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) $(AM_CPPFLAGS) $(CPPFLAGS) $(libscicore_la_CFLAGS) $(CFLAGS) -c -o libscicore_la-sci_getmodules.lo `test -f 'sci_gateway/c/sci_getmodules.c' || echo '$(srcdir)/'`sci_gateway/c/sci_getmodules.c
libscicore_la-sci_what.lo: sci_gateway/c/sci_what.c
@am__fastdepCC_TRUE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libscicore_la_CFLAGS) $(CFLAGS) -MT libscicore_la-sci_what.lo -MD -MP -MF $(DEPDIR)/libscicore_la-sci_what.Tpo -c -o libscicore_la-sci_what.lo `test -f 'sci_gateway/c/sci_what.c' || echo '$(srcdir)/'`sci_gateway/c/sci_what.c
@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/libscicore_la-sci_what.Tpo $(DEPDIR)/libscicore_la-sci_what.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='sci_gateway/c/sci_what.c' object='libscicore_la-sci_what.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) $(AM_CPPFLAGS) $(CPPFLAGS) $(libscicore_la_CFLAGS) $(CFLAGS) -c -o libscicore_la-sci_what.lo `test -f 'sci_gateway/c/sci_what.c' || echo '$(srcdir)/'`sci_gateway/c/sci_what.c
libscicore_la-sci_predef.lo: sci_gateway/c/sci_predef.c
@am__fastdepCC_TRUE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libscicore_la_CFLAGS) $(CFLAGS) -MT libscicore_la-sci_predef.lo -MD -MP -MF $(DEPDIR)/libscicore_la-sci_predef.Tpo -c -o libscicore_la-sci_predef.lo `test -f 'sci_gateway/c/sci_predef.c' || echo '$(srcdir)/'`sci_gateway/c/sci_predef.c
@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/libscicore_la-sci_predef.Tpo $(DEPDIR)/libscicore_la-sci_predef.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='sci_gateway/c/sci_predef.c' object='libscicore_la-sci_predef.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) $(AM_CPPFLAGS) $(CPPFLAGS) $(libscicore_la_CFLAGS) $(CFLAGS) -c -o libscicore_la-sci_predef.lo `test -f 'sci_gateway/c/sci_predef.c' || echo '$(srcdir)/'`sci_gateway/c/sci_predef.c
libscicore_la-sci_clearglobal.lo: sci_gateway/c/sci_clearglobal.c
@am__fastdepCC_TRUE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libscicore_la_CFLAGS) $(CFLAGS) -MT libscicore_la-sci_clearglobal.lo -MD -MP -MF $(DEPDIR)/libscicore_la-sci_clearglobal.Tpo -c -o libscicore_la-sci_clearglobal.lo `test -f 'sci_gateway/c/sci_clearglobal.c' || echo '$(srcdir)/'`sci_gateway/c/sci_clearglobal.c
@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/libscicore_la-sci_clearglobal.Tpo $(DEPDIR)/libscicore_la-sci_clearglobal.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='sci_gateway/c/sci_clearglobal.c' object='libscicore_la-sci_clearglobal.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) $(AM_CPPFLAGS) $(CPPFLAGS) $(libscicore_la_CFLAGS) $(CFLAGS) -c -o libscicore_la-sci_clearglobal.lo `test -f 'sci_gateway/c/sci_clearglobal.c' || echo '$(srcdir)/'`sci_gateway/c/sci_clearglobal.c
libscicore_la-sci_arg.lo: sci_gateway/c/sci_arg.c
@am__fastdepCC_TRUE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libscicore_la_CFLAGS) $(CFLAGS) -MT libscicore_la-sci_arg.lo -MD -MP -MF $(DEPDIR)/libscicore_la-sci_arg.Tpo -c -o libscicore_la-sci_arg.lo `test -f 'sci_gateway/c/sci_arg.c' || echo '$(srcdir)/'`sci_gateway/c/sci_arg.c
@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/libscicore_la-sci_arg.Tpo $(DEPDIR)/libscicore_la-sci_arg.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='sci_gateway/c/sci_arg.c' object='libscicore_la-sci_arg.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) $(AM_CPPFLAGS) $(CPPFLAGS) $(libscicore_la_CFLAGS) $(CFLAGS) -c -o libscicore_la-sci_arg.lo `test -f 'sci_gateway/c/sci_arg.c' || echo '$(srcdir)/'`sci_gateway/c/sci_arg.c
libscicore_la-sci_type.lo: sci_gateway/c/sci_type.c
@am__fastdepCC_TRUE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libscicore_la_CFLAGS) $(CFLAGS) -MT libscicore_la-sci_type.lo -MD -MP -MF $(DEPDIR)/libscicore_la-sci_type.Tpo -c -o libscicore_la-sci_type.lo `test -f 'sci_gateway/c/sci_type.c' || echo '$(srcdir)/'`sci_gateway/c/sci_type.c
@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/libscicore_la-sci_type.Tpo $(DEPDIR)/libscicore_la-sci_type.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='sci_gateway/c/sci_type.c' object='libscicore_la-sci_type.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) $(AM_CPPFLAGS) $(CPPFLAGS) $(libscicore_la_CFLAGS) $(CFLAGS) -c -o libscicore_la-sci_type.lo `test -f 'sci_gateway/c/sci_type.c' || echo '$(srcdir)/'`sci_gateway/c/sci_type.c
libscicore_la-sci_typename.lo: sci_gateway/c/sci_typename.c
@am__fastdepCC_TRUE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libscicore_la_CFLAGS) $(CFLAGS) -MT libscicore_la-sci_typename.lo -MD -MP -MF $(DEPDIR)/libscicore_la-sci_typename.Tpo -c -o libscicore_la-sci_typename.lo `test -f 'sci_gateway/c/sci_typename.c' || echo '$(srcdir)/'`sci_gateway/c/sci_typename.c
@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/libscicore_la-sci_typename.Tpo $(DEPDIR)/libscicore_la-sci_typename.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='sci_gateway/c/sci_typename.c' object='libscicore_la-sci_typename.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) $(AM_CPPFLAGS) $(CPPFLAGS) $(libscicore_la_CFLAGS) $(CFLAGS) -c -o libscicore_la-sci_typename.lo `test -f 'sci_gateway/c/sci_typename.c' || echo '$(srcdir)/'`sci_gateway/c/sci_typename.c
libscicore_la-sci_mode.lo: sci_gateway/c/sci_mode.c
@am__fastdepCC_TRUE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libscicore_la_CFLAGS) $(CFLAGS) -MT libscicore_la-sci_mode.lo -MD -MP -MF $(DEPDIR)/libscicore_la-sci_mode.Tpo -c -o libscicore_la-sci_mode.lo `test -f 'sci_gateway/c/sci_mode.c' || echo '$(srcdir)/'`sci_gateway/c/sci_mode.c
@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/libscicore_la-sci_mode.Tpo $(DEPDIR)/libscicore_la-sci_mode.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='sci_gateway/c/sci_mode.c' object='libscicore_la-sci_mode.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) $(AM_CPPFLAGS) $(CPPFLAGS) $(libscicore_la_CFLAGS) $(CFLAGS) -c -o libscicore_la-sci_mode.lo `test -f 'sci_gateway/c/sci_mode.c' || echo '$(srcdir)/'`sci_gateway/c/sci_mode.c
libscicore_la-sci_macr2tree.lo: sci_gateway/c/sci_macr2tree.c
@am__fastdepCC_TRUE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libscicore_la_CFLAGS) $(CFLAGS) -MT libscicore_la-sci_macr2tree.lo -MD -MP -MF $(DEPDIR)/libscicore_la-sci_macr2tree.Tpo -c -o libscicore_la-sci_macr2tree.lo `test -f 'sci_gateway/c/sci_macr2tree.c' || echo '$(srcdir)/'`sci_gateway/c/sci_macr2tree.c
@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/libscicore_la-sci_macr2tree.Tpo $(DEPDIR)/libscicore_la-sci_macr2tree.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='sci_gateway/c/sci_macr2tree.c' object='libscicore_la-sci_macr2tree.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) $(AM_CPPFLAGS) $(CPPFLAGS) $(libscicore_la_CFLAGS) $(CFLAGS) -c -o libscicore_la-sci_macr2tree.lo `test -f 'sci_gateway/c/sci_macr2tree.c' || echo '$(srcdir)/'`sci_gateway/c/sci_macr2tree.c
libscicore_la-sci_iserror.lo: sci_gateway/c/sci_iserror.c
@am__fastdepCC_TRUE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libscicore_la_CFLAGS) $(CFLAGS) -MT libscicore_la-sci_iserror.lo -MD -MP -MF $(DEPDIR)/libscicore_la-sci_iserror.Tpo -c -o libscicore_la-sci_iserror.lo `test -f 'sci_gateway/c/sci_iserror.c' || echo '$(srcdir)/'`sci_gateway/c/sci_iserror.c
@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/libscicore_la-sci_iserror.Tpo $(DEPDIR)/libscicore_la-sci_iserror.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='sci_gateway/c/sci_iserror.c' object='libscicore_la-sci_iserror.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) $(AM_CPPFLAGS) $(CPPFLAGS) $(libscicore_la_CFLAGS) $(CFLAGS) -c -o libscicore_la-sci_iserror.lo `test -f 'sci_gateway/c/sci_iserror.c' || echo '$(srcdir)/'`sci_gateway/c/sci_iserror.c
libscicore_la-sci_getversion.lo: sci_gateway/c/sci_getversion.c
@am__fastdepCC_TRUE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libscicore_la_CFLAGS) $(CFLAGS) -MT libscicore_la-sci_getversion.lo -MD -MP -MF $(DEPDIR)/libscicore_la-sci_getversion.Tpo -c -o libscicore_la-sci_getversion.lo `test -f 'sci_gateway/c/sci_getversion.c' || echo '$(srcdir)/'`sci_gateway/c/sci_getversion.c
@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/libscicore_la-sci_getversion.Tpo $(DEPDIR)/libscicore_la-sci_getversion.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='sci_gateway/c/sci_getversion.c' object='libscicore_la-sci_getversion.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) $(AM_CPPFLAGS) $(CPPFLAGS) $(libscicore_la_CFLAGS) $(CFLAGS) -c -o libscicore_la-sci_getversion.lo `test -f 'sci_gateway/c/sci_getversion.c' || echo '$(srcdir)/'`sci_gateway/c/sci_getversion.c
libscicore_la-sci_getdebuginfo.lo: sci_gateway/c/sci_getdebuginfo.c
@am__fastdepCC_TRUE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libscicore_la_CFLAGS) $(CFLAGS) -MT libscicore_la-sci_getdebuginfo.lo -MD -MP -MF $(DEPDIR)/libscicore_la-sci_getdebuginfo.Tpo -c -o libscicore_la-sci_getdebuginfo.lo `test -f 'sci_gateway/c/sci_getdebuginfo.c' || echo '$(srcdir)/'`sci_gateway/c/sci_getdebuginfo.c
@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/libscicore_la-sci_getdebuginfo.Tpo $(DEPDIR)/libscicore_la-sci_getdebuginfo.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='sci_gateway/c/sci_getdebuginfo.c' object='libscicore_la-sci_getdebuginfo.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) $(AM_CPPFLAGS) $(CPPFLAGS) $(libscicore_la_CFLAGS) $(CFLAGS) -c -o libscicore_la-sci_getdebuginfo.lo `test -f 'sci_gateway/c/sci_getdebuginfo.c' || echo '$(srcdir)/'`sci_gateway/c/sci_getdebuginfo.c
libscicore_la-sci_debug.lo: sci_gateway/c/sci_debug.c
@am__fastdepCC_TRUE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libscicore_la_CFLAGS) $(CFLAGS) -MT libscicore_la-sci_debug.lo -MD -MP -MF $(DEPDIR)/libscicore_la-sci_debug.Tpo -c -o libscicore_la-sci_debug.lo `test -f 'sci_gateway/c/sci_debug.c' || echo '$(srcdir)/'`sci_gateway/c/sci_debug.c
@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/libscicore_la-sci_debug.Tpo $(DEPDIR)/libscicore_la-sci_debug.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='sci_gateway/c/sci_debug.c' object='libscicore_la-sci_debug.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) $(AM_CPPFLAGS) $(CPPFLAGS) $(libscicore_la_CFLAGS) $(CFLAGS) -c -o libscicore_la-sci_debug.lo `test -f 'sci_gateway/c/sci_debug.c' || echo '$(srcdir)/'`sci_gateway/c/sci_debug.c
libscicore_la-gw_core.lo: sci_gateway/c/gw_core.c
@am__fastdepCC_TRUE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libscicore_la_CFLAGS) $(CFLAGS) -MT libscicore_la-gw_core.lo -MD -MP -MF $(DEPDIR)/libscicore_la-gw_core.Tpo -c -o libscicore_la-gw_core.lo `test -f 'sci_gateway/c/gw_core.c' || echo '$(srcdir)/'`sci_gateway/c/gw_core.c
@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/libscicore_la-gw_core.Tpo $(DEPDIR)/libscicore_la-gw_core.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='sci_gateway/c/gw_core.c' object='libscicore_la-gw_core.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) $(AM_CPPFLAGS) $(CPPFLAGS) $(libscicore_la_CFLAGS) $(CFLAGS) -c -o libscicore_la-gw_core.lo `test -f 'sci_gateway/c/gw_core.c' || echo '$(srcdir)/'`sci_gateway/c/gw_core.c
libscicore_la-gw_user.lo: sci_gateway/c/gw_user.c
@am__fastdepCC_TRUE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libscicore_la_CFLAGS) $(CFLAGS) -MT libscicore_la-gw_user.lo -MD -MP -MF $(DEPDIR)/libscicore_la-gw_user.Tpo -c -o libscicore_la-gw_user.lo `test -f 'sci_gateway/c/gw_user.c' || echo '$(srcdir)/'`sci_gateway/c/gw_user.c
@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/libscicore_la-gw_user.Tpo $(DEPDIR)/libscicore_la-gw_user.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='sci_gateway/c/gw_user.c' object='libscicore_la-gw_user.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) $(AM_CPPFLAGS) $(CPPFLAGS) $(libscicore_la_CFLAGS) $(CFLAGS) -c -o libscicore_la-gw_user.lo `test -f 'sci_gateway/c/gw_user.c' || echo '$(srcdir)/'`sci_gateway/c/gw_user.c
libscicore_la-gw_user2.lo: sci_gateway/c/gw_user2.c
@am__fastdepCC_TRUE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libscicore_la_CFLAGS) $(CFLAGS) -MT libscicore_la-gw_user2.lo -MD -MP -MF $(DEPDIR)/libscicore_la-gw_user2.Tpo -c -o libscicore_la-gw_user2.lo `test -f 'sci_gateway/c/gw_user2.c' || echo '$(srcdir)/'`sci_gateway/c/gw_user2.c
@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/libscicore_la-gw_user2.Tpo $(DEPDIR)/libscicore_la-gw_user2.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='sci_gateway/c/gw_user2.c' object='libscicore_la-gw_user2.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) $(AM_CPPFLAGS) $(CPPFLAGS) $(libscicore_la_CFLAGS) $(CFLAGS) -c -o libscicore_la-gw_user2.lo `test -f 'sci_gateway/c/gw_user2.c' || echo '$(srcdir)/'`sci_gateway/c/gw_user2.c
libscicore_la-sci_error.lo: sci_gateway/c/sci_error.c
@am__fastdepCC_TRUE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libscicore_la_CFLAGS) $(CFLAGS) -MT libscicore_la-sci_error.lo -MD -MP -MF $(DEPDIR)/libscicore_la-sci_error.Tpo -c -o libscicore_la-sci_error.lo `test -f 'sci_gateway/c/sci_error.c' || echo '$(srcdir)/'`sci_gateway/c/sci_error.c
@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/libscicore_la-sci_error.Tpo $(DEPDIR)/libscicore_la-sci_error.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='sci_gateway/c/sci_error.c' object='libscicore_la-sci_error.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) $(AM_CPPFLAGS) $(CPPFLAGS) $(libscicore_la_CFLAGS) $(CFLAGS) -c -o libscicore_la-sci_error.lo `test -f 'sci_gateway/c/sci_error.c' || echo '$(srcdir)/'`sci_gateway/c/sci_error.c
libscicore_la-sci_sciargs.lo: sci_gateway/c/sci_sciargs.c
@am__fastdepCC_TRUE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libscicore_la_CFLAGS) $(CFLAGS) -MT libscicore_la-sci_sciargs.lo -MD -MP -MF $(DEPDIR)/libscicore_la-sci_sciargs.Tpo -c -o libscicore_la-sci_sciargs.lo `test -f 'sci_gateway/c/sci_sciargs.c' || echo '$(srcdir)/'`sci_gateway/c/sci_sciargs.c
@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/libscicore_la-sci_sciargs.Tpo $(DEPDIR)/libscicore_la-sci_sciargs.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='sci_gateway/c/sci_sciargs.c' object='libscicore_la-sci_sciargs.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) $(AM_CPPFLAGS) $(CPPFLAGS) $(libscicore_la_CFLAGS) $(CFLAGS) -c -o libscicore_la-sci_sciargs.lo `test -f 'sci_gateway/c/sci_sciargs.c' || echo '$(srcdir)/'`sci_gateway/c/sci_sciargs.c
libscicore_la-sci_with_module.lo: sci_gateway/c/sci_with_module.c
@am__fastdepCC_TRUE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libscicore_la_CFLAGS) $(CFLAGS) -MT libscicore_la-sci_with_module.lo -MD -MP -MF $(DEPDIR)/libscicore_la-sci_with_module.Tpo -c -o libscicore_la-sci_with_module.lo `test -f 'sci_gateway/c/sci_with_module.c' || echo '$(srcdir)/'`sci_gateway/c/sci_with_module.c
@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/libscicore_la-sci_with_module.Tpo $(DEPDIR)/libscicore_la-sci_with_module.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='sci_gateway/c/sci_with_module.c' object='libscicore_la-sci_with_module.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) $(AM_CPPFLAGS) $(CPPFLAGS) $(libscicore_la_CFLAGS) $(CFLAGS) -c -o libscicore_la-sci_with_module.lo `test -f 'sci_gateway/c/sci_with_module.c' || echo '$(srcdir)/'`sci_gateway/c/sci_with_module.c
libscicore_la-sci_islittleendian.lo: sci_gateway/c/sci_islittleendian.c
@am__fastdepCC_TRUE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libscicore_la_CFLAGS) $(CFLAGS) -MT libscicore_la-sci_islittleendian.lo -MD -MP -MF $(DEPDIR)/libscicore_la-sci_islittleendian.Tpo -c -o libscicore_la-sci_islittleendian.lo `test -f 'sci_gateway/c/sci_islittleendian.c' || echo '$(srcdir)/'`sci_gateway/c/sci_islittleendian.c
@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/libscicore_la-sci_islittleendian.Tpo $(DEPDIR)/libscicore_la-sci_islittleendian.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='sci_gateway/c/sci_islittleendian.c' object='libscicore_la-sci_islittleendian.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) $(AM_CPPFLAGS) $(CPPFLAGS) $(libscicore_la_CFLAGS) $(CFLAGS) -c -o libscicore_la-sci_islittleendian.lo `test -f 'sci_gateway/c/sci_islittleendian.c' || echo '$(srcdir)/'`sci_gateway/c/sci_islittleendian.c
libscicore_la-sci_getscilabmode.lo: sci_gateway/c/sci_getscilabmode.c
@am__fastdepCC_TRUE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libscicore_la_CFLAGS) $(CFLAGS) -MT libscicore_la-sci_getscilabmode.lo -MD -MP -MF $(DEPDIR)/libscicore_la-sci_getscilabmode.Tpo -c -o libscicore_la-sci_getscilabmode.lo `test -f 'sci_gateway/c/sci_getscilabmode.c' || echo '$(srcdir)/'`sci_gateway/c/sci_getscilabmode.c
@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/libscicore_la-sci_getscilabmode.Tpo $(DEPDIR)/libscicore_la-sci_getscilabmode.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='sci_gateway/c/sci_getscilabmode.c' object='libscicore_la-sci_getscilabmode.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) $(AM_CPPFLAGS) $(CPPFLAGS) $(libscicore_la_CFLAGS) $(CFLAGS) -c -o libscicore_la-sci_getscilabmode.lo `test -f 'sci_gateway/c/sci_getscilabmode.c' || echo '$(srcdir)/'`sci_gateway/c/sci_getscilabmode.c
libscicore_la-sci_getvariablesonstack.lo: sci_gateway/c/sci_getvariablesonstack.c
@am__fastdepCC_TRUE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libscicore_la_CFLAGS) $(CFLAGS) -MT libscicore_la-sci_getvariablesonstack.lo -MD -MP -MF $(DEPDIR)/libscicore_la-sci_getvariablesonstack.Tpo -c -o libscicore_la-sci_getvariablesonstack.lo `test -f 'sci_gateway/c/sci_getvariablesonstack.c' || echo '$(srcdir)/'`sci_gateway/c/sci_getvariablesonstack.c
@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/libscicore_la-sci_getvariablesonstack.Tpo $(DEPDIR)/libscicore_la-sci_getvariablesonstack.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='sci_gateway/c/sci_getvariablesonstack.c' object='libscicore_la-sci_getvariablesonstack.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) $(AM_CPPFLAGS) $(CPPFLAGS) $(libscicore_la_CFLAGS) $(CFLAGS) -c -o libscicore_la-sci_getvariablesonstack.lo `test -f 'sci_gateway/c/sci_getvariablesonstack.c' || echo '$(srcdir)/'`sci_gateway/c/sci_getvariablesonstack.c
libscicore_la-sci_readgateway.lo: sci_gateway/c/sci_readgateway.c
@am__fastdepCC_TRUE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libscicore_la_CFLAGS) $(CFLAGS) -MT libscicore_la-sci_readgateway.lo -MD -MP -MF $(DEPDIR)/libscicore_la-sci_readgateway.Tpo -c -o libscicore_la-sci_readgateway.lo `test -f 'sci_gateway/c/sci_readgateway.c' || echo '$(srcdir)/'`sci_gateway/c/sci_readgateway.c
@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/libscicore_la-sci_readgateway.Tpo $(DEPDIR)/libscicore_la-sci_readgateway.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='sci_gateway/c/sci_readgateway.c' object='libscicore_la-sci_readgateway.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) $(AM_CPPFLAGS) $(CPPFLAGS) $(libscicore_la_CFLAGS) $(CFLAGS) -c -o libscicore_la-sci_readgateway.lo `test -f 'sci_gateway/c/sci_readgateway.c' || echo '$(srcdir)/'`sci_gateway/c/sci_readgateway.c
libscicore_la-sci_comp.lo: sci_gateway/c/sci_comp.c
@am__fastdepCC_TRUE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libscicore_la_CFLAGS) $(CFLAGS) -MT libscicore_la-sci_comp.lo -MD -MP -MF $(DEPDIR)/libscicore_la-sci_comp.Tpo -c -o libscicore_la-sci_comp.lo `test -f 'sci_gateway/c/sci_comp.c' || echo '$(srcdir)/'`sci_gateway/c/sci_comp.c
@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/libscicore_la-sci_comp.Tpo $(DEPDIR)/libscicore_la-sci_comp.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='sci_gateway/c/sci_comp.c' object='libscicore_la-sci_comp.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) $(AM_CPPFLAGS) $(CPPFLAGS) $(libscicore_la_CFLAGS) $(CFLAGS) -c -o libscicore_la-sci_comp.lo `test -f 'sci_gateway/c/sci_comp.c' || echo '$(srcdir)/'`sci_gateway/c/sci_comp.c
libscicore_la-sci_exit.lo: sci_gateway/c/sci_exit.c
@am__fastdepCC_TRUE@ $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(libscicore_la_CFLAGS) $(CFLAGS) -MT libscicore_la-sci_exit.lo -MD -MP -MF $(DEPDIR)/libscicore_la-sci_exit.Tpo -c -o libscicore_la-sci_exit.lo `test -f 'sci_gateway/c/sci_exit.c' || echo '$(srcdir)/'`sci_gateway/c/sci_exit.c
@am__fastdepCC_TRUE@ $(am__mv) $(DEPDIR)/libscicore_la-sci_exit.Tpo $(DEPDIR)/libscicore_la-sci_exit.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='sci_gateway/c/sci_exit.c' object='libscicore_la-sci_exit.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) $(AM_CPPFLAGS) $(CPPFLAGS) $(libscicore_la_CFLAGS) $(CFLAGS) -c -o libscicore_la-sci_exit.lo `test -f 'sci_gateway/c/sci_exit.c' || echo '$(srcdir)/'`sci_gateway/c/sci_exit.c
.f.o:
$(F77COMPILE) -c -o $@ $<
.f.obj:
$(F77COMPILE) -c -o $@ `$(CYGPATH_W) '$<'`
.f.lo:
$(LTF77COMPILE) -c -o $@ $<
clunit.lo: src/fortran/clunit.f
$(LIBTOOL) --tag=F77 $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(F77) $(AM_FFLAGS) $(FFLAGS) -c -o clunit.lo `test -f 'src/fortran/clunit.f' || echo '$(srcdir)/'`src/fortran/clunit.f
getlin.lo: src/fortran/getlin.f
$(LIBTOOL) --tag=F77 $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(F77) $(AM_FFLAGS) $(FFLAGS) -c -o getlin.lo `test -f 'src/fortran/getlin.f' || echo '$(srcdir)/'`src/fortran/getlin.f
allowptr.lo: src/fortran/allowptr.f
$(LIBTOOL) --tag=F77 $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(F77) $(AM_FFLAGS) $(FFLAGS) -c -o allowptr.lo `test -f 'src/fortran/allowptr.f' || echo '$(srcdir)/'`src/fortran/allowptr.f
isany.lo: src/fortran/isany.f
$(LIBTOOL) --tag=F77 $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(F77) $(AM_FFLAGS) $(FFLAGS) -c -o isany.lo `test -f 'src/fortran/isany.f' || echo '$(srcdir)/'`src/fortran/isany.f
hmcreate.lo: src/fortran/hmcreate.f
$(LIBTOOL) --tag=F77 $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(F77) $(AM_FFLAGS) $(FFLAGS) -c -o hmcreate.lo `test -f 'src/fortran/hmcreate.f' || echo '$(srcdir)/'`src/fortran/hmcreate.f
nextj.lo: src/fortran/nextj.f
$(LIBTOOL) --tag=F77 $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(F77) $(AM_FFLAGS) $(FFLAGS) -c -o nextj.lo `test -f 'src/fortran/nextj.f' || echo '$(srcdir)/'`src/fortran/nextj.f
setgetmode.lo: src/fortran/setgetmode.f
$(LIBTOOL) --tag=F77 $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(F77) $(AM_FFLAGS) $(FFLAGS) -c -o setgetmode.lo `test -f 'src/fortran/setgetmode.f' || echo '$(srcdir)/'`src/fortran/setgetmode.f
showstack.lo: src/fortran/showstack.f
$(LIBTOOL) --tag=F77 $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(F77) $(AM_FFLAGS) $(FFLAGS) -c -o showstack.lo `test -f 'src/fortran/showstack.f' || echo '$(srcdir)/'`src/fortran/showstack.f
misops.lo: src/fortran/misops.f
$(LIBTOOL) --tag=F77 $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(F77) $(AM_FFLAGS) $(FFLAGS) -c -o misops.lo `test -f 'src/fortran/misops.f' || echo '$(srcdir)/'`src/fortran/misops.f
iseye.lo: src/fortran/iseye.f
$(LIBTOOL) --tag=F77 $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(F77) $(AM_FFLAGS) $(FFLAGS) -c -o iseye.lo `test -f 'src/fortran/iseye.f' || echo '$(srcdir)/'`src/fortran/iseye.f
chkvar.lo: src/fortran/chkvar.f
$(LIBTOOL) --tag=F77 $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(F77) $(AM_FFLAGS) $(FFLAGS) -c -o chkvar.lo `test -f 'src/fortran/chkvar.f' || echo '$(srcdir)/'`src/fortran/chkvar.f
setippty.lo: src/fortran/setippty.f
$(LIBTOOL) --tag=F77 $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(F77) $(AM_FFLAGS) $(FFLAGS) -c -o setippty.lo `test -f 'src/fortran/setippty.f' || echo '$(srcdir)/'`src/fortran/setippty.f
compil.lo: src/fortran/compil.f
$(LIBTOOL) --tag=F77 $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(F77) $(AM_FFLAGS) $(FFLAGS) -c -o compil.lo `test -f 'src/fortran/compil.f' || echo '$(srcdir)/'`src/fortran/compil.f
funnam.lo: src/fortran/funnam.f
$(LIBTOOL) --tag=F77 $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(F77) $(AM_FFLAGS) $(FFLAGS) -c -o funnam.lo `test -f 'src/fortran/funnam.f' || echo '$(srcdir)/'`src/fortran/funnam.f
isnum.lo: src/fortran/isnum.f
$(LIBTOOL) --tag=F77 $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(F77) $(AM_FFLAGS) $(FFLAGS) -c -o isnum.lo `test -f 'src/fortran/isnum.f' || echo '$(srcdir)/'`src/fortran/isnum.f
cmdstr.lo: src/fortran/cmdstr.f
$(LIBTOOL) --tag=F77 $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(F77) $(AM_FFLAGS) $(FFLAGS) -c -o cmdstr.lo `test -f 'src/fortran/cmdstr.f' || echo '$(srcdir)/'`src/fortran/cmdstr.f
logops.lo: src/fortran/logops.f
$(LIBTOOL) --tag=F77 $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(F77) $(AM_FFLAGS) $(FFLAGS) -c -o logops.lo `test -f 'src/fortran/logops.f' || echo '$(srcdir)/'`src/fortran/logops.f
atome.lo: src/fortran/atome.f
$(LIBTOOL) --tag=F77 $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(F77) $(AM_FFLAGS) $(FFLAGS) -c -o atome.lo `test -f 'src/fortran/atome.f' || echo '$(srcdir)/'`src/fortran/atome.f
hndlops.lo: src/fortran/hndlops.f
$(LIBTOOL) --tag=F77 $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(F77) $(AM_FFLAGS) $(FFLAGS) -c -o hndlops.lo `test -f 'src/fortran/hndlops.f' || echo '$(srcdir)/'`src/fortran/hndlops.f
cmplxt.lo: src/fortran/cmplxt.f
$(LIBTOOL) --tag=F77 $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(F77) $(AM_FFLAGS) $(FFLAGS) -c -o cmplxt.lo `test -f 'src/fortran/cmplxt.f' || echo '$(srcdir)/'`src/fortran/cmplxt.f
skpins.lo: src/fortran/skpins.f
$(LIBTOOL) --tag=F77 $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(F77) $(AM_FFLAGS) $(FFLAGS) -c -o skpins.lo `test -f 'src/fortran/skpins.f' || echo '$(srcdir)/'`src/fortran/skpins.f
folhp.lo: src/fortran/folhp.f
$(LIBTOOL) --tag=F77 $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(F77) $(AM_FFLAGS) $(FFLAGS) -c -o folhp.lo `test -f 'src/fortran/folhp.f' || echo '$(srcdir)/'`src/fortran/folhp.f
cvname.lo: src/fortran/cvname.f
$(LIBTOOL) --tag=F77 $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(F77) $(AM_FFLAGS) $(FFLAGS) -c -o cvname.lo `test -f 'src/fortran/cvname.f' || echo '$(srcdir)/'`src/fortran/cvname.f
funs.lo: src/fortran/funs.f
$(LIBTOOL) --tag=F77 $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(F77) $(AM_FFLAGS) $(FFLAGS) -c -o funs.lo `test -f 'src/fortran/funs.f' || echo '$(srcdir)/'`src/fortran/funs.f
fact.lo: src/fortran/fact.f
$(LIBTOOL) --tag=F77 $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(F77) $(AM_FFLAGS) $(FFLAGS) -c -o fact.lo `test -f 'src/fortran/fact.f' || echo '$(srcdir)/'`src/fortran/fact.f
inibrk.lo: src/fortran/inibrk.f
$(LIBTOOL) --tag=F77 $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(F77) $(AM_FFLAGS) $(FFLAGS) -c -o inibrk.lo `test -f 'src/fortran/inibrk.f' || echo '$(srcdir)/'`src/fortran/inibrk.f
typ2cod.lo: src/fortran/typ2cod.f
$(LIBTOOL) --tag=F77 $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(F77) $(AM_FFLAGS) $(FFLAGS) -c -o typ2cod.lo `test -f 'src/fortran/typ2cod.f' || echo '$(srcdir)/'`src/fortran/typ2cod.f
prompt.lo: src/fortran/prompt.f
$(LIBTOOL) --tag=F77 $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(F77) $(AM_FFLAGS) $(FFLAGS) -c -o prompt.lo `test -f 'src/fortran/prompt.f' || echo '$(srcdir)/'`src/fortran/prompt.f
intstr.lo: src/fortran/intstr.f
$(LIBTOOL) --tag=F77 $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(F77) $(AM_FFLAGS) $(FFLAGS) -c -o intstr.lo `test -f 'src/fortran/intstr.f' || echo '$(srcdir)/'`src/fortran/intstr.f
createref.lo: src/fortran/createref.f
$(LIBTOOL) --tag=F77 $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(F77) $(AM_FFLAGS) $(FFLAGS) -c -o createref.lo `test -f 'src/fortran/createref.f' || echo '$(srcdir)/'`src/fortran/createref.f
btof.lo: src/fortran/btof.f
$(LIBTOOL) --tag=F77 $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(F77) $(AM_FFLAGS) $(FFLAGS) -c -o btof.lo `test -f 'src/fortran/btof.f' || echo '$(srcdir)/'`src/fortran/btof.f
matzs.lo: src/fortran/matzs.f
$(LIBTOOL) --tag=F77 $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(F77) $(AM_FFLAGS) $(FFLAGS) -c -o matzs.lo `test -f 'src/fortran/matzs.f' || echo '$(srcdir)/'`src/fortran/matzs.f
getnum.lo: src/fortran/getnum.f
$(LIBTOOL) --tag=F77 $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(F77) $(AM_FFLAGS) $(FFLAGS) -c -o getnum.lo `test -f 'src/fortran/getnum.f' || echo '$(srcdir)/'`src/fortran/getnum.f
btofm.lo: src/fortran/btofm.f
$(LIBTOOL) --tag=F77 $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(F77) $(AM_FFLAGS) $(FFLAGS) -c -o btofm.lo `test -f 'src/fortran/btofm.f' || echo '$(srcdir)/'`src/fortran/btofm.f
getsym.lo: src/fortran/getsym.f
$(LIBTOOL) --tag=F77 $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(F77) $(AM_FFLAGS) $(FFLAGS) -c -o getsym.lo `test -f 'src/fortran/getsym.f' || echo '$(srcdir)/'`src/fortran/getsym.f
findequal.lo: src/fortran/findequal.f
$(LIBTOOL) --tag=F77 $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(F77) $(AM_FFLAGS) $(FFLAGS) -c -o findequal.lo `test -f 'src/fortran/findequal.f' || echo '$(srcdir)/'`src/fortran/findequal.f
stackg.lo: src/fortran/stackg.f
$(LIBTOOL) --tag=F77 $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(F77) $(AM_FFLAGS) $(FFLAGS) -c -o stackg.lo `test -f 'src/fortran/stackg.f' || echo '$(srcdir)/'`src/fortran/stackg.f
find.lo: src/fortran/find.f
$(LIBTOOL) --tag=F77 $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(F77) $(AM_FFLAGS) $(FFLAGS) -c -o find.lo `test -f 'src/fortran/find.f' || echo '$(srcdir)/'`src/fortran/find.f
israt.lo: src/fortran/israt.f
$(LIBTOOL) --tag=F77 $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(F77) $(AM_FFLAGS) $(FFLAGS) -c -o israt.lo `test -f 'src/fortran/israt.f' || echo '$(srcdir)/'`src/fortran/israt.f
setlnb.lo: src/fortran/setlnb.f
$(LIBTOOL) --tag=F77 $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(F77) $(AM_FFLAGS) $(FFLAGS) -c -o setlnb.lo `test -f 'src/fortran/setlnb.f' || echo '$(srcdir)/'`src/fortran/setlnb.f
mrknmd.lo: src/fortran/mrknmd.f
$(LIBTOOL) --tag=F77 $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(F77) $(AM_FFLAGS) $(FFLAGS) -c -o mrknmd.lo `test -f 'src/fortran/mrknmd.f' || echo '$(srcdir)/'`src/fortran/mrknmd.f
stackgl.lo: src/fortran/stackgl.f
$(LIBTOOL) --tag=F77 $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(F77) $(AM_FFLAGS) $(FFLAGS) -c -o stackgl.lo `test -f 'src/fortran/stackgl.f' || echo '$(srcdir)/'`src/fortran/stackgl.f
allops.lo: src/fortran/allops.f
$(LIBTOOL) --tag=F77 $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(F77) $(AM_FFLAGS) $(FFLAGS) -c -o allops.lo `test -f 'src/fortran/allops.f' || echo '$(srcdir)/'`src/fortran/allops.f
mname.lo: src/fortran/mname.f
$(LIBTOOL) --tag=F77 $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(F77) $(AM_FFLAGS) $(FFLAGS) -c -o mname.lo `test -f 'src/fortran/mname.f' || echo '$(srcdir)/'`src/fortran/mname.f
command.lo: src/fortran/command.f
$(LIBTOOL) --tag=F77 $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(F77) $(AM_FFLAGS) $(FFLAGS) -c -o command.lo `test -f 'src/fortran/command.f' || echo '$(srcdir)/'`src/fortran/command.f
ref2val.lo: src/fortran/ref2val.f
$(LIBTOOL) --tag=F77 $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(F77) $(AM_FFLAGS) $(FFLAGS) -c -o ref2val.lo `test -f 'src/fortran/ref2val.f' || echo '$(srcdir)/'`src/fortran/ref2val.f
namstr.lo: src/fortran/namstr.f
$(LIBTOOL) --tag=F77 $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(F77) $(AM_FFLAGS) $(FFLAGS) -c -o namstr.lo `test -f 'src/fortran/namstr.f' || echo '$(srcdir)/'`src/fortran/namstr.f
stack.lo: src/fortran/stack.f
$(LIBTOOL) --tag=F77 $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(F77) $(AM_FFLAGS) $(FFLAGS) -c -o stack.lo `test -f 'src/fortran/stack.f' || echo '$(srcdir)/'`src/fortran/stack.f
isbrk.lo: src/fortran/isbrk.f
$(LIBTOOL) --tag=F77 $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(F77) $(AM_FFLAGS) $(FFLAGS) -c -o isbrk.lo `test -f 'src/fortran/isbrk.f' || echo '$(srcdir)/'`src/fortran/isbrk.f
majmin.lo: src/fortran/majmin.f
$(LIBTOOL) --tag=F77 $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(F77) $(AM_FFLAGS) $(FFLAGS) -c -o majmin.lo `test -f 'src/fortran/majmin.f' || echo '$(srcdir)/'`src/fortran/majmin.f
xerbla.lo: src/fortran/xerbla.f
$(LIBTOOL) --tag=F77 $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(F77) $(AM_FFLAGS) $(FFLAGS) -c -o xerbla.lo `test -f 'src/fortran/xerbla.f' || echo '$(srcdir)/'`src/fortran/xerbla.f
dtosci.lo: src/fortran/dtosci.f
$(LIBTOOL) --tag=F77 $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(F77) $(AM_FFLAGS) $(FFLAGS) -c -o dtosci.lo `test -f 'src/fortran/dtosci.f' || echo '$(srcdir)/'`src/fortran/dtosci.f
bexec.lo: src/fortran/bexec.f
$(LIBTOOL) --tag=F77 $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(F77) $(AM_FFLAGS) $(FFLAGS) -c -o bexec.lo `test -f 'src/fortran/bexec.f' || echo '$(srcdir)/'`src/fortran/bexec.f
varfunptr.lo: src/fortran/varfunptr.f
$(LIBTOOL) --tag=F77 $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(F77) $(AM_FFLAGS) $(FFLAGS) -c -o varfunptr.lo `test -f 'src/fortran/varfunptr.f' || echo '$(srcdir)/'`src/fortran/varfunptr.f
getfun.lo: src/fortran/getfun.f
$(LIBTOOL) --tag=F77 $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(F77) $(AM_FFLAGS) $(FFLAGS) -c -o getfun.lo `test -f 'src/fortran/getfun.f' || echo '$(srcdir)/'`src/fortran/getfun.f
savlod.lo: src/fortran/savlod.f
$(LIBTOOL) --tag=F77 $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(F77) $(AM_FFLAGS) $(FFLAGS) -c -o savlod.lo `test -f 'src/fortran/savlod.f' || echo '$(srcdir)/'`src/fortran/savlod.f
error.lo: src/fortran/error.f
$(LIBTOOL) --tag=F77 $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(F77) $(AM_FFLAGS) $(FFLAGS) -c -o error.lo `test -f 'src/fortran/error.f' || echo '$(srcdir)/'`src/fortran/error.f
cvdm.lo: src/fortran/cvdm.f
$(LIBTOOL) --tag=F77 $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(F77) $(AM_FFLAGS) $(FFLAGS) -c -o cvdm.lo `test -f 'src/fortran/cvdm.f' || echo '$(srcdir)/'`src/fortran/cvdm.f
tradsl.lo: src/fortran/tradsl.f
$(LIBTOOL) --tag=F77 $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(F77) $(AM_FFLAGS) $(FFLAGS) -c -o tradsl.lo `test -f 'src/fortran/tradsl.f' || echo '$(srcdir)/'`src/fortran/tradsl.f
mkindx.lo: src/fortran/mkindx.f
$(LIBTOOL) --tag=F77 $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(F77) $(AM_FFLAGS) $(FFLAGS) -c -o mkindx.lo `test -f 'src/fortran/mkindx.f' || echo '$(srcdir)/'`src/fortran/mkindx.f
whatln.lo: src/fortran/whatln.f
$(LIBTOOL) --tag=F77 $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(F77) $(AM_FFLAGS) $(FFLAGS) -c -o whatln.lo `test -f 'src/fortran/whatln.f' || echo '$(srcdir)/'`src/fortran/whatln.f
errmgr.lo: src/fortran/errmgr.f
$(LIBTOOL) --tag=F77 $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(F77) $(AM_FFLAGS) $(FFLAGS) -c -o errmgr.lo `test -f 'src/fortran/errmgr.f' || echo '$(srcdir)/'`src/fortran/errmgr.f
defmat.lo: src/fortran/defmat.f
$(LIBTOOL) --tag=F77 $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(F77) $(AM_FFLAGS) $(FFLAGS) -c -o defmat.lo `test -f 'src/fortran/defmat.f' || echo '$(srcdir)/'`src/fortran/defmat.f
mklist.lo: src/fortran/mklist.f
$(LIBTOOL) --tag=F77 $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(F77) $(AM_FFLAGS) $(FFLAGS) -c -o mklist.lo `test -f 'src/fortran/mklist.f' || echo '$(srcdir)/'`src/fortran/mklist.f
sigbas.lo: src/fortran/sigbas.f
$(LIBTOOL) --tag=F77 $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(F77) $(AM_FFLAGS) $(FFLAGS) -c -o sigbas.lo `test -f 'src/fortran/sigbas.f' || echo '$(srcdir)/'`src/fortran/sigbas.f
indxg.lo: src/fortran/indxg.f
$(LIBTOOL) --tag=F77 $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(F77) $(AM_FFLAGS) $(FFLAGS) -c -o indxg.lo `test -f 'src/fortran/indxg.f' || echo '$(srcdir)/'`src/fortran/indxg.f
matz.lo: src/fortran/matz.f
$(LIBTOOL) --tag=F77 $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(F77) $(AM_FFLAGS) $(FFLAGS) -c -o matz.lo `test -f 'src/fortran/matz.f' || echo '$(srcdir)/'`src/fortran/matz.f
istrue.lo: src/fortran/istrue.f
$(LIBTOOL) --tag=F77 $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(F77) $(AM_FFLAGS) $(FFLAGS) -c -o istrue.lo `test -f 'src/fortran/istrue.f' || echo '$(srcdir)/'`src/fortran/istrue.f
inisci.lo: src/fortran/inisci.f
$(LIBTOOL) --tag=F77 $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(F77) $(AM_FFLAGS) $(FFLAGS) -c -o inisci.lo `test -f 'src/fortran/inisci.f' || echo '$(srcdir)/'`src/fortran/inisci.f
ptover.lo: src/fortran/ptover.f
$(LIBTOOL) --tag=F77 $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(F77) $(AM_FFLAGS) $(FFLAGS) -c -o ptover.lo `test -f 'src/fortran/ptover.f' || echo '$(srcdir)/'`src/fortran/ptover.f
getfunction.lo: src/fortran/getfunction.f
$(LIBTOOL) --tag=F77 $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(F77) $(AM_FFLAGS) $(FFLAGS) -c -o getfunction.lo `test -f 'src/fortran/getfunction.f' || echo '$(srcdir)/'`src/fortran/getfunction.f
stackp.lo: src/fortran/stackp.f
$(LIBTOOL) --tag=F77 $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(F77) $(AM_FFLAGS) $(FFLAGS) -c -o stackp.lo `test -f 'src/fortran/stackp.f' || echo '$(srcdir)/'`src/fortran/stackp.f
dbasin.lo: src/fortran/dbasin.f
$(LIBTOOL) --tag=F77 $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(F77) $(AM_FFLAGS) $(FFLAGS) -c -o dbasin.lo `test -f 'src/fortran/dbasin.f' || echo '$(srcdir)/'`src/fortran/dbasin.f
macro.lo: src/fortran/macro.f
$(LIBTOOL) --tag=F77 $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(F77) $(AM_FFLAGS) $(FFLAGS) -c -o macro.lo `test -f 'src/fortran/macro.f' || echo '$(srcdir)/'`src/fortran/macro.f
extlarg.lo: src/fortran/extlarg.f
$(LIBTOOL) --tag=F77 $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(F77) $(AM_FFLAGS) $(FFLAGS) -c -o extlarg.lo `test -f 'src/fortran/extlarg.f' || echo '$(srcdir)/'`src/fortran/extlarg.f
getstr.lo: src/fortran/getstr.f
$(LIBTOOL) --tag=F77 $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(F77) $(AM_FFLAGS) $(FFLAGS) -c -o getstr.lo `test -f 'src/fortran/getstr.f' || echo '$(srcdir)/'`src/fortran/getstr.f
cvwm.lo: src/fortran/cvwm.f
$(LIBTOOL) --tag=F77 $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(F77) $(AM_FFLAGS) $(FFLAGS) -c -o cvwm.lo `test -f 'src/fortran/cvwm.f' || echo '$(srcdir)/'`src/fortran/cvwm.f
storeglobal.lo: src/fortran/storeglobal.f
$(LIBTOOL) --tag=F77 $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(F77) $(AM_FFLAGS) $(FFLAGS) -c -o storeglobal.lo `test -f 'src/fortran/storeglobal.f' || echo '$(srcdir)/'`src/fortran/storeglobal.f
lst2vars.lo: src/fortran/lst2vars.f
$(LIBTOOL) --tag=F77 $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(F77) $(AM_FFLAGS) $(FFLAGS) -c -o lst2vars.lo `test -f 'src/fortran/lst2vars.f' || echo '$(srcdir)/'`src/fortran/lst2vars.f
basnms.lo: src/fortran/basnms.f
$(LIBTOOL) --tag=F77 $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(F77) $(AM_FFLAGS) $(FFLAGS) -c -o basnms.lo `test -f 'src/fortran/basnms.f' || echo '$(srcdir)/'`src/fortran/basnms.f
matc.lo: src/fortran/matc.f
$(LIBTOOL) --tag=F77 $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(F77) $(AM_FFLAGS) $(FFLAGS) -c -o matc.lo `test -f 'src/fortran/matc.f' || echo '$(srcdir)/'`src/fortran/matc.f
ptrback.lo: src/fortran/ptrback.f
$(LIBTOOL) --tag=F77 $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(F77) $(AM_FFLAGS) $(FFLAGS) -c -o ptrback.lo `test -f 'src/fortran/ptrback.f' || echo '$(srcdir)/'`src/fortran/ptrback.f
getch.lo: src/fortran/getch.f
$(LIBTOOL) --tag=F77 $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(F77) $(AM_FFLAGS) $(FFLAGS) -c -o getch.lo `test -f 'src/fortran/getch.f' || echo '$(srcdir)/'`src/fortran/getch.f
ftob.lo: src/fortran/ftob.f
$(LIBTOOL) --tag=F77 $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(F77) $(AM_FFLAGS) $(FFLAGS) -c -o ftob.lo `test -f 'src/fortran/ftob.f' || echo '$(srcdir)/'`src/fortran/ftob.f
seteol.lo: src/fortran/seteol.f
$(LIBTOOL) --tag=F77 $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(F77) $(AM_FFLAGS) $(FFLAGS) -c -o seteol.lo `test -f 'src/fortran/seteol.f' || echo '$(srcdir)/'`src/fortran/seteol.f
basin.lo: src/fortran/basin.f
$(LIBTOOL) --tag=F77 $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(F77) $(AM_FFLAGS) $(FFLAGS) -c -o basin.lo `test -f 'src/fortran/basin.f' || echo '$(srcdir)/'`src/fortran/basin.f
clause.lo: src/fortran/clause.f
$(LIBTOOL) --tag=F77 $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(F77) $(AM_FFLAGS) $(FFLAGS) -c -o clause.lo `test -f 'src/fortran/clause.f' || echo '$(srcdir)/'`src/fortran/clause.f
compcl.lo: src/fortran/compcl.f
$(LIBTOOL) --tag=F77 $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(F77) $(AM_FFLAGS) $(FFLAGS) -c -o compcl.lo `test -f 'src/fortran/compcl.f' || echo '$(srcdir)/'`src/fortran/compcl.f
termf.lo: src/fortran/termf.f
$(LIBTOOL) --tag=F77 $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(F77) $(AM_FFLAGS) $(FFLAGS) -c -o termf.lo `test -f 'src/fortran/termf.f' || echo '$(srcdir)/'`src/fortran/termf.f
expsum.lo: src/fortran/expsum.f
$(LIBTOOL) --tag=F77 $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(F77) $(AM_FFLAGS) $(FFLAGS) -c -o expsum.lo `test -f 'src/fortran/expsum.f' || echo '$(srcdir)/'`src/fortran/expsum.f
eqid.lo: src/fortran/eqid.f
$(LIBTOOL) --tag=F77 $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(F77) $(AM_FFLAGS) $(FFLAGS) -c -o eqid.lo `test -f 'src/fortran/eqid.f' || echo '$(srcdir)/'`src/fortran/eqid.f
copyvar.lo: src/fortran/copyvar.f
$(LIBTOOL) --tag=F77 $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(F77) $(AM_FFLAGS) $(FFLAGS) -c -o copyvar.lo `test -f 'src/fortran/copyvar.f' || echo '$(srcdir)/'`src/fortran/copyvar.f
putid.lo: src/fortran/putid.f
$(LIBTOOL) --tag=F77 $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(F77) $(AM_FFLAGS) $(FFLAGS) -c -o putid.lo `test -f 'src/fortran/putid.f' || echo '$(srcdir)/'`src/fortran/putid.f
itosci.lo: src/fortran/itosci.f
$(LIBTOOL) --tag=F77 $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(F77) $(AM_FFLAGS) $(FFLAGS) -c -o itosci.lo `test -f 'src/fortran/itosci.f' || echo '$(srcdir)/'`src/fortran/itosci.f
stackr2d.lo: src/fortran/stackr2d.f
$(LIBTOOL) --tag=F77 $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(F77) $(AM_FFLAGS) $(FFLAGS) -c -o stackr2d.lo `test -f 'src/fortran/stackr2d.f' || echo '$(srcdir)/'`src/fortran/stackr2d.f
stacki2d.lo: src/fortran/stacki2d.f
$(LIBTOOL) --tag=F77 $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(F77) $(AM_FFLAGS) $(FFLAGS) -c -o stacki2d.lo `test -f 'src/fortran/stacki2d.f' || echo '$(srcdir)/'`src/fortran/stacki2d.f
stackc2i.lo: src/fortran/stackc2i.f
$(LIBTOOL) --tag=F77 $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(F77) $(AM_FFLAGS) $(FFLAGS) -c -o stackc2i.lo `test -f 'src/fortran/stackc2i.f' || echo '$(srcdir)/'`src/fortran/stackc2i.f
isinstring.lo: src/fortran/isinstring.f
$(LIBTOOL) --tag=F77 $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(F77) $(AM_FFLAGS) $(FFLAGS) -c -o isinstring.lo `test -f 'src/fortran/isinstring.f' || echo '$(srcdir)/'`src/fortran/isinstring.f
relocstack.lo: src/fortran/relocstack.f
$(LIBTOOL) --tag=F77 $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(F77) $(AM_FFLAGS) $(FFLAGS) -c -o relocstack.lo `test -f 'src/fortran/relocstack.f' || echo '$(srcdir)/'`src/fortran/relocstack.f
sci_errclear.lo: sci_gateway/fortran/sci_errclear.f
$(LIBTOOL) --tag=F77 $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(F77) $(AM_FFLAGS) $(FFLAGS) -c -o sci_errclear.lo `test -f 'sci_gateway/fortran/sci_errclear.f' || echo '$(srcdir)/'`sci_gateway/fortran/sci_errclear.f
sci_global.lo: sci_gateway/fortran/sci_global.f
$(LIBTOOL) --tag=F77 $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(F77) $(AM_FFLAGS) $(FFLAGS) -c -o sci_global.lo `test -f 'sci_gateway/fortran/sci_global.f' || echo '$(srcdir)/'`sci_gateway/fortran/sci_global.f
sci_mtlb_mode.lo: sci_gateway/fortran/sci_mtlb_mode.f
$(LIBTOOL) --tag=F77 $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(F77) $(AM_FFLAGS) $(FFLAGS) -c -o sci_mtlb_mode.lo `test -f 'sci_gateway/fortran/sci_mtlb_mode.f' || echo '$(srcdir)/'`sci_gateway/fortran/sci_mtlb_mode.f
sci_resume.lo: sci_gateway/fortran/sci_resume.f
$(LIBTOOL) --tag=F77 $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(F77) $(AM_FFLAGS) $(FFLAGS) -c -o sci_resume.lo `test -f 'sci_gateway/fortran/sci_resume.f' || echo '$(srcdir)/'`sci_gateway/fortran/sci_resume.f
sci_dispbpt.lo: sci_gateway/fortran/sci_dispbpt.f
$(LIBTOOL) --tag=F77 $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(F77) $(AM_FFLAGS) $(FFLAGS) -c -o sci_dispbpt.lo `test -f 'sci_gateway/fortran/sci_dispbpt.f' || echo '$(srcdir)/'`sci_gateway/fortran/sci_dispbpt.f
sci_useascommand.lo: sci_gateway/fortran/sci_useascommand.f
$(LIBTOOL) --tag=F77 $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(F77) $(AM_FFLAGS) $(FFLAGS) -c -o sci_useascommand.lo `test -f 'sci_gateway/fortran/sci_useascommand.f' || echo '$(srcdir)/'`sci_gateway/fortran/sci_useascommand.f
sci_intppty.lo: sci_gateway/fortran/sci_intppty.f
$(LIBTOOL) --tag=F77 $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(F77) $(AM_FFLAGS) $(FFLAGS) -c -o sci_intppty.lo `test -f 'sci_gateway/fortran/sci_intppty.f' || echo '$(srcdir)/'`sci_gateway/fortran/sci_intppty.f
sci_ieee.lo: sci_gateway/fortran/sci_ieee.f
$(LIBTOOL) --tag=F77 $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(F77) $(AM_FFLAGS) $(FFLAGS) -c -o sci_ieee.lo `test -f 'sci_gateway/fortran/sci_ieee.f' || echo '$(srcdir)/'`sci_gateway/fortran/sci_ieee.f
sci_macrovar.lo: sci_gateway/fortran/sci_macrovar.f
$(LIBTOOL) --tag=F77 $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(F77) $(AM_FFLAGS) $(FFLAGS) -c -o sci_macrovar.lo `test -f 'sci_gateway/fortran/sci_macrovar.f' || echo '$(srcdir)/'`sci_gateway/fortran/sci_macrovar.f
sci_exists.lo: sci_gateway/fortran/sci_exists.f
$(LIBTOOL) --tag=F77 $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(F77) $(AM_FFLAGS) $(FFLAGS) -c -o sci_exists.lo `test -f 'sci_gateway/fortran/sci_exists.f' || echo '$(srcdir)/'`sci_gateway/fortran/sci_exists.f
sci_errcatch.lo: sci_gateway/fortran/sci_errcatch.f
$(LIBTOOL) --tag=F77 $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(F77) $(AM_FFLAGS) $(FFLAGS) -c -o sci_errcatch.lo `test -f 'sci_gateway/fortran/sci_errcatch.f' || echo '$(srcdir)/'`sci_gateway/fortran/sci_errcatch.f
sci_clear.lo: sci_gateway/fortran/sci_clear.f
$(LIBTOOL) --tag=F77 $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(F77) $(AM_FFLAGS) $(FFLAGS) -c -o sci_clear.lo `test -f 'sci_gateway/fortran/sci_clear.f' || echo '$(srcdir)/'`sci_gateway/fortran/sci_clear.f
sci_argn.lo: sci_gateway/fortran/sci_argn.f
$(LIBTOOL) --tag=F77 $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(F77) $(AM_FFLAGS) $(FFLAGS) -c -o sci_argn.lo `test -f 'sci_gateway/fortran/sci_argn.f' || echo '$(srcdir)/'`sci_gateway/fortran/sci_argn.f
sci_setbpt.lo: sci_gateway/fortran/sci_setbpt.f
$(LIBTOOL) --tag=F77 $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(F77) $(AM_FFLAGS) $(FFLAGS) -c -o sci_setbpt.lo `test -f 'sci_gateway/fortran/sci_setbpt.f' || echo '$(srcdir)/'`sci_gateway/fortran/sci_setbpt.f
sci_clearglobal.lo: sci_gateway/fortran/sci_clearglobal.f
$(LIBTOOL) --tag=F77 $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(F77) $(AM_FFLAGS) $(FFLAGS) -c -o sci_clearglobal.lo `test -f 'sci_gateway/fortran/sci_clearglobal.f' || echo '$(srcdir)/'`sci_gateway/fortran/sci_clearglobal.f
sci_delbpt.lo: sci_gateway/fortran/sci_delbpt.f
$(LIBTOOL) --tag=F77 $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(F77) $(AM_FFLAGS) $(FFLAGS) -c -o sci_delbpt.lo `test -f 'sci_gateway/fortran/sci_delbpt.f' || echo '$(srcdir)/'`sci_gateway/fortran/sci_delbpt.f
where.lo: sci_gateway/fortran/where.f
$(LIBTOOL) --tag=F77 $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(F77) $(AM_FFLAGS) $(FFLAGS) -c -o where.lo `test -f 'sci_gateway/fortran/where.f' || echo '$(srcdir)/'`sci_gateway/fortran/where.f
sci_iserror.lo: sci_gateway/fortran/sci_iserror.f
$(LIBTOOL) --tag=F77 $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(F77) $(AM_FFLAGS) $(FFLAGS) -c -o sci_iserror.lo `test -f 'sci_gateway/fortran/sci_iserror.f' || echo '$(srcdir)/'`sci_gateway/fortran/sci_iserror.f
sci_debug.lo: sci_gateway/fortran/sci_debug.f
$(LIBTOOL) --tag=F77 $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(F77) $(AM_FFLAGS) $(FFLAGS) -c -o sci_debug.lo `test -f 'sci_gateway/fortran/sci_debug.f' || echo '$(srcdir)/'`sci_gateway/fortran/sci_debug.f
sci_comp.lo: sci_gateway/fortran/sci_comp.f
$(LIBTOOL) --tag=F77 $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(F77) $(AM_FFLAGS) $(FFLAGS) -c -o sci_comp.lo `test -f 'sci_gateway/fortran/sci_comp.f' || echo '$(srcdir)/'`sci_gateway/fortran/sci_comp.f
sci_isglobal.lo: sci_gateway/fortran/sci_isglobal.f
$(LIBTOOL) --tag=F77 $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(F77) $(AM_FFLAGS) $(FFLAGS) -c -o sci_isglobal.lo `test -f 'sci_gateway/fortran/sci_isglobal.f' || echo '$(srcdir)/'`sci_gateway/fortran/sci_isglobal.f
mostlyclean-libtool:
-rm -f *.lo
clean-libtool:
-rm -rf .libs _libs
install-libscicore_la_etcDATA: $(libscicore_la_etc_DATA)
@$(NORMAL_INSTALL)
test -z "$(libscicore_la_etcdir)" || $(MKDIR_P) "$(DESTDIR)$(libscicore_la_etcdir)"
@list='$(libscicore_la_etc_DATA)'; test -n "$(libscicore_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)$(libscicore_la_etcdir)'"; \
$(INSTALL_DATA) $$files "$(DESTDIR)$(libscicore_la_etcdir)" || exit $$?; \
done
uninstall-libscicore_la_etcDATA:
@$(NORMAL_UNINSTALL)
@list='$(libscicore_la_etc_DATA)'; test -n "$(libscicore_la_etcdir)" || list=; \
files=`for p in $$list; do echo $$p; done | sed -e 's|^.*/||'`; \
test -n "$$files" || exit 0; \
echo " ( cd '$(DESTDIR)$(libscicore_la_etcdir)' && rm -f" $$files ")"; \
cd "$(DESTDIR)$(libscicore_la_etcdir)" && rm -f $$files
install-libscicore_la_rootDATA: $(libscicore_la_root_DATA)
@$(NORMAL_INSTALL)
test -z "$(libscicore_la_rootdir)" || $(MKDIR_P) "$(DESTDIR)$(libscicore_la_rootdir)"
@list='$(libscicore_la_root_DATA)'; test -n "$(libscicore_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)$(libscicore_la_rootdir)'"; \
$(INSTALL_DATA) $$files "$(DESTDIR)$(libscicore_la_rootdir)" || exit $$?; \
done
uninstall-libscicore_la_rootDATA:
@$(NORMAL_UNINSTALL)
@list='$(libscicore_la_root_DATA)'; test -n "$(libscicore_la_rootdir)" || list=; \
files=`for p in $$list; do echo $$p; done | sed -e 's|^.*/||'`; \
test -n "$$files" || exit 0; \
echo " ( cd '$(DESTDIR)$(libscicore_la_rootdir)' && rm -f" $$files ")"; \
cd "$(DESTDIR)$(libscicore_la_rootdir)" && rm -f $$files
install-libscicore_la_sci_gatewayDATA: $(libscicore_la_sci_gateway_DATA)
@$(NORMAL_INSTALL)
test -z "$(libscicore_la_sci_gatewaydir)" || $(MKDIR_P) "$(DESTDIR)$(libscicore_la_sci_gatewaydir)"
@list='$(libscicore_la_sci_gateway_DATA)'; test -n "$(libscicore_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)$(libscicore_la_sci_gatewaydir)'"; \
$(INSTALL_DATA) $$files "$(DESTDIR)$(libscicore_la_sci_gatewaydir)" || exit $$?; \
done
uninstall-libscicore_la_sci_gatewayDATA:
@$(NORMAL_UNINSTALL)
@list='$(libscicore_la_sci_gateway_DATA)'; test -n "$(libscicore_la_sci_gatewaydir)" || list=; \
files=`for p in $$list; do echo $$p; done | sed -e 's|^.*/||'`; \
test -n "$$files" || exit 0; \
echo " ( cd '$(DESTDIR)$(libscicore_la_sci_gatewaydir)' && rm -f" $$files ")"; \
cd "$(DESTDIR)$(libscicore_la_sci_gatewaydir)" && rm -f $$files
install-libscicore_la_xmlDATA: $(libscicore_la_xml_DATA)
@$(NORMAL_INSTALL)
test -z "$(libscicore_la_xmldir)" || $(MKDIR_P) "$(DESTDIR)$(libscicore_la_xmldir)"
@list='$(libscicore_la_xml_DATA)'; test -n "$(libscicore_la_xmldir)" || 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)$(libscicore_la_xmldir)'"; \
$(INSTALL_DATA) $$files "$(DESTDIR)$(libscicore_la_xmldir)" || exit $$?; \
done
uninstall-libscicore_la_xmlDATA:
@$(NORMAL_UNINSTALL)
@list='$(libscicore_la_xml_DATA)'; test -n "$(libscicore_la_xmldir)" || list=; \
files=`for p in $$list; do echo $$p; done | sed -e 's|^.*/||'`; \
test -n "$$files" || exit 0; \
echo " ( cd '$(DESTDIR)$(libscicore_la_xmldir)' && rm -f" $$files ")"; \
cd "$(DESTDIR)$(libscicore_la_xmldir)" && rm -f $$files
install-libscicore_la_includeHEADERS: $(libscicore_la_include_HEADERS)
@$(NORMAL_INSTALL)
test -z "$(libscicore_la_includedir)" || $(MKDIR_P) "$(DESTDIR)$(libscicore_la_includedir)"
@list='$(libscicore_la_include_HEADERS)'; test -n "$(libscicore_la_includedir)" || 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_HEADER) $$files '$(DESTDIR)$(libscicore_la_includedir)'"; \
$(INSTALL_HEADER) $$files "$(DESTDIR)$(libscicore_la_includedir)" || exit $$?; \
done
uninstall-libscicore_la_includeHEADERS:
@$(NORMAL_UNINSTALL)
@list='$(libscicore_la_include_HEADERS)'; test -n "$(libscicore_la_includedir)" || list=; \
files=`for p in $$list; do echo $$p; done | sed -e 's|^.*/||'`; \
test -n "$$files" || exit 0; \
echo " ( cd '$(DESTDIR)$(libscicore_la_includedir)' && rm -f" $$files ")"; \
cd "$(DESTDIR)$(libscicore_la_includedir)" && 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) $(HEADERS) all-local
installdirs:
for dir in "$(DESTDIR)$(pkglibdir)" "$(DESTDIR)$(libscicore_la_etcdir)" "$(DESTDIR)$(libscicore_la_rootdir)" "$(DESTDIR)$(libscicore_la_sci_gatewaydir)" "$(DESTDIR)$(libscicore_la_xmldir)" "$(DESTDIR)$(libscicore_la_includedir)"; 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-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-libscicore_la_etcDATA \
install-libscicore_la_includeHEADERS \
install-libscicore_la_rootDATA \
install-libscicore_la_sci_gatewayDATA \
install-libscicore_la_xmlDATA
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-libscicore_la_etcDATA \
uninstall-libscicore_la_includeHEADERS \
uninstall-libscicore_la_rootDATA \
uninstall-libscicore_la_sci_gatewayDATA \
uninstall-libscicore_la_xmlDATA 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-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-libscicore_la_etcDATA \
install-libscicore_la_includeHEADERS \
install-libscicore_la_rootDATA \
install-libscicore_la_sci_gatewayDATA \
install-libscicore_la_xmlDATA 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-libscicore_la_etcDATA \
uninstall-libscicore_la_includeHEADERS \
uninstall-libscicore_la_rootDATA \
uninstall-libscicore_la_sci_gatewayDATA \
uninstall-libscicore_la_xmlDATA uninstall-pkglibLTLIBRARIES
# 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:
|