1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 1468 1469 1470 1471 1472 1473 1474 1475 1476 1477 1478 1479 1480 1481 1482 1483 1484 1485 1486 1487 1488 1489 1490 1491 1492 1493 1494 1495 1496 1497 1498 1499 1500 1501 1502 1503 1504 1505 1506 1507 1508 1509 1510 1511 1512 1513 1514 1515 1516 1517 1518 1519 1520 1521 1522 1523 1524 1525 1526 1527 1528 1529 1530 1531 1532 1533 1534 1535 1536 1537 1538 1539 1540 1541 1542 1543 1544 1545 1546 1547 1548 1549 1550 1551 1552 1553 1554 1555 1556 1557 1558 1559 1560 1561 1562 1563 1564 1565 1566 1567 1568 1569 1570 1571 1572 1573 1574 1575 1576 1577 1578 1579 1580 1581 1582 1583 1584 1585 1586 1587 1588 1589 1590 1591 1592 1593 1594 1595 1596 1597 1598 1599 1600 1601 1602 1603 1604 1605 1606 1607 1608 1609 1610 1611 1612 1613 1614 1615 1616 1617 1618 1619 1620 1621 1622 1623 1624 1625 1626 1627 1628 1629 1630 1631 1632 1633 1634 1635 1636 1637 1638 1639 1640 1641 1642 1643 1644 1645 1646 1647 1648 1649 1650 1651 1652 1653 1654 1655 1656 1657 1658 1659 1660 1661 1662 1663 1664 1665 1666 1667 1668 1669 1670 1671 1672 1673 1674 1675 1676 1677 1678 1679 1680 1681 1682 1683 1684 1685 1686 1687 1688 1689 1690 1691 1692 1693 1694 1695 1696 1697 1698 1699 1700 1701 1702 1703 1704 1705 1706 1707 1708 1709 1710 1711 1712 1713 1714 1715 1716 1717 1718 1719 1720 1721 1722 1723 1724 1725 1726 1727 1728 1729 1730 1731 1732 1733 1734 1735 1736 1737 1738 1739 1740 1741 1742 1743 1744 1745 1746 1747 1748 1749 1750 1751 1752 1753 1754 1755 1756 1757 1758 1759 1760 1761 1762 1763 1764 1765 1766 1767 1768 1769 1770 1771 1772 1773 1774 1775 1776 1777 1778 1779 1780 1781 1782 1783 1784 1785 1786 1787 1788 1789 1790 1791 1792 1793 1794 1795 1796 1797 1798 1799 1800 1801 1802 1803 1804 1805 1806 1807 1808 1809 1810 1811 1812 1813 1814 1815 1816 1817 1818 1819 1820 1821 1822 1823 1824 1825 1826 1827 1828 1829 1830 1831 1832 1833 1834 1835 1836 1837 1838 1839 1840 1841 1842 1843 1844 1845 1846 1847 1848 1849 1850 1851 1852 1853 1854 1855 1856 1857 1858 1859 1860 1861 1862 1863 1864 1865 1866 1867 1868 1869 1870 1871 1872 1873 1874 1875 1876 1877 1878 1879 1880 1881 1882 1883 1884 1885 1886 1887 1888 1889 1890 1891 1892 1893 1894 1895 1896 1897 1898 1899 1900 1901 1902 1903 1904 1905 1906 1907 1908 1909 1910 1911 1912 1913 1914 1915 1916 1917 1918 1919 1920 1921 1922 1923 1924 1925 1926 1927 1928 1929 1930 1931 1932 1933 1934 1935 1936 1937 1938 1939 1940 1941 1942 1943 1944 1945 1946 1947 1948 1949 1950 1951 1952 1953 1954 1955 1956 1957 1958 1959 1960 1961 1962 1963 1964 1965 1966 1967 1968 1969 1970 1971 1972 1973 1974 1975 1976 1977 1978 1979 1980 1981 1982 1983 1984 1985 1986 1987 1988 1989 1990 1991 1992 1993 1994 1995 1996 1997 1998 1999 2000 2001 2002 2003 2004 2005 2006 2007 2008 2009 2010 2011 2012 2013 2014 2015 2016 2017 2018 2019 2020 2021 2022 2023 2024 2025 2026 2027 2028 2029 2030 2031 2032 2033 2034 2035 2036 2037 2038 2039 2040 2041 2042 2043 2044 2045 2046 2047 2048 2049 2050 2051 2052 2053 2054 2055 2056 2057 2058 2059 2060 2061 2062 2063 2064 2065 2066 2067 2068 2069 2070 2071 2072 2073 2074 2075 2076 2077 2078 2079 2080 2081 2082 2083 2084 2085 2086 2087 2088 2089 2090 2091 2092 2093 2094 2095 2096 2097 2098 2099 2100 2101 2102 2103 2104 2105 2106 2107 2108 2109 2110 2111 2112 2113 2114 2115 2116 2117 2118 2119 2120 2121 2122 2123 2124 2125 2126 2127 2128 2129 2130 2131 2132 2133 2134 2135 2136 2137 2138 2139 2140 2141 2142 2143 2144 2145 2146 2147 2148 2149 2150 2151 2152 2153 2154 2155 2156 2157 2158 2159 2160 2161 2162 2163 2164 2165 2166 2167 2168 2169 2170 2171 2172 2173 2174 2175 2176 2177 2178 2179 2180 2181 2182 2183 2184 2185 2186 2187 2188 2189 2190 2191 2192 2193 2194 2195 2196 2197 2198 2199 2200 2201 2202 2203 2204 2205 2206 2207 2208 2209 2210 2211 2212 2213 2214 2215 2216 2217 2218 2219 2220 2221 2222 2223 2224 2225 2226 2227 2228 2229 2230 2231 2232 2233 2234 2235 2236 2237 2238 2239 2240 2241 2242 2243 2244 2245 2246 2247 2248 2249 2250 2251 2252 2253 2254 2255 2256 2257 2258 2259 2260 2261 2262 2263 2264 2265 2266 2267 2268 2269 2270 2271 2272 2273 2274 2275 2276 2277 2278 2279 2280 2281 2282 2283 2284 2285 2286 2287 2288 2289 2290 2291 2292 2293 2294 2295 2296 2297 2298 2299 2300 2301 2302 2303 2304 2305 2306 2307 2308 2309 2310 2311 2312 2313 2314 2315 2316 2317 2318 2319 2320 2321 2322 2323 2324 2325 2326 2327 2328 2329 2330 2331 2332 2333 2334 2335 2336 2337 2338 2339 2340 2341 2342 2343 2344 2345 2346 2347 2348 2349 2350 2351 2352 2353 2354 2355 2356 2357 2358 2359 2360 2361 2362 2363 2364 2365 2366 2367 2368 2369 2370 2371 2372 2373 2374 2375 2376 2377 2378 2379 2380 2381 2382 2383 2384 2385 2386 2387 2388 2389 2390 2391 2392 2393 2394 2395 2396 2397 2398 2399 2400 2401 2402 2403 2404 2405 2406 2407 2408 2409 2410 2411 2412 2413 2414 2415 2416 2417 2418 2419 2420 2421 2422 2423 2424 2425 2426 2427 2428 2429 2430 2431 2432 2433 2434 2435 2436 2437 2438 2439 2440 2441 2442 2443 2444 2445 2446 2447 2448 2449 2450 2451 2452 2453 2454 2455 2456 2457 2458 2459 2460 2461 2462 2463 2464 2465 2466 2467 2468 2469 2470 2471 2472 2473 2474 2475 2476 2477 2478 2479 2480 2481 2482 2483 2484 2485 2486 2487 2488 2489 2490 2491 2492 2493 2494 2495 2496 2497 2498 2499 2500 2501 2502 2503 2504 2505 2506 2507 2508 2509 2510 2511 2512 2513 2514 2515 2516 2517 2518 2519 2520 2521 2522 2523 2524 2525 2526 2527 2528 2529 2530 2531 2532 2533 2534 2535 2536 2537 2538 2539 2540 2541 2542 2543 2544 2545 2546 2547 2548 2549 2550 2551 2552 2553 2554 2555 2556 2557 2558 2559 2560 2561 2562 2563 2564 2565 2566 2567 2568 2569 2570 2571 2572 2573 2574 2575 2576 2577 2578 2579 2580 2581 2582 2583 2584 2585 2586 2587 2588 2589 2590 2591 2592 2593 2594 2595 2596 2597 2598 2599 2600 2601 2602 2603 2604 2605 2606 2607 2608 2609 2610 2611 2612 2613 2614 2615 2616 2617 2618 2619 2620 2621 2622 2623 2624 2625 2626 2627 2628 2629 2630 2631 2632 2633 2634 2635 2636 2637 2638 2639 2640 2641 2642 2643 2644 2645 2646 2647 2648 2649 2650 2651 2652 2653 2654 2655 2656 2657 2658 2659 2660 2661 2662 2663 2664 2665 2666 2667 2668 2669 2670 2671 2672 2673 2674 2675 2676 2677 2678 2679 2680 2681 2682 2683 2684 2685 2686 2687 2688 2689 2690 2691 2692 2693 2694 2695 2696 2697 2698 2699 2700 2701 2702 2703 2704 2705 2706 2707 2708 2709 2710 2711 2712 2713 2714 2715 2716 2717 2718 2719 2720 2721 2722 2723 2724 2725 2726 2727 2728 2729 2730 2731 2732 2733 2734 2735 2736 2737 2738 2739 2740 2741 2742
|
# 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@
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@
noinst_PROGRAMS = run_mpitests$(EXEEXT)
subdir = .
ACLOCAL_M4 = $(top_srcdir)/aclocal.m4
am__aclocal_m4_deps = $(top_srcdir)/confdb/aclocal_cache.m4 \
$(top_srcdir)/confdb/aclocal_cc.m4 \
$(top_srcdir)/confdb/aclocal_cxx.m4 \
$(top_srcdir)/confdb/aclocal_f77.m4 \
$(top_srcdir)/confdb/aclocal_fc.m4 \
$(top_srcdir)/confdb/aclocal_libs.m4 \
$(top_srcdir)/confdb/aclocal_make.m4 \
$(top_srcdir)/confdb/aclocal_runlog.m4 \
$(top_srcdir)/confdb/aclocal_subcfg.m4 \
$(top_srcdir)/confdb/aclocal_threads.m4 \
$(top_srcdir)/confdb/aclocal_util.m4 \
$(top_srcdir)/confdb/libtool.m4 \
$(top_srcdir)/confdb/ltoptions.m4 \
$(top_srcdir)/confdb/ltsugar.m4 \
$(top_srcdir)/confdb/ltversion.m4 \
$(top_srcdir)/confdb/lt~obsolete.m4 $(top_srcdir)/version.m4 \
$(top_srcdir)/configure.ac
am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \
$(ACLOCAL_M4)
DIST_COMMON = $(srcdir)/Makefile.am $(top_srcdir)/configure \
$(am__configure_deps) $(noinst_HEADERS)
am__CONFIG_DISTCLEAN_FILES = config.status config.cache config.log \
configure.lineno config.status.lineno
mkinstalldirs = $(install_sh) -d
CONFIG_HEADER = $(top_builddir)/include/mpitestconf.h
CONFIG_CLEAN_FILES = maint/testmerge checktests testlist
CONFIG_CLEAN_VPATH_FILES =
PROGRAMS = $(noinst_PROGRAMS)
am__dirstamp = $(am__leading_dot)dirstamp
am_run_mpitests_OBJECTS = util/run_mpitests-run_mpitests.$(OBJEXT) \
attr/run_mpitests-attrt.$(OBJEXT) \
attr/run_mpitests-attrend.$(OBJEXT) \
attr/run_mpitests-attric.$(OBJEXT) \
attr/run_mpitests-attrerr.$(OBJEXT) \
attr/run_mpitests-attrerrcomm.$(OBJEXT) \
attr/run_mpitests-attrerrtype.$(OBJEXT) \
attr/run_mpitests-attrdeleteget.$(OBJEXT) \
attr/run_mpitests-attr2type.$(OBJEXT) \
attr/run_mpitests-attrorder.$(OBJEXT) \
attr/run_mpitests-attrordercomm.$(OBJEXT) \
attr/run_mpitests-attrordertype.$(OBJEXT) \
attr/run_mpitests-baseattr2.$(OBJEXT) \
attr/run_mpitests-baseattrcomm.$(OBJEXT) \
attr/run_mpitests-fkeyval.$(OBJEXT) \
attr/run_mpitests-fkeyvalcomm.$(OBJEXT) \
attr/run_mpitests-keyval_double_free.$(OBJEXT) \
attr/run_mpitests-keyval_double_free_comm.$(OBJEXT) \
attr/run_mpitests-keyval_double_free_type.$(OBJEXT) \
attr/run_mpitests-keyval_double_free_win.$(OBJEXT) \
attr/run_mpitests-fkeyvaltype.$(OBJEXT) \
coll/run_mpitests-allgather2.$(OBJEXT) \
coll/run_mpitests-allgather3.$(OBJEXT) \
coll/run_mpitests-allgatherv2.$(OBJEXT) \
coll/run_mpitests-allgatherv3.$(OBJEXT) \
coll/run_mpitests-allgatherv4.$(OBJEXT) \
coll/run_mpitests-allred.$(OBJEXT) \
coll/run_mpitests-allred2.$(OBJEXT) \
coll/run_mpitests-allred3.$(OBJEXT) \
coll/run_mpitests-allred5.$(OBJEXT) \
coll/run_mpitests-allred6.$(OBJEXT) \
coll/run_mpitests-allredmany.$(OBJEXT) \
coll/run_mpitests-alltoall1.$(OBJEXT) \
coll/run_mpitests-alltoallv.$(OBJEXT) \
coll/run_mpitests-alltoallv0.$(OBJEXT) \
coll/run_mpitests-alltoallw1.$(OBJEXT) \
coll/run_mpitests-alltoallw2.$(OBJEXT) \
coll/run_mpitests-alltoallw_zeros.$(OBJEXT) \
coll/run_mpitests-bcasttest.$(OBJEXT) \
coll/run_mpitests-bcastzerotype.$(OBJEXT) \
coll/run_mpitests-gather.$(OBJEXT) \
coll/run_mpitests-gather2.$(OBJEXT) \
coll/run_mpitests-gatherv.$(OBJEXT) \
coll/run_mpitests-neighb_allgather.$(OBJEXT) \
coll/run_mpitests-neighb_allgatherv.$(OBJEXT) \
coll/run_mpitests-neighb_alltoall.$(OBJEXT) \
coll/run_mpitests-neighb_alltoallv.$(OBJEXT) \
coll/run_mpitests-neighb_alltoallw.$(OBJEXT) \
coll/run_mpitests-op_coll.$(OBJEXT) \
coll/run_mpitests-p_allgather.$(OBJEXT) \
coll/run_mpitests-p_allgatherv.$(OBJEXT) \
coll/run_mpitests-p_allred.$(OBJEXT) \
coll/run_mpitests-p_alltoall.$(OBJEXT) \
coll/run_mpitests-p_alltoallv.$(OBJEXT) \
coll/run_mpitests-p_alltoallw.$(OBJEXT) \
coll/run_mpitests-p_bcast.$(OBJEXT) \
coll/run_mpitests-p_bcast2.$(OBJEXT) \
coll/run_mpitests-p_gather.$(OBJEXT) \
coll/run_mpitests-p_gatherv.$(OBJEXT) \
coll/run_mpitests-p_neighb_allgather.$(OBJEXT) \
coll/run_mpitests-p_neighb_allgatherv.$(OBJEXT) \
coll/run_mpitests-p_neighb_alltoall.$(OBJEXT) \
coll/run_mpitests-p_neighb_alltoallv.$(OBJEXT) \
coll/run_mpitests-p_neighb_alltoallw.$(OBJEXT) \
coll/run_mpitests-p_red.$(OBJEXT) \
coll/run_mpitests-p_red_scat_block.$(OBJEXT) \
coll/run_mpitests-p_redscat.$(OBJEXT) \
coll/run_mpitests-p_scan.$(OBJEXT) \
coll/run_mpitests-p_scatter.$(OBJEXT) \
coll/run_mpitests-p_scatterv.$(OBJEXT) \
coll/run_mpitests-red3.$(OBJEXT) \
coll/run_mpitests-red4.$(OBJEXT) \
coll/run_mpitests-red_scat_block.$(OBJEXT) \
coll/run_mpitests-red_scat_block2.$(OBJEXT) \
coll/run_mpitests-redscat.$(OBJEXT) \
coll/run_mpitests-redscat2.$(OBJEXT) \
coll/run_mpitests-redscat3.$(OBJEXT) \
coll/run_mpitests-redscatblk3.$(OBJEXT) \
coll/run_mpitests-reduce.$(OBJEXT) \
coll/run_mpitests-scantst.$(OBJEXT) \
coll/run_mpitests-scatter2.$(OBJEXT) \
coll/run_mpitests-scatter3.$(OBJEXT) \
coll/run_mpitests-scattern.$(OBJEXT) \
coll/run_mpitests-scatterv.$(OBJEXT) \
run_mpitests-all_mpitests.$(OBJEXT)
run_mpitests_OBJECTS = $(am_run_mpitests_OBJECTS)
run_mpitests_DEPENDENCIES = $(LDADD)
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 =
AM_V_P = $(am__v_P_@AM_V@)
am__v_P_ = $(am__v_P_@AM_DEFAULT_V@)
am__v_P_0 = false
am__v_P_1 = :
AM_V_GEN = $(am__v_GEN_@AM_V@)
am__v_GEN_ = $(am__v_GEN_@AM_DEFAULT_V@)
am__v_GEN_0 = @echo " GEN " $@;
am__v_GEN_1 =
AM_V_at = $(am__v_at_@AM_V@)
am__v_at_ = $(am__v_at_@AM_DEFAULT_V@)
am__v_at_0 = @
am__v_at_1 =
DEFAULT_INCLUDES = -I.@am__isrc@ -I$(top_builddir)/include
depcomp = $(SHELL) $(top_srcdir)/confdb/depcomp
am__maybe_remake_depfiles = depfiles
am__depfiles_remade = ./$(DEPDIR)/run_mpitests-all_mpitests.Po \
attr/$(DEPDIR)/run_mpitests-attr2type.Po \
attr/$(DEPDIR)/run_mpitests-attrdeleteget.Po \
attr/$(DEPDIR)/run_mpitests-attrend.Po \
attr/$(DEPDIR)/run_mpitests-attrerr.Po \
attr/$(DEPDIR)/run_mpitests-attrerrcomm.Po \
attr/$(DEPDIR)/run_mpitests-attrerrtype.Po \
attr/$(DEPDIR)/run_mpitests-attric.Po \
attr/$(DEPDIR)/run_mpitests-attrorder.Po \
attr/$(DEPDIR)/run_mpitests-attrordercomm.Po \
attr/$(DEPDIR)/run_mpitests-attrordertype.Po \
attr/$(DEPDIR)/run_mpitests-attrt.Po \
attr/$(DEPDIR)/run_mpitests-baseattr2.Po \
attr/$(DEPDIR)/run_mpitests-baseattrcomm.Po \
attr/$(DEPDIR)/run_mpitests-fkeyval.Po \
attr/$(DEPDIR)/run_mpitests-fkeyvalcomm.Po \
attr/$(DEPDIR)/run_mpitests-fkeyvaltype.Po \
attr/$(DEPDIR)/run_mpitests-keyval_double_free.Po \
attr/$(DEPDIR)/run_mpitests-keyval_double_free_comm.Po \
attr/$(DEPDIR)/run_mpitests-keyval_double_free_type.Po \
attr/$(DEPDIR)/run_mpitests-keyval_double_free_win.Po \
coll/$(DEPDIR)/run_mpitests-allgather2.Po \
coll/$(DEPDIR)/run_mpitests-allgather3.Po \
coll/$(DEPDIR)/run_mpitests-allgatherv2.Po \
coll/$(DEPDIR)/run_mpitests-allgatherv3.Po \
coll/$(DEPDIR)/run_mpitests-allgatherv4.Po \
coll/$(DEPDIR)/run_mpitests-allred.Po \
coll/$(DEPDIR)/run_mpitests-allred2.Po \
coll/$(DEPDIR)/run_mpitests-allred3.Po \
coll/$(DEPDIR)/run_mpitests-allred5.Po \
coll/$(DEPDIR)/run_mpitests-allred6.Po \
coll/$(DEPDIR)/run_mpitests-allredmany.Po \
coll/$(DEPDIR)/run_mpitests-alltoall1.Po \
coll/$(DEPDIR)/run_mpitests-alltoallv.Po \
coll/$(DEPDIR)/run_mpitests-alltoallv0.Po \
coll/$(DEPDIR)/run_mpitests-alltoallw1.Po \
coll/$(DEPDIR)/run_mpitests-alltoallw2.Po \
coll/$(DEPDIR)/run_mpitests-alltoallw_zeros.Po \
coll/$(DEPDIR)/run_mpitests-bcasttest.Po \
coll/$(DEPDIR)/run_mpitests-bcastzerotype.Po \
coll/$(DEPDIR)/run_mpitests-gather.Po \
coll/$(DEPDIR)/run_mpitests-gather2.Po \
coll/$(DEPDIR)/run_mpitests-gatherv.Po \
coll/$(DEPDIR)/run_mpitests-neighb_allgather.Po \
coll/$(DEPDIR)/run_mpitests-neighb_allgatherv.Po \
coll/$(DEPDIR)/run_mpitests-neighb_alltoall.Po \
coll/$(DEPDIR)/run_mpitests-neighb_alltoallv.Po \
coll/$(DEPDIR)/run_mpitests-neighb_alltoallw.Po \
coll/$(DEPDIR)/run_mpitests-op_coll.Po \
coll/$(DEPDIR)/run_mpitests-p_allgather.Po \
coll/$(DEPDIR)/run_mpitests-p_allgatherv.Po \
coll/$(DEPDIR)/run_mpitests-p_allred.Po \
coll/$(DEPDIR)/run_mpitests-p_alltoall.Po \
coll/$(DEPDIR)/run_mpitests-p_alltoallv.Po \
coll/$(DEPDIR)/run_mpitests-p_alltoallw.Po \
coll/$(DEPDIR)/run_mpitests-p_bcast.Po \
coll/$(DEPDIR)/run_mpitests-p_bcast2.Po \
coll/$(DEPDIR)/run_mpitests-p_gather.Po \
coll/$(DEPDIR)/run_mpitests-p_gatherv.Po \
coll/$(DEPDIR)/run_mpitests-p_neighb_allgather.Po \
coll/$(DEPDIR)/run_mpitests-p_neighb_allgatherv.Po \
coll/$(DEPDIR)/run_mpitests-p_neighb_alltoall.Po \
coll/$(DEPDIR)/run_mpitests-p_neighb_alltoallv.Po \
coll/$(DEPDIR)/run_mpitests-p_neighb_alltoallw.Po \
coll/$(DEPDIR)/run_mpitests-p_red.Po \
coll/$(DEPDIR)/run_mpitests-p_red_scat_block.Po \
coll/$(DEPDIR)/run_mpitests-p_redscat.Po \
coll/$(DEPDIR)/run_mpitests-p_scan.Po \
coll/$(DEPDIR)/run_mpitests-p_scatter.Po \
coll/$(DEPDIR)/run_mpitests-p_scatterv.Po \
coll/$(DEPDIR)/run_mpitests-red3.Po \
coll/$(DEPDIR)/run_mpitests-red4.Po \
coll/$(DEPDIR)/run_mpitests-red_scat_block.Po \
coll/$(DEPDIR)/run_mpitests-red_scat_block2.Po \
coll/$(DEPDIR)/run_mpitests-redscat.Po \
coll/$(DEPDIR)/run_mpitests-redscat2.Po \
coll/$(DEPDIR)/run_mpitests-redscat3.Po \
coll/$(DEPDIR)/run_mpitests-redscatblk3.Po \
coll/$(DEPDIR)/run_mpitests-reduce.Po \
coll/$(DEPDIR)/run_mpitests-scantst.Po \
coll/$(DEPDIR)/run_mpitests-scatter2.Po \
coll/$(DEPDIR)/run_mpitests-scatter3.Po \
coll/$(DEPDIR)/run_mpitests-scattern.Po \
coll/$(DEPDIR)/run_mpitests-scatterv.Po \
util/$(DEPDIR)/run_mpitests-run_mpitests.Po
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 = $(run_mpitests_SOURCES)
RECURSIVE_TARGETS = all-recursive check-recursive cscopelist-recursive \
ctags-recursive dvi-recursive html-recursive info-recursive \
install-data-recursive install-dvi-recursive \
install-exec-recursive install-html-recursive \
install-info-recursive install-pdf-recursive \
install-ps-recursive install-recursive installcheck-recursive \
installdirs-recursive pdf-recursive ps-recursive \
tags-recursive uninstall-recursive
am__can_run_installinfo = \
case $$AM_UPDATE_INFO_DIR in \
n|no|NO) false;; \
*) (install-info --version) >/dev/null 2>&1;; \
esac
HEADERS = $(nodist_noinst_HEADERS) $(noinst_HEADERS)
RECURSIVE_CLEAN_TARGETS = mostlyclean-recursive clean-recursive \
distclean-recursive maintainer-clean-recursive
am__recursive_targets = \
$(RECURSIVE_TARGETS) \
$(RECURSIVE_CLEAN_TARGETS) \
$(am__extra_recursive_targets)
AM_RECURSIVE_TARGETS = $(am__recursive_targets:-recursive=) TAGS CTAGS \
cscope
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)`
VPATH = @VPATH@
ACLOCAL = @ACLOCAL@
ALLOCMEMF = @ALLOCMEMF@
ALLOCMEMFC = @ALLOCMEMFC@
AMTAR = @AMTAR@
AM_DEFAULT_VERBOSITY = @AM_DEFAULT_VERBOSITY@
AR = @AR@
AUTOCONF = @AUTOCONF@
AUTOHEADER = @AUTOHEADER@
AUTOMAKE = @AUTOMAKE@
AWK = @AWK@
CC = @CC@
CCDEPMODE = @CCDEPMODE@
CFLAGS = @CFLAGS@
CPP = @CPP@
CPPFLAGS = @CPPFLAGS@
CSCOPE = @CSCOPE@
CTAGS = @CTAGS@
CXX = @CXX@
CXXCPP = @CXXCPP@
CXXDEPMODE = @CXXDEPMODE@
CXXFLAGS = @CXXFLAGS@
CYGPATH_W = @CYGPATH_W@
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@
F03SPAWNARGTEST = @F03SPAWNARGTEST@
F77 = @F77@
F77SPAWNARGTEST = @F77SPAWNARGTEST@
F77_GETARG_LIBS = @F77_GETARG_LIBS@
F77_MPI_ADDRESS = @F77_MPI_ADDRESS@
F77_MPI_OFFSET = @F77_MPI_OFFSET@
F77_NAME_MANGLE = @F77_NAME_MANGLE@
FC = @FC@
FCFLAGS = @FCFLAGS@
FCFLAGS_f90 = @FCFLAGS_f90@
FCMODEXT = @FCMODEXT@
FCMODINCFLAG = @FCMODINCFLAG@
FCMODOUTFLAG = @FCMODOUTFLAG@
FC_GETARG_LIBS = @FC_GETARG_LIBS@
FC_WORK_FILES_ARG = @FC_WORK_FILES_ARG@
FFLAGS = @FFLAGS@
FGREP = @FGREP@
FLIBS = @FLIBS@
GREP = @GREP@
HIPCC = @HIPCC@
INSTALL = @INSTALL@
INSTALL_DATA = @INSTALL_DATA@
INSTALL_PROGRAM = @INSTALL_PROGRAM@
INSTALL_SCRIPT = @INSTALL_SCRIPT@
INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@
LD = @LD@
LDFLAGS = @LDFLAGS@
LIBOBJS = @LIBOBJS@
LIBS = @LIBS@
LIBTOOL = @LIBTOOL@
LIPO = @LIPO@
LN_S = @LN_S@
LTLIBOBJS = @LTLIBOBJS@
LT_SYS_LIBRARY_PATH = @LT_SYS_LIBRARY_PATH@
MAINT = @MAINT@
MAKE = @MAKE@
MAKEINFO = @MAKEINFO@
MANIFEST_TOOL = @MANIFEST_TOOL@
MKDIR_P = @MKDIR_P@
MPICC = @MPICC@
MPICHVERSION = @MPICHVERSION@
MPICXX = @MPICXX@
MPIEXEC = @MPIEXEC@
MPIF77 = @MPIF77@
MPIFC = @MPIFC@
MPILIBLOC = @MPILIBLOC@
MPILIBNAME = @MPILIBNAME@
MPI_HAS_MPIX = @MPI_HAS_MPIX@
MPI_NO_PART = @MPI_NO_PART@
MPI_NO_RMA = @MPI_NO_RMA@
MPI_NO_SPAWN = @MPI_NO_SPAWN@
MPI_SIZEOF_AINT = @MPI_SIZEOF_AINT@
MPI_SIZEOF_OFFSET = @MPI_SIZEOF_OFFSET@
MPI_SUBVERSION = @MPI_SUBVERSION@
MPI_VERSION = @MPI_VERSION@
NM = @NM@
NMEDIT = @NMEDIT@
NVCC = @NVCC@
OBJDUMP = @OBJDUMP@
OBJEXT = @OBJEXT@
OTOOL = @OTOOL@
OTOOL64 = @OTOOL64@
PACKAGE = @PACKAGE@
PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@
PACKAGE_NAME = @PACKAGE_NAME@
PACKAGE_STRING = @PACKAGE_STRING@
PACKAGE_TARNAME = @PACKAGE_TARNAME@
PACKAGE_URL = @PACKAGE_URL@
PACKAGE_VERSION = @PACKAGE_VERSION@
PATH_SEPARATOR = @PATH_SEPARATOR@
PERL = @PERL@
RANLIB = @RANLIB@
RUNTESTS_OPTS = @RUNTESTS_OPTS@
SED = @SED@
SET_CFLAGS = @SET_CFLAGS@
SET_MAKE = @SET_MAKE@
SHELL = @SHELL@
STRIP = @STRIP@
VERSION = @VERSION@
abs_builddir = @abs_builddir@
abs_srcdir = @abs_srcdir@
abs_top_builddir = @abs_top_builddir@
abs_top_srcdir = @abs_top_srcdir@
ac_ct_AR = @ac_ct_AR@
ac_ct_CC = @ac_ct_CC@
ac_ct_CXX = @ac_ct_CXX@
ac_ct_DUMPBIN = @ac_ct_DUMPBIN@
ac_ct_F77 = @ac_ct_F77@
ac_ct_FC = @ac_ct_FC@
am__include = @am__include@
am__leading_dot = @am__leading_dot@
am__quote = @am__quote@
am__tar = @am__tar@
am__untar = @am__untar@
bindir = @bindir@
build = @build@
build_alias = @build_alias@
build_cpu = @build_cpu@
build_os = @build_os@
build_vendor = @build_vendor@
builddir = @builddir@
ccl_type = @ccl_type@
ch3_tests = @ch3_tests@
ch4_ofi_tests = @ch4_ofi_tests@
ch4_tests = @ch4_tests@
ch4_ucx_tests = @ch4_ucx_tests@
ckpointdir = @ckpointdir@
coll_error = @coll_error@
comm_overlap = @comm_overlap@
cuda_CPPFLAGS = @cuda_CPPFLAGS@
cuda_LDFLAGS = @cuda_LDFLAGS@
cuda_LIBS = @cuda_LIBS@
cudadir = @cudadir@
cxxdir = @cxxdir@
datadir = @datadir@
datarootdir = @datarootdir@
default_testdirs = @default_testdirs@
default_testlist = @default_testlist@
docdir = @docdir@
dvidir = @dvidir@
errordir = @errordir@
exec_prefix = @exec_prefix@
f08dir = @f08dir@
f77dir = @f77dir@
f77profile = @f77profile@
f90dir = @f90dir@
f90profile = @f90profile@
faultsdir = @faultsdir@
ftdir = @ftdir@
hip_CPPFLAGS = @hip_CPPFLAGS@
hip_LDFLAGS = @hip_LDFLAGS@
hip_LIBS = @hip_LIBS@
hipdir = @hipdir@
host = @host@
host_alias = @host_alias@
host_cpu = @host_cpu@
host_os = @host_os@
host_vendor = @host_vendor@
htmldir = @htmldir@
impldir = @impldir@
includedir = @includedir@
infodir = @infodir@
install_sh = @install_sh@
iodir = @iodir@
libdir = @libdir@
libexecdir = @libexecdir@
localedir = @localedir@
localstatedir = @localstatedir@
main_top_builddir = @main_top_builddir@
main_top_srcdir = @main_top_srcdir@
mandir = @mandir@
mkdir_p = @mkdir_p@
mpich_top_srcdir = @mpich_top_srcdir@
mpix = @mpix@
namepub_tests = @namepub_tests@
nocxxdistgraph = @nocxxdistgraph@
nslib = @nslib@
oldincludedir = @oldincludedir@
otherlangs = @otherlangs@
partdir = @partdir@
pdfdir = @pdfdir@
perfdir = @perfdir@
pmidir = @pmidir@
prefix = @prefix@
program_transform_name = @program_transform_name@
psdir = @psdir@
rmadir = @rmadir@
sbindir = @sbindir@
sharedstatedir = @sharedstatedir@
socklib = @socklib@
spawndir = @spawndir@
srcdir = @srcdir@
sysconfdir = @sysconfdir@
target_alias = @target_alias@
threadcommdir = @threadcommdir@
threadlib = @threadlib@
threadsdir = @threadsdir@
top_build_prefix = @top_build_prefix@
top_builddir = @top_builddir@
top_srcdir = @top_srcdir@
use_hydra = @use_hydra@
ze_CPPFLAGS = @ze_CPPFLAGS@
ze_LDFLAGS = @ze_LDFLAGS@
ze_LIBS = @ze_LIBS@
# AM_CPPFLAGS are used for C++ code as well
# Add libdtpools support
AM_CPPFLAGS = -I$(top_builddir)/include -I$(top_srcdir)/include \
-I$(top_srcdir)/dtpools/include
run_mpitests_obj = $(top_builddir)/util/librun_mpitests.la
LDADD = $(top_builddir)/dtpools/src/libdtpools.la \
$(top_builddir)/util/libmtest_single.la
CLEANFILES = $(SUMMARY_BASENAME).xml $(SUMMARY_BASENAME).tap $(SUMMARY_BASENAME).junit.xml
run_mpitests_CPPFLAGS = $(AM_CPPFLAGS) -DMULTI_TESTS
run_mpitests_SOURCES = \
util/run_mpitests.c \
attr/attrt.c \
attr/attrend.c \
attr/attric.c \
attr/attrerr.c \
attr/attrerrcomm.c \
attr/attrerrtype.c \
attr/attrdeleteget.c \
attr/attr2type.c \
attr/attrorder.c \
attr/attrordercomm.c \
attr/attrordertype.c \
attr/baseattr2.c \
attr/baseattrcomm.c \
attr/fkeyval.c \
attr/fkeyvalcomm.c \
attr/keyval_double_free.c \
attr/keyval_double_free_comm.c \
attr/keyval_double_free_type.c \
attr/keyval_double_free_win.c \
attr/fkeyvaltype.c \
coll/allgather2.c \
coll/allgather3.c \
coll/allgatherv2.c \
coll/allgatherv3.c \
coll/allgatherv4.c \
coll/allred.c \
coll/allred2.c \
coll/allred3.c \
coll/allred5.c \
coll/allred6.c \
coll/allredmany.c \
coll/alltoall1.c \
coll/alltoallv.c \
coll/alltoallv0.c \
coll/alltoallw1.c \
coll/alltoallw2.c \
coll/alltoallw_zeros.c \
coll/bcasttest.c \
coll/bcastzerotype.c \
coll/gather.c \
coll/gather2.c \
coll/gatherv.c \
coll/neighb_allgather.c \
coll/neighb_allgatherv.c \
coll/neighb_alltoall.c \
coll/neighb_alltoallv.c \
coll/neighb_alltoallw.c \
coll/op_coll.c \
coll/p_allgather.c \
coll/p_allgatherv.c \
coll/p_allred.c \
coll/p_alltoall.c \
coll/p_alltoallv.c \
coll/p_alltoallw.c \
coll/p_bcast.c \
coll/p_bcast2.c \
coll/p_gather.c \
coll/p_gatherv.c \
coll/p_neighb_allgather.c \
coll/p_neighb_allgatherv.c \
coll/p_neighb_alltoall.c \
coll/p_neighb_alltoallv.c \
coll/p_neighb_alltoallw.c \
coll/p_red.c \
coll/p_red_scat_block.c \
coll/p_redscat.c \
coll/p_scan.c \
coll/p_scatter.c \
coll/p_scatterv.c \
coll/red3.c \
coll/red4.c \
coll/red_scat_block.c \
coll/red_scat_block2.c \
coll/redscat.c \
coll/redscat2.c \
coll/redscat3.c \
coll/redscatblk3.c \
coll/reduce.c \
coll/scantst.c \
coll/scatter2.c \
coll/scatter3.c \
coll/scattern.c \
coll/scatterv.c \
all_mpitests.c
run_mpitests_LDADD = $(LDADD) -lm
# mix in the "make testing" rule and other boilerplate
ACLOCAL_AMFLAGS = -I confdb
static_subdirs = util attr basic datatype coll comm errhan group info init \
pt2pt rma topo errors manual perf mpi_t impls ckpoint dtpools \
part session
all_lang_subdirs = f77 cxx f90 f08
# DIST_SUBDIRS must be a superset of SUBDIRS, and automake must be able to
# *statically* compute its contents. The good news is that we can mostly avoid
# duplication because automake is able to "see" into simple variable
# assignments that are not driven by a configure @-substitution variable.
DIST_SUBDIRS = $(static_subdirs) io $(all_lang_subdirs) threads spawn .
SUBDIRS = $(static_subdirs) $(iodir) $(otherlangs) $(threadsdir) $(spawndir) $(ckpointdir) $(ftdir) .
EXTRA_DIST = maint/common.defn maint/f77tof90 maint/testmerge.in maint/updatefiles maint/gentests_dtp.sh maint/test_coll_algos.sh maint/dtp-test-config.txt testlist.in
DISTCLEANFILES = config.system
noinst_HEADERS = include/mpitest.h include/mpicolltest.h include/mpitestcxx.h include/mpithreadtest.h include/dtypes.h rma/squelch.h errors/rma/win_sync.h
nodist_noinst_HEADERS = include/mpitestconf.h
all: all-recursive
.SUFFIXES:
.SUFFIXES: .c .lo .o .obj
am--refresh: Makefile
@:
$(srcdir)/Makefile.in: @MAINTAINER_MODE_TRUE@ $(srcdir)/Makefile.am $(top_srcdir)/Makefile_single.mtest $(top_srcdir)/Makefile_common.mtest $(top_srcdir)/Makefile_mpitests.mtest $(am__configure_deps)
@for dep in $?; do \
case '$(am__configure_deps)' in \
*$$dep*) \
echo ' cd $(srcdir) && $(AUTOMAKE) --foreign'; \
$(am__cd) $(srcdir) && $(AUTOMAKE) --foreign \
&& exit 0; \
exit 1;; \
esac; \
done; \
echo ' cd $(top_srcdir) && $(AUTOMAKE) --foreign Makefile'; \
$(am__cd) $(top_srcdir) && \
$(AUTOMAKE) --foreign Makefile
Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status
@case '$?' in \
*config.status*) \
echo ' $(SHELL) ./config.status'; \
$(SHELL) ./config.status;; \
*) \
echo ' cd $(top_builddir) && $(SHELL) ./config.status $@ $(am__maybe_remake_depfiles)'; \
cd $(top_builddir) && $(SHELL) ./config.status $@ $(am__maybe_remake_depfiles);; \
esac;
$(top_srcdir)/Makefile_single.mtest $(top_srcdir)/Makefile_common.mtest $(top_srcdir)/Makefile_mpitests.mtest $(am__empty):
$(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES)
$(SHELL) ./config.status --recheck
$(top_srcdir)/configure: @MAINTAINER_MODE_TRUE@ $(am__configure_deps)
$(am__cd) $(srcdir) && $(AUTOCONF)
$(ACLOCAL_M4): @MAINTAINER_MODE_TRUE@ $(am__aclocal_m4_deps)
$(am__cd) $(srcdir) && $(ACLOCAL) $(ACLOCAL_AMFLAGS)
$(am__aclocal_m4_deps):
include/mpitestconf.h: include/stamp-h1
@test -f $@ || rm -f include/stamp-h1
@test -f $@ || $(MAKE) $(AM_MAKEFLAGS) include/stamp-h1
include/stamp-h1: $(top_srcdir)/include/mpitestconf.h.in $(top_builddir)/config.status
@rm -f include/stamp-h1
cd $(top_builddir) && $(SHELL) ./config.status include/mpitestconf.h
$(top_srcdir)/include/mpitestconf.h.in: @MAINTAINER_MODE_TRUE@ $(am__configure_deps)
($(am__cd) $(top_srcdir) && $(AUTOHEADER))
rm -f include/stamp-h1
touch $@
distclean-hdr:
-rm -f include/mpitestconf.h include/stamp-h1
maint/testmerge: $(top_builddir)/config.status $(top_srcdir)/maint/testmerge.in
cd $(top_builddir) && $(SHELL) ./config.status $@
checktests: $(top_builddir)/config.status $(srcdir)/checktests.in
cd $(top_builddir) && $(SHELL) ./config.status $@
testlist: $(top_builddir)/config.status $(srcdir)/testlist.in
cd $(top_builddir) && $(SHELL) ./config.status $@
clean-noinstPROGRAMS:
@list='$(noinst_PROGRAMS)'; test -n "$$list" || exit 0; \
echo " rm -f" $$list; \
rm -f $$list || exit $$?; \
test -n "$(EXEEXT)" || exit 0; \
list=`for p in $$list; do echo "$$p"; done | sed 's/$(EXEEXT)$$//'`; \
echo " rm -f" $$list; \
rm -f $$list
util/$(am__dirstamp):
@$(MKDIR_P) util
@: > util/$(am__dirstamp)
util/$(DEPDIR)/$(am__dirstamp):
@$(MKDIR_P) util/$(DEPDIR)
@: > util/$(DEPDIR)/$(am__dirstamp)
util/run_mpitests-run_mpitests.$(OBJEXT): util/$(am__dirstamp) \
util/$(DEPDIR)/$(am__dirstamp)
attr/$(am__dirstamp):
@$(MKDIR_P) attr
@: > attr/$(am__dirstamp)
attr/$(DEPDIR)/$(am__dirstamp):
@$(MKDIR_P) attr/$(DEPDIR)
@: > attr/$(DEPDIR)/$(am__dirstamp)
attr/run_mpitests-attrt.$(OBJEXT): attr/$(am__dirstamp) \
attr/$(DEPDIR)/$(am__dirstamp)
attr/run_mpitests-attrend.$(OBJEXT): attr/$(am__dirstamp) \
attr/$(DEPDIR)/$(am__dirstamp)
attr/run_mpitests-attric.$(OBJEXT): attr/$(am__dirstamp) \
attr/$(DEPDIR)/$(am__dirstamp)
attr/run_mpitests-attrerr.$(OBJEXT): attr/$(am__dirstamp) \
attr/$(DEPDIR)/$(am__dirstamp)
attr/run_mpitests-attrerrcomm.$(OBJEXT): attr/$(am__dirstamp) \
attr/$(DEPDIR)/$(am__dirstamp)
attr/run_mpitests-attrerrtype.$(OBJEXT): attr/$(am__dirstamp) \
attr/$(DEPDIR)/$(am__dirstamp)
attr/run_mpitests-attrdeleteget.$(OBJEXT): attr/$(am__dirstamp) \
attr/$(DEPDIR)/$(am__dirstamp)
attr/run_mpitests-attr2type.$(OBJEXT): attr/$(am__dirstamp) \
attr/$(DEPDIR)/$(am__dirstamp)
attr/run_mpitests-attrorder.$(OBJEXT): attr/$(am__dirstamp) \
attr/$(DEPDIR)/$(am__dirstamp)
attr/run_mpitests-attrordercomm.$(OBJEXT): attr/$(am__dirstamp) \
attr/$(DEPDIR)/$(am__dirstamp)
attr/run_mpitests-attrordertype.$(OBJEXT): attr/$(am__dirstamp) \
attr/$(DEPDIR)/$(am__dirstamp)
attr/run_mpitests-baseattr2.$(OBJEXT): attr/$(am__dirstamp) \
attr/$(DEPDIR)/$(am__dirstamp)
attr/run_mpitests-baseattrcomm.$(OBJEXT): attr/$(am__dirstamp) \
attr/$(DEPDIR)/$(am__dirstamp)
attr/run_mpitests-fkeyval.$(OBJEXT): attr/$(am__dirstamp) \
attr/$(DEPDIR)/$(am__dirstamp)
attr/run_mpitests-fkeyvalcomm.$(OBJEXT): attr/$(am__dirstamp) \
attr/$(DEPDIR)/$(am__dirstamp)
attr/run_mpitests-keyval_double_free.$(OBJEXT): attr/$(am__dirstamp) \
attr/$(DEPDIR)/$(am__dirstamp)
attr/run_mpitests-keyval_double_free_comm.$(OBJEXT): \
attr/$(am__dirstamp) attr/$(DEPDIR)/$(am__dirstamp)
attr/run_mpitests-keyval_double_free_type.$(OBJEXT): \
attr/$(am__dirstamp) attr/$(DEPDIR)/$(am__dirstamp)
attr/run_mpitests-keyval_double_free_win.$(OBJEXT): \
attr/$(am__dirstamp) attr/$(DEPDIR)/$(am__dirstamp)
attr/run_mpitests-fkeyvaltype.$(OBJEXT): attr/$(am__dirstamp) \
attr/$(DEPDIR)/$(am__dirstamp)
coll/$(am__dirstamp):
@$(MKDIR_P) coll
@: > coll/$(am__dirstamp)
coll/$(DEPDIR)/$(am__dirstamp):
@$(MKDIR_P) coll/$(DEPDIR)
@: > coll/$(DEPDIR)/$(am__dirstamp)
coll/run_mpitests-allgather2.$(OBJEXT): coll/$(am__dirstamp) \
coll/$(DEPDIR)/$(am__dirstamp)
coll/run_mpitests-allgather3.$(OBJEXT): coll/$(am__dirstamp) \
coll/$(DEPDIR)/$(am__dirstamp)
coll/run_mpitests-allgatherv2.$(OBJEXT): coll/$(am__dirstamp) \
coll/$(DEPDIR)/$(am__dirstamp)
coll/run_mpitests-allgatherv3.$(OBJEXT): coll/$(am__dirstamp) \
coll/$(DEPDIR)/$(am__dirstamp)
coll/run_mpitests-allgatherv4.$(OBJEXT): coll/$(am__dirstamp) \
coll/$(DEPDIR)/$(am__dirstamp)
coll/run_mpitests-allred.$(OBJEXT): coll/$(am__dirstamp) \
coll/$(DEPDIR)/$(am__dirstamp)
coll/run_mpitests-allred2.$(OBJEXT): coll/$(am__dirstamp) \
coll/$(DEPDIR)/$(am__dirstamp)
coll/run_mpitests-allred3.$(OBJEXT): coll/$(am__dirstamp) \
coll/$(DEPDIR)/$(am__dirstamp)
coll/run_mpitests-allred5.$(OBJEXT): coll/$(am__dirstamp) \
coll/$(DEPDIR)/$(am__dirstamp)
coll/run_mpitests-allred6.$(OBJEXT): coll/$(am__dirstamp) \
coll/$(DEPDIR)/$(am__dirstamp)
coll/run_mpitests-allredmany.$(OBJEXT): coll/$(am__dirstamp) \
coll/$(DEPDIR)/$(am__dirstamp)
coll/run_mpitests-alltoall1.$(OBJEXT): coll/$(am__dirstamp) \
coll/$(DEPDIR)/$(am__dirstamp)
coll/run_mpitests-alltoallv.$(OBJEXT): coll/$(am__dirstamp) \
coll/$(DEPDIR)/$(am__dirstamp)
coll/run_mpitests-alltoallv0.$(OBJEXT): coll/$(am__dirstamp) \
coll/$(DEPDIR)/$(am__dirstamp)
coll/run_mpitests-alltoallw1.$(OBJEXT): coll/$(am__dirstamp) \
coll/$(DEPDIR)/$(am__dirstamp)
coll/run_mpitests-alltoallw2.$(OBJEXT): coll/$(am__dirstamp) \
coll/$(DEPDIR)/$(am__dirstamp)
coll/run_mpitests-alltoallw_zeros.$(OBJEXT): coll/$(am__dirstamp) \
coll/$(DEPDIR)/$(am__dirstamp)
coll/run_mpitests-bcasttest.$(OBJEXT): coll/$(am__dirstamp) \
coll/$(DEPDIR)/$(am__dirstamp)
coll/run_mpitests-bcastzerotype.$(OBJEXT): coll/$(am__dirstamp) \
coll/$(DEPDIR)/$(am__dirstamp)
coll/run_mpitests-gather.$(OBJEXT): coll/$(am__dirstamp) \
coll/$(DEPDIR)/$(am__dirstamp)
coll/run_mpitests-gather2.$(OBJEXT): coll/$(am__dirstamp) \
coll/$(DEPDIR)/$(am__dirstamp)
coll/run_mpitests-gatherv.$(OBJEXT): coll/$(am__dirstamp) \
coll/$(DEPDIR)/$(am__dirstamp)
coll/run_mpitests-neighb_allgather.$(OBJEXT): coll/$(am__dirstamp) \
coll/$(DEPDIR)/$(am__dirstamp)
coll/run_mpitests-neighb_allgatherv.$(OBJEXT): coll/$(am__dirstamp) \
coll/$(DEPDIR)/$(am__dirstamp)
coll/run_mpitests-neighb_alltoall.$(OBJEXT): coll/$(am__dirstamp) \
coll/$(DEPDIR)/$(am__dirstamp)
coll/run_mpitests-neighb_alltoallv.$(OBJEXT): coll/$(am__dirstamp) \
coll/$(DEPDIR)/$(am__dirstamp)
coll/run_mpitests-neighb_alltoallw.$(OBJEXT): coll/$(am__dirstamp) \
coll/$(DEPDIR)/$(am__dirstamp)
coll/run_mpitests-op_coll.$(OBJEXT): coll/$(am__dirstamp) \
coll/$(DEPDIR)/$(am__dirstamp)
coll/run_mpitests-p_allgather.$(OBJEXT): coll/$(am__dirstamp) \
coll/$(DEPDIR)/$(am__dirstamp)
coll/run_mpitests-p_allgatherv.$(OBJEXT): coll/$(am__dirstamp) \
coll/$(DEPDIR)/$(am__dirstamp)
coll/run_mpitests-p_allred.$(OBJEXT): coll/$(am__dirstamp) \
coll/$(DEPDIR)/$(am__dirstamp)
coll/run_mpitests-p_alltoall.$(OBJEXT): coll/$(am__dirstamp) \
coll/$(DEPDIR)/$(am__dirstamp)
coll/run_mpitests-p_alltoallv.$(OBJEXT): coll/$(am__dirstamp) \
coll/$(DEPDIR)/$(am__dirstamp)
coll/run_mpitests-p_alltoallw.$(OBJEXT): coll/$(am__dirstamp) \
coll/$(DEPDIR)/$(am__dirstamp)
coll/run_mpitests-p_bcast.$(OBJEXT): coll/$(am__dirstamp) \
coll/$(DEPDIR)/$(am__dirstamp)
coll/run_mpitests-p_bcast2.$(OBJEXT): coll/$(am__dirstamp) \
coll/$(DEPDIR)/$(am__dirstamp)
coll/run_mpitests-p_gather.$(OBJEXT): coll/$(am__dirstamp) \
coll/$(DEPDIR)/$(am__dirstamp)
coll/run_mpitests-p_gatherv.$(OBJEXT): coll/$(am__dirstamp) \
coll/$(DEPDIR)/$(am__dirstamp)
coll/run_mpitests-p_neighb_allgather.$(OBJEXT): coll/$(am__dirstamp) \
coll/$(DEPDIR)/$(am__dirstamp)
coll/run_mpitests-p_neighb_allgatherv.$(OBJEXT): coll/$(am__dirstamp) \
coll/$(DEPDIR)/$(am__dirstamp)
coll/run_mpitests-p_neighb_alltoall.$(OBJEXT): coll/$(am__dirstamp) \
coll/$(DEPDIR)/$(am__dirstamp)
coll/run_mpitests-p_neighb_alltoallv.$(OBJEXT): coll/$(am__dirstamp) \
coll/$(DEPDIR)/$(am__dirstamp)
coll/run_mpitests-p_neighb_alltoallw.$(OBJEXT): coll/$(am__dirstamp) \
coll/$(DEPDIR)/$(am__dirstamp)
coll/run_mpitests-p_red.$(OBJEXT): coll/$(am__dirstamp) \
coll/$(DEPDIR)/$(am__dirstamp)
coll/run_mpitests-p_red_scat_block.$(OBJEXT): coll/$(am__dirstamp) \
coll/$(DEPDIR)/$(am__dirstamp)
coll/run_mpitests-p_redscat.$(OBJEXT): coll/$(am__dirstamp) \
coll/$(DEPDIR)/$(am__dirstamp)
coll/run_mpitests-p_scan.$(OBJEXT): coll/$(am__dirstamp) \
coll/$(DEPDIR)/$(am__dirstamp)
coll/run_mpitests-p_scatter.$(OBJEXT): coll/$(am__dirstamp) \
coll/$(DEPDIR)/$(am__dirstamp)
coll/run_mpitests-p_scatterv.$(OBJEXT): coll/$(am__dirstamp) \
coll/$(DEPDIR)/$(am__dirstamp)
coll/run_mpitests-red3.$(OBJEXT): coll/$(am__dirstamp) \
coll/$(DEPDIR)/$(am__dirstamp)
coll/run_mpitests-red4.$(OBJEXT): coll/$(am__dirstamp) \
coll/$(DEPDIR)/$(am__dirstamp)
coll/run_mpitests-red_scat_block.$(OBJEXT): coll/$(am__dirstamp) \
coll/$(DEPDIR)/$(am__dirstamp)
coll/run_mpitests-red_scat_block2.$(OBJEXT): coll/$(am__dirstamp) \
coll/$(DEPDIR)/$(am__dirstamp)
coll/run_mpitests-redscat.$(OBJEXT): coll/$(am__dirstamp) \
coll/$(DEPDIR)/$(am__dirstamp)
coll/run_mpitests-redscat2.$(OBJEXT): coll/$(am__dirstamp) \
coll/$(DEPDIR)/$(am__dirstamp)
coll/run_mpitests-redscat3.$(OBJEXT): coll/$(am__dirstamp) \
coll/$(DEPDIR)/$(am__dirstamp)
coll/run_mpitests-redscatblk3.$(OBJEXT): coll/$(am__dirstamp) \
coll/$(DEPDIR)/$(am__dirstamp)
coll/run_mpitests-reduce.$(OBJEXT): coll/$(am__dirstamp) \
coll/$(DEPDIR)/$(am__dirstamp)
coll/run_mpitests-scantst.$(OBJEXT): coll/$(am__dirstamp) \
coll/$(DEPDIR)/$(am__dirstamp)
coll/run_mpitests-scatter2.$(OBJEXT): coll/$(am__dirstamp) \
coll/$(DEPDIR)/$(am__dirstamp)
coll/run_mpitests-scatter3.$(OBJEXT): coll/$(am__dirstamp) \
coll/$(DEPDIR)/$(am__dirstamp)
coll/run_mpitests-scattern.$(OBJEXT): coll/$(am__dirstamp) \
coll/$(DEPDIR)/$(am__dirstamp)
coll/run_mpitests-scatterv.$(OBJEXT): coll/$(am__dirstamp) \
coll/$(DEPDIR)/$(am__dirstamp)
run_mpitests$(EXEEXT): $(run_mpitests_OBJECTS) $(run_mpitests_DEPENDENCIES) $(EXTRA_run_mpitests_DEPENDENCIES)
@rm -f run_mpitests$(EXEEXT)
$(AM_V_CCLD)$(LINK) $(run_mpitests_OBJECTS) $(run_mpitests_LDADD) $(LIBS)
mostlyclean-compile:
-rm -f *.$(OBJEXT)
-rm -f attr/*.$(OBJEXT)
-rm -f coll/*.$(OBJEXT)
-rm -f util/*.$(OBJEXT)
distclean-compile:
-rm -f *.tab.c
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/run_mpitests-all_mpitests.Po@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@attr/$(DEPDIR)/run_mpitests-attr2type.Po@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@attr/$(DEPDIR)/run_mpitests-attrdeleteget.Po@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@attr/$(DEPDIR)/run_mpitests-attrend.Po@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@attr/$(DEPDIR)/run_mpitests-attrerr.Po@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@attr/$(DEPDIR)/run_mpitests-attrerrcomm.Po@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@attr/$(DEPDIR)/run_mpitests-attrerrtype.Po@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@attr/$(DEPDIR)/run_mpitests-attric.Po@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@attr/$(DEPDIR)/run_mpitests-attrorder.Po@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@attr/$(DEPDIR)/run_mpitests-attrordercomm.Po@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@attr/$(DEPDIR)/run_mpitests-attrordertype.Po@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@attr/$(DEPDIR)/run_mpitests-attrt.Po@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@attr/$(DEPDIR)/run_mpitests-baseattr2.Po@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@attr/$(DEPDIR)/run_mpitests-baseattrcomm.Po@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@attr/$(DEPDIR)/run_mpitests-fkeyval.Po@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@attr/$(DEPDIR)/run_mpitests-fkeyvalcomm.Po@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@attr/$(DEPDIR)/run_mpitests-fkeyvaltype.Po@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@attr/$(DEPDIR)/run_mpitests-keyval_double_free.Po@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@attr/$(DEPDIR)/run_mpitests-keyval_double_free_comm.Po@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@attr/$(DEPDIR)/run_mpitests-keyval_double_free_type.Po@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@attr/$(DEPDIR)/run_mpitests-keyval_double_free_win.Po@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@coll/$(DEPDIR)/run_mpitests-allgather2.Po@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@coll/$(DEPDIR)/run_mpitests-allgather3.Po@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@coll/$(DEPDIR)/run_mpitests-allgatherv2.Po@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@coll/$(DEPDIR)/run_mpitests-allgatherv3.Po@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@coll/$(DEPDIR)/run_mpitests-allgatherv4.Po@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@coll/$(DEPDIR)/run_mpitests-allred.Po@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@coll/$(DEPDIR)/run_mpitests-allred2.Po@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@coll/$(DEPDIR)/run_mpitests-allred3.Po@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@coll/$(DEPDIR)/run_mpitests-allred5.Po@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@coll/$(DEPDIR)/run_mpitests-allred6.Po@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@coll/$(DEPDIR)/run_mpitests-allredmany.Po@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@coll/$(DEPDIR)/run_mpitests-alltoall1.Po@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@coll/$(DEPDIR)/run_mpitests-alltoallv.Po@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@coll/$(DEPDIR)/run_mpitests-alltoallv0.Po@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@coll/$(DEPDIR)/run_mpitests-alltoallw1.Po@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@coll/$(DEPDIR)/run_mpitests-alltoallw2.Po@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@coll/$(DEPDIR)/run_mpitests-alltoallw_zeros.Po@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@coll/$(DEPDIR)/run_mpitests-bcasttest.Po@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@coll/$(DEPDIR)/run_mpitests-bcastzerotype.Po@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@coll/$(DEPDIR)/run_mpitests-gather.Po@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@coll/$(DEPDIR)/run_mpitests-gather2.Po@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@coll/$(DEPDIR)/run_mpitests-gatherv.Po@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@coll/$(DEPDIR)/run_mpitests-neighb_allgather.Po@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@coll/$(DEPDIR)/run_mpitests-neighb_allgatherv.Po@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@coll/$(DEPDIR)/run_mpitests-neighb_alltoall.Po@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@coll/$(DEPDIR)/run_mpitests-neighb_alltoallv.Po@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@coll/$(DEPDIR)/run_mpitests-neighb_alltoallw.Po@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@coll/$(DEPDIR)/run_mpitests-op_coll.Po@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@coll/$(DEPDIR)/run_mpitests-p_allgather.Po@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@coll/$(DEPDIR)/run_mpitests-p_allgatherv.Po@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@coll/$(DEPDIR)/run_mpitests-p_allred.Po@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@coll/$(DEPDIR)/run_mpitests-p_alltoall.Po@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@coll/$(DEPDIR)/run_mpitests-p_alltoallv.Po@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@coll/$(DEPDIR)/run_mpitests-p_alltoallw.Po@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@coll/$(DEPDIR)/run_mpitests-p_bcast.Po@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@coll/$(DEPDIR)/run_mpitests-p_bcast2.Po@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@coll/$(DEPDIR)/run_mpitests-p_gather.Po@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@coll/$(DEPDIR)/run_mpitests-p_gatherv.Po@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@coll/$(DEPDIR)/run_mpitests-p_neighb_allgather.Po@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@coll/$(DEPDIR)/run_mpitests-p_neighb_allgatherv.Po@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@coll/$(DEPDIR)/run_mpitests-p_neighb_alltoall.Po@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@coll/$(DEPDIR)/run_mpitests-p_neighb_alltoallv.Po@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@coll/$(DEPDIR)/run_mpitests-p_neighb_alltoallw.Po@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@coll/$(DEPDIR)/run_mpitests-p_red.Po@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@coll/$(DEPDIR)/run_mpitests-p_red_scat_block.Po@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@coll/$(DEPDIR)/run_mpitests-p_redscat.Po@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@coll/$(DEPDIR)/run_mpitests-p_scan.Po@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@coll/$(DEPDIR)/run_mpitests-p_scatter.Po@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@coll/$(DEPDIR)/run_mpitests-p_scatterv.Po@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@coll/$(DEPDIR)/run_mpitests-red3.Po@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@coll/$(DEPDIR)/run_mpitests-red4.Po@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@coll/$(DEPDIR)/run_mpitests-red_scat_block.Po@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@coll/$(DEPDIR)/run_mpitests-red_scat_block2.Po@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@coll/$(DEPDIR)/run_mpitests-redscat.Po@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@coll/$(DEPDIR)/run_mpitests-redscat2.Po@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@coll/$(DEPDIR)/run_mpitests-redscat3.Po@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@coll/$(DEPDIR)/run_mpitests-redscatblk3.Po@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@coll/$(DEPDIR)/run_mpitests-reduce.Po@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@coll/$(DEPDIR)/run_mpitests-scantst.Po@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@coll/$(DEPDIR)/run_mpitests-scatter2.Po@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@coll/$(DEPDIR)/run_mpitests-scatter3.Po@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@coll/$(DEPDIR)/run_mpitests-scattern.Po@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@coll/$(DEPDIR)/run_mpitests-scatterv.Po@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@util/$(DEPDIR)/run_mpitests-run_mpitests.Po@am__quote@ # am--include-marker
$(am__depfiles_remade):
@$(MKDIR_P) $(@D)
@echo '# dummy' >$@-t && $(am__mv) $@-t $@
am--depfiles: $(am__depfiles_remade)
.c.o:
@am__fastdepCC_TRUE@ $(AM_V_CC)depbase=`echo $@ | sed 's|[^/]*$$|$(DEPDIR)/&|;s|\.o$$||'`;\
@am__fastdepCC_TRUE@ $(COMPILE) -MT $@ -MD -MP -MF $$depbase.Tpo -c -o $@ $< &&\
@am__fastdepCC_TRUE@ $(am__mv) $$depbase.Tpo $$depbase.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='$<' object='$@' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(COMPILE) -c -o $@ $<
.c.obj:
@am__fastdepCC_TRUE@ $(AM_V_CC)depbase=`echo $@ | sed 's|[^/]*$$|$(DEPDIR)/&|;s|\.obj$$||'`;\
@am__fastdepCC_TRUE@ $(COMPILE) -MT $@ -MD -MP -MF $$depbase.Tpo -c -o $@ `$(CYGPATH_W) '$<'` &&\
@am__fastdepCC_TRUE@ $(am__mv) $$depbase.Tpo $$depbase.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='$<' object='$@' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(COMPILE) -c -o $@ `$(CYGPATH_W) '$<'`
.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 $@ $<
util/run_mpitests-run_mpitests.o: util/run_mpitests.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(run_mpitests_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT util/run_mpitests-run_mpitests.o -MD -MP -MF util/$(DEPDIR)/run_mpitests-run_mpitests.Tpo -c -o util/run_mpitests-run_mpitests.o `test -f 'util/run_mpitests.c' || echo '$(srcdir)/'`util/run_mpitests.c
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) util/$(DEPDIR)/run_mpitests-run_mpitests.Tpo util/$(DEPDIR)/run_mpitests-run_mpitests.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='util/run_mpitests.c' object='util/run_mpitests-run_mpitests.o' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(run_mpitests_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o util/run_mpitests-run_mpitests.o `test -f 'util/run_mpitests.c' || echo '$(srcdir)/'`util/run_mpitests.c
util/run_mpitests-run_mpitests.obj: util/run_mpitests.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(run_mpitests_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT util/run_mpitests-run_mpitests.obj -MD -MP -MF util/$(DEPDIR)/run_mpitests-run_mpitests.Tpo -c -o util/run_mpitests-run_mpitests.obj `if test -f 'util/run_mpitests.c'; then $(CYGPATH_W) 'util/run_mpitests.c'; else $(CYGPATH_W) '$(srcdir)/util/run_mpitests.c'; fi`
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) util/$(DEPDIR)/run_mpitests-run_mpitests.Tpo util/$(DEPDIR)/run_mpitests-run_mpitests.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='util/run_mpitests.c' object='util/run_mpitests-run_mpitests.obj' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(run_mpitests_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o util/run_mpitests-run_mpitests.obj `if test -f 'util/run_mpitests.c'; then $(CYGPATH_W) 'util/run_mpitests.c'; else $(CYGPATH_W) '$(srcdir)/util/run_mpitests.c'; fi`
attr/run_mpitests-attrt.o: attr/attrt.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(run_mpitests_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT attr/run_mpitests-attrt.o -MD -MP -MF attr/$(DEPDIR)/run_mpitests-attrt.Tpo -c -o attr/run_mpitests-attrt.o `test -f 'attr/attrt.c' || echo '$(srcdir)/'`attr/attrt.c
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) attr/$(DEPDIR)/run_mpitests-attrt.Tpo attr/$(DEPDIR)/run_mpitests-attrt.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='attr/attrt.c' object='attr/run_mpitests-attrt.o' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(run_mpitests_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o attr/run_mpitests-attrt.o `test -f 'attr/attrt.c' || echo '$(srcdir)/'`attr/attrt.c
attr/run_mpitests-attrt.obj: attr/attrt.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(run_mpitests_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT attr/run_mpitests-attrt.obj -MD -MP -MF attr/$(DEPDIR)/run_mpitests-attrt.Tpo -c -o attr/run_mpitests-attrt.obj `if test -f 'attr/attrt.c'; then $(CYGPATH_W) 'attr/attrt.c'; else $(CYGPATH_W) '$(srcdir)/attr/attrt.c'; fi`
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) attr/$(DEPDIR)/run_mpitests-attrt.Tpo attr/$(DEPDIR)/run_mpitests-attrt.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='attr/attrt.c' object='attr/run_mpitests-attrt.obj' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(run_mpitests_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o attr/run_mpitests-attrt.obj `if test -f 'attr/attrt.c'; then $(CYGPATH_W) 'attr/attrt.c'; else $(CYGPATH_W) '$(srcdir)/attr/attrt.c'; fi`
attr/run_mpitests-attrend.o: attr/attrend.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(run_mpitests_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT attr/run_mpitests-attrend.o -MD -MP -MF attr/$(DEPDIR)/run_mpitests-attrend.Tpo -c -o attr/run_mpitests-attrend.o `test -f 'attr/attrend.c' || echo '$(srcdir)/'`attr/attrend.c
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) attr/$(DEPDIR)/run_mpitests-attrend.Tpo attr/$(DEPDIR)/run_mpitests-attrend.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='attr/attrend.c' object='attr/run_mpitests-attrend.o' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(run_mpitests_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o attr/run_mpitests-attrend.o `test -f 'attr/attrend.c' || echo '$(srcdir)/'`attr/attrend.c
attr/run_mpitests-attrend.obj: attr/attrend.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(run_mpitests_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT attr/run_mpitests-attrend.obj -MD -MP -MF attr/$(DEPDIR)/run_mpitests-attrend.Tpo -c -o attr/run_mpitests-attrend.obj `if test -f 'attr/attrend.c'; then $(CYGPATH_W) 'attr/attrend.c'; else $(CYGPATH_W) '$(srcdir)/attr/attrend.c'; fi`
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) attr/$(DEPDIR)/run_mpitests-attrend.Tpo attr/$(DEPDIR)/run_mpitests-attrend.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='attr/attrend.c' object='attr/run_mpitests-attrend.obj' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(run_mpitests_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o attr/run_mpitests-attrend.obj `if test -f 'attr/attrend.c'; then $(CYGPATH_W) 'attr/attrend.c'; else $(CYGPATH_W) '$(srcdir)/attr/attrend.c'; fi`
attr/run_mpitests-attric.o: attr/attric.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(run_mpitests_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT attr/run_mpitests-attric.o -MD -MP -MF attr/$(DEPDIR)/run_mpitests-attric.Tpo -c -o attr/run_mpitests-attric.o `test -f 'attr/attric.c' || echo '$(srcdir)/'`attr/attric.c
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) attr/$(DEPDIR)/run_mpitests-attric.Tpo attr/$(DEPDIR)/run_mpitests-attric.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='attr/attric.c' object='attr/run_mpitests-attric.o' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(run_mpitests_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o attr/run_mpitests-attric.o `test -f 'attr/attric.c' || echo '$(srcdir)/'`attr/attric.c
attr/run_mpitests-attric.obj: attr/attric.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(run_mpitests_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT attr/run_mpitests-attric.obj -MD -MP -MF attr/$(DEPDIR)/run_mpitests-attric.Tpo -c -o attr/run_mpitests-attric.obj `if test -f 'attr/attric.c'; then $(CYGPATH_W) 'attr/attric.c'; else $(CYGPATH_W) '$(srcdir)/attr/attric.c'; fi`
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) attr/$(DEPDIR)/run_mpitests-attric.Tpo attr/$(DEPDIR)/run_mpitests-attric.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='attr/attric.c' object='attr/run_mpitests-attric.obj' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(run_mpitests_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o attr/run_mpitests-attric.obj `if test -f 'attr/attric.c'; then $(CYGPATH_W) 'attr/attric.c'; else $(CYGPATH_W) '$(srcdir)/attr/attric.c'; fi`
attr/run_mpitests-attrerr.o: attr/attrerr.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(run_mpitests_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT attr/run_mpitests-attrerr.o -MD -MP -MF attr/$(DEPDIR)/run_mpitests-attrerr.Tpo -c -o attr/run_mpitests-attrerr.o `test -f 'attr/attrerr.c' || echo '$(srcdir)/'`attr/attrerr.c
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) attr/$(DEPDIR)/run_mpitests-attrerr.Tpo attr/$(DEPDIR)/run_mpitests-attrerr.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='attr/attrerr.c' object='attr/run_mpitests-attrerr.o' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(run_mpitests_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o attr/run_mpitests-attrerr.o `test -f 'attr/attrerr.c' || echo '$(srcdir)/'`attr/attrerr.c
attr/run_mpitests-attrerr.obj: attr/attrerr.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(run_mpitests_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT attr/run_mpitests-attrerr.obj -MD -MP -MF attr/$(DEPDIR)/run_mpitests-attrerr.Tpo -c -o attr/run_mpitests-attrerr.obj `if test -f 'attr/attrerr.c'; then $(CYGPATH_W) 'attr/attrerr.c'; else $(CYGPATH_W) '$(srcdir)/attr/attrerr.c'; fi`
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) attr/$(DEPDIR)/run_mpitests-attrerr.Tpo attr/$(DEPDIR)/run_mpitests-attrerr.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='attr/attrerr.c' object='attr/run_mpitests-attrerr.obj' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(run_mpitests_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o attr/run_mpitests-attrerr.obj `if test -f 'attr/attrerr.c'; then $(CYGPATH_W) 'attr/attrerr.c'; else $(CYGPATH_W) '$(srcdir)/attr/attrerr.c'; fi`
attr/run_mpitests-attrerrcomm.o: attr/attrerrcomm.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(run_mpitests_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT attr/run_mpitests-attrerrcomm.o -MD -MP -MF attr/$(DEPDIR)/run_mpitests-attrerrcomm.Tpo -c -o attr/run_mpitests-attrerrcomm.o `test -f 'attr/attrerrcomm.c' || echo '$(srcdir)/'`attr/attrerrcomm.c
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) attr/$(DEPDIR)/run_mpitests-attrerrcomm.Tpo attr/$(DEPDIR)/run_mpitests-attrerrcomm.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='attr/attrerrcomm.c' object='attr/run_mpitests-attrerrcomm.o' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(run_mpitests_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o attr/run_mpitests-attrerrcomm.o `test -f 'attr/attrerrcomm.c' || echo '$(srcdir)/'`attr/attrerrcomm.c
attr/run_mpitests-attrerrcomm.obj: attr/attrerrcomm.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(run_mpitests_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT attr/run_mpitests-attrerrcomm.obj -MD -MP -MF attr/$(DEPDIR)/run_mpitests-attrerrcomm.Tpo -c -o attr/run_mpitests-attrerrcomm.obj `if test -f 'attr/attrerrcomm.c'; then $(CYGPATH_W) 'attr/attrerrcomm.c'; else $(CYGPATH_W) '$(srcdir)/attr/attrerrcomm.c'; fi`
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) attr/$(DEPDIR)/run_mpitests-attrerrcomm.Tpo attr/$(DEPDIR)/run_mpitests-attrerrcomm.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='attr/attrerrcomm.c' object='attr/run_mpitests-attrerrcomm.obj' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(run_mpitests_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o attr/run_mpitests-attrerrcomm.obj `if test -f 'attr/attrerrcomm.c'; then $(CYGPATH_W) 'attr/attrerrcomm.c'; else $(CYGPATH_W) '$(srcdir)/attr/attrerrcomm.c'; fi`
attr/run_mpitests-attrerrtype.o: attr/attrerrtype.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(run_mpitests_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT attr/run_mpitests-attrerrtype.o -MD -MP -MF attr/$(DEPDIR)/run_mpitests-attrerrtype.Tpo -c -o attr/run_mpitests-attrerrtype.o `test -f 'attr/attrerrtype.c' || echo '$(srcdir)/'`attr/attrerrtype.c
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) attr/$(DEPDIR)/run_mpitests-attrerrtype.Tpo attr/$(DEPDIR)/run_mpitests-attrerrtype.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='attr/attrerrtype.c' object='attr/run_mpitests-attrerrtype.o' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(run_mpitests_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o attr/run_mpitests-attrerrtype.o `test -f 'attr/attrerrtype.c' || echo '$(srcdir)/'`attr/attrerrtype.c
attr/run_mpitests-attrerrtype.obj: attr/attrerrtype.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(run_mpitests_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT attr/run_mpitests-attrerrtype.obj -MD -MP -MF attr/$(DEPDIR)/run_mpitests-attrerrtype.Tpo -c -o attr/run_mpitests-attrerrtype.obj `if test -f 'attr/attrerrtype.c'; then $(CYGPATH_W) 'attr/attrerrtype.c'; else $(CYGPATH_W) '$(srcdir)/attr/attrerrtype.c'; fi`
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) attr/$(DEPDIR)/run_mpitests-attrerrtype.Tpo attr/$(DEPDIR)/run_mpitests-attrerrtype.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='attr/attrerrtype.c' object='attr/run_mpitests-attrerrtype.obj' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(run_mpitests_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o attr/run_mpitests-attrerrtype.obj `if test -f 'attr/attrerrtype.c'; then $(CYGPATH_W) 'attr/attrerrtype.c'; else $(CYGPATH_W) '$(srcdir)/attr/attrerrtype.c'; fi`
attr/run_mpitests-attrdeleteget.o: attr/attrdeleteget.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(run_mpitests_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT attr/run_mpitests-attrdeleteget.o -MD -MP -MF attr/$(DEPDIR)/run_mpitests-attrdeleteget.Tpo -c -o attr/run_mpitests-attrdeleteget.o `test -f 'attr/attrdeleteget.c' || echo '$(srcdir)/'`attr/attrdeleteget.c
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) attr/$(DEPDIR)/run_mpitests-attrdeleteget.Tpo attr/$(DEPDIR)/run_mpitests-attrdeleteget.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='attr/attrdeleteget.c' object='attr/run_mpitests-attrdeleteget.o' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(run_mpitests_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o attr/run_mpitests-attrdeleteget.o `test -f 'attr/attrdeleteget.c' || echo '$(srcdir)/'`attr/attrdeleteget.c
attr/run_mpitests-attrdeleteget.obj: attr/attrdeleteget.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(run_mpitests_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT attr/run_mpitests-attrdeleteget.obj -MD -MP -MF attr/$(DEPDIR)/run_mpitests-attrdeleteget.Tpo -c -o attr/run_mpitests-attrdeleteget.obj `if test -f 'attr/attrdeleteget.c'; then $(CYGPATH_W) 'attr/attrdeleteget.c'; else $(CYGPATH_W) '$(srcdir)/attr/attrdeleteget.c'; fi`
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) attr/$(DEPDIR)/run_mpitests-attrdeleteget.Tpo attr/$(DEPDIR)/run_mpitests-attrdeleteget.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='attr/attrdeleteget.c' object='attr/run_mpitests-attrdeleteget.obj' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(run_mpitests_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o attr/run_mpitests-attrdeleteget.obj `if test -f 'attr/attrdeleteget.c'; then $(CYGPATH_W) 'attr/attrdeleteget.c'; else $(CYGPATH_W) '$(srcdir)/attr/attrdeleteget.c'; fi`
attr/run_mpitests-attr2type.o: attr/attr2type.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(run_mpitests_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT attr/run_mpitests-attr2type.o -MD -MP -MF attr/$(DEPDIR)/run_mpitests-attr2type.Tpo -c -o attr/run_mpitests-attr2type.o `test -f 'attr/attr2type.c' || echo '$(srcdir)/'`attr/attr2type.c
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) attr/$(DEPDIR)/run_mpitests-attr2type.Tpo attr/$(DEPDIR)/run_mpitests-attr2type.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='attr/attr2type.c' object='attr/run_mpitests-attr2type.o' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(run_mpitests_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o attr/run_mpitests-attr2type.o `test -f 'attr/attr2type.c' || echo '$(srcdir)/'`attr/attr2type.c
attr/run_mpitests-attr2type.obj: attr/attr2type.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(run_mpitests_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT attr/run_mpitests-attr2type.obj -MD -MP -MF attr/$(DEPDIR)/run_mpitests-attr2type.Tpo -c -o attr/run_mpitests-attr2type.obj `if test -f 'attr/attr2type.c'; then $(CYGPATH_W) 'attr/attr2type.c'; else $(CYGPATH_W) '$(srcdir)/attr/attr2type.c'; fi`
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) attr/$(DEPDIR)/run_mpitests-attr2type.Tpo attr/$(DEPDIR)/run_mpitests-attr2type.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='attr/attr2type.c' object='attr/run_mpitests-attr2type.obj' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(run_mpitests_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o attr/run_mpitests-attr2type.obj `if test -f 'attr/attr2type.c'; then $(CYGPATH_W) 'attr/attr2type.c'; else $(CYGPATH_W) '$(srcdir)/attr/attr2type.c'; fi`
attr/run_mpitests-attrorder.o: attr/attrorder.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(run_mpitests_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT attr/run_mpitests-attrorder.o -MD -MP -MF attr/$(DEPDIR)/run_mpitests-attrorder.Tpo -c -o attr/run_mpitests-attrorder.o `test -f 'attr/attrorder.c' || echo '$(srcdir)/'`attr/attrorder.c
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) attr/$(DEPDIR)/run_mpitests-attrorder.Tpo attr/$(DEPDIR)/run_mpitests-attrorder.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='attr/attrorder.c' object='attr/run_mpitests-attrorder.o' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(run_mpitests_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o attr/run_mpitests-attrorder.o `test -f 'attr/attrorder.c' || echo '$(srcdir)/'`attr/attrorder.c
attr/run_mpitests-attrorder.obj: attr/attrorder.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(run_mpitests_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT attr/run_mpitests-attrorder.obj -MD -MP -MF attr/$(DEPDIR)/run_mpitests-attrorder.Tpo -c -o attr/run_mpitests-attrorder.obj `if test -f 'attr/attrorder.c'; then $(CYGPATH_W) 'attr/attrorder.c'; else $(CYGPATH_W) '$(srcdir)/attr/attrorder.c'; fi`
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) attr/$(DEPDIR)/run_mpitests-attrorder.Tpo attr/$(DEPDIR)/run_mpitests-attrorder.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='attr/attrorder.c' object='attr/run_mpitests-attrorder.obj' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(run_mpitests_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o attr/run_mpitests-attrorder.obj `if test -f 'attr/attrorder.c'; then $(CYGPATH_W) 'attr/attrorder.c'; else $(CYGPATH_W) '$(srcdir)/attr/attrorder.c'; fi`
attr/run_mpitests-attrordercomm.o: attr/attrordercomm.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(run_mpitests_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT attr/run_mpitests-attrordercomm.o -MD -MP -MF attr/$(DEPDIR)/run_mpitests-attrordercomm.Tpo -c -o attr/run_mpitests-attrordercomm.o `test -f 'attr/attrordercomm.c' || echo '$(srcdir)/'`attr/attrordercomm.c
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) attr/$(DEPDIR)/run_mpitests-attrordercomm.Tpo attr/$(DEPDIR)/run_mpitests-attrordercomm.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='attr/attrordercomm.c' object='attr/run_mpitests-attrordercomm.o' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(run_mpitests_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o attr/run_mpitests-attrordercomm.o `test -f 'attr/attrordercomm.c' || echo '$(srcdir)/'`attr/attrordercomm.c
attr/run_mpitests-attrordercomm.obj: attr/attrordercomm.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(run_mpitests_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT attr/run_mpitests-attrordercomm.obj -MD -MP -MF attr/$(DEPDIR)/run_mpitests-attrordercomm.Tpo -c -o attr/run_mpitests-attrordercomm.obj `if test -f 'attr/attrordercomm.c'; then $(CYGPATH_W) 'attr/attrordercomm.c'; else $(CYGPATH_W) '$(srcdir)/attr/attrordercomm.c'; fi`
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) attr/$(DEPDIR)/run_mpitests-attrordercomm.Tpo attr/$(DEPDIR)/run_mpitests-attrordercomm.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='attr/attrordercomm.c' object='attr/run_mpitests-attrordercomm.obj' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(run_mpitests_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o attr/run_mpitests-attrordercomm.obj `if test -f 'attr/attrordercomm.c'; then $(CYGPATH_W) 'attr/attrordercomm.c'; else $(CYGPATH_W) '$(srcdir)/attr/attrordercomm.c'; fi`
attr/run_mpitests-attrordertype.o: attr/attrordertype.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(run_mpitests_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT attr/run_mpitests-attrordertype.o -MD -MP -MF attr/$(DEPDIR)/run_mpitests-attrordertype.Tpo -c -o attr/run_mpitests-attrordertype.o `test -f 'attr/attrordertype.c' || echo '$(srcdir)/'`attr/attrordertype.c
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) attr/$(DEPDIR)/run_mpitests-attrordertype.Tpo attr/$(DEPDIR)/run_mpitests-attrordertype.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='attr/attrordertype.c' object='attr/run_mpitests-attrordertype.o' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(run_mpitests_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o attr/run_mpitests-attrordertype.o `test -f 'attr/attrordertype.c' || echo '$(srcdir)/'`attr/attrordertype.c
attr/run_mpitests-attrordertype.obj: attr/attrordertype.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(run_mpitests_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT attr/run_mpitests-attrordertype.obj -MD -MP -MF attr/$(DEPDIR)/run_mpitests-attrordertype.Tpo -c -o attr/run_mpitests-attrordertype.obj `if test -f 'attr/attrordertype.c'; then $(CYGPATH_W) 'attr/attrordertype.c'; else $(CYGPATH_W) '$(srcdir)/attr/attrordertype.c'; fi`
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) attr/$(DEPDIR)/run_mpitests-attrordertype.Tpo attr/$(DEPDIR)/run_mpitests-attrordertype.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='attr/attrordertype.c' object='attr/run_mpitests-attrordertype.obj' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(run_mpitests_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o attr/run_mpitests-attrordertype.obj `if test -f 'attr/attrordertype.c'; then $(CYGPATH_W) 'attr/attrordertype.c'; else $(CYGPATH_W) '$(srcdir)/attr/attrordertype.c'; fi`
attr/run_mpitests-baseattr2.o: attr/baseattr2.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(run_mpitests_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT attr/run_mpitests-baseattr2.o -MD -MP -MF attr/$(DEPDIR)/run_mpitests-baseattr2.Tpo -c -o attr/run_mpitests-baseattr2.o `test -f 'attr/baseattr2.c' || echo '$(srcdir)/'`attr/baseattr2.c
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) attr/$(DEPDIR)/run_mpitests-baseattr2.Tpo attr/$(DEPDIR)/run_mpitests-baseattr2.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='attr/baseattr2.c' object='attr/run_mpitests-baseattr2.o' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(run_mpitests_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o attr/run_mpitests-baseattr2.o `test -f 'attr/baseattr2.c' || echo '$(srcdir)/'`attr/baseattr2.c
attr/run_mpitests-baseattr2.obj: attr/baseattr2.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(run_mpitests_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT attr/run_mpitests-baseattr2.obj -MD -MP -MF attr/$(DEPDIR)/run_mpitests-baseattr2.Tpo -c -o attr/run_mpitests-baseattr2.obj `if test -f 'attr/baseattr2.c'; then $(CYGPATH_W) 'attr/baseattr2.c'; else $(CYGPATH_W) '$(srcdir)/attr/baseattr2.c'; fi`
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) attr/$(DEPDIR)/run_mpitests-baseattr2.Tpo attr/$(DEPDIR)/run_mpitests-baseattr2.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='attr/baseattr2.c' object='attr/run_mpitests-baseattr2.obj' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(run_mpitests_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o attr/run_mpitests-baseattr2.obj `if test -f 'attr/baseattr2.c'; then $(CYGPATH_W) 'attr/baseattr2.c'; else $(CYGPATH_W) '$(srcdir)/attr/baseattr2.c'; fi`
attr/run_mpitests-baseattrcomm.o: attr/baseattrcomm.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(run_mpitests_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT attr/run_mpitests-baseattrcomm.o -MD -MP -MF attr/$(DEPDIR)/run_mpitests-baseattrcomm.Tpo -c -o attr/run_mpitests-baseattrcomm.o `test -f 'attr/baseattrcomm.c' || echo '$(srcdir)/'`attr/baseattrcomm.c
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) attr/$(DEPDIR)/run_mpitests-baseattrcomm.Tpo attr/$(DEPDIR)/run_mpitests-baseattrcomm.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='attr/baseattrcomm.c' object='attr/run_mpitests-baseattrcomm.o' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(run_mpitests_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o attr/run_mpitests-baseattrcomm.o `test -f 'attr/baseattrcomm.c' || echo '$(srcdir)/'`attr/baseattrcomm.c
attr/run_mpitests-baseattrcomm.obj: attr/baseattrcomm.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(run_mpitests_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT attr/run_mpitests-baseattrcomm.obj -MD -MP -MF attr/$(DEPDIR)/run_mpitests-baseattrcomm.Tpo -c -o attr/run_mpitests-baseattrcomm.obj `if test -f 'attr/baseattrcomm.c'; then $(CYGPATH_W) 'attr/baseattrcomm.c'; else $(CYGPATH_W) '$(srcdir)/attr/baseattrcomm.c'; fi`
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) attr/$(DEPDIR)/run_mpitests-baseattrcomm.Tpo attr/$(DEPDIR)/run_mpitests-baseattrcomm.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='attr/baseattrcomm.c' object='attr/run_mpitests-baseattrcomm.obj' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(run_mpitests_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o attr/run_mpitests-baseattrcomm.obj `if test -f 'attr/baseattrcomm.c'; then $(CYGPATH_W) 'attr/baseattrcomm.c'; else $(CYGPATH_W) '$(srcdir)/attr/baseattrcomm.c'; fi`
attr/run_mpitests-fkeyval.o: attr/fkeyval.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(run_mpitests_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT attr/run_mpitests-fkeyval.o -MD -MP -MF attr/$(DEPDIR)/run_mpitests-fkeyval.Tpo -c -o attr/run_mpitests-fkeyval.o `test -f 'attr/fkeyval.c' || echo '$(srcdir)/'`attr/fkeyval.c
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) attr/$(DEPDIR)/run_mpitests-fkeyval.Tpo attr/$(DEPDIR)/run_mpitests-fkeyval.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='attr/fkeyval.c' object='attr/run_mpitests-fkeyval.o' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(run_mpitests_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o attr/run_mpitests-fkeyval.o `test -f 'attr/fkeyval.c' || echo '$(srcdir)/'`attr/fkeyval.c
attr/run_mpitests-fkeyval.obj: attr/fkeyval.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(run_mpitests_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT attr/run_mpitests-fkeyval.obj -MD -MP -MF attr/$(DEPDIR)/run_mpitests-fkeyval.Tpo -c -o attr/run_mpitests-fkeyval.obj `if test -f 'attr/fkeyval.c'; then $(CYGPATH_W) 'attr/fkeyval.c'; else $(CYGPATH_W) '$(srcdir)/attr/fkeyval.c'; fi`
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) attr/$(DEPDIR)/run_mpitests-fkeyval.Tpo attr/$(DEPDIR)/run_mpitests-fkeyval.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='attr/fkeyval.c' object='attr/run_mpitests-fkeyval.obj' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(run_mpitests_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o attr/run_mpitests-fkeyval.obj `if test -f 'attr/fkeyval.c'; then $(CYGPATH_W) 'attr/fkeyval.c'; else $(CYGPATH_W) '$(srcdir)/attr/fkeyval.c'; fi`
attr/run_mpitests-fkeyvalcomm.o: attr/fkeyvalcomm.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(run_mpitests_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT attr/run_mpitests-fkeyvalcomm.o -MD -MP -MF attr/$(DEPDIR)/run_mpitests-fkeyvalcomm.Tpo -c -o attr/run_mpitests-fkeyvalcomm.o `test -f 'attr/fkeyvalcomm.c' || echo '$(srcdir)/'`attr/fkeyvalcomm.c
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) attr/$(DEPDIR)/run_mpitests-fkeyvalcomm.Tpo attr/$(DEPDIR)/run_mpitests-fkeyvalcomm.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='attr/fkeyvalcomm.c' object='attr/run_mpitests-fkeyvalcomm.o' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(run_mpitests_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o attr/run_mpitests-fkeyvalcomm.o `test -f 'attr/fkeyvalcomm.c' || echo '$(srcdir)/'`attr/fkeyvalcomm.c
attr/run_mpitests-fkeyvalcomm.obj: attr/fkeyvalcomm.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(run_mpitests_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT attr/run_mpitests-fkeyvalcomm.obj -MD -MP -MF attr/$(DEPDIR)/run_mpitests-fkeyvalcomm.Tpo -c -o attr/run_mpitests-fkeyvalcomm.obj `if test -f 'attr/fkeyvalcomm.c'; then $(CYGPATH_W) 'attr/fkeyvalcomm.c'; else $(CYGPATH_W) '$(srcdir)/attr/fkeyvalcomm.c'; fi`
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) attr/$(DEPDIR)/run_mpitests-fkeyvalcomm.Tpo attr/$(DEPDIR)/run_mpitests-fkeyvalcomm.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='attr/fkeyvalcomm.c' object='attr/run_mpitests-fkeyvalcomm.obj' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(run_mpitests_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o attr/run_mpitests-fkeyvalcomm.obj `if test -f 'attr/fkeyvalcomm.c'; then $(CYGPATH_W) 'attr/fkeyvalcomm.c'; else $(CYGPATH_W) '$(srcdir)/attr/fkeyvalcomm.c'; fi`
attr/run_mpitests-keyval_double_free.o: attr/keyval_double_free.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(run_mpitests_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT attr/run_mpitests-keyval_double_free.o -MD -MP -MF attr/$(DEPDIR)/run_mpitests-keyval_double_free.Tpo -c -o attr/run_mpitests-keyval_double_free.o `test -f 'attr/keyval_double_free.c' || echo '$(srcdir)/'`attr/keyval_double_free.c
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) attr/$(DEPDIR)/run_mpitests-keyval_double_free.Tpo attr/$(DEPDIR)/run_mpitests-keyval_double_free.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='attr/keyval_double_free.c' object='attr/run_mpitests-keyval_double_free.o' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(run_mpitests_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o attr/run_mpitests-keyval_double_free.o `test -f 'attr/keyval_double_free.c' || echo '$(srcdir)/'`attr/keyval_double_free.c
attr/run_mpitests-keyval_double_free.obj: attr/keyval_double_free.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(run_mpitests_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT attr/run_mpitests-keyval_double_free.obj -MD -MP -MF attr/$(DEPDIR)/run_mpitests-keyval_double_free.Tpo -c -o attr/run_mpitests-keyval_double_free.obj `if test -f 'attr/keyval_double_free.c'; then $(CYGPATH_W) 'attr/keyval_double_free.c'; else $(CYGPATH_W) '$(srcdir)/attr/keyval_double_free.c'; fi`
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) attr/$(DEPDIR)/run_mpitests-keyval_double_free.Tpo attr/$(DEPDIR)/run_mpitests-keyval_double_free.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='attr/keyval_double_free.c' object='attr/run_mpitests-keyval_double_free.obj' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(run_mpitests_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o attr/run_mpitests-keyval_double_free.obj `if test -f 'attr/keyval_double_free.c'; then $(CYGPATH_W) 'attr/keyval_double_free.c'; else $(CYGPATH_W) '$(srcdir)/attr/keyval_double_free.c'; fi`
attr/run_mpitests-keyval_double_free_comm.o: attr/keyval_double_free_comm.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(run_mpitests_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT attr/run_mpitests-keyval_double_free_comm.o -MD -MP -MF attr/$(DEPDIR)/run_mpitests-keyval_double_free_comm.Tpo -c -o attr/run_mpitests-keyval_double_free_comm.o `test -f 'attr/keyval_double_free_comm.c' || echo '$(srcdir)/'`attr/keyval_double_free_comm.c
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) attr/$(DEPDIR)/run_mpitests-keyval_double_free_comm.Tpo attr/$(DEPDIR)/run_mpitests-keyval_double_free_comm.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='attr/keyval_double_free_comm.c' object='attr/run_mpitests-keyval_double_free_comm.o' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(run_mpitests_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o attr/run_mpitests-keyval_double_free_comm.o `test -f 'attr/keyval_double_free_comm.c' || echo '$(srcdir)/'`attr/keyval_double_free_comm.c
attr/run_mpitests-keyval_double_free_comm.obj: attr/keyval_double_free_comm.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(run_mpitests_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT attr/run_mpitests-keyval_double_free_comm.obj -MD -MP -MF attr/$(DEPDIR)/run_mpitests-keyval_double_free_comm.Tpo -c -o attr/run_mpitests-keyval_double_free_comm.obj `if test -f 'attr/keyval_double_free_comm.c'; then $(CYGPATH_W) 'attr/keyval_double_free_comm.c'; else $(CYGPATH_W) '$(srcdir)/attr/keyval_double_free_comm.c'; fi`
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) attr/$(DEPDIR)/run_mpitests-keyval_double_free_comm.Tpo attr/$(DEPDIR)/run_mpitests-keyval_double_free_comm.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='attr/keyval_double_free_comm.c' object='attr/run_mpitests-keyval_double_free_comm.obj' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(run_mpitests_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o attr/run_mpitests-keyval_double_free_comm.obj `if test -f 'attr/keyval_double_free_comm.c'; then $(CYGPATH_W) 'attr/keyval_double_free_comm.c'; else $(CYGPATH_W) '$(srcdir)/attr/keyval_double_free_comm.c'; fi`
attr/run_mpitests-keyval_double_free_type.o: attr/keyval_double_free_type.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(run_mpitests_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT attr/run_mpitests-keyval_double_free_type.o -MD -MP -MF attr/$(DEPDIR)/run_mpitests-keyval_double_free_type.Tpo -c -o attr/run_mpitests-keyval_double_free_type.o `test -f 'attr/keyval_double_free_type.c' || echo '$(srcdir)/'`attr/keyval_double_free_type.c
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) attr/$(DEPDIR)/run_mpitests-keyval_double_free_type.Tpo attr/$(DEPDIR)/run_mpitests-keyval_double_free_type.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='attr/keyval_double_free_type.c' object='attr/run_mpitests-keyval_double_free_type.o' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(run_mpitests_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o attr/run_mpitests-keyval_double_free_type.o `test -f 'attr/keyval_double_free_type.c' || echo '$(srcdir)/'`attr/keyval_double_free_type.c
attr/run_mpitests-keyval_double_free_type.obj: attr/keyval_double_free_type.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(run_mpitests_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT attr/run_mpitests-keyval_double_free_type.obj -MD -MP -MF attr/$(DEPDIR)/run_mpitests-keyval_double_free_type.Tpo -c -o attr/run_mpitests-keyval_double_free_type.obj `if test -f 'attr/keyval_double_free_type.c'; then $(CYGPATH_W) 'attr/keyval_double_free_type.c'; else $(CYGPATH_W) '$(srcdir)/attr/keyval_double_free_type.c'; fi`
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) attr/$(DEPDIR)/run_mpitests-keyval_double_free_type.Tpo attr/$(DEPDIR)/run_mpitests-keyval_double_free_type.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='attr/keyval_double_free_type.c' object='attr/run_mpitests-keyval_double_free_type.obj' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(run_mpitests_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o attr/run_mpitests-keyval_double_free_type.obj `if test -f 'attr/keyval_double_free_type.c'; then $(CYGPATH_W) 'attr/keyval_double_free_type.c'; else $(CYGPATH_W) '$(srcdir)/attr/keyval_double_free_type.c'; fi`
attr/run_mpitests-keyval_double_free_win.o: attr/keyval_double_free_win.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(run_mpitests_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT attr/run_mpitests-keyval_double_free_win.o -MD -MP -MF attr/$(DEPDIR)/run_mpitests-keyval_double_free_win.Tpo -c -o attr/run_mpitests-keyval_double_free_win.o `test -f 'attr/keyval_double_free_win.c' || echo '$(srcdir)/'`attr/keyval_double_free_win.c
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) attr/$(DEPDIR)/run_mpitests-keyval_double_free_win.Tpo attr/$(DEPDIR)/run_mpitests-keyval_double_free_win.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='attr/keyval_double_free_win.c' object='attr/run_mpitests-keyval_double_free_win.o' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(run_mpitests_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o attr/run_mpitests-keyval_double_free_win.o `test -f 'attr/keyval_double_free_win.c' || echo '$(srcdir)/'`attr/keyval_double_free_win.c
attr/run_mpitests-keyval_double_free_win.obj: attr/keyval_double_free_win.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(run_mpitests_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT attr/run_mpitests-keyval_double_free_win.obj -MD -MP -MF attr/$(DEPDIR)/run_mpitests-keyval_double_free_win.Tpo -c -o attr/run_mpitests-keyval_double_free_win.obj `if test -f 'attr/keyval_double_free_win.c'; then $(CYGPATH_W) 'attr/keyval_double_free_win.c'; else $(CYGPATH_W) '$(srcdir)/attr/keyval_double_free_win.c'; fi`
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) attr/$(DEPDIR)/run_mpitests-keyval_double_free_win.Tpo attr/$(DEPDIR)/run_mpitests-keyval_double_free_win.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='attr/keyval_double_free_win.c' object='attr/run_mpitests-keyval_double_free_win.obj' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(run_mpitests_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o attr/run_mpitests-keyval_double_free_win.obj `if test -f 'attr/keyval_double_free_win.c'; then $(CYGPATH_W) 'attr/keyval_double_free_win.c'; else $(CYGPATH_W) '$(srcdir)/attr/keyval_double_free_win.c'; fi`
attr/run_mpitests-fkeyvaltype.o: attr/fkeyvaltype.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(run_mpitests_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT attr/run_mpitests-fkeyvaltype.o -MD -MP -MF attr/$(DEPDIR)/run_mpitests-fkeyvaltype.Tpo -c -o attr/run_mpitests-fkeyvaltype.o `test -f 'attr/fkeyvaltype.c' || echo '$(srcdir)/'`attr/fkeyvaltype.c
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) attr/$(DEPDIR)/run_mpitests-fkeyvaltype.Tpo attr/$(DEPDIR)/run_mpitests-fkeyvaltype.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='attr/fkeyvaltype.c' object='attr/run_mpitests-fkeyvaltype.o' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(run_mpitests_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o attr/run_mpitests-fkeyvaltype.o `test -f 'attr/fkeyvaltype.c' || echo '$(srcdir)/'`attr/fkeyvaltype.c
attr/run_mpitests-fkeyvaltype.obj: attr/fkeyvaltype.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(run_mpitests_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT attr/run_mpitests-fkeyvaltype.obj -MD -MP -MF attr/$(DEPDIR)/run_mpitests-fkeyvaltype.Tpo -c -o attr/run_mpitests-fkeyvaltype.obj `if test -f 'attr/fkeyvaltype.c'; then $(CYGPATH_W) 'attr/fkeyvaltype.c'; else $(CYGPATH_W) '$(srcdir)/attr/fkeyvaltype.c'; fi`
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) attr/$(DEPDIR)/run_mpitests-fkeyvaltype.Tpo attr/$(DEPDIR)/run_mpitests-fkeyvaltype.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='attr/fkeyvaltype.c' object='attr/run_mpitests-fkeyvaltype.obj' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(run_mpitests_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o attr/run_mpitests-fkeyvaltype.obj `if test -f 'attr/fkeyvaltype.c'; then $(CYGPATH_W) 'attr/fkeyvaltype.c'; else $(CYGPATH_W) '$(srcdir)/attr/fkeyvaltype.c'; fi`
coll/run_mpitests-allgather2.o: coll/allgather2.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(run_mpitests_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT coll/run_mpitests-allgather2.o -MD -MP -MF coll/$(DEPDIR)/run_mpitests-allgather2.Tpo -c -o coll/run_mpitests-allgather2.o `test -f 'coll/allgather2.c' || echo '$(srcdir)/'`coll/allgather2.c
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) coll/$(DEPDIR)/run_mpitests-allgather2.Tpo coll/$(DEPDIR)/run_mpitests-allgather2.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='coll/allgather2.c' object='coll/run_mpitests-allgather2.o' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(run_mpitests_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o coll/run_mpitests-allgather2.o `test -f 'coll/allgather2.c' || echo '$(srcdir)/'`coll/allgather2.c
coll/run_mpitests-allgather2.obj: coll/allgather2.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(run_mpitests_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT coll/run_mpitests-allgather2.obj -MD -MP -MF coll/$(DEPDIR)/run_mpitests-allgather2.Tpo -c -o coll/run_mpitests-allgather2.obj `if test -f 'coll/allgather2.c'; then $(CYGPATH_W) 'coll/allgather2.c'; else $(CYGPATH_W) '$(srcdir)/coll/allgather2.c'; fi`
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) coll/$(DEPDIR)/run_mpitests-allgather2.Tpo coll/$(DEPDIR)/run_mpitests-allgather2.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='coll/allgather2.c' object='coll/run_mpitests-allgather2.obj' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(run_mpitests_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o coll/run_mpitests-allgather2.obj `if test -f 'coll/allgather2.c'; then $(CYGPATH_W) 'coll/allgather2.c'; else $(CYGPATH_W) '$(srcdir)/coll/allgather2.c'; fi`
coll/run_mpitests-allgather3.o: coll/allgather3.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(run_mpitests_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT coll/run_mpitests-allgather3.o -MD -MP -MF coll/$(DEPDIR)/run_mpitests-allgather3.Tpo -c -o coll/run_mpitests-allgather3.o `test -f 'coll/allgather3.c' || echo '$(srcdir)/'`coll/allgather3.c
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) coll/$(DEPDIR)/run_mpitests-allgather3.Tpo coll/$(DEPDIR)/run_mpitests-allgather3.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='coll/allgather3.c' object='coll/run_mpitests-allgather3.o' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(run_mpitests_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o coll/run_mpitests-allgather3.o `test -f 'coll/allgather3.c' || echo '$(srcdir)/'`coll/allgather3.c
coll/run_mpitests-allgather3.obj: coll/allgather3.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(run_mpitests_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT coll/run_mpitests-allgather3.obj -MD -MP -MF coll/$(DEPDIR)/run_mpitests-allgather3.Tpo -c -o coll/run_mpitests-allgather3.obj `if test -f 'coll/allgather3.c'; then $(CYGPATH_W) 'coll/allgather3.c'; else $(CYGPATH_W) '$(srcdir)/coll/allgather3.c'; fi`
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) coll/$(DEPDIR)/run_mpitests-allgather3.Tpo coll/$(DEPDIR)/run_mpitests-allgather3.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='coll/allgather3.c' object='coll/run_mpitests-allgather3.obj' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(run_mpitests_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o coll/run_mpitests-allgather3.obj `if test -f 'coll/allgather3.c'; then $(CYGPATH_W) 'coll/allgather3.c'; else $(CYGPATH_W) '$(srcdir)/coll/allgather3.c'; fi`
coll/run_mpitests-allgatherv2.o: coll/allgatherv2.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(run_mpitests_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT coll/run_mpitests-allgatherv2.o -MD -MP -MF coll/$(DEPDIR)/run_mpitests-allgatherv2.Tpo -c -o coll/run_mpitests-allgatherv2.o `test -f 'coll/allgatherv2.c' || echo '$(srcdir)/'`coll/allgatherv2.c
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) coll/$(DEPDIR)/run_mpitests-allgatherv2.Tpo coll/$(DEPDIR)/run_mpitests-allgatherv2.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='coll/allgatherv2.c' object='coll/run_mpitests-allgatherv2.o' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(run_mpitests_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o coll/run_mpitests-allgatherv2.o `test -f 'coll/allgatherv2.c' || echo '$(srcdir)/'`coll/allgatherv2.c
coll/run_mpitests-allgatherv2.obj: coll/allgatherv2.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(run_mpitests_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT coll/run_mpitests-allgatherv2.obj -MD -MP -MF coll/$(DEPDIR)/run_mpitests-allgatherv2.Tpo -c -o coll/run_mpitests-allgatherv2.obj `if test -f 'coll/allgatherv2.c'; then $(CYGPATH_W) 'coll/allgatherv2.c'; else $(CYGPATH_W) '$(srcdir)/coll/allgatherv2.c'; fi`
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) coll/$(DEPDIR)/run_mpitests-allgatherv2.Tpo coll/$(DEPDIR)/run_mpitests-allgatherv2.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='coll/allgatherv2.c' object='coll/run_mpitests-allgatherv2.obj' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(run_mpitests_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o coll/run_mpitests-allgatherv2.obj `if test -f 'coll/allgatherv2.c'; then $(CYGPATH_W) 'coll/allgatherv2.c'; else $(CYGPATH_W) '$(srcdir)/coll/allgatherv2.c'; fi`
coll/run_mpitests-allgatherv3.o: coll/allgatherv3.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(run_mpitests_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT coll/run_mpitests-allgatherv3.o -MD -MP -MF coll/$(DEPDIR)/run_mpitests-allgatherv3.Tpo -c -o coll/run_mpitests-allgatherv3.o `test -f 'coll/allgatherv3.c' || echo '$(srcdir)/'`coll/allgatherv3.c
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) coll/$(DEPDIR)/run_mpitests-allgatherv3.Tpo coll/$(DEPDIR)/run_mpitests-allgatherv3.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='coll/allgatherv3.c' object='coll/run_mpitests-allgatherv3.o' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(run_mpitests_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o coll/run_mpitests-allgatherv3.o `test -f 'coll/allgatherv3.c' || echo '$(srcdir)/'`coll/allgatherv3.c
coll/run_mpitests-allgatherv3.obj: coll/allgatherv3.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(run_mpitests_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT coll/run_mpitests-allgatherv3.obj -MD -MP -MF coll/$(DEPDIR)/run_mpitests-allgatherv3.Tpo -c -o coll/run_mpitests-allgatherv3.obj `if test -f 'coll/allgatherv3.c'; then $(CYGPATH_W) 'coll/allgatherv3.c'; else $(CYGPATH_W) '$(srcdir)/coll/allgatherv3.c'; fi`
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) coll/$(DEPDIR)/run_mpitests-allgatherv3.Tpo coll/$(DEPDIR)/run_mpitests-allgatherv3.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='coll/allgatherv3.c' object='coll/run_mpitests-allgatherv3.obj' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(run_mpitests_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o coll/run_mpitests-allgatherv3.obj `if test -f 'coll/allgatherv3.c'; then $(CYGPATH_W) 'coll/allgatherv3.c'; else $(CYGPATH_W) '$(srcdir)/coll/allgatherv3.c'; fi`
coll/run_mpitests-allgatherv4.o: coll/allgatherv4.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(run_mpitests_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT coll/run_mpitests-allgatherv4.o -MD -MP -MF coll/$(DEPDIR)/run_mpitests-allgatherv4.Tpo -c -o coll/run_mpitests-allgatherv4.o `test -f 'coll/allgatherv4.c' || echo '$(srcdir)/'`coll/allgatherv4.c
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) coll/$(DEPDIR)/run_mpitests-allgatherv4.Tpo coll/$(DEPDIR)/run_mpitests-allgatherv4.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='coll/allgatherv4.c' object='coll/run_mpitests-allgatherv4.o' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(run_mpitests_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o coll/run_mpitests-allgatherv4.o `test -f 'coll/allgatherv4.c' || echo '$(srcdir)/'`coll/allgatherv4.c
coll/run_mpitests-allgatherv4.obj: coll/allgatherv4.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(run_mpitests_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT coll/run_mpitests-allgatherv4.obj -MD -MP -MF coll/$(DEPDIR)/run_mpitests-allgatherv4.Tpo -c -o coll/run_mpitests-allgatherv4.obj `if test -f 'coll/allgatherv4.c'; then $(CYGPATH_W) 'coll/allgatherv4.c'; else $(CYGPATH_W) '$(srcdir)/coll/allgatherv4.c'; fi`
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) coll/$(DEPDIR)/run_mpitests-allgatherv4.Tpo coll/$(DEPDIR)/run_mpitests-allgatherv4.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='coll/allgatherv4.c' object='coll/run_mpitests-allgatherv4.obj' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(run_mpitests_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o coll/run_mpitests-allgatherv4.obj `if test -f 'coll/allgatherv4.c'; then $(CYGPATH_W) 'coll/allgatherv4.c'; else $(CYGPATH_W) '$(srcdir)/coll/allgatherv4.c'; fi`
coll/run_mpitests-allred.o: coll/allred.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(run_mpitests_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT coll/run_mpitests-allred.o -MD -MP -MF coll/$(DEPDIR)/run_mpitests-allred.Tpo -c -o coll/run_mpitests-allred.o `test -f 'coll/allred.c' || echo '$(srcdir)/'`coll/allred.c
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) coll/$(DEPDIR)/run_mpitests-allred.Tpo coll/$(DEPDIR)/run_mpitests-allred.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='coll/allred.c' object='coll/run_mpitests-allred.o' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(run_mpitests_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o coll/run_mpitests-allred.o `test -f 'coll/allred.c' || echo '$(srcdir)/'`coll/allred.c
coll/run_mpitests-allred.obj: coll/allred.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(run_mpitests_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT coll/run_mpitests-allred.obj -MD -MP -MF coll/$(DEPDIR)/run_mpitests-allred.Tpo -c -o coll/run_mpitests-allred.obj `if test -f 'coll/allred.c'; then $(CYGPATH_W) 'coll/allred.c'; else $(CYGPATH_W) '$(srcdir)/coll/allred.c'; fi`
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) coll/$(DEPDIR)/run_mpitests-allred.Tpo coll/$(DEPDIR)/run_mpitests-allred.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='coll/allred.c' object='coll/run_mpitests-allred.obj' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(run_mpitests_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o coll/run_mpitests-allred.obj `if test -f 'coll/allred.c'; then $(CYGPATH_W) 'coll/allred.c'; else $(CYGPATH_W) '$(srcdir)/coll/allred.c'; fi`
coll/run_mpitests-allred2.o: coll/allred2.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(run_mpitests_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT coll/run_mpitests-allred2.o -MD -MP -MF coll/$(DEPDIR)/run_mpitests-allred2.Tpo -c -o coll/run_mpitests-allred2.o `test -f 'coll/allred2.c' || echo '$(srcdir)/'`coll/allred2.c
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) coll/$(DEPDIR)/run_mpitests-allred2.Tpo coll/$(DEPDIR)/run_mpitests-allred2.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='coll/allred2.c' object='coll/run_mpitests-allred2.o' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(run_mpitests_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o coll/run_mpitests-allred2.o `test -f 'coll/allred2.c' || echo '$(srcdir)/'`coll/allred2.c
coll/run_mpitests-allred2.obj: coll/allred2.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(run_mpitests_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT coll/run_mpitests-allred2.obj -MD -MP -MF coll/$(DEPDIR)/run_mpitests-allred2.Tpo -c -o coll/run_mpitests-allred2.obj `if test -f 'coll/allred2.c'; then $(CYGPATH_W) 'coll/allred2.c'; else $(CYGPATH_W) '$(srcdir)/coll/allred2.c'; fi`
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) coll/$(DEPDIR)/run_mpitests-allred2.Tpo coll/$(DEPDIR)/run_mpitests-allred2.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='coll/allred2.c' object='coll/run_mpitests-allred2.obj' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(run_mpitests_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o coll/run_mpitests-allred2.obj `if test -f 'coll/allred2.c'; then $(CYGPATH_W) 'coll/allred2.c'; else $(CYGPATH_W) '$(srcdir)/coll/allred2.c'; fi`
coll/run_mpitests-allred3.o: coll/allred3.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(run_mpitests_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT coll/run_mpitests-allred3.o -MD -MP -MF coll/$(DEPDIR)/run_mpitests-allred3.Tpo -c -o coll/run_mpitests-allred3.o `test -f 'coll/allred3.c' || echo '$(srcdir)/'`coll/allred3.c
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) coll/$(DEPDIR)/run_mpitests-allred3.Tpo coll/$(DEPDIR)/run_mpitests-allred3.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='coll/allred3.c' object='coll/run_mpitests-allred3.o' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(run_mpitests_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o coll/run_mpitests-allred3.o `test -f 'coll/allred3.c' || echo '$(srcdir)/'`coll/allred3.c
coll/run_mpitests-allred3.obj: coll/allred3.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(run_mpitests_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT coll/run_mpitests-allred3.obj -MD -MP -MF coll/$(DEPDIR)/run_mpitests-allred3.Tpo -c -o coll/run_mpitests-allred3.obj `if test -f 'coll/allred3.c'; then $(CYGPATH_W) 'coll/allred3.c'; else $(CYGPATH_W) '$(srcdir)/coll/allred3.c'; fi`
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) coll/$(DEPDIR)/run_mpitests-allred3.Tpo coll/$(DEPDIR)/run_mpitests-allred3.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='coll/allred3.c' object='coll/run_mpitests-allred3.obj' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(run_mpitests_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o coll/run_mpitests-allred3.obj `if test -f 'coll/allred3.c'; then $(CYGPATH_W) 'coll/allred3.c'; else $(CYGPATH_W) '$(srcdir)/coll/allred3.c'; fi`
coll/run_mpitests-allred5.o: coll/allred5.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(run_mpitests_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT coll/run_mpitests-allred5.o -MD -MP -MF coll/$(DEPDIR)/run_mpitests-allred5.Tpo -c -o coll/run_mpitests-allred5.o `test -f 'coll/allred5.c' || echo '$(srcdir)/'`coll/allred5.c
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) coll/$(DEPDIR)/run_mpitests-allred5.Tpo coll/$(DEPDIR)/run_mpitests-allred5.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='coll/allred5.c' object='coll/run_mpitests-allred5.o' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(run_mpitests_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o coll/run_mpitests-allred5.o `test -f 'coll/allred5.c' || echo '$(srcdir)/'`coll/allred5.c
coll/run_mpitests-allred5.obj: coll/allred5.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(run_mpitests_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT coll/run_mpitests-allred5.obj -MD -MP -MF coll/$(DEPDIR)/run_mpitests-allred5.Tpo -c -o coll/run_mpitests-allred5.obj `if test -f 'coll/allred5.c'; then $(CYGPATH_W) 'coll/allred5.c'; else $(CYGPATH_W) '$(srcdir)/coll/allred5.c'; fi`
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) coll/$(DEPDIR)/run_mpitests-allred5.Tpo coll/$(DEPDIR)/run_mpitests-allred5.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='coll/allred5.c' object='coll/run_mpitests-allred5.obj' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(run_mpitests_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o coll/run_mpitests-allred5.obj `if test -f 'coll/allred5.c'; then $(CYGPATH_W) 'coll/allred5.c'; else $(CYGPATH_W) '$(srcdir)/coll/allred5.c'; fi`
coll/run_mpitests-allred6.o: coll/allred6.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(run_mpitests_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT coll/run_mpitests-allred6.o -MD -MP -MF coll/$(DEPDIR)/run_mpitests-allred6.Tpo -c -o coll/run_mpitests-allred6.o `test -f 'coll/allred6.c' || echo '$(srcdir)/'`coll/allred6.c
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) coll/$(DEPDIR)/run_mpitests-allred6.Tpo coll/$(DEPDIR)/run_mpitests-allred6.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='coll/allred6.c' object='coll/run_mpitests-allred6.o' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(run_mpitests_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o coll/run_mpitests-allred6.o `test -f 'coll/allred6.c' || echo '$(srcdir)/'`coll/allred6.c
coll/run_mpitests-allred6.obj: coll/allred6.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(run_mpitests_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT coll/run_mpitests-allred6.obj -MD -MP -MF coll/$(DEPDIR)/run_mpitests-allred6.Tpo -c -o coll/run_mpitests-allred6.obj `if test -f 'coll/allred6.c'; then $(CYGPATH_W) 'coll/allred6.c'; else $(CYGPATH_W) '$(srcdir)/coll/allred6.c'; fi`
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) coll/$(DEPDIR)/run_mpitests-allred6.Tpo coll/$(DEPDIR)/run_mpitests-allred6.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='coll/allred6.c' object='coll/run_mpitests-allred6.obj' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(run_mpitests_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o coll/run_mpitests-allred6.obj `if test -f 'coll/allred6.c'; then $(CYGPATH_W) 'coll/allred6.c'; else $(CYGPATH_W) '$(srcdir)/coll/allred6.c'; fi`
coll/run_mpitests-allredmany.o: coll/allredmany.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(run_mpitests_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT coll/run_mpitests-allredmany.o -MD -MP -MF coll/$(DEPDIR)/run_mpitests-allredmany.Tpo -c -o coll/run_mpitests-allredmany.o `test -f 'coll/allredmany.c' || echo '$(srcdir)/'`coll/allredmany.c
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) coll/$(DEPDIR)/run_mpitests-allredmany.Tpo coll/$(DEPDIR)/run_mpitests-allredmany.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='coll/allredmany.c' object='coll/run_mpitests-allredmany.o' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(run_mpitests_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o coll/run_mpitests-allredmany.o `test -f 'coll/allredmany.c' || echo '$(srcdir)/'`coll/allredmany.c
coll/run_mpitests-allredmany.obj: coll/allredmany.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(run_mpitests_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT coll/run_mpitests-allredmany.obj -MD -MP -MF coll/$(DEPDIR)/run_mpitests-allredmany.Tpo -c -o coll/run_mpitests-allredmany.obj `if test -f 'coll/allredmany.c'; then $(CYGPATH_W) 'coll/allredmany.c'; else $(CYGPATH_W) '$(srcdir)/coll/allredmany.c'; fi`
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) coll/$(DEPDIR)/run_mpitests-allredmany.Tpo coll/$(DEPDIR)/run_mpitests-allredmany.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='coll/allredmany.c' object='coll/run_mpitests-allredmany.obj' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(run_mpitests_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o coll/run_mpitests-allredmany.obj `if test -f 'coll/allredmany.c'; then $(CYGPATH_W) 'coll/allredmany.c'; else $(CYGPATH_W) '$(srcdir)/coll/allredmany.c'; fi`
coll/run_mpitests-alltoall1.o: coll/alltoall1.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(run_mpitests_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT coll/run_mpitests-alltoall1.o -MD -MP -MF coll/$(DEPDIR)/run_mpitests-alltoall1.Tpo -c -o coll/run_mpitests-alltoall1.o `test -f 'coll/alltoall1.c' || echo '$(srcdir)/'`coll/alltoall1.c
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) coll/$(DEPDIR)/run_mpitests-alltoall1.Tpo coll/$(DEPDIR)/run_mpitests-alltoall1.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='coll/alltoall1.c' object='coll/run_mpitests-alltoall1.o' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(run_mpitests_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o coll/run_mpitests-alltoall1.o `test -f 'coll/alltoall1.c' || echo '$(srcdir)/'`coll/alltoall1.c
coll/run_mpitests-alltoall1.obj: coll/alltoall1.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(run_mpitests_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT coll/run_mpitests-alltoall1.obj -MD -MP -MF coll/$(DEPDIR)/run_mpitests-alltoall1.Tpo -c -o coll/run_mpitests-alltoall1.obj `if test -f 'coll/alltoall1.c'; then $(CYGPATH_W) 'coll/alltoall1.c'; else $(CYGPATH_W) '$(srcdir)/coll/alltoall1.c'; fi`
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) coll/$(DEPDIR)/run_mpitests-alltoall1.Tpo coll/$(DEPDIR)/run_mpitests-alltoall1.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='coll/alltoall1.c' object='coll/run_mpitests-alltoall1.obj' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(run_mpitests_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o coll/run_mpitests-alltoall1.obj `if test -f 'coll/alltoall1.c'; then $(CYGPATH_W) 'coll/alltoall1.c'; else $(CYGPATH_W) '$(srcdir)/coll/alltoall1.c'; fi`
coll/run_mpitests-alltoallv.o: coll/alltoallv.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(run_mpitests_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT coll/run_mpitests-alltoallv.o -MD -MP -MF coll/$(DEPDIR)/run_mpitests-alltoallv.Tpo -c -o coll/run_mpitests-alltoallv.o `test -f 'coll/alltoallv.c' || echo '$(srcdir)/'`coll/alltoallv.c
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) coll/$(DEPDIR)/run_mpitests-alltoallv.Tpo coll/$(DEPDIR)/run_mpitests-alltoallv.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='coll/alltoallv.c' object='coll/run_mpitests-alltoallv.o' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(run_mpitests_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o coll/run_mpitests-alltoallv.o `test -f 'coll/alltoallv.c' || echo '$(srcdir)/'`coll/alltoallv.c
coll/run_mpitests-alltoallv.obj: coll/alltoallv.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(run_mpitests_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT coll/run_mpitests-alltoallv.obj -MD -MP -MF coll/$(DEPDIR)/run_mpitests-alltoallv.Tpo -c -o coll/run_mpitests-alltoallv.obj `if test -f 'coll/alltoallv.c'; then $(CYGPATH_W) 'coll/alltoallv.c'; else $(CYGPATH_W) '$(srcdir)/coll/alltoallv.c'; fi`
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) coll/$(DEPDIR)/run_mpitests-alltoallv.Tpo coll/$(DEPDIR)/run_mpitests-alltoallv.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='coll/alltoallv.c' object='coll/run_mpitests-alltoallv.obj' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(run_mpitests_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o coll/run_mpitests-alltoallv.obj `if test -f 'coll/alltoallv.c'; then $(CYGPATH_W) 'coll/alltoallv.c'; else $(CYGPATH_W) '$(srcdir)/coll/alltoallv.c'; fi`
coll/run_mpitests-alltoallv0.o: coll/alltoallv0.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(run_mpitests_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT coll/run_mpitests-alltoallv0.o -MD -MP -MF coll/$(DEPDIR)/run_mpitests-alltoallv0.Tpo -c -o coll/run_mpitests-alltoallv0.o `test -f 'coll/alltoallv0.c' || echo '$(srcdir)/'`coll/alltoallv0.c
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) coll/$(DEPDIR)/run_mpitests-alltoallv0.Tpo coll/$(DEPDIR)/run_mpitests-alltoallv0.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='coll/alltoallv0.c' object='coll/run_mpitests-alltoallv0.o' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(run_mpitests_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o coll/run_mpitests-alltoallv0.o `test -f 'coll/alltoallv0.c' || echo '$(srcdir)/'`coll/alltoallv0.c
coll/run_mpitests-alltoallv0.obj: coll/alltoallv0.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(run_mpitests_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT coll/run_mpitests-alltoallv0.obj -MD -MP -MF coll/$(DEPDIR)/run_mpitests-alltoallv0.Tpo -c -o coll/run_mpitests-alltoallv0.obj `if test -f 'coll/alltoallv0.c'; then $(CYGPATH_W) 'coll/alltoallv0.c'; else $(CYGPATH_W) '$(srcdir)/coll/alltoallv0.c'; fi`
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) coll/$(DEPDIR)/run_mpitests-alltoallv0.Tpo coll/$(DEPDIR)/run_mpitests-alltoallv0.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='coll/alltoallv0.c' object='coll/run_mpitests-alltoallv0.obj' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(run_mpitests_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o coll/run_mpitests-alltoallv0.obj `if test -f 'coll/alltoallv0.c'; then $(CYGPATH_W) 'coll/alltoallv0.c'; else $(CYGPATH_W) '$(srcdir)/coll/alltoallv0.c'; fi`
coll/run_mpitests-alltoallw1.o: coll/alltoallw1.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(run_mpitests_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT coll/run_mpitests-alltoallw1.o -MD -MP -MF coll/$(DEPDIR)/run_mpitests-alltoallw1.Tpo -c -o coll/run_mpitests-alltoallw1.o `test -f 'coll/alltoallw1.c' || echo '$(srcdir)/'`coll/alltoallw1.c
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) coll/$(DEPDIR)/run_mpitests-alltoallw1.Tpo coll/$(DEPDIR)/run_mpitests-alltoallw1.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='coll/alltoallw1.c' object='coll/run_mpitests-alltoallw1.o' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(run_mpitests_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o coll/run_mpitests-alltoallw1.o `test -f 'coll/alltoallw1.c' || echo '$(srcdir)/'`coll/alltoallw1.c
coll/run_mpitests-alltoallw1.obj: coll/alltoallw1.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(run_mpitests_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT coll/run_mpitests-alltoallw1.obj -MD -MP -MF coll/$(DEPDIR)/run_mpitests-alltoallw1.Tpo -c -o coll/run_mpitests-alltoallw1.obj `if test -f 'coll/alltoallw1.c'; then $(CYGPATH_W) 'coll/alltoallw1.c'; else $(CYGPATH_W) '$(srcdir)/coll/alltoallw1.c'; fi`
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) coll/$(DEPDIR)/run_mpitests-alltoallw1.Tpo coll/$(DEPDIR)/run_mpitests-alltoallw1.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='coll/alltoallw1.c' object='coll/run_mpitests-alltoallw1.obj' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(run_mpitests_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o coll/run_mpitests-alltoallw1.obj `if test -f 'coll/alltoallw1.c'; then $(CYGPATH_W) 'coll/alltoallw1.c'; else $(CYGPATH_W) '$(srcdir)/coll/alltoallw1.c'; fi`
coll/run_mpitests-alltoallw2.o: coll/alltoallw2.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(run_mpitests_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT coll/run_mpitests-alltoallw2.o -MD -MP -MF coll/$(DEPDIR)/run_mpitests-alltoallw2.Tpo -c -o coll/run_mpitests-alltoallw2.o `test -f 'coll/alltoallw2.c' || echo '$(srcdir)/'`coll/alltoallw2.c
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) coll/$(DEPDIR)/run_mpitests-alltoallw2.Tpo coll/$(DEPDIR)/run_mpitests-alltoallw2.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='coll/alltoallw2.c' object='coll/run_mpitests-alltoallw2.o' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(run_mpitests_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o coll/run_mpitests-alltoallw2.o `test -f 'coll/alltoallw2.c' || echo '$(srcdir)/'`coll/alltoallw2.c
coll/run_mpitests-alltoallw2.obj: coll/alltoallw2.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(run_mpitests_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT coll/run_mpitests-alltoallw2.obj -MD -MP -MF coll/$(DEPDIR)/run_mpitests-alltoallw2.Tpo -c -o coll/run_mpitests-alltoallw2.obj `if test -f 'coll/alltoallw2.c'; then $(CYGPATH_W) 'coll/alltoallw2.c'; else $(CYGPATH_W) '$(srcdir)/coll/alltoallw2.c'; fi`
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) coll/$(DEPDIR)/run_mpitests-alltoallw2.Tpo coll/$(DEPDIR)/run_mpitests-alltoallw2.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='coll/alltoallw2.c' object='coll/run_mpitests-alltoallw2.obj' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(run_mpitests_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o coll/run_mpitests-alltoallw2.obj `if test -f 'coll/alltoallw2.c'; then $(CYGPATH_W) 'coll/alltoallw2.c'; else $(CYGPATH_W) '$(srcdir)/coll/alltoallw2.c'; fi`
coll/run_mpitests-alltoallw_zeros.o: coll/alltoallw_zeros.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(run_mpitests_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT coll/run_mpitests-alltoallw_zeros.o -MD -MP -MF coll/$(DEPDIR)/run_mpitests-alltoallw_zeros.Tpo -c -o coll/run_mpitests-alltoallw_zeros.o `test -f 'coll/alltoallw_zeros.c' || echo '$(srcdir)/'`coll/alltoallw_zeros.c
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) coll/$(DEPDIR)/run_mpitests-alltoallw_zeros.Tpo coll/$(DEPDIR)/run_mpitests-alltoallw_zeros.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='coll/alltoallw_zeros.c' object='coll/run_mpitests-alltoallw_zeros.o' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(run_mpitests_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o coll/run_mpitests-alltoallw_zeros.o `test -f 'coll/alltoallw_zeros.c' || echo '$(srcdir)/'`coll/alltoallw_zeros.c
coll/run_mpitests-alltoallw_zeros.obj: coll/alltoallw_zeros.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(run_mpitests_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT coll/run_mpitests-alltoallw_zeros.obj -MD -MP -MF coll/$(DEPDIR)/run_mpitests-alltoallw_zeros.Tpo -c -o coll/run_mpitests-alltoallw_zeros.obj `if test -f 'coll/alltoallw_zeros.c'; then $(CYGPATH_W) 'coll/alltoallw_zeros.c'; else $(CYGPATH_W) '$(srcdir)/coll/alltoallw_zeros.c'; fi`
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) coll/$(DEPDIR)/run_mpitests-alltoallw_zeros.Tpo coll/$(DEPDIR)/run_mpitests-alltoallw_zeros.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='coll/alltoallw_zeros.c' object='coll/run_mpitests-alltoallw_zeros.obj' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(run_mpitests_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o coll/run_mpitests-alltoallw_zeros.obj `if test -f 'coll/alltoallw_zeros.c'; then $(CYGPATH_W) 'coll/alltoallw_zeros.c'; else $(CYGPATH_W) '$(srcdir)/coll/alltoallw_zeros.c'; fi`
coll/run_mpitests-bcasttest.o: coll/bcasttest.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(run_mpitests_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT coll/run_mpitests-bcasttest.o -MD -MP -MF coll/$(DEPDIR)/run_mpitests-bcasttest.Tpo -c -o coll/run_mpitests-bcasttest.o `test -f 'coll/bcasttest.c' || echo '$(srcdir)/'`coll/bcasttest.c
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) coll/$(DEPDIR)/run_mpitests-bcasttest.Tpo coll/$(DEPDIR)/run_mpitests-bcasttest.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='coll/bcasttest.c' object='coll/run_mpitests-bcasttest.o' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(run_mpitests_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o coll/run_mpitests-bcasttest.o `test -f 'coll/bcasttest.c' || echo '$(srcdir)/'`coll/bcasttest.c
coll/run_mpitests-bcasttest.obj: coll/bcasttest.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(run_mpitests_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT coll/run_mpitests-bcasttest.obj -MD -MP -MF coll/$(DEPDIR)/run_mpitests-bcasttest.Tpo -c -o coll/run_mpitests-bcasttest.obj `if test -f 'coll/bcasttest.c'; then $(CYGPATH_W) 'coll/bcasttest.c'; else $(CYGPATH_W) '$(srcdir)/coll/bcasttest.c'; fi`
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) coll/$(DEPDIR)/run_mpitests-bcasttest.Tpo coll/$(DEPDIR)/run_mpitests-bcasttest.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='coll/bcasttest.c' object='coll/run_mpitests-bcasttest.obj' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(run_mpitests_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o coll/run_mpitests-bcasttest.obj `if test -f 'coll/bcasttest.c'; then $(CYGPATH_W) 'coll/bcasttest.c'; else $(CYGPATH_W) '$(srcdir)/coll/bcasttest.c'; fi`
coll/run_mpitests-bcastzerotype.o: coll/bcastzerotype.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(run_mpitests_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT coll/run_mpitests-bcastzerotype.o -MD -MP -MF coll/$(DEPDIR)/run_mpitests-bcastzerotype.Tpo -c -o coll/run_mpitests-bcastzerotype.o `test -f 'coll/bcastzerotype.c' || echo '$(srcdir)/'`coll/bcastzerotype.c
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) coll/$(DEPDIR)/run_mpitests-bcastzerotype.Tpo coll/$(DEPDIR)/run_mpitests-bcastzerotype.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='coll/bcastzerotype.c' object='coll/run_mpitests-bcastzerotype.o' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(run_mpitests_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o coll/run_mpitests-bcastzerotype.o `test -f 'coll/bcastzerotype.c' || echo '$(srcdir)/'`coll/bcastzerotype.c
coll/run_mpitests-bcastzerotype.obj: coll/bcastzerotype.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(run_mpitests_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT coll/run_mpitests-bcastzerotype.obj -MD -MP -MF coll/$(DEPDIR)/run_mpitests-bcastzerotype.Tpo -c -o coll/run_mpitests-bcastzerotype.obj `if test -f 'coll/bcastzerotype.c'; then $(CYGPATH_W) 'coll/bcastzerotype.c'; else $(CYGPATH_W) '$(srcdir)/coll/bcastzerotype.c'; fi`
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) coll/$(DEPDIR)/run_mpitests-bcastzerotype.Tpo coll/$(DEPDIR)/run_mpitests-bcastzerotype.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='coll/bcastzerotype.c' object='coll/run_mpitests-bcastzerotype.obj' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(run_mpitests_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o coll/run_mpitests-bcastzerotype.obj `if test -f 'coll/bcastzerotype.c'; then $(CYGPATH_W) 'coll/bcastzerotype.c'; else $(CYGPATH_W) '$(srcdir)/coll/bcastzerotype.c'; fi`
coll/run_mpitests-gather.o: coll/gather.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(run_mpitests_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT coll/run_mpitests-gather.o -MD -MP -MF coll/$(DEPDIR)/run_mpitests-gather.Tpo -c -o coll/run_mpitests-gather.o `test -f 'coll/gather.c' || echo '$(srcdir)/'`coll/gather.c
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) coll/$(DEPDIR)/run_mpitests-gather.Tpo coll/$(DEPDIR)/run_mpitests-gather.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='coll/gather.c' object='coll/run_mpitests-gather.o' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(run_mpitests_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o coll/run_mpitests-gather.o `test -f 'coll/gather.c' || echo '$(srcdir)/'`coll/gather.c
coll/run_mpitests-gather.obj: coll/gather.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(run_mpitests_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT coll/run_mpitests-gather.obj -MD -MP -MF coll/$(DEPDIR)/run_mpitests-gather.Tpo -c -o coll/run_mpitests-gather.obj `if test -f 'coll/gather.c'; then $(CYGPATH_W) 'coll/gather.c'; else $(CYGPATH_W) '$(srcdir)/coll/gather.c'; fi`
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) coll/$(DEPDIR)/run_mpitests-gather.Tpo coll/$(DEPDIR)/run_mpitests-gather.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='coll/gather.c' object='coll/run_mpitests-gather.obj' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(run_mpitests_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o coll/run_mpitests-gather.obj `if test -f 'coll/gather.c'; then $(CYGPATH_W) 'coll/gather.c'; else $(CYGPATH_W) '$(srcdir)/coll/gather.c'; fi`
coll/run_mpitests-gather2.o: coll/gather2.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(run_mpitests_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT coll/run_mpitests-gather2.o -MD -MP -MF coll/$(DEPDIR)/run_mpitests-gather2.Tpo -c -o coll/run_mpitests-gather2.o `test -f 'coll/gather2.c' || echo '$(srcdir)/'`coll/gather2.c
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) coll/$(DEPDIR)/run_mpitests-gather2.Tpo coll/$(DEPDIR)/run_mpitests-gather2.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='coll/gather2.c' object='coll/run_mpitests-gather2.o' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(run_mpitests_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o coll/run_mpitests-gather2.o `test -f 'coll/gather2.c' || echo '$(srcdir)/'`coll/gather2.c
coll/run_mpitests-gather2.obj: coll/gather2.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(run_mpitests_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT coll/run_mpitests-gather2.obj -MD -MP -MF coll/$(DEPDIR)/run_mpitests-gather2.Tpo -c -o coll/run_mpitests-gather2.obj `if test -f 'coll/gather2.c'; then $(CYGPATH_W) 'coll/gather2.c'; else $(CYGPATH_W) '$(srcdir)/coll/gather2.c'; fi`
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) coll/$(DEPDIR)/run_mpitests-gather2.Tpo coll/$(DEPDIR)/run_mpitests-gather2.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='coll/gather2.c' object='coll/run_mpitests-gather2.obj' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(run_mpitests_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o coll/run_mpitests-gather2.obj `if test -f 'coll/gather2.c'; then $(CYGPATH_W) 'coll/gather2.c'; else $(CYGPATH_W) '$(srcdir)/coll/gather2.c'; fi`
coll/run_mpitests-gatherv.o: coll/gatherv.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(run_mpitests_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT coll/run_mpitests-gatherv.o -MD -MP -MF coll/$(DEPDIR)/run_mpitests-gatherv.Tpo -c -o coll/run_mpitests-gatherv.o `test -f 'coll/gatherv.c' || echo '$(srcdir)/'`coll/gatherv.c
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) coll/$(DEPDIR)/run_mpitests-gatherv.Tpo coll/$(DEPDIR)/run_mpitests-gatherv.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='coll/gatherv.c' object='coll/run_mpitests-gatherv.o' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(run_mpitests_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o coll/run_mpitests-gatherv.o `test -f 'coll/gatherv.c' || echo '$(srcdir)/'`coll/gatherv.c
coll/run_mpitests-gatherv.obj: coll/gatherv.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(run_mpitests_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT coll/run_mpitests-gatherv.obj -MD -MP -MF coll/$(DEPDIR)/run_mpitests-gatherv.Tpo -c -o coll/run_mpitests-gatherv.obj `if test -f 'coll/gatherv.c'; then $(CYGPATH_W) 'coll/gatherv.c'; else $(CYGPATH_W) '$(srcdir)/coll/gatherv.c'; fi`
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) coll/$(DEPDIR)/run_mpitests-gatherv.Tpo coll/$(DEPDIR)/run_mpitests-gatherv.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='coll/gatherv.c' object='coll/run_mpitests-gatherv.obj' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(run_mpitests_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o coll/run_mpitests-gatherv.obj `if test -f 'coll/gatherv.c'; then $(CYGPATH_W) 'coll/gatherv.c'; else $(CYGPATH_W) '$(srcdir)/coll/gatherv.c'; fi`
coll/run_mpitests-neighb_allgather.o: coll/neighb_allgather.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(run_mpitests_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT coll/run_mpitests-neighb_allgather.o -MD -MP -MF coll/$(DEPDIR)/run_mpitests-neighb_allgather.Tpo -c -o coll/run_mpitests-neighb_allgather.o `test -f 'coll/neighb_allgather.c' || echo '$(srcdir)/'`coll/neighb_allgather.c
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) coll/$(DEPDIR)/run_mpitests-neighb_allgather.Tpo coll/$(DEPDIR)/run_mpitests-neighb_allgather.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='coll/neighb_allgather.c' object='coll/run_mpitests-neighb_allgather.o' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(run_mpitests_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o coll/run_mpitests-neighb_allgather.o `test -f 'coll/neighb_allgather.c' || echo '$(srcdir)/'`coll/neighb_allgather.c
coll/run_mpitests-neighb_allgather.obj: coll/neighb_allgather.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(run_mpitests_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT coll/run_mpitests-neighb_allgather.obj -MD -MP -MF coll/$(DEPDIR)/run_mpitests-neighb_allgather.Tpo -c -o coll/run_mpitests-neighb_allgather.obj `if test -f 'coll/neighb_allgather.c'; then $(CYGPATH_W) 'coll/neighb_allgather.c'; else $(CYGPATH_W) '$(srcdir)/coll/neighb_allgather.c'; fi`
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) coll/$(DEPDIR)/run_mpitests-neighb_allgather.Tpo coll/$(DEPDIR)/run_mpitests-neighb_allgather.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='coll/neighb_allgather.c' object='coll/run_mpitests-neighb_allgather.obj' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(run_mpitests_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o coll/run_mpitests-neighb_allgather.obj `if test -f 'coll/neighb_allgather.c'; then $(CYGPATH_W) 'coll/neighb_allgather.c'; else $(CYGPATH_W) '$(srcdir)/coll/neighb_allgather.c'; fi`
coll/run_mpitests-neighb_allgatherv.o: coll/neighb_allgatherv.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(run_mpitests_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT coll/run_mpitests-neighb_allgatherv.o -MD -MP -MF coll/$(DEPDIR)/run_mpitests-neighb_allgatherv.Tpo -c -o coll/run_mpitests-neighb_allgatherv.o `test -f 'coll/neighb_allgatherv.c' || echo '$(srcdir)/'`coll/neighb_allgatherv.c
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) coll/$(DEPDIR)/run_mpitests-neighb_allgatherv.Tpo coll/$(DEPDIR)/run_mpitests-neighb_allgatherv.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='coll/neighb_allgatherv.c' object='coll/run_mpitests-neighb_allgatherv.o' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(run_mpitests_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o coll/run_mpitests-neighb_allgatherv.o `test -f 'coll/neighb_allgatherv.c' || echo '$(srcdir)/'`coll/neighb_allgatherv.c
coll/run_mpitests-neighb_allgatherv.obj: coll/neighb_allgatherv.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(run_mpitests_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT coll/run_mpitests-neighb_allgatherv.obj -MD -MP -MF coll/$(DEPDIR)/run_mpitests-neighb_allgatherv.Tpo -c -o coll/run_mpitests-neighb_allgatherv.obj `if test -f 'coll/neighb_allgatherv.c'; then $(CYGPATH_W) 'coll/neighb_allgatherv.c'; else $(CYGPATH_W) '$(srcdir)/coll/neighb_allgatherv.c'; fi`
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) coll/$(DEPDIR)/run_mpitests-neighb_allgatherv.Tpo coll/$(DEPDIR)/run_mpitests-neighb_allgatherv.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='coll/neighb_allgatherv.c' object='coll/run_mpitests-neighb_allgatherv.obj' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(run_mpitests_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o coll/run_mpitests-neighb_allgatherv.obj `if test -f 'coll/neighb_allgatherv.c'; then $(CYGPATH_W) 'coll/neighb_allgatherv.c'; else $(CYGPATH_W) '$(srcdir)/coll/neighb_allgatherv.c'; fi`
coll/run_mpitests-neighb_alltoall.o: coll/neighb_alltoall.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(run_mpitests_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT coll/run_mpitests-neighb_alltoall.o -MD -MP -MF coll/$(DEPDIR)/run_mpitests-neighb_alltoall.Tpo -c -o coll/run_mpitests-neighb_alltoall.o `test -f 'coll/neighb_alltoall.c' || echo '$(srcdir)/'`coll/neighb_alltoall.c
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) coll/$(DEPDIR)/run_mpitests-neighb_alltoall.Tpo coll/$(DEPDIR)/run_mpitests-neighb_alltoall.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='coll/neighb_alltoall.c' object='coll/run_mpitests-neighb_alltoall.o' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(run_mpitests_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o coll/run_mpitests-neighb_alltoall.o `test -f 'coll/neighb_alltoall.c' || echo '$(srcdir)/'`coll/neighb_alltoall.c
coll/run_mpitests-neighb_alltoall.obj: coll/neighb_alltoall.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(run_mpitests_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT coll/run_mpitests-neighb_alltoall.obj -MD -MP -MF coll/$(DEPDIR)/run_mpitests-neighb_alltoall.Tpo -c -o coll/run_mpitests-neighb_alltoall.obj `if test -f 'coll/neighb_alltoall.c'; then $(CYGPATH_W) 'coll/neighb_alltoall.c'; else $(CYGPATH_W) '$(srcdir)/coll/neighb_alltoall.c'; fi`
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) coll/$(DEPDIR)/run_mpitests-neighb_alltoall.Tpo coll/$(DEPDIR)/run_mpitests-neighb_alltoall.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='coll/neighb_alltoall.c' object='coll/run_mpitests-neighb_alltoall.obj' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(run_mpitests_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o coll/run_mpitests-neighb_alltoall.obj `if test -f 'coll/neighb_alltoall.c'; then $(CYGPATH_W) 'coll/neighb_alltoall.c'; else $(CYGPATH_W) '$(srcdir)/coll/neighb_alltoall.c'; fi`
coll/run_mpitests-neighb_alltoallv.o: coll/neighb_alltoallv.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(run_mpitests_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT coll/run_mpitests-neighb_alltoallv.o -MD -MP -MF coll/$(DEPDIR)/run_mpitests-neighb_alltoallv.Tpo -c -o coll/run_mpitests-neighb_alltoallv.o `test -f 'coll/neighb_alltoallv.c' || echo '$(srcdir)/'`coll/neighb_alltoallv.c
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) coll/$(DEPDIR)/run_mpitests-neighb_alltoallv.Tpo coll/$(DEPDIR)/run_mpitests-neighb_alltoallv.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='coll/neighb_alltoallv.c' object='coll/run_mpitests-neighb_alltoallv.o' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(run_mpitests_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o coll/run_mpitests-neighb_alltoallv.o `test -f 'coll/neighb_alltoallv.c' || echo '$(srcdir)/'`coll/neighb_alltoallv.c
coll/run_mpitests-neighb_alltoallv.obj: coll/neighb_alltoallv.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(run_mpitests_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT coll/run_mpitests-neighb_alltoallv.obj -MD -MP -MF coll/$(DEPDIR)/run_mpitests-neighb_alltoallv.Tpo -c -o coll/run_mpitests-neighb_alltoallv.obj `if test -f 'coll/neighb_alltoallv.c'; then $(CYGPATH_W) 'coll/neighb_alltoallv.c'; else $(CYGPATH_W) '$(srcdir)/coll/neighb_alltoallv.c'; fi`
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) coll/$(DEPDIR)/run_mpitests-neighb_alltoallv.Tpo coll/$(DEPDIR)/run_mpitests-neighb_alltoallv.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='coll/neighb_alltoallv.c' object='coll/run_mpitests-neighb_alltoallv.obj' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(run_mpitests_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o coll/run_mpitests-neighb_alltoallv.obj `if test -f 'coll/neighb_alltoallv.c'; then $(CYGPATH_W) 'coll/neighb_alltoallv.c'; else $(CYGPATH_W) '$(srcdir)/coll/neighb_alltoallv.c'; fi`
coll/run_mpitests-neighb_alltoallw.o: coll/neighb_alltoallw.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(run_mpitests_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT coll/run_mpitests-neighb_alltoallw.o -MD -MP -MF coll/$(DEPDIR)/run_mpitests-neighb_alltoallw.Tpo -c -o coll/run_mpitests-neighb_alltoallw.o `test -f 'coll/neighb_alltoallw.c' || echo '$(srcdir)/'`coll/neighb_alltoallw.c
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) coll/$(DEPDIR)/run_mpitests-neighb_alltoallw.Tpo coll/$(DEPDIR)/run_mpitests-neighb_alltoallw.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='coll/neighb_alltoallw.c' object='coll/run_mpitests-neighb_alltoallw.o' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(run_mpitests_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o coll/run_mpitests-neighb_alltoallw.o `test -f 'coll/neighb_alltoallw.c' || echo '$(srcdir)/'`coll/neighb_alltoallw.c
coll/run_mpitests-neighb_alltoallw.obj: coll/neighb_alltoallw.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(run_mpitests_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT coll/run_mpitests-neighb_alltoallw.obj -MD -MP -MF coll/$(DEPDIR)/run_mpitests-neighb_alltoallw.Tpo -c -o coll/run_mpitests-neighb_alltoallw.obj `if test -f 'coll/neighb_alltoallw.c'; then $(CYGPATH_W) 'coll/neighb_alltoallw.c'; else $(CYGPATH_W) '$(srcdir)/coll/neighb_alltoallw.c'; fi`
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) coll/$(DEPDIR)/run_mpitests-neighb_alltoallw.Tpo coll/$(DEPDIR)/run_mpitests-neighb_alltoallw.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='coll/neighb_alltoallw.c' object='coll/run_mpitests-neighb_alltoallw.obj' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(run_mpitests_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o coll/run_mpitests-neighb_alltoallw.obj `if test -f 'coll/neighb_alltoallw.c'; then $(CYGPATH_W) 'coll/neighb_alltoallw.c'; else $(CYGPATH_W) '$(srcdir)/coll/neighb_alltoallw.c'; fi`
coll/run_mpitests-op_coll.o: coll/op_coll.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(run_mpitests_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT coll/run_mpitests-op_coll.o -MD -MP -MF coll/$(DEPDIR)/run_mpitests-op_coll.Tpo -c -o coll/run_mpitests-op_coll.o `test -f 'coll/op_coll.c' || echo '$(srcdir)/'`coll/op_coll.c
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) coll/$(DEPDIR)/run_mpitests-op_coll.Tpo coll/$(DEPDIR)/run_mpitests-op_coll.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='coll/op_coll.c' object='coll/run_mpitests-op_coll.o' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(run_mpitests_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o coll/run_mpitests-op_coll.o `test -f 'coll/op_coll.c' || echo '$(srcdir)/'`coll/op_coll.c
coll/run_mpitests-op_coll.obj: coll/op_coll.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(run_mpitests_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT coll/run_mpitests-op_coll.obj -MD -MP -MF coll/$(DEPDIR)/run_mpitests-op_coll.Tpo -c -o coll/run_mpitests-op_coll.obj `if test -f 'coll/op_coll.c'; then $(CYGPATH_W) 'coll/op_coll.c'; else $(CYGPATH_W) '$(srcdir)/coll/op_coll.c'; fi`
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) coll/$(DEPDIR)/run_mpitests-op_coll.Tpo coll/$(DEPDIR)/run_mpitests-op_coll.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='coll/op_coll.c' object='coll/run_mpitests-op_coll.obj' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(run_mpitests_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o coll/run_mpitests-op_coll.obj `if test -f 'coll/op_coll.c'; then $(CYGPATH_W) 'coll/op_coll.c'; else $(CYGPATH_W) '$(srcdir)/coll/op_coll.c'; fi`
coll/run_mpitests-p_allgather.o: coll/p_allgather.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(run_mpitests_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT coll/run_mpitests-p_allgather.o -MD -MP -MF coll/$(DEPDIR)/run_mpitests-p_allgather.Tpo -c -o coll/run_mpitests-p_allgather.o `test -f 'coll/p_allgather.c' || echo '$(srcdir)/'`coll/p_allgather.c
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) coll/$(DEPDIR)/run_mpitests-p_allgather.Tpo coll/$(DEPDIR)/run_mpitests-p_allgather.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='coll/p_allgather.c' object='coll/run_mpitests-p_allgather.o' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(run_mpitests_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o coll/run_mpitests-p_allgather.o `test -f 'coll/p_allgather.c' || echo '$(srcdir)/'`coll/p_allgather.c
coll/run_mpitests-p_allgather.obj: coll/p_allgather.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(run_mpitests_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT coll/run_mpitests-p_allgather.obj -MD -MP -MF coll/$(DEPDIR)/run_mpitests-p_allgather.Tpo -c -o coll/run_mpitests-p_allgather.obj `if test -f 'coll/p_allgather.c'; then $(CYGPATH_W) 'coll/p_allgather.c'; else $(CYGPATH_W) '$(srcdir)/coll/p_allgather.c'; fi`
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) coll/$(DEPDIR)/run_mpitests-p_allgather.Tpo coll/$(DEPDIR)/run_mpitests-p_allgather.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='coll/p_allgather.c' object='coll/run_mpitests-p_allgather.obj' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(run_mpitests_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o coll/run_mpitests-p_allgather.obj `if test -f 'coll/p_allgather.c'; then $(CYGPATH_W) 'coll/p_allgather.c'; else $(CYGPATH_W) '$(srcdir)/coll/p_allgather.c'; fi`
coll/run_mpitests-p_allgatherv.o: coll/p_allgatherv.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(run_mpitests_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT coll/run_mpitests-p_allgatherv.o -MD -MP -MF coll/$(DEPDIR)/run_mpitests-p_allgatherv.Tpo -c -o coll/run_mpitests-p_allgatherv.o `test -f 'coll/p_allgatherv.c' || echo '$(srcdir)/'`coll/p_allgatherv.c
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) coll/$(DEPDIR)/run_mpitests-p_allgatherv.Tpo coll/$(DEPDIR)/run_mpitests-p_allgatherv.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='coll/p_allgatherv.c' object='coll/run_mpitests-p_allgatherv.o' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(run_mpitests_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o coll/run_mpitests-p_allgatherv.o `test -f 'coll/p_allgatherv.c' || echo '$(srcdir)/'`coll/p_allgatherv.c
coll/run_mpitests-p_allgatherv.obj: coll/p_allgatherv.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(run_mpitests_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT coll/run_mpitests-p_allgatherv.obj -MD -MP -MF coll/$(DEPDIR)/run_mpitests-p_allgatherv.Tpo -c -o coll/run_mpitests-p_allgatherv.obj `if test -f 'coll/p_allgatherv.c'; then $(CYGPATH_W) 'coll/p_allgatherv.c'; else $(CYGPATH_W) '$(srcdir)/coll/p_allgatherv.c'; fi`
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) coll/$(DEPDIR)/run_mpitests-p_allgatherv.Tpo coll/$(DEPDIR)/run_mpitests-p_allgatherv.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='coll/p_allgatherv.c' object='coll/run_mpitests-p_allgatherv.obj' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(run_mpitests_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o coll/run_mpitests-p_allgatherv.obj `if test -f 'coll/p_allgatherv.c'; then $(CYGPATH_W) 'coll/p_allgatherv.c'; else $(CYGPATH_W) '$(srcdir)/coll/p_allgatherv.c'; fi`
coll/run_mpitests-p_allred.o: coll/p_allred.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(run_mpitests_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT coll/run_mpitests-p_allred.o -MD -MP -MF coll/$(DEPDIR)/run_mpitests-p_allred.Tpo -c -o coll/run_mpitests-p_allred.o `test -f 'coll/p_allred.c' || echo '$(srcdir)/'`coll/p_allred.c
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) coll/$(DEPDIR)/run_mpitests-p_allred.Tpo coll/$(DEPDIR)/run_mpitests-p_allred.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='coll/p_allred.c' object='coll/run_mpitests-p_allred.o' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(run_mpitests_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o coll/run_mpitests-p_allred.o `test -f 'coll/p_allred.c' || echo '$(srcdir)/'`coll/p_allred.c
coll/run_mpitests-p_allred.obj: coll/p_allred.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(run_mpitests_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT coll/run_mpitests-p_allred.obj -MD -MP -MF coll/$(DEPDIR)/run_mpitests-p_allred.Tpo -c -o coll/run_mpitests-p_allred.obj `if test -f 'coll/p_allred.c'; then $(CYGPATH_W) 'coll/p_allred.c'; else $(CYGPATH_W) '$(srcdir)/coll/p_allred.c'; fi`
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) coll/$(DEPDIR)/run_mpitests-p_allred.Tpo coll/$(DEPDIR)/run_mpitests-p_allred.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='coll/p_allred.c' object='coll/run_mpitests-p_allred.obj' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(run_mpitests_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o coll/run_mpitests-p_allred.obj `if test -f 'coll/p_allred.c'; then $(CYGPATH_W) 'coll/p_allred.c'; else $(CYGPATH_W) '$(srcdir)/coll/p_allred.c'; fi`
coll/run_mpitests-p_alltoall.o: coll/p_alltoall.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(run_mpitests_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT coll/run_mpitests-p_alltoall.o -MD -MP -MF coll/$(DEPDIR)/run_mpitests-p_alltoall.Tpo -c -o coll/run_mpitests-p_alltoall.o `test -f 'coll/p_alltoall.c' || echo '$(srcdir)/'`coll/p_alltoall.c
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) coll/$(DEPDIR)/run_mpitests-p_alltoall.Tpo coll/$(DEPDIR)/run_mpitests-p_alltoall.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='coll/p_alltoall.c' object='coll/run_mpitests-p_alltoall.o' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(run_mpitests_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o coll/run_mpitests-p_alltoall.o `test -f 'coll/p_alltoall.c' || echo '$(srcdir)/'`coll/p_alltoall.c
coll/run_mpitests-p_alltoall.obj: coll/p_alltoall.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(run_mpitests_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT coll/run_mpitests-p_alltoall.obj -MD -MP -MF coll/$(DEPDIR)/run_mpitests-p_alltoall.Tpo -c -o coll/run_mpitests-p_alltoall.obj `if test -f 'coll/p_alltoall.c'; then $(CYGPATH_W) 'coll/p_alltoall.c'; else $(CYGPATH_W) '$(srcdir)/coll/p_alltoall.c'; fi`
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) coll/$(DEPDIR)/run_mpitests-p_alltoall.Tpo coll/$(DEPDIR)/run_mpitests-p_alltoall.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='coll/p_alltoall.c' object='coll/run_mpitests-p_alltoall.obj' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(run_mpitests_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o coll/run_mpitests-p_alltoall.obj `if test -f 'coll/p_alltoall.c'; then $(CYGPATH_W) 'coll/p_alltoall.c'; else $(CYGPATH_W) '$(srcdir)/coll/p_alltoall.c'; fi`
coll/run_mpitests-p_alltoallv.o: coll/p_alltoallv.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(run_mpitests_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT coll/run_mpitests-p_alltoallv.o -MD -MP -MF coll/$(DEPDIR)/run_mpitests-p_alltoallv.Tpo -c -o coll/run_mpitests-p_alltoallv.o `test -f 'coll/p_alltoallv.c' || echo '$(srcdir)/'`coll/p_alltoallv.c
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) coll/$(DEPDIR)/run_mpitests-p_alltoallv.Tpo coll/$(DEPDIR)/run_mpitests-p_alltoallv.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='coll/p_alltoallv.c' object='coll/run_mpitests-p_alltoallv.o' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(run_mpitests_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o coll/run_mpitests-p_alltoallv.o `test -f 'coll/p_alltoallv.c' || echo '$(srcdir)/'`coll/p_alltoallv.c
coll/run_mpitests-p_alltoallv.obj: coll/p_alltoallv.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(run_mpitests_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT coll/run_mpitests-p_alltoallv.obj -MD -MP -MF coll/$(DEPDIR)/run_mpitests-p_alltoallv.Tpo -c -o coll/run_mpitests-p_alltoallv.obj `if test -f 'coll/p_alltoallv.c'; then $(CYGPATH_W) 'coll/p_alltoallv.c'; else $(CYGPATH_W) '$(srcdir)/coll/p_alltoallv.c'; fi`
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) coll/$(DEPDIR)/run_mpitests-p_alltoallv.Tpo coll/$(DEPDIR)/run_mpitests-p_alltoallv.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='coll/p_alltoallv.c' object='coll/run_mpitests-p_alltoallv.obj' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(run_mpitests_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o coll/run_mpitests-p_alltoallv.obj `if test -f 'coll/p_alltoallv.c'; then $(CYGPATH_W) 'coll/p_alltoallv.c'; else $(CYGPATH_W) '$(srcdir)/coll/p_alltoallv.c'; fi`
coll/run_mpitests-p_alltoallw.o: coll/p_alltoallw.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(run_mpitests_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT coll/run_mpitests-p_alltoallw.o -MD -MP -MF coll/$(DEPDIR)/run_mpitests-p_alltoallw.Tpo -c -o coll/run_mpitests-p_alltoallw.o `test -f 'coll/p_alltoallw.c' || echo '$(srcdir)/'`coll/p_alltoallw.c
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) coll/$(DEPDIR)/run_mpitests-p_alltoallw.Tpo coll/$(DEPDIR)/run_mpitests-p_alltoallw.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='coll/p_alltoallw.c' object='coll/run_mpitests-p_alltoallw.o' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(run_mpitests_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o coll/run_mpitests-p_alltoallw.o `test -f 'coll/p_alltoallw.c' || echo '$(srcdir)/'`coll/p_alltoallw.c
coll/run_mpitests-p_alltoallw.obj: coll/p_alltoallw.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(run_mpitests_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT coll/run_mpitests-p_alltoallw.obj -MD -MP -MF coll/$(DEPDIR)/run_mpitests-p_alltoallw.Tpo -c -o coll/run_mpitests-p_alltoallw.obj `if test -f 'coll/p_alltoallw.c'; then $(CYGPATH_W) 'coll/p_alltoallw.c'; else $(CYGPATH_W) '$(srcdir)/coll/p_alltoallw.c'; fi`
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) coll/$(DEPDIR)/run_mpitests-p_alltoallw.Tpo coll/$(DEPDIR)/run_mpitests-p_alltoallw.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='coll/p_alltoallw.c' object='coll/run_mpitests-p_alltoallw.obj' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(run_mpitests_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o coll/run_mpitests-p_alltoallw.obj `if test -f 'coll/p_alltoallw.c'; then $(CYGPATH_W) 'coll/p_alltoallw.c'; else $(CYGPATH_W) '$(srcdir)/coll/p_alltoallw.c'; fi`
coll/run_mpitests-p_bcast.o: coll/p_bcast.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(run_mpitests_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT coll/run_mpitests-p_bcast.o -MD -MP -MF coll/$(DEPDIR)/run_mpitests-p_bcast.Tpo -c -o coll/run_mpitests-p_bcast.o `test -f 'coll/p_bcast.c' || echo '$(srcdir)/'`coll/p_bcast.c
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) coll/$(DEPDIR)/run_mpitests-p_bcast.Tpo coll/$(DEPDIR)/run_mpitests-p_bcast.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='coll/p_bcast.c' object='coll/run_mpitests-p_bcast.o' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(run_mpitests_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o coll/run_mpitests-p_bcast.o `test -f 'coll/p_bcast.c' || echo '$(srcdir)/'`coll/p_bcast.c
coll/run_mpitests-p_bcast.obj: coll/p_bcast.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(run_mpitests_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT coll/run_mpitests-p_bcast.obj -MD -MP -MF coll/$(DEPDIR)/run_mpitests-p_bcast.Tpo -c -o coll/run_mpitests-p_bcast.obj `if test -f 'coll/p_bcast.c'; then $(CYGPATH_W) 'coll/p_bcast.c'; else $(CYGPATH_W) '$(srcdir)/coll/p_bcast.c'; fi`
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) coll/$(DEPDIR)/run_mpitests-p_bcast.Tpo coll/$(DEPDIR)/run_mpitests-p_bcast.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='coll/p_bcast.c' object='coll/run_mpitests-p_bcast.obj' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(run_mpitests_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o coll/run_mpitests-p_bcast.obj `if test -f 'coll/p_bcast.c'; then $(CYGPATH_W) 'coll/p_bcast.c'; else $(CYGPATH_W) '$(srcdir)/coll/p_bcast.c'; fi`
coll/run_mpitests-p_bcast2.o: coll/p_bcast2.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(run_mpitests_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT coll/run_mpitests-p_bcast2.o -MD -MP -MF coll/$(DEPDIR)/run_mpitests-p_bcast2.Tpo -c -o coll/run_mpitests-p_bcast2.o `test -f 'coll/p_bcast2.c' || echo '$(srcdir)/'`coll/p_bcast2.c
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) coll/$(DEPDIR)/run_mpitests-p_bcast2.Tpo coll/$(DEPDIR)/run_mpitests-p_bcast2.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='coll/p_bcast2.c' object='coll/run_mpitests-p_bcast2.o' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(run_mpitests_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o coll/run_mpitests-p_bcast2.o `test -f 'coll/p_bcast2.c' || echo '$(srcdir)/'`coll/p_bcast2.c
coll/run_mpitests-p_bcast2.obj: coll/p_bcast2.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(run_mpitests_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT coll/run_mpitests-p_bcast2.obj -MD -MP -MF coll/$(DEPDIR)/run_mpitests-p_bcast2.Tpo -c -o coll/run_mpitests-p_bcast2.obj `if test -f 'coll/p_bcast2.c'; then $(CYGPATH_W) 'coll/p_bcast2.c'; else $(CYGPATH_W) '$(srcdir)/coll/p_bcast2.c'; fi`
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) coll/$(DEPDIR)/run_mpitests-p_bcast2.Tpo coll/$(DEPDIR)/run_mpitests-p_bcast2.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='coll/p_bcast2.c' object='coll/run_mpitests-p_bcast2.obj' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(run_mpitests_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o coll/run_mpitests-p_bcast2.obj `if test -f 'coll/p_bcast2.c'; then $(CYGPATH_W) 'coll/p_bcast2.c'; else $(CYGPATH_W) '$(srcdir)/coll/p_bcast2.c'; fi`
coll/run_mpitests-p_gather.o: coll/p_gather.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(run_mpitests_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT coll/run_mpitests-p_gather.o -MD -MP -MF coll/$(DEPDIR)/run_mpitests-p_gather.Tpo -c -o coll/run_mpitests-p_gather.o `test -f 'coll/p_gather.c' || echo '$(srcdir)/'`coll/p_gather.c
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) coll/$(DEPDIR)/run_mpitests-p_gather.Tpo coll/$(DEPDIR)/run_mpitests-p_gather.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='coll/p_gather.c' object='coll/run_mpitests-p_gather.o' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(run_mpitests_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o coll/run_mpitests-p_gather.o `test -f 'coll/p_gather.c' || echo '$(srcdir)/'`coll/p_gather.c
coll/run_mpitests-p_gather.obj: coll/p_gather.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(run_mpitests_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT coll/run_mpitests-p_gather.obj -MD -MP -MF coll/$(DEPDIR)/run_mpitests-p_gather.Tpo -c -o coll/run_mpitests-p_gather.obj `if test -f 'coll/p_gather.c'; then $(CYGPATH_W) 'coll/p_gather.c'; else $(CYGPATH_W) '$(srcdir)/coll/p_gather.c'; fi`
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) coll/$(DEPDIR)/run_mpitests-p_gather.Tpo coll/$(DEPDIR)/run_mpitests-p_gather.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='coll/p_gather.c' object='coll/run_mpitests-p_gather.obj' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(run_mpitests_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o coll/run_mpitests-p_gather.obj `if test -f 'coll/p_gather.c'; then $(CYGPATH_W) 'coll/p_gather.c'; else $(CYGPATH_W) '$(srcdir)/coll/p_gather.c'; fi`
coll/run_mpitests-p_gatherv.o: coll/p_gatherv.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(run_mpitests_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT coll/run_mpitests-p_gatherv.o -MD -MP -MF coll/$(DEPDIR)/run_mpitests-p_gatherv.Tpo -c -o coll/run_mpitests-p_gatherv.o `test -f 'coll/p_gatherv.c' || echo '$(srcdir)/'`coll/p_gatherv.c
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) coll/$(DEPDIR)/run_mpitests-p_gatherv.Tpo coll/$(DEPDIR)/run_mpitests-p_gatherv.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='coll/p_gatherv.c' object='coll/run_mpitests-p_gatherv.o' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(run_mpitests_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o coll/run_mpitests-p_gatherv.o `test -f 'coll/p_gatherv.c' || echo '$(srcdir)/'`coll/p_gatherv.c
coll/run_mpitests-p_gatherv.obj: coll/p_gatherv.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(run_mpitests_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT coll/run_mpitests-p_gatherv.obj -MD -MP -MF coll/$(DEPDIR)/run_mpitests-p_gatherv.Tpo -c -o coll/run_mpitests-p_gatherv.obj `if test -f 'coll/p_gatherv.c'; then $(CYGPATH_W) 'coll/p_gatherv.c'; else $(CYGPATH_W) '$(srcdir)/coll/p_gatherv.c'; fi`
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) coll/$(DEPDIR)/run_mpitests-p_gatherv.Tpo coll/$(DEPDIR)/run_mpitests-p_gatherv.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='coll/p_gatherv.c' object='coll/run_mpitests-p_gatherv.obj' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(run_mpitests_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o coll/run_mpitests-p_gatherv.obj `if test -f 'coll/p_gatherv.c'; then $(CYGPATH_W) 'coll/p_gatherv.c'; else $(CYGPATH_W) '$(srcdir)/coll/p_gatherv.c'; fi`
coll/run_mpitests-p_neighb_allgather.o: coll/p_neighb_allgather.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(run_mpitests_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT coll/run_mpitests-p_neighb_allgather.o -MD -MP -MF coll/$(DEPDIR)/run_mpitests-p_neighb_allgather.Tpo -c -o coll/run_mpitests-p_neighb_allgather.o `test -f 'coll/p_neighb_allgather.c' || echo '$(srcdir)/'`coll/p_neighb_allgather.c
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) coll/$(DEPDIR)/run_mpitests-p_neighb_allgather.Tpo coll/$(DEPDIR)/run_mpitests-p_neighb_allgather.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='coll/p_neighb_allgather.c' object='coll/run_mpitests-p_neighb_allgather.o' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(run_mpitests_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o coll/run_mpitests-p_neighb_allgather.o `test -f 'coll/p_neighb_allgather.c' || echo '$(srcdir)/'`coll/p_neighb_allgather.c
coll/run_mpitests-p_neighb_allgather.obj: coll/p_neighb_allgather.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(run_mpitests_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT coll/run_mpitests-p_neighb_allgather.obj -MD -MP -MF coll/$(DEPDIR)/run_mpitests-p_neighb_allgather.Tpo -c -o coll/run_mpitests-p_neighb_allgather.obj `if test -f 'coll/p_neighb_allgather.c'; then $(CYGPATH_W) 'coll/p_neighb_allgather.c'; else $(CYGPATH_W) '$(srcdir)/coll/p_neighb_allgather.c'; fi`
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) coll/$(DEPDIR)/run_mpitests-p_neighb_allgather.Tpo coll/$(DEPDIR)/run_mpitests-p_neighb_allgather.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='coll/p_neighb_allgather.c' object='coll/run_mpitests-p_neighb_allgather.obj' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(run_mpitests_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o coll/run_mpitests-p_neighb_allgather.obj `if test -f 'coll/p_neighb_allgather.c'; then $(CYGPATH_W) 'coll/p_neighb_allgather.c'; else $(CYGPATH_W) '$(srcdir)/coll/p_neighb_allgather.c'; fi`
coll/run_mpitests-p_neighb_allgatherv.o: coll/p_neighb_allgatherv.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(run_mpitests_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT coll/run_mpitests-p_neighb_allgatherv.o -MD -MP -MF coll/$(DEPDIR)/run_mpitests-p_neighb_allgatherv.Tpo -c -o coll/run_mpitests-p_neighb_allgatherv.o `test -f 'coll/p_neighb_allgatherv.c' || echo '$(srcdir)/'`coll/p_neighb_allgatherv.c
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) coll/$(DEPDIR)/run_mpitests-p_neighb_allgatherv.Tpo coll/$(DEPDIR)/run_mpitests-p_neighb_allgatherv.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='coll/p_neighb_allgatherv.c' object='coll/run_mpitests-p_neighb_allgatherv.o' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(run_mpitests_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o coll/run_mpitests-p_neighb_allgatherv.o `test -f 'coll/p_neighb_allgatherv.c' || echo '$(srcdir)/'`coll/p_neighb_allgatherv.c
coll/run_mpitests-p_neighb_allgatherv.obj: coll/p_neighb_allgatherv.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(run_mpitests_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT coll/run_mpitests-p_neighb_allgatherv.obj -MD -MP -MF coll/$(DEPDIR)/run_mpitests-p_neighb_allgatherv.Tpo -c -o coll/run_mpitests-p_neighb_allgatherv.obj `if test -f 'coll/p_neighb_allgatherv.c'; then $(CYGPATH_W) 'coll/p_neighb_allgatherv.c'; else $(CYGPATH_W) '$(srcdir)/coll/p_neighb_allgatherv.c'; fi`
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) coll/$(DEPDIR)/run_mpitests-p_neighb_allgatherv.Tpo coll/$(DEPDIR)/run_mpitests-p_neighb_allgatherv.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='coll/p_neighb_allgatherv.c' object='coll/run_mpitests-p_neighb_allgatherv.obj' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(run_mpitests_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o coll/run_mpitests-p_neighb_allgatherv.obj `if test -f 'coll/p_neighb_allgatherv.c'; then $(CYGPATH_W) 'coll/p_neighb_allgatherv.c'; else $(CYGPATH_W) '$(srcdir)/coll/p_neighb_allgatherv.c'; fi`
coll/run_mpitests-p_neighb_alltoall.o: coll/p_neighb_alltoall.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(run_mpitests_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT coll/run_mpitests-p_neighb_alltoall.o -MD -MP -MF coll/$(DEPDIR)/run_mpitests-p_neighb_alltoall.Tpo -c -o coll/run_mpitests-p_neighb_alltoall.o `test -f 'coll/p_neighb_alltoall.c' || echo '$(srcdir)/'`coll/p_neighb_alltoall.c
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) coll/$(DEPDIR)/run_mpitests-p_neighb_alltoall.Tpo coll/$(DEPDIR)/run_mpitests-p_neighb_alltoall.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='coll/p_neighb_alltoall.c' object='coll/run_mpitests-p_neighb_alltoall.o' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(run_mpitests_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o coll/run_mpitests-p_neighb_alltoall.o `test -f 'coll/p_neighb_alltoall.c' || echo '$(srcdir)/'`coll/p_neighb_alltoall.c
coll/run_mpitests-p_neighb_alltoall.obj: coll/p_neighb_alltoall.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(run_mpitests_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT coll/run_mpitests-p_neighb_alltoall.obj -MD -MP -MF coll/$(DEPDIR)/run_mpitests-p_neighb_alltoall.Tpo -c -o coll/run_mpitests-p_neighb_alltoall.obj `if test -f 'coll/p_neighb_alltoall.c'; then $(CYGPATH_W) 'coll/p_neighb_alltoall.c'; else $(CYGPATH_W) '$(srcdir)/coll/p_neighb_alltoall.c'; fi`
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) coll/$(DEPDIR)/run_mpitests-p_neighb_alltoall.Tpo coll/$(DEPDIR)/run_mpitests-p_neighb_alltoall.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='coll/p_neighb_alltoall.c' object='coll/run_mpitests-p_neighb_alltoall.obj' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(run_mpitests_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o coll/run_mpitests-p_neighb_alltoall.obj `if test -f 'coll/p_neighb_alltoall.c'; then $(CYGPATH_W) 'coll/p_neighb_alltoall.c'; else $(CYGPATH_W) '$(srcdir)/coll/p_neighb_alltoall.c'; fi`
coll/run_mpitests-p_neighb_alltoallv.o: coll/p_neighb_alltoallv.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(run_mpitests_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT coll/run_mpitests-p_neighb_alltoallv.o -MD -MP -MF coll/$(DEPDIR)/run_mpitests-p_neighb_alltoallv.Tpo -c -o coll/run_mpitests-p_neighb_alltoallv.o `test -f 'coll/p_neighb_alltoallv.c' || echo '$(srcdir)/'`coll/p_neighb_alltoallv.c
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) coll/$(DEPDIR)/run_mpitests-p_neighb_alltoallv.Tpo coll/$(DEPDIR)/run_mpitests-p_neighb_alltoallv.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='coll/p_neighb_alltoallv.c' object='coll/run_mpitests-p_neighb_alltoallv.o' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(run_mpitests_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o coll/run_mpitests-p_neighb_alltoallv.o `test -f 'coll/p_neighb_alltoallv.c' || echo '$(srcdir)/'`coll/p_neighb_alltoallv.c
coll/run_mpitests-p_neighb_alltoallv.obj: coll/p_neighb_alltoallv.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(run_mpitests_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT coll/run_mpitests-p_neighb_alltoallv.obj -MD -MP -MF coll/$(DEPDIR)/run_mpitests-p_neighb_alltoallv.Tpo -c -o coll/run_mpitests-p_neighb_alltoallv.obj `if test -f 'coll/p_neighb_alltoallv.c'; then $(CYGPATH_W) 'coll/p_neighb_alltoallv.c'; else $(CYGPATH_W) '$(srcdir)/coll/p_neighb_alltoallv.c'; fi`
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) coll/$(DEPDIR)/run_mpitests-p_neighb_alltoallv.Tpo coll/$(DEPDIR)/run_mpitests-p_neighb_alltoallv.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='coll/p_neighb_alltoallv.c' object='coll/run_mpitests-p_neighb_alltoallv.obj' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(run_mpitests_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o coll/run_mpitests-p_neighb_alltoallv.obj `if test -f 'coll/p_neighb_alltoallv.c'; then $(CYGPATH_W) 'coll/p_neighb_alltoallv.c'; else $(CYGPATH_W) '$(srcdir)/coll/p_neighb_alltoallv.c'; fi`
coll/run_mpitests-p_neighb_alltoallw.o: coll/p_neighb_alltoallw.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(run_mpitests_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT coll/run_mpitests-p_neighb_alltoallw.o -MD -MP -MF coll/$(DEPDIR)/run_mpitests-p_neighb_alltoallw.Tpo -c -o coll/run_mpitests-p_neighb_alltoallw.o `test -f 'coll/p_neighb_alltoallw.c' || echo '$(srcdir)/'`coll/p_neighb_alltoallw.c
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) coll/$(DEPDIR)/run_mpitests-p_neighb_alltoallw.Tpo coll/$(DEPDIR)/run_mpitests-p_neighb_alltoallw.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='coll/p_neighb_alltoallw.c' object='coll/run_mpitests-p_neighb_alltoallw.o' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(run_mpitests_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o coll/run_mpitests-p_neighb_alltoallw.o `test -f 'coll/p_neighb_alltoallw.c' || echo '$(srcdir)/'`coll/p_neighb_alltoallw.c
coll/run_mpitests-p_neighb_alltoallw.obj: coll/p_neighb_alltoallw.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(run_mpitests_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT coll/run_mpitests-p_neighb_alltoallw.obj -MD -MP -MF coll/$(DEPDIR)/run_mpitests-p_neighb_alltoallw.Tpo -c -o coll/run_mpitests-p_neighb_alltoallw.obj `if test -f 'coll/p_neighb_alltoallw.c'; then $(CYGPATH_W) 'coll/p_neighb_alltoallw.c'; else $(CYGPATH_W) '$(srcdir)/coll/p_neighb_alltoallw.c'; fi`
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) coll/$(DEPDIR)/run_mpitests-p_neighb_alltoallw.Tpo coll/$(DEPDIR)/run_mpitests-p_neighb_alltoallw.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='coll/p_neighb_alltoallw.c' object='coll/run_mpitests-p_neighb_alltoallw.obj' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(run_mpitests_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o coll/run_mpitests-p_neighb_alltoallw.obj `if test -f 'coll/p_neighb_alltoallw.c'; then $(CYGPATH_W) 'coll/p_neighb_alltoallw.c'; else $(CYGPATH_W) '$(srcdir)/coll/p_neighb_alltoallw.c'; fi`
coll/run_mpitests-p_red.o: coll/p_red.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(run_mpitests_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT coll/run_mpitests-p_red.o -MD -MP -MF coll/$(DEPDIR)/run_mpitests-p_red.Tpo -c -o coll/run_mpitests-p_red.o `test -f 'coll/p_red.c' || echo '$(srcdir)/'`coll/p_red.c
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) coll/$(DEPDIR)/run_mpitests-p_red.Tpo coll/$(DEPDIR)/run_mpitests-p_red.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='coll/p_red.c' object='coll/run_mpitests-p_red.o' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(run_mpitests_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o coll/run_mpitests-p_red.o `test -f 'coll/p_red.c' || echo '$(srcdir)/'`coll/p_red.c
coll/run_mpitests-p_red.obj: coll/p_red.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(run_mpitests_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT coll/run_mpitests-p_red.obj -MD -MP -MF coll/$(DEPDIR)/run_mpitests-p_red.Tpo -c -o coll/run_mpitests-p_red.obj `if test -f 'coll/p_red.c'; then $(CYGPATH_W) 'coll/p_red.c'; else $(CYGPATH_W) '$(srcdir)/coll/p_red.c'; fi`
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) coll/$(DEPDIR)/run_mpitests-p_red.Tpo coll/$(DEPDIR)/run_mpitests-p_red.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='coll/p_red.c' object='coll/run_mpitests-p_red.obj' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(run_mpitests_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o coll/run_mpitests-p_red.obj `if test -f 'coll/p_red.c'; then $(CYGPATH_W) 'coll/p_red.c'; else $(CYGPATH_W) '$(srcdir)/coll/p_red.c'; fi`
coll/run_mpitests-p_red_scat_block.o: coll/p_red_scat_block.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(run_mpitests_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT coll/run_mpitests-p_red_scat_block.o -MD -MP -MF coll/$(DEPDIR)/run_mpitests-p_red_scat_block.Tpo -c -o coll/run_mpitests-p_red_scat_block.o `test -f 'coll/p_red_scat_block.c' || echo '$(srcdir)/'`coll/p_red_scat_block.c
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) coll/$(DEPDIR)/run_mpitests-p_red_scat_block.Tpo coll/$(DEPDIR)/run_mpitests-p_red_scat_block.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='coll/p_red_scat_block.c' object='coll/run_mpitests-p_red_scat_block.o' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(run_mpitests_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o coll/run_mpitests-p_red_scat_block.o `test -f 'coll/p_red_scat_block.c' || echo '$(srcdir)/'`coll/p_red_scat_block.c
coll/run_mpitests-p_red_scat_block.obj: coll/p_red_scat_block.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(run_mpitests_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT coll/run_mpitests-p_red_scat_block.obj -MD -MP -MF coll/$(DEPDIR)/run_mpitests-p_red_scat_block.Tpo -c -o coll/run_mpitests-p_red_scat_block.obj `if test -f 'coll/p_red_scat_block.c'; then $(CYGPATH_W) 'coll/p_red_scat_block.c'; else $(CYGPATH_W) '$(srcdir)/coll/p_red_scat_block.c'; fi`
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) coll/$(DEPDIR)/run_mpitests-p_red_scat_block.Tpo coll/$(DEPDIR)/run_mpitests-p_red_scat_block.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='coll/p_red_scat_block.c' object='coll/run_mpitests-p_red_scat_block.obj' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(run_mpitests_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o coll/run_mpitests-p_red_scat_block.obj `if test -f 'coll/p_red_scat_block.c'; then $(CYGPATH_W) 'coll/p_red_scat_block.c'; else $(CYGPATH_W) '$(srcdir)/coll/p_red_scat_block.c'; fi`
coll/run_mpitests-p_redscat.o: coll/p_redscat.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(run_mpitests_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT coll/run_mpitests-p_redscat.o -MD -MP -MF coll/$(DEPDIR)/run_mpitests-p_redscat.Tpo -c -o coll/run_mpitests-p_redscat.o `test -f 'coll/p_redscat.c' || echo '$(srcdir)/'`coll/p_redscat.c
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) coll/$(DEPDIR)/run_mpitests-p_redscat.Tpo coll/$(DEPDIR)/run_mpitests-p_redscat.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='coll/p_redscat.c' object='coll/run_mpitests-p_redscat.o' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(run_mpitests_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o coll/run_mpitests-p_redscat.o `test -f 'coll/p_redscat.c' || echo '$(srcdir)/'`coll/p_redscat.c
coll/run_mpitests-p_redscat.obj: coll/p_redscat.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(run_mpitests_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT coll/run_mpitests-p_redscat.obj -MD -MP -MF coll/$(DEPDIR)/run_mpitests-p_redscat.Tpo -c -o coll/run_mpitests-p_redscat.obj `if test -f 'coll/p_redscat.c'; then $(CYGPATH_W) 'coll/p_redscat.c'; else $(CYGPATH_W) '$(srcdir)/coll/p_redscat.c'; fi`
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) coll/$(DEPDIR)/run_mpitests-p_redscat.Tpo coll/$(DEPDIR)/run_mpitests-p_redscat.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='coll/p_redscat.c' object='coll/run_mpitests-p_redscat.obj' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(run_mpitests_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o coll/run_mpitests-p_redscat.obj `if test -f 'coll/p_redscat.c'; then $(CYGPATH_W) 'coll/p_redscat.c'; else $(CYGPATH_W) '$(srcdir)/coll/p_redscat.c'; fi`
coll/run_mpitests-p_scan.o: coll/p_scan.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(run_mpitests_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT coll/run_mpitests-p_scan.o -MD -MP -MF coll/$(DEPDIR)/run_mpitests-p_scan.Tpo -c -o coll/run_mpitests-p_scan.o `test -f 'coll/p_scan.c' || echo '$(srcdir)/'`coll/p_scan.c
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) coll/$(DEPDIR)/run_mpitests-p_scan.Tpo coll/$(DEPDIR)/run_mpitests-p_scan.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='coll/p_scan.c' object='coll/run_mpitests-p_scan.o' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(run_mpitests_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o coll/run_mpitests-p_scan.o `test -f 'coll/p_scan.c' || echo '$(srcdir)/'`coll/p_scan.c
coll/run_mpitests-p_scan.obj: coll/p_scan.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(run_mpitests_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT coll/run_mpitests-p_scan.obj -MD -MP -MF coll/$(DEPDIR)/run_mpitests-p_scan.Tpo -c -o coll/run_mpitests-p_scan.obj `if test -f 'coll/p_scan.c'; then $(CYGPATH_W) 'coll/p_scan.c'; else $(CYGPATH_W) '$(srcdir)/coll/p_scan.c'; fi`
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) coll/$(DEPDIR)/run_mpitests-p_scan.Tpo coll/$(DEPDIR)/run_mpitests-p_scan.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='coll/p_scan.c' object='coll/run_mpitests-p_scan.obj' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(run_mpitests_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o coll/run_mpitests-p_scan.obj `if test -f 'coll/p_scan.c'; then $(CYGPATH_W) 'coll/p_scan.c'; else $(CYGPATH_W) '$(srcdir)/coll/p_scan.c'; fi`
coll/run_mpitests-p_scatter.o: coll/p_scatter.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(run_mpitests_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT coll/run_mpitests-p_scatter.o -MD -MP -MF coll/$(DEPDIR)/run_mpitests-p_scatter.Tpo -c -o coll/run_mpitests-p_scatter.o `test -f 'coll/p_scatter.c' || echo '$(srcdir)/'`coll/p_scatter.c
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) coll/$(DEPDIR)/run_mpitests-p_scatter.Tpo coll/$(DEPDIR)/run_mpitests-p_scatter.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='coll/p_scatter.c' object='coll/run_mpitests-p_scatter.o' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(run_mpitests_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o coll/run_mpitests-p_scatter.o `test -f 'coll/p_scatter.c' || echo '$(srcdir)/'`coll/p_scatter.c
coll/run_mpitests-p_scatter.obj: coll/p_scatter.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(run_mpitests_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT coll/run_mpitests-p_scatter.obj -MD -MP -MF coll/$(DEPDIR)/run_mpitests-p_scatter.Tpo -c -o coll/run_mpitests-p_scatter.obj `if test -f 'coll/p_scatter.c'; then $(CYGPATH_W) 'coll/p_scatter.c'; else $(CYGPATH_W) '$(srcdir)/coll/p_scatter.c'; fi`
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) coll/$(DEPDIR)/run_mpitests-p_scatter.Tpo coll/$(DEPDIR)/run_mpitests-p_scatter.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='coll/p_scatter.c' object='coll/run_mpitests-p_scatter.obj' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(run_mpitests_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o coll/run_mpitests-p_scatter.obj `if test -f 'coll/p_scatter.c'; then $(CYGPATH_W) 'coll/p_scatter.c'; else $(CYGPATH_W) '$(srcdir)/coll/p_scatter.c'; fi`
coll/run_mpitests-p_scatterv.o: coll/p_scatterv.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(run_mpitests_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT coll/run_mpitests-p_scatterv.o -MD -MP -MF coll/$(DEPDIR)/run_mpitests-p_scatterv.Tpo -c -o coll/run_mpitests-p_scatterv.o `test -f 'coll/p_scatterv.c' || echo '$(srcdir)/'`coll/p_scatterv.c
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) coll/$(DEPDIR)/run_mpitests-p_scatterv.Tpo coll/$(DEPDIR)/run_mpitests-p_scatterv.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='coll/p_scatterv.c' object='coll/run_mpitests-p_scatterv.o' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(run_mpitests_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o coll/run_mpitests-p_scatterv.o `test -f 'coll/p_scatterv.c' || echo '$(srcdir)/'`coll/p_scatterv.c
coll/run_mpitests-p_scatterv.obj: coll/p_scatterv.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(run_mpitests_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT coll/run_mpitests-p_scatterv.obj -MD -MP -MF coll/$(DEPDIR)/run_mpitests-p_scatterv.Tpo -c -o coll/run_mpitests-p_scatterv.obj `if test -f 'coll/p_scatterv.c'; then $(CYGPATH_W) 'coll/p_scatterv.c'; else $(CYGPATH_W) '$(srcdir)/coll/p_scatterv.c'; fi`
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) coll/$(DEPDIR)/run_mpitests-p_scatterv.Tpo coll/$(DEPDIR)/run_mpitests-p_scatterv.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='coll/p_scatterv.c' object='coll/run_mpitests-p_scatterv.obj' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(run_mpitests_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o coll/run_mpitests-p_scatterv.obj `if test -f 'coll/p_scatterv.c'; then $(CYGPATH_W) 'coll/p_scatterv.c'; else $(CYGPATH_W) '$(srcdir)/coll/p_scatterv.c'; fi`
coll/run_mpitests-red3.o: coll/red3.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(run_mpitests_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT coll/run_mpitests-red3.o -MD -MP -MF coll/$(DEPDIR)/run_mpitests-red3.Tpo -c -o coll/run_mpitests-red3.o `test -f 'coll/red3.c' || echo '$(srcdir)/'`coll/red3.c
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) coll/$(DEPDIR)/run_mpitests-red3.Tpo coll/$(DEPDIR)/run_mpitests-red3.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='coll/red3.c' object='coll/run_mpitests-red3.o' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(run_mpitests_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o coll/run_mpitests-red3.o `test -f 'coll/red3.c' || echo '$(srcdir)/'`coll/red3.c
coll/run_mpitests-red3.obj: coll/red3.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(run_mpitests_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT coll/run_mpitests-red3.obj -MD -MP -MF coll/$(DEPDIR)/run_mpitests-red3.Tpo -c -o coll/run_mpitests-red3.obj `if test -f 'coll/red3.c'; then $(CYGPATH_W) 'coll/red3.c'; else $(CYGPATH_W) '$(srcdir)/coll/red3.c'; fi`
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) coll/$(DEPDIR)/run_mpitests-red3.Tpo coll/$(DEPDIR)/run_mpitests-red3.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='coll/red3.c' object='coll/run_mpitests-red3.obj' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(run_mpitests_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o coll/run_mpitests-red3.obj `if test -f 'coll/red3.c'; then $(CYGPATH_W) 'coll/red3.c'; else $(CYGPATH_W) '$(srcdir)/coll/red3.c'; fi`
coll/run_mpitests-red4.o: coll/red4.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(run_mpitests_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT coll/run_mpitests-red4.o -MD -MP -MF coll/$(DEPDIR)/run_mpitests-red4.Tpo -c -o coll/run_mpitests-red4.o `test -f 'coll/red4.c' || echo '$(srcdir)/'`coll/red4.c
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) coll/$(DEPDIR)/run_mpitests-red4.Tpo coll/$(DEPDIR)/run_mpitests-red4.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='coll/red4.c' object='coll/run_mpitests-red4.o' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(run_mpitests_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o coll/run_mpitests-red4.o `test -f 'coll/red4.c' || echo '$(srcdir)/'`coll/red4.c
coll/run_mpitests-red4.obj: coll/red4.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(run_mpitests_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT coll/run_mpitests-red4.obj -MD -MP -MF coll/$(DEPDIR)/run_mpitests-red4.Tpo -c -o coll/run_mpitests-red4.obj `if test -f 'coll/red4.c'; then $(CYGPATH_W) 'coll/red4.c'; else $(CYGPATH_W) '$(srcdir)/coll/red4.c'; fi`
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) coll/$(DEPDIR)/run_mpitests-red4.Tpo coll/$(DEPDIR)/run_mpitests-red4.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='coll/red4.c' object='coll/run_mpitests-red4.obj' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(run_mpitests_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o coll/run_mpitests-red4.obj `if test -f 'coll/red4.c'; then $(CYGPATH_W) 'coll/red4.c'; else $(CYGPATH_W) '$(srcdir)/coll/red4.c'; fi`
coll/run_mpitests-red_scat_block.o: coll/red_scat_block.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(run_mpitests_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT coll/run_mpitests-red_scat_block.o -MD -MP -MF coll/$(DEPDIR)/run_mpitests-red_scat_block.Tpo -c -o coll/run_mpitests-red_scat_block.o `test -f 'coll/red_scat_block.c' || echo '$(srcdir)/'`coll/red_scat_block.c
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) coll/$(DEPDIR)/run_mpitests-red_scat_block.Tpo coll/$(DEPDIR)/run_mpitests-red_scat_block.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='coll/red_scat_block.c' object='coll/run_mpitests-red_scat_block.o' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(run_mpitests_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o coll/run_mpitests-red_scat_block.o `test -f 'coll/red_scat_block.c' || echo '$(srcdir)/'`coll/red_scat_block.c
coll/run_mpitests-red_scat_block.obj: coll/red_scat_block.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(run_mpitests_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT coll/run_mpitests-red_scat_block.obj -MD -MP -MF coll/$(DEPDIR)/run_mpitests-red_scat_block.Tpo -c -o coll/run_mpitests-red_scat_block.obj `if test -f 'coll/red_scat_block.c'; then $(CYGPATH_W) 'coll/red_scat_block.c'; else $(CYGPATH_W) '$(srcdir)/coll/red_scat_block.c'; fi`
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) coll/$(DEPDIR)/run_mpitests-red_scat_block.Tpo coll/$(DEPDIR)/run_mpitests-red_scat_block.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='coll/red_scat_block.c' object='coll/run_mpitests-red_scat_block.obj' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(run_mpitests_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o coll/run_mpitests-red_scat_block.obj `if test -f 'coll/red_scat_block.c'; then $(CYGPATH_W) 'coll/red_scat_block.c'; else $(CYGPATH_W) '$(srcdir)/coll/red_scat_block.c'; fi`
coll/run_mpitests-red_scat_block2.o: coll/red_scat_block2.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(run_mpitests_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT coll/run_mpitests-red_scat_block2.o -MD -MP -MF coll/$(DEPDIR)/run_mpitests-red_scat_block2.Tpo -c -o coll/run_mpitests-red_scat_block2.o `test -f 'coll/red_scat_block2.c' || echo '$(srcdir)/'`coll/red_scat_block2.c
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) coll/$(DEPDIR)/run_mpitests-red_scat_block2.Tpo coll/$(DEPDIR)/run_mpitests-red_scat_block2.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='coll/red_scat_block2.c' object='coll/run_mpitests-red_scat_block2.o' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(run_mpitests_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o coll/run_mpitests-red_scat_block2.o `test -f 'coll/red_scat_block2.c' || echo '$(srcdir)/'`coll/red_scat_block2.c
coll/run_mpitests-red_scat_block2.obj: coll/red_scat_block2.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(run_mpitests_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT coll/run_mpitests-red_scat_block2.obj -MD -MP -MF coll/$(DEPDIR)/run_mpitests-red_scat_block2.Tpo -c -o coll/run_mpitests-red_scat_block2.obj `if test -f 'coll/red_scat_block2.c'; then $(CYGPATH_W) 'coll/red_scat_block2.c'; else $(CYGPATH_W) '$(srcdir)/coll/red_scat_block2.c'; fi`
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) coll/$(DEPDIR)/run_mpitests-red_scat_block2.Tpo coll/$(DEPDIR)/run_mpitests-red_scat_block2.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='coll/red_scat_block2.c' object='coll/run_mpitests-red_scat_block2.obj' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(run_mpitests_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o coll/run_mpitests-red_scat_block2.obj `if test -f 'coll/red_scat_block2.c'; then $(CYGPATH_W) 'coll/red_scat_block2.c'; else $(CYGPATH_W) '$(srcdir)/coll/red_scat_block2.c'; fi`
coll/run_mpitests-redscat.o: coll/redscat.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(run_mpitests_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT coll/run_mpitests-redscat.o -MD -MP -MF coll/$(DEPDIR)/run_mpitests-redscat.Tpo -c -o coll/run_mpitests-redscat.o `test -f 'coll/redscat.c' || echo '$(srcdir)/'`coll/redscat.c
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) coll/$(DEPDIR)/run_mpitests-redscat.Tpo coll/$(DEPDIR)/run_mpitests-redscat.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='coll/redscat.c' object='coll/run_mpitests-redscat.o' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(run_mpitests_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o coll/run_mpitests-redscat.o `test -f 'coll/redscat.c' || echo '$(srcdir)/'`coll/redscat.c
coll/run_mpitests-redscat.obj: coll/redscat.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(run_mpitests_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT coll/run_mpitests-redscat.obj -MD -MP -MF coll/$(DEPDIR)/run_mpitests-redscat.Tpo -c -o coll/run_mpitests-redscat.obj `if test -f 'coll/redscat.c'; then $(CYGPATH_W) 'coll/redscat.c'; else $(CYGPATH_W) '$(srcdir)/coll/redscat.c'; fi`
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) coll/$(DEPDIR)/run_mpitests-redscat.Tpo coll/$(DEPDIR)/run_mpitests-redscat.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='coll/redscat.c' object='coll/run_mpitests-redscat.obj' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(run_mpitests_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o coll/run_mpitests-redscat.obj `if test -f 'coll/redscat.c'; then $(CYGPATH_W) 'coll/redscat.c'; else $(CYGPATH_W) '$(srcdir)/coll/redscat.c'; fi`
coll/run_mpitests-redscat2.o: coll/redscat2.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(run_mpitests_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT coll/run_mpitests-redscat2.o -MD -MP -MF coll/$(DEPDIR)/run_mpitests-redscat2.Tpo -c -o coll/run_mpitests-redscat2.o `test -f 'coll/redscat2.c' || echo '$(srcdir)/'`coll/redscat2.c
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) coll/$(DEPDIR)/run_mpitests-redscat2.Tpo coll/$(DEPDIR)/run_mpitests-redscat2.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='coll/redscat2.c' object='coll/run_mpitests-redscat2.o' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(run_mpitests_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o coll/run_mpitests-redscat2.o `test -f 'coll/redscat2.c' || echo '$(srcdir)/'`coll/redscat2.c
coll/run_mpitests-redscat2.obj: coll/redscat2.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(run_mpitests_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT coll/run_mpitests-redscat2.obj -MD -MP -MF coll/$(DEPDIR)/run_mpitests-redscat2.Tpo -c -o coll/run_mpitests-redscat2.obj `if test -f 'coll/redscat2.c'; then $(CYGPATH_W) 'coll/redscat2.c'; else $(CYGPATH_W) '$(srcdir)/coll/redscat2.c'; fi`
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) coll/$(DEPDIR)/run_mpitests-redscat2.Tpo coll/$(DEPDIR)/run_mpitests-redscat2.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='coll/redscat2.c' object='coll/run_mpitests-redscat2.obj' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(run_mpitests_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o coll/run_mpitests-redscat2.obj `if test -f 'coll/redscat2.c'; then $(CYGPATH_W) 'coll/redscat2.c'; else $(CYGPATH_W) '$(srcdir)/coll/redscat2.c'; fi`
coll/run_mpitests-redscat3.o: coll/redscat3.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(run_mpitests_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT coll/run_mpitests-redscat3.o -MD -MP -MF coll/$(DEPDIR)/run_mpitests-redscat3.Tpo -c -o coll/run_mpitests-redscat3.o `test -f 'coll/redscat3.c' || echo '$(srcdir)/'`coll/redscat3.c
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) coll/$(DEPDIR)/run_mpitests-redscat3.Tpo coll/$(DEPDIR)/run_mpitests-redscat3.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='coll/redscat3.c' object='coll/run_mpitests-redscat3.o' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(run_mpitests_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o coll/run_mpitests-redscat3.o `test -f 'coll/redscat3.c' || echo '$(srcdir)/'`coll/redscat3.c
coll/run_mpitests-redscat3.obj: coll/redscat3.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(run_mpitests_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT coll/run_mpitests-redscat3.obj -MD -MP -MF coll/$(DEPDIR)/run_mpitests-redscat3.Tpo -c -o coll/run_mpitests-redscat3.obj `if test -f 'coll/redscat3.c'; then $(CYGPATH_W) 'coll/redscat3.c'; else $(CYGPATH_W) '$(srcdir)/coll/redscat3.c'; fi`
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) coll/$(DEPDIR)/run_mpitests-redscat3.Tpo coll/$(DEPDIR)/run_mpitests-redscat3.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='coll/redscat3.c' object='coll/run_mpitests-redscat3.obj' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(run_mpitests_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o coll/run_mpitests-redscat3.obj `if test -f 'coll/redscat3.c'; then $(CYGPATH_W) 'coll/redscat3.c'; else $(CYGPATH_W) '$(srcdir)/coll/redscat3.c'; fi`
coll/run_mpitests-redscatblk3.o: coll/redscatblk3.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(run_mpitests_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT coll/run_mpitests-redscatblk3.o -MD -MP -MF coll/$(DEPDIR)/run_mpitests-redscatblk3.Tpo -c -o coll/run_mpitests-redscatblk3.o `test -f 'coll/redscatblk3.c' || echo '$(srcdir)/'`coll/redscatblk3.c
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) coll/$(DEPDIR)/run_mpitests-redscatblk3.Tpo coll/$(DEPDIR)/run_mpitests-redscatblk3.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='coll/redscatblk3.c' object='coll/run_mpitests-redscatblk3.o' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(run_mpitests_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o coll/run_mpitests-redscatblk3.o `test -f 'coll/redscatblk3.c' || echo '$(srcdir)/'`coll/redscatblk3.c
coll/run_mpitests-redscatblk3.obj: coll/redscatblk3.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(run_mpitests_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT coll/run_mpitests-redscatblk3.obj -MD -MP -MF coll/$(DEPDIR)/run_mpitests-redscatblk3.Tpo -c -o coll/run_mpitests-redscatblk3.obj `if test -f 'coll/redscatblk3.c'; then $(CYGPATH_W) 'coll/redscatblk3.c'; else $(CYGPATH_W) '$(srcdir)/coll/redscatblk3.c'; fi`
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) coll/$(DEPDIR)/run_mpitests-redscatblk3.Tpo coll/$(DEPDIR)/run_mpitests-redscatblk3.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='coll/redscatblk3.c' object='coll/run_mpitests-redscatblk3.obj' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(run_mpitests_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o coll/run_mpitests-redscatblk3.obj `if test -f 'coll/redscatblk3.c'; then $(CYGPATH_W) 'coll/redscatblk3.c'; else $(CYGPATH_W) '$(srcdir)/coll/redscatblk3.c'; fi`
coll/run_mpitests-reduce.o: coll/reduce.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(run_mpitests_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT coll/run_mpitests-reduce.o -MD -MP -MF coll/$(DEPDIR)/run_mpitests-reduce.Tpo -c -o coll/run_mpitests-reduce.o `test -f 'coll/reduce.c' || echo '$(srcdir)/'`coll/reduce.c
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) coll/$(DEPDIR)/run_mpitests-reduce.Tpo coll/$(DEPDIR)/run_mpitests-reduce.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='coll/reduce.c' object='coll/run_mpitests-reduce.o' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(run_mpitests_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o coll/run_mpitests-reduce.o `test -f 'coll/reduce.c' || echo '$(srcdir)/'`coll/reduce.c
coll/run_mpitests-reduce.obj: coll/reduce.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(run_mpitests_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT coll/run_mpitests-reduce.obj -MD -MP -MF coll/$(DEPDIR)/run_mpitests-reduce.Tpo -c -o coll/run_mpitests-reduce.obj `if test -f 'coll/reduce.c'; then $(CYGPATH_W) 'coll/reduce.c'; else $(CYGPATH_W) '$(srcdir)/coll/reduce.c'; fi`
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) coll/$(DEPDIR)/run_mpitests-reduce.Tpo coll/$(DEPDIR)/run_mpitests-reduce.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='coll/reduce.c' object='coll/run_mpitests-reduce.obj' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(run_mpitests_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o coll/run_mpitests-reduce.obj `if test -f 'coll/reduce.c'; then $(CYGPATH_W) 'coll/reduce.c'; else $(CYGPATH_W) '$(srcdir)/coll/reduce.c'; fi`
coll/run_mpitests-scantst.o: coll/scantst.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(run_mpitests_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT coll/run_mpitests-scantst.o -MD -MP -MF coll/$(DEPDIR)/run_mpitests-scantst.Tpo -c -o coll/run_mpitests-scantst.o `test -f 'coll/scantst.c' || echo '$(srcdir)/'`coll/scantst.c
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) coll/$(DEPDIR)/run_mpitests-scantst.Tpo coll/$(DEPDIR)/run_mpitests-scantst.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='coll/scantst.c' object='coll/run_mpitests-scantst.o' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(run_mpitests_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o coll/run_mpitests-scantst.o `test -f 'coll/scantst.c' || echo '$(srcdir)/'`coll/scantst.c
coll/run_mpitests-scantst.obj: coll/scantst.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(run_mpitests_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT coll/run_mpitests-scantst.obj -MD -MP -MF coll/$(DEPDIR)/run_mpitests-scantst.Tpo -c -o coll/run_mpitests-scantst.obj `if test -f 'coll/scantst.c'; then $(CYGPATH_W) 'coll/scantst.c'; else $(CYGPATH_W) '$(srcdir)/coll/scantst.c'; fi`
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) coll/$(DEPDIR)/run_mpitests-scantst.Tpo coll/$(DEPDIR)/run_mpitests-scantst.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='coll/scantst.c' object='coll/run_mpitests-scantst.obj' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(run_mpitests_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o coll/run_mpitests-scantst.obj `if test -f 'coll/scantst.c'; then $(CYGPATH_W) 'coll/scantst.c'; else $(CYGPATH_W) '$(srcdir)/coll/scantst.c'; fi`
coll/run_mpitests-scatter2.o: coll/scatter2.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(run_mpitests_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT coll/run_mpitests-scatter2.o -MD -MP -MF coll/$(DEPDIR)/run_mpitests-scatter2.Tpo -c -o coll/run_mpitests-scatter2.o `test -f 'coll/scatter2.c' || echo '$(srcdir)/'`coll/scatter2.c
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) coll/$(DEPDIR)/run_mpitests-scatter2.Tpo coll/$(DEPDIR)/run_mpitests-scatter2.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='coll/scatter2.c' object='coll/run_mpitests-scatter2.o' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(run_mpitests_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o coll/run_mpitests-scatter2.o `test -f 'coll/scatter2.c' || echo '$(srcdir)/'`coll/scatter2.c
coll/run_mpitests-scatter2.obj: coll/scatter2.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(run_mpitests_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT coll/run_mpitests-scatter2.obj -MD -MP -MF coll/$(DEPDIR)/run_mpitests-scatter2.Tpo -c -o coll/run_mpitests-scatter2.obj `if test -f 'coll/scatter2.c'; then $(CYGPATH_W) 'coll/scatter2.c'; else $(CYGPATH_W) '$(srcdir)/coll/scatter2.c'; fi`
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) coll/$(DEPDIR)/run_mpitests-scatter2.Tpo coll/$(DEPDIR)/run_mpitests-scatter2.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='coll/scatter2.c' object='coll/run_mpitests-scatter2.obj' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(run_mpitests_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o coll/run_mpitests-scatter2.obj `if test -f 'coll/scatter2.c'; then $(CYGPATH_W) 'coll/scatter2.c'; else $(CYGPATH_W) '$(srcdir)/coll/scatter2.c'; fi`
coll/run_mpitests-scatter3.o: coll/scatter3.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(run_mpitests_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT coll/run_mpitests-scatter3.o -MD -MP -MF coll/$(DEPDIR)/run_mpitests-scatter3.Tpo -c -o coll/run_mpitests-scatter3.o `test -f 'coll/scatter3.c' || echo '$(srcdir)/'`coll/scatter3.c
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) coll/$(DEPDIR)/run_mpitests-scatter3.Tpo coll/$(DEPDIR)/run_mpitests-scatter3.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='coll/scatter3.c' object='coll/run_mpitests-scatter3.o' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(run_mpitests_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o coll/run_mpitests-scatter3.o `test -f 'coll/scatter3.c' || echo '$(srcdir)/'`coll/scatter3.c
coll/run_mpitests-scatter3.obj: coll/scatter3.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(run_mpitests_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT coll/run_mpitests-scatter3.obj -MD -MP -MF coll/$(DEPDIR)/run_mpitests-scatter3.Tpo -c -o coll/run_mpitests-scatter3.obj `if test -f 'coll/scatter3.c'; then $(CYGPATH_W) 'coll/scatter3.c'; else $(CYGPATH_W) '$(srcdir)/coll/scatter3.c'; fi`
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) coll/$(DEPDIR)/run_mpitests-scatter3.Tpo coll/$(DEPDIR)/run_mpitests-scatter3.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='coll/scatter3.c' object='coll/run_mpitests-scatter3.obj' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(run_mpitests_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o coll/run_mpitests-scatter3.obj `if test -f 'coll/scatter3.c'; then $(CYGPATH_W) 'coll/scatter3.c'; else $(CYGPATH_W) '$(srcdir)/coll/scatter3.c'; fi`
coll/run_mpitests-scattern.o: coll/scattern.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(run_mpitests_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT coll/run_mpitests-scattern.o -MD -MP -MF coll/$(DEPDIR)/run_mpitests-scattern.Tpo -c -o coll/run_mpitests-scattern.o `test -f 'coll/scattern.c' || echo '$(srcdir)/'`coll/scattern.c
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) coll/$(DEPDIR)/run_mpitests-scattern.Tpo coll/$(DEPDIR)/run_mpitests-scattern.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='coll/scattern.c' object='coll/run_mpitests-scattern.o' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(run_mpitests_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o coll/run_mpitests-scattern.o `test -f 'coll/scattern.c' || echo '$(srcdir)/'`coll/scattern.c
coll/run_mpitests-scattern.obj: coll/scattern.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(run_mpitests_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT coll/run_mpitests-scattern.obj -MD -MP -MF coll/$(DEPDIR)/run_mpitests-scattern.Tpo -c -o coll/run_mpitests-scattern.obj `if test -f 'coll/scattern.c'; then $(CYGPATH_W) 'coll/scattern.c'; else $(CYGPATH_W) '$(srcdir)/coll/scattern.c'; fi`
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) coll/$(DEPDIR)/run_mpitests-scattern.Tpo coll/$(DEPDIR)/run_mpitests-scattern.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='coll/scattern.c' object='coll/run_mpitests-scattern.obj' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(run_mpitests_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o coll/run_mpitests-scattern.obj `if test -f 'coll/scattern.c'; then $(CYGPATH_W) 'coll/scattern.c'; else $(CYGPATH_W) '$(srcdir)/coll/scattern.c'; fi`
coll/run_mpitests-scatterv.o: coll/scatterv.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(run_mpitests_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT coll/run_mpitests-scatterv.o -MD -MP -MF coll/$(DEPDIR)/run_mpitests-scatterv.Tpo -c -o coll/run_mpitests-scatterv.o `test -f 'coll/scatterv.c' || echo '$(srcdir)/'`coll/scatterv.c
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) coll/$(DEPDIR)/run_mpitests-scatterv.Tpo coll/$(DEPDIR)/run_mpitests-scatterv.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='coll/scatterv.c' object='coll/run_mpitests-scatterv.o' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(run_mpitests_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o coll/run_mpitests-scatterv.o `test -f 'coll/scatterv.c' || echo '$(srcdir)/'`coll/scatterv.c
coll/run_mpitests-scatterv.obj: coll/scatterv.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(run_mpitests_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT coll/run_mpitests-scatterv.obj -MD -MP -MF coll/$(DEPDIR)/run_mpitests-scatterv.Tpo -c -o coll/run_mpitests-scatterv.obj `if test -f 'coll/scatterv.c'; then $(CYGPATH_W) 'coll/scatterv.c'; else $(CYGPATH_W) '$(srcdir)/coll/scatterv.c'; fi`
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) coll/$(DEPDIR)/run_mpitests-scatterv.Tpo coll/$(DEPDIR)/run_mpitests-scatterv.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='coll/scatterv.c' object='coll/run_mpitests-scatterv.obj' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(run_mpitests_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o coll/run_mpitests-scatterv.obj `if test -f 'coll/scatterv.c'; then $(CYGPATH_W) 'coll/scatterv.c'; else $(CYGPATH_W) '$(srcdir)/coll/scatterv.c'; fi`
run_mpitests-all_mpitests.o: all_mpitests.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(run_mpitests_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT run_mpitests-all_mpitests.o -MD -MP -MF $(DEPDIR)/run_mpitests-all_mpitests.Tpo -c -o run_mpitests-all_mpitests.o `test -f 'all_mpitests.c' || echo '$(srcdir)/'`all_mpitests.c
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/run_mpitests-all_mpitests.Tpo $(DEPDIR)/run_mpitests-all_mpitests.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='all_mpitests.c' object='run_mpitests-all_mpitests.o' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(run_mpitests_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o run_mpitests-all_mpitests.o `test -f 'all_mpitests.c' || echo '$(srcdir)/'`all_mpitests.c
run_mpitests-all_mpitests.obj: all_mpitests.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(run_mpitests_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT run_mpitests-all_mpitests.obj -MD -MP -MF $(DEPDIR)/run_mpitests-all_mpitests.Tpo -c -o run_mpitests-all_mpitests.obj `if test -f 'all_mpitests.c'; then $(CYGPATH_W) 'all_mpitests.c'; else $(CYGPATH_W) '$(srcdir)/all_mpitests.c'; fi`
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/run_mpitests-all_mpitests.Tpo $(DEPDIR)/run_mpitests-all_mpitests.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='all_mpitests.c' object='run_mpitests-all_mpitests.obj' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(run_mpitests_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o run_mpitests-all_mpitests.obj `if test -f 'all_mpitests.c'; then $(CYGPATH_W) 'all_mpitests.c'; else $(CYGPATH_W) '$(srcdir)/all_mpitests.c'; fi`
mostlyclean-libtool:
-rm -f *.lo
clean-libtool:
-rm -rf .libs _libs
distclean-libtool:
-rm -f libtool config.lt
# This directory's subdirectories are mostly independent; you can cd
# into them and run 'make' without going through this Makefile.
# To change the values of 'make' variables: instead of editing Makefiles,
# (1) if the variable is set in 'config.status', edit 'config.status'
# (which will cause the Makefiles to be regenerated when you run 'make');
# (2) otherwise, pass the desired values on the 'make' command line.
$(am__recursive_targets):
@fail=; \
if $(am__make_keepgoing); then \
failcom='fail=yes'; \
else \
failcom='exit 1'; \
fi; \
dot_seen=no; \
target=`echo $@ | sed s/-recursive//`; \
case "$@" in \
distclean-* | maintainer-clean-*) list='$(DIST_SUBDIRS)' ;; \
*) list='$(SUBDIRS)' ;; \
esac; \
for subdir in $$list; do \
echo "Making $$target in $$subdir"; \
if test "$$subdir" = "."; then \
dot_seen=yes; \
local_target="$$target-am"; \
else \
local_target="$$target"; \
fi; \
($(am__cd) $$subdir && $(MAKE) $(AM_MAKEFLAGS) $$local_target) \
|| eval $$failcom; \
done; \
if test "$$dot_seen" = "no"; then \
$(MAKE) $(AM_MAKEFLAGS) "$$target-am" || exit 1; \
fi; test -z "$$fail"
ID: $(am__tagged_files)
$(am__define_uniq_tagged_files); mkid -fID $$unique
tags: tags-recursive
TAGS: tags
tags-am: $(TAGS_DEPENDENCIES) $(am__tagged_files)
set x; \
here=`pwd`; \
if ($(ETAGS) --etags-include --version) >/dev/null 2>&1; then \
include_option=--etags-include; \
empty_fix=.; \
else \
include_option=--include; \
empty_fix=; \
fi; \
list='$(SUBDIRS)'; for subdir in $$list; do \
if test "$$subdir" = .; then :; else \
test ! -f $$subdir/TAGS || \
set "$$@" "$$include_option=$$here/$$subdir/TAGS"; \
fi; \
done; \
$(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-recursive
CTAGS: ctags
ctags-am: $(TAGS_DEPENDENCIES) $(am__tagged_files)
$(am__define_uniq_tagged_files); \
test -z "$(CTAGS_ARGS)$$unique" \
|| $(CTAGS) $(CTAGSFLAGS) $(AM_CTAGSFLAGS) $(CTAGS_ARGS) \
$$unique
GTAGS:
here=`$(am__cd) $(top_builddir) && pwd` \
&& $(am__cd) $(top_srcdir) \
&& gtags -i $(GTAGS_ARGS) "$$here"
cscope: cscope.files
test ! -s cscope.files \
|| $(CSCOPE) -b -q $(AM_CSCOPEFLAGS) $(CSCOPEFLAGS) -i cscope.files $(CSCOPE_ARGS)
clean-cscope:
-rm -f cscope.files
cscope.files: clean-cscope cscopelist
cscopelist: cscopelist-recursive
cscopelist-am: $(am__tagged_files)
list='$(am__tagged_files)'; \
case "$(srcdir)" in \
[\\/]* | ?:[\\/]*) sdir="$(srcdir)" ;; \
*) sdir=$(subdir)/$(srcdir) ;; \
esac; \
for i in $$list; do \
if test -f "$$i"; then \
echo "$(subdir)/$$i"; \
else \
echo "$$sdir/$$i"; \
fi; \
done >> $(top_builddir)/cscope.files
distclean-tags:
-rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags
-rm -f cscope.out cscope.in.out cscope.po.out cscope.files
check-am: all-am
check: check-recursive
all-am: Makefile $(PROGRAMS) $(HEADERS)
installdirs: installdirs-recursive
installdirs-am:
install: install-recursive
install-exec: install-exec-recursive
install-data: install-data-recursive
uninstall: uninstall-recursive
install-am: all-am
@$(MAKE) $(AM_MAKEFLAGS) install-exec-am install-data-am
installcheck: installcheck-recursive
install-strip:
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)
-rm -f attr/$(DEPDIR)/$(am__dirstamp)
-rm -f attr/$(am__dirstamp)
-rm -f coll/$(DEPDIR)/$(am__dirstamp)
-rm -f coll/$(am__dirstamp)
-rm -f util/$(DEPDIR)/$(am__dirstamp)
-rm -f util/$(am__dirstamp)
-test -z "$(DISTCLEANFILES)" || rm -f $(DISTCLEANFILES)
maintainer-clean-generic:
@echo "This command is intended for maintainers to use"
@echo "it deletes files that may require special tools to rebuild."
clean: clean-recursive
clean-am: clean-generic clean-libtool clean-noinstPROGRAMS \
mostlyclean-am
distclean: distclean-recursive
-rm -f $(am__CONFIG_DISTCLEAN_FILES)
-rm -f ./$(DEPDIR)/run_mpitests-all_mpitests.Po
-rm -f attr/$(DEPDIR)/run_mpitests-attr2type.Po
-rm -f attr/$(DEPDIR)/run_mpitests-attrdeleteget.Po
-rm -f attr/$(DEPDIR)/run_mpitests-attrend.Po
-rm -f attr/$(DEPDIR)/run_mpitests-attrerr.Po
-rm -f attr/$(DEPDIR)/run_mpitests-attrerrcomm.Po
-rm -f attr/$(DEPDIR)/run_mpitests-attrerrtype.Po
-rm -f attr/$(DEPDIR)/run_mpitests-attric.Po
-rm -f attr/$(DEPDIR)/run_mpitests-attrorder.Po
-rm -f attr/$(DEPDIR)/run_mpitests-attrordercomm.Po
-rm -f attr/$(DEPDIR)/run_mpitests-attrordertype.Po
-rm -f attr/$(DEPDIR)/run_mpitests-attrt.Po
-rm -f attr/$(DEPDIR)/run_mpitests-baseattr2.Po
-rm -f attr/$(DEPDIR)/run_mpitests-baseattrcomm.Po
-rm -f attr/$(DEPDIR)/run_mpitests-fkeyval.Po
-rm -f attr/$(DEPDIR)/run_mpitests-fkeyvalcomm.Po
-rm -f attr/$(DEPDIR)/run_mpitests-fkeyvaltype.Po
-rm -f attr/$(DEPDIR)/run_mpitests-keyval_double_free.Po
-rm -f attr/$(DEPDIR)/run_mpitests-keyval_double_free_comm.Po
-rm -f attr/$(DEPDIR)/run_mpitests-keyval_double_free_type.Po
-rm -f attr/$(DEPDIR)/run_mpitests-keyval_double_free_win.Po
-rm -f coll/$(DEPDIR)/run_mpitests-allgather2.Po
-rm -f coll/$(DEPDIR)/run_mpitests-allgather3.Po
-rm -f coll/$(DEPDIR)/run_mpitests-allgatherv2.Po
-rm -f coll/$(DEPDIR)/run_mpitests-allgatherv3.Po
-rm -f coll/$(DEPDIR)/run_mpitests-allgatherv4.Po
-rm -f coll/$(DEPDIR)/run_mpitests-allred.Po
-rm -f coll/$(DEPDIR)/run_mpitests-allred2.Po
-rm -f coll/$(DEPDIR)/run_mpitests-allred3.Po
-rm -f coll/$(DEPDIR)/run_mpitests-allred5.Po
-rm -f coll/$(DEPDIR)/run_mpitests-allred6.Po
-rm -f coll/$(DEPDIR)/run_mpitests-allredmany.Po
-rm -f coll/$(DEPDIR)/run_mpitests-alltoall1.Po
-rm -f coll/$(DEPDIR)/run_mpitests-alltoallv.Po
-rm -f coll/$(DEPDIR)/run_mpitests-alltoallv0.Po
-rm -f coll/$(DEPDIR)/run_mpitests-alltoallw1.Po
-rm -f coll/$(DEPDIR)/run_mpitests-alltoallw2.Po
-rm -f coll/$(DEPDIR)/run_mpitests-alltoallw_zeros.Po
-rm -f coll/$(DEPDIR)/run_mpitests-bcasttest.Po
-rm -f coll/$(DEPDIR)/run_mpitests-bcastzerotype.Po
-rm -f coll/$(DEPDIR)/run_mpitests-gather.Po
-rm -f coll/$(DEPDIR)/run_mpitests-gather2.Po
-rm -f coll/$(DEPDIR)/run_mpitests-gatherv.Po
-rm -f coll/$(DEPDIR)/run_mpitests-neighb_allgather.Po
-rm -f coll/$(DEPDIR)/run_mpitests-neighb_allgatherv.Po
-rm -f coll/$(DEPDIR)/run_mpitests-neighb_alltoall.Po
-rm -f coll/$(DEPDIR)/run_mpitests-neighb_alltoallv.Po
-rm -f coll/$(DEPDIR)/run_mpitests-neighb_alltoallw.Po
-rm -f coll/$(DEPDIR)/run_mpitests-op_coll.Po
-rm -f coll/$(DEPDIR)/run_mpitests-p_allgather.Po
-rm -f coll/$(DEPDIR)/run_mpitests-p_allgatherv.Po
-rm -f coll/$(DEPDIR)/run_mpitests-p_allred.Po
-rm -f coll/$(DEPDIR)/run_mpitests-p_alltoall.Po
-rm -f coll/$(DEPDIR)/run_mpitests-p_alltoallv.Po
-rm -f coll/$(DEPDIR)/run_mpitests-p_alltoallw.Po
-rm -f coll/$(DEPDIR)/run_mpitests-p_bcast.Po
-rm -f coll/$(DEPDIR)/run_mpitests-p_bcast2.Po
-rm -f coll/$(DEPDIR)/run_mpitests-p_gather.Po
-rm -f coll/$(DEPDIR)/run_mpitests-p_gatherv.Po
-rm -f coll/$(DEPDIR)/run_mpitests-p_neighb_allgather.Po
-rm -f coll/$(DEPDIR)/run_mpitests-p_neighb_allgatherv.Po
-rm -f coll/$(DEPDIR)/run_mpitests-p_neighb_alltoall.Po
-rm -f coll/$(DEPDIR)/run_mpitests-p_neighb_alltoallv.Po
-rm -f coll/$(DEPDIR)/run_mpitests-p_neighb_alltoallw.Po
-rm -f coll/$(DEPDIR)/run_mpitests-p_red.Po
-rm -f coll/$(DEPDIR)/run_mpitests-p_red_scat_block.Po
-rm -f coll/$(DEPDIR)/run_mpitests-p_redscat.Po
-rm -f coll/$(DEPDIR)/run_mpitests-p_scan.Po
-rm -f coll/$(DEPDIR)/run_mpitests-p_scatter.Po
-rm -f coll/$(DEPDIR)/run_mpitests-p_scatterv.Po
-rm -f coll/$(DEPDIR)/run_mpitests-red3.Po
-rm -f coll/$(DEPDIR)/run_mpitests-red4.Po
-rm -f coll/$(DEPDIR)/run_mpitests-red_scat_block.Po
-rm -f coll/$(DEPDIR)/run_mpitests-red_scat_block2.Po
-rm -f coll/$(DEPDIR)/run_mpitests-redscat.Po
-rm -f coll/$(DEPDIR)/run_mpitests-redscat2.Po
-rm -f coll/$(DEPDIR)/run_mpitests-redscat3.Po
-rm -f coll/$(DEPDIR)/run_mpitests-redscatblk3.Po
-rm -f coll/$(DEPDIR)/run_mpitests-reduce.Po
-rm -f coll/$(DEPDIR)/run_mpitests-scantst.Po
-rm -f coll/$(DEPDIR)/run_mpitests-scatter2.Po
-rm -f coll/$(DEPDIR)/run_mpitests-scatter3.Po
-rm -f coll/$(DEPDIR)/run_mpitests-scattern.Po
-rm -f coll/$(DEPDIR)/run_mpitests-scatterv.Po
-rm -f util/$(DEPDIR)/run_mpitests-run_mpitests.Po
-rm -f Makefile
distclean-am: clean-am distclean-compile distclean-generic \
distclean-hdr distclean-libtool distclean-tags
dvi: dvi-recursive
dvi-am:
html: html-recursive
html-am:
info: info-recursive
info-am:
install-data-am:
install-dvi: install-dvi-recursive
install-dvi-am:
install-exec-am:
install-html: install-html-recursive
install-html-am:
install-info: install-info-recursive
install-info-am:
install-man:
install-pdf: install-pdf-recursive
install-pdf-am:
install-ps: install-ps-recursive
install-ps-am:
installcheck-am:
maintainer-clean: maintainer-clean-recursive
-rm -f $(am__CONFIG_DISTCLEAN_FILES)
-rm -rf $(top_srcdir)/autom4te.cache
-rm -f ./$(DEPDIR)/run_mpitests-all_mpitests.Po
-rm -f attr/$(DEPDIR)/run_mpitests-attr2type.Po
-rm -f attr/$(DEPDIR)/run_mpitests-attrdeleteget.Po
-rm -f attr/$(DEPDIR)/run_mpitests-attrend.Po
-rm -f attr/$(DEPDIR)/run_mpitests-attrerr.Po
-rm -f attr/$(DEPDIR)/run_mpitests-attrerrcomm.Po
-rm -f attr/$(DEPDIR)/run_mpitests-attrerrtype.Po
-rm -f attr/$(DEPDIR)/run_mpitests-attric.Po
-rm -f attr/$(DEPDIR)/run_mpitests-attrorder.Po
-rm -f attr/$(DEPDIR)/run_mpitests-attrordercomm.Po
-rm -f attr/$(DEPDIR)/run_mpitests-attrordertype.Po
-rm -f attr/$(DEPDIR)/run_mpitests-attrt.Po
-rm -f attr/$(DEPDIR)/run_mpitests-baseattr2.Po
-rm -f attr/$(DEPDIR)/run_mpitests-baseattrcomm.Po
-rm -f attr/$(DEPDIR)/run_mpitests-fkeyval.Po
-rm -f attr/$(DEPDIR)/run_mpitests-fkeyvalcomm.Po
-rm -f attr/$(DEPDIR)/run_mpitests-fkeyvaltype.Po
-rm -f attr/$(DEPDIR)/run_mpitests-keyval_double_free.Po
-rm -f attr/$(DEPDIR)/run_mpitests-keyval_double_free_comm.Po
-rm -f attr/$(DEPDIR)/run_mpitests-keyval_double_free_type.Po
-rm -f attr/$(DEPDIR)/run_mpitests-keyval_double_free_win.Po
-rm -f coll/$(DEPDIR)/run_mpitests-allgather2.Po
-rm -f coll/$(DEPDIR)/run_mpitests-allgather3.Po
-rm -f coll/$(DEPDIR)/run_mpitests-allgatherv2.Po
-rm -f coll/$(DEPDIR)/run_mpitests-allgatherv3.Po
-rm -f coll/$(DEPDIR)/run_mpitests-allgatherv4.Po
-rm -f coll/$(DEPDIR)/run_mpitests-allred.Po
-rm -f coll/$(DEPDIR)/run_mpitests-allred2.Po
-rm -f coll/$(DEPDIR)/run_mpitests-allred3.Po
-rm -f coll/$(DEPDIR)/run_mpitests-allred5.Po
-rm -f coll/$(DEPDIR)/run_mpitests-allred6.Po
-rm -f coll/$(DEPDIR)/run_mpitests-allredmany.Po
-rm -f coll/$(DEPDIR)/run_mpitests-alltoall1.Po
-rm -f coll/$(DEPDIR)/run_mpitests-alltoallv.Po
-rm -f coll/$(DEPDIR)/run_mpitests-alltoallv0.Po
-rm -f coll/$(DEPDIR)/run_mpitests-alltoallw1.Po
-rm -f coll/$(DEPDIR)/run_mpitests-alltoallw2.Po
-rm -f coll/$(DEPDIR)/run_mpitests-alltoallw_zeros.Po
-rm -f coll/$(DEPDIR)/run_mpitests-bcasttest.Po
-rm -f coll/$(DEPDIR)/run_mpitests-bcastzerotype.Po
-rm -f coll/$(DEPDIR)/run_mpitests-gather.Po
-rm -f coll/$(DEPDIR)/run_mpitests-gather2.Po
-rm -f coll/$(DEPDIR)/run_mpitests-gatherv.Po
-rm -f coll/$(DEPDIR)/run_mpitests-neighb_allgather.Po
-rm -f coll/$(DEPDIR)/run_mpitests-neighb_allgatherv.Po
-rm -f coll/$(DEPDIR)/run_mpitests-neighb_alltoall.Po
-rm -f coll/$(DEPDIR)/run_mpitests-neighb_alltoallv.Po
-rm -f coll/$(DEPDIR)/run_mpitests-neighb_alltoallw.Po
-rm -f coll/$(DEPDIR)/run_mpitests-op_coll.Po
-rm -f coll/$(DEPDIR)/run_mpitests-p_allgather.Po
-rm -f coll/$(DEPDIR)/run_mpitests-p_allgatherv.Po
-rm -f coll/$(DEPDIR)/run_mpitests-p_allred.Po
-rm -f coll/$(DEPDIR)/run_mpitests-p_alltoall.Po
-rm -f coll/$(DEPDIR)/run_mpitests-p_alltoallv.Po
-rm -f coll/$(DEPDIR)/run_mpitests-p_alltoallw.Po
-rm -f coll/$(DEPDIR)/run_mpitests-p_bcast.Po
-rm -f coll/$(DEPDIR)/run_mpitests-p_bcast2.Po
-rm -f coll/$(DEPDIR)/run_mpitests-p_gather.Po
-rm -f coll/$(DEPDIR)/run_mpitests-p_gatherv.Po
-rm -f coll/$(DEPDIR)/run_mpitests-p_neighb_allgather.Po
-rm -f coll/$(DEPDIR)/run_mpitests-p_neighb_allgatherv.Po
-rm -f coll/$(DEPDIR)/run_mpitests-p_neighb_alltoall.Po
-rm -f coll/$(DEPDIR)/run_mpitests-p_neighb_alltoallv.Po
-rm -f coll/$(DEPDIR)/run_mpitests-p_neighb_alltoallw.Po
-rm -f coll/$(DEPDIR)/run_mpitests-p_red.Po
-rm -f coll/$(DEPDIR)/run_mpitests-p_red_scat_block.Po
-rm -f coll/$(DEPDIR)/run_mpitests-p_redscat.Po
-rm -f coll/$(DEPDIR)/run_mpitests-p_scan.Po
-rm -f coll/$(DEPDIR)/run_mpitests-p_scatter.Po
-rm -f coll/$(DEPDIR)/run_mpitests-p_scatterv.Po
-rm -f coll/$(DEPDIR)/run_mpitests-red3.Po
-rm -f coll/$(DEPDIR)/run_mpitests-red4.Po
-rm -f coll/$(DEPDIR)/run_mpitests-red_scat_block.Po
-rm -f coll/$(DEPDIR)/run_mpitests-red_scat_block2.Po
-rm -f coll/$(DEPDIR)/run_mpitests-redscat.Po
-rm -f coll/$(DEPDIR)/run_mpitests-redscat2.Po
-rm -f coll/$(DEPDIR)/run_mpitests-redscat3.Po
-rm -f coll/$(DEPDIR)/run_mpitests-redscatblk3.Po
-rm -f coll/$(DEPDIR)/run_mpitests-reduce.Po
-rm -f coll/$(DEPDIR)/run_mpitests-scantst.Po
-rm -f coll/$(DEPDIR)/run_mpitests-scatter2.Po
-rm -f coll/$(DEPDIR)/run_mpitests-scatter3.Po
-rm -f coll/$(DEPDIR)/run_mpitests-scattern.Po
-rm -f coll/$(DEPDIR)/run_mpitests-scatterv.Po
-rm -f util/$(DEPDIR)/run_mpitests-run_mpitests.Po
-rm -f Makefile
maintainer-clean-am: distclean-am maintainer-clean-generic
mostlyclean: mostlyclean-recursive
mostlyclean-am: mostlyclean-compile mostlyclean-generic \
mostlyclean-libtool
pdf: pdf-recursive
pdf-am:
ps: ps-recursive
ps-am:
uninstall-am:
.MAKE: $(am__recursive_targets) install-am install-strip
.PHONY: $(am__recursive_targets) CTAGS GTAGS TAGS all all-am \
am--depfiles am--refresh check check-am clean clean-cscope \
clean-generic clean-libtool clean-noinstPROGRAMS cscope \
cscopelist-am ctags ctags-am distclean distclean-compile \
distclean-generic distclean-hdr distclean-libtool \
distclean-tags 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-pdf install-pdf-am install-ps install-ps-am \
install-strip installcheck installcheck-am installdirs \
installdirs-am maintainer-clean maintainer-clean-generic \
mostlyclean mostlyclean-compile mostlyclean-generic \
mostlyclean-libtool pdf pdf-am ps ps-am tags tags-am uninstall \
uninstall-am
.PRECIOUS: Makefile
$(top_builddir)/util/librun_mpitests.la: $(top_srcdir)/util/run_mpitests.c
(cd $(top_builddir)/util && $(MAKE) librun_mpitests.la)
$(top_builddir)/run_mpitests.stamp: $(top_srcdir)/util/run_mpitests.c
(cd $(top_builddir) && $(MAKE) run_mpitests && touch run_mpitests.stamp)
$(top_builddir)/dtpools/src/libdtpools.la:
(cd $(top_builddir)/dtpools && $(MAKE))
TESTDIRS ?= @default_testdirs@
TESTLIST ?= @default_testlist@
SUMMARY_BASENAME ?= summary
testing: $(top_builddir)/run_mpitests.stamp
$(top_srcdir)/runtests -srcdir=$(srcdir) -tests=$(TESTLIST) -testdirs=$(TESTDIRS) \
-mpiexec="${MPIEXEC}" $(RUNTESTS_OPTS) -xmlfile=$(SUMMARY_BASENAME).xml \
-tapfile=$(SUMMARY_BASENAME).tap -junitfile=$(SUMMARY_BASENAME).junit.xml
$(top_builddir)/util/libmtest_single.la:
(cd $(top_builddir)/util && $(MAKE) libmtest_single.la)
# Need to patch some things up:
# Make sure to disable rebuilding the autotools related files - the
# receiver of this distribution may not have the necessary tools and
# should not need them. Finally, the distributed configure must disable
# maintainer targets by default - otherwise, the unsuspecting user will
# see automake et al attempt to rebuild the autotools, which is likely to
# fail unless the user has the correct versions of all of the tools
dist-hook:
cd $(distdir) && \
sed -e 's/AM_MAINTAINER_MODE.*/AM_MAINTAINER_MODE([disable])/' \
configure.ac > conftmp.ac && mv conftmp.ac configure.ac
cd $(distdir) && $(AUTOMAKE) --add-missing
cd $(distdir) && $(AUTOMAKE) --foreign
cd $(distdir) && $(ACLOCAL) -Iconfdb
cd $(distdir) && $(AUTOCONF) -Iconfdb
cd $(distdir) && $(AUTOHEADER) -Iconfdb
# 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:
|