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
|
# Makefile.in generated by automake 1.16.5 from Makefile.am.
# @configure_input@
# Copyright (C) 1994-2021 Free Software Foundation, Inc.
# This Makefile.in is free software; the Free Software Foundation
# gives unlimited permission to copy and/or distribute it,
# with or without modifications, as long as this notice is preserved.
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY, to the extent permitted by law; without
# even the implied warranty of MERCHANTABILITY or FITNESS FOR A
# PARTICULAR PURPOSE.
@SET_MAKE@
#
# Copyright (c) 2004-2006 The University of Tennessee and The University
# of Tennessee Research Foundation. All rights
# reserved.
# Copyright (c) 2004-2006 High Performance Computing Center Stuttgart,
# University of Stuttgart. All rights reserved.
# Copyright (c) 2012-2014 Los Alamos National Security, LLC. All rights
# reserved.
# Copyright (c) 2021 Amazon.com, Inc. or its affiliates. All Rights
# reserved.
# $COPYRIGHT$
#
# Additional copyrights may follow
#
# $HEADER$
#
# The purpose of the profiling layer is to allow intercept libraries
# which override the MPI_ namespace symbols. We potentially compile
# every MPI function twice. We always build the profiling layer,
# because the symbols that are always implemented as functions are the
# PMPI_ namespace symbols. We sometimes also build the non-profiling
# layer, if weak symbols can't be used to alias the MPI_ namespace
# into the PMPI_ namespace.
VPATH = @srcdir@
am__is_gnu_make = { \
if test -z '$(MAKELEVEL)'; then \
false; \
elif test -n '$(MAKE_HOST)'; then \
true; \
elif test -n '$(MAKE_VERSION)' && test -n '$(CURDIR)'; then \
true; \
else \
false; \
fi; \
}
am__make_running_with_option = \
case $${target_option-} in \
?) ;; \
*) echo "am__make_running_with_option: internal error: invalid" \
"target option '$${target_option-}' specified" >&2; \
exit 1;; \
esac; \
has_opt=no; \
sane_makeflags=$$MAKEFLAGS; \
if $(am__is_gnu_make); then \
sane_makeflags=$$MFLAGS; \
else \
case $$MAKEFLAGS in \
*\\[\ \ ]*) \
bs=\\; \
sane_makeflags=`printf '%s\n' "$$MAKEFLAGS" \
| sed "s/$$bs$$bs[$$bs $$bs ]*//g"`;; \
esac; \
fi; \
skip_next=no; \
strip_trailopt () \
{ \
flg=`printf '%s\n' "$$flg" | sed "s/$$1.*$$//"`; \
}; \
for flg in $$sane_makeflags; do \
test $$skip_next = yes && { skip_next=no; continue; }; \
case $$flg in \
*=*|--*) continue;; \
-*I) strip_trailopt 'I'; skip_next=yes;; \
-*I?*) strip_trailopt 'I';; \
-*O) strip_trailopt 'O'; skip_next=yes;; \
-*O?*) strip_trailopt 'O';; \
-*l) strip_trailopt 'l'; skip_next=yes;; \
-*l?*) strip_trailopt 'l';; \
-[dEDm]) skip_next=yes;; \
-[JT]) skip_next=yes;; \
esac; \
case $$flg in \
*$$target_option*) has_opt=yes; break;; \
esac; \
done; \
test $$has_opt = yes
am__make_dryrun = (target_option=n; $(am__make_running_with_option))
am__make_keepgoing = (target_option=k; $(am__make_running_with_option))
pkgdatadir = $(datadir)/@PACKAGE@
pkgincludedir = $(includedir)/@PACKAGE@
pkglibdir = $(libdir)/@PACKAGE@
pkglibexecdir = $(libexecdir)/@PACKAGE@
am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd
install_sh_DATA = $(install_sh) -c -m 644
install_sh_PROGRAM = $(install_sh) -c
install_sh_SCRIPT = $(install_sh) -c
INSTALL_HEADER = $(INSTALL_DATA)
transform = $(program_transform_name)
NORMAL_INSTALL = :
PRE_INSTALL = :
POST_INSTALL = :
NORMAL_UNINSTALL = :
PRE_UNINSTALL = :
POST_UNINSTALL = :
build_triplet = @build@
host_triplet = @host@
target_triplet = @target@
@BUILD_MPI_BINDINGS_LAYER_TRUE@am__append_1 = libmpi_mpit_noprofile.la
@BUILD_MPI_BINDINGS_LAYER_TRUE@am__append_2 = libmpi_mpit_noprofile.la
subdir = ompi/mpi/tool
ACLOCAL_M4 = $(top_srcdir)/aclocal.m4
am__aclocal_m4_deps = $(top_srcdir)/config/oac/oac_assert.m4 \
$(top_srcdir)/config/oac/oac_check_package.m4 \
$(top_srcdir)/config/oac/oac_init.m4 \
$(top_srcdir)/config/oac/oac_linker.m4 \
$(top_srcdir)/config/oac/oac_list.m4 \
$(top_srcdir)/config/oac/oac_log.m4 \
$(top_srcdir)/config/oac/oac_setup_sphinx.m4 \
$(top_srcdir)/config/oac/oac_summary.m4 \
$(top_srcdir)/config/oac/oac_var_scope.m4 \
$(top_srcdir)/config/aclocal_subcfg.m4 \
$(top_srcdir)/config/auto-extracted-pmix-configure-args.m4 \
$(top_srcdir)/config/auto-extracted-prrte-configure-args.m4 \
$(top_srcdir)/config/c_get_alignment.m4 \
$(top_srcdir)/config/c_weak_symbols.m4 \
$(top_srcdir)/config/libtool.m4 \
$(top_srcdir)/config/ltoptions.m4 \
$(top_srcdir)/config/ltsugar.m4 \
$(top_srcdir)/config/ltversion.m4 \
$(top_srcdir)/config/lt~obsolete.m4 \
$(top_srcdir)/config/ompi_check_gpfs.m4 \
$(top_srcdir)/config/ompi_check_ime.m4 \
$(top_srcdir)/config/ompi_check_libhcoll.m4 \
$(top_srcdir)/config/ompi_check_lustre.m4 \
$(top_srcdir)/config/ompi_check_psm2.m4 \
$(top_srcdir)/config/ompi_check_pvfs2.m4 \
$(top_srcdir)/config/ompi_check_ucc.m4 \
$(top_srcdir)/config/ompi_check_ucx.m4 \
$(top_srcdir)/config/ompi_config_files.m4 \
$(top_srcdir)/config/ompi_configure_options.m4 \
$(top_srcdir)/config/ompi_deleted_options.m4 \
$(top_srcdir)/config/ompi_endpoint_tag.m4 \
$(top_srcdir)/config/ompi_ext.m4 \
$(top_srcdir)/config/ompi_find_mpi_aint_count_offset.m4 \
$(top_srcdir)/config/ompi_fortran_check.m4 \
$(top_srcdir)/config/ompi_fortran_check_abstract.m4 \
$(top_srcdir)/config/ompi_fortran_check_asynchronous.m4 \
$(top_srcdir)/config/ompi_fortran_check_bind_c.m4 \
$(top_srcdir)/config/ompi_fortran_check_c_funloc.m4 \
$(top_srcdir)/config/ompi_fortran_check_elemental.m4 \
$(top_srcdir)/config/ompi_fortran_check_f08_assumed_rank.m4 \
$(top_srcdir)/config/ompi_fortran_check_ignore_tkr.m4 \
$(top_srcdir)/config/ompi_fortran_check_interface.m4 \
$(top_srcdir)/config/ompi_fortran_check_iso_fortran_env.m4 \
$(top_srcdir)/config/ompi_fortran_check_iso_fortran_env_real16.m4 \
$(top_srcdir)/config/ompi_fortran_check_logical_array.m4 \
$(top_srcdir)/config/ompi_fortran_check_max_array_rank.m4 \
$(top_srcdir)/config/ompi_fortran_check_optional_args.m4 \
$(top_srcdir)/config/ompi_fortran_check_preprocess_f90.m4 \
$(top_srcdir)/config/ompi_fortran_check_private.m4 \
$(top_srcdir)/config/ompi_fortran_check_procedure.m4 \
$(top_srcdir)/config/ompi_fortran_check_real16_c_equiv.m4 \
$(top_srcdir)/config/ompi_fortran_check_storage_size.m4 \
$(top_srcdir)/config/ompi_fortran_check_type.m4 \
$(top_srcdir)/config/ompi_fortran_check_use_only.m4 \
$(top_srcdir)/config/ompi_fortran_find_ext_symbol_convention.m4 \
$(top_srcdir)/config/ompi_fortran_find_module_include_flag.m4 \
$(top_srcdir)/config/ompi_fortran_get_alignment.m4 \
$(top_srcdir)/config/ompi_fortran_get_handle_max.m4 \
$(top_srcdir)/config/ompi_fortran_get_kind_value.m4 \
$(top_srcdir)/config/ompi_fortran_get_sizeof.m4 \
$(top_srcdir)/config/ompi_fortran_get_value_true.m4 \
$(top_srcdir)/config/ompi_interix.m4 \
$(top_srcdir)/config/ompi_setup_cxx.m4 \
$(top_srcdir)/config/ompi_setup_debugger_flags.m4 \
$(top_srcdir)/config/ompi_setup_fc.m4 \
$(top_srcdir)/config/ompi_setup_java.m4 \
$(top_srcdir)/config/ompi_setup_mpi_ext.m4 \
$(top_srcdir)/config/ompi_setup_mpi_fortran.m4 \
$(top_srcdir)/config/ompi_setup_mpi_java.m4 \
$(top_srcdir)/config/ompi_setup_mpi_profiling.m4 \
$(top_srcdir)/config/ompi_setup_prrte.m4 \
$(top_srcdir)/config/opal_case_sensitive_fs_setup.m4 \
$(top_srcdir)/config/opal_check_alt_short_float.m4 \
$(top_srcdir)/config/opal_check_attributes.m4 \
$(top_srcdir)/config/opal_check_broken_qsort.m4 \
$(top_srcdir)/config/opal_check_cflags.m4 \
$(top_srcdir)/config/opal_check_cma.m4 \
$(top_srcdir)/config/opal_check_compiler_version.m4 \
$(top_srcdir)/config/opal_check_compiler_works.m4 \
$(top_srcdir)/config/opal_check_cuda.m4 \
$(top_srcdir)/config/opal_check_knem.m4 \
$(top_srcdir)/config/opal_check_libnl.m4 \
$(top_srcdir)/config/opal_check_offsetof.m4 \
$(top_srcdir)/config/opal_check_ofi.m4 \
$(top_srcdir)/config/opal_check_os_flavors.m4 \
$(top_srcdir)/config/opal_check_portals4.m4 \
$(top_srcdir)/config/opal_check_rocm.m4 \
$(top_srcdir)/config/opal_check_ugni.m4 \
$(top_srcdir)/config/opal_check_vendor.m4 \
$(top_srcdir)/config/opal_check_visibility.m4 \
$(top_srcdir)/config/opal_check_withdir.m4 \
$(top_srcdir)/config/opal_check_xpmem.m4 \
$(top_srcdir)/config/opal_config_3rdparty.m4 \
$(top_srcdir)/config/opal_config_asm.m4 \
$(top_srcdir)/config/opal_config_files.m4 \
$(top_srcdir)/config/opal_config_hwloc.m4 \
$(top_srcdir)/config/opal_config_libevent.m4 \
$(top_srcdir)/config/opal_config_pmix.m4 \
$(top_srcdir)/config/opal_config_subdir.m4 \
$(top_srcdir)/config/opal_config_subdir_args.m4 \
$(top_srcdir)/config/opal_config_treematch.m4 \
$(top_srcdir)/config/opal_configure_options.m4 \
$(top_srcdir)/config/opal_ensure_contains_optflags.m4 \
$(top_srcdir)/config/opal_expand_tarball.m4 \
$(top_srcdir)/config/opal_find_type.m4 \
$(top_srcdir)/config/opal_functions.m4 \
$(top_srcdir)/config/opal_lang_link_with_c.m4 \
$(top_srcdir)/config/opal_load_platform.m4 \
$(top_srcdir)/config/opal_mca.m4 \
$(top_srcdir)/config/opal_save_version.m4 \
$(top_srcdir)/config/opal_search_libs.m4 \
$(top_srcdir)/config/opal_set_lib_name.m4 \
$(top_srcdir)/config/opal_set_mca_prefix.m4 \
$(top_srcdir)/config/opal_setup_cc.m4 \
$(top_srcdir)/config/opal_setup_cli.m4 \
$(top_srcdir)/config/opal_setup_ft.m4 \
$(top_srcdir)/config/opal_setup_wrappers.m4 \
$(top_srcdir)/config/opal_strip_optflags.m4 \
$(top_srcdir)/config/opal_subdir_env.m4 \
$(top_srcdir)/config/opal_summary.m4 \
$(top_srcdir)/config/oshmem_config_files.m4 \
$(top_srcdir)/config/oshmem_configure_options.m4 \
$(top_srcdir)/config/oshmem_setup_profiling.m4 \
$(top_srcdir)/config/pkg.m4 \
$(top_srcdir)/config/autogen_found_items.m4 \
$(top_srcdir)/opal/mca/backtrace/configure.m4 \
$(top_srcdir)/opal/mca/dl/configure.m4 \
$(top_srcdir)/opal/mca/hwloc/configure.m4 \
$(top_srcdir)/opal/mca/installdirs/configure.m4 \
$(top_srcdir)/opal/mca/memchecker/configure.m4 \
$(top_srcdir)/opal/mca/memcpy/configure.m4 \
$(top_srcdir)/opal/mca/memory/configure.m4 \
$(top_srcdir)/opal/mca/pmix/configure.m4 \
$(top_srcdir)/opal/mca/smsc/configure.m4 \
$(top_srcdir)/opal/mca/threads/configure.m4 \
$(top_srcdir)/opal/mca/timer/configure.m4 \
$(top_srcdir)/opal/mca/common/ofi/configure.m4 \
$(top_srcdir)/opal/mca/common/sm/configure.m4 \
$(top_srcdir)/opal/mca/common/ucx/configure.m4 \
$(top_srcdir)/opal/mca/accelerator/cuda/configure.m4 \
$(top_srcdir)/opal/mca/accelerator/rocm/configure.m4 \
$(top_srcdir)/opal/mca/backtrace/execinfo/configure.m4 \
$(top_srcdir)/opal/mca/backtrace/none/configure.m4 \
$(top_srcdir)/opal/mca/backtrace/printstack/configure.m4 \
$(top_srcdir)/opal/mca/btl/ofi/configure.m4 \
$(top_srcdir)/opal/mca/btl/portals4/configure.m4 \
$(top_srcdir)/opal/mca/btl/sm/configure.m4 \
$(top_srcdir)/opal/mca/btl/smcuda/configure.m4 \
$(top_srcdir)/opal/mca/btl/tcp/configure.m4 \
$(top_srcdir)/opal/mca/btl/uct/configure.m4 \
$(top_srcdir)/opal/mca/btl/ugni/configure.m4 \
$(top_srcdir)/opal/mca/btl/usnic/configure.m4 \
$(top_srcdir)/opal/mca/dl/dlopen/configure.m4 \
$(top_srcdir)/opal/mca/dl/libltdl/configure.m4 \
$(top_srcdir)/opal/mca/if/bsdx_ipv4/configure.m4 \
$(top_srcdir)/opal/mca/if/bsdx_ipv6/configure.m4 \
$(top_srcdir)/opal/mca/if/linux_ipv6/configure.m4 \
$(top_srcdir)/opal/mca/if/posix_ipv4/configure.m4 \
$(top_srcdir)/opal/mca/if/solaris_ipv6/configure.m4 \
$(top_srcdir)/opal/mca/installdirs/config/configure.m4 \
$(top_srcdir)/opal/mca/installdirs/env/configure.m4 \
$(top_srcdir)/opal/mca/memchecker/valgrind/configure.m4 \
$(top_srcdir)/opal/mca/memory/malloc_solaris/configure.m4 \
$(top_srcdir)/opal/mca/memory/patcher/configure.m4 \
$(top_srcdir)/opal/mca/mpool/memkind/configure.m4 \
$(top_srcdir)/opal/mca/patcher/overwrite/configure.m4 \
$(top_srcdir)/opal/mca/rcache/gpusm/configure.m4 \
$(top_srcdir)/opal/mca/rcache/rgpusm/configure.m4 \
$(top_srcdir)/opal/mca/rcache/udreg/configure.m4 \
$(top_srcdir)/opal/mca/reachable/netlink/configure.m4 \
$(top_srcdir)/opal/mca/shmem/mmap/configure.m4 \
$(top_srcdir)/opal/mca/shmem/posix/configure.m4 \
$(top_srcdir)/opal/mca/shmem/sysv/configure.m4 \
$(top_srcdir)/opal/mca/smsc/cma/configure.m4 \
$(top_srcdir)/opal/mca/smsc/knem/configure.m4 \
$(top_srcdir)/opal/mca/smsc/xpmem/configure.m4 \
$(top_srcdir)/opal/mca/threads/argobots/configure.m4 \
$(top_srcdir)/opal/mca/threads/pthreads/configure.m4 \
$(top_srcdir)/opal/mca/threads/qthreads/configure.m4 \
$(top_srcdir)/opal/mca/timer/altix/configure.m4 \
$(top_srcdir)/opal/mca/timer/darwin/configure.m4 \
$(top_srcdir)/opal/mca/timer/linux/configure.m4 \
$(top_srcdir)/opal/mca/timer/solaris/configure.m4 \
$(top_srcdir)/ompi/mca/fbtl/configure.m4 \
$(top_srcdir)/ompi/mca/fcoll/configure.m4 \
$(top_srcdir)/ompi/mca/fs/configure.m4 \
$(top_srcdir)/ompi/mca/hook/configure.m4 \
$(top_srcdir)/ompi/mca/mtl/configure.m4 \
$(top_srcdir)/ompi/mca/part/configure.m4 \
$(top_srcdir)/ompi/mca/pml/configure.m4 \
$(top_srcdir)/ompi/mca/sharedfp/configure.m4 \
$(top_srcdir)/ompi/mca/common/monitoring/configure.m4 \
$(top_srcdir)/ompi/mca/common/ompio/configure.m4 \
$(top_srcdir)/ompi/mca/bml/r2/configure.m4 \
$(top_srcdir)/ompi/mca/coll/cuda/configure.m4 \
$(top_srcdir)/ompi/mca/coll/ftagree/configure.m4 \
$(top_srcdir)/ompi/mca/coll/hcoll/configure.m4 \
$(top_srcdir)/ompi/mca/coll/monitoring/configure.m4 \
$(top_srcdir)/ompi/mca/coll/portals4/configure.m4 \
$(top_srcdir)/ompi/mca/coll/sm/configure.m4 \
$(top_srcdir)/ompi/mca/coll/ucc/configure.m4 \
$(top_srcdir)/ompi/mca/fbtl/ime/configure.m4 \
$(top_srcdir)/ompi/mca/fbtl/posix/configure.m4 \
$(top_srcdir)/ompi/mca/fbtl/pvfs2/configure.m4 \
$(top_srcdir)/ompi/mca/fs/gpfs/configure.m4 \
$(top_srcdir)/ompi/mca/fs/ime/configure.m4 \
$(top_srcdir)/ompi/mca/fs/lustre/configure.m4 \
$(top_srcdir)/ompi/mca/fs/pvfs2/configure.m4 \
$(top_srcdir)/ompi/mca/fs/ufs/configure.m4 \
$(top_srcdir)/ompi/mca/hook/comm_method/configure.m4 \
$(top_srcdir)/ompi/mca/io/ompio/configure.m4 \
$(top_srcdir)/ompi/mca/io/romio341/configure.m4 \
$(top_srcdir)/ompi/mca/mtl/ofi/configure.m4 \
$(top_srcdir)/ompi/mca/mtl/portals4/configure.m4 \
$(top_srcdir)/ompi/mca/mtl/psm2/configure.m4 \
$(top_srcdir)/ompi/mca/op/aarch64/configure.m4 \
$(top_srcdir)/ompi/mca/op/avx/configure.m4 \
$(top_srcdir)/ompi/mca/osc/monitoring/configure.m4 \
$(top_srcdir)/ompi/mca/osc/portals4/configure.m4 \
$(top_srcdir)/ompi/mca/osc/rdma/configure.m4 \
$(top_srcdir)/ompi/mca/osc/ucx/configure.m4 \
$(top_srcdir)/ompi/mca/pml/monitoring/configure.m4 \
$(top_srcdir)/ompi/mca/pml/ob1/configure.m4 \
$(top_srcdir)/ompi/mca/pml/ucx/configure.m4 \
$(top_srcdir)/ompi/mca/pml/v/configure.m4 \
$(top_srcdir)/ompi/mca/sharedfp/sm/configure.m4 \
$(top_srcdir)/ompi/mca/topo/treematch/configure.m4 \
$(top_srcdir)/oshmem/mca/memheap/configure.m4 \
$(top_srcdir)/oshmem/mca/spml/configure.m4 \
$(top_srcdir)/oshmem/mca/atomic/ucx/configure.m4 \
$(top_srcdir)/oshmem/mca/scoll/ucc/configure.m4 \
$(top_srcdir)/oshmem/mca/spml/ucx/configure.m4 \
$(top_srcdir)/oshmem/mca/sshmem/mmap/configure.m4 \
$(top_srcdir)/oshmem/mca/sshmem/sysv/configure.m4 \
$(top_srcdir)/oshmem/mca/sshmem/ucx/configure.m4 \
$(top_srcdir)/ompi/mpiext/affinity/configure.m4 \
$(top_srcdir)/ompi/mpiext/cuda/configure.m4 \
$(top_srcdir)/ompi/mpiext/ftmpi/configure.m4 \
$(top_srcdir)/ompi/mpiext/rocm/configure.m4 \
$(top_srcdir)/ompi/mpiext/shortfloat/configure.m4 \
$(top_srcdir)/config/opal_get_version.m4 \
$(top_srcdir)/configure.ac
am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \
$(ACLOCAL_M4)
DIST_COMMON = $(srcdir)/Makefile.am $(am__ompi_HEADERS_DIST) \
$(am__DIST_COMMON)
mkinstalldirs = $(install_sh) -d
CONFIG_HEADER = $(top_builddir)/opal/include/opal_config.h \
$(top_builddir)/ompi/include/mpi.h \
$(top_builddir)/oshmem/include/shmem.h \
$(top_builddir)/ompi/mpiext/cuda/c/mpiext_cuda_c.h \
$(top_builddir)/ompi/mpiext/rocm/c/mpiext_rocm_c.h
CONFIG_CLEAN_FILES =
CONFIG_CLEAN_VPATH_FILES =
LTLIBRARIES = $(noinst_LTLIBRARIES)
libmpi_mpit_la_DEPENDENCIES = libmpi_mpit_profile.la $(am__append_2)
am_libmpi_mpit_la_OBJECTS = mpit_common.lo
libmpi_mpit_la_OBJECTS = $(am_libmpi_mpit_la_OBJECTS)
AM_V_lt = $(am__v_lt_@AM_V@)
am__v_lt_ = $(am__v_lt_@AM_DEFAULT_V@)
am__v_lt_0 = --silent
am__v_lt_1 =
libmpi_mpit_noprofile_la_LIBADD =
am__objects_1 = libmpi_mpit_noprofile_la-category_changed.lo \
libmpi_mpit_noprofile_la-category_get_categories.lo \
libmpi_mpit_noprofile_la-category_get_cvars.lo \
libmpi_mpit_noprofile_la-category_get_info.lo \
libmpi_mpit_noprofile_la-category_get_index.lo \
libmpi_mpit_noprofile_la-category_get_num.lo \
libmpi_mpit_noprofile_la-category_get_pvars.lo \
libmpi_mpit_noprofile_la-cvar_get_info.lo \
libmpi_mpit_noprofile_la-cvar_get_index.lo \
libmpi_mpit_noprofile_la-cvar_get_num.lo \
libmpi_mpit_noprofile_la-cvar_handle_alloc.lo \
libmpi_mpit_noprofile_la-cvar_handle_free.lo \
libmpi_mpit_noprofile_la-cvar_read.lo \
libmpi_mpit_noprofile_la-cvar_write.lo \
libmpi_mpit_noprofile_la-enum_get_info.lo \
libmpi_mpit_noprofile_la-enum_get_item.lo \
libmpi_mpit_noprofile_la-finalize.lo \
libmpi_mpit_noprofile_la-init_thread.lo \
libmpi_mpit_noprofile_la-pvar_get_info.lo \
libmpi_mpit_noprofile_la-pvar_get_index.lo \
libmpi_mpit_noprofile_la-pvar_get_num.lo \
libmpi_mpit_noprofile_la-pvar_handle_alloc.lo \
libmpi_mpit_noprofile_la-pvar_handle_free.lo \
libmpi_mpit_noprofile_la-pvar_read.lo \
libmpi_mpit_noprofile_la-pvar_readreset.lo \
libmpi_mpit_noprofile_la-pvar_reset.lo \
libmpi_mpit_noprofile_la-pvar_session_create.lo \
libmpi_mpit_noprofile_la-pvar_session_free.lo \
libmpi_mpit_noprofile_la-pvar_start.lo \
libmpi_mpit_noprofile_la-pvar_stop.lo \
libmpi_mpit_noprofile_la-pvar_write.lo
am_libmpi_mpit_noprofile_la_OBJECTS = $(am__objects_1)
libmpi_mpit_noprofile_la_OBJECTS = \
$(am_libmpi_mpit_noprofile_la_OBJECTS)
@BUILD_MPI_BINDINGS_LAYER_TRUE@am_libmpi_mpit_noprofile_la_rpath =
libmpi_mpit_profile_la_LIBADD =
am__objects_2 = libmpi_mpit_profile_la-category_changed.lo \
libmpi_mpit_profile_la-category_get_categories.lo \
libmpi_mpit_profile_la-category_get_cvars.lo \
libmpi_mpit_profile_la-category_get_info.lo \
libmpi_mpit_profile_la-category_get_index.lo \
libmpi_mpit_profile_la-category_get_num.lo \
libmpi_mpit_profile_la-category_get_pvars.lo \
libmpi_mpit_profile_la-cvar_get_info.lo \
libmpi_mpit_profile_la-cvar_get_index.lo \
libmpi_mpit_profile_la-cvar_get_num.lo \
libmpi_mpit_profile_la-cvar_handle_alloc.lo \
libmpi_mpit_profile_la-cvar_handle_free.lo \
libmpi_mpit_profile_la-cvar_read.lo \
libmpi_mpit_profile_la-cvar_write.lo \
libmpi_mpit_profile_la-enum_get_info.lo \
libmpi_mpit_profile_la-enum_get_item.lo \
libmpi_mpit_profile_la-finalize.lo \
libmpi_mpit_profile_la-init_thread.lo \
libmpi_mpit_profile_la-pvar_get_info.lo \
libmpi_mpit_profile_la-pvar_get_index.lo \
libmpi_mpit_profile_la-pvar_get_num.lo \
libmpi_mpit_profile_la-pvar_handle_alloc.lo \
libmpi_mpit_profile_la-pvar_handle_free.lo \
libmpi_mpit_profile_la-pvar_read.lo \
libmpi_mpit_profile_la-pvar_readreset.lo \
libmpi_mpit_profile_la-pvar_reset.lo \
libmpi_mpit_profile_la-pvar_session_create.lo \
libmpi_mpit_profile_la-pvar_session_free.lo \
libmpi_mpit_profile_la-pvar_start.lo \
libmpi_mpit_profile_la-pvar_stop.lo \
libmpi_mpit_profile_la-pvar_write.lo
am_libmpi_mpit_profile_la_OBJECTS = $(am__objects_2)
libmpi_mpit_profile_la_OBJECTS = $(am_libmpi_mpit_profile_la_OBJECTS)
AM_V_P = $(am__v_P_@AM_V@)
am__v_P_ = $(am__v_P_@AM_DEFAULT_V@)
am__v_P_0 = false
am__v_P_1 = :
AM_V_GEN = $(am__v_GEN_@AM_V@)
am__v_GEN_ = $(am__v_GEN_@AM_DEFAULT_V@)
am__v_GEN_0 = @echo " GEN " $@;
am__v_GEN_1 =
AM_V_at = $(am__v_at_@AM_V@)
am__v_at_ = $(am__v_at_@AM_DEFAULT_V@)
am__v_at_0 = @
am__v_at_1 =
DEFAULT_INCLUDES = -I.@am__isrc@ -I$(top_builddir)/opal/include -I$(top_builddir)/ompi/include -I$(top_builddir)/oshmem/include -I$(top_builddir)/ompi/mpiext/cuda/c -I$(top_builddir)/ompi/mpiext/rocm/c
depcomp = $(SHELL) $(top_srcdir)/config/depcomp
am__maybe_remake_depfiles = depfiles
am__depfiles_remade = \
./$(DEPDIR)/libmpi_mpit_noprofile_la-category_changed.Plo \
./$(DEPDIR)/libmpi_mpit_noprofile_la-category_get_categories.Plo \
./$(DEPDIR)/libmpi_mpit_noprofile_la-category_get_cvars.Plo \
./$(DEPDIR)/libmpi_mpit_noprofile_la-category_get_index.Plo \
./$(DEPDIR)/libmpi_mpit_noprofile_la-category_get_info.Plo \
./$(DEPDIR)/libmpi_mpit_noprofile_la-category_get_num.Plo \
./$(DEPDIR)/libmpi_mpit_noprofile_la-category_get_pvars.Plo \
./$(DEPDIR)/libmpi_mpit_noprofile_la-cvar_get_index.Plo \
./$(DEPDIR)/libmpi_mpit_noprofile_la-cvar_get_info.Plo \
./$(DEPDIR)/libmpi_mpit_noprofile_la-cvar_get_num.Plo \
./$(DEPDIR)/libmpi_mpit_noprofile_la-cvar_handle_alloc.Plo \
./$(DEPDIR)/libmpi_mpit_noprofile_la-cvar_handle_free.Plo \
./$(DEPDIR)/libmpi_mpit_noprofile_la-cvar_read.Plo \
./$(DEPDIR)/libmpi_mpit_noprofile_la-cvar_write.Plo \
./$(DEPDIR)/libmpi_mpit_noprofile_la-enum_get_info.Plo \
./$(DEPDIR)/libmpi_mpit_noprofile_la-enum_get_item.Plo \
./$(DEPDIR)/libmpi_mpit_noprofile_la-finalize.Plo \
./$(DEPDIR)/libmpi_mpit_noprofile_la-init_thread.Plo \
./$(DEPDIR)/libmpi_mpit_noprofile_la-pvar_get_index.Plo \
./$(DEPDIR)/libmpi_mpit_noprofile_la-pvar_get_info.Plo \
./$(DEPDIR)/libmpi_mpit_noprofile_la-pvar_get_num.Plo \
./$(DEPDIR)/libmpi_mpit_noprofile_la-pvar_handle_alloc.Plo \
./$(DEPDIR)/libmpi_mpit_noprofile_la-pvar_handle_free.Plo \
./$(DEPDIR)/libmpi_mpit_noprofile_la-pvar_read.Plo \
./$(DEPDIR)/libmpi_mpit_noprofile_la-pvar_readreset.Plo \
./$(DEPDIR)/libmpi_mpit_noprofile_la-pvar_reset.Plo \
./$(DEPDIR)/libmpi_mpit_noprofile_la-pvar_session_create.Plo \
./$(DEPDIR)/libmpi_mpit_noprofile_la-pvar_session_free.Plo \
./$(DEPDIR)/libmpi_mpit_noprofile_la-pvar_start.Plo \
./$(DEPDIR)/libmpi_mpit_noprofile_la-pvar_stop.Plo \
./$(DEPDIR)/libmpi_mpit_noprofile_la-pvar_write.Plo \
./$(DEPDIR)/libmpi_mpit_profile_la-category_changed.Plo \
./$(DEPDIR)/libmpi_mpit_profile_la-category_get_categories.Plo \
./$(DEPDIR)/libmpi_mpit_profile_la-category_get_cvars.Plo \
./$(DEPDIR)/libmpi_mpit_profile_la-category_get_index.Plo \
./$(DEPDIR)/libmpi_mpit_profile_la-category_get_info.Plo \
./$(DEPDIR)/libmpi_mpit_profile_la-category_get_num.Plo \
./$(DEPDIR)/libmpi_mpit_profile_la-category_get_pvars.Plo \
./$(DEPDIR)/libmpi_mpit_profile_la-cvar_get_index.Plo \
./$(DEPDIR)/libmpi_mpit_profile_la-cvar_get_info.Plo \
./$(DEPDIR)/libmpi_mpit_profile_la-cvar_get_num.Plo \
./$(DEPDIR)/libmpi_mpit_profile_la-cvar_handle_alloc.Plo \
./$(DEPDIR)/libmpi_mpit_profile_la-cvar_handle_free.Plo \
./$(DEPDIR)/libmpi_mpit_profile_la-cvar_read.Plo \
./$(DEPDIR)/libmpi_mpit_profile_la-cvar_write.Plo \
./$(DEPDIR)/libmpi_mpit_profile_la-enum_get_info.Plo \
./$(DEPDIR)/libmpi_mpit_profile_la-enum_get_item.Plo \
./$(DEPDIR)/libmpi_mpit_profile_la-finalize.Plo \
./$(DEPDIR)/libmpi_mpit_profile_la-init_thread.Plo \
./$(DEPDIR)/libmpi_mpit_profile_la-pvar_get_index.Plo \
./$(DEPDIR)/libmpi_mpit_profile_la-pvar_get_info.Plo \
./$(DEPDIR)/libmpi_mpit_profile_la-pvar_get_num.Plo \
./$(DEPDIR)/libmpi_mpit_profile_la-pvar_handle_alloc.Plo \
./$(DEPDIR)/libmpi_mpit_profile_la-pvar_handle_free.Plo \
./$(DEPDIR)/libmpi_mpit_profile_la-pvar_read.Plo \
./$(DEPDIR)/libmpi_mpit_profile_la-pvar_readreset.Plo \
./$(DEPDIR)/libmpi_mpit_profile_la-pvar_reset.Plo \
./$(DEPDIR)/libmpi_mpit_profile_la-pvar_session_create.Plo \
./$(DEPDIR)/libmpi_mpit_profile_la-pvar_session_free.Plo \
./$(DEPDIR)/libmpi_mpit_profile_la-pvar_start.Plo \
./$(DEPDIR)/libmpi_mpit_profile_la-pvar_stop.Plo \
./$(DEPDIR)/libmpi_mpit_profile_la-pvar_write.Plo \
./$(DEPDIR)/mpit_common.Plo
am__mv = mv -f
COMPILE = $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) \
$(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS)
LTCOMPILE = $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) \
$(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) \
$(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) \
$(AM_CFLAGS) $(CFLAGS)
AM_V_CC = $(am__v_CC_@AM_V@)
am__v_CC_ = $(am__v_CC_@AM_DEFAULT_V@)
am__v_CC_0 = @echo " CC " $@;
am__v_CC_1 =
CCLD = $(CC)
LINK = $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) \
$(LIBTOOLFLAGS) --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) \
$(AM_LDFLAGS) $(LDFLAGS) -o $@
AM_V_CCLD = $(am__v_CCLD_@AM_V@)
am__v_CCLD_ = $(am__v_CCLD_@AM_DEFAULT_V@)
am__v_CCLD_0 = @echo " CCLD " $@;
am__v_CCLD_1 =
SOURCES = $(libmpi_mpit_la_SOURCES) \
$(libmpi_mpit_noprofile_la_SOURCES) \
$(libmpi_mpit_profile_la_SOURCES)
DIST_SOURCES = $(libmpi_mpit_la_SOURCES) \
$(libmpi_mpit_noprofile_la_SOURCES) \
$(libmpi_mpit_profile_la_SOURCES)
am__can_run_installinfo = \
case $$AM_UPDATE_INFO_DIR in \
n|no|NO) false;; \
*) (install-info --version) >/dev/null 2>&1;; \
esac
am__ompi_HEADERS_DIST = mpit-internal.h
am__vpath_adj_setup = srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`;
am__vpath_adj = case $$p in \
$(srcdir)/*) f=`echo "$$p" | sed "s|^$$srcdirstrip/||"`;; \
*) f=$$p;; \
esac;
am__strip_dir = f=`echo $$p | sed -e 's|^.*/||'`;
am__install_max = 40
am__nobase_strip_setup = \
srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*|]/\\\\&/g'`
am__nobase_strip = \
for p in $$list; do echo "$$p"; done | sed -e "s|$$srcdirstrip/||"
am__nobase_list = $(am__nobase_strip_setup); \
for p in $$list; do echo "$$p $$p"; done | \
sed "s| $$srcdirstrip/| |;"' / .*\//!s/ .*/ ./; s,\( .*\)/[^/]*$$,\1,' | \
$(AWK) 'BEGIN { files["."] = "" } { files[$$2] = files[$$2] " " $$1; \
if (++n[$$2] == $(am__install_max)) \
{ print $$2, files[$$2]; n[$$2] = 0; files[$$2] = "" } } \
END { for (dir in files) print dir, files[dir] }'
am__base_list = \
sed '$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;s/\n/ /g' | \
sed '$$!N;$$!N;$$!N;$$!N;s/\n/ /g'
am__uninstall_files_from_dir = { \
test -z "$$files" \
|| { test ! -d "$$dir" && test ! -f "$$dir" && test ! -r "$$dir"; } \
|| { echo " ( cd '$$dir' && rm -f" $$files ")"; \
$(am__cd) "$$dir" && rm -f $$files; }; \
}
am__installdirs = "$(DESTDIR)$(ompidir)"
HEADERS = $(ompi_HEADERS)
am__tagged_files = $(HEADERS) $(SOURCES) $(TAGS_FILES) $(LISP)
# Read a list of newline-separated strings from the standard input,
# and print each of them once, without duplicates. Input order is
# *not* preserved.
am__uniquify_input = $(AWK) '\
BEGIN { nonempty = 0; } \
{ items[$$0] = 1; nonempty = 1; } \
END { if (nonempty) { for (i in items) print i; }; } \
'
# Make sure the list of sources is unique. This is necessary because,
# e.g., the same source file might be shared among _SOURCES variables
# for different programs/libraries.
am__define_uniq_tagged_files = \
list='$(am__tagged_files)'; \
unique=`for i in $$list; do \
if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \
done | $(am__uniquify_input)`
am__DIST_COMMON = $(srcdir)/Makefile.in $(top_srcdir)/config/depcomp
DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST)
ACLOCAL = @ACLOCAL@
AMCA_PARAM_SETS_DIR = @AMCA_PARAM_SETS_DIR@
AMTAR = @AMTAR@
AM_DEFAULT_VERBOSITY = @AM_DEFAULT_VERBOSITY@
AR = @AR@
AUTOCONF = @AUTOCONF@
AUTOHEADER = @AUTOHEADER@
AUTOMAKE = @AUTOMAKE@
AWK = @AWK@
BZIP2_BIN = @BZIP2_BIN@
CC = @CC@
CCAS = @CCAS@
CCASDEPMODE = @CCASDEPMODE@
CCASFLAGS = @CCASFLAGS@
CCDEPMODE = @CCDEPMODE@
CFLAGS = @CFLAGS@
CFLAGS_WITHOUT_OPTFLAGS = @CFLAGS_WITHOUT_OPTFLAGS@
CLEANFILES = @CLEANFILES@
CONFIGURE_DEPENDENCIES = @CONFIGURE_DEPENDENCIES@
CPP = @CPP@
CPPFLAGS = @CPPFLAGS@
CRAY_UDREG_CFLAGS = @CRAY_UDREG_CFLAGS@
CRAY_UDREG_LIBS = @CRAY_UDREG_LIBS@
CRAY_UGNI_CFLAGS = @CRAY_UGNI_CFLAGS@
CRAY_UGNI_LIBS = @CRAY_UGNI_LIBS@
CRAY_XPMEM_CFLAGS = @CRAY_XPMEM_CFLAGS@
CRAY_XPMEM_LIBS = @CRAY_XPMEM_LIBS@
CRAY_XPMEM_STATIC_LIBS = @CRAY_XPMEM_STATIC_LIBS@
CSCOPE = @CSCOPE@
CTAGS = @CTAGS@
CXX = @CXX@
CXXCPP = @CXXCPP@
CXXDEPMODE = @CXXDEPMODE@
CXXFLAGS = @CXXFLAGS@
CYGPATH_W = @CYGPATH_W@
DEBUGGER_CFLAGS = @DEBUGGER_CFLAGS@
DEFS = @DEFS@
DEPDIR = @DEPDIR@
DLLTOOL = @DLLTOOL@
DSYMUTIL = @DSYMUTIL@
DUMPBIN = @DUMPBIN@
ECHO_C = @ECHO_C@
ECHO_N = @ECHO_N@
ECHO_T = @ECHO_T@
EGREP = @EGREP@
ETAGS = @ETAGS@
EXEEXT = @EXEEXT@
FC = @FC@
FCFLAGS = @FCFLAGS@
FCFLAGS_f = @FCFLAGS_f@
FCFLAGS_f90 = @FCFLAGS_f90@
FFLAGS = @FFLAGS@
FGREP = @FGREP@
GREP = @GREP@
GZIP_BIN = @GZIP_BIN@
INSTALL = @INSTALL@
INSTALL_DATA = @INSTALL_DATA@
INSTALL_PROGRAM = @INSTALL_PROGRAM@
INSTALL_SCRIPT = @INSTALL_SCRIPT@
INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@
JAR = @JAR@
JAVAC = @JAVAC@
JAVADOC = @JAVADOC@
JAVAH = @JAVAH@
LD = @LD@
LDFLAGS = @LDFLAGS@
LEX = @LEX@
LEXLIB = @LEXLIB@
LEX_OUTPUT_ROOT = @LEX_OUTPUT_ROOT@
LIBOBJS = @LIBOBJS@
LIBS = @LIBS@
LIBTOOL = @LIBTOOL@
LIPO = @LIPO@
LN_S = @LN_S@
LTLIBOBJS = @LTLIBOBJS@
LT_SYS_LIBRARY_PATH = @LT_SYS_LIBRARY_PATH@
MAKEINFO = @MAKEINFO@
MANIFEST_TOOL = @MANIFEST_TOOL@
MCA_BUILD_OP_AVX2_FLAGS = @MCA_BUILD_OP_AVX2_FLAGS@
MCA_BUILD_OP_AVX512_FLAGS = @MCA_BUILD_OP_AVX512_FLAGS@
MCA_BUILD_OP_AVX_FLAGS = @MCA_BUILD_OP_AVX_FLAGS@
MCA_BUILD_ompi_op_has_neon_fp_support = @MCA_BUILD_ompi_op_has_neon_fp_support@
MCA_BUILD_ompi_op_has_neon_support = @MCA_BUILD_ompi_op_has_neon_support@
MCA_BUILD_ompi_op_has_sve_support = @MCA_BUILD_ompi_op_has_sve_support@
MCA_PROJECT_DIST_SUBDIRS = @MCA_PROJECT_DIST_SUBDIRS@
MCA_PROJECT_SUBDIRS = @MCA_PROJECT_SUBDIRS@
MCA_ompi_FRAMEWORKS = @MCA_ompi_FRAMEWORKS@
MCA_ompi_FRAMEWORKS_SUBDIRS = @MCA_ompi_FRAMEWORKS_SUBDIRS@
MCA_ompi_FRAMEWORK_COMPONENT_ALL_SUBDIRS = @MCA_ompi_FRAMEWORK_COMPONENT_ALL_SUBDIRS@
MCA_ompi_FRAMEWORK_COMPONENT_DSO_SUBDIRS = @MCA_ompi_FRAMEWORK_COMPONENT_DSO_SUBDIRS@
MCA_ompi_FRAMEWORK_COMPONENT_STATIC_SUBDIRS = @MCA_ompi_FRAMEWORK_COMPONENT_STATIC_SUBDIRS@
MCA_ompi_FRAMEWORK_CORE_LIBS = @MCA_ompi_FRAMEWORK_CORE_LIBS@
MCA_ompi_FRAMEWORK_LIBS = @MCA_ompi_FRAMEWORK_LIBS@
MCA_ompi_bml_ALL_COMPONENTS = @MCA_ompi_bml_ALL_COMPONENTS@
MCA_ompi_bml_ALL_SUBDIRS = @MCA_ompi_bml_ALL_SUBDIRS@
MCA_ompi_bml_DSO_COMPONENTS = @MCA_ompi_bml_DSO_COMPONENTS@
MCA_ompi_bml_DSO_SUBDIRS = @MCA_ompi_bml_DSO_SUBDIRS@
MCA_ompi_bml_STATIC_COMPONENTS = @MCA_ompi_bml_STATIC_COMPONENTS@
MCA_ompi_bml_STATIC_LTLIBS = @MCA_ompi_bml_STATIC_LTLIBS@
MCA_ompi_bml_STATIC_SUBDIRS = @MCA_ompi_bml_STATIC_SUBDIRS@
MCA_ompi_coll_ALL_COMPONENTS = @MCA_ompi_coll_ALL_COMPONENTS@
MCA_ompi_coll_ALL_SUBDIRS = @MCA_ompi_coll_ALL_SUBDIRS@
MCA_ompi_coll_DSO_COMPONENTS = @MCA_ompi_coll_DSO_COMPONENTS@
MCA_ompi_coll_DSO_SUBDIRS = @MCA_ompi_coll_DSO_SUBDIRS@
MCA_ompi_coll_STATIC_COMPONENTS = @MCA_ompi_coll_STATIC_COMPONENTS@
MCA_ompi_coll_STATIC_LTLIBS = @MCA_ompi_coll_STATIC_LTLIBS@
MCA_ompi_coll_STATIC_SUBDIRS = @MCA_ompi_coll_STATIC_SUBDIRS@
MCA_ompi_common_ALL_COMPONENTS = @MCA_ompi_common_ALL_COMPONENTS@
MCA_ompi_common_ALL_SUBDIRS = @MCA_ompi_common_ALL_SUBDIRS@
MCA_ompi_common_DSO_COMPONENTS = @MCA_ompi_common_DSO_COMPONENTS@
MCA_ompi_common_DSO_SUBDIRS = @MCA_ompi_common_DSO_SUBDIRS@
MCA_ompi_common_STATIC_COMPONENTS = @MCA_ompi_common_STATIC_COMPONENTS@
MCA_ompi_common_STATIC_LTLIBS = @MCA_ompi_common_STATIC_LTLIBS@
MCA_ompi_common_STATIC_SUBDIRS = @MCA_ompi_common_STATIC_SUBDIRS@
MCA_ompi_fbtl_ALL_COMPONENTS = @MCA_ompi_fbtl_ALL_COMPONENTS@
MCA_ompi_fbtl_ALL_SUBDIRS = @MCA_ompi_fbtl_ALL_SUBDIRS@
MCA_ompi_fbtl_DSO_COMPONENTS = @MCA_ompi_fbtl_DSO_COMPONENTS@
MCA_ompi_fbtl_DSO_SUBDIRS = @MCA_ompi_fbtl_DSO_SUBDIRS@
MCA_ompi_fbtl_STATIC_COMPONENTS = @MCA_ompi_fbtl_STATIC_COMPONENTS@
MCA_ompi_fbtl_STATIC_LTLIBS = @MCA_ompi_fbtl_STATIC_LTLIBS@
MCA_ompi_fbtl_STATIC_SUBDIRS = @MCA_ompi_fbtl_STATIC_SUBDIRS@
MCA_ompi_fcoll_ALL_COMPONENTS = @MCA_ompi_fcoll_ALL_COMPONENTS@
MCA_ompi_fcoll_ALL_SUBDIRS = @MCA_ompi_fcoll_ALL_SUBDIRS@
MCA_ompi_fcoll_DSO_COMPONENTS = @MCA_ompi_fcoll_DSO_COMPONENTS@
MCA_ompi_fcoll_DSO_SUBDIRS = @MCA_ompi_fcoll_DSO_SUBDIRS@
MCA_ompi_fcoll_STATIC_COMPONENTS = @MCA_ompi_fcoll_STATIC_COMPONENTS@
MCA_ompi_fcoll_STATIC_LTLIBS = @MCA_ompi_fcoll_STATIC_LTLIBS@
MCA_ompi_fcoll_STATIC_SUBDIRS = @MCA_ompi_fcoll_STATIC_SUBDIRS@
MCA_ompi_fs_ALL_COMPONENTS = @MCA_ompi_fs_ALL_COMPONENTS@
MCA_ompi_fs_ALL_SUBDIRS = @MCA_ompi_fs_ALL_SUBDIRS@
MCA_ompi_fs_DSO_COMPONENTS = @MCA_ompi_fs_DSO_COMPONENTS@
MCA_ompi_fs_DSO_SUBDIRS = @MCA_ompi_fs_DSO_SUBDIRS@
MCA_ompi_fs_STATIC_COMPONENTS = @MCA_ompi_fs_STATIC_COMPONENTS@
MCA_ompi_fs_STATIC_LTLIBS = @MCA_ompi_fs_STATIC_LTLIBS@
MCA_ompi_fs_STATIC_SUBDIRS = @MCA_ompi_fs_STATIC_SUBDIRS@
MCA_ompi_hook_ALL_COMPONENTS = @MCA_ompi_hook_ALL_COMPONENTS@
MCA_ompi_hook_ALL_SUBDIRS = @MCA_ompi_hook_ALL_SUBDIRS@
MCA_ompi_hook_DSO_COMPONENTS = @MCA_ompi_hook_DSO_COMPONENTS@
MCA_ompi_hook_DSO_SUBDIRS = @MCA_ompi_hook_DSO_SUBDIRS@
MCA_ompi_hook_STATIC_COMPONENTS = @MCA_ompi_hook_STATIC_COMPONENTS@
MCA_ompi_hook_STATIC_LTLIBS = @MCA_ompi_hook_STATIC_LTLIBS@
MCA_ompi_hook_STATIC_SUBDIRS = @MCA_ompi_hook_STATIC_SUBDIRS@
MCA_ompi_io_ALL_COMPONENTS = @MCA_ompi_io_ALL_COMPONENTS@
MCA_ompi_io_ALL_SUBDIRS = @MCA_ompi_io_ALL_SUBDIRS@
MCA_ompi_io_DSO_COMPONENTS = @MCA_ompi_io_DSO_COMPONENTS@
MCA_ompi_io_DSO_SUBDIRS = @MCA_ompi_io_DSO_SUBDIRS@
MCA_ompi_io_STATIC_COMPONENTS = @MCA_ompi_io_STATIC_COMPONENTS@
MCA_ompi_io_STATIC_LTLIBS = @MCA_ompi_io_STATIC_LTLIBS@
MCA_ompi_io_STATIC_SUBDIRS = @MCA_ompi_io_STATIC_SUBDIRS@
MCA_ompi_mtl_ALL_COMPONENTS = @MCA_ompi_mtl_ALL_COMPONENTS@
MCA_ompi_mtl_ALL_SUBDIRS = @MCA_ompi_mtl_ALL_SUBDIRS@
MCA_ompi_mtl_DIRECT_CALL_HEADER = @MCA_ompi_mtl_DIRECT_CALL_HEADER@
MCA_ompi_mtl_DSO_COMPONENTS = @MCA_ompi_mtl_DSO_COMPONENTS@
MCA_ompi_mtl_DSO_SUBDIRS = @MCA_ompi_mtl_DSO_SUBDIRS@
MCA_ompi_mtl_STATIC_COMPONENTS = @MCA_ompi_mtl_STATIC_COMPONENTS@
MCA_ompi_mtl_STATIC_LTLIBS = @MCA_ompi_mtl_STATIC_LTLIBS@
MCA_ompi_mtl_STATIC_SUBDIRS = @MCA_ompi_mtl_STATIC_SUBDIRS@
MCA_ompi_op_ALL_COMPONENTS = @MCA_ompi_op_ALL_COMPONENTS@
MCA_ompi_op_ALL_SUBDIRS = @MCA_ompi_op_ALL_SUBDIRS@
MCA_ompi_op_DSO_COMPONENTS = @MCA_ompi_op_DSO_COMPONENTS@
MCA_ompi_op_DSO_SUBDIRS = @MCA_ompi_op_DSO_SUBDIRS@
MCA_ompi_op_STATIC_COMPONENTS = @MCA_ompi_op_STATIC_COMPONENTS@
MCA_ompi_op_STATIC_LTLIBS = @MCA_ompi_op_STATIC_LTLIBS@
MCA_ompi_op_STATIC_SUBDIRS = @MCA_ompi_op_STATIC_SUBDIRS@
MCA_ompi_osc_ALL_COMPONENTS = @MCA_ompi_osc_ALL_COMPONENTS@
MCA_ompi_osc_ALL_SUBDIRS = @MCA_ompi_osc_ALL_SUBDIRS@
MCA_ompi_osc_DSO_COMPONENTS = @MCA_ompi_osc_DSO_COMPONENTS@
MCA_ompi_osc_DSO_SUBDIRS = @MCA_ompi_osc_DSO_SUBDIRS@
MCA_ompi_osc_STATIC_COMPONENTS = @MCA_ompi_osc_STATIC_COMPONENTS@
MCA_ompi_osc_STATIC_LTLIBS = @MCA_ompi_osc_STATIC_LTLIBS@
MCA_ompi_osc_STATIC_SUBDIRS = @MCA_ompi_osc_STATIC_SUBDIRS@
MCA_ompi_part_ALL_COMPONENTS = @MCA_ompi_part_ALL_COMPONENTS@
MCA_ompi_part_ALL_SUBDIRS = @MCA_ompi_part_ALL_SUBDIRS@
MCA_ompi_part_DIRECT_CALL_HEADER = @MCA_ompi_part_DIRECT_CALL_HEADER@
MCA_ompi_part_DSO_COMPONENTS = @MCA_ompi_part_DSO_COMPONENTS@
MCA_ompi_part_DSO_SUBDIRS = @MCA_ompi_part_DSO_SUBDIRS@
MCA_ompi_part_STATIC_COMPONENTS = @MCA_ompi_part_STATIC_COMPONENTS@
MCA_ompi_part_STATIC_LTLIBS = @MCA_ompi_part_STATIC_LTLIBS@
MCA_ompi_part_STATIC_SUBDIRS = @MCA_ompi_part_STATIC_SUBDIRS@
MCA_ompi_pml_ALL_COMPONENTS = @MCA_ompi_pml_ALL_COMPONENTS@
MCA_ompi_pml_ALL_SUBDIRS = @MCA_ompi_pml_ALL_SUBDIRS@
MCA_ompi_pml_DIRECT_CALL_HEADER = @MCA_ompi_pml_DIRECT_CALL_HEADER@
MCA_ompi_pml_DSO_COMPONENTS = @MCA_ompi_pml_DSO_COMPONENTS@
MCA_ompi_pml_DSO_SUBDIRS = @MCA_ompi_pml_DSO_SUBDIRS@
MCA_ompi_pml_STATIC_COMPONENTS = @MCA_ompi_pml_STATIC_COMPONENTS@
MCA_ompi_pml_STATIC_LTLIBS = @MCA_ompi_pml_STATIC_LTLIBS@
MCA_ompi_pml_STATIC_SUBDIRS = @MCA_ompi_pml_STATIC_SUBDIRS@
MCA_ompi_sharedfp_ALL_COMPONENTS = @MCA_ompi_sharedfp_ALL_COMPONENTS@
MCA_ompi_sharedfp_ALL_SUBDIRS = @MCA_ompi_sharedfp_ALL_SUBDIRS@
MCA_ompi_sharedfp_DSO_COMPONENTS = @MCA_ompi_sharedfp_DSO_COMPONENTS@
MCA_ompi_sharedfp_DSO_SUBDIRS = @MCA_ompi_sharedfp_DSO_SUBDIRS@
MCA_ompi_sharedfp_STATIC_COMPONENTS = @MCA_ompi_sharedfp_STATIC_COMPONENTS@
MCA_ompi_sharedfp_STATIC_LTLIBS = @MCA_ompi_sharedfp_STATIC_LTLIBS@
MCA_ompi_sharedfp_STATIC_SUBDIRS = @MCA_ompi_sharedfp_STATIC_SUBDIRS@
MCA_ompi_topo_ALL_COMPONENTS = @MCA_ompi_topo_ALL_COMPONENTS@
MCA_ompi_topo_ALL_SUBDIRS = @MCA_ompi_topo_ALL_SUBDIRS@
MCA_ompi_topo_DSO_COMPONENTS = @MCA_ompi_topo_DSO_COMPONENTS@
MCA_ompi_topo_DSO_SUBDIRS = @MCA_ompi_topo_DSO_SUBDIRS@
MCA_ompi_topo_STATIC_COMPONENTS = @MCA_ompi_topo_STATIC_COMPONENTS@
MCA_ompi_topo_STATIC_LTLIBS = @MCA_ompi_topo_STATIC_LTLIBS@
MCA_ompi_topo_STATIC_SUBDIRS = @MCA_ompi_topo_STATIC_SUBDIRS@
MCA_ompi_vprotocol_ALL_COMPONENTS = @MCA_ompi_vprotocol_ALL_COMPONENTS@
MCA_ompi_vprotocol_ALL_SUBDIRS = @MCA_ompi_vprotocol_ALL_SUBDIRS@
MCA_ompi_vprotocol_DSO_COMPONENTS = @MCA_ompi_vprotocol_DSO_COMPONENTS@
MCA_ompi_vprotocol_DSO_SUBDIRS = @MCA_ompi_vprotocol_DSO_SUBDIRS@
MCA_ompi_vprotocol_STATIC_COMPONENTS = @MCA_ompi_vprotocol_STATIC_COMPONENTS@
MCA_ompi_vprotocol_STATIC_LTLIBS = @MCA_ompi_vprotocol_STATIC_LTLIBS@
MCA_ompi_vprotocol_STATIC_SUBDIRS = @MCA_ompi_vprotocol_STATIC_SUBDIRS@
MCA_opal_FRAMEWORKS = @MCA_opal_FRAMEWORKS@
MCA_opal_FRAMEWORKS_SUBDIRS = @MCA_opal_FRAMEWORKS_SUBDIRS@
MCA_opal_FRAMEWORK_COMPONENT_ALL_SUBDIRS = @MCA_opal_FRAMEWORK_COMPONENT_ALL_SUBDIRS@
MCA_opal_FRAMEWORK_COMPONENT_DSO_SUBDIRS = @MCA_opal_FRAMEWORK_COMPONENT_DSO_SUBDIRS@
MCA_opal_FRAMEWORK_COMPONENT_STATIC_SUBDIRS = @MCA_opal_FRAMEWORK_COMPONENT_STATIC_SUBDIRS@
MCA_opal_FRAMEWORK_CORE_LIBS = @MCA_opal_FRAMEWORK_CORE_LIBS@
MCA_opal_FRAMEWORK_LIBS = @MCA_opal_FRAMEWORK_LIBS@
MCA_opal_accelerator_ALL_COMPONENTS = @MCA_opal_accelerator_ALL_COMPONENTS@
MCA_opal_accelerator_ALL_SUBDIRS = @MCA_opal_accelerator_ALL_SUBDIRS@
MCA_opal_accelerator_DSO_COMPONENTS = @MCA_opal_accelerator_DSO_COMPONENTS@
MCA_opal_accelerator_DSO_SUBDIRS = @MCA_opal_accelerator_DSO_SUBDIRS@
MCA_opal_accelerator_STATIC_COMPONENTS = @MCA_opal_accelerator_STATIC_COMPONENTS@
MCA_opal_accelerator_STATIC_LTLIBS = @MCA_opal_accelerator_STATIC_LTLIBS@
MCA_opal_accelerator_STATIC_SUBDIRS = @MCA_opal_accelerator_STATIC_SUBDIRS@
MCA_opal_allocator_ALL_COMPONENTS = @MCA_opal_allocator_ALL_COMPONENTS@
MCA_opal_allocator_ALL_SUBDIRS = @MCA_opal_allocator_ALL_SUBDIRS@
MCA_opal_allocator_DSO_COMPONENTS = @MCA_opal_allocator_DSO_COMPONENTS@
MCA_opal_allocator_DSO_SUBDIRS = @MCA_opal_allocator_DSO_SUBDIRS@
MCA_opal_allocator_STATIC_COMPONENTS = @MCA_opal_allocator_STATIC_COMPONENTS@
MCA_opal_allocator_STATIC_LTLIBS = @MCA_opal_allocator_STATIC_LTLIBS@
MCA_opal_allocator_STATIC_SUBDIRS = @MCA_opal_allocator_STATIC_SUBDIRS@
MCA_opal_backtrace_ALL_COMPONENTS = @MCA_opal_backtrace_ALL_COMPONENTS@
MCA_opal_backtrace_ALL_SUBDIRS = @MCA_opal_backtrace_ALL_SUBDIRS@
MCA_opal_backtrace_DSO_COMPONENTS = @MCA_opal_backtrace_DSO_COMPONENTS@
MCA_opal_backtrace_DSO_SUBDIRS = @MCA_opal_backtrace_DSO_SUBDIRS@
MCA_opal_backtrace_STATIC_COMPONENTS = @MCA_opal_backtrace_STATIC_COMPONENTS@
MCA_opal_backtrace_STATIC_LTLIBS = @MCA_opal_backtrace_STATIC_LTLIBS@
MCA_opal_backtrace_STATIC_SUBDIRS = @MCA_opal_backtrace_STATIC_SUBDIRS@
MCA_opal_btl_ALL_COMPONENTS = @MCA_opal_btl_ALL_COMPONENTS@
MCA_opal_btl_ALL_SUBDIRS = @MCA_opal_btl_ALL_SUBDIRS@
MCA_opal_btl_DSO_COMPONENTS = @MCA_opal_btl_DSO_COMPONENTS@
MCA_opal_btl_DSO_SUBDIRS = @MCA_opal_btl_DSO_SUBDIRS@
MCA_opal_btl_STATIC_COMPONENTS = @MCA_opal_btl_STATIC_COMPONENTS@
MCA_opal_btl_STATIC_LTLIBS = @MCA_opal_btl_STATIC_LTLIBS@
MCA_opal_btl_STATIC_SUBDIRS = @MCA_opal_btl_STATIC_SUBDIRS@
MCA_opal_common_ALL_COMPONENTS = @MCA_opal_common_ALL_COMPONENTS@
MCA_opal_common_ALL_SUBDIRS = @MCA_opal_common_ALL_SUBDIRS@
MCA_opal_common_DSO_COMPONENTS = @MCA_opal_common_DSO_COMPONENTS@
MCA_opal_common_DSO_SUBDIRS = @MCA_opal_common_DSO_SUBDIRS@
MCA_opal_common_STATIC_COMPONENTS = @MCA_opal_common_STATIC_COMPONENTS@
MCA_opal_common_STATIC_LTLIBS = @MCA_opal_common_STATIC_LTLIBS@
MCA_opal_common_STATIC_SUBDIRS = @MCA_opal_common_STATIC_SUBDIRS@
MCA_opal_dl_ALL_COMPONENTS = @MCA_opal_dl_ALL_COMPONENTS@
MCA_opal_dl_ALL_SUBDIRS = @MCA_opal_dl_ALL_SUBDIRS@
MCA_opal_dl_DSO_COMPONENTS = @MCA_opal_dl_DSO_COMPONENTS@
MCA_opal_dl_DSO_SUBDIRS = @MCA_opal_dl_DSO_SUBDIRS@
MCA_opal_dl_STATIC_COMPONENTS = @MCA_opal_dl_STATIC_COMPONENTS@
MCA_opal_dl_STATIC_LTLIBS = @MCA_opal_dl_STATIC_LTLIBS@
MCA_opal_dl_STATIC_SUBDIRS = @MCA_opal_dl_STATIC_SUBDIRS@
MCA_opal_if_ALL_COMPONENTS = @MCA_opal_if_ALL_COMPONENTS@
MCA_opal_if_ALL_SUBDIRS = @MCA_opal_if_ALL_SUBDIRS@
MCA_opal_if_DSO_COMPONENTS = @MCA_opal_if_DSO_COMPONENTS@
MCA_opal_if_DSO_SUBDIRS = @MCA_opal_if_DSO_SUBDIRS@
MCA_opal_if_STATIC_COMPONENTS = @MCA_opal_if_STATIC_COMPONENTS@
MCA_opal_if_STATIC_LTLIBS = @MCA_opal_if_STATIC_LTLIBS@
MCA_opal_if_STATIC_SUBDIRS = @MCA_opal_if_STATIC_SUBDIRS@
MCA_opal_installdirs_ALL_COMPONENTS = @MCA_opal_installdirs_ALL_COMPONENTS@
MCA_opal_installdirs_ALL_SUBDIRS = @MCA_opal_installdirs_ALL_SUBDIRS@
MCA_opal_installdirs_DSO_COMPONENTS = @MCA_opal_installdirs_DSO_COMPONENTS@
MCA_opal_installdirs_DSO_SUBDIRS = @MCA_opal_installdirs_DSO_SUBDIRS@
MCA_opal_installdirs_STATIC_COMPONENTS = @MCA_opal_installdirs_STATIC_COMPONENTS@
MCA_opal_installdirs_STATIC_LTLIBS = @MCA_opal_installdirs_STATIC_LTLIBS@
MCA_opal_installdirs_STATIC_SUBDIRS = @MCA_opal_installdirs_STATIC_SUBDIRS@
MCA_opal_memchecker_ALL_COMPONENTS = @MCA_opal_memchecker_ALL_COMPONENTS@
MCA_opal_memchecker_ALL_SUBDIRS = @MCA_opal_memchecker_ALL_SUBDIRS@
MCA_opal_memchecker_DSO_COMPONENTS = @MCA_opal_memchecker_DSO_COMPONENTS@
MCA_opal_memchecker_DSO_SUBDIRS = @MCA_opal_memchecker_DSO_SUBDIRS@
MCA_opal_memchecker_STATIC_COMPONENTS = @MCA_opal_memchecker_STATIC_COMPONENTS@
MCA_opal_memchecker_STATIC_LTLIBS = @MCA_opal_memchecker_STATIC_LTLIBS@
MCA_opal_memchecker_STATIC_SUBDIRS = @MCA_opal_memchecker_STATIC_SUBDIRS@
MCA_opal_memcpy_ALL_COMPONENTS = @MCA_opal_memcpy_ALL_COMPONENTS@
MCA_opal_memcpy_ALL_SUBDIRS = @MCA_opal_memcpy_ALL_SUBDIRS@
MCA_opal_memcpy_DSO_COMPONENTS = @MCA_opal_memcpy_DSO_COMPONENTS@
MCA_opal_memcpy_DSO_SUBDIRS = @MCA_opal_memcpy_DSO_SUBDIRS@
MCA_opal_memcpy_STATIC_COMPONENTS = @MCA_opal_memcpy_STATIC_COMPONENTS@
MCA_opal_memcpy_STATIC_LTLIBS = @MCA_opal_memcpy_STATIC_LTLIBS@
MCA_opal_memcpy_STATIC_SUBDIRS = @MCA_opal_memcpy_STATIC_SUBDIRS@
MCA_opal_memory_ALL_COMPONENTS = @MCA_opal_memory_ALL_COMPONENTS@
MCA_opal_memory_ALL_SUBDIRS = @MCA_opal_memory_ALL_SUBDIRS@
MCA_opal_memory_DSO_COMPONENTS = @MCA_opal_memory_DSO_COMPONENTS@
MCA_opal_memory_DSO_SUBDIRS = @MCA_opal_memory_DSO_SUBDIRS@
MCA_opal_memory_STATIC_COMPONENTS = @MCA_opal_memory_STATIC_COMPONENTS@
MCA_opal_memory_STATIC_LTLIBS = @MCA_opal_memory_STATIC_LTLIBS@
MCA_opal_memory_STATIC_SUBDIRS = @MCA_opal_memory_STATIC_SUBDIRS@
MCA_opal_mpool_ALL_COMPONENTS = @MCA_opal_mpool_ALL_COMPONENTS@
MCA_opal_mpool_ALL_SUBDIRS = @MCA_opal_mpool_ALL_SUBDIRS@
MCA_opal_mpool_DSO_COMPONENTS = @MCA_opal_mpool_DSO_COMPONENTS@
MCA_opal_mpool_DSO_SUBDIRS = @MCA_opal_mpool_DSO_SUBDIRS@
MCA_opal_mpool_STATIC_COMPONENTS = @MCA_opal_mpool_STATIC_COMPONENTS@
MCA_opal_mpool_STATIC_LTLIBS = @MCA_opal_mpool_STATIC_LTLIBS@
MCA_opal_mpool_STATIC_SUBDIRS = @MCA_opal_mpool_STATIC_SUBDIRS@
MCA_opal_patcher_ALL_COMPONENTS = @MCA_opal_patcher_ALL_COMPONENTS@
MCA_opal_patcher_ALL_SUBDIRS = @MCA_opal_patcher_ALL_SUBDIRS@
MCA_opal_patcher_DSO_COMPONENTS = @MCA_opal_patcher_DSO_COMPONENTS@
MCA_opal_patcher_DSO_SUBDIRS = @MCA_opal_patcher_DSO_SUBDIRS@
MCA_opal_patcher_STATIC_COMPONENTS = @MCA_opal_patcher_STATIC_COMPONENTS@
MCA_opal_patcher_STATIC_LTLIBS = @MCA_opal_patcher_STATIC_LTLIBS@
MCA_opal_patcher_STATIC_SUBDIRS = @MCA_opal_patcher_STATIC_SUBDIRS@
MCA_opal_rcache_ALL_COMPONENTS = @MCA_opal_rcache_ALL_COMPONENTS@
MCA_opal_rcache_ALL_SUBDIRS = @MCA_opal_rcache_ALL_SUBDIRS@
MCA_opal_rcache_DSO_COMPONENTS = @MCA_opal_rcache_DSO_COMPONENTS@
MCA_opal_rcache_DSO_SUBDIRS = @MCA_opal_rcache_DSO_SUBDIRS@
MCA_opal_rcache_STATIC_COMPONENTS = @MCA_opal_rcache_STATIC_COMPONENTS@
MCA_opal_rcache_STATIC_LTLIBS = @MCA_opal_rcache_STATIC_LTLIBS@
MCA_opal_rcache_STATIC_SUBDIRS = @MCA_opal_rcache_STATIC_SUBDIRS@
MCA_opal_reachable_ALL_COMPONENTS = @MCA_opal_reachable_ALL_COMPONENTS@
MCA_opal_reachable_ALL_SUBDIRS = @MCA_opal_reachable_ALL_SUBDIRS@
MCA_opal_reachable_DSO_COMPONENTS = @MCA_opal_reachable_DSO_COMPONENTS@
MCA_opal_reachable_DSO_SUBDIRS = @MCA_opal_reachable_DSO_SUBDIRS@
MCA_opal_reachable_STATIC_COMPONENTS = @MCA_opal_reachable_STATIC_COMPONENTS@
MCA_opal_reachable_STATIC_LTLIBS = @MCA_opal_reachable_STATIC_LTLIBS@
MCA_opal_reachable_STATIC_SUBDIRS = @MCA_opal_reachable_STATIC_SUBDIRS@
MCA_opal_shmem_ALL_COMPONENTS = @MCA_opal_shmem_ALL_COMPONENTS@
MCA_opal_shmem_ALL_SUBDIRS = @MCA_opal_shmem_ALL_SUBDIRS@
MCA_opal_shmem_DSO_COMPONENTS = @MCA_opal_shmem_DSO_COMPONENTS@
MCA_opal_shmem_DSO_SUBDIRS = @MCA_opal_shmem_DSO_SUBDIRS@
MCA_opal_shmem_STATIC_COMPONENTS = @MCA_opal_shmem_STATIC_COMPONENTS@
MCA_opal_shmem_STATIC_LTLIBS = @MCA_opal_shmem_STATIC_LTLIBS@
MCA_opal_shmem_STATIC_SUBDIRS = @MCA_opal_shmem_STATIC_SUBDIRS@
MCA_opal_smsc_ALL_COMPONENTS = @MCA_opal_smsc_ALL_COMPONENTS@
MCA_opal_smsc_ALL_SUBDIRS = @MCA_opal_smsc_ALL_SUBDIRS@
MCA_opal_smsc_DIRECT_CALL_HEADER = @MCA_opal_smsc_DIRECT_CALL_HEADER@
MCA_opal_smsc_DSO_COMPONENTS = @MCA_opal_smsc_DSO_COMPONENTS@
MCA_opal_smsc_DSO_SUBDIRS = @MCA_opal_smsc_DSO_SUBDIRS@
MCA_opal_smsc_STATIC_COMPONENTS = @MCA_opal_smsc_STATIC_COMPONENTS@
MCA_opal_smsc_STATIC_LTLIBS = @MCA_opal_smsc_STATIC_LTLIBS@
MCA_opal_smsc_STATIC_SUBDIRS = @MCA_opal_smsc_STATIC_SUBDIRS@
MCA_opal_threads_ALL_COMPONENTS = @MCA_opal_threads_ALL_COMPONENTS@
MCA_opal_threads_ALL_SUBDIRS = @MCA_opal_threads_ALL_SUBDIRS@
MCA_opal_threads_DSO_COMPONENTS = @MCA_opal_threads_DSO_COMPONENTS@
MCA_opal_threads_DSO_SUBDIRS = @MCA_opal_threads_DSO_SUBDIRS@
MCA_opal_threads_STATIC_COMPONENTS = @MCA_opal_threads_STATIC_COMPONENTS@
MCA_opal_threads_STATIC_LTLIBS = @MCA_opal_threads_STATIC_LTLIBS@
MCA_opal_threads_STATIC_SUBDIRS = @MCA_opal_threads_STATIC_SUBDIRS@
MCA_opal_timer_ALL_COMPONENTS = @MCA_opal_timer_ALL_COMPONENTS@
MCA_opal_timer_ALL_SUBDIRS = @MCA_opal_timer_ALL_SUBDIRS@
MCA_opal_timer_DSO_COMPONENTS = @MCA_opal_timer_DSO_COMPONENTS@
MCA_opal_timer_DSO_SUBDIRS = @MCA_opal_timer_DSO_SUBDIRS@
MCA_opal_timer_STATIC_COMPONENTS = @MCA_opal_timer_STATIC_COMPONENTS@
MCA_opal_timer_STATIC_LTLIBS = @MCA_opal_timer_STATIC_LTLIBS@
MCA_opal_timer_STATIC_SUBDIRS = @MCA_opal_timer_STATIC_SUBDIRS@
MCA_oshmem_FRAMEWORKS = @MCA_oshmem_FRAMEWORKS@
MCA_oshmem_FRAMEWORKS_SUBDIRS = @MCA_oshmem_FRAMEWORKS_SUBDIRS@
MCA_oshmem_FRAMEWORK_COMPONENT_ALL_SUBDIRS = @MCA_oshmem_FRAMEWORK_COMPONENT_ALL_SUBDIRS@
MCA_oshmem_FRAMEWORK_COMPONENT_DSO_SUBDIRS = @MCA_oshmem_FRAMEWORK_COMPONENT_DSO_SUBDIRS@
MCA_oshmem_FRAMEWORK_COMPONENT_STATIC_SUBDIRS = @MCA_oshmem_FRAMEWORK_COMPONENT_STATIC_SUBDIRS@
MCA_oshmem_FRAMEWORK_CORE_LIBS = @MCA_oshmem_FRAMEWORK_CORE_LIBS@
MCA_oshmem_FRAMEWORK_LIBS = @MCA_oshmem_FRAMEWORK_LIBS@
MCA_oshmem_atomic_ALL_COMPONENTS = @MCA_oshmem_atomic_ALL_COMPONENTS@
MCA_oshmem_atomic_ALL_SUBDIRS = @MCA_oshmem_atomic_ALL_SUBDIRS@
MCA_oshmem_atomic_DSO_COMPONENTS = @MCA_oshmem_atomic_DSO_COMPONENTS@
MCA_oshmem_atomic_DSO_SUBDIRS = @MCA_oshmem_atomic_DSO_SUBDIRS@
MCA_oshmem_atomic_STATIC_COMPONENTS = @MCA_oshmem_atomic_STATIC_COMPONENTS@
MCA_oshmem_atomic_STATIC_LTLIBS = @MCA_oshmem_atomic_STATIC_LTLIBS@
MCA_oshmem_atomic_STATIC_SUBDIRS = @MCA_oshmem_atomic_STATIC_SUBDIRS@
MCA_oshmem_memheap_ALL_COMPONENTS = @MCA_oshmem_memheap_ALL_COMPONENTS@
MCA_oshmem_memheap_ALL_SUBDIRS = @MCA_oshmem_memheap_ALL_SUBDIRS@
MCA_oshmem_memheap_DIRECT_CALL_HEADER = @MCA_oshmem_memheap_DIRECT_CALL_HEADER@
MCA_oshmem_memheap_DSO_COMPONENTS = @MCA_oshmem_memheap_DSO_COMPONENTS@
MCA_oshmem_memheap_DSO_SUBDIRS = @MCA_oshmem_memheap_DSO_SUBDIRS@
MCA_oshmem_memheap_STATIC_COMPONENTS = @MCA_oshmem_memheap_STATIC_COMPONENTS@
MCA_oshmem_memheap_STATIC_LTLIBS = @MCA_oshmem_memheap_STATIC_LTLIBS@
MCA_oshmem_memheap_STATIC_SUBDIRS = @MCA_oshmem_memheap_STATIC_SUBDIRS@
MCA_oshmem_scoll_ALL_COMPONENTS = @MCA_oshmem_scoll_ALL_COMPONENTS@
MCA_oshmem_scoll_ALL_SUBDIRS = @MCA_oshmem_scoll_ALL_SUBDIRS@
MCA_oshmem_scoll_DSO_COMPONENTS = @MCA_oshmem_scoll_DSO_COMPONENTS@
MCA_oshmem_scoll_DSO_SUBDIRS = @MCA_oshmem_scoll_DSO_SUBDIRS@
MCA_oshmem_scoll_STATIC_COMPONENTS = @MCA_oshmem_scoll_STATIC_COMPONENTS@
MCA_oshmem_scoll_STATIC_LTLIBS = @MCA_oshmem_scoll_STATIC_LTLIBS@
MCA_oshmem_scoll_STATIC_SUBDIRS = @MCA_oshmem_scoll_STATIC_SUBDIRS@
MCA_oshmem_spml_ALL_COMPONENTS = @MCA_oshmem_spml_ALL_COMPONENTS@
MCA_oshmem_spml_ALL_SUBDIRS = @MCA_oshmem_spml_ALL_SUBDIRS@
MCA_oshmem_spml_DIRECT_CALL_HEADER = @MCA_oshmem_spml_DIRECT_CALL_HEADER@
MCA_oshmem_spml_DSO_COMPONENTS = @MCA_oshmem_spml_DSO_COMPONENTS@
MCA_oshmem_spml_DSO_SUBDIRS = @MCA_oshmem_spml_DSO_SUBDIRS@
MCA_oshmem_spml_STATIC_COMPONENTS = @MCA_oshmem_spml_STATIC_COMPONENTS@
MCA_oshmem_spml_STATIC_LTLIBS = @MCA_oshmem_spml_STATIC_LTLIBS@
MCA_oshmem_spml_STATIC_SUBDIRS = @MCA_oshmem_spml_STATIC_SUBDIRS@
MCA_oshmem_sshmem_ALL_COMPONENTS = @MCA_oshmem_sshmem_ALL_COMPONENTS@
MCA_oshmem_sshmem_ALL_SUBDIRS = @MCA_oshmem_sshmem_ALL_SUBDIRS@
MCA_oshmem_sshmem_DSO_COMPONENTS = @MCA_oshmem_sshmem_DSO_COMPONENTS@
MCA_oshmem_sshmem_DSO_SUBDIRS = @MCA_oshmem_sshmem_DSO_SUBDIRS@
MCA_oshmem_sshmem_STATIC_COMPONENTS = @MCA_oshmem_sshmem_STATIC_COMPONENTS@
MCA_oshmem_sshmem_STATIC_LTLIBS = @MCA_oshmem_sshmem_STATIC_LTLIBS@
MCA_oshmem_sshmem_STATIC_SUBDIRS = @MCA_oshmem_sshmem_STATIC_SUBDIRS@
MKDIR_P = @MKDIR_P@
MPIR_UNWIND_CFLAGS = @MPIR_UNWIND_CFLAGS@
MPI_SUBVERSION = @MPI_SUBVERSION@
MPI_VERSION = @MPI_VERSION@
NM = @NM@
NMEDIT = @NMEDIT@
OBJDUMP = @OBJDUMP@
OBJEXT = @OBJEXT@
OMPI_ALIGNMENT_FORTRAN_CHARACTER = @OMPI_ALIGNMENT_FORTRAN_CHARACTER@
OMPI_ALIGNMENT_FORTRAN_COMPLEX = @OMPI_ALIGNMENT_FORTRAN_COMPLEX@
OMPI_ALIGNMENT_FORTRAN_COMPLEX16 = @OMPI_ALIGNMENT_FORTRAN_COMPLEX16@
OMPI_ALIGNMENT_FORTRAN_COMPLEX32 = @OMPI_ALIGNMENT_FORTRAN_COMPLEX32@
OMPI_ALIGNMENT_FORTRAN_COMPLEX4 = @OMPI_ALIGNMENT_FORTRAN_COMPLEX4@
OMPI_ALIGNMENT_FORTRAN_COMPLEX8 = @OMPI_ALIGNMENT_FORTRAN_COMPLEX8@
OMPI_ALIGNMENT_FORTRAN_DOUBLE_COMPLEX = @OMPI_ALIGNMENT_FORTRAN_DOUBLE_COMPLEX@
OMPI_ALIGNMENT_FORTRAN_DOUBLE_PRECISION = @OMPI_ALIGNMENT_FORTRAN_DOUBLE_PRECISION@
OMPI_ALIGNMENT_FORTRAN_INTEGER = @OMPI_ALIGNMENT_FORTRAN_INTEGER@
OMPI_ALIGNMENT_FORTRAN_INTEGER1 = @OMPI_ALIGNMENT_FORTRAN_INTEGER1@
OMPI_ALIGNMENT_FORTRAN_INTEGER16 = @OMPI_ALIGNMENT_FORTRAN_INTEGER16@
OMPI_ALIGNMENT_FORTRAN_INTEGER2 = @OMPI_ALIGNMENT_FORTRAN_INTEGER2@
OMPI_ALIGNMENT_FORTRAN_INTEGER4 = @OMPI_ALIGNMENT_FORTRAN_INTEGER4@
OMPI_ALIGNMENT_FORTRAN_INTEGER8 = @OMPI_ALIGNMENT_FORTRAN_INTEGER8@
OMPI_ALIGNMENT_FORTRAN_LOGICAL = @OMPI_ALIGNMENT_FORTRAN_LOGICAL@
OMPI_ALIGNMENT_FORTRAN_LOGICAL1 = @OMPI_ALIGNMENT_FORTRAN_LOGICAL1@
OMPI_ALIGNMENT_FORTRAN_LOGICAL2 = @OMPI_ALIGNMENT_FORTRAN_LOGICAL2@
OMPI_ALIGNMENT_FORTRAN_LOGICAL4 = @OMPI_ALIGNMENT_FORTRAN_LOGICAL4@
OMPI_ALIGNMENT_FORTRAN_LOGICAL8 = @OMPI_ALIGNMENT_FORTRAN_LOGICAL8@
OMPI_ALIGNMENT_FORTRAN_REAL = @OMPI_ALIGNMENT_FORTRAN_REAL@
OMPI_ALIGNMENT_FORTRAN_REAL16 = @OMPI_ALIGNMENT_FORTRAN_REAL16@
OMPI_ALIGNMENT_FORTRAN_REAL2 = @OMPI_ALIGNMENT_FORTRAN_REAL2@
OMPI_ALIGNMENT_FORTRAN_REAL4 = @OMPI_ALIGNMENT_FORTRAN_REAL4@
OMPI_ALIGNMENT_FORTRAN_REAL8 = @OMPI_ALIGNMENT_FORTRAN_REAL8@
OMPI_CXX_ABSOLUTE = @OMPI_CXX_ABSOLUTE@
OMPI_ENABLE_GREQUEST_EXTENSIONS = @OMPI_ENABLE_GREQUEST_EXTENSIONS@
OMPI_ENABLE_MPI1_COMPAT = @OMPI_ENABLE_MPI1_COMPAT@
OMPI_F08_SUFFIX = @OMPI_F08_SUFFIX@
OMPI_FC = @OMPI_FC@
OMPI_FC_ABSOLUTE = @OMPI_FC_ABSOLUTE@
OMPI_FC_MODULE_FLAG = @OMPI_FC_MODULE_FLAG@
OMPI_FORTRAN_BUILD_SIZEOF = @OMPI_FORTRAN_BUILD_SIZEOF@
OMPI_FORTRAN_CAPS = @OMPI_FORTRAN_CAPS@
OMPI_FORTRAN_CKINDS = @OMPI_FORTRAN_CKINDS@
OMPI_FORTRAN_DOUBLE_UNDERSCORE = @OMPI_FORTRAN_DOUBLE_UNDERSCORE@
OMPI_FORTRAN_ELEMENTAL_TYPE = @OMPI_FORTRAN_ELEMENTAL_TYPE@
OMPI_FORTRAN_EXTRA_SHARED_LIBRARY_FLAGS = @OMPI_FORTRAN_EXTRA_SHARED_LIBRARY_FLAGS@
OMPI_FORTRAN_F08_PREDECL = @OMPI_FORTRAN_F08_PREDECL@
OMPI_FORTRAN_F08_TYPE = @OMPI_FORTRAN_F08_TYPE@
OMPI_FORTRAN_HAVE_ABSTRACT = @OMPI_FORTRAN_HAVE_ABSTRACT@
OMPI_FORTRAN_HAVE_ASYNCHRONOUS = @OMPI_FORTRAN_HAVE_ASYNCHRONOUS@
OMPI_FORTRAN_HAVE_ATTR_DEPRECATED = @OMPI_FORTRAN_HAVE_ATTR_DEPRECATED@
OMPI_FORTRAN_HAVE_BIND_C = @OMPI_FORTRAN_HAVE_BIND_C@
OMPI_FORTRAN_HAVE_C_FUNLOC = @OMPI_FORTRAN_HAVE_C_FUNLOC@
OMPI_FORTRAN_HAVE_INTERFACE = @OMPI_FORTRAN_HAVE_INTERFACE@
OMPI_FORTRAN_HAVE_ISO_C_BINDING = @OMPI_FORTRAN_HAVE_ISO_C_BINDING@
OMPI_FORTRAN_HAVE_ISO_FORTRAN_ENV = @OMPI_FORTRAN_HAVE_ISO_FORTRAN_ENV@
OMPI_FORTRAN_HAVE_ISO_FORTRAN_ENV_REAL16 = @OMPI_FORTRAN_HAVE_ISO_FORTRAN_ENV_REAL16@
OMPI_FORTRAN_HAVE_PRIVATE = @OMPI_FORTRAN_HAVE_PRIVATE@
OMPI_FORTRAN_HAVE_PROCEDURE = @OMPI_FORTRAN_HAVE_PROCEDURE@
OMPI_FORTRAN_HAVE_STORAGE_SIZE = @OMPI_FORTRAN_HAVE_STORAGE_SIZE@
OMPI_FORTRAN_HAVE_TYPE_MPI_STATUS = @OMPI_FORTRAN_HAVE_TYPE_MPI_STATUS@
OMPI_FORTRAN_HAVE_USE_ONLY = @OMPI_FORTRAN_HAVE_USE_ONLY@
OMPI_FORTRAN_IGNORE_TKR_PREDECL = @OMPI_FORTRAN_IGNORE_TKR_PREDECL@
OMPI_FORTRAN_IGNORE_TKR_TYPE = @OMPI_FORTRAN_IGNORE_TKR_TYPE@
OMPI_FORTRAN_IKINDS = @OMPI_FORTRAN_IKINDS@
OMPI_FORTRAN_MAX_ARRAY_RANK = @OMPI_FORTRAN_MAX_ARRAY_RANK@
OMPI_FORTRAN_MODULEDIR = @OMPI_FORTRAN_MODULEDIR@
OMPI_FORTRAN_MPIFH_LINK = @OMPI_FORTRAN_MPIFH_LINK@
OMPI_FORTRAN_NEED_WRAPPER_ROUTINES = @OMPI_FORTRAN_NEED_WRAPPER_ROUTINES@
OMPI_FORTRAN_PLAIN = @OMPI_FORTRAN_PLAIN@
OMPI_FORTRAN_RKINDS = @OMPI_FORTRAN_RKINDS@
OMPI_FORTRAN_SINGLE_UNDERSCORE = @OMPI_FORTRAN_SINGLE_UNDERSCORE@
OMPI_FORTRAN_STATUS_SIZE = @OMPI_FORTRAN_STATUS_SIZE@
OMPI_FORTRAN_USEMPIF08_LIB = @OMPI_FORTRAN_USEMPIF08_LIB@
OMPI_FORTRAN_USEMPI_DIR = @OMPI_FORTRAN_USEMPI_DIR@
OMPI_FORTRAN_USEMPI_LIB = @OMPI_FORTRAN_USEMPI_LIB@
OMPI_F_SUFFIX = @OMPI_F_SUFFIX@
OMPI_GREEK_VERSION = @OMPI_GREEK_VERSION@
OMPI_HAVE_FORTRAN_CHARACTER = @OMPI_HAVE_FORTRAN_CHARACTER@
OMPI_HAVE_FORTRAN_COMPLEX = @OMPI_HAVE_FORTRAN_COMPLEX@
OMPI_HAVE_FORTRAN_COMPLEX16 = @OMPI_HAVE_FORTRAN_COMPLEX16@
OMPI_HAVE_FORTRAN_COMPLEX32 = @OMPI_HAVE_FORTRAN_COMPLEX32@
OMPI_HAVE_FORTRAN_COMPLEX4 = @OMPI_HAVE_FORTRAN_COMPLEX4@
OMPI_HAVE_FORTRAN_COMPLEX8 = @OMPI_HAVE_FORTRAN_COMPLEX8@
OMPI_HAVE_FORTRAN_DOUBLE_COMPLEX = @OMPI_HAVE_FORTRAN_DOUBLE_COMPLEX@
OMPI_HAVE_FORTRAN_DOUBLE_PRECISION = @OMPI_HAVE_FORTRAN_DOUBLE_PRECISION@
OMPI_HAVE_FORTRAN_INTEGER = @OMPI_HAVE_FORTRAN_INTEGER@
OMPI_HAVE_FORTRAN_INTEGER1 = @OMPI_HAVE_FORTRAN_INTEGER1@
OMPI_HAVE_FORTRAN_INTEGER16 = @OMPI_HAVE_FORTRAN_INTEGER16@
OMPI_HAVE_FORTRAN_INTEGER2 = @OMPI_HAVE_FORTRAN_INTEGER2@
OMPI_HAVE_FORTRAN_INTEGER4 = @OMPI_HAVE_FORTRAN_INTEGER4@
OMPI_HAVE_FORTRAN_INTEGER8 = @OMPI_HAVE_FORTRAN_INTEGER8@
OMPI_HAVE_FORTRAN_LOGICAL = @OMPI_HAVE_FORTRAN_LOGICAL@
OMPI_HAVE_FORTRAN_LOGICAL1 = @OMPI_HAVE_FORTRAN_LOGICAL1@
OMPI_HAVE_FORTRAN_LOGICAL2 = @OMPI_HAVE_FORTRAN_LOGICAL2@
OMPI_HAVE_FORTRAN_LOGICAL4 = @OMPI_HAVE_FORTRAN_LOGICAL4@
OMPI_HAVE_FORTRAN_LOGICAL8 = @OMPI_HAVE_FORTRAN_LOGICAL8@
OMPI_HAVE_FORTRAN_REAL = @OMPI_HAVE_FORTRAN_REAL@
OMPI_HAVE_FORTRAN_REAL16 = @OMPI_HAVE_FORTRAN_REAL16@
OMPI_HAVE_FORTRAN_REAL2 = @OMPI_HAVE_FORTRAN_REAL2@
OMPI_HAVE_FORTRAN_REAL4 = @OMPI_HAVE_FORTRAN_REAL4@
OMPI_HAVE_FORTRAN_REAL8 = @OMPI_HAVE_FORTRAN_REAL8@
OMPI_JDK_CPPFLAGS = @OMPI_JDK_CPPFLAGS@
OMPI_KIND_FORTRAN_CHARACTER = @OMPI_KIND_FORTRAN_CHARACTER@
OMPI_KIND_FORTRAN_COMPLEX = @OMPI_KIND_FORTRAN_COMPLEX@
OMPI_KIND_FORTRAN_COMPLEX16 = @OMPI_KIND_FORTRAN_COMPLEX16@
OMPI_KIND_FORTRAN_COMPLEX32 = @OMPI_KIND_FORTRAN_COMPLEX32@
OMPI_KIND_FORTRAN_COMPLEX4 = @OMPI_KIND_FORTRAN_COMPLEX4@
OMPI_KIND_FORTRAN_COMPLEX8 = @OMPI_KIND_FORTRAN_COMPLEX8@
OMPI_KIND_FORTRAN_DOUBLE_COMPLEX = @OMPI_KIND_FORTRAN_DOUBLE_COMPLEX@
OMPI_KIND_FORTRAN_DOUBLE_PRECISION = @OMPI_KIND_FORTRAN_DOUBLE_PRECISION@
OMPI_KIND_FORTRAN_INTEGER = @OMPI_KIND_FORTRAN_INTEGER@
OMPI_KIND_FORTRAN_INTEGER1 = @OMPI_KIND_FORTRAN_INTEGER1@
OMPI_KIND_FORTRAN_INTEGER16 = @OMPI_KIND_FORTRAN_INTEGER16@
OMPI_KIND_FORTRAN_INTEGER2 = @OMPI_KIND_FORTRAN_INTEGER2@
OMPI_KIND_FORTRAN_INTEGER4 = @OMPI_KIND_FORTRAN_INTEGER4@
OMPI_KIND_FORTRAN_INTEGER8 = @OMPI_KIND_FORTRAN_INTEGER8@
OMPI_KIND_FORTRAN_LOGICAL = @OMPI_KIND_FORTRAN_LOGICAL@
OMPI_KIND_FORTRAN_LOGICAL1 = @OMPI_KIND_FORTRAN_LOGICAL1@
OMPI_KIND_FORTRAN_LOGICAL2 = @OMPI_KIND_FORTRAN_LOGICAL2@
OMPI_KIND_FORTRAN_LOGICAL4 = @OMPI_KIND_FORTRAN_LOGICAL4@
OMPI_KIND_FORTRAN_LOGICAL8 = @OMPI_KIND_FORTRAN_LOGICAL8@
OMPI_KIND_FORTRAN_REAL = @OMPI_KIND_FORTRAN_REAL@
OMPI_KIND_FORTRAN_REAL16 = @OMPI_KIND_FORTRAN_REAL16@
OMPI_KIND_FORTRAN_REAL2 = @OMPI_KIND_FORTRAN_REAL2@
OMPI_KIND_FORTRAN_REAL4 = @OMPI_KIND_FORTRAN_REAL4@
OMPI_KIND_FORTRAN_REAL8 = @OMPI_KIND_FORTRAN_REAL8@
OMPI_LIBMPI_EXTRA_LDFLAGS = @OMPI_LIBMPI_EXTRA_LDFLAGS@
OMPI_LIBMPI_EXTRA_LIBS = @OMPI_LIBMPI_EXTRA_LIBS@
OMPI_LIBMPI_NAME = @OMPI_LIBMPI_NAME@
OMPI_MAJOR_VERSION = @OMPI_MAJOR_VERSION@
OMPI_MINOR_VERSION = @OMPI_MINOR_VERSION@
OMPI_MPIEXT_ALL_SUBDIRS = @OMPI_MPIEXT_ALL_SUBDIRS@
OMPI_MPIEXT_C_DIRS = @OMPI_MPIEXT_C_DIRS@
OMPI_MPIEXT_C_LIBS = @OMPI_MPIEXT_C_LIBS@
OMPI_MPIEXT_MPIFH_DIRS = @OMPI_MPIEXT_MPIFH_DIRS@
OMPI_MPIEXT_MPIFH_LIBS = @OMPI_MPIEXT_MPIFH_LIBS@
OMPI_MPIEXT_USEMPIF08_DIRS = @OMPI_MPIEXT_USEMPIF08_DIRS@
OMPI_MPIEXT_USEMPIF08_LIBS = @OMPI_MPIEXT_USEMPIF08_LIBS@
OMPI_MPIEXT_USEMPI_DIRS = @OMPI_MPIEXT_USEMPI_DIRS@
OMPI_MPIEXT_USEMPI_LIBS = @OMPI_MPIEXT_USEMPI_LIBS@
OMPI_MPIX_C_FLOAT16_FORTRAN_COMMENT_OUT = @OMPI_MPIX_C_FLOAT16_FORTRAN_COMMENT_OUT@
OMPI_MPIX_SHORT_FLOAT_IS_C_FLOAT16 = @OMPI_MPIX_SHORT_FLOAT_IS_C_FLOAT16@
OMPI_MPI_ADDRESS_KIND = @OMPI_MPI_ADDRESS_KIND@
OMPI_MPI_BIND_PREFIX = @OMPI_MPI_BIND_PREFIX@
OMPI_MPI_COUNT_KIND = @OMPI_MPI_COUNT_KIND@
OMPI_MPI_INTEGER_KIND = @OMPI_MPI_INTEGER_KIND@
OMPI_MPI_OFFSET_KIND = @OMPI_MPI_OFFSET_KIND@
OMPI_MPI_PREFIX = @OMPI_MPI_PREFIX@
OMPI_PC_CFLAGS = @OMPI_PC_CFLAGS@
OMPI_PC_FC_CFLAGS = @OMPI_PC_FC_CFLAGS@
OMPI_PC_FC_LIBS = @OMPI_PC_FC_LIBS@
OMPI_PC_FC_LIBS_PRIVATE = @OMPI_PC_FC_LIBS_PRIVATE@
OMPI_PC_LIBS = @OMPI_PC_LIBS@
OMPI_PC_LIBS_PRIVATE = @OMPI_PC_LIBS_PRIVATE@
OMPI_PC_MODULES = @OMPI_PC_MODULES@
OMPI_PC_MODULES_PRIVATE = @OMPI_PC_MODULES_PRIVATE@
OMPI_PRRTE_RST_CONTENT_DIR = @OMPI_PRRTE_RST_CONTENT_DIR@
OMPI_RELEASE_DATE = @OMPI_RELEASE_DATE@
OMPI_RELEASE_VERSION = @OMPI_RELEASE_VERSION@
OMPI_REPO_REV = @OMPI_REPO_REV@
OMPI_SCHIZO_OMPI_RST_CONTENT_DIR = @OMPI_SCHIZO_OMPI_RST_CONTENT_DIR@
OMPI_SIZEOF_FORTRAN_CHARACTER = @OMPI_SIZEOF_FORTRAN_CHARACTER@
OMPI_SIZEOF_FORTRAN_COMPLEX = @OMPI_SIZEOF_FORTRAN_COMPLEX@
OMPI_SIZEOF_FORTRAN_COMPLEX16 = @OMPI_SIZEOF_FORTRAN_COMPLEX16@
OMPI_SIZEOF_FORTRAN_COMPLEX32 = @OMPI_SIZEOF_FORTRAN_COMPLEX32@
OMPI_SIZEOF_FORTRAN_COMPLEX4 = @OMPI_SIZEOF_FORTRAN_COMPLEX4@
OMPI_SIZEOF_FORTRAN_COMPLEX8 = @OMPI_SIZEOF_FORTRAN_COMPLEX8@
OMPI_SIZEOF_FORTRAN_DOUBLE_COMPLEX = @OMPI_SIZEOF_FORTRAN_DOUBLE_COMPLEX@
OMPI_SIZEOF_FORTRAN_DOUBLE_PRECISION = @OMPI_SIZEOF_FORTRAN_DOUBLE_PRECISION@
OMPI_SIZEOF_FORTRAN_INTEGER = @OMPI_SIZEOF_FORTRAN_INTEGER@
OMPI_SIZEOF_FORTRAN_INTEGER1 = @OMPI_SIZEOF_FORTRAN_INTEGER1@
OMPI_SIZEOF_FORTRAN_INTEGER16 = @OMPI_SIZEOF_FORTRAN_INTEGER16@
OMPI_SIZEOF_FORTRAN_INTEGER2 = @OMPI_SIZEOF_FORTRAN_INTEGER2@
OMPI_SIZEOF_FORTRAN_INTEGER4 = @OMPI_SIZEOF_FORTRAN_INTEGER4@
OMPI_SIZEOF_FORTRAN_INTEGER8 = @OMPI_SIZEOF_FORTRAN_INTEGER8@
OMPI_SIZEOF_FORTRAN_LOGICAL = @OMPI_SIZEOF_FORTRAN_LOGICAL@
OMPI_SIZEOF_FORTRAN_LOGICAL1 = @OMPI_SIZEOF_FORTRAN_LOGICAL1@
OMPI_SIZEOF_FORTRAN_LOGICAL2 = @OMPI_SIZEOF_FORTRAN_LOGICAL2@
OMPI_SIZEOF_FORTRAN_LOGICAL4 = @OMPI_SIZEOF_FORTRAN_LOGICAL4@
OMPI_SIZEOF_FORTRAN_LOGICAL8 = @OMPI_SIZEOF_FORTRAN_LOGICAL8@
OMPI_SIZEOF_FORTRAN_REAL = @OMPI_SIZEOF_FORTRAN_REAL@
OMPI_SIZEOF_FORTRAN_REAL16 = @OMPI_SIZEOF_FORTRAN_REAL16@
OMPI_SIZEOF_FORTRAN_REAL2 = @OMPI_SIZEOF_FORTRAN_REAL2@
OMPI_SIZEOF_FORTRAN_REAL4 = @OMPI_SIZEOF_FORTRAN_REAL4@
OMPI_SIZEOF_FORTRAN_REAL8 = @OMPI_SIZEOF_FORTRAN_REAL8@
OMPI_TARBALL_VERSION = @OMPI_TARBALL_VERSION@
OMPI_TOP_BUILDDIR = @OMPI_TOP_BUILDDIR@
OMPI_TOP_SRCDIR = @OMPI_TOP_SRCDIR@
OMPI_VERSION = @OMPI_VERSION@
OMPI_WRAPPER_CFLAGS = @OMPI_WRAPPER_CFLAGS@
OMPI_WRAPPER_CFLAGS_PREFIX = @OMPI_WRAPPER_CFLAGS_PREFIX@
OMPI_WRAPPER_CPPFLAGS = @OMPI_WRAPPER_CPPFLAGS@
OMPI_WRAPPER_CXXFLAGS = @OMPI_WRAPPER_CXXFLAGS@
OMPI_WRAPPER_CXXFLAGS_PREFIX = @OMPI_WRAPPER_CXXFLAGS_PREFIX@
OMPI_WRAPPER_CXX_REQUIRED_FILE = @OMPI_WRAPPER_CXX_REQUIRED_FILE@
OMPI_WRAPPER_FCFLAGS = @OMPI_WRAPPER_FCFLAGS@
OMPI_WRAPPER_FCFLAGS_PREFIX = @OMPI_WRAPPER_FCFLAGS_PREFIX@
OMPI_WRAPPER_FC_LDFLAGS = @OMPI_WRAPPER_FC_LDFLAGS@
OMPI_WRAPPER_FC_LDFLAGS_STATIC = @OMPI_WRAPPER_FC_LDFLAGS_STATIC@
OMPI_WRAPPER_FC_LIBS = @OMPI_WRAPPER_FC_LIBS@
OMPI_WRAPPER_FC_LIBS_STATIC = @OMPI_WRAPPER_FC_LIBS_STATIC@
OMPI_WRAPPER_FORTRAN_REQUIRED_FILE = @OMPI_WRAPPER_FORTRAN_REQUIRED_FILE@
OMPI_WRAPPER_INCLUDEDIR = @OMPI_WRAPPER_INCLUDEDIR@
OMPI_WRAPPER_LDFLAGS = @OMPI_WRAPPER_LDFLAGS@
OMPI_WRAPPER_LDFLAGS_STATIC = @OMPI_WRAPPER_LDFLAGS_STATIC@
OMPI_WRAPPER_LIBDIR = @OMPI_WRAPPER_LIBDIR@
OMPI_WRAPPER_LIBS = @OMPI_WRAPPER_LIBS@
OMPI_WRAPPER_LIBS_STATIC = @OMPI_WRAPPER_LIBS_STATIC@
OPAL_3RDPARTY_DISTCLEAN_DIRS = @OPAL_3RDPARTY_DISTCLEAN_DIRS@
OPAL_3RDPARTY_DIST_SUBDIRS = @OPAL_3RDPARTY_DIST_SUBDIRS@
OPAL_3RDPARTY_EXTRA_DIST = @OPAL_3RDPARTY_EXTRA_DIST@
OPAL_3RDPARTY_SUBDIRS = @OPAL_3RDPARTY_SUBDIRS@
OPAL_CC_ABSOLUTE = @OPAL_CC_ABSOLUTE@
OPAL_CONFIGURE_CLI = @OPAL_CONFIGURE_CLI@
OPAL_CONFIGURE_DATE = @OPAL_CONFIGURE_DATE@
OPAL_CONFIGURE_HOST = @OPAL_CONFIGURE_HOST@
OPAL_CONFIGURE_USER = @OPAL_CONFIGURE_USER@
OPAL_DEFAULT_MCA_PARAM_CONF = @OPAL_DEFAULT_MCA_PARAM_CONF@
OPAL_DYN_LIB_PREFIX = @OPAL_DYN_LIB_PREFIX@
OPAL_DYN_LIB_SUFFIX = @OPAL_DYN_LIB_SUFFIX@
OPAL_GREEK_VERSION = @OPAL_GREEK_VERSION@
OPAL_LIB_NAME = @OPAL_LIB_NAME@
OPAL_MAJOR_VERSION = @OPAL_MAJOR_VERSION@
OPAL_MAKEDIST_DISABLE = @OPAL_MAKEDIST_DISABLE@
OPAL_MAX_DATAREP_STRING = @OPAL_MAX_DATAREP_STRING@
OPAL_MAX_ERROR_STRING = @OPAL_MAX_ERROR_STRING@
OPAL_MAX_INFO_KEY = @OPAL_MAX_INFO_KEY@
OPAL_MAX_INFO_VAL = @OPAL_MAX_INFO_VAL@
OPAL_MAX_OBJECT_NAME = @OPAL_MAX_OBJECT_NAME@
OPAL_MAX_PORT_NAME = @OPAL_MAX_PORT_NAME@
OPAL_MAX_PROCESSOR_NAME = @OPAL_MAX_PROCESSOR_NAME@
OPAL_MAX_PSET_NAME_LEN = @OPAL_MAX_PSET_NAME_LEN@
OPAL_MAX_STRINGTAG_LEN = @OPAL_MAX_STRINGTAG_LEN@
OPAL_MINOR_VERSION = @OPAL_MINOR_VERSION@
OPAL_PARAM_FROM_PLATFORM = @OPAL_PARAM_FROM_PLATFORM@
OPAL_RELEASE_DATE = @OPAL_RELEASE_DATE@
OPAL_RELEASE_VERSION = @OPAL_RELEASE_VERSION@
OPAL_REPO_REV = @OPAL_REPO_REV@
OPAL_TARBALL_VERSION = @OPAL_TARBALL_VERSION@
OPAL_TOP_BUILDDIR = @OPAL_TOP_BUILDDIR@
OPAL_TOP_SRCDIR = @OPAL_TOP_SRCDIR@
OPAL_VERSION = @OPAL_VERSION@
OPAL_WRAPPER_CFLAGS = @OPAL_WRAPPER_CFLAGS@
OPAL_WRAPPER_CFLAGS_PREFIX = @OPAL_WRAPPER_CFLAGS_PREFIX@
OPAL_WRAPPER_CPPFLAGS = @OPAL_WRAPPER_CPPFLAGS@
OPAL_WRAPPER_CXXFLAGS = @OPAL_WRAPPER_CXXFLAGS@
OPAL_WRAPPER_CXXFLAGS_PREFIX = @OPAL_WRAPPER_CXXFLAGS_PREFIX@
OPAL_WRAPPER_LDFLAGS = @OPAL_WRAPPER_LDFLAGS@
OPAL_WRAPPER_LDFLAGS_STATIC = @OPAL_WRAPPER_LDFLAGS_STATIC@
OPAL_WRAPPER_LIBS = @OPAL_WRAPPER_LIBS@
OPAL_WRAPPER_LIBS_STATIC = @OPAL_WRAPPER_LIBS_STATIC@
OSHMEM_GREEK_VERSION = @OSHMEM_GREEK_VERSION@
OSHMEM_LIBSHMEM_EXTRA_LDFLAGS = @OSHMEM_LIBSHMEM_EXTRA_LDFLAGS@
OSHMEM_LIBSHMEM_EXTRA_LIBS = @OSHMEM_LIBSHMEM_EXTRA_LIBS@
OSHMEM_MAJOR_VERSION = @OSHMEM_MAJOR_VERSION@
OSHMEM_MINOR_VERSION = @OSHMEM_MINOR_VERSION@
OSHMEM_PC_CFLAGS = @OSHMEM_PC_CFLAGS@
OSHMEM_PC_FC_CFLAGS = @OSHMEM_PC_FC_CFLAGS@
OSHMEM_PC_FC_LIBS = @OSHMEM_PC_FC_LIBS@
OSHMEM_PC_FC_LIBS_PRIVATE = @OSHMEM_PC_FC_LIBS_PRIVATE@
OSHMEM_PC_LIBS = @OSHMEM_PC_LIBS@
OSHMEM_PC_LIBS_PRIVATE = @OSHMEM_PC_LIBS_PRIVATE@
OSHMEM_PC_MODULES = @OSHMEM_PC_MODULES@
OSHMEM_PC_MODULES_PRIVATE = @OSHMEM_PC_MODULES_PRIVATE@
OSHMEM_RELEASE_DATE = @OSHMEM_RELEASE_DATE@
OSHMEM_RELEASE_VERSION = @OSHMEM_RELEASE_VERSION@
OSHMEM_REPO_REV = @OSHMEM_REPO_REV@
OSHMEM_TARBALL_VERSION = @OSHMEM_TARBALL_VERSION@
OSHMEM_TOP_BUILDDIR = @OSHMEM_TOP_BUILDDIR@
OSHMEM_TOP_SRCDIR = @OSHMEM_TOP_SRCDIR@
OSHMEM_VERSION = @OSHMEM_VERSION@
OSHMEM_WRAPPER_CFLAGS = @OSHMEM_WRAPPER_CFLAGS@
OSHMEM_WRAPPER_CFLAGS_PREFIX = @OSHMEM_WRAPPER_CFLAGS_PREFIX@
OSHMEM_WRAPPER_CPPFLAGS = @OSHMEM_WRAPPER_CPPFLAGS@
OSHMEM_WRAPPER_CXXFLAGS = @OSHMEM_WRAPPER_CXXFLAGS@
OSHMEM_WRAPPER_CXXFLAGS_PREFIX = @OSHMEM_WRAPPER_CXXFLAGS_PREFIX@
OSHMEM_WRAPPER_CXX_REQUIRED_FILE = @OSHMEM_WRAPPER_CXX_REQUIRED_FILE@
OSHMEM_WRAPPER_FCFLAGS = @OSHMEM_WRAPPER_FCFLAGS@
OSHMEM_WRAPPER_FCFLAGS_PREFIX = @OSHMEM_WRAPPER_FCFLAGS_PREFIX@
OSHMEM_WRAPPER_FC_LDFLAGS = @OSHMEM_WRAPPER_FC_LDFLAGS@
OSHMEM_WRAPPER_FC_LDFLAGS_STATIC = @OSHMEM_WRAPPER_FC_LDFLAGS_STATIC@
OSHMEM_WRAPPER_FC_LIBS = @OSHMEM_WRAPPER_FC_LIBS@
OSHMEM_WRAPPER_FC_LIBS_STATIC = @OSHMEM_WRAPPER_FC_LIBS_STATIC@
OSHMEM_WRAPPER_FORTRAN_REQUIRED_FILE = @OSHMEM_WRAPPER_FORTRAN_REQUIRED_FILE@
OSHMEM_WRAPPER_LDFLAGS = @OSHMEM_WRAPPER_LDFLAGS@
OSHMEM_WRAPPER_LDFLAGS_STATIC = @OSHMEM_WRAPPER_LDFLAGS_STATIC@
OSHMEM_WRAPPER_LIBS = @OSHMEM_WRAPPER_LIBS@
OSHMEM_WRAPPER_LIBS_STATIC = @OSHMEM_WRAPPER_LIBS_STATIC@
OTOOL = @OTOOL@
OTOOL64 = @OTOOL64@
PACKAGE = @PACKAGE@
PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@
PACKAGE_NAME = @PACKAGE_NAME@
PACKAGE_STRING = @PACKAGE_STRING@
PACKAGE_TARNAME = @PACKAGE_TARNAME@
PACKAGE_URL = @PACKAGE_URL@
PACKAGE_VERSION = @PACKAGE_VERSION@
PATH_SEPARATOR = @PATH_SEPARATOR@
PERL = @PERL@
PKG_CONFIG = @PKG_CONFIG@
PKG_CONFIG_LIBDIR = @PKG_CONFIG_LIBDIR@
PKG_CONFIG_PATH = @PKG_CONFIG_PATH@
RANLIB = @RANLIB@
SED = @SED@
SET_MAKE = @SET_MAKE@
SHELL = @SHELL@
SPHINX_BUILD = @SPHINX_BUILD@
STRIP = @STRIP@
THREAD_CFLAGS = @THREAD_CFLAGS@
THREAD_CPPFLAGS = @THREAD_CPPFLAGS@
THREAD_CXXFLAGS = @THREAD_CXXFLAGS@
THREAD_FCFLAGS = @THREAD_FCFLAGS@
THREAD_LDFLAGS = @THREAD_LDFLAGS@
THREAD_LIBS = @THREAD_LIBS@
VERSION = @VERSION@
WRAPPER_CC = @WRAPPER_CC@
abs_builddir = @abs_builddir@
abs_srcdir = @abs_srcdir@
abs_top_builddir = @abs_top_builddir@
abs_top_srcdir = @abs_top_srcdir@
ac_ct_AR = @ac_ct_AR@
ac_ct_CC = @ac_ct_CC@
ac_ct_CXX = @ac_ct_CXX@
ac_ct_DUMPBIN = @ac_ct_DUMPBIN@
ac_ct_FC = @ac_ct_FC@
ac_prefix_program = @ac_prefix_program@
accelerator_cuda_CPPFLAGS = @accelerator_cuda_CPPFLAGS@
accelerator_cuda_LDFLAGS = @accelerator_cuda_LDFLAGS@
accelerator_cuda_LIBS = @accelerator_cuda_LIBS@
am__include = @am__include@
am__leading_dot = @am__leading_dot@
am__quote = @am__quote@
am__tar = @am__tar@
am__untar = @am__untar@
atomic_ucx_CPPFLAGS = @atomic_ucx_CPPFLAGS@
atomic_ucx_LDFLAGS = @atomic_ucx_LDFLAGS@
atomic_ucx_LIBS = @atomic_ucx_LIBS@
bindir = @bindir@
btl_ofi_CPPFLAGS = @btl_ofi_CPPFLAGS@
btl_ofi_LDFLAGS = @btl_ofi_LDFLAGS@
btl_ofi_LIBS = @btl_ofi_LIBS@
btl_portals4_CPPFLAGS = @btl_portals4_CPPFLAGS@
btl_portals4_LDFLAGS = @btl_portals4_LDFLAGS@
btl_portals4_LIBS = @btl_portals4_LIBS@
btl_smcuda_CPPFLAGS = @btl_smcuda_CPPFLAGS@
btl_smcuda_LDFLAGS = @btl_smcuda_LDFLAGS@
btl_smcuda_LIBS = @btl_smcuda_LIBS@
btl_uct_CPPFLAGS = @btl_uct_CPPFLAGS@
btl_uct_LDFLAGS = @btl_uct_LDFLAGS@
btl_uct_LIBS = @btl_uct_LIBS@
btl_ugni_CPPFLAGS = @btl_ugni_CPPFLAGS@
btl_ugni_LDFLAGS = @btl_ugni_LDFLAGS@
btl_ugni_LIBS = @btl_ugni_LIBS@
btl_usnic_CPPFLAGS = @btl_usnic_CPPFLAGS@
btl_usnic_LDFLAGS = @btl_usnic_LDFLAGS@
btl_usnic_LIBS = @btl_usnic_LIBS@
build = @build@
build_alias = @build_alias@
build_cpu = @build_cpu@
build_os = @build_os@
build_vendor = @build_vendor@
builddir = @builddir@
coll_hcoll_CPPFLAGS = @coll_hcoll_CPPFLAGS@
coll_hcoll_LDFLAGS = @coll_hcoll_LDFLAGS@
coll_hcoll_LIBS = @coll_hcoll_LIBS@
coll_portals4_CPPFLAGS = @coll_portals4_CPPFLAGS@
coll_portals4_LDFLAGS = @coll_portals4_LDFLAGS@
coll_portals4_LIBS = @coll_portals4_LIBS@
coll_ucc_CPPFLAGS = @coll_ucc_CPPFLAGS@
coll_ucc_LDFLAGS = @coll_ucc_LDFLAGS@
coll_ucc_LIBS = @coll_ucc_LIBS@
common_cuda_CPPFLAGS = @common_cuda_CPPFLAGS@
common_ofi_CPPFLAGS = @common_ofi_CPPFLAGS@
common_ofi_LDFLAGS = @common_ofi_LDFLAGS@
common_ofi_LIBS = @common_ofi_LIBS@
common_ucx_CPPFLAGS = @common_ucx_CPPFLAGS@
common_ucx_LDFLAGS = @common_ucx_LDFLAGS@
common_ucx_LIBS = @common_ucx_LIBS@
datadir = @datadir@
datarootdir = @datarootdir@
dl_libltdl_CPPFLAGS = @dl_libltdl_CPPFLAGS@
dl_libltdl_LDFLAGS = @dl_libltdl_LDFLAGS@
dl_libltdl_LIBS = @dl_libltdl_LIBS@
docdir = @docdir@
dvidir = @dvidir@
exec_prefix = @exec_prefix@
fbtl_ime_CPPFLAGS = @fbtl_ime_CPPFLAGS@
fbtl_ime_LDFLAGS = @fbtl_ime_LDFLAGS@
fbtl_ime_LIBS = @fbtl_ime_LIBS@
fbtl_pvfs2_CPPFLAGS = @fbtl_pvfs2_CPPFLAGS@
fbtl_pvfs2_LDFLAGS = @fbtl_pvfs2_LDFLAGS@
fbtl_pvfs2_LIBS = @fbtl_pvfs2_LIBS@
fs_gpfs_CPPFLAGS = @fs_gpfs_CPPFLAGS@
fs_gpfs_LDFLAGS = @fs_gpfs_LDFLAGS@
fs_gpfs_LIBS = @fs_gpfs_LIBS@
fs_ime_CPPFLAGS = @fs_ime_CPPFLAGS@
fs_ime_LDFLAGS = @fs_ime_LDFLAGS@
fs_ime_LIBS = @fs_ime_LIBS@
fs_lustre_CPPFLAGS = @fs_lustre_CPPFLAGS@
fs_lustre_LDFLAGS = @fs_lustre_LDFLAGS@
fs_lustre_LIBS = @fs_lustre_LIBS@
fs_pvfs2_CPPFLAGS = @fs_pvfs2_CPPFLAGS@
fs_pvfs2_LDFLAGS = @fs_pvfs2_LDFLAGS@
fs_pvfs2_LIBS = @fs_pvfs2_LIBS@
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@
libmca_ompi_common_monitoring_so_version = @libmca_ompi_common_monitoring_so_version@
libmca_ompi_common_ompio_so_version = @libmca_ompi_common_ompio_so_version@
libmca_opal_common_cuda_so_version = @libmca_opal_common_cuda_so_version@
libmca_opal_common_ofi_so_version = @libmca_opal_common_ofi_so_version@
libmca_opal_common_sm_so_version = @libmca_opal_common_sm_so_version@
libmca_opal_common_ucx_so_version = @libmca_opal_common_ucx_so_version@
libmca_opal_common_ugni_so_version = @libmca_opal_common_ugni_so_version@
libmpi_java_so_version = @libmpi_java_so_version@
libmpi_mpifh_so_version = @libmpi_mpifh_so_version@
libmpi_so_version = @libmpi_so_version@
libmpi_usempi_ignore_tkr_so_version = @libmpi_usempi_ignore_tkr_so_version@
libmpi_usempi_tkr_so_version = @libmpi_usempi_tkr_so_version@
libmpi_usempif08_so_version = @libmpi_usempif08_so_version@
libompitrace_so_version = @libompitrace_so_version@
libopen_pal_so_version = @libopen_pal_so_version@
liboshmem_so_version = @liboshmem_so_version@
localedir = @localedir@
localstatedir = @localstatedir@
mandir = @mandir@
memory_malloc_solaris_LIBS = @memory_malloc_solaris_LIBS@
mkdir_p = @mkdir_p@
mpool_memkind_CPPFLAGS = @mpool_memkind_CPPFLAGS@
mpool_memkind_LDFLAGS = @mpool_memkind_LDFLAGS@
mpool_memkind_LIBS = @mpool_memkind_LIBS@
mtl_ofi_CPPFLAGS = @mtl_ofi_CPPFLAGS@
mtl_ofi_LDFLAGS = @mtl_ofi_LDFLAGS@
mtl_ofi_LIBS = @mtl_ofi_LIBS@
mtl_portals4_CPPFLAGS = @mtl_portals4_CPPFLAGS@
mtl_portals4_LDFLAGS = @mtl_portals4_LDFLAGS@
mtl_portals4_LIBS = @mtl_portals4_LIBS@
mtl_psm2_CPPFLAGS = @mtl_psm2_CPPFLAGS@
mtl_psm2_LDFLAGS = @mtl_psm2_LDFLAGS@
mtl_psm2_LIBS = @mtl_psm2_LIBS@
oldincludedir = @oldincludedir@
ompidatadir = @ompidatadir@
ompiincludedir = @ompiincludedir@
ompilibdir = @ompilibdir@
opal_argo_CPPFLAGS = @opal_argo_CPPFLAGS@
opal_argo_LDFLAGS = @opal_argo_LDFLAGS@
opal_argo_LIBS = @opal_argo_LIBS@
opal_dl_dlopen_LIBS = @opal_dl_dlopen_LIBS@
opal_memchecker_valgrind_CPPFLAGS = @opal_memchecker_valgrind_CPPFLAGS@
opal_qthreads_CPPFLAGS = @opal_qthreads_CPPFLAGS@
opal_qthreads_LDFLAGS = @opal_qthreads_LDFLAGS@
opal_qthreads_LIBS = @opal_qthreads_LIBS@
opal_rocm_CPPFLAGS = @opal_rocm_CPPFLAGS@
opal_rocm_LDFLAGS = @opal_rocm_LDFLAGS@
opal_rocm_LIBS = @opal_rocm_LIBS@
opaldatadir = @opaldatadir@
opalincludedir = @opalincludedir@
opallibdir = @opallibdir@
osc_portals4_CPPFLAGS = @osc_portals4_CPPFLAGS@
osc_portals4_LDFLAGS = @osc_portals4_LDFLAGS@
osc_portals4_LIBS = @osc_portals4_LIBS@
osc_ucx_CPPFLAGS = @osc_ucx_CPPFLAGS@
osc_ucx_LDFLAGS = @osc_ucx_LDFLAGS@
osc_ucx_LIBS = @osc_ucx_LIBS@
oshmemdatadir = @oshmemdatadir@
oshmemincludedir = @oshmemincludedir@
oshmemlibdir = @oshmemlibdir@
pdfdir = @pdfdir@
pml_ucx_CPPFLAGS = @pml_ucx_CPPFLAGS@
pml_ucx_LDFLAGS = @pml_ucx_LDFLAGS@
pml_ucx_LIBS = @pml_ucx_LIBS@
prefix = @prefix@
program_transform_name = @program_transform_name@
psdir = @psdir@
rcache_gpusm_CPPFLAGS = @rcache_gpusm_CPPFLAGS@
rcache_gpusm_LDFLAGS = @rcache_gpusm_LDFLAGS@
rcache_gpusm_LIBS = @rcache_gpusm_LIBS@
rcache_rgpusm_CPPFLAGS = @rcache_rgpusm_CPPFLAGS@
rcache_rgpusm_LDFLAGS = @rcache_rgpusm_LDFLAGS@
rcache_rgpusm_LIBS = @rcache_rgpusm_LIBS@
rcache_udreg_CPPFLAGS = @rcache_udreg_CPPFLAGS@
rcache_udreg_LDFLAGS = @rcache_udreg_LDFLAGS@
rcache_udreg_LIBS = @rcache_udreg_LIBS@
reachable_netlink_CPPFLAGS = @reachable_netlink_CPPFLAGS@
reachable_netlink_LDFLAGS = @reachable_netlink_LDFLAGS@
reachable_netlink_LIBS = @reachable_netlink_LIBS@
runstatedir = @runstatedir@
sbindir = @sbindir@
scoll_ucc_CPPFLAGS = @scoll_ucc_CPPFLAGS@
scoll_ucc_LDFLAGS = @scoll_ucc_LDFLAGS@
scoll_ucc_LIBS = @scoll_ucc_LIBS@
sharedstatedir = @sharedstatedir@
smsc_cma_CPPFLAGS = @smsc_cma_CPPFLAGS@
smsc_cma_LDFLAGS = @smsc_cma_LDFLAGS@
smsc_cma_LIBS = @smsc_cma_LIBS@
smsc_knem_CPPFLAGS = @smsc_knem_CPPFLAGS@
smsc_knem_LDFLAGS = @smsc_knem_LDFLAGS@
smsc_knem_LIBS = @smsc_knem_LIBS@
smsc_xpmem_CPPFLAGS = @smsc_xpmem_CPPFLAGS@
smsc_xpmem_LDFLAGS = @smsc_xpmem_LDFLAGS@
smsc_xpmem_LIBS = @smsc_xpmem_LIBS@
spml_ucx_CPPFLAGS = @spml_ucx_CPPFLAGS@
spml_ucx_LDFLAGS = @spml_ucx_LDFLAGS@
spml_ucx_LIBS = @spml_ucx_LIBS@
srcdir = @srcdir@
sshmem_ucx_CPPFLAGS = @sshmem_ucx_CPPFLAGS@
sshmem_ucx_LDFLAGS = @sshmem_ucx_LDFLAGS@
sshmem_ucx_LIBS = @sshmem_ucx_LIBS@
sysconfdir = @sysconfdir@
target = @target@
target_alias = @target_alias@
target_cpu = @target_cpu@
target_os = @target_os@
target_vendor = @target_vendor@
top_build_prefix = @top_build_prefix@
top_builddir = @top_builddir@
top_srcdir = @top_srcdir@
topo_treematch_CPPFLAGS = @topo_treematch_CPPFLAGS@
topo_treematch_LDFLAGS = @topo_treematch_LDFLAGS@
topo_treematch_LIBS = @topo_treematch_LIBS@
noinst_LTLIBRARIES = libmpi_mpit.la libmpi_mpit_profile.la \
$(am__append_1)
headers = mpit-internal.h
# mpit_common.c is not public functions, which does not have profiling
# implications, so they are always built.
libmpi_mpit_la_SOURCES = \
mpit_common.c
libmpi_mpit_la_LIBADD = libmpi_mpit_profile.la $(am__append_2)
# Conditionally install the header files
@WANT_INSTALL_HEADERS_TRUE@ompidir = $(ompiincludedir)/$(subdir)
@WANT_INSTALL_HEADERS_TRUE@ompi_HEADERS = $(headers)
#
# List of all C files that have profile versions
#
interface_profile_sources = \
category_changed.c \
category_get_categories.c \
category_get_cvars.c \
category_get_info.c \
category_get_index.c \
category_get_num.c \
category_get_pvars.c \
cvar_get_info.c \
cvar_get_index.c \
cvar_get_num.c \
cvar_handle_alloc.c \
cvar_handle_free.c \
cvar_read.c \
cvar_write.c \
enum_get_info.c \
enum_get_item.c \
finalize.c \
init_thread.c \
pvar_get_info.c \
pvar_get_index.c \
pvar_get_num.c \
pvar_handle_alloc.c \
pvar_handle_free.c \
pvar_read.c \
pvar_readreset.c \
pvar_reset.c \
pvar_session_create.c \
pvar_session_free.c \
pvar_start.c \
pvar_stop.c \
pvar_write.c
libmpi_mpit_profile_la_SOURCES = $(interface_profile_sources)
libmpi_mpit_profile_la_CPPFLAGS = -DOMPI_BUILD_MPI_PROFILING=1
libmpi_mpit_noprofile_la_SOURCES = $(interface_profile_sources)
libmpi_mpit_noprofile_la_CPPFLAGS = -DOMPI_BUILD_MPI_PROFILING=0
all: all-am
.SUFFIXES:
.SUFFIXES: .c .lo .o .obj
$(srcdir)/Makefile.in: $(srcdir)/Makefile.am $(am__configure_deps)
@for dep in $?; do \
case '$(am__configure_deps)' in \
*$$dep*) \
( cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh ) \
&& { if test -f $@; then exit 0; else break; fi; }; \
exit 1;; \
esac; \
done; \
echo ' cd $(top_srcdir) && $(AUTOMAKE) --foreign ompi/mpi/tool/Makefile'; \
$(am__cd) $(top_srcdir) && \
$(AUTOMAKE) --foreign ompi/mpi/tool/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__maybe_remake_depfiles)'; \
cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__maybe_remake_depfiles);; \
esac;
$(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES)
cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh
$(top_srcdir)/configure: $(am__configure_deps)
cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh
$(ACLOCAL_M4): $(am__aclocal_m4_deps)
cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh
$(am__aclocal_m4_deps):
clean-noinstLTLIBRARIES:
-test -z "$(noinst_LTLIBRARIES)" || rm -f $(noinst_LTLIBRARIES)
@list='$(noinst_LTLIBRARIES)'; \
locs=`for p in $$list; do echo $$p; done | \
sed 's|^[^/]*$$|.|; s|/[^/]*$$||; s|$$|/so_locations|' | \
sort -u`; \
test -z "$$locs" || { \
echo rm -f $${locs}; \
rm -f $${locs}; \
}
libmpi_mpit.la: $(libmpi_mpit_la_OBJECTS) $(libmpi_mpit_la_DEPENDENCIES) $(EXTRA_libmpi_mpit_la_DEPENDENCIES)
$(AM_V_CCLD)$(LINK) $(libmpi_mpit_la_OBJECTS) $(libmpi_mpit_la_LIBADD) $(LIBS)
libmpi_mpit_noprofile.la: $(libmpi_mpit_noprofile_la_OBJECTS) $(libmpi_mpit_noprofile_la_DEPENDENCIES) $(EXTRA_libmpi_mpit_noprofile_la_DEPENDENCIES)
$(AM_V_CCLD)$(LINK) $(am_libmpi_mpit_noprofile_la_rpath) $(libmpi_mpit_noprofile_la_OBJECTS) $(libmpi_mpit_noprofile_la_LIBADD) $(LIBS)
libmpi_mpit_profile.la: $(libmpi_mpit_profile_la_OBJECTS) $(libmpi_mpit_profile_la_DEPENDENCIES) $(EXTRA_libmpi_mpit_profile_la_DEPENDENCIES)
$(AM_V_CCLD)$(LINK) $(libmpi_mpit_profile_la_OBJECTS) $(libmpi_mpit_profile_la_LIBADD) $(LIBS)
mostlyclean-compile:
-rm -f *.$(OBJEXT)
distclean-compile:
-rm -f *.tab.c
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libmpi_mpit_noprofile_la-category_changed.Plo@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libmpi_mpit_noprofile_la-category_get_categories.Plo@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libmpi_mpit_noprofile_la-category_get_cvars.Plo@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libmpi_mpit_noprofile_la-category_get_index.Plo@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libmpi_mpit_noprofile_la-category_get_info.Plo@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libmpi_mpit_noprofile_la-category_get_num.Plo@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libmpi_mpit_noprofile_la-category_get_pvars.Plo@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libmpi_mpit_noprofile_la-cvar_get_index.Plo@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libmpi_mpit_noprofile_la-cvar_get_info.Plo@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libmpi_mpit_noprofile_la-cvar_get_num.Plo@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libmpi_mpit_noprofile_la-cvar_handle_alloc.Plo@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libmpi_mpit_noprofile_la-cvar_handle_free.Plo@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libmpi_mpit_noprofile_la-cvar_read.Plo@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libmpi_mpit_noprofile_la-cvar_write.Plo@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libmpi_mpit_noprofile_la-enum_get_info.Plo@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libmpi_mpit_noprofile_la-enum_get_item.Plo@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libmpi_mpit_noprofile_la-finalize.Plo@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libmpi_mpit_noprofile_la-init_thread.Plo@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libmpi_mpit_noprofile_la-pvar_get_index.Plo@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libmpi_mpit_noprofile_la-pvar_get_info.Plo@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libmpi_mpit_noprofile_la-pvar_get_num.Plo@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libmpi_mpit_noprofile_la-pvar_handle_alloc.Plo@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libmpi_mpit_noprofile_la-pvar_handle_free.Plo@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libmpi_mpit_noprofile_la-pvar_read.Plo@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libmpi_mpit_noprofile_la-pvar_readreset.Plo@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libmpi_mpit_noprofile_la-pvar_reset.Plo@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libmpi_mpit_noprofile_la-pvar_session_create.Plo@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libmpi_mpit_noprofile_la-pvar_session_free.Plo@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libmpi_mpit_noprofile_la-pvar_start.Plo@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libmpi_mpit_noprofile_la-pvar_stop.Plo@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libmpi_mpit_noprofile_la-pvar_write.Plo@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libmpi_mpit_profile_la-category_changed.Plo@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libmpi_mpit_profile_la-category_get_categories.Plo@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libmpi_mpit_profile_la-category_get_cvars.Plo@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libmpi_mpit_profile_la-category_get_index.Plo@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libmpi_mpit_profile_la-category_get_info.Plo@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libmpi_mpit_profile_la-category_get_num.Plo@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libmpi_mpit_profile_la-category_get_pvars.Plo@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libmpi_mpit_profile_la-cvar_get_index.Plo@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libmpi_mpit_profile_la-cvar_get_info.Plo@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libmpi_mpit_profile_la-cvar_get_num.Plo@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libmpi_mpit_profile_la-cvar_handle_alloc.Plo@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libmpi_mpit_profile_la-cvar_handle_free.Plo@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libmpi_mpit_profile_la-cvar_read.Plo@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libmpi_mpit_profile_la-cvar_write.Plo@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libmpi_mpit_profile_la-enum_get_info.Plo@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libmpi_mpit_profile_la-enum_get_item.Plo@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libmpi_mpit_profile_la-finalize.Plo@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libmpi_mpit_profile_la-init_thread.Plo@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libmpi_mpit_profile_la-pvar_get_index.Plo@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libmpi_mpit_profile_la-pvar_get_info.Plo@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libmpi_mpit_profile_la-pvar_get_num.Plo@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libmpi_mpit_profile_la-pvar_handle_alloc.Plo@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libmpi_mpit_profile_la-pvar_handle_free.Plo@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libmpi_mpit_profile_la-pvar_read.Plo@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libmpi_mpit_profile_la-pvar_readreset.Plo@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libmpi_mpit_profile_la-pvar_reset.Plo@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libmpi_mpit_profile_la-pvar_session_create.Plo@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libmpi_mpit_profile_la-pvar_session_free.Plo@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libmpi_mpit_profile_la-pvar_start.Plo@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libmpi_mpit_profile_la-pvar_stop.Plo@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libmpi_mpit_profile_la-pvar_write.Plo@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/mpit_common.Plo@am__quote@ # am--include-marker
$(am__depfiles_remade):
@$(MKDIR_P) $(@D)
@echo '# dummy' >$@-t && $(am__mv) $@-t $@
am--depfiles: $(am__depfiles_remade)
.c.o:
@am__fastdepCC_TRUE@ $(AM_V_CC)depbase=`echo $@ | sed 's|[^/]*$$|$(DEPDIR)/&|;s|\.o$$||'`;\
@am__fastdepCC_TRUE@ $(COMPILE) -MT $@ -MD -MP -MF $$depbase.Tpo -c -o $@ $< &&\
@am__fastdepCC_TRUE@ $(am__mv) $$depbase.Tpo $$depbase.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='$<' object='$@' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(COMPILE) -c -o $@ $<
.c.obj:
@am__fastdepCC_TRUE@ $(AM_V_CC)depbase=`echo $@ | sed 's|[^/]*$$|$(DEPDIR)/&|;s|\.obj$$||'`;\
@am__fastdepCC_TRUE@ $(COMPILE) -MT $@ -MD -MP -MF $$depbase.Tpo -c -o $@ `$(CYGPATH_W) '$<'` &&\
@am__fastdepCC_TRUE@ $(am__mv) $$depbase.Tpo $$depbase.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='$<' object='$@' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(COMPILE) -c -o $@ `$(CYGPATH_W) '$<'`
.c.lo:
@am__fastdepCC_TRUE@ $(AM_V_CC)depbase=`echo $@ | sed 's|[^/]*$$|$(DEPDIR)/&|;s|\.lo$$||'`;\
@am__fastdepCC_TRUE@ $(LTCOMPILE) -MT $@ -MD -MP -MF $$depbase.Tpo -c -o $@ $< &&\
@am__fastdepCC_TRUE@ $(am__mv) $$depbase.Tpo $$depbase.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='$<' object='$@' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LTCOMPILE) -c -o $@ $<
libmpi_mpit_noprofile_la-category_changed.lo: category_changed.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libmpi_mpit_noprofile_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT libmpi_mpit_noprofile_la-category_changed.lo -MD -MP -MF $(DEPDIR)/libmpi_mpit_noprofile_la-category_changed.Tpo -c -o libmpi_mpit_noprofile_la-category_changed.lo `test -f 'category_changed.c' || echo '$(srcdir)/'`category_changed.c
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libmpi_mpit_noprofile_la-category_changed.Tpo $(DEPDIR)/libmpi_mpit_noprofile_la-category_changed.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='category_changed.c' object='libmpi_mpit_noprofile_la-category_changed.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libmpi_mpit_noprofile_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o libmpi_mpit_noprofile_la-category_changed.lo `test -f 'category_changed.c' || echo '$(srcdir)/'`category_changed.c
libmpi_mpit_noprofile_la-category_get_categories.lo: category_get_categories.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libmpi_mpit_noprofile_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT libmpi_mpit_noprofile_la-category_get_categories.lo -MD -MP -MF $(DEPDIR)/libmpi_mpit_noprofile_la-category_get_categories.Tpo -c -o libmpi_mpit_noprofile_la-category_get_categories.lo `test -f 'category_get_categories.c' || echo '$(srcdir)/'`category_get_categories.c
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libmpi_mpit_noprofile_la-category_get_categories.Tpo $(DEPDIR)/libmpi_mpit_noprofile_la-category_get_categories.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='category_get_categories.c' object='libmpi_mpit_noprofile_la-category_get_categories.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libmpi_mpit_noprofile_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o libmpi_mpit_noprofile_la-category_get_categories.lo `test -f 'category_get_categories.c' || echo '$(srcdir)/'`category_get_categories.c
libmpi_mpit_noprofile_la-category_get_cvars.lo: category_get_cvars.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libmpi_mpit_noprofile_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT libmpi_mpit_noprofile_la-category_get_cvars.lo -MD -MP -MF $(DEPDIR)/libmpi_mpit_noprofile_la-category_get_cvars.Tpo -c -o libmpi_mpit_noprofile_la-category_get_cvars.lo `test -f 'category_get_cvars.c' || echo '$(srcdir)/'`category_get_cvars.c
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libmpi_mpit_noprofile_la-category_get_cvars.Tpo $(DEPDIR)/libmpi_mpit_noprofile_la-category_get_cvars.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='category_get_cvars.c' object='libmpi_mpit_noprofile_la-category_get_cvars.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libmpi_mpit_noprofile_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o libmpi_mpit_noprofile_la-category_get_cvars.lo `test -f 'category_get_cvars.c' || echo '$(srcdir)/'`category_get_cvars.c
libmpi_mpit_noprofile_la-category_get_info.lo: category_get_info.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libmpi_mpit_noprofile_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT libmpi_mpit_noprofile_la-category_get_info.lo -MD -MP -MF $(DEPDIR)/libmpi_mpit_noprofile_la-category_get_info.Tpo -c -o libmpi_mpit_noprofile_la-category_get_info.lo `test -f 'category_get_info.c' || echo '$(srcdir)/'`category_get_info.c
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libmpi_mpit_noprofile_la-category_get_info.Tpo $(DEPDIR)/libmpi_mpit_noprofile_la-category_get_info.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='category_get_info.c' object='libmpi_mpit_noprofile_la-category_get_info.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libmpi_mpit_noprofile_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o libmpi_mpit_noprofile_la-category_get_info.lo `test -f 'category_get_info.c' || echo '$(srcdir)/'`category_get_info.c
libmpi_mpit_noprofile_la-category_get_index.lo: category_get_index.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libmpi_mpit_noprofile_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT libmpi_mpit_noprofile_la-category_get_index.lo -MD -MP -MF $(DEPDIR)/libmpi_mpit_noprofile_la-category_get_index.Tpo -c -o libmpi_mpit_noprofile_la-category_get_index.lo `test -f 'category_get_index.c' || echo '$(srcdir)/'`category_get_index.c
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libmpi_mpit_noprofile_la-category_get_index.Tpo $(DEPDIR)/libmpi_mpit_noprofile_la-category_get_index.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='category_get_index.c' object='libmpi_mpit_noprofile_la-category_get_index.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libmpi_mpit_noprofile_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o libmpi_mpit_noprofile_la-category_get_index.lo `test -f 'category_get_index.c' || echo '$(srcdir)/'`category_get_index.c
libmpi_mpit_noprofile_la-category_get_num.lo: category_get_num.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libmpi_mpit_noprofile_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT libmpi_mpit_noprofile_la-category_get_num.lo -MD -MP -MF $(DEPDIR)/libmpi_mpit_noprofile_la-category_get_num.Tpo -c -o libmpi_mpit_noprofile_la-category_get_num.lo `test -f 'category_get_num.c' || echo '$(srcdir)/'`category_get_num.c
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libmpi_mpit_noprofile_la-category_get_num.Tpo $(DEPDIR)/libmpi_mpit_noprofile_la-category_get_num.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='category_get_num.c' object='libmpi_mpit_noprofile_la-category_get_num.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libmpi_mpit_noprofile_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o libmpi_mpit_noprofile_la-category_get_num.lo `test -f 'category_get_num.c' || echo '$(srcdir)/'`category_get_num.c
libmpi_mpit_noprofile_la-category_get_pvars.lo: category_get_pvars.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libmpi_mpit_noprofile_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT libmpi_mpit_noprofile_la-category_get_pvars.lo -MD -MP -MF $(DEPDIR)/libmpi_mpit_noprofile_la-category_get_pvars.Tpo -c -o libmpi_mpit_noprofile_la-category_get_pvars.lo `test -f 'category_get_pvars.c' || echo '$(srcdir)/'`category_get_pvars.c
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libmpi_mpit_noprofile_la-category_get_pvars.Tpo $(DEPDIR)/libmpi_mpit_noprofile_la-category_get_pvars.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='category_get_pvars.c' object='libmpi_mpit_noprofile_la-category_get_pvars.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libmpi_mpit_noprofile_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o libmpi_mpit_noprofile_la-category_get_pvars.lo `test -f 'category_get_pvars.c' || echo '$(srcdir)/'`category_get_pvars.c
libmpi_mpit_noprofile_la-cvar_get_info.lo: cvar_get_info.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libmpi_mpit_noprofile_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT libmpi_mpit_noprofile_la-cvar_get_info.lo -MD -MP -MF $(DEPDIR)/libmpi_mpit_noprofile_la-cvar_get_info.Tpo -c -o libmpi_mpit_noprofile_la-cvar_get_info.lo `test -f 'cvar_get_info.c' || echo '$(srcdir)/'`cvar_get_info.c
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libmpi_mpit_noprofile_la-cvar_get_info.Tpo $(DEPDIR)/libmpi_mpit_noprofile_la-cvar_get_info.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='cvar_get_info.c' object='libmpi_mpit_noprofile_la-cvar_get_info.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libmpi_mpit_noprofile_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o libmpi_mpit_noprofile_la-cvar_get_info.lo `test -f 'cvar_get_info.c' || echo '$(srcdir)/'`cvar_get_info.c
libmpi_mpit_noprofile_la-cvar_get_index.lo: cvar_get_index.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libmpi_mpit_noprofile_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT libmpi_mpit_noprofile_la-cvar_get_index.lo -MD -MP -MF $(DEPDIR)/libmpi_mpit_noprofile_la-cvar_get_index.Tpo -c -o libmpi_mpit_noprofile_la-cvar_get_index.lo `test -f 'cvar_get_index.c' || echo '$(srcdir)/'`cvar_get_index.c
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libmpi_mpit_noprofile_la-cvar_get_index.Tpo $(DEPDIR)/libmpi_mpit_noprofile_la-cvar_get_index.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='cvar_get_index.c' object='libmpi_mpit_noprofile_la-cvar_get_index.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libmpi_mpit_noprofile_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o libmpi_mpit_noprofile_la-cvar_get_index.lo `test -f 'cvar_get_index.c' || echo '$(srcdir)/'`cvar_get_index.c
libmpi_mpit_noprofile_la-cvar_get_num.lo: cvar_get_num.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libmpi_mpit_noprofile_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT libmpi_mpit_noprofile_la-cvar_get_num.lo -MD -MP -MF $(DEPDIR)/libmpi_mpit_noprofile_la-cvar_get_num.Tpo -c -o libmpi_mpit_noprofile_la-cvar_get_num.lo `test -f 'cvar_get_num.c' || echo '$(srcdir)/'`cvar_get_num.c
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libmpi_mpit_noprofile_la-cvar_get_num.Tpo $(DEPDIR)/libmpi_mpit_noprofile_la-cvar_get_num.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='cvar_get_num.c' object='libmpi_mpit_noprofile_la-cvar_get_num.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libmpi_mpit_noprofile_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o libmpi_mpit_noprofile_la-cvar_get_num.lo `test -f 'cvar_get_num.c' || echo '$(srcdir)/'`cvar_get_num.c
libmpi_mpit_noprofile_la-cvar_handle_alloc.lo: cvar_handle_alloc.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libmpi_mpit_noprofile_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT libmpi_mpit_noprofile_la-cvar_handle_alloc.lo -MD -MP -MF $(DEPDIR)/libmpi_mpit_noprofile_la-cvar_handle_alloc.Tpo -c -o libmpi_mpit_noprofile_la-cvar_handle_alloc.lo `test -f 'cvar_handle_alloc.c' || echo '$(srcdir)/'`cvar_handle_alloc.c
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libmpi_mpit_noprofile_la-cvar_handle_alloc.Tpo $(DEPDIR)/libmpi_mpit_noprofile_la-cvar_handle_alloc.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='cvar_handle_alloc.c' object='libmpi_mpit_noprofile_la-cvar_handle_alloc.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libmpi_mpit_noprofile_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o libmpi_mpit_noprofile_la-cvar_handle_alloc.lo `test -f 'cvar_handle_alloc.c' || echo '$(srcdir)/'`cvar_handle_alloc.c
libmpi_mpit_noprofile_la-cvar_handle_free.lo: cvar_handle_free.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libmpi_mpit_noprofile_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT libmpi_mpit_noprofile_la-cvar_handle_free.lo -MD -MP -MF $(DEPDIR)/libmpi_mpit_noprofile_la-cvar_handle_free.Tpo -c -o libmpi_mpit_noprofile_la-cvar_handle_free.lo `test -f 'cvar_handle_free.c' || echo '$(srcdir)/'`cvar_handle_free.c
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libmpi_mpit_noprofile_la-cvar_handle_free.Tpo $(DEPDIR)/libmpi_mpit_noprofile_la-cvar_handle_free.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='cvar_handle_free.c' object='libmpi_mpit_noprofile_la-cvar_handle_free.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libmpi_mpit_noprofile_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o libmpi_mpit_noprofile_la-cvar_handle_free.lo `test -f 'cvar_handle_free.c' || echo '$(srcdir)/'`cvar_handle_free.c
libmpi_mpit_noprofile_la-cvar_read.lo: cvar_read.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libmpi_mpit_noprofile_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT libmpi_mpit_noprofile_la-cvar_read.lo -MD -MP -MF $(DEPDIR)/libmpi_mpit_noprofile_la-cvar_read.Tpo -c -o libmpi_mpit_noprofile_la-cvar_read.lo `test -f 'cvar_read.c' || echo '$(srcdir)/'`cvar_read.c
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libmpi_mpit_noprofile_la-cvar_read.Tpo $(DEPDIR)/libmpi_mpit_noprofile_la-cvar_read.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='cvar_read.c' object='libmpi_mpit_noprofile_la-cvar_read.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libmpi_mpit_noprofile_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o libmpi_mpit_noprofile_la-cvar_read.lo `test -f 'cvar_read.c' || echo '$(srcdir)/'`cvar_read.c
libmpi_mpit_noprofile_la-cvar_write.lo: cvar_write.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libmpi_mpit_noprofile_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT libmpi_mpit_noprofile_la-cvar_write.lo -MD -MP -MF $(DEPDIR)/libmpi_mpit_noprofile_la-cvar_write.Tpo -c -o libmpi_mpit_noprofile_la-cvar_write.lo `test -f 'cvar_write.c' || echo '$(srcdir)/'`cvar_write.c
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libmpi_mpit_noprofile_la-cvar_write.Tpo $(DEPDIR)/libmpi_mpit_noprofile_la-cvar_write.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='cvar_write.c' object='libmpi_mpit_noprofile_la-cvar_write.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libmpi_mpit_noprofile_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o libmpi_mpit_noprofile_la-cvar_write.lo `test -f 'cvar_write.c' || echo '$(srcdir)/'`cvar_write.c
libmpi_mpit_noprofile_la-enum_get_info.lo: enum_get_info.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libmpi_mpit_noprofile_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT libmpi_mpit_noprofile_la-enum_get_info.lo -MD -MP -MF $(DEPDIR)/libmpi_mpit_noprofile_la-enum_get_info.Tpo -c -o libmpi_mpit_noprofile_la-enum_get_info.lo `test -f 'enum_get_info.c' || echo '$(srcdir)/'`enum_get_info.c
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libmpi_mpit_noprofile_la-enum_get_info.Tpo $(DEPDIR)/libmpi_mpit_noprofile_la-enum_get_info.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='enum_get_info.c' object='libmpi_mpit_noprofile_la-enum_get_info.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libmpi_mpit_noprofile_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o libmpi_mpit_noprofile_la-enum_get_info.lo `test -f 'enum_get_info.c' || echo '$(srcdir)/'`enum_get_info.c
libmpi_mpit_noprofile_la-enum_get_item.lo: enum_get_item.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libmpi_mpit_noprofile_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT libmpi_mpit_noprofile_la-enum_get_item.lo -MD -MP -MF $(DEPDIR)/libmpi_mpit_noprofile_la-enum_get_item.Tpo -c -o libmpi_mpit_noprofile_la-enum_get_item.lo `test -f 'enum_get_item.c' || echo '$(srcdir)/'`enum_get_item.c
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libmpi_mpit_noprofile_la-enum_get_item.Tpo $(DEPDIR)/libmpi_mpit_noprofile_la-enum_get_item.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='enum_get_item.c' object='libmpi_mpit_noprofile_la-enum_get_item.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libmpi_mpit_noprofile_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o libmpi_mpit_noprofile_la-enum_get_item.lo `test -f 'enum_get_item.c' || echo '$(srcdir)/'`enum_get_item.c
libmpi_mpit_noprofile_la-finalize.lo: finalize.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libmpi_mpit_noprofile_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT libmpi_mpit_noprofile_la-finalize.lo -MD -MP -MF $(DEPDIR)/libmpi_mpit_noprofile_la-finalize.Tpo -c -o libmpi_mpit_noprofile_la-finalize.lo `test -f 'finalize.c' || echo '$(srcdir)/'`finalize.c
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libmpi_mpit_noprofile_la-finalize.Tpo $(DEPDIR)/libmpi_mpit_noprofile_la-finalize.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='finalize.c' object='libmpi_mpit_noprofile_la-finalize.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libmpi_mpit_noprofile_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o libmpi_mpit_noprofile_la-finalize.lo `test -f 'finalize.c' || echo '$(srcdir)/'`finalize.c
libmpi_mpit_noprofile_la-init_thread.lo: init_thread.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libmpi_mpit_noprofile_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT libmpi_mpit_noprofile_la-init_thread.lo -MD -MP -MF $(DEPDIR)/libmpi_mpit_noprofile_la-init_thread.Tpo -c -o libmpi_mpit_noprofile_la-init_thread.lo `test -f 'init_thread.c' || echo '$(srcdir)/'`init_thread.c
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libmpi_mpit_noprofile_la-init_thread.Tpo $(DEPDIR)/libmpi_mpit_noprofile_la-init_thread.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='init_thread.c' object='libmpi_mpit_noprofile_la-init_thread.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libmpi_mpit_noprofile_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o libmpi_mpit_noprofile_la-init_thread.lo `test -f 'init_thread.c' || echo '$(srcdir)/'`init_thread.c
libmpi_mpit_noprofile_la-pvar_get_info.lo: pvar_get_info.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libmpi_mpit_noprofile_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT libmpi_mpit_noprofile_la-pvar_get_info.lo -MD -MP -MF $(DEPDIR)/libmpi_mpit_noprofile_la-pvar_get_info.Tpo -c -o libmpi_mpit_noprofile_la-pvar_get_info.lo `test -f 'pvar_get_info.c' || echo '$(srcdir)/'`pvar_get_info.c
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libmpi_mpit_noprofile_la-pvar_get_info.Tpo $(DEPDIR)/libmpi_mpit_noprofile_la-pvar_get_info.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='pvar_get_info.c' object='libmpi_mpit_noprofile_la-pvar_get_info.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libmpi_mpit_noprofile_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o libmpi_mpit_noprofile_la-pvar_get_info.lo `test -f 'pvar_get_info.c' || echo '$(srcdir)/'`pvar_get_info.c
libmpi_mpit_noprofile_la-pvar_get_index.lo: pvar_get_index.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libmpi_mpit_noprofile_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT libmpi_mpit_noprofile_la-pvar_get_index.lo -MD -MP -MF $(DEPDIR)/libmpi_mpit_noprofile_la-pvar_get_index.Tpo -c -o libmpi_mpit_noprofile_la-pvar_get_index.lo `test -f 'pvar_get_index.c' || echo '$(srcdir)/'`pvar_get_index.c
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libmpi_mpit_noprofile_la-pvar_get_index.Tpo $(DEPDIR)/libmpi_mpit_noprofile_la-pvar_get_index.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='pvar_get_index.c' object='libmpi_mpit_noprofile_la-pvar_get_index.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libmpi_mpit_noprofile_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o libmpi_mpit_noprofile_la-pvar_get_index.lo `test -f 'pvar_get_index.c' || echo '$(srcdir)/'`pvar_get_index.c
libmpi_mpit_noprofile_la-pvar_get_num.lo: pvar_get_num.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libmpi_mpit_noprofile_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT libmpi_mpit_noprofile_la-pvar_get_num.lo -MD -MP -MF $(DEPDIR)/libmpi_mpit_noprofile_la-pvar_get_num.Tpo -c -o libmpi_mpit_noprofile_la-pvar_get_num.lo `test -f 'pvar_get_num.c' || echo '$(srcdir)/'`pvar_get_num.c
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libmpi_mpit_noprofile_la-pvar_get_num.Tpo $(DEPDIR)/libmpi_mpit_noprofile_la-pvar_get_num.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='pvar_get_num.c' object='libmpi_mpit_noprofile_la-pvar_get_num.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libmpi_mpit_noprofile_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o libmpi_mpit_noprofile_la-pvar_get_num.lo `test -f 'pvar_get_num.c' || echo '$(srcdir)/'`pvar_get_num.c
libmpi_mpit_noprofile_la-pvar_handle_alloc.lo: pvar_handle_alloc.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libmpi_mpit_noprofile_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT libmpi_mpit_noprofile_la-pvar_handle_alloc.lo -MD -MP -MF $(DEPDIR)/libmpi_mpit_noprofile_la-pvar_handle_alloc.Tpo -c -o libmpi_mpit_noprofile_la-pvar_handle_alloc.lo `test -f 'pvar_handle_alloc.c' || echo '$(srcdir)/'`pvar_handle_alloc.c
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libmpi_mpit_noprofile_la-pvar_handle_alloc.Tpo $(DEPDIR)/libmpi_mpit_noprofile_la-pvar_handle_alloc.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='pvar_handle_alloc.c' object='libmpi_mpit_noprofile_la-pvar_handle_alloc.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libmpi_mpit_noprofile_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o libmpi_mpit_noprofile_la-pvar_handle_alloc.lo `test -f 'pvar_handle_alloc.c' || echo '$(srcdir)/'`pvar_handle_alloc.c
libmpi_mpit_noprofile_la-pvar_handle_free.lo: pvar_handle_free.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libmpi_mpit_noprofile_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT libmpi_mpit_noprofile_la-pvar_handle_free.lo -MD -MP -MF $(DEPDIR)/libmpi_mpit_noprofile_la-pvar_handle_free.Tpo -c -o libmpi_mpit_noprofile_la-pvar_handle_free.lo `test -f 'pvar_handle_free.c' || echo '$(srcdir)/'`pvar_handle_free.c
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libmpi_mpit_noprofile_la-pvar_handle_free.Tpo $(DEPDIR)/libmpi_mpit_noprofile_la-pvar_handle_free.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='pvar_handle_free.c' object='libmpi_mpit_noprofile_la-pvar_handle_free.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libmpi_mpit_noprofile_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o libmpi_mpit_noprofile_la-pvar_handle_free.lo `test -f 'pvar_handle_free.c' || echo '$(srcdir)/'`pvar_handle_free.c
libmpi_mpit_noprofile_la-pvar_read.lo: pvar_read.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libmpi_mpit_noprofile_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT libmpi_mpit_noprofile_la-pvar_read.lo -MD -MP -MF $(DEPDIR)/libmpi_mpit_noprofile_la-pvar_read.Tpo -c -o libmpi_mpit_noprofile_la-pvar_read.lo `test -f 'pvar_read.c' || echo '$(srcdir)/'`pvar_read.c
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libmpi_mpit_noprofile_la-pvar_read.Tpo $(DEPDIR)/libmpi_mpit_noprofile_la-pvar_read.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='pvar_read.c' object='libmpi_mpit_noprofile_la-pvar_read.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libmpi_mpit_noprofile_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o libmpi_mpit_noprofile_la-pvar_read.lo `test -f 'pvar_read.c' || echo '$(srcdir)/'`pvar_read.c
libmpi_mpit_noprofile_la-pvar_readreset.lo: pvar_readreset.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libmpi_mpit_noprofile_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT libmpi_mpit_noprofile_la-pvar_readreset.lo -MD -MP -MF $(DEPDIR)/libmpi_mpit_noprofile_la-pvar_readreset.Tpo -c -o libmpi_mpit_noprofile_la-pvar_readreset.lo `test -f 'pvar_readreset.c' || echo '$(srcdir)/'`pvar_readreset.c
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libmpi_mpit_noprofile_la-pvar_readreset.Tpo $(DEPDIR)/libmpi_mpit_noprofile_la-pvar_readreset.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='pvar_readreset.c' object='libmpi_mpit_noprofile_la-pvar_readreset.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libmpi_mpit_noprofile_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o libmpi_mpit_noprofile_la-pvar_readreset.lo `test -f 'pvar_readreset.c' || echo '$(srcdir)/'`pvar_readreset.c
libmpi_mpit_noprofile_la-pvar_reset.lo: pvar_reset.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libmpi_mpit_noprofile_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT libmpi_mpit_noprofile_la-pvar_reset.lo -MD -MP -MF $(DEPDIR)/libmpi_mpit_noprofile_la-pvar_reset.Tpo -c -o libmpi_mpit_noprofile_la-pvar_reset.lo `test -f 'pvar_reset.c' || echo '$(srcdir)/'`pvar_reset.c
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libmpi_mpit_noprofile_la-pvar_reset.Tpo $(DEPDIR)/libmpi_mpit_noprofile_la-pvar_reset.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='pvar_reset.c' object='libmpi_mpit_noprofile_la-pvar_reset.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libmpi_mpit_noprofile_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o libmpi_mpit_noprofile_la-pvar_reset.lo `test -f 'pvar_reset.c' || echo '$(srcdir)/'`pvar_reset.c
libmpi_mpit_noprofile_la-pvar_session_create.lo: pvar_session_create.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libmpi_mpit_noprofile_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT libmpi_mpit_noprofile_la-pvar_session_create.lo -MD -MP -MF $(DEPDIR)/libmpi_mpit_noprofile_la-pvar_session_create.Tpo -c -o libmpi_mpit_noprofile_la-pvar_session_create.lo `test -f 'pvar_session_create.c' || echo '$(srcdir)/'`pvar_session_create.c
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libmpi_mpit_noprofile_la-pvar_session_create.Tpo $(DEPDIR)/libmpi_mpit_noprofile_la-pvar_session_create.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='pvar_session_create.c' object='libmpi_mpit_noprofile_la-pvar_session_create.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libmpi_mpit_noprofile_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o libmpi_mpit_noprofile_la-pvar_session_create.lo `test -f 'pvar_session_create.c' || echo '$(srcdir)/'`pvar_session_create.c
libmpi_mpit_noprofile_la-pvar_session_free.lo: pvar_session_free.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libmpi_mpit_noprofile_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT libmpi_mpit_noprofile_la-pvar_session_free.lo -MD -MP -MF $(DEPDIR)/libmpi_mpit_noprofile_la-pvar_session_free.Tpo -c -o libmpi_mpit_noprofile_la-pvar_session_free.lo `test -f 'pvar_session_free.c' || echo '$(srcdir)/'`pvar_session_free.c
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libmpi_mpit_noprofile_la-pvar_session_free.Tpo $(DEPDIR)/libmpi_mpit_noprofile_la-pvar_session_free.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='pvar_session_free.c' object='libmpi_mpit_noprofile_la-pvar_session_free.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libmpi_mpit_noprofile_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o libmpi_mpit_noprofile_la-pvar_session_free.lo `test -f 'pvar_session_free.c' || echo '$(srcdir)/'`pvar_session_free.c
libmpi_mpit_noprofile_la-pvar_start.lo: pvar_start.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libmpi_mpit_noprofile_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT libmpi_mpit_noprofile_la-pvar_start.lo -MD -MP -MF $(DEPDIR)/libmpi_mpit_noprofile_la-pvar_start.Tpo -c -o libmpi_mpit_noprofile_la-pvar_start.lo `test -f 'pvar_start.c' || echo '$(srcdir)/'`pvar_start.c
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libmpi_mpit_noprofile_la-pvar_start.Tpo $(DEPDIR)/libmpi_mpit_noprofile_la-pvar_start.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='pvar_start.c' object='libmpi_mpit_noprofile_la-pvar_start.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libmpi_mpit_noprofile_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o libmpi_mpit_noprofile_la-pvar_start.lo `test -f 'pvar_start.c' || echo '$(srcdir)/'`pvar_start.c
libmpi_mpit_noprofile_la-pvar_stop.lo: pvar_stop.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libmpi_mpit_noprofile_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT libmpi_mpit_noprofile_la-pvar_stop.lo -MD -MP -MF $(DEPDIR)/libmpi_mpit_noprofile_la-pvar_stop.Tpo -c -o libmpi_mpit_noprofile_la-pvar_stop.lo `test -f 'pvar_stop.c' || echo '$(srcdir)/'`pvar_stop.c
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libmpi_mpit_noprofile_la-pvar_stop.Tpo $(DEPDIR)/libmpi_mpit_noprofile_la-pvar_stop.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='pvar_stop.c' object='libmpi_mpit_noprofile_la-pvar_stop.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libmpi_mpit_noprofile_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o libmpi_mpit_noprofile_la-pvar_stop.lo `test -f 'pvar_stop.c' || echo '$(srcdir)/'`pvar_stop.c
libmpi_mpit_noprofile_la-pvar_write.lo: pvar_write.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libmpi_mpit_noprofile_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT libmpi_mpit_noprofile_la-pvar_write.lo -MD -MP -MF $(DEPDIR)/libmpi_mpit_noprofile_la-pvar_write.Tpo -c -o libmpi_mpit_noprofile_la-pvar_write.lo `test -f 'pvar_write.c' || echo '$(srcdir)/'`pvar_write.c
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libmpi_mpit_noprofile_la-pvar_write.Tpo $(DEPDIR)/libmpi_mpit_noprofile_la-pvar_write.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='pvar_write.c' object='libmpi_mpit_noprofile_la-pvar_write.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libmpi_mpit_noprofile_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o libmpi_mpit_noprofile_la-pvar_write.lo `test -f 'pvar_write.c' || echo '$(srcdir)/'`pvar_write.c
libmpi_mpit_profile_la-category_changed.lo: category_changed.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libmpi_mpit_profile_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT libmpi_mpit_profile_la-category_changed.lo -MD -MP -MF $(DEPDIR)/libmpi_mpit_profile_la-category_changed.Tpo -c -o libmpi_mpit_profile_la-category_changed.lo `test -f 'category_changed.c' || echo '$(srcdir)/'`category_changed.c
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libmpi_mpit_profile_la-category_changed.Tpo $(DEPDIR)/libmpi_mpit_profile_la-category_changed.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='category_changed.c' object='libmpi_mpit_profile_la-category_changed.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libmpi_mpit_profile_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o libmpi_mpit_profile_la-category_changed.lo `test -f 'category_changed.c' || echo '$(srcdir)/'`category_changed.c
libmpi_mpit_profile_la-category_get_categories.lo: category_get_categories.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libmpi_mpit_profile_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT libmpi_mpit_profile_la-category_get_categories.lo -MD -MP -MF $(DEPDIR)/libmpi_mpit_profile_la-category_get_categories.Tpo -c -o libmpi_mpit_profile_la-category_get_categories.lo `test -f 'category_get_categories.c' || echo '$(srcdir)/'`category_get_categories.c
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libmpi_mpit_profile_la-category_get_categories.Tpo $(DEPDIR)/libmpi_mpit_profile_la-category_get_categories.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='category_get_categories.c' object='libmpi_mpit_profile_la-category_get_categories.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libmpi_mpit_profile_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o libmpi_mpit_profile_la-category_get_categories.lo `test -f 'category_get_categories.c' || echo '$(srcdir)/'`category_get_categories.c
libmpi_mpit_profile_la-category_get_cvars.lo: category_get_cvars.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libmpi_mpit_profile_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT libmpi_mpit_profile_la-category_get_cvars.lo -MD -MP -MF $(DEPDIR)/libmpi_mpit_profile_la-category_get_cvars.Tpo -c -o libmpi_mpit_profile_la-category_get_cvars.lo `test -f 'category_get_cvars.c' || echo '$(srcdir)/'`category_get_cvars.c
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libmpi_mpit_profile_la-category_get_cvars.Tpo $(DEPDIR)/libmpi_mpit_profile_la-category_get_cvars.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='category_get_cvars.c' object='libmpi_mpit_profile_la-category_get_cvars.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libmpi_mpit_profile_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o libmpi_mpit_profile_la-category_get_cvars.lo `test -f 'category_get_cvars.c' || echo '$(srcdir)/'`category_get_cvars.c
libmpi_mpit_profile_la-category_get_info.lo: category_get_info.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libmpi_mpit_profile_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT libmpi_mpit_profile_la-category_get_info.lo -MD -MP -MF $(DEPDIR)/libmpi_mpit_profile_la-category_get_info.Tpo -c -o libmpi_mpit_profile_la-category_get_info.lo `test -f 'category_get_info.c' || echo '$(srcdir)/'`category_get_info.c
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libmpi_mpit_profile_la-category_get_info.Tpo $(DEPDIR)/libmpi_mpit_profile_la-category_get_info.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='category_get_info.c' object='libmpi_mpit_profile_la-category_get_info.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libmpi_mpit_profile_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o libmpi_mpit_profile_la-category_get_info.lo `test -f 'category_get_info.c' || echo '$(srcdir)/'`category_get_info.c
libmpi_mpit_profile_la-category_get_index.lo: category_get_index.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libmpi_mpit_profile_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT libmpi_mpit_profile_la-category_get_index.lo -MD -MP -MF $(DEPDIR)/libmpi_mpit_profile_la-category_get_index.Tpo -c -o libmpi_mpit_profile_la-category_get_index.lo `test -f 'category_get_index.c' || echo '$(srcdir)/'`category_get_index.c
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libmpi_mpit_profile_la-category_get_index.Tpo $(DEPDIR)/libmpi_mpit_profile_la-category_get_index.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='category_get_index.c' object='libmpi_mpit_profile_la-category_get_index.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libmpi_mpit_profile_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o libmpi_mpit_profile_la-category_get_index.lo `test -f 'category_get_index.c' || echo '$(srcdir)/'`category_get_index.c
libmpi_mpit_profile_la-category_get_num.lo: category_get_num.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libmpi_mpit_profile_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT libmpi_mpit_profile_la-category_get_num.lo -MD -MP -MF $(DEPDIR)/libmpi_mpit_profile_la-category_get_num.Tpo -c -o libmpi_mpit_profile_la-category_get_num.lo `test -f 'category_get_num.c' || echo '$(srcdir)/'`category_get_num.c
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libmpi_mpit_profile_la-category_get_num.Tpo $(DEPDIR)/libmpi_mpit_profile_la-category_get_num.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='category_get_num.c' object='libmpi_mpit_profile_la-category_get_num.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libmpi_mpit_profile_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o libmpi_mpit_profile_la-category_get_num.lo `test -f 'category_get_num.c' || echo '$(srcdir)/'`category_get_num.c
libmpi_mpit_profile_la-category_get_pvars.lo: category_get_pvars.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libmpi_mpit_profile_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT libmpi_mpit_profile_la-category_get_pvars.lo -MD -MP -MF $(DEPDIR)/libmpi_mpit_profile_la-category_get_pvars.Tpo -c -o libmpi_mpit_profile_la-category_get_pvars.lo `test -f 'category_get_pvars.c' || echo '$(srcdir)/'`category_get_pvars.c
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libmpi_mpit_profile_la-category_get_pvars.Tpo $(DEPDIR)/libmpi_mpit_profile_la-category_get_pvars.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='category_get_pvars.c' object='libmpi_mpit_profile_la-category_get_pvars.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libmpi_mpit_profile_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o libmpi_mpit_profile_la-category_get_pvars.lo `test -f 'category_get_pvars.c' || echo '$(srcdir)/'`category_get_pvars.c
libmpi_mpit_profile_la-cvar_get_info.lo: cvar_get_info.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libmpi_mpit_profile_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT libmpi_mpit_profile_la-cvar_get_info.lo -MD -MP -MF $(DEPDIR)/libmpi_mpit_profile_la-cvar_get_info.Tpo -c -o libmpi_mpit_profile_la-cvar_get_info.lo `test -f 'cvar_get_info.c' || echo '$(srcdir)/'`cvar_get_info.c
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libmpi_mpit_profile_la-cvar_get_info.Tpo $(DEPDIR)/libmpi_mpit_profile_la-cvar_get_info.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='cvar_get_info.c' object='libmpi_mpit_profile_la-cvar_get_info.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libmpi_mpit_profile_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o libmpi_mpit_profile_la-cvar_get_info.lo `test -f 'cvar_get_info.c' || echo '$(srcdir)/'`cvar_get_info.c
libmpi_mpit_profile_la-cvar_get_index.lo: cvar_get_index.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libmpi_mpit_profile_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT libmpi_mpit_profile_la-cvar_get_index.lo -MD -MP -MF $(DEPDIR)/libmpi_mpit_profile_la-cvar_get_index.Tpo -c -o libmpi_mpit_profile_la-cvar_get_index.lo `test -f 'cvar_get_index.c' || echo '$(srcdir)/'`cvar_get_index.c
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libmpi_mpit_profile_la-cvar_get_index.Tpo $(DEPDIR)/libmpi_mpit_profile_la-cvar_get_index.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='cvar_get_index.c' object='libmpi_mpit_profile_la-cvar_get_index.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libmpi_mpit_profile_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o libmpi_mpit_profile_la-cvar_get_index.lo `test -f 'cvar_get_index.c' || echo '$(srcdir)/'`cvar_get_index.c
libmpi_mpit_profile_la-cvar_get_num.lo: cvar_get_num.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libmpi_mpit_profile_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT libmpi_mpit_profile_la-cvar_get_num.lo -MD -MP -MF $(DEPDIR)/libmpi_mpit_profile_la-cvar_get_num.Tpo -c -o libmpi_mpit_profile_la-cvar_get_num.lo `test -f 'cvar_get_num.c' || echo '$(srcdir)/'`cvar_get_num.c
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libmpi_mpit_profile_la-cvar_get_num.Tpo $(DEPDIR)/libmpi_mpit_profile_la-cvar_get_num.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='cvar_get_num.c' object='libmpi_mpit_profile_la-cvar_get_num.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libmpi_mpit_profile_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o libmpi_mpit_profile_la-cvar_get_num.lo `test -f 'cvar_get_num.c' || echo '$(srcdir)/'`cvar_get_num.c
libmpi_mpit_profile_la-cvar_handle_alloc.lo: cvar_handle_alloc.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libmpi_mpit_profile_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT libmpi_mpit_profile_la-cvar_handle_alloc.lo -MD -MP -MF $(DEPDIR)/libmpi_mpit_profile_la-cvar_handle_alloc.Tpo -c -o libmpi_mpit_profile_la-cvar_handle_alloc.lo `test -f 'cvar_handle_alloc.c' || echo '$(srcdir)/'`cvar_handle_alloc.c
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libmpi_mpit_profile_la-cvar_handle_alloc.Tpo $(DEPDIR)/libmpi_mpit_profile_la-cvar_handle_alloc.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='cvar_handle_alloc.c' object='libmpi_mpit_profile_la-cvar_handle_alloc.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libmpi_mpit_profile_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o libmpi_mpit_profile_la-cvar_handle_alloc.lo `test -f 'cvar_handle_alloc.c' || echo '$(srcdir)/'`cvar_handle_alloc.c
libmpi_mpit_profile_la-cvar_handle_free.lo: cvar_handle_free.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libmpi_mpit_profile_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT libmpi_mpit_profile_la-cvar_handle_free.lo -MD -MP -MF $(DEPDIR)/libmpi_mpit_profile_la-cvar_handle_free.Tpo -c -o libmpi_mpit_profile_la-cvar_handle_free.lo `test -f 'cvar_handle_free.c' || echo '$(srcdir)/'`cvar_handle_free.c
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libmpi_mpit_profile_la-cvar_handle_free.Tpo $(DEPDIR)/libmpi_mpit_profile_la-cvar_handle_free.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='cvar_handle_free.c' object='libmpi_mpit_profile_la-cvar_handle_free.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libmpi_mpit_profile_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o libmpi_mpit_profile_la-cvar_handle_free.lo `test -f 'cvar_handle_free.c' || echo '$(srcdir)/'`cvar_handle_free.c
libmpi_mpit_profile_la-cvar_read.lo: cvar_read.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libmpi_mpit_profile_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT libmpi_mpit_profile_la-cvar_read.lo -MD -MP -MF $(DEPDIR)/libmpi_mpit_profile_la-cvar_read.Tpo -c -o libmpi_mpit_profile_la-cvar_read.lo `test -f 'cvar_read.c' || echo '$(srcdir)/'`cvar_read.c
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libmpi_mpit_profile_la-cvar_read.Tpo $(DEPDIR)/libmpi_mpit_profile_la-cvar_read.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='cvar_read.c' object='libmpi_mpit_profile_la-cvar_read.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libmpi_mpit_profile_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o libmpi_mpit_profile_la-cvar_read.lo `test -f 'cvar_read.c' || echo '$(srcdir)/'`cvar_read.c
libmpi_mpit_profile_la-cvar_write.lo: cvar_write.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libmpi_mpit_profile_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT libmpi_mpit_profile_la-cvar_write.lo -MD -MP -MF $(DEPDIR)/libmpi_mpit_profile_la-cvar_write.Tpo -c -o libmpi_mpit_profile_la-cvar_write.lo `test -f 'cvar_write.c' || echo '$(srcdir)/'`cvar_write.c
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libmpi_mpit_profile_la-cvar_write.Tpo $(DEPDIR)/libmpi_mpit_profile_la-cvar_write.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='cvar_write.c' object='libmpi_mpit_profile_la-cvar_write.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libmpi_mpit_profile_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o libmpi_mpit_profile_la-cvar_write.lo `test -f 'cvar_write.c' || echo '$(srcdir)/'`cvar_write.c
libmpi_mpit_profile_la-enum_get_info.lo: enum_get_info.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libmpi_mpit_profile_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT libmpi_mpit_profile_la-enum_get_info.lo -MD -MP -MF $(DEPDIR)/libmpi_mpit_profile_la-enum_get_info.Tpo -c -o libmpi_mpit_profile_la-enum_get_info.lo `test -f 'enum_get_info.c' || echo '$(srcdir)/'`enum_get_info.c
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libmpi_mpit_profile_la-enum_get_info.Tpo $(DEPDIR)/libmpi_mpit_profile_la-enum_get_info.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='enum_get_info.c' object='libmpi_mpit_profile_la-enum_get_info.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libmpi_mpit_profile_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o libmpi_mpit_profile_la-enum_get_info.lo `test -f 'enum_get_info.c' || echo '$(srcdir)/'`enum_get_info.c
libmpi_mpit_profile_la-enum_get_item.lo: enum_get_item.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libmpi_mpit_profile_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT libmpi_mpit_profile_la-enum_get_item.lo -MD -MP -MF $(DEPDIR)/libmpi_mpit_profile_la-enum_get_item.Tpo -c -o libmpi_mpit_profile_la-enum_get_item.lo `test -f 'enum_get_item.c' || echo '$(srcdir)/'`enum_get_item.c
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libmpi_mpit_profile_la-enum_get_item.Tpo $(DEPDIR)/libmpi_mpit_profile_la-enum_get_item.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='enum_get_item.c' object='libmpi_mpit_profile_la-enum_get_item.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libmpi_mpit_profile_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o libmpi_mpit_profile_la-enum_get_item.lo `test -f 'enum_get_item.c' || echo '$(srcdir)/'`enum_get_item.c
libmpi_mpit_profile_la-finalize.lo: finalize.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libmpi_mpit_profile_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT libmpi_mpit_profile_la-finalize.lo -MD -MP -MF $(DEPDIR)/libmpi_mpit_profile_la-finalize.Tpo -c -o libmpi_mpit_profile_la-finalize.lo `test -f 'finalize.c' || echo '$(srcdir)/'`finalize.c
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libmpi_mpit_profile_la-finalize.Tpo $(DEPDIR)/libmpi_mpit_profile_la-finalize.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='finalize.c' object='libmpi_mpit_profile_la-finalize.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libmpi_mpit_profile_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o libmpi_mpit_profile_la-finalize.lo `test -f 'finalize.c' || echo '$(srcdir)/'`finalize.c
libmpi_mpit_profile_la-init_thread.lo: init_thread.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libmpi_mpit_profile_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT libmpi_mpit_profile_la-init_thread.lo -MD -MP -MF $(DEPDIR)/libmpi_mpit_profile_la-init_thread.Tpo -c -o libmpi_mpit_profile_la-init_thread.lo `test -f 'init_thread.c' || echo '$(srcdir)/'`init_thread.c
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libmpi_mpit_profile_la-init_thread.Tpo $(DEPDIR)/libmpi_mpit_profile_la-init_thread.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='init_thread.c' object='libmpi_mpit_profile_la-init_thread.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libmpi_mpit_profile_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o libmpi_mpit_profile_la-init_thread.lo `test -f 'init_thread.c' || echo '$(srcdir)/'`init_thread.c
libmpi_mpit_profile_la-pvar_get_info.lo: pvar_get_info.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libmpi_mpit_profile_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT libmpi_mpit_profile_la-pvar_get_info.lo -MD -MP -MF $(DEPDIR)/libmpi_mpit_profile_la-pvar_get_info.Tpo -c -o libmpi_mpit_profile_la-pvar_get_info.lo `test -f 'pvar_get_info.c' || echo '$(srcdir)/'`pvar_get_info.c
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libmpi_mpit_profile_la-pvar_get_info.Tpo $(DEPDIR)/libmpi_mpit_profile_la-pvar_get_info.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='pvar_get_info.c' object='libmpi_mpit_profile_la-pvar_get_info.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libmpi_mpit_profile_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o libmpi_mpit_profile_la-pvar_get_info.lo `test -f 'pvar_get_info.c' || echo '$(srcdir)/'`pvar_get_info.c
libmpi_mpit_profile_la-pvar_get_index.lo: pvar_get_index.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libmpi_mpit_profile_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT libmpi_mpit_profile_la-pvar_get_index.lo -MD -MP -MF $(DEPDIR)/libmpi_mpit_profile_la-pvar_get_index.Tpo -c -o libmpi_mpit_profile_la-pvar_get_index.lo `test -f 'pvar_get_index.c' || echo '$(srcdir)/'`pvar_get_index.c
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libmpi_mpit_profile_la-pvar_get_index.Tpo $(DEPDIR)/libmpi_mpit_profile_la-pvar_get_index.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='pvar_get_index.c' object='libmpi_mpit_profile_la-pvar_get_index.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libmpi_mpit_profile_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o libmpi_mpit_profile_la-pvar_get_index.lo `test -f 'pvar_get_index.c' || echo '$(srcdir)/'`pvar_get_index.c
libmpi_mpit_profile_la-pvar_get_num.lo: pvar_get_num.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libmpi_mpit_profile_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT libmpi_mpit_profile_la-pvar_get_num.lo -MD -MP -MF $(DEPDIR)/libmpi_mpit_profile_la-pvar_get_num.Tpo -c -o libmpi_mpit_profile_la-pvar_get_num.lo `test -f 'pvar_get_num.c' || echo '$(srcdir)/'`pvar_get_num.c
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libmpi_mpit_profile_la-pvar_get_num.Tpo $(DEPDIR)/libmpi_mpit_profile_la-pvar_get_num.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='pvar_get_num.c' object='libmpi_mpit_profile_la-pvar_get_num.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libmpi_mpit_profile_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o libmpi_mpit_profile_la-pvar_get_num.lo `test -f 'pvar_get_num.c' || echo '$(srcdir)/'`pvar_get_num.c
libmpi_mpit_profile_la-pvar_handle_alloc.lo: pvar_handle_alloc.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libmpi_mpit_profile_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT libmpi_mpit_profile_la-pvar_handle_alloc.lo -MD -MP -MF $(DEPDIR)/libmpi_mpit_profile_la-pvar_handle_alloc.Tpo -c -o libmpi_mpit_profile_la-pvar_handle_alloc.lo `test -f 'pvar_handle_alloc.c' || echo '$(srcdir)/'`pvar_handle_alloc.c
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libmpi_mpit_profile_la-pvar_handle_alloc.Tpo $(DEPDIR)/libmpi_mpit_profile_la-pvar_handle_alloc.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='pvar_handle_alloc.c' object='libmpi_mpit_profile_la-pvar_handle_alloc.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libmpi_mpit_profile_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o libmpi_mpit_profile_la-pvar_handle_alloc.lo `test -f 'pvar_handle_alloc.c' || echo '$(srcdir)/'`pvar_handle_alloc.c
libmpi_mpit_profile_la-pvar_handle_free.lo: pvar_handle_free.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libmpi_mpit_profile_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT libmpi_mpit_profile_la-pvar_handle_free.lo -MD -MP -MF $(DEPDIR)/libmpi_mpit_profile_la-pvar_handle_free.Tpo -c -o libmpi_mpit_profile_la-pvar_handle_free.lo `test -f 'pvar_handle_free.c' || echo '$(srcdir)/'`pvar_handle_free.c
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libmpi_mpit_profile_la-pvar_handle_free.Tpo $(DEPDIR)/libmpi_mpit_profile_la-pvar_handle_free.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='pvar_handle_free.c' object='libmpi_mpit_profile_la-pvar_handle_free.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libmpi_mpit_profile_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o libmpi_mpit_profile_la-pvar_handle_free.lo `test -f 'pvar_handle_free.c' || echo '$(srcdir)/'`pvar_handle_free.c
libmpi_mpit_profile_la-pvar_read.lo: pvar_read.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libmpi_mpit_profile_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT libmpi_mpit_profile_la-pvar_read.lo -MD -MP -MF $(DEPDIR)/libmpi_mpit_profile_la-pvar_read.Tpo -c -o libmpi_mpit_profile_la-pvar_read.lo `test -f 'pvar_read.c' || echo '$(srcdir)/'`pvar_read.c
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libmpi_mpit_profile_la-pvar_read.Tpo $(DEPDIR)/libmpi_mpit_profile_la-pvar_read.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='pvar_read.c' object='libmpi_mpit_profile_la-pvar_read.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libmpi_mpit_profile_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o libmpi_mpit_profile_la-pvar_read.lo `test -f 'pvar_read.c' || echo '$(srcdir)/'`pvar_read.c
libmpi_mpit_profile_la-pvar_readreset.lo: pvar_readreset.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libmpi_mpit_profile_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT libmpi_mpit_profile_la-pvar_readreset.lo -MD -MP -MF $(DEPDIR)/libmpi_mpit_profile_la-pvar_readreset.Tpo -c -o libmpi_mpit_profile_la-pvar_readreset.lo `test -f 'pvar_readreset.c' || echo '$(srcdir)/'`pvar_readreset.c
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libmpi_mpit_profile_la-pvar_readreset.Tpo $(DEPDIR)/libmpi_mpit_profile_la-pvar_readreset.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='pvar_readreset.c' object='libmpi_mpit_profile_la-pvar_readreset.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libmpi_mpit_profile_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o libmpi_mpit_profile_la-pvar_readreset.lo `test -f 'pvar_readreset.c' || echo '$(srcdir)/'`pvar_readreset.c
libmpi_mpit_profile_la-pvar_reset.lo: pvar_reset.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libmpi_mpit_profile_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT libmpi_mpit_profile_la-pvar_reset.lo -MD -MP -MF $(DEPDIR)/libmpi_mpit_profile_la-pvar_reset.Tpo -c -o libmpi_mpit_profile_la-pvar_reset.lo `test -f 'pvar_reset.c' || echo '$(srcdir)/'`pvar_reset.c
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libmpi_mpit_profile_la-pvar_reset.Tpo $(DEPDIR)/libmpi_mpit_profile_la-pvar_reset.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='pvar_reset.c' object='libmpi_mpit_profile_la-pvar_reset.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libmpi_mpit_profile_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o libmpi_mpit_profile_la-pvar_reset.lo `test -f 'pvar_reset.c' || echo '$(srcdir)/'`pvar_reset.c
libmpi_mpit_profile_la-pvar_session_create.lo: pvar_session_create.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libmpi_mpit_profile_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT libmpi_mpit_profile_la-pvar_session_create.lo -MD -MP -MF $(DEPDIR)/libmpi_mpit_profile_la-pvar_session_create.Tpo -c -o libmpi_mpit_profile_la-pvar_session_create.lo `test -f 'pvar_session_create.c' || echo '$(srcdir)/'`pvar_session_create.c
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libmpi_mpit_profile_la-pvar_session_create.Tpo $(DEPDIR)/libmpi_mpit_profile_la-pvar_session_create.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='pvar_session_create.c' object='libmpi_mpit_profile_la-pvar_session_create.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libmpi_mpit_profile_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o libmpi_mpit_profile_la-pvar_session_create.lo `test -f 'pvar_session_create.c' || echo '$(srcdir)/'`pvar_session_create.c
libmpi_mpit_profile_la-pvar_session_free.lo: pvar_session_free.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libmpi_mpit_profile_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT libmpi_mpit_profile_la-pvar_session_free.lo -MD -MP -MF $(DEPDIR)/libmpi_mpit_profile_la-pvar_session_free.Tpo -c -o libmpi_mpit_profile_la-pvar_session_free.lo `test -f 'pvar_session_free.c' || echo '$(srcdir)/'`pvar_session_free.c
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libmpi_mpit_profile_la-pvar_session_free.Tpo $(DEPDIR)/libmpi_mpit_profile_la-pvar_session_free.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='pvar_session_free.c' object='libmpi_mpit_profile_la-pvar_session_free.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libmpi_mpit_profile_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o libmpi_mpit_profile_la-pvar_session_free.lo `test -f 'pvar_session_free.c' || echo '$(srcdir)/'`pvar_session_free.c
libmpi_mpit_profile_la-pvar_start.lo: pvar_start.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libmpi_mpit_profile_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT libmpi_mpit_profile_la-pvar_start.lo -MD -MP -MF $(DEPDIR)/libmpi_mpit_profile_la-pvar_start.Tpo -c -o libmpi_mpit_profile_la-pvar_start.lo `test -f 'pvar_start.c' || echo '$(srcdir)/'`pvar_start.c
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libmpi_mpit_profile_la-pvar_start.Tpo $(DEPDIR)/libmpi_mpit_profile_la-pvar_start.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='pvar_start.c' object='libmpi_mpit_profile_la-pvar_start.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libmpi_mpit_profile_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o libmpi_mpit_profile_la-pvar_start.lo `test -f 'pvar_start.c' || echo '$(srcdir)/'`pvar_start.c
libmpi_mpit_profile_la-pvar_stop.lo: pvar_stop.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libmpi_mpit_profile_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT libmpi_mpit_profile_la-pvar_stop.lo -MD -MP -MF $(DEPDIR)/libmpi_mpit_profile_la-pvar_stop.Tpo -c -o libmpi_mpit_profile_la-pvar_stop.lo `test -f 'pvar_stop.c' || echo '$(srcdir)/'`pvar_stop.c
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libmpi_mpit_profile_la-pvar_stop.Tpo $(DEPDIR)/libmpi_mpit_profile_la-pvar_stop.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='pvar_stop.c' object='libmpi_mpit_profile_la-pvar_stop.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libmpi_mpit_profile_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o libmpi_mpit_profile_la-pvar_stop.lo `test -f 'pvar_stop.c' || echo '$(srcdir)/'`pvar_stop.c
libmpi_mpit_profile_la-pvar_write.lo: pvar_write.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libmpi_mpit_profile_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT libmpi_mpit_profile_la-pvar_write.lo -MD -MP -MF $(DEPDIR)/libmpi_mpit_profile_la-pvar_write.Tpo -c -o libmpi_mpit_profile_la-pvar_write.lo `test -f 'pvar_write.c' || echo '$(srcdir)/'`pvar_write.c
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/libmpi_mpit_profile_la-pvar_write.Tpo $(DEPDIR)/libmpi_mpit_profile_la-pvar_write.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='pvar_write.c' object='libmpi_mpit_profile_la-pvar_write.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libmpi_mpit_profile_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o libmpi_mpit_profile_la-pvar_write.lo `test -f 'pvar_write.c' || echo '$(srcdir)/'`pvar_write.c
mostlyclean-libtool:
-rm -f *.lo
clean-libtool:
-rm -rf .libs _libs
install-ompiHEADERS: $(ompi_HEADERS)
@$(NORMAL_INSTALL)
@list='$(ompi_HEADERS)'; test -n "$(ompidir)" || list=; \
if test -n "$$list"; then \
echo " $(MKDIR_P) '$(DESTDIR)$(ompidir)'"; \
$(MKDIR_P) "$(DESTDIR)$(ompidir)" || exit 1; \
fi; \
for p in $$list; do \
if test -f "$$p"; then d=; else d="$(srcdir)/"; fi; \
echo "$$d$$p"; \
done | $(am__base_list) | \
while read files; do \
echo " $(INSTALL_HEADER) $$files '$(DESTDIR)$(ompidir)'"; \
$(INSTALL_HEADER) $$files "$(DESTDIR)$(ompidir)" || exit $$?; \
done
uninstall-ompiHEADERS:
@$(NORMAL_UNINSTALL)
@list='$(ompi_HEADERS)'; test -n "$(ompidir)" || list=; \
files=`for p in $$list; do echo $$p; done | sed -e 's|^.*/||'`; \
dir='$(DESTDIR)$(ompidir)'; $(am__uninstall_files_from_dir)
ID: $(am__tagged_files)
$(am__define_uniq_tagged_files); mkid -fID $$unique
tags: tags-am
TAGS: tags
tags-am: $(TAGS_DEPENDENCIES) $(am__tagged_files)
set x; \
here=`pwd`; \
$(am__define_uniq_tagged_files); \
shift; \
if test -z "$(ETAGS_ARGS)$$*$$unique"; then :; else \
test -n "$$unique" || unique=$$empty_fix; \
if test $$# -gt 0; then \
$(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \
"$$@" $$unique; \
else \
$(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \
$$unique; \
fi; \
fi
ctags: ctags-am
CTAGS: ctags
ctags-am: $(TAGS_DEPENDENCIES) $(am__tagged_files)
$(am__define_uniq_tagged_files); \
test -z "$(CTAGS_ARGS)$$unique" \
|| $(CTAGS) $(CTAGSFLAGS) $(AM_CTAGSFLAGS) $(CTAGS_ARGS) \
$$unique
GTAGS:
here=`$(am__cd) $(top_builddir) && pwd` \
&& $(am__cd) $(top_srcdir) \
&& gtags -i $(GTAGS_ARGS) "$$here"
cscopelist: cscopelist-am
cscopelist-am: $(am__tagged_files)
list='$(am__tagged_files)'; \
case "$(srcdir)" in \
[\\/]* | ?:[\\/]*) sdir="$(srcdir)" ;; \
*) sdir=$(subdir)/$(srcdir) ;; \
esac; \
for i in $$list; do \
if test -f "$$i"; then \
echo "$(subdir)/$$i"; \
else \
echo "$$sdir/$$i"; \
fi; \
done >> $(top_builddir)/cscope.files
distclean-tags:
-rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags
distdir: $(BUILT_SOURCES)
$(MAKE) $(AM_MAKEFLAGS) distdir-am
distdir-am: $(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
check: check-am
all-am: Makefile $(LTLIBRARIES) $(HEADERS)
installdirs:
for dir in "$(DESTDIR)$(ompidir)"; do \
test -z "$$dir" || $(MKDIR_P) "$$dir"; \
done
install: install-am
install-exec: install-exec-am
install-data: install-data-am
uninstall: uninstall-am
install-am: all-am
@$(MAKE) $(AM_MAKEFLAGS) install-exec-am install-data-am
installcheck: installcheck-am
install-strip:
if test -z '$(STRIP)'; then \
$(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \
install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \
install; \
else \
$(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \
install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \
"INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'" install; \
fi
mostlyclean-generic:
clean-generic:
-test -z "$(CLEANFILES)" || rm -f $(CLEANFILES)
distclean-generic:
-test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES)
-test . = "$(srcdir)" || test -z "$(CONFIG_CLEAN_VPATH_FILES)" || rm -f $(CONFIG_CLEAN_VPATH_FILES)
maintainer-clean-generic:
@echo "This command is intended for maintainers to use"
@echo "it deletes files that may require special tools to rebuild."
clean: clean-am
clean-am: clean-generic clean-libtool clean-noinstLTLIBRARIES \
mostlyclean-am
distclean: distclean-am
-rm -f ./$(DEPDIR)/libmpi_mpit_noprofile_la-category_changed.Plo
-rm -f ./$(DEPDIR)/libmpi_mpit_noprofile_la-category_get_categories.Plo
-rm -f ./$(DEPDIR)/libmpi_mpit_noprofile_la-category_get_cvars.Plo
-rm -f ./$(DEPDIR)/libmpi_mpit_noprofile_la-category_get_index.Plo
-rm -f ./$(DEPDIR)/libmpi_mpit_noprofile_la-category_get_info.Plo
-rm -f ./$(DEPDIR)/libmpi_mpit_noprofile_la-category_get_num.Plo
-rm -f ./$(DEPDIR)/libmpi_mpit_noprofile_la-category_get_pvars.Plo
-rm -f ./$(DEPDIR)/libmpi_mpit_noprofile_la-cvar_get_index.Plo
-rm -f ./$(DEPDIR)/libmpi_mpit_noprofile_la-cvar_get_info.Plo
-rm -f ./$(DEPDIR)/libmpi_mpit_noprofile_la-cvar_get_num.Plo
-rm -f ./$(DEPDIR)/libmpi_mpit_noprofile_la-cvar_handle_alloc.Plo
-rm -f ./$(DEPDIR)/libmpi_mpit_noprofile_la-cvar_handle_free.Plo
-rm -f ./$(DEPDIR)/libmpi_mpit_noprofile_la-cvar_read.Plo
-rm -f ./$(DEPDIR)/libmpi_mpit_noprofile_la-cvar_write.Plo
-rm -f ./$(DEPDIR)/libmpi_mpit_noprofile_la-enum_get_info.Plo
-rm -f ./$(DEPDIR)/libmpi_mpit_noprofile_la-enum_get_item.Plo
-rm -f ./$(DEPDIR)/libmpi_mpit_noprofile_la-finalize.Plo
-rm -f ./$(DEPDIR)/libmpi_mpit_noprofile_la-init_thread.Plo
-rm -f ./$(DEPDIR)/libmpi_mpit_noprofile_la-pvar_get_index.Plo
-rm -f ./$(DEPDIR)/libmpi_mpit_noprofile_la-pvar_get_info.Plo
-rm -f ./$(DEPDIR)/libmpi_mpit_noprofile_la-pvar_get_num.Plo
-rm -f ./$(DEPDIR)/libmpi_mpit_noprofile_la-pvar_handle_alloc.Plo
-rm -f ./$(DEPDIR)/libmpi_mpit_noprofile_la-pvar_handle_free.Plo
-rm -f ./$(DEPDIR)/libmpi_mpit_noprofile_la-pvar_read.Plo
-rm -f ./$(DEPDIR)/libmpi_mpit_noprofile_la-pvar_readreset.Plo
-rm -f ./$(DEPDIR)/libmpi_mpit_noprofile_la-pvar_reset.Plo
-rm -f ./$(DEPDIR)/libmpi_mpit_noprofile_la-pvar_session_create.Plo
-rm -f ./$(DEPDIR)/libmpi_mpit_noprofile_la-pvar_session_free.Plo
-rm -f ./$(DEPDIR)/libmpi_mpit_noprofile_la-pvar_start.Plo
-rm -f ./$(DEPDIR)/libmpi_mpit_noprofile_la-pvar_stop.Plo
-rm -f ./$(DEPDIR)/libmpi_mpit_noprofile_la-pvar_write.Plo
-rm -f ./$(DEPDIR)/libmpi_mpit_profile_la-category_changed.Plo
-rm -f ./$(DEPDIR)/libmpi_mpit_profile_la-category_get_categories.Plo
-rm -f ./$(DEPDIR)/libmpi_mpit_profile_la-category_get_cvars.Plo
-rm -f ./$(DEPDIR)/libmpi_mpit_profile_la-category_get_index.Plo
-rm -f ./$(DEPDIR)/libmpi_mpit_profile_la-category_get_info.Plo
-rm -f ./$(DEPDIR)/libmpi_mpit_profile_la-category_get_num.Plo
-rm -f ./$(DEPDIR)/libmpi_mpit_profile_la-category_get_pvars.Plo
-rm -f ./$(DEPDIR)/libmpi_mpit_profile_la-cvar_get_index.Plo
-rm -f ./$(DEPDIR)/libmpi_mpit_profile_la-cvar_get_info.Plo
-rm -f ./$(DEPDIR)/libmpi_mpit_profile_la-cvar_get_num.Plo
-rm -f ./$(DEPDIR)/libmpi_mpit_profile_la-cvar_handle_alloc.Plo
-rm -f ./$(DEPDIR)/libmpi_mpit_profile_la-cvar_handle_free.Plo
-rm -f ./$(DEPDIR)/libmpi_mpit_profile_la-cvar_read.Plo
-rm -f ./$(DEPDIR)/libmpi_mpit_profile_la-cvar_write.Plo
-rm -f ./$(DEPDIR)/libmpi_mpit_profile_la-enum_get_info.Plo
-rm -f ./$(DEPDIR)/libmpi_mpit_profile_la-enum_get_item.Plo
-rm -f ./$(DEPDIR)/libmpi_mpit_profile_la-finalize.Plo
-rm -f ./$(DEPDIR)/libmpi_mpit_profile_la-init_thread.Plo
-rm -f ./$(DEPDIR)/libmpi_mpit_profile_la-pvar_get_index.Plo
-rm -f ./$(DEPDIR)/libmpi_mpit_profile_la-pvar_get_info.Plo
-rm -f ./$(DEPDIR)/libmpi_mpit_profile_la-pvar_get_num.Plo
-rm -f ./$(DEPDIR)/libmpi_mpit_profile_la-pvar_handle_alloc.Plo
-rm -f ./$(DEPDIR)/libmpi_mpit_profile_la-pvar_handle_free.Plo
-rm -f ./$(DEPDIR)/libmpi_mpit_profile_la-pvar_read.Plo
-rm -f ./$(DEPDIR)/libmpi_mpit_profile_la-pvar_readreset.Plo
-rm -f ./$(DEPDIR)/libmpi_mpit_profile_la-pvar_reset.Plo
-rm -f ./$(DEPDIR)/libmpi_mpit_profile_la-pvar_session_create.Plo
-rm -f ./$(DEPDIR)/libmpi_mpit_profile_la-pvar_session_free.Plo
-rm -f ./$(DEPDIR)/libmpi_mpit_profile_la-pvar_start.Plo
-rm -f ./$(DEPDIR)/libmpi_mpit_profile_la-pvar_stop.Plo
-rm -f ./$(DEPDIR)/libmpi_mpit_profile_la-pvar_write.Plo
-rm -f ./$(DEPDIR)/mpit_common.Plo
-rm -f Makefile
distclean-am: clean-am distclean-compile distclean-generic \
distclean-tags
dvi: dvi-am
dvi-am:
html: html-am
html-am:
info: info-am
info-am:
install-data-am: install-ompiHEADERS
install-dvi: install-dvi-am
install-dvi-am:
install-exec-am:
install-html: install-html-am
install-html-am:
install-info: install-info-am
install-info-am:
install-man:
install-pdf: install-pdf-am
install-pdf-am:
install-ps: install-ps-am
install-ps-am:
installcheck-am:
maintainer-clean: maintainer-clean-am
-rm -f ./$(DEPDIR)/libmpi_mpit_noprofile_la-category_changed.Plo
-rm -f ./$(DEPDIR)/libmpi_mpit_noprofile_la-category_get_categories.Plo
-rm -f ./$(DEPDIR)/libmpi_mpit_noprofile_la-category_get_cvars.Plo
-rm -f ./$(DEPDIR)/libmpi_mpit_noprofile_la-category_get_index.Plo
-rm -f ./$(DEPDIR)/libmpi_mpit_noprofile_la-category_get_info.Plo
-rm -f ./$(DEPDIR)/libmpi_mpit_noprofile_la-category_get_num.Plo
-rm -f ./$(DEPDIR)/libmpi_mpit_noprofile_la-category_get_pvars.Plo
-rm -f ./$(DEPDIR)/libmpi_mpit_noprofile_la-cvar_get_index.Plo
-rm -f ./$(DEPDIR)/libmpi_mpit_noprofile_la-cvar_get_info.Plo
-rm -f ./$(DEPDIR)/libmpi_mpit_noprofile_la-cvar_get_num.Plo
-rm -f ./$(DEPDIR)/libmpi_mpit_noprofile_la-cvar_handle_alloc.Plo
-rm -f ./$(DEPDIR)/libmpi_mpit_noprofile_la-cvar_handle_free.Plo
-rm -f ./$(DEPDIR)/libmpi_mpit_noprofile_la-cvar_read.Plo
-rm -f ./$(DEPDIR)/libmpi_mpit_noprofile_la-cvar_write.Plo
-rm -f ./$(DEPDIR)/libmpi_mpit_noprofile_la-enum_get_info.Plo
-rm -f ./$(DEPDIR)/libmpi_mpit_noprofile_la-enum_get_item.Plo
-rm -f ./$(DEPDIR)/libmpi_mpit_noprofile_la-finalize.Plo
-rm -f ./$(DEPDIR)/libmpi_mpit_noprofile_la-init_thread.Plo
-rm -f ./$(DEPDIR)/libmpi_mpit_noprofile_la-pvar_get_index.Plo
-rm -f ./$(DEPDIR)/libmpi_mpit_noprofile_la-pvar_get_info.Plo
-rm -f ./$(DEPDIR)/libmpi_mpit_noprofile_la-pvar_get_num.Plo
-rm -f ./$(DEPDIR)/libmpi_mpit_noprofile_la-pvar_handle_alloc.Plo
-rm -f ./$(DEPDIR)/libmpi_mpit_noprofile_la-pvar_handle_free.Plo
-rm -f ./$(DEPDIR)/libmpi_mpit_noprofile_la-pvar_read.Plo
-rm -f ./$(DEPDIR)/libmpi_mpit_noprofile_la-pvar_readreset.Plo
-rm -f ./$(DEPDIR)/libmpi_mpit_noprofile_la-pvar_reset.Plo
-rm -f ./$(DEPDIR)/libmpi_mpit_noprofile_la-pvar_session_create.Plo
-rm -f ./$(DEPDIR)/libmpi_mpit_noprofile_la-pvar_session_free.Plo
-rm -f ./$(DEPDIR)/libmpi_mpit_noprofile_la-pvar_start.Plo
-rm -f ./$(DEPDIR)/libmpi_mpit_noprofile_la-pvar_stop.Plo
-rm -f ./$(DEPDIR)/libmpi_mpit_noprofile_la-pvar_write.Plo
-rm -f ./$(DEPDIR)/libmpi_mpit_profile_la-category_changed.Plo
-rm -f ./$(DEPDIR)/libmpi_mpit_profile_la-category_get_categories.Plo
-rm -f ./$(DEPDIR)/libmpi_mpit_profile_la-category_get_cvars.Plo
-rm -f ./$(DEPDIR)/libmpi_mpit_profile_la-category_get_index.Plo
-rm -f ./$(DEPDIR)/libmpi_mpit_profile_la-category_get_info.Plo
-rm -f ./$(DEPDIR)/libmpi_mpit_profile_la-category_get_num.Plo
-rm -f ./$(DEPDIR)/libmpi_mpit_profile_la-category_get_pvars.Plo
-rm -f ./$(DEPDIR)/libmpi_mpit_profile_la-cvar_get_index.Plo
-rm -f ./$(DEPDIR)/libmpi_mpit_profile_la-cvar_get_info.Plo
-rm -f ./$(DEPDIR)/libmpi_mpit_profile_la-cvar_get_num.Plo
-rm -f ./$(DEPDIR)/libmpi_mpit_profile_la-cvar_handle_alloc.Plo
-rm -f ./$(DEPDIR)/libmpi_mpit_profile_la-cvar_handle_free.Plo
-rm -f ./$(DEPDIR)/libmpi_mpit_profile_la-cvar_read.Plo
-rm -f ./$(DEPDIR)/libmpi_mpit_profile_la-cvar_write.Plo
-rm -f ./$(DEPDIR)/libmpi_mpit_profile_la-enum_get_info.Plo
-rm -f ./$(DEPDIR)/libmpi_mpit_profile_la-enum_get_item.Plo
-rm -f ./$(DEPDIR)/libmpi_mpit_profile_la-finalize.Plo
-rm -f ./$(DEPDIR)/libmpi_mpit_profile_la-init_thread.Plo
-rm -f ./$(DEPDIR)/libmpi_mpit_profile_la-pvar_get_index.Plo
-rm -f ./$(DEPDIR)/libmpi_mpit_profile_la-pvar_get_info.Plo
-rm -f ./$(DEPDIR)/libmpi_mpit_profile_la-pvar_get_num.Plo
-rm -f ./$(DEPDIR)/libmpi_mpit_profile_la-pvar_handle_alloc.Plo
-rm -f ./$(DEPDIR)/libmpi_mpit_profile_la-pvar_handle_free.Plo
-rm -f ./$(DEPDIR)/libmpi_mpit_profile_la-pvar_read.Plo
-rm -f ./$(DEPDIR)/libmpi_mpit_profile_la-pvar_readreset.Plo
-rm -f ./$(DEPDIR)/libmpi_mpit_profile_la-pvar_reset.Plo
-rm -f ./$(DEPDIR)/libmpi_mpit_profile_la-pvar_session_create.Plo
-rm -f ./$(DEPDIR)/libmpi_mpit_profile_la-pvar_session_free.Plo
-rm -f ./$(DEPDIR)/libmpi_mpit_profile_la-pvar_start.Plo
-rm -f ./$(DEPDIR)/libmpi_mpit_profile_la-pvar_stop.Plo
-rm -f ./$(DEPDIR)/libmpi_mpit_profile_la-pvar_write.Plo
-rm -f ./$(DEPDIR)/mpit_common.Plo
-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-ompiHEADERS
.MAKE: install-am install-strip
.PHONY: CTAGS GTAGS TAGS all all-am am--depfiles check check-am clean \
clean-generic clean-libtool clean-noinstLTLIBRARIES \
cscopelist-am ctags ctags-am distclean distclean-compile \
distclean-generic distclean-libtool distclean-tags distdir dvi \
dvi-am html html-am info info-am install install-am \
install-data install-data-am install-dvi install-dvi-am \
install-exec install-exec-am install-html install-html-am \
install-info install-info-am install-man install-ompiHEADERS \
install-pdf install-pdf-am install-ps install-ps-am \
install-strip installcheck installcheck-am installdirs \
maintainer-clean maintainer-clean-generic mostlyclean \
mostlyclean-compile mostlyclean-generic mostlyclean-libtool \
pdf pdf-am ps ps-am tags tags-am uninstall uninstall-am \
uninstall-ompiHEADERS
.PRECIOUS: Makefile
# 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:
|