summaryrefslogtreecommitdiff
path: root/libgupc/Makefile.in
blob: d5625a47c14c6bc010b30be39055c713d1f61c27 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
1965
1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
1976
1977
1978
1979
1980
1981
1982
1983
1984
1985
1986
1987
1988
1989
1990
1991
1992
1993
1994
1995
1996
1997
1998
1999
2000
2001
2002
2003
2004
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
2027
2028
2029
2030
2031
2032
2033
2034
2035
2036
2037
2038
2039
2040
2041
2042
2043
2044
2045
2046
2047
2048
2049
2050
2051
2052
2053
2054
2055
2056
2057
2058
2059
2060
2061
2062
2063
2064
2065
2066
2067
2068
2069
2070
2071
2072
2073
2074
2075
2076
2077
2078
2079
2080
2081
2082
2083
2084
2085
2086
2087
2088
2089
2090
2091
2092
2093
2094
2095
2096
2097
2098
2099
2100
2101
2102
2103
2104
2105
2106
2107
2108
2109
2110
2111
2112
2113
2114
2115
2116
2117
2118
2119
2120
2121
2122
2123
2124
2125
2126
2127
2128
2129
2130
2131
2132
2133
2134
2135
2136
2137
2138
2139
2140
2141
2142
2143
2144
2145
2146
2147
2148
2149
2150
2151
2152
2153
2154
2155
2156
2157
2158
2159
2160
2161
2162
2163
2164
2165
2166
2167
2168
2169
2170
2171
2172
2173
2174
2175
2176
2177
2178
2179
2180
2181
2182
2183
2184
2185
2186
2187
2188
2189
2190
2191
2192
2193
2194
2195
2196
2197
2198
2199
2200
2201
2202
2203
2204
2205
2206
2207
2208
2209
2210
2211
2212
2213
2214
2215
2216
2217
2218
2219
2220
2221
2222
2223
2224
2225
2226
2227
2228
2229
2230
2231
2232
2233
2234
2235
2236
2237
2238
2239
2240
2241
2242
2243
2244
2245
2246
2247
2248
2249
2250
2251
2252
2253
2254
2255
2256
2257
2258
2259
2260
2261
2262
2263
2264
2265
2266
2267
2268
2269
2270
2271
2272
2273
2274
2275
2276
2277
2278
2279
2280
2281
2282
2283
2284
2285
2286
2287
2288
2289
2290
2291
2292
2293
2294
2295
2296
2297
2298
2299
2300
2301
2302
2303
2304
2305
2306
2307
2308
2309
2310
2311
2312
2313
2314
2315
2316
2317
2318
2319
2320
2321
2322
2323
2324
2325
2326
2327
2328
2329
2330
2331
2332
2333
2334
2335
2336
2337
2338
2339
2340
2341
2342
2343
2344
2345
2346
2347
2348
2349
2350
2351
2352
2353
2354
2355
2356
2357
2358
2359
2360
2361
2362
2363
2364
2365
2366
2367
2368
2369
2370
2371
2372
2373
2374
2375
2376
2377
2378
2379
2380
2381
2382
2383
2384
2385
2386
2387
2388
2389
2390
2391
2392
2393
2394
2395
2396
2397
2398
2399
2400
2401
2402
2403
2404
2405
2406
2407
2408
2409
2410
2411
2412
2413
2414
2415
2416
2417
2418
2419
2420
2421
2422
2423
2424
2425
2426
2427
2428
2429
2430
2431
2432
2433
2434
2435
2436
2437
2438
2439
2440
2441
2442
2443
2444
2445
2446
2447
2448
2449
2450
2451
2452
2453
2454
2455
2456
2457
2458
2459
2460
2461
2462
2463
2464
2465
2466
2467
2468
2469
2470
2471
2472
2473
2474
2475
2476
2477
2478
2479
2480
2481
2482
2483
2484
2485
2486
2487
2488
2489
2490
2491
2492
2493
2494
2495
2496
2497
2498
2499
2500
2501
2502
2503
2504
2505
2506
2507
2508
2509
2510
2511
2512
2513
2514
2515
2516
2517
2518
2519
2520
2521
2522
2523
2524
2525
2526
2527
2528
2529
2530
2531
2532
2533
2534
2535
2536
2537
2538
2539
2540
2541
2542
2543
2544
2545
2546
2547
2548
2549
2550
2551
2552
2553
2554
2555
2556
2557
2558
2559
2560
2561
2562
2563
2564
2565
2566
2567
2568
2569
2570
2571
2572
2573
2574
2575
2576
2577
2578
2579
2580
2581
2582
2583
2584
2585
2586
2587
2588
2589
2590
2591
2592
2593
2594
2595
2596
2597
2598
2599
2600
2601
2602
2603
2604
2605
2606
2607
2608
2609
2610
2611
2612
2613
2614
2615
2616
2617
2618
2619
2620
2621
2622
2623
2624
2625
2626
2627
2628
2629
2630
2631
2632
2633
2634
2635
2636
2637
2638
2639
2640
2641
2642
2643
2644
2645
2646
2647
2648
2649
2650
2651
2652
2653
2654
2655
2656
2657
2658
2659
2660
2661
2662
2663
2664
2665
2666
2667
2668
2669
2670
2671
2672
2673
2674
2675
2676
2677
2678
2679
2680
2681
2682
2683
2684
2685
2686
2687
2688
2689
2690
2691
2692
2693
2694
2695
2696
2697
2698
2699
2700
2701
2702
2703
2704
2705
2706
2707
2708
2709
2710
2711
2712
2713
2714
2715
2716
2717
2718
2719
2720
2721
2722
2723
2724
2725
2726
2727
2728
2729
2730
2731
2732
2733
2734
2735
2736
2737
2738
2739
2740
2741
2742
2743
2744
2745
2746
2747
2748
2749
2750
2751
2752
2753
2754
2755
2756
2757
2758
2759
2760
2761
2762
2763
2764
2765
2766
2767
2768
2769
2770
2771
2772
2773
2774
2775
2776
2777
2778
2779
2780
2781
2782
2783
2784
2785
2786
2787
2788
2789
2790
2791
2792
2793
2794
2795
2796
2797
2798
2799
2800
2801
2802
2803
2804
2805
2806
2807
2808
2809
2810
2811
2812
2813
2814
2815
2816
2817
2818
2819
2820
2821
2822
2823
2824
2825
2826
2827
2828
2829
2830
2831
2832
2833
2834
2835
2836
2837
2838
2839
2840
2841
2842
2843
2844
2845
2846
2847
2848
2849
2850
2851
2852
2853
2854
2855
2856
2857
2858
2859
2860
2861
2862
2863
2864
2865
2866
2867
2868
2869
2870
2871
2872
2873
2874
2875
2876
2877
2878
2879
2880
2881
2882
2883
2884
2885
2886
2887
2888
2889
2890
2891
2892
2893
2894
2895
2896
2897
2898
2899
2900
2901
2902
2903
2904
2905
2906
2907
2908
2909
2910
2911
2912
2913
2914
2915
2916
2917
2918
2919
2920
2921
2922
2923
2924
2925
2926
2927
2928
2929
2930
2931
2932
2933
2934
2935
2936
2937
2938
2939
2940
2941
2942
2943
2944
2945
2946
2947
2948
2949
2950
2951
2952
2953
2954
2955
2956
2957
2958
2959
2960
2961
2962
2963
2964
2965
2966
2967
2968
2969
2970
2971
2972
2973
2974
2975
2976
2977
2978
2979
2980
2981
2982
2983
2984
2985
2986
2987
2988
2989
2990
2991
2992
2993
2994
2995
2996
2997
2998
2999
3000
3001
3002
3003
3004
3005
3006
3007
3008
3009
3010
3011
3012
3013
3014
3015
3016
3017
3018
3019
3020
3021
3022
3023
3024
3025
3026
3027
3028
3029
3030
3031
3032
3033
3034
3035
3036
3037
3038
3039
3040
3041
3042
3043
3044
3045
3046
3047
3048
3049
3050
3051
3052
3053
3054
3055
3056
3057
3058
3059
3060
3061
3062
# Makefile.in generated by automake 1.11.6 from Makefile.am.
# @configure_input@

# Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002,
# 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010, 2011 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@

# Process this file with automake to produce Makefile.in



VPATH = @srcdir@
am__make_dryrun = \
  { \
    am__dry=no; \
    case $$MAKEFLAGS in \
      *\\[\ \	]*) \
        echo 'am--echo: ; @echo "AM"  OK' | $(MAKE) -f - 2>/dev/null \
          | grep '^AM OK$$' >/dev/null || am__dry=yes;; \
      *) \
        for am__flg in $$MAKEFLAGS; do \
          case $$am__flg in \
            *=*|--*) ;; \
            *n*) am__dry=yes; break;; \
          esac; \
        done;; \
    esac; \
    test $$am__dry = yes; \
  }
pkgdatadir = $(datadir)/@PACKAGE@
pkgincludedir = $(includedir)/@PACKAGE@
pkglibdir = $(libdir)/@PACKAGE@
pkglibexecdir = $(libexecdir)/@PACKAGE@
am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd
install_sh_DATA = $(install_sh) -c -m 644
install_sh_PROGRAM = $(install_sh) -c
install_sh_SCRIPT = $(install_sh) -c
INSTALL_HEADER = $(INSTALL_DATA)
transform = $(program_transform_name)
NORMAL_INSTALL = :
PRE_INSTALL = :
POST_INSTALL = :
NORMAL_UNINSTALL = :
PRE_UNINSTALL = :
POST_UNINSTALL = :
build_triplet = @build@
host_triplet = @host@
target_triplet = @target@
@LIBGUPC_SMP_RUNTIME_TRUE@am__append_1 = -W -Wall -Wwrite-strings -Wstrict-prototypes -Werror
@LIBGUPC_PORTALS4_RUNTIME_TRUE@am__append_2 = -W -Wall -Wwrite-strings -Wstrict-prototypes -Werror
@LIBGUPC_BACKTRACE_TRUE@@LIBGUPC_PORTALS4_RUNTIME_TRUE@am__append_3 = portals4/gupcr_backtrace.h portals4/gupcr_backtrace.c
@LIBGUPC_BACKTRACE_TRUE@@LIBGUPC_PORTALS4_RUNTIME_FALSE@am__append_4 = smp/upc_backtrace.h smp/upc_backtrace.c
@LIBGUPC_SMP_RUNTIME_TRUE@am__append_5 = smp/gcc-upc-lib.in
@LIBGUPC_SMP_RUNTIME_TRUE@@MAINTAINER_MODE_TRUE@am__append_6 = $(UPC_ATOMIC_DEF) $(UPC_ATOMIC_TPL)
@LIBGUPC_SMP_RUNTIME_TRUE@am__append_7 = smp/upc_access.c smp/upc_accessg.c smp/upc_access.h \
@LIBGUPC_SMP_RUNTIME_TRUE@	smp/upc_addr.c smp/upc_affinity.h $(UPC_AFFINITY_SUP) \
@LIBGUPC_SMP_RUNTIME_TRUE@	smp/upc_allocg.upc smp/upc_alloc.upc \
@LIBGUPC_SMP_RUNTIME_TRUE@	smp/upc_atomic.upc \
@LIBGUPC_SMP_RUNTIME_TRUE@	$(UPC_BACKTRACE_SUP) \
@LIBGUPC_SMP_RUNTIME_TRUE@	smp/upc_barrier.upc smp/upc_castable.upc smp/upc_config.h \
@LIBGUPC_SMP_RUNTIME_TRUE@	smp/upc_debug.h smp/upc_debug.c \
@LIBGUPC_SMP_RUNTIME_TRUE@	smp/upc_defs.h smp/upc_gasp.c $(UPC_GUM_SUP) \
@LIBGUPC_SMP_RUNTIME_TRUE@	smp/upc_libat_lock.c smp/upc_libat_lock.h \
@LIBGUPC_SMP_RUNTIME_TRUE@	smp/upc_libg.c smp/upc_lib.h \
@LIBGUPC_SMP_RUNTIME_TRUE@	smp/upc_lock.upc smp/upc_lock.h \
@LIBGUPC_SMP_RUNTIME_TRUE@	smp/upc_lock_sup.h smp/upc_lock_sup.c \
@LIBGUPC_SMP_RUNTIME_TRUE@	smp/upc_main.c smp/upc_mem.c smp/upc_mem.h \
@LIBGUPC_SMP_RUNTIME_TRUE@	smp/upc_nb.upc smp/upc_numa.h $(UPC_NUMA_SUP) \
@LIBGUPC_SMP_RUNTIME_TRUE@	smp/upc_pgm_info.c smp/upc_pts.h smp/upc_pupc.c \
@LIBGUPC_SMP_RUNTIME_TRUE@	smp/upc_pupc.h smp/upc_sup.h smp/upc_sync.h smp/upc_sysdep.c \
@LIBGUPC_SMP_RUNTIME_TRUE@	smp/upc_sysdep.h smp/upc_tick.c smp/upc_vm.c

@LIBGUPC_PORTALS4_RUNTIME_TRUE@am__append_8 = portals4/gcc-upc-lib.in \
@LIBGUPC_PORTALS4_RUNTIME_TRUE@	$(DX_CONFIG) \
@LIBGUPC_PORTALS4_RUNTIME_TRUE@	gen-upc-coll-reduce.pl \
@LIBGUPC_PORTALS4_RUNTIME_TRUE@	upc_coll_prefix_reduce.in \
@LIBGUPC_PORTALS4_RUNTIME_TRUE@	gupcr_coll_reduce.in
@LIBGUPC_PORTALS4_RUNTIME_TRUE@am__append_9 = portals4/gupcr_access.c portals4/gupcr_access.h \
@LIBGUPC_PORTALS4_RUNTIME_TRUE@	portals4/gupcr_addr.c \
@LIBGUPC_PORTALS4_RUNTIME_TRUE@	portals4/gupcr_alloc.upc portals4/gupcr_alloc.h \
@LIBGUPC_PORTALS4_RUNTIME_TRUE@	portals4/gupcr_atomic.upc \
@LIBGUPC_PORTALS4_RUNTIME_TRUE@	portals4/gupcr_atomic_sup.h portals4/gupcr_atomic_sup.c \
@LIBGUPC_PORTALS4_RUNTIME_TRUE@	$(UPC_BACKTRACE_SUP) \
@LIBGUPC_PORTALS4_RUNTIME_TRUE@	portals4/gupcr_barrier.h portals4/gupcr_barrier.c \
@LIBGUPC_PORTALS4_RUNTIME_TRUE@	portals4/gupcr_broadcast.h portals4/gupcr_broadcast.c \
@LIBGUPC_PORTALS4_RUNTIME_TRUE@	portals4/gupcr_castable.upc \
@LIBGUPC_PORTALS4_RUNTIME_TRUE@	portals4/gupcr_clock.c \
@LIBGUPC_PORTALS4_RUNTIME_TRUE@	portals4/gupcr_coll_sup.h portals4/gupcr_coll_sup.c \
@LIBGUPC_PORTALS4_RUNTIME_TRUE@	portals4/gupcr_config.h portals4/gupcr_defs.h \
@LIBGUPC_PORTALS4_RUNTIME_TRUE@	portals4/gupcr_env.c portals4/gupcr_gmem.h portals4/gupcr_gmem.c \
@LIBGUPC_PORTALS4_RUNTIME_TRUE@	portals4/gupcr_lib.h \
@LIBGUPC_PORTALS4_RUNTIME_TRUE@	portals4/gupcr_lock.upc portals4/gupcr_lock.h \
@LIBGUPC_PORTALS4_RUNTIME_TRUE@	portals4/gupcr_lock_sup.c portals4/gupcr_lock_sup.h \
@LIBGUPC_PORTALS4_RUNTIME_TRUE@	portals4/gupcr_main.c \
@LIBGUPC_PORTALS4_RUNTIME_TRUE@	portals4/gupcr_nb.upc \
@LIBGUPC_PORTALS4_RUNTIME_TRUE@	portals4/gupcr_nb_sup.c portals4/gupcr_nb_sup.h \
@LIBGUPC_PORTALS4_RUNTIME_TRUE@	portals4/gupcr_node.c portals4/gupcr_node.h \
@LIBGUPC_PORTALS4_RUNTIME_TRUE@	portals4/gupcr_mem.c portals4/gupcr_portals.c \
@LIBGUPC_PORTALS4_RUNTIME_TRUE@	portals4/gupcr_pgm_info.c portals4/gupcr_pts.h \
@LIBGUPC_PORTALS4_RUNTIME_TRUE@	portals4/gupcr_runtime.h portals4/gupcr_runtime.c \
@LIBGUPC_PORTALS4_RUNTIME_TRUE@	portals4/gupcr_shutdown.h portals4/gupcr_shutdown.c \
@LIBGUPC_PORTALS4_RUNTIME_TRUE@	portals4/gupcr_sup.h portals4/gupcr_sync.h \
@LIBGUPC_PORTALS4_RUNTIME_TRUE@	portals4/gupcr_tick.c \
@LIBGUPC_PORTALS4_RUNTIME_TRUE@	portals4/gupcr_utils.h portals4/gupcr_utils.c

@LIBGUPC_NODE_LOCAL_MEM_POSIX_TRUE@@LIBGUPC_PORTALS4_RUNTIME_TRUE@am__append_10 = portals4/gupcr_node_mem_posix.c
@LIBGUPC_NODE_LOCAL_MEM_MMAP_TRUE@@LIBGUPC_PORTALS4_RUNTIME_TRUE@am__append_11 = portals4/gupcr_node_mem_mmap.c
DIST_COMMON = $(am__configure_deps) $(libsubinclude_HEADERS) \
	$(srcdir)/../config.guess $(srcdir)/../config.sub \
	$(srcdir)/../depcomp $(srcdir)/../install-sh \
	$(srcdir)/../ltmain.sh $(srcdir)/../missing \
	$(srcdir)/../mkinstalldirs $(srcdir)/Makefile.am \
	$(srcdir)/Makefile.in $(srcdir)/config.h.in \
	$(srcdir)/doxygen-include.am $(srcdir)/doxygen.sty.in \
	$(srcdir)/header.tex.in $(srcdir)/libgupc.spec.in \
	$(srcdir)/upc-crtbegin.spec.in $(srcdir)/upc-crtend.spec.in \
	$(top_srcdir)/configure $(top_srcdir)/portals4/doxygen.cfg.in \
	ChangeLog
@LIBGUPC_PORTALS4_RUNTIME_TRUE@am__append_12 = $(DX_CLEANFILES)
@LIBGUPC_PORTALS4_RUNTIME_TRUE@am__append_13 = portals4/upc_coll.h \
@LIBGUPC_PORTALS4_RUNTIME_TRUE@	portals4/gupcr_coll_broadcast.upc \
@LIBGUPC_PORTALS4_RUNTIME_TRUE@	portals4/gupcr_coll_init.upc \
@LIBGUPC_PORTALS4_RUNTIME_TRUE@	$(UPC_COLL_REDUCE_UPC) \
@LIBGUPC_PORTALS4_RUNTIME_TRUE@	$(UPC_COLLECTIVES_SRC)
@LIBGUPC_GENERIC_COLLECTIVES_TRUE@am__append_14 = $(UPC_COLLECTIVES_SRC)
@LIBGUPC_GENERIC_COLLECTIVES_TRUE@am__append_15 = gen-upc-coll-reduce.pl \
@LIBGUPC_GENERIC_COLLECTIVES_TRUE@             upc_coll_prefix_reduce.in \
@LIBGUPC_GENERIC_COLLECTIVES_TRUE@             upc_coll_reduce.in

@LIBGUPC_LINK_SCRIPT_TRUE@am__append_16 = $(UPC_LINK_SCRIPT)
subdir = .
ACLOCAL_M4 = $(top_srcdir)/aclocal.m4
am__aclocal_m4_deps = $(top_srcdir)/../config/acx.m4 \
	$(top_srcdir)/../config/depstand.m4 \
	$(top_srcdir)/../config/enable.m4 \
	$(top_srcdir)/../config/futex.m4 \
	$(top_srcdir)/../config/lead-dot.m4 \
	$(top_srcdir)/../config/multi.m4 \
	$(top_srcdir)/../config/override.m4 \
	$(top_srcdir)/../config/stdint.m4 \
	$(top_srcdir)/../config/tls.m4 $(top_srcdir)/../ltoptions.m4 \
	$(top_srcdir)/../ltsugar.m4 $(top_srcdir)/../ltversion.m4 \
	$(top_srcdir)/../lt~obsolete.m4 \
	$(top_srcdir)/ax_prog_doxygen.m4 $(top_srcdir)/acinclude.m4 \
	$(top_srcdir)/../libtool.m4 $(top_srcdir)/configure.ac
am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \
	$(ACLOCAL_M4)
am__CONFIG_DISTCLEAN_FILES = config.status config.cache config.log \
 configure.lineno config.status.lineno
mkinstalldirs = $(SHELL) $(top_srcdir)/../mkinstalldirs
CONFIG_HEADER = config.h
CONFIG_CLEAN_FILES = header.tex doxygen.sty doxygen.cfg \
	upc-crtbegin.spec libgupc.spec upc-crtend.spec
CONFIG_CLEAN_VPATH_FILES =
am__vpath_adj_setup = srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`;
am__vpath_adj = case $$p in \
    $(srcdir)/*) f=`echo "$$p" | sed "s|^$$srcdirstrip/||"`;; \
    *) f=$$p;; \
  esac;
am__strip_dir = f=`echo $$p | sed -e 's|^.*/||'`;
am__install_max = 40
am__nobase_strip_setup = \
  srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*|]/\\\\&/g'`
am__nobase_strip = \
  for p in $$list; do echo "$$p"; done | sed -e "s|$$srcdirstrip/||"
am__nobase_list = $(am__nobase_strip_setup); \
  for p in $$list; do echo "$$p $$p"; done | \
  sed "s| $$srcdirstrip/| |;"' / .*\//!s/ .*/ ./; s,\( .*\)/[^/]*$$,\1,' | \
  $(AWK) 'BEGIN { files["."] = "" } { files[$$2] = files[$$2] " " $$1; \
    if (++n[$$2] == $(am__install_max)) \
      { print $$2, files[$$2]; n[$$2] = 0; files[$$2] = "" } } \
    END { for (dir in files) print dir, files[dir] }'
am__base_list = \
  sed '$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;s/\n/ /g' | \
  sed '$$!N;$$!N;$$!N;$$!N;s/\n/ /g'
am__uninstall_files_from_dir = { \
  test -z "$$files" \
    || { test ! -d "$$dir" && test ! -f "$$dir" && test ! -r "$$dir"; } \
    || { echo " ( cd '$$dir' && rm -f" $$files ")"; \
         $(am__cd) "$$dir" && rm -f $$files; }; \
  }
am__installdirs = "$(DESTDIR)$(toolexeclibdir)" "$(DESTDIR)$(infodir)" \
	"$(DESTDIR)$(toolexeclibdir)" "$(DESTDIR)$(libsubincludedir)" \
	"$(DESTDIR)$(libsubincludedir)" "$(DESTDIR)$(toolexeclibdir)"
LTLIBRARIES = $(toolexeclib_LTLIBRARIES)
am__libgupc_la_SOURCES_DIST = smp/upc_access.c smp/upc_accessg.c \
	smp/upc_access.h smp/upc_addr.c smp/upc_affinity.h \
	smp/upc_affinity_stub.c smp/upc_affinity.c smp/upc_allocg.upc \
	smp/upc_alloc.upc smp/upc_atomic.upc \
	portals4/gupcr_backtrace.h portals4/gupcr_backtrace.c \
	smp/upc_backtrace.h smp/upc_backtrace.c smp/upc_barrier.upc \
	smp/upc_castable.upc smp/upc_config.h smp/upc_debug.h \
	smp/upc_debug.c smp/upc_defs.h smp/upc_gasp.c smp/upc_gum.c \
	smp/upc_libat_lock.c smp/upc_libat_lock.h smp/upc_libg.c \
	smp/upc_lib.h smp/upc_lock.upc smp/upc_lock.h \
	smp/upc_lock_sup.h smp/upc_lock_sup.c smp/upc_main.c \
	smp/upc_mem.c smp/upc_mem.h smp/upc_nb.upc smp/upc_numa.h \
	smp/upc_numa_stub.c smp/upc_numa.c smp/upc_pgm_info.c \
	smp/upc_pts.h smp/upc_pupc.c smp/upc_pupc.h smp/upc_sup.h \
	smp/upc_sync.h smp/upc_sysdep.c smp/upc_sysdep.h \
	smp/upc_tick.c smp/upc_vm.c portals4/gupcr_access.c \
	portals4/gupcr_access.h portals4/gupcr_addr.c \
	portals4/gupcr_alloc.upc portals4/gupcr_alloc.h \
	portals4/gupcr_atomic.upc portals4/gupcr_atomic_sup.h \
	portals4/gupcr_atomic_sup.c portals4/gupcr_barrier.h \
	portals4/gupcr_barrier.c portals4/gupcr_broadcast.h \
	portals4/gupcr_broadcast.c portals4/gupcr_castable.upc \
	portals4/gupcr_clock.c portals4/gupcr_coll_sup.h \
	portals4/gupcr_coll_sup.c portals4/gupcr_config.h \
	portals4/gupcr_defs.h portals4/gupcr_env.c \
	portals4/gupcr_gmem.h portals4/gupcr_gmem.c \
	portals4/gupcr_lib.h portals4/gupcr_lock.upc \
	portals4/gupcr_lock.h portals4/gupcr_lock_sup.c \
	portals4/gupcr_lock_sup.h portals4/gupcr_main.c \
	portals4/gupcr_nb.upc portals4/gupcr_nb_sup.c \
	portals4/gupcr_nb_sup.h portals4/gupcr_node.c \
	portals4/gupcr_node.h portals4/gupcr_mem.c \
	portals4/gupcr_portals.c portals4/gupcr_pgm_info.c \
	portals4/gupcr_pts.h portals4/gupcr_runtime.h \
	portals4/gupcr_runtime.c portals4/gupcr_shutdown.h \
	portals4/gupcr_shutdown.c portals4/gupcr_sup.h \
	portals4/gupcr_sync.h portals4/gupcr_tick.c \
	portals4/gupcr_utils.h portals4/gupcr_utils.c \
	portals4/gupcr_node_mem_posix.c portals4/gupcr_node_mem_mmap.c \
	portals4/upc_coll.h portals4/gupcr_coll_broadcast.upc \
	portals4/gupcr_coll_init.upc \
	$(LIBGUPC_COLL_SRCDIR)/upc_coll_reduce.upc \
	$(LIBGUPC_PORTALS4_SRCDIR)/gupcr_coll_reduce.upc \
	collectives/upc_coll_broadcast.upc \
	collectives/upc_coll_err.upc collectives/upc_coll_exchange.upc \
	collectives/upc_coll_gather_all.upc \
	collectives/upc_coll_gather.upc collectives/upc_coll.h \
	collectives/upc_coll_init.upc collectives/upc_coll_permute.upc \
	$(LIBGUPC_COLL_SRCDIR)/upc_coll_prefix_reduce.upc \
	collectives/upc_coll_scatter.upc collectives/upc_coll_sort.upc
@LIBGUPC_AFFINITY_FALSE@@LIBGUPC_SMP_RUNTIME_TRUE@am__objects_1 = upc_affinity_stub.lo
@LIBGUPC_AFFINITY_TRUE@@LIBGUPC_SMP_RUNTIME_TRUE@am__objects_1 = upc_affinity.lo
@LIBGUPC_BACKTRACE_TRUE@@LIBGUPC_PORTALS4_RUNTIME_TRUE@am__objects_2 = gupcr_backtrace.lo
@LIBGUPC_BACKTRACE_TRUE@@LIBGUPC_PORTALS4_RUNTIME_FALSE@am__objects_3 = upc_backtrace.lo
am__objects_4 = $(am__objects_2) $(am__objects_3)
@LIBGUPC_GUM_TRUE@@LIBGUPC_SMP_RUNTIME_TRUE@am__objects_5 =  \
@LIBGUPC_GUM_TRUE@@LIBGUPC_SMP_RUNTIME_TRUE@	upc_gum.lo
@LIBGUPC_NUMA_FALSE@@LIBGUPC_SMP_RUNTIME_TRUE@am__objects_6 = upc_numa_stub.lo
@LIBGUPC_NUMA_TRUE@@LIBGUPC_SMP_RUNTIME_TRUE@am__objects_6 =  \
@LIBGUPC_NUMA_TRUE@@LIBGUPC_SMP_RUNTIME_TRUE@	upc_numa.lo
@LIBGUPC_SMP_RUNTIME_TRUE@am__objects_7 = upc_access.lo upc_accessg.lo \
@LIBGUPC_SMP_RUNTIME_TRUE@	upc_addr.lo $(am__objects_1) \
@LIBGUPC_SMP_RUNTIME_TRUE@	upc_allocg.lo upc_alloc.lo \
@LIBGUPC_SMP_RUNTIME_TRUE@	upc_atomic.lo $(am__objects_4) \
@LIBGUPC_SMP_RUNTIME_TRUE@	upc_barrier.lo upc_castable.lo \
@LIBGUPC_SMP_RUNTIME_TRUE@	upc_debug.lo upc_gasp.lo \
@LIBGUPC_SMP_RUNTIME_TRUE@	$(am__objects_5) upc_libat_lock.lo \
@LIBGUPC_SMP_RUNTIME_TRUE@	upc_libg.lo upc_lock.lo \
@LIBGUPC_SMP_RUNTIME_TRUE@	upc_lock_sup.lo upc_main.lo \
@LIBGUPC_SMP_RUNTIME_TRUE@	upc_mem.lo upc_nb.lo \
@LIBGUPC_SMP_RUNTIME_TRUE@	$(am__objects_6) upc_pgm_info.lo \
@LIBGUPC_SMP_RUNTIME_TRUE@	upc_pupc.lo upc_sysdep.lo \
@LIBGUPC_SMP_RUNTIME_TRUE@	upc_tick.lo upc_vm.lo
@LIBGUPC_PORTALS4_RUNTIME_TRUE@am__objects_8 = gupcr_access.lo \
@LIBGUPC_PORTALS4_RUNTIME_TRUE@	gupcr_addr.lo gupcr_alloc.lo \
@LIBGUPC_PORTALS4_RUNTIME_TRUE@	gupcr_atomic.lo \
@LIBGUPC_PORTALS4_RUNTIME_TRUE@	gupcr_atomic_sup.lo \
@LIBGUPC_PORTALS4_RUNTIME_TRUE@	$(am__objects_4) \
@LIBGUPC_PORTALS4_RUNTIME_TRUE@	gupcr_barrier.lo \
@LIBGUPC_PORTALS4_RUNTIME_TRUE@	gupcr_broadcast.lo \
@LIBGUPC_PORTALS4_RUNTIME_TRUE@	gupcr_castable.lo \
@LIBGUPC_PORTALS4_RUNTIME_TRUE@	gupcr_clock.lo \
@LIBGUPC_PORTALS4_RUNTIME_TRUE@	gupcr_coll_sup.lo gupcr_env.lo \
@LIBGUPC_PORTALS4_RUNTIME_TRUE@	gupcr_gmem.lo gupcr_lock.lo \
@LIBGUPC_PORTALS4_RUNTIME_TRUE@	gupcr_lock_sup.lo gupcr_main.lo \
@LIBGUPC_PORTALS4_RUNTIME_TRUE@	gupcr_nb.lo gupcr_nb_sup.lo \
@LIBGUPC_PORTALS4_RUNTIME_TRUE@	gupcr_node.lo gupcr_mem.lo \
@LIBGUPC_PORTALS4_RUNTIME_TRUE@	gupcr_portals.lo \
@LIBGUPC_PORTALS4_RUNTIME_TRUE@	gupcr_pgm_info.lo \
@LIBGUPC_PORTALS4_RUNTIME_TRUE@	gupcr_runtime.lo \
@LIBGUPC_PORTALS4_RUNTIME_TRUE@	gupcr_shutdown.lo gupcr_tick.lo \
@LIBGUPC_PORTALS4_RUNTIME_TRUE@	gupcr_utils.lo
@LIBGUPC_NODE_LOCAL_MEM_POSIX_TRUE@@LIBGUPC_PORTALS4_RUNTIME_TRUE@am__objects_9 = gupcr_node_mem_posix.lo
@LIBGUPC_NODE_LOCAL_MEM_MMAP_TRUE@@LIBGUPC_PORTALS4_RUNTIME_TRUE@am__objects_10 = gupcr_node_mem_mmap.lo
@LIBGUPC_GENERIC_COLLECTIVES_FALSE@@LIBGUPC_PORTALS4_RUNTIME_TRUE@am__objects_11 = gupcr_coll_reduce.lo
@LIBGUPC_GENERIC_COLLECTIVES_TRUE@am__objects_11 = upc_coll_reduce.lo
@LIBGUPC_GENERIC_COLLECTIVES_FALSE@@LIBGUPC_PORTALS4_RUNTIME_TRUE@am__objects_12 = upc_coll_prefix_reduce.lo
@LIBGUPC_GENERIC_COLLECTIVES_TRUE@am__objects_12 =  \
@LIBGUPC_GENERIC_COLLECTIVES_TRUE@	upc_coll_prefix_reduce.lo
@LIBGUPC_GENERIC_COLLECTIVES_FALSE@@LIBGUPC_PORTALS4_RUNTIME_TRUE@am__objects_13 = upc_coll_err.lo \
@LIBGUPC_GENERIC_COLLECTIVES_FALSE@@LIBGUPC_PORTALS4_RUNTIME_TRUE@	upc_coll_exchange.lo \
@LIBGUPC_GENERIC_COLLECTIVES_FALSE@@LIBGUPC_PORTALS4_RUNTIME_TRUE@	upc_coll_gather_all.lo \
@LIBGUPC_GENERIC_COLLECTIVES_FALSE@@LIBGUPC_PORTALS4_RUNTIME_TRUE@	upc_coll_gather.lo \
@LIBGUPC_GENERIC_COLLECTIVES_FALSE@@LIBGUPC_PORTALS4_RUNTIME_TRUE@	upc_coll_permute.lo \
@LIBGUPC_GENERIC_COLLECTIVES_FALSE@@LIBGUPC_PORTALS4_RUNTIME_TRUE@	$(am__objects_12) \
@LIBGUPC_GENERIC_COLLECTIVES_FALSE@@LIBGUPC_PORTALS4_RUNTIME_TRUE@	upc_coll_scatter.lo \
@LIBGUPC_GENERIC_COLLECTIVES_FALSE@@LIBGUPC_PORTALS4_RUNTIME_TRUE@	upc_coll_sort.lo
@LIBGUPC_GENERIC_COLLECTIVES_TRUE@am__objects_13 =  \
@LIBGUPC_GENERIC_COLLECTIVES_TRUE@	upc_coll_broadcast.lo \
@LIBGUPC_GENERIC_COLLECTIVES_TRUE@	upc_coll_err.lo \
@LIBGUPC_GENERIC_COLLECTIVES_TRUE@	upc_coll_exchange.lo \
@LIBGUPC_GENERIC_COLLECTIVES_TRUE@	upc_coll_gather_all.lo \
@LIBGUPC_GENERIC_COLLECTIVES_TRUE@	upc_coll_gather.lo \
@LIBGUPC_GENERIC_COLLECTIVES_TRUE@	upc_coll_init.lo \
@LIBGUPC_GENERIC_COLLECTIVES_TRUE@	upc_coll_permute.lo \
@LIBGUPC_GENERIC_COLLECTIVES_TRUE@	$(am__objects_12) \
@LIBGUPC_GENERIC_COLLECTIVES_TRUE@	$(am__objects_11) \
@LIBGUPC_GENERIC_COLLECTIVES_TRUE@	upc_coll_scatter.lo \
@LIBGUPC_GENERIC_COLLECTIVES_TRUE@	upc_coll_sort.lo
@LIBGUPC_PORTALS4_RUNTIME_TRUE@am__objects_14 =  \
@LIBGUPC_PORTALS4_RUNTIME_TRUE@	gupcr_coll_broadcast.lo \
@LIBGUPC_PORTALS4_RUNTIME_TRUE@	gupcr_coll_init.lo \
@LIBGUPC_PORTALS4_RUNTIME_TRUE@	$(am__objects_11) \
@LIBGUPC_PORTALS4_RUNTIME_TRUE@	$(am__objects_13)
@LIBGUPC_GENERIC_COLLECTIVES_TRUE@am__objects_15 = $(am__objects_13)
am__objects_16 = $(am__objects_7) $(am__objects_8) $(am__objects_9) \
	$(am__objects_10) $(am__objects_14) $(am__objects_15)
am_libgupc_la_OBJECTS = $(am__objects_16)
libgupc_la_OBJECTS = $(am_libgupc_la_OBJECTS)
@LIBGUPC_AFFINITY_FALSE@@LIBGUPC_SMP_RUNTIME_TRUE@am__objects_17 = libgupc_pt_la-upc_affinity_stub.lo
@LIBGUPC_AFFINITY_TRUE@@LIBGUPC_SMP_RUNTIME_TRUE@am__objects_17 = libgupc_pt_la-upc_affinity.lo
@LIBGUPC_BACKTRACE_TRUE@@LIBGUPC_PORTALS4_RUNTIME_TRUE@am__objects_18 = libgupc_pt_la-gupcr_backtrace.lo
@LIBGUPC_BACKTRACE_TRUE@@LIBGUPC_PORTALS4_RUNTIME_FALSE@am__objects_19 = libgupc_pt_la-upc_backtrace.lo
am__objects_20 = $(am__objects_18) $(am__objects_19)
@LIBGUPC_GUM_TRUE@@LIBGUPC_SMP_RUNTIME_TRUE@am__objects_21 = libgupc_pt_la-upc_gum.lo
@LIBGUPC_NUMA_FALSE@@LIBGUPC_SMP_RUNTIME_TRUE@am__objects_22 = libgupc_pt_la-upc_numa_stub.lo
@LIBGUPC_NUMA_TRUE@@LIBGUPC_SMP_RUNTIME_TRUE@am__objects_22 = libgupc_pt_la-upc_numa.lo
@LIBGUPC_SMP_RUNTIME_TRUE@am__objects_23 =  \
@LIBGUPC_SMP_RUNTIME_TRUE@	libgupc_pt_la-upc_access.lo \
@LIBGUPC_SMP_RUNTIME_TRUE@	libgupc_pt_la-upc_accessg.lo \
@LIBGUPC_SMP_RUNTIME_TRUE@	libgupc_pt_la-upc_addr.lo \
@LIBGUPC_SMP_RUNTIME_TRUE@	$(am__objects_17) \
@LIBGUPC_SMP_RUNTIME_TRUE@	libgupc_pt_la-upc_allocg.lo \
@LIBGUPC_SMP_RUNTIME_TRUE@	libgupc_pt_la-upc_alloc.lo \
@LIBGUPC_SMP_RUNTIME_TRUE@	libgupc_pt_la-upc_atomic.lo \
@LIBGUPC_SMP_RUNTIME_TRUE@	$(am__objects_20) \
@LIBGUPC_SMP_RUNTIME_TRUE@	libgupc_pt_la-upc_barrier.lo \
@LIBGUPC_SMP_RUNTIME_TRUE@	libgupc_pt_la-upc_castable.lo \
@LIBGUPC_SMP_RUNTIME_TRUE@	libgupc_pt_la-upc_debug.lo \
@LIBGUPC_SMP_RUNTIME_TRUE@	libgupc_pt_la-upc_gasp.lo \
@LIBGUPC_SMP_RUNTIME_TRUE@	$(am__objects_21) \
@LIBGUPC_SMP_RUNTIME_TRUE@	libgupc_pt_la-upc_libat_lock.lo \
@LIBGUPC_SMP_RUNTIME_TRUE@	libgupc_pt_la-upc_libg.lo \
@LIBGUPC_SMP_RUNTIME_TRUE@	libgupc_pt_la-upc_lock.lo \
@LIBGUPC_SMP_RUNTIME_TRUE@	libgupc_pt_la-upc_lock_sup.lo \
@LIBGUPC_SMP_RUNTIME_TRUE@	libgupc_pt_la-upc_main.lo \
@LIBGUPC_SMP_RUNTIME_TRUE@	libgupc_pt_la-upc_mem.lo \
@LIBGUPC_SMP_RUNTIME_TRUE@	libgupc_pt_la-upc_nb.lo \
@LIBGUPC_SMP_RUNTIME_TRUE@	$(am__objects_22) \
@LIBGUPC_SMP_RUNTIME_TRUE@	libgupc_pt_la-upc_pgm_info.lo \
@LIBGUPC_SMP_RUNTIME_TRUE@	libgupc_pt_la-upc_pupc.lo \
@LIBGUPC_SMP_RUNTIME_TRUE@	libgupc_pt_la-upc_sysdep.lo \
@LIBGUPC_SMP_RUNTIME_TRUE@	libgupc_pt_la-upc_tick.lo \
@LIBGUPC_SMP_RUNTIME_TRUE@	libgupc_pt_la-upc_vm.lo
@LIBGUPC_PORTALS4_RUNTIME_TRUE@am__objects_24 =  \
@LIBGUPC_PORTALS4_RUNTIME_TRUE@	libgupc_pt_la-gupcr_access.lo \
@LIBGUPC_PORTALS4_RUNTIME_TRUE@	libgupc_pt_la-gupcr_addr.lo \
@LIBGUPC_PORTALS4_RUNTIME_TRUE@	libgupc_pt_la-gupcr_alloc.lo \
@LIBGUPC_PORTALS4_RUNTIME_TRUE@	libgupc_pt_la-gupcr_atomic.lo \
@LIBGUPC_PORTALS4_RUNTIME_TRUE@	libgupc_pt_la-gupcr_atomic_sup.lo \
@LIBGUPC_PORTALS4_RUNTIME_TRUE@	$(am__objects_20) \
@LIBGUPC_PORTALS4_RUNTIME_TRUE@	libgupc_pt_la-gupcr_barrier.lo \
@LIBGUPC_PORTALS4_RUNTIME_TRUE@	libgupc_pt_la-gupcr_broadcast.lo \
@LIBGUPC_PORTALS4_RUNTIME_TRUE@	libgupc_pt_la-gupcr_castable.lo \
@LIBGUPC_PORTALS4_RUNTIME_TRUE@	libgupc_pt_la-gupcr_clock.lo \
@LIBGUPC_PORTALS4_RUNTIME_TRUE@	libgupc_pt_la-gupcr_coll_sup.lo \
@LIBGUPC_PORTALS4_RUNTIME_TRUE@	libgupc_pt_la-gupcr_env.lo \
@LIBGUPC_PORTALS4_RUNTIME_TRUE@	libgupc_pt_la-gupcr_gmem.lo \
@LIBGUPC_PORTALS4_RUNTIME_TRUE@	libgupc_pt_la-gupcr_lock.lo \
@LIBGUPC_PORTALS4_RUNTIME_TRUE@	libgupc_pt_la-gupcr_lock_sup.lo \
@LIBGUPC_PORTALS4_RUNTIME_TRUE@	libgupc_pt_la-gupcr_main.lo \
@LIBGUPC_PORTALS4_RUNTIME_TRUE@	libgupc_pt_la-gupcr_nb.lo \
@LIBGUPC_PORTALS4_RUNTIME_TRUE@	libgupc_pt_la-gupcr_nb_sup.lo \
@LIBGUPC_PORTALS4_RUNTIME_TRUE@	libgupc_pt_la-gupcr_node.lo \
@LIBGUPC_PORTALS4_RUNTIME_TRUE@	libgupc_pt_la-gupcr_mem.lo \
@LIBGUPC_PORTALS4_RUNTIME_TRUE@	libgupc_pt_la-gupcr_portals.lo \
@LIBGUPC_PORTALS4_RUNTIME_TRUE@	libgupc_pt_la-gupcr_pgm_info.lo \
@LIBGUPC_PORTALS4_RUNTIME_TRUE@	libgupc_pt_la-gupcr_runtime.lo \
@LIBGUPC_PORTALS4_RUNTIME_TRUE@	libgupc_pt_la-gupcr_shutdown.lo \
@LIBGUPC_PORTALS4_RUNTIME_TRUE@	libgupc_pt_la-gupcr_tick.lo \
@LIBGUPC_PORTALS4_RUNTIME_TRUE@	libgupc_pt_la-gupcr_utils.lo
@LIBGUPC_NODE_LOCAL_MEM_POSIX_TRUE@@LIBGUPC_PORTALS4_RUNTIME_TRUE@am__objects_25 = libgupc_pt_la-gupcr_node_mem_posix.lo
@LIBGUPC_NODE_LOCAL_MEM_MMAP_TRUE@@LIBGUPC_PORTALS4_RUNTIME_TRUE@am__objects_26 = libgupc_pt_la-gupcr_node_mem_mmap.lo
@LIBGUPC_GENERIC_COLLECTIVES_FALSE@@LIBGUPC_PORTALS4_RUNTIME_TRUE@am__objects_27 = libgupc_pt_la-gupcr_coll_reduce.lo
@LIBGUPC_GENERIC_COLLECTIVES_TRUE@am__objects_27 = libgupc_pt_la-upc_coll_reduce.lo
@LIBGUPC_GENERIC_COLLECTIVES_FALSE@@LIBGUPC_PORTALS4_RUNTIME_TRUE@am__objects_28 = libgupc_pt_la-upc_coll_prefix_reduce.lo
@LIBGUPC_GENERIC_COLLECTIVES_TRUE@am__objects_28 = libgupc_pt_la-upc_coll_prefix_reduce.lo
@LIBGUPC_GENERIC_COLLECTIVES_FALSE@@LIBGUPC_PORTALS4_RUNTIME_TRUE@am__objects_29 = libgupc_pt_la-upc_coll_err.lo \
@LIBGUPC_GENERIC_COLLECTIVES_FALSE@@LIBGUPC_PORTALS4_RUNTIME_TRUE@	libgupc_pt_la-upc_coll_exchange.lo \
@LIBGUPC_GENERIC_COLLECTIVES_FALSE@@LIBGUPC_PORTALS4_RUNTIME_TRUE@	libgupc_pt_la-upc_coll_gather_all.lo \
@LIBGUPC_GENERIC_COLLECTIVES_FALSE@@LIBGUPC_PORTALS4_RUNTIME_TRUE@	libgupc_pt_la-upc_coll_gather.lo \
@LIBGUPC_GENERIC_COLLECTIVES_FALSE@@LIBGUPC_PORTALS4_RUNTIME_TRUE@	libgupc_pt_la-upc_coll_permute.lo \
@LIBGUPC_GENERIC_COLLECTIVES_FALSE@@LIBGUPC_PORTALS4_RUNTIME_TRUE@	$(am__objects_28) \
@LIBGUPC_GENERIC_COLLECTIVES_FALSE@@LIBGUPC_PORTALS4_RUNTIME_TRUE@	libgupc_pt_la-upc_coll_scatter.lo \
@LIBGUPC_GENERIC_COLLECTIVES_FALSE@@LIBGUPC_PORTALS4_RUNTIME_TRUE@	libgupc_pt_la-upc_coll_sort.lo
@LIBGUPC_GENERIC_COLLECTIVES_TRUE@am__objects_29 = libgupc_pt_la-upc_coll_broadcast.lo \
@LIBGUPC_GENERIC_COLLECTIVES_TRUE@	libgupc_pt_la-upc_coll_err.lo \
@LIBGUPC_GENERIC_COLLECTIVES_TRUE@	libgupc_pt_la-upc_coll_exchange.lo \
@LIBGUPC_GENERIC_COLLECTIVES_TRUE@	libgupc_pt_la-upc_coll_gather_all.lo \
@LIBGUPC_GENERIC_COLLECTIVES_TRUE@	libgupc_pt_la-upc_coll_gather.lo \
@LIBGUPC_GENERIC_COLLECTIVES_TRUE@	libgupc_pt_la-upc_coll_init.lo \
@LIBGUPC_GENERIC_COLLECTIVES_TRUE@	libgupc_pt_la-upc_coll_permute.lo \
@LIBGUPC_GENERIC_COLLECTIVES_TRUE@	$(am__objects_28) \
@LIBGUPC_GENERIC_COLLECTIVES_TRUE@	$(am__objects_27) \
@LIBGUPC_GENERIC_COLLECTIVES_TRUE@	libgupc_pt_la-upc_coll_scatter.lo \
@LIBGUPC_GENERIC_COLLECTIVES_TRUE@	libgupc_pt_la-upc_coll_sort.lo
@LIBGUPC_PORTALS4_RUNTIME_TRUE@am__objects_30 = libgupc_pt_la-gupcr_coll_broadcast.lo \
@LIBGUPC_PORTALS4_RUNTIME_TRUE@	libgupc_pt_la-gupcr_coll_init.lo \
@LIBGUPC_PORTALS4_RUNTIME_TRUE@	$(am__objects_27) \
@LIBGUPC_PORTALS4_RUNTIME_TRUE@	$(am__objects_29)
@LIBGUPC_GENERIC_COLLECTIVES_TRUE@am__objects_31 = $(am__objects_29)
am__objects_32 = $(am__objects_23) $(am__objects_24) $(am__objects_25) \
	$(am__objects_26) $(am__objects_30) $(am__objects_31)
@LIBGUPC_PTHREADS_TRUE@nodist_libgupc_pt_la_OBJECTS =  \
@LIBGUPC_PTHREADS_TRUE@	$(am__objects_32)
libgupc_pt_la_OBJECTS = $(nodist_libgupc_pt_la_OBJECTS)
@LIBGUPC_PTHREADS_TRUE@@LIBGUPC_SMP_RUNTIME_TRUE@am_libgupc_pt_la_rpath =  \
@LIBGUPC_PTHREADS_TRUE@@LIBGUPC_SMP_RUNTIME_TRUE@	-rpath \
@LIBGUPC_PTHREADS_TRUE@@LIBGUPC_SMP_RUNTIME_TRUE@	$(toolexeclibdir)
DEFAULT_INCLUDES = -I.@am__isrc@
depcomp = $(SHELL) $(top_srcdir)/../depcomp
am__depfiles_maybe = depfiles
am__mv = mv -f
COMPILE = $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) \
	$(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS)
LTCOMPILE = $(LIBTOOL) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) \
	--mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) \
	$(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS)
CCLD = $(CC)
UPCCOMPILE = $(UPC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) \
	$(AM_CPPFLAGS) $(CPPFLAGS) $(AM_UPCFLAGS) $(UPCFLAGS)
LTUPCCOMPILE = $(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) \
	--mode=compile $(UPC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) \
	$(AM_CPPFLAGS) $(CPPFLAGS) $(AM_UPCFLAGS) $(UPCFLAGS)
UPCLD = $(UPC)
UPCLINK = $(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=link \
	$(UPCLD) $(AM_UPCFLAGS) $(UPCFLAGS) $(AM_LDFLAGS) $(LDFLAGS) \
	-o $@
SOURCES = $(libgupc_la_SOURCES) $(nodist_libgupc_pt_la_SOURCES)
DIST_SOURCES = $(am__libgupc_la_SOURCES_DIST)
MULTISRCTOP = 
MULTIBUILDTOP = 
MULTIDIRS = 
MULTISUBDIR = 
MULTIDO = true
MULTICLEAN = true
INFO_DEPS = libgupc.info
am__TEXINFO_TEX_DIR = $(srcdir)/../../gcc/doc/include
DVIS = libgupc.dvi
PDFS = libgupc.pdf
PSS = libgupc.ps
HTMLS = libgupc.html
TEXINFOS = libgupc.texi
TEXI2DVI = texi2dvi
TEXI2PDF = $(TEXI2DVI) --pdf --batch
MAKEINFOHTML = $(MAKEINFO) --html
AM_MAKEINFOHTMLFLAGS = $(AM_MAKEINFOFLAGS)
DVIPS = dvips
RECURSIVE_TARGETS = all-recursive check-recursive dvi-recursive \
	html-recursive info-recursive install-data-recursive \
	install-dvi-recursive install-exec-recursive \
	install-html-recursive install-info-recursive \
	install-pdf-recursive install-ps-recursive install-recursive \
	installcheck-recursive installdirs-recursive pdf-recursive \
	ps-recursive uninstall-recursive
am__can_run_installinfo = \
  case $$AM_UPDATE_INFO_DIR in \
    n|no|NO) false;; \
    *) (install-info --version) >/dev/null 2>&1;; \
  esac
DATA = $(toolexeclib_DATA)
HEADERS = $(libsubinclude_HEADERS) $(nodist_libsubinclude_HEADERS) \
	$(nodist_noinst_HEADERS) $(nodist_toolexeclib_HEADERS)
RECURSIVE_CLEAN_TARGETS = mostlyclean-recursive clean-recursive	\
  distclean-recursive maintainer-clean-recursive
AM_RECURSIVE_TARGETS = $(RECURSIVE_TARGETS:-recursive=) \
	$(RECURSIVE_CLEAN_TARGETS:-recursive=) tags TAGS ctags CTAGS \
	distdir dist dist-all distcheck
ETAGS = etags
CTAGS = ctags
DIST_SUBDIRS = $(SUBDIRS)
DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST)
distdir = $(PACKAGE)-$(VERSION)
top_distdir = $(distdir)
am__remove_distdir = \
  if test -d "$(distdir)"; then \
    find "$(distdir)" -type d ! -perm -200 -exec chmod u+w {} ';' \
      && rm -rf "$(distdir)" \
      || { sleep 5 && rm -rf "$(distdir)"; }; \
  else :; fi
am__relativize = \
  dir0=`pwd`; \
  sed_first='s,^\([^/]*\)/.*$$,\1,'; \
  sed_rest='s,^[^/]*/*,,'; \
  sed_last='s,^.*/\([^/]*\)$$,\1,'; \
  sed_butlast='s,/*[^/]*$$,,'; \
  while test -n "$$dir1"; do \
    first=`echo "$$dir1" | sed -e "$$sed_first"`; \
    if test "$$first" != "."; then \
      if test "$$first" = ".."; then \
        dir2=`echo "$$dir0" | sed -e "$$sed_last"`/"$$dir2"; \
        dir0=`echo "$$dir0" | sed -e "$$sed_butlast"`; \
      else \
        first2=`echo "$$dir2" | sed -e "$$sed_first"`; \
        if test "$$first2" = "$$first"; then \
          dir2=`echo "$$dir2" | sed -e "$$sed_rest"`; \
        else \
          dir2="../$$dir2"; \
        fi; \
        dir0="$$dir0"/"$$first"; \
      fi; \
    fi; \
    dir1=`echo "$$dir1" | sed -e "$$sed_rest"`; \
  done; \
  reldir="$$dir2"
DIST_ARCHIVES = $(distdir).tar.gz
GZIP_ENV = --best
distuninstallcheck_listfiles = find . -type f -print
am__distuninstallcheck_listfiles = $(distuninstallcheck_listfiles) \
  | sed 's|^\./|$(prefix)/|' | grep -v '$(infodir)/dir$$'
distcleancheck_listfiles = find . -type f -print
ACLOCAL = @ACLOCAL@
ADDR2LINE = @ADDR2LINE@
AMTAR = @AMTAR@
AR = @AR@
AUTOCONF = @AUTOCONF@
AUTOHEADER = @AUTOHEADER@
AUTOMAKE = @AUTOMAKE@
AWK = @AWK@
CC = @CC@
CCDEPMODE = @CCDEPMODE@
CFLAGS = @CFLAGS@
CPP = @CPP@
CPPFLAGS = @CPPFLAGS@
CYGPATH_W = @CYGPATH_W@
DEFS = @DEFS@
DEPDIR = @DEPDIR@
DOXYGEN_AUTHOR = @DOXYGEN_AUTHOR@
DOXYGEN_DATE = @DOXYGEN_DATE@
DOXYGEN_DATETIME = @DOXYGEN_DATETIME@
DOXYGEN_HTML_LOGO = @DOXYGEN_HTML_LOGO@
DOXYGEN_LOGO = @DOXYGEN_LOGO@
DOXYGEN_PAPER_SIZE = @DOXYGEN_PAPER_SIZE@
DOXYGEN_TITLE = @DOXYGEN_TITLE@
DOXYGEN_VERSION = @DOXYGEN_VERSION@
DSYMUTIL = @DSYMUTIL@
DUMPBIN = @DUMPBIN@
DX_CONFIG = @DX_CONFIG@
DX_DOCDIR = @DX_DOCDIR@
DX_DOT = @DX_DOT@
DX_DOXYGEN = @DX_DOXYGEN@
DX_DVIPS = @DX_DVIPS@
DX_EGREP = @DX_EGREP@
DX_ENV = @DX_ENV@
DX_FILE = @DX_FILE@
DX_FLAG_chi = @DX_FLAG_chi@
DX_FLAG_chm = @DX_FLAG_chm@
DX_FLAG_doc = @DX_FLAG_doc@
DX_FLAG_dot = @DX_FLAG_dot@
DX_FLAG_html = @DX_FLAG_html@
DX_FLAG_man = @DX_FLAG_man@
DX_FLAG_pdf = @DX_FLAG_pdf@
DX_FLAG_ps = @DX_FLAG_ps@
DX_FLAG_rtf = @DX_FLAG_rtf@
DX_FLAG_xml = @DX_FLAG_xml@
DX_HHC = @DX_HHC@
DX_LATEX = @DX_LATEX@
DX_MAKEINDEX = @DX_MAKEINDEX@
DX_PDFLATEX = @DX_PDFLATEX@
DX_PERL = @DX_PERL@
DX_PROJECT = @DX_PROJECT@
ECHO_C = @ECHO_C@
ECHO_N = @ECHO_N@
ECHO_T = @ECHO_T@
EGREP = @EGREP@
EXEEXT = @EXEEXT@
FGREP = @FGREP@
GREP = @GREP@
HAVE_DOT = @HAVE_DOT@
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@
MAINT = @MAINT@
MAKEINFO = @MAKEINFO@
MKDIR_P = @MKDIR_P@
NM = @NM@
NMEDIT = @NMEDIT@
OBJDUMP = @OBJDUMP@
OBJEXT = @OBJEXT@
OPT_LDFLAGS = @OPT_LDFLAGS@
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@
PATH_TO_GDB = @PATH_TO_GDB@
PERL = @PERL@
RANLIB = @RANLIB@
SECTION_LDFLAGS = @SECTION_LDFLAGS@
SED = @SED@
SET_MAKE = @SET_MAKE@
SHELL = @SHELL@
STRIP = @STRIP@
UPC = @UPC@
UPCDEPMODE = @UPCDEPMODE@
UPCFLAGS = @UPCFLAGS@
VERSION = @VERSION@
XCFLAGS = @XCFLAGS@
XLDFLAGS = @XLDFLAGS@
abs_builddir = @abs_builddir@
abs_srcdir = @abs_srcdir@
abs_top_builddir = @abs_top_builddir@
abs_top_srcdir = @abs_top_srcdir@
ac_ct_CC = @ac_ct_CC@
ac_ct_DUMPBIN = @ac_ct_DUMPBIN@
ac_ct_UPC = @ac_ct_UPC@
am__include = @am__include@
am__leading_dot = @am__leading_dot@
am__quote = @am__quote@
am__tar = @am__tar@
am__untar = @am__untar@
bfdinc = @bfdinc@
bindir = @bindir@
build = @build@
build_alias = @build_alias@
build_cpu = @build_cpu@
build_os = @build_os@
build_vendor = @build_vendor@
builddir = @builddir@
config_path = @config_path@
datadir = @datadir@
datarootdir = @datarootdir@
docdir = @docdir@
dvidir = @dvidir@
enable_upc_runtime_debug = @enable_upc_runtime_debug@
exec_prefix = @exec_prefix@
host = @host@
host_alias = @host_alias@
host_cpu = @host_cpu@
host_os = @host_os@
host_vendor = @host_vendor@
htmldir = @htmldir@
includedir = @includedir@
infodir = @infodir@
install_sh = @install_sh@
libdir = @libdir@
libexecdir = @libexecdir@
libtool_VERSION = @libtool_VERSION@
link_upc_spec = @link_upc_spec@
localedir = @localedir@
localstatedir = @localstatedir@
mandir = @mandir@
mkdir_p = @mkdir_p@
multi_basedir = @multi_basedir@
oldincludedir = @oldincludedir@
pdfdir = @pdfdir@
portals4inc = @portals4inc@
portals4libs = @portals4libs@
prefix = @prefix@
program_transform_name = @program_transform_name@
psdir = @psdir@
sbindir = @sbindir@
sharedstatedir = @sharedstatedir@
srcdir = @srcdir@
sysconfdir = @sysconfdir@
target = @target@
target_alias = @target_alias@
target_cpu = @target_cpu@
target_os = @target_os@
target_vendor = @target_vendor@
toolexecdir = @toolexecdir@
toolexeclibdir = @toolexeclibdir@
top_build_prefix = @top_build_prefix@
top_builddir = @top_builddir@
top_srcdir = @top_srcdir@
upc_crtbegin_spec = @upc_crtbegin_spec@
upc_crtend_spec = @upc_crtend_spec@
upc_crtstuff_cflags = @upc_crtstuff_cflags@
upc_crtstuff_mak = $(top_srcdir)/@upc_crtstuff_mak@
upc_crtstuff_objs = @upc_crtstuff_objs@
WARN_CFLAGS = $(am__append_1) $(am__append_2)
@LIBGUPC_PORTALS4_RUNTIME_TRUE@targ_runtime_dir = portals4
@LIBGUPC_SMP_RUNTIME_TRUE@targ_runtime_dir = smp
@LIBGUPC_PORTALS4_RUNTIME_TRUE@INC_CFLAGS = $(PORTALS4_IFLAG)
@LIBGUPC_SMP_RUNTIME_TRUE@INC_CFLAGS = 
@LIBGUPC_PORTALS4_RUNTIME_TRUE@PORTALS4_IFLAG = @portals4inc@
ACLOCAL_AMFLAGS = -I . -I .. -I ../config
gcc_version := $(shell cat $(top_srcdir)/../gcc/BASE-VER)
gcc_objdir = $(MULTIBUILDTOP)../../$(host_subdir)/gcc
libsubincludedir = $(libdir)/gcc/$(target_alias)/$(gcc_version)/include
LTLDFLAGS = $(shell $(SHELL) $(top_srcdir)/../libtool-ldflags $(LDFLAGS))
LINK = $(LIBTOOL) --tag CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=link \
        $(CCLD) $(AM_CFLAGS) $(CFLAGS) $(AM_LDFLAGS) $(LTLDFLAGS) -o $@

UPC_HDRS = include/upc_atomic.h include/upc_castable.h \
           include/gasp.h include/gasp_upc.h include/gcc-upc.h \
           include/pupc.h include/upc_collective.h include/upc.h \
           include/upc_nb.h \
           include/upc_relaxed.h include/upc_strict.h \
           include/upc_tick.h include/upc_types.h

libsubinclude_HEADERS = $(UPC_HDRS) gcc-upc-lib.h
nodist_noinst_HEADERS = 
nodist_libsubinclude_HEADERS = 
IN_LIB_CPPFLAGS = -DIN_GCC -DIN_TARGET_LIBS
AM_CPPFLAGS = $(IN_LIB_CPPFLAGS) $(addprefix -I, $(search_path)) \
	$(addprefix -isystem, '.') @bfdinc@
AM_CFLAGS = $(WARN_CFLAGS) $(INC_CFLAGS) $(XCFLAGS)
AM_UPCFLAGS = $(WARN_CFLAGS) $(INC_CFLAGS) -fno-strict-aliasing \
	$(XCFLAGS)
SUBDIRS = testsuite
@LIBGUPC_GENERIC_COLLECTIVES_FALSE@collectives_dir = 
@LIBGUPC_GENERIC_COLLECTIVES_TRUE@collectives_dir = $(addprefix $(top_srcdir)/, collectives)
search_path = $(addprefix $(top_srcdir)/config/, $(config_path)) \
                $(addprefix $(top_srcdir)/, $(targ_runtime_dir)) \
		$(collectives_dir) \
                $(addprefix $(top_srcdir)/, include) \
                $(top_srcdir)

AM_LDFLAGS = $(XLDFLAGS) $(SECTION_LDFLAGS) $(OPT_LDFLAGS)

### Explicit build rules
LIBGUPC_SRCDIR = $(top_srcdir)/$(targ_runtime_dir)
MOSTLYCLEANFILES = $(am__append_12)
UPC_RUNTIME_SRC = $(am__append_7) $(am__append_9) $(am__append_10) \
	$(am__append_11) $(am__append_13) $(am__append_14)
EXTRA_DIST = gen-inline-libgupc.pl gen-upc-ld-script.pl \
	$(UPC_OPS_DEFS) $(UPC_TYPES_DEF) $(am__append_5) \
	$(am__append_6) $(am__append_8) $(am__append_15)
LIBGUPC_COLL_SRCDIR = $(top_srcdir)/collectives
LIBGUPC_INC_SRCDIR = $(top_srcdir)/include
LIBGUPC_PORTALS4_SRCDIR = $(top_srcdir)/portals4
LIBGUPC_SMP_SRCDIR = $(top_srcdir)/smp
UPC_OPS_DEF = $(LIBGUPC_INC_SRCDIR)/upc_ops.def
UPC_TYPES_DEF = $(LIBGUPC_INC_SRCDIR)/upc_types.def
AUTOGEN = autogen
UPC_BACKTRACE_SUP = $(am__append_3) $(am__append_4)
@LIBGUPC_PTHREADS_FALSE@@LIBGUPC_SMP_RUNTIME_TRUE@libgupc_pt = 
@LIBGUPC_PTHREADS_TRUE@@LIBGUPC_SMP_RUNTIME_TRUE@libgupc_pt = libgupc_pt.la
@LIBGUPC_AFFINITY_FALSE@@LIBGUPC_SMP_RUNTIME_TRUE@UPC_AFFINITY_SUP = smp/upc_affinity_stub.c

# Even though we're using vpath, we have to qualify the
# filenames with "smp/", because the libgupc_pt.la rules
# won't find the dependents because the name of the target
# doesn't match (ie, upc_access.c compiles into pt_upc_access_pt.lo)
@LIBGUPC_AFFINITY_TRUE@@LIBGUPC_SMP_RUNTIME_TRUE@UPC_AFFINITY_SUP = smp/upc_affinity.c
@LIBGUPC_GUM_FALSE@@LIBGUPC_SMP_RUNTIME_TRUE@UPC_GUM_SUP = 
@LIBGUPC_GUM_TRUE@@LIBGUPC_SMP_RUNTIME_TRUE@UPC_GUM_SUP = smp/upc_gum.c
@LIBGUPC_NUMA_FALSE@@LIBGUPC_SMP_RUNTIME_TRUE@UPC_NUMA_SUP = smp/upc_numa_stub.c
@LIBGUPC_NUMA_TRUE@@LIBGUPC_SMP_RUNTIME_TRUE@UPC_NUMA_SUP = smp/upc_numa.c
@LIBGUPC_SMP_RUNTIME_TRUE@@MAINTAINER_MODE_TRUE@UPC_ATOMIC_DEF = $(LIBGUPC_SMP_SRCDIR)/upc_atomic.def
@LIBGUPC_SMP_RUNTIME_TRUE@@MAINTAINER_MODE_TRUE@UPC_ATOMIC_TPL = $(LIBGUPC_SMP_SRCDIR)/upc_atomic.tpl
@LIBGUPC_SMP_RUNTIME_TRUE@@MAINTAINER_MODE_TRUE@UPC_ATOMIC_UPC = $(LIBGUPC_SMP_SRCDIR)/upc_atomic.upc
@LIBGUPC_PORTALS4_RUNTIME_TRUE@UPC_RUNTIME_SRC_INLINE = config.h portals4/gupcr_access.c \
@LIBGUPC_PORTALS4_RUNTIME_TRUE@	portals4/gupcr_access.h portals4/gupcr_config.h \
@LIBGUPC_PORTALS4_RUNTIME_TRUE@	portals4/gupcr_defs.h portals4/gupcr_gmem.h \
@LIBGUPC_PORTALS4_RUNTIME_TRUE@	portals4/gupcr_node.h \
@LIBGUPC_PORTALS4_RUNTIME_TRUE@	portals4/gupcr_portals.h portals4/gupcr_pts.h \
@LIBGUPC_PORTALS4_RUNTIME_TRUE@	portals4/gupcr_sup.h portals4/gupcr_sync.h \
@LIBGUPC_PORTALS4_RUNTIME_TRUE@	portals4/gupcr_utils.h

@LIBGUPC_SMP_RUNTIME_TRUE@UPC_RUNTIME_SRC_INLINE = config.h smp/upc_access.c smp/upc_access.h \
@LIBGUPC_SMP_RUNTIME_TRUE@        smp/upc_config.h smp/upc_defs.h smp/upc_mem.h smp/upc_pts.h \
@LIBGUPC_SMP_RUNTIME_TRUE@        smp/upc_sup.h smp/upc_sync.h


# ===========================================================================
#      http://www.gnu.org/software/autoconf-archive/ax_prog_doxygen.html
# ===========================================================================
#
# LICENSE
#
#   Copyright (c) 2009 Oren Ben-Kiki <oren@ben-kiki.org>
#
#   Copying and distribution of this file, with or without modification, are
#   permitted in any medium without royalty provided the copyright notice
#   and this notice are preserved. This file is offered as-is, without any
#   warranty.
#
#
@DX_COND_doc_TRUE@@DX_COND_html_TRUE@@LIBGUPC_PORTALS4_RUNTIME_TRUE@DX_CLEAN_HTML = @DX_DOCDIR@/html
@DX_COND_chm_TRUE@@DX_COND_doc_TRUE@@LIBGUPC_PORTALS4_RUNTIME_TRUE@DX_CLEAN_CHM = @DX_DOCDIR@/chm
@DX_COND_chi_TRUE@@DX_COND_chm_TRUE@@DX_COND_doc_TRUE@@LIBGUPC_PORTALS4_RUNTIME_TRUE@DX_CLEAN_CHI = @DX_DOCDIR@/@PACKAGE@.chi
@DX_COND_doc_TRUE@@DX_COND_man_TRUE@@LIBGUPC_PORTALS4_RUNTIME_TRUE@DX_CLEAN_MAN = @DX_DOCDIR@/man
@DX_COND_doc_TRUE@@DX_COND_rtf_TRUE@@LIBGUPC_PORTALS4_RUNTIME_TRUE@DX_CLEAN_RTF = @DX_DOCDIR@/rtf
@DX_COND_doc_TRUE@@DX_COND_xml_TRUE@@LIBGUPC_PORTALS4_RUNTIME_TRUE@DX_CLEAN_XML = @DX_DOCDIR@/xml
@DX_COND_doc_TRUE@@DX_COND_ps_TRUE@@LIBGUPC_PORTALS4_RUNTIME_TRUE@DX_CLEAN_PS = @DX_DOCDIR@/@PACKAGE@.ps
@DX_COND_doc_TRUE@@DX_COND_ps_TRUE@@LIBGUPC_PORTALS4_RUNTIME_TRUE@DX_PS_GOAL = doxygen-ps
@DX_COND_doc_TRUE@@DX_COND_pdf_TRUE@@LIBGUPC_PORTALS4_RUNTIME_TRUE@DX_CLEAN_PDF = @DX_DOCDIR@/@PACKAGE@.pdf
@DX_COND_doc_TRUE@@DX_COND_pdf_TRUE@@LIBGUPC_PORTALS4_RUNTIME_TRUE@DX_PDF_GOAL = doxygen-pdf
@DX_COND_doc_TRUE@@DX_COND_latex_TRUE@@LIBGUPC_PORTALS4_RUNTIME_TRUE@DX_CLEAN_LATEX = @DX_DOCDIR@/latex
@DX_COND_doc_TRUE@@LIBGUPC_PORTALS4_RUNTIME_TRUE@DX_CLEANFILES = \
@DX_COND_doc_TRUE@@LIBGUPC_PORTALS4_RUNTIME_TRUE@    @DX_DOCDIR@/@PACKAGE@.tag \
@DX_COND_doc_TRUE@@LIBGUPC_PORTALS4_RUNTIME_TRUE@    -r \
@DX_COND_doc_TRUE@@LIBGUPC_PORTALS4_RUNTIME_TRUE@    $(DX_CLEAN_HTML) \
@DX_COND_doc_TRUE@@LIBGUPC_PORTALS4_RUNTIME_TRUE@    $(DX_CLEAN_CHM) \
@DX_COND_doc_TRUE@@LIBGUPC_PORTALS4_RUNTIME_TRUE@    $(DX_CLEAN_CHI) \
@DX_COND_doc_TRUE@@LIBGUPC_PORTALS4_RUNTIME_TRUE@    $(DX_CLEAN_MAN) \
@DX_COND_doc_TRUE@@LIBGUPC_PORTALS4_RUNTIME_TRUE@    $(DX_CLEAN_RTF) \
@DX_COND_doc_TRUE@@LIBGUPC_PORTALS4_RUNTIME_TRUE@    $(DX_CLEAN_XML) \
@DX_COND_doc_TRUE@@LIBGUPC_PORTALS4_RUNTIME_TRUE@    $(DX_CLEAN_PS) \
@DX_COND_doc_TRUE@@LIBGUPC_PORTALS4_RUNTIME_TRUE@    $(DX_CLEAN_PDF) \
@DX_COND_doc_TRUE@@LIBGUPC_PORTALS4_RUNTIME_TRUE@    $(DX_CLEAN_LATEX)


# We need full pathnames here, because vpath won't find
# the files if they don't exist yet.
@LIBGUPC_GENERIC_COLLECTIVES_TRUE@UPC_COLL_PREFIX_REDUCE_UPC = $(LIBGUPC_COLL_SRCDIR)/upc_coll_prefix_reduce.upc

# Portals runtime only partialy uses generic collectives

# We need full pathnames here, because vpath won't find
# the files if they don't exist yet.
@LIBGUPC_PORTALS4_RUNTIME_TRUE@UPC_COLL_PREFIX_REDUCE_UPC = $(LIBGUPC_COLL_SRCDIR)/upc_coll_prefix_reduce.upc
@LIBGUPC_GENERIC_COLLECTIVES_TRUE@UPC_COLL_REDUCE_UPC = $(LIBGUPC_COLL_SRCDIR)/upc_coll_reduce.upc
@LIBGUPC_PORTALS4_RUNTIME_TRUE@UPC_COLL_REDUCE_UPC = $(LIBGUPC_PORTALS4_SRCDIR)/gupcr_coll_reduce.upc
@LIBGUPC_GENERIC_COLLECTIVES_TRUE@UPC_COLLECTIVES_SRC = collectives/upc_coll_broadcast.upc \
@LIBGUPC_GENERIC_COLLECTIVES_TRUE@	collectives/upc_coll_err.upc collectives/upc_coll_exchange.upc \
@LIBGUPC_GENERIC_COLLECTIVES_TRUE@	collectives/upc_coll_gather_all.upc collectives/upc_coll_gather.upc \
@LIBGUPC_GENERIC_COLLECTIVES_TRUE@	collectives/upc_coll.h collectives/upc_coll_init.upc \
@LIBGUPC_GENERIC_COLLECTIVES_TRUE@	collectives/upc_coll_permute.upc $(UPC_COLL_PREFIX_REDUCE_UPC) \
@LIBGUPC_GENERIC_COLLECTIVES_TRUE@	$(UPC_COLL_REDUCE_UPC) collectives/upc_coll_scatter.upc \
@LIBGUPC_GENERIC_COLLECTIVES_TRUE@	collectives/upc_coll_sort.upc

@LIBGUPC_PORTALS4_RUNTIME_TRUE@UPC_COLLECTIVES_SRC = \
@LIBGUPC_PORTALS4_RUNTIME_TRUE@	collectives/upc_coll_err.upc collectives/upc_coll_exchange.upc \
@LIBGUPC_PORTALS4_RUNTIME_TRUE@	collectives/upc_coll_gather_all.upc collectives/upc_coll_gather.upc \
@LIBGUPC_PORTALS4_RUNTIME_TRUE@	collectives/upc_coll_permute.upc $(UPC_COLL_PREFIX_REDUCE_UPC) \
@LIBGUPC_PORTALS4_RUNTIME_TRUE@	collectives/upc_coll_scatter.upc collectives/upc_coll_sort.upc

toolexeclib_LTLIBRARIES = libgupc.la $(libgupc_pt)
nodist_toolexeclib_HEADERS = upc-crtbegin.spec libgupc.spec \
	upc-crtend.spec $(UPC_LINK_SCRIPT)
BUILT_SOURCES = gcc-upc-lib.h $(am__append_16)
@LIBGUPC_LINK_SCRIPT_FALSE@UPC_LINK_SCRIPT = 
@LIBGUPC_LINK_SCRIPT_TRUE@UPC_LINK_SCRIPT = gupc.ld
libgupc_la_SOURCES = $(UPC_RUNTIME_SRC)
libgupc_version_info = -version-info $(libtool_VERSION)
libgupc_la_LDFLAGS = $(libgupc_version_info)
libgupc_la_LINK = $(LINK) $(libgupc_la_LDFLAGS)
libgupc_la_LIBADD = \
	../libatomic/libatomic_convenience_no_lock.la

libgupc_la_DEPENDENCIES = $(libgupc_la_LIBADD)
@LIBGUPC_PTHREADS_TRUE@nodist_libgupc_pt_la_SOURCES = $(UPC_RUNTIME_SRC)
@LIBGUPC_PTHREADS_TRUE@libgupc_pt_la_LIBADD = \
@LIBGUPC_PTHREADS_TRUE@	../libatomic/libatomic_convenience_no_lock.la

@LIBGUPC_PTHREADS_TRUE@libgupc_pt_la_DEPENDENCIES = $(libgupc_pt_la_LIBADD)
@LIBGUPC_PTHREADS_TRUE@libgupc_pt_la_CPPFLAGS = $(AM_CPPFLAGS) -DGUPCR_USE_PTHREADS=1
@LIBGUPC_PTHREADS_TRUE@libgupc_pt_la_UPCFLAGS = $(AM_UPCFLAGS) -fupc-pthreads-model-tls
@LIBGUPC_PTHREADS_TRUE@libgupc_pt_la_LINK = $(libgupc_la_LINK)
@LIBGUPC_CRTSTUFF_TRUE@toolexeclib_DATA = @upc_crtstuff_objs@

# Automake Documentation:
# If your package has Texinfo files in many directories, you can use the
# variable TEXINFO_TEX to tell Automake where to find the canonical
# `texinfo.tex' for your package. The value of this variable should be
# the relative path from the current `Makefile.am' to `texinfo.tex'.
TEXINFO_TEX = ../../gcc/doc/include/texinfo.tex

# Defines info, dvi, pdf and html targets
MAKEINFOFLAGS = -I $(srcdir)/../gcc/doc/include
info_TEXINFOS = libgupc.texi
@GENINSRC_FALSE@STAMP_GENINSRC = 

# AM_CONDITIONAL on configure option --generated-files-in-srcdir
@GENINSRC_TRUE@STAMP_GENINSRC = stamp-geninsrc
@BUILD_INFO_FALSE@STAMP_BUILD_INFO = 

# AM_CONDITIONAL on configure check ACX_CHECK_PROG_VER([MAKEINFO])
@BUILD_INFO_TRUE@STAMP_BUILD_INFO = stamp-build-info
CLEANFILES = $(STAMP_GENINSRC) $(STAMP_BUILD_INFO) libgupc.info \
	$(nodist_toolexeclib_HEADERS) gupc.ld gcc-upc-lib.h

MAINTAINERCLEANFILES = $(srcdir)/libgupc.info
all: $(BUILT_SOURCES) config.h
	$(MAKE) $(AM_MAKEFLAGS) all-recursive

.SUFFIXES:
.SUFFIXES: .c .dvi .lo .o .obj .ps .upc
am--refresh: Makefile
	@:
$(srcdir)/Makefile.in: @MAINTAINER_MODE_TRUE@ $(srcdir)/Makefile.am $(srcdir)/doxygen-include.am $(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
.PRECIOUS: Makefile
Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status
	@case '$?' in \
	  *config.status*) \
	    echo ' $(SHELL) ./config.status'; \
	    $(SHELL) ./config.status;; \
	  *) \
	    echo ' cd $(top_builddir) && $(SHELL) ./config.status $@ $(am__depfiles_maybe)'; \
	    cd $(top_builddir) && $(SHELL) ./config.status $@ $(am__depfiles_maybe);; \
	esac;
$(srcdir)/doxygen-include.am:

$(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):

config.h: stamp-h1
	@if test ! -f $@; then rm -f stamp-h1; else :; fi
	@if test ! -f $@; then $(MAKE) $(AM_MAKEFLAGS) stamp-h1; else :; fi

stamp-h1: $(srcdir)/config.h.in $(top_builddir)/config.status
	@rm -f stamp-h1
	cd $(top_builddir) && $(SHELL) ./config.status config.h
$(srcdir)/config.h.in: @MAINTAINER_MODE_TRUE@ $(am__configure_deps) 
	($(am__cd) $(top_srcdir) && $(AUTOHEADER))
	rm -f stamp-h1
	touch $@

distclean-hdr:
	-rm -f config.h stamp-h1
header.tex: $(top_builddir)/config.status $(srcdir)/header.tex.in
	cd $(top_builddir) && $(SHELL) ./config.status $@
doxygen.sty: $(top_builddir)/config.status $(srcdir)/doxygen.sty.in
	cd $(top_builddir) && $(SHELL) ./config.status $@
doxygen.cfg: $(top_builddir)/config.status $(top_srcdir)/portals4/doxygen.cfg.in
	cd $(top_builddir) && $(SHELL) ./config.status $@
upc-crtbegin.spec: $(top_builddir)/config.status $(srcdir)/upc-crtbegin.spec.in
	cd $(top_builddir) && $(SHELL) ./config.status $@
libgupc.spec: $(top_builddir)/config.status $(srcdir)/libgupc.spec.in
	cd $(top_builddir) && $(SHELL) ./config.status $@
upc-crtend.spec: $(top_builddir)/config.status $(srcdir)/upc-crtend.spec.in
	cd $(top_builddir) && $(SHELL) ./config.status $@
install-toolexeclibLTLIBRARIES: $(toolexeclib_LTLIBRARIES)
	@$(NORMAL_INSTALL)
	@list='$(toolexeclib_LTLIBRARIES)'; test -n "$(toolexeclibdir)" || list=; \
	list2=; for p in $$list; do \
	  if test -f $$p; then \
	    list2="$$list2 $$p"; \
	  else :; fi; \
	done; \
	test -z "$$list2" || { \
	  echo " $(MKDIR_P) '$(DESTDIR)$(toolexeclibdir)'"; \
	  $(MKDIR_P) "$(DESTDIR)$(toolexeclibdir)" || exit 1; \
	  echo " $(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=install $(INSTALL) $(INSTALL_STRIP_FLAG) $$list2 '$(DESTDIR)$(toolexeclibdir)'"; \
	  $(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=install $(INSTALL) $(INSTALL_STRIP_FLAG) $$list2 "$(DESTDIR)$(toolexeclibdir)"; \
	}

uninstall-toolexeclibLTLIBRARIES:
	@$(NORMAL_UNINSTALL)
	@list='$(toolexeclib_LTLIBRARIES)'; test -n "$(toolexeclibdir)" || list=; \
	for p in $$list; do \
	  $(am__strip_dir) \
	  echo " $(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=uninstall rm -f '$(DESTDIR)$(toolexeclibdir)/$$f'"; \
	  $(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=uninstall rm -f "$(DESTDIR)$(toolexeclibdir)/$$f"; \
	done

clean-toolexeclibLTLIBRARIES:
	-test -z "$(toolexeclib_LTLIBRARIES)" || rm -f $(toolexeclib_LTLIBRARIES)
	@list='$(toolexeclib_LTLIBRARIES)'; for p in $$list; do \
	  dir="`echo $$p | sed -e 's|/[^/]*$$||'`"; \
	  test "$$dir" != "$$p" || dir=.; \
	  echo "rm -f \"$${dir}/so_locations\""; \
	  rm -f "$${dir}/so_locations"; \
	done
libgupc.la: $(libgupc_la_OBJECTS) $(libgupc_la_DEPENDENCIES) $(EXTRA_libgupc_la_DEPENDENCIES) 
	$(libgupc_la_LINK) -rpath $(toolexeclibdir) $(libgupc_la_OBJECTS) $(libgupc_la_LIBADD) $(LIBS)
libgupc_pt.la: $(libgupc_pt_la_OBJECTS) $(libgupc_pt_la_DEPENDENCIES) $(EXTRA_libgupc_pt_la_DEPENDENCIES) 
	$(libgupc_pt_la_LINK) $(am_libgupc_pt_la_rpath) $(libgupc_pt_la_OBJECTS) $(libgupc_pt_la_LIBADD) $(LIBS)

mostlyclean-compile:
	-rm -f *.$(OBJEXT)

distclean-compile:
	-rm -f *.tab.c

@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/gupcr_access.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/gupcr_addr.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/gupcr_alloc.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/gupcr_atomic.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/gupcr_atomic_sup.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/gupcr_backtrace.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/gupcr_barrier.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/gupcr_broadcast.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/gupcr_castable.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/gupcr_clock.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/gupcr_coll_broadcast.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/gupcr_coll_init.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/gupcr_coll_reduce.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/gupcr_coll_sup.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/gupcr_env.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/gupcr_gmem.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/gupcr_lock.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/gupcr_lock_sup.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/gupcr_main.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/gupcr_mem.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/gupcr_nb.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/gupcr_nb_sup.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/gupcr_node.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/gupcr_node_mem_mmap.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/gupcr_node_mem_posix.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/gupcr_pgm_info.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/gupcr_portals.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/gupcr_runtime.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/gupcr_shutdown.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/gupcr_tick.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/gupcr_utils.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libgupc_pt_la-gupcr_access.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libgupc_pt_la-gupcr_addr.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libgupc_pt_la-gupcr_alloc.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libgupc_pt_la-gupcr_atomic.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libgupc_pt_la-gupcr_atomic_sup.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libgupc_pt_la-gupcr_backtrace.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libgupc_pt_la-gupcr_barrier.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libgupc_pt_la-gupcr_broadcast.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libgupc_pt_la-gupcr_castable.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libgupc_pt_la-gupcr_clock.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libgupc_pt_la-gupcr_coll_broadcast.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libgupc_pt_la-gupcr_coll_init.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libgupc_pt_la-gupcr_coll_reduce.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libgupc_pt_la-gupcr_coll_sup.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libgupc_pt_la-gupcr_env.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libgupc_pt_la-gupcr_gmem.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libgupc_pt_la-gupcr_lock.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libgupc_pt_la-gupcr_lock_sup.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libgupc_pt_la-gupcr_main.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libgupc_pt_la-gupcr_mem.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libgupc_pt_la-gupcr_nb.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libgupc_pt_la-gupcr_nb_sup.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libgupc_pt_la-gupcr_node.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libgupc_pt_la-gupcr_node_mem_mmap.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libgupc_pt_la-gupcr_node_mem_posix.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libgupc_pt_la-gupcr_pgm_info.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libgupc_pt_la-gupcr_portals.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libgupc_pt_la-gupcr_runtime.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libgupc_pt_la-gupcr_shutdown.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libgupc_pt_la-gupcr_tick.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libgupc_pt_la-gupcr_utils.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libgupc_pt_la-upc_access.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libgupc_pt_la-upc_accessg.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libgupc_pt_la-upc_addr.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libgupc_pt_la-upc_affinity.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libgupc_pt_la-upc_affinity_stub.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libgupc_pt_la-upc_alloc.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libgupc_pt_la-upc_allocg.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libgupc_pt_la-upc_atomic.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libgupc_pt_la-upc_backtrace.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libgupc_pt_la-upc_barrier.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libgupc_pt_la-upc_castable.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libgupc_pt_la-upc_coll_broadcast.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libgupc_pt_la-upc_coll_err.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libgupc_pt_la-upc_coll_exchange.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libgupc_pt_la-upc_coll_gather.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libgupc_pt_la-upc_coll_gather_all.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libgupc_pt_la-upc_coll_init.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libgupc_pt_la-upc_coll_permute.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libgupc_pt_la-upc_coll_prefix_reduce.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libgupc_pt_la-upc_coll_reduce.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libgupc_pt_la-upc_coll_scatter.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libgupc_pt_la-upc_coll_sort.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libgupc_pt_la-upc_debug.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libgupc_pt_la-upc_gasp.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libgupc_pt_la-upc_gum.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libgupc_pt_la-upc_libat_lock.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libgupc_pt_la-upc_libg.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libgupc_pt_la-upc_lock.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libgupc_pt_la-upc_lock_sup.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libgupc_pt_la-upc_main.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libgupc_pt_la-upc_mem.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libgupc_pt_la-upc_nb.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libgupc_pt_la-upc_numa.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libgupc_pt_la-upc_numa_stub.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libgupc_pt_la-upc_pgm_info.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libgupc_pt_la-upc_pupc.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libgupc_pt_la-upc_sysdep.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libgupc_pt_la-upc_tick.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libgupc_pt_la-upc_vm.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/upc_access.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/upc_accessg.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/upc_addr.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/upc_affinity.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/upc_affinity_stub.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/upc_alloc.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/upc_allocg.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/upc_atomic.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/upc_backtrace.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/upc_barrier.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/upc_castable.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/upc_coll_broadcast.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/upc_coll_err.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/upc_coll_exchange.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/upc_coll_gather.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/upc_coll_gather_all.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/upc_coll_init.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/upc_coll_permute.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/upc_coll_prefix_reduce.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/upc_coll_reduce.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/upc_coll_scatter.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/upc_coll_sort.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/upc_debug.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/upc_gasp.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/upc_gum.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/upc_libat_lock.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/upc_libg.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/upc_lock.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/upc_lock_sup.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/upc_main.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/upc_mem.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/upc_nb.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/upc_numa.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/upc_numa_stub.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/upc_pgm_info.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/upc_pupc.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/upc_sysdep.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/upc_tick.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/upc_vm.Plo@am__quote@

.c.o:
@am__fastdepCC_TRUE@	$(COMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $<
@am__fastdepCC_TRUE@	$(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@	source='$<' object='$@' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@	$(COMPILE) -c $<

.c.obj:
@am__fastdepCC_TRUE@	$(COMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ `$(CYGPATH_W) '$<'`
@am__fastdepCC_TRUE@	$(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@	source='$<' object='$@' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@	$(COMPILE) -c `$(CYGPATH_W) '$<'`

.c.lo:
@am__fastdepCC_TRUE@	$(LTCOMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $<
@am__fastdepCC_TRUE@	$(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@	source='$<' object='$@' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@	$(LTCOMPILE) -c -o $@ $<

upc_access.lo: smp/upc_access.c
@am__fastdepCC_TRUE@	$(LIBTOOL)  --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT upc_access.lo -MD -MP -MF $(DEPDIR)/upc_access.Tpo -c -o upc_access.lo `test -f 'smp/upc_access.c' || echo '$(srcdir)/'`smp/upc_access.c
@am__fastdepCC_TRUE@	$(am__mv) $(DEPDIR)/upc_access.Tpo $(DEPDIR)/upc_access.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@	source='smp/upc_access.c' object='upc_access.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@	$(LIBTOOL)  --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o upc_access.lo `test -f 'smp/upc_access.c' || echo '$(srcdir)/'`smp/upc_access.c

upc_accessg.lo: smp/upc_accessg.c
@am__fastdepCC_TRUE@	$(LIBTOOL)  --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT upc_accessg.lo -MD -MP -MF $(DEPDIR)/upc_accessg.Tpo -c -o upc_accessg.lo `test -f 'smp/upc_accessg.c' || echo '$(srcdir)/'`smp/upc_accessg.c
@am__fastdepCC_TRUE@	$(am__mv) $(DEPDIR)/upc_accessg.Tpo $(DEPDIR)/upc_accessg.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@	source='smp/upc_accessg.c' object='upc_accessg.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@	$(LIBTOOL)  --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o upc_accessg.lo `test -f 'smp/upc_accessg.c' || echo '$(srcdir)/'`smp/upc_accessg.c

upc_addr.lo: smp/upc_addr.c
@am__fastdepCC_TRUE@	$(LIBTOOL)  --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT upc_addr.lo -MD -MP -MF $(DEPDIR)/upc_addr.Tpo -c -o upc_addr.lo `test -f 'smp/upc_addr.c' || echo '$(srcdir)/'`smp/upc_addr.c
@am__fastdepCC_TRUE@	$(am__mv) $(DEPDIR)/upc_addr.Tpo $(DEPDIR)/upc_addr.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@	source='smp/upc_addr.c' object='upc_addr.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@	$(LIBTOOL)  --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o upc_addr.lo `test -f 'smp/upc_addr.c' || echo '$(srcdir)/'`smp/upc_addr.c

upc_affinity_stub.lo: smp/upc_affinity_stub.c
@am__fastdepCC_TRUE@	$(LIBTOOL)  --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT upc_affinity_stub.lo -MD -MP -MF $(DEPDIR)/upc_affinity_stub.Tpo -c -o upc_affinity_stub.lo `test -f 'smp/upc_affinity_stub.c' || echo '$(srcdir)/'`smp/upc_affinity_stub.c
@am__fastdepCC_TRUE@	$(am__mv) $(DEPDIR)/upc_affinity_stub.Tpo $(DEPDIR)/upc_affinity_stub.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@	source='smp/upc_affinity_stub.c' object='upc_affinity_stub.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@	$(LIBTOOL)  --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o upc_affinity_stub.lo `test -f 'smp/upc_affinity_stub.c' || echo '$(srcdir)/'`smp/upc_affinity_stub.c

upc_affinity.lo: smp/upc_affinity.c
@am__fastdepCC_TRUE@	$(LIBTOOL)  --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT upc_affinity.lo -MD -MP -MF $(DEPDIR)/upc_affinity.Tpo -c -o upc_affinity.lo `test -f 'smp/upc_affinity.c' || echo '$(srcdir)/'`smp/upc_affinity.c
@am__fastdepCC_TRUE@	$(am__mv) $(DEPDIR)/upc_affinity.Tpo $(DEPDIR)/upc_affinity.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@	source='smp/upc_affinity.c' object='upc_affinity.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@	$(LIBTOOL)  --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o upc_affinity.lo `test -f 'smp/upc_affinity.c' || echo '$(srcdir)/'`smp/upc_affinity.c

gupcr_backtrace.lo: portals4/gupcr_backtrace.c
@am__fastdepCC_TRUE@	$(LIBTOOL)  --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT gupcr_backtrace.lo -MD -MP -MF $(DEPDIR)/gupcr_backtrace.Tpo -c -o gupcr_backtrace.lo `test -f 'portals4/gupcr_backtrace.c' || echo '$(srcdir)/'`portals4/gupcr_backtrace.c
@am__fastdepCC_TRUE@	$(am__mv) $(DEPDIR)/gupcr_backtrace.Tpo $(DEPDIR)/gupcr_backtrace.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@	source='portals4/gupcr_backtrace.c' object='gupcr_backtrace.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@	$(LIBTOOL)  --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o gupcr_backtrace.lo `test -f 'portals4/gupcr_backtrace.c' || echo '$(srcdir)/'`portals4/gupcr_backtrace.c

upc_backtrace.lo: smp/upc_backtrace.c
@am__fastdepCC_TRUE@	$(LIBTOOL)  --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT upc_backtrace.lo -MD -MP -MF $(DEPDIR)/upc_backtrace.Tpo -c -o upc_backtrace.lo `test -f 'smp/upc_backtrace.c' || echo '$(srcdir)/'`smp/upc_backtrace.c
@am__fastdepCC_TRUE@	$(am__mv) $(DEPDIR)/upc_backtrace.Tpo $(DEPDIR)/upc_backtrace.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@	source='smp/upc_backtrace.c' object='upc_backtrace.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@	$(LIBTOOL)  --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o upc_backtrace.lo `test -f 'smp/upc_backtrace.c' || echo '$(srcdir)/'`smp/upc_backtrace.c

upc_debug.lo: smp/upc_debug.c
@am__fastdepCC_TRUE@	$(LIBTOOL)  --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT upc_debug.lo -MD -MP -MF $(DEPDIR)/upc_debug.Tpo -c -o upc_debug.lo `test -f 'smp/upc_debug.c' || echo '$(srcdir)/'`smp/upc_debug.c
@am__fastdepCC_TRUE@	$(am__mv) $(DEPDIR)/upc_debug.Tpo $(DEPDIR)/upc_debug.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@	source='smp/upc_debug.c' object='upc_debug.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@	$(LIBTOOL)  --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o upc_debug.lo `test -f 'smp/upc_debug.c' || echo '$(srcdir)/'`smp/upc_debug.c

upc_gasp.lo: smp/upc_gasp.c
@am__fastdepCC_TRUE@	$(LIBTOOL)  --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT upc_gasp.lo -MD -MP -MF $(DEPDIR)/upc_gasp.Tpo -c -o upc_gasp.lo `test -f 'smp/upc_gasp.c' || echo '$(srcdir)/'`smp/upc_gasp.c
@am__fastdepCC_TRUE@	$(am__mv) $(DEPDIR)/upc_gasp.Tpo $(DEPDIR)/upc_gasp.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@	source='smp/upc_gasp.c' object='upc_gasp.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@	$(LIBTOOL)  --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o upc_gasp.lo `test -f 'smp/upc_gasp.c' || echo '$(srcdir)/'`smp/upc_gasp.c

upc_gum.lo: smp/upc_gum.c
@am__fastdepCC_TRUE@	$(LIBTOOL)  --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT upc_gum.lo -MD -MP -MF $(DEPDIR)/upc_gum.Tpo -c -o upc_gum.lo `test -f 'smp/upc_gum.c' || echo '$(srcdir)/'`smp/upc_gum.c
@am__fastdepCC_TRUE@	$(am__mv) $(DEPDIR)/upc_gum.Tpo $(DEPDIR)/upc_gum.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@	source='smp/upc_gum.c' object='upc_gum.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@	$(LIBTOOL)  --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o upc_gum.lo `test -f 'smp/upc_gum.c' || echo '$(srcdir)/'`smp/upc_gum.c

upc_libat_lock.lo: smp/upc_libat_lock.c
@am__fastdepCC_TRUE@	$(LIBTOOL)  --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT upc_libat_lock.lo -MD -MP -MF $(DEPDIR)/upc_libat_lock.Tpo -c -o upc_libat_lock.lo `test -f 'smp/upc_libat_lock.c' || echo '$(srcdir)/'`smp/upc_libat_lock.c
@am__fastdepCC_TRUE@	$(am__mv) $(DEPDIR)/upc_libat_lock.Tpo $(DEPDIR)/upc_libat_lock.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@	source='smp/upc_libat_lock.c' object='upc_libat_lock.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@	$(LIBTOOL)  --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o upc_libat_lock.lo `test -f 'smp/upc_libat_lock.c' || echo '$(srcdir)/'`smp/upc_libat_lock.c

upc_libg.lo: smp/upc_libg.c
@am__fastdepCC_TRUE@	$(LIBTOOL)  --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT upc_libg.lo -MD -MP -MF $(DEPDIR)/upc_libg.Tpo -c -o upc_libg.lo `test -f 'smp/upc_libg.c' || echo '$(srcdir)/'`smp/upc_libg.c
@am__fastdepCC_TRUE@	$(am__mv) $(DEPDIR)/upc_libg.Tpo $(DEPDIR)/upc_libg.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@	source='smp/upc_libg.c' object='upc_libg.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@	$(LIBTOOL)  --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o upc_libg.lo `test -f 'smp/upc_libg.c' || echo '$(srcdir)/'`smp/upc_libg.c

upc_lock_sup.lo: smp/upc_lock_sup.c
@am__fastdepCC_TRUE@	$(LIBTOOL)  --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT upc_lock_sup.lo -MD -MP -MF $(DEPDIR)/upc_lock_sup.Tpo -c -o upc_lock_sup.lo `test -f 'smp/upc_lock_sup.c' || echo '$(srcdir)/'`smp/upc_lock_sup.c
@am__fastdepCC_TRUE@	$(am__mv) $(DEPDIR)/upc_lock_sup.Tpo $(DEPDIR)/upc_lock_sup.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@	source='smp/upc_lock_sup.c' object='upc_lock_sup.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@	$(LIBTOOL)  --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o upc_lock_sup.lo `test -f 'smp/upc_lock_sup.c' || echo '$(srcdir)/'`smp/upc_lock_sup.c

upc_main.lo: smp/upc_main.c
@am__fastdepCC_TRUE@	$(LIBTOOL)  --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT upc_main.lo -MD -MP -MF $(DEPDIR)/upc_main.Tpo -c -o upc_main.lo `test -f 'smp/upc_main.c' || echo '$(srcdir)/'`smp/upc_main.c
@am__fastdepCC_TRUE@	$(am__mv) $(DEPDIR)/upc_main.Tpo $(DEPDIR)/upc_main.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@	source='smp/upc_main.c' object='upc_main.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@	$(LIBTOOL)  --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o upc_main.lo `test -f 'smp/upc_main.c' || echo '$(srcdir)/'`smp/upc_main.c

upc_mem.lo: smp/upc_mem.c
@am__fastdepCC_TRUE@	$(LIBTOOL)  --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT upc_mem.lo -MD -MP -MF $(DEPDIR)/upc_mem.Tpo -c -o upc_mem.lo `test -f 'smp/upc_mem.c' || echo '$(srcdir)/'`smp/upc_mem.c
@am__fastdepCC_TRUE@	$(am__mv) $(DEPDIR)/upc_mem.Tpo $(DEPDIR)/upc_mem.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@	source='smp/upc_mem.c' object='upc_mem.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@	$(LIBTOOL)  --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o upc_mem.lo `test -f 'smp/upc_mem.c' || echo '$(srcdir)/'`smp/upc_mem.c

upc_numa_stub.lo: smp/upc_numa_stub.c
@am__fastdepCC_TRUE@	$(LIBTOOL)  --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT upc_numa_stub.lo -MD -MP -MF $(DEPDIR)/upc_numa_stub.Tpo -c -o upc_numa_stub.lo `test -f 'smp/upc_numa_stub.c' || echo '$(srcdir)/'`smp/upc_numa_stub.c
@am__fastdepCC_TRUE@	$(am__mv) $(DEPDIR)/upc_numa_stub.Tpo $(DEPDIR)/upc_numa_stub.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@	source='smp/upc_numa_stub.c' object='upc_numa_stub.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@	$(LIBTOOL)  --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o upc_numa_stub.lo `test -f 'smp/upc_numa_stub.c' || echo '$(srcdir)/'`smp/upc_numa_stub.c

upc_numa.lo: smp/upc_numa.c
@am__fastdepCC_TRUE@	$(LIBTOOL)  --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT upc_numa.lo -MD -MP -MF $(DEPDIR)/upc_numa.Tpo -c -o upc_numa.lo `test -f 'smp/upc_numa.c' || echo '$(srcdir)/'`smp/upc_numa.c
@am__fastdepCC_TRUE@	$(am__mv) $(DEPDIR)/upc_numa.Tpo $(DEPDIR)/upc_numa.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@	source='smp/upc_numa.c' object='upc_numa.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@	$(LIBTOOL)  --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o upc_numa.lo `test -f 'smp/upc_numa.c' || echo '$(srcdir)/'`smp/upc_numa.c

upc_pgm_info.lo: smp/upc_pgm_info.c
@am__fastdepCC_TRUE@	$(LIBTOOL)  --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT upc_pgm_info.lo -MD -MP -MF $(DEPDIR)/upc_pgm_info.Tpo -c -o upc_pgm_info.lo `test -f 'smp/upc_pgm_info.c' || echo '$(srcdir)/'`smp/upc_pgm_info.c
@am__fastdepCC_TRUE@	$(am__mv) $(DEPDIR)/upc_pgm_info.Tpo $(DEPDIR)/upc_pgm_info.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@	source='smp/upc_pgm_info.c' object='upc_pgm_info.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@	$(LIBTOOL)  --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o upc_pgm_info.lo `test -f 'smp/upc_pgm_info.c' || echo '$(srcdir)/'`smp/upc_pgm_info.c

upc_pupc.lo: smp/upc_pupc.c
@am__fastdepCC_TRUE@	$(LIBTOOL)  --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT upc_pupc.lo -MD -MP -MF $(DEPDIR)/upc_pupc.Tpo -c -o upc_pupc.lo `test -f 'smp/upc_pupc.c' || echo '$(srcdir)/'`smp/upc_pupc.c
@am__fastdepCC_TRUE@	$(am__mv) $(DEPDIR)/upc_pupc.Tpo $(DEPDIR)/upc_pupc.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@	source='smp/upc_pupc.c' object='upc_pupc.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@	$(LIBTOOL)  --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o upc_pupc.lo `test -f 'smp/upc_pupc.c' || echo '$(srcdir)/'`smp/upc_pupc.c

upc_sysdep.lo: smp/upc_sysdep.c
@am__fastdepCC_TRUE@	$(LIBTOOL)  --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT upc_sysdep.lo -MD -MP -MF $(DEPDIR)/upc_sysdep.Tpo -c -o upc_sysdep.lo `test -f 'smp/upc_sysdep.c' || echo '$(srcdir)/'`smp/upc_sysdep.c
@am__fastdepCC_TRUE@	$(am__mv) $(DEPDIR)/upc_sysdep.Tpo $(DEPDIR)/upc_sysdep.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@	source='smp/upc_sysdep.c' object='upc_sysdep.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@	$(LIBTOOL)  --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o upc_sysdep.lo `test -f 'smp/upc_sysdep.c' || echo '$(srcdir)/'`smp/upc_sysdep.c

upc_tick.lo: smp/upc_tick.c
@am__fastdepCC_TRUE@	$(LIBTOOL)  --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT upc_tick.lo -MD -MP -MF $(DEPDIR)/upc_tick.Tpo -c -o upc_tick.lo `test -f 'smp/upc_tick.c' || echo '$(srcdir)/'`smp/upc_tick.c
@am__fastdepCC_TRUE@	$(am__mv) $(DEPDIR)/upc_tick.Tpo $(DEPDIR)/upc_tick.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@	source='smp/upc_tick.c' object='upc_tick.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@	$(LIBTOOL)  --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o upc_tick.lo `test -f 'smp/upc_tick.c' || echo '$(srcdir)/'`smp/upc_tick.c

upc_vm.lo: smp/upc_vm.c
@am__fastdepCC_TRUE@	$(LIBTOOL)  --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT upc_vm.lo -MD -MP -MF $(DEPDIR)/upc_vm.Tpo -c -o upc_vm.lo `test -f 'smp/upc_vm.c' || echo '$(srcdir)/'`smp/upc_vm.c
@am__fastdepCC_TRUE@	$(am__mv) $(DEPDIR)/upc_vm.Tpo $(DEPDIR)/upc_vm.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@	source='smp/upc_vm.c' object='upc_vm.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@	$(LIBTOOL)  --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o upc_vm.lo `test -f 'smp/upc_vm.c' || echo '$(srcdir)/'`smp/upc_vm.c

gupcr_access.lo: portals4/gupcr_access.c
@am__fastdepCC_TRUE@	$(LIBTOOL)  --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT gupcr_access.lo -MD -MP -MF $(DEPDIR)/gupcr_access.Tpo -c -o gupcr_access.lo `test -f 'portals4/gupcr_access.c' || echo '$(srcdir)/'`portals4/gupcr_access.c
@am__fastdepCC_TRUE@	$(am__mv) $(DEPDIR)/gupcr_access.Tpo $(DEPDIR)/gupcr_access.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@	source='portals4/gupcr_access.c' object='gupcr_access.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@	$(LIBTOOL)  --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o gupcr_access.lo `test -f 'portals4/gupcr_access.c' || echo '$(srcdir)/'`portals4/gupcr_access.c

gupcr_addr.lo: portals4/gupcr_addr.c
@am__fastdepCC_TRUE@	$(LIBTOOL)  --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT gupcr_addr.lo -MD -MP -MF $(DEPDIR)/gupcr_addr.Tpo -c -o gupcr_addr.lo `test -f 'portals4/gupcr_addr.c' || echo '$(srcdir)/'`portals4/gupcr_addr.c
@am__fastdepCC_TRUE@	$(am__mv) $(DEPDIR)/gupcr_addr.Tpo $(DEPDIR)/gupcr_addr.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@	source='portals4/gupcr_addr.c' object='gupcr_addr.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@	$(LIBTOOL)  --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o gupcr_addr.lo `test -f 'portals4/gupcr_addr.c' || echo '$(srcdir)/'`portals4/gupcr_addr.c

gupcr_atomic_sup.lo: portals4/gupcr_atomic_sup.c
@am__fastdepCC_TRUE@	$(LIBTOOL)  --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT gupcr_atomic_sup.lo -MD -MP -MF $(DEPDIR)/gupcr_atomic_sup.Tpo -c -o gupcr_atomic_sup.lo `test -f 'portals4/gupcr_atomic_sup.c' || echo '$(srcdir)/'`portals4/gupcr_atomic_sup.c
@am__fastdepCC_TRUE@	$(am__mv) $(DEPDIR)/gupcr_atomic_sup.Tpo $(DEPDIR)/gupcr_atomic_sup.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@	source='portals4/gupcr_atomic_sup.c' object='gupcr_atomic_sup.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@	$(LIBTOOL)  --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o gupcr_atomic_sup.lo `test -f 'portals4/gupcr_atomic_sup.c' || echo '$(srcdir)/'`portals4/gupcr_atomic_sup.c

gupcr_barrier.lo: portals4/gupcr_barrier.c
@am__fastdepCC_TRUE@	$(LIBTOOL)  --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT gupcr_barrier.lo -MD -MP -MF $(DEPDIR)/gupcr_barrier.Tpo -c -o gupcr_barrier.lo `test -f 'portals4/gupcr_barrier.c' || echo '$(srcdir)/'`portals4/gupcr_barrier.c
@am__fastdepCC_TRUE@	$(am__mv) $(DEPDIR)/gupcr_barrier.Tpo $(DEPDIR)/gupcr_barrier.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@	source='portals4/gupcr_barrier.c' object='gupcr_barrier.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@	$(LIBTOOL)  --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o gupcr_barrier.lo `test -f 'portals4/gupcr_barrier.c' || echo '$(srcdir)/'`portals4/gupcr_barrier.c

gupcr_broadcast.lo: portals4/gupcr_broadcast.c
@am__fastdepCC_TRUE@	$(LIBTOOL)  --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT gupcr_broadcast.lo -MD -MP -MF $(DEPDIR)/gupcr_broadcast.Tpo -c -o gupcr_broadcast.lo `test -f 'portals4/gupcr_broadcast.c' || echo '$(srcdir)/'`portals4/gupcr_broadcast.c
@am__fastdepCC_TRUE@	$(am__mv) $(DEPDIR)/gupcr_broadcast.Tpo $(DEPDIR)/gupcr_broadcast.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@	source='portals4/gupcr_broadcast.c' object='gupcr_broadcast.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@	$(LIBTOOL)  --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o gupcr_broadcast.lo `test -f 'portals4/gupcr_broadcast.c' || echo '$(srcdir)/'`portals4/gupcr_broadcast.c

gupcr_clock.lo: portals4/gupcr_clock.c
@am__fastdepCC_TRUE@	$(LIBTOOL)  --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT gupcr_clock.lo -MD -MP -MF $(DEPDIR)/gupcr_clock.Tpo -c -o gupcr_clock.lo `test -f 'portals4/gupcr_clock.c' || echo '$(srcdir)/'`portals4/gupcr_clock.c
@am__fastdepCC_TRUE@	$(am__mv) $(DEPDIR)/gupcr_clock.Tpo $(DEPDIR)/gupcr_clock.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@	source='portals4/gupcr_clock.c' object='gupcr_clock.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@	$(LIBTOOL)  --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o gupcr_clock.lo `test -f 'portals4/gupcr_clock.c' || echo '$(srcdir)/'`portals4/gupcr_clock.c

gupcr_coll_sup.lo: portals4/gupcr_coll_sup.c
@am__fastdepCC_TRUE@	$(LIBTOOL)  --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT gupcr_coll_sup.lo -MD -MP -MF $(DEPDIR)/gupcr_coll_sup.Tpo -c -o gupcr_coll_sup.lo `test -f 'portals4/gupcr_coll_sup.c' || echo '$(srcdir)/'`portals4/gupcr_coll_sup.c
@am__fastdepCC_TRUE@	$(am__mv) $(DEPDIR)/gupcr_coll_sup.Tpo $(DEPDIR)/gupcr_coll_sup.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@	source='portals4/gupcr_coll_sup.c' object='gupcr_coll_sup.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@	$(LIBTOOL)  --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o gupcr_coll_sup.lo `test -f 'portals4/gupcr_coll_sup.c' || echo '$(srcdir)/'`portals4/gupcr_coll_sup.c

gupcr_env.lo: portals4/gupcr_env.c
@am__fastdepCC_TRUE@	$(LIBTOOL)  --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT gupcr_env.lo -MD -MP -MF $(DEPDIR)/gupcr_env.Tpo -c -o gupcr_env.lo `test -f 'portals4/gupcr_env.c' || echo '$(srcdir)/'`portals4/gupcr_env.c
@am__fastdepCC_TRUE@	$(am__mv) $(DEPDIR)/gupcr_env.Tpo $(DEPDIR)/gupcr_env.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@	source='portals4/gupcr_env.c' object='gupcr_env.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@	$(LIBTOOL)  --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o gupcr_env.lo `test -f 'portals4/gupcr_env.c' || echo '$(srcdir)/'`portals4/gupcr_env.c

gupcr_gmem.lo: portals4/gupcr_gmem.c
@am__fastdepCC_TRUE@	$(LIBTOOL)  --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT gupcr_gmem.lo -MD -MP -MF $(DEPDIR)/gupcr_gmem.Tpo -c -o gupcr_gmem.lo `test -f 'portals4/gupcr_gmem.c' || echo '$(srcdir)/'`portals4/gupcr_gmem.c
@am__fastdepCC_TRUE@	$(am__mv) $(DEPDIR)/gupcr_gmem.Tpo $(DEPDIR)/gupcr_gmem.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@	source='portals4/gupcr_gmem.c' object='gupcr_gmem.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@	$(LIBTOOL)  --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o gupcr_gmem.lo `test -f 'portals4/gupcr_gmem.c' || echo '$(srcdir)/'`portals4/gupcr_gmem.c

gupcr_lock_sup.lo: portals4/gupcr_lock_sup.c
@am__fastdepCC_TRUE@	$(LIBTOOL)  --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT gupcr_lock_sup.lo -MD -MP -MF $(DEPDIR)/gupcr_lock_sup.Tpo -c -o gupcr_lock_sup.lo `test -f 'portals4/gupcr_lock_sup.c' || echo '$(srcdir)/'`portals4/gupcr_lock_sup.c
@am__fastdepCC_TRUE@	$(am__mv) $(DEPDIR)/gupcr_lock_sup.Tpo $(DEPDIR)/gupcr_lock_sup.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@	source='portals4/gupcr_lock_sup.c' object='gupcr_lock_sup.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@	$(LIBTOOL)  --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o gupcr_lock_sup.lo `test -f 'portals4/gupcr_lock_sup.c' || echo '$(srcdir)/'`portals4/gupcr_lock_sup.c

gupcr_main.lo: portals4/gupcr_main.c
@am__fastdepCC_TRUE@	$(LIBTOOL)  --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT gupcr_main.lo -MD -MP -MF $(DEPDIR)/gupcr_main.Tpo -c -o gupcr_main.lo `test -f 'portals4/gupcr_main.c' || echo '$(srcdir)/'`portals4/gupcr_main.c
@am__fastdepCC_TRUE@	$(am__mv) $(DEPDIR)/gupcr_main.Tpo $(DEPDIR)/gupcr_main.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@	source='portals4/gupcr_main.c' object='gupcr_main.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@	$(LIBTOOL)  --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o gupcr_main.lo `test -f 'portals4/gupcr_main.c' || echo '$(srcdir)/'`portals4/gupcr_main.c

gupcr_nb_sup.lo: portals4/gupcr_nb_sup.c
@am__fastdepCC_TRUE@	$(LIBTOOL)  --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT gupcr_nb_sup.lo -MD -MP -MF $(DEPDIR)/gupcr_nb_sup.Tpo -c -o gupcr_nb_sup.lo `test -f 'portals4/gupcr_nb_sup.c' || echo '$(srcdir)/'`portals4/gupcr_nb_sup.c
@am__fastdepCC_TRUE@	$(am__mv) $(DEPDIR)/gupcr_nb_sup.Tpo $(DEPDIR)/gupcr_nb_sup.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@	source='portals4/gupcr_nb_sup.c' object='gupcr_nb_sup.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@	$(LIBTOOL)  --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o gupcr_nb_sup.lo `test -f 'portals4/gupcr_nb_sup.c' || echo '$(srcdir)/'`portals4/gupcr_nb_sup.c

gupcr_node.lo: portals4/gupcr_node.c
@am__fastdepCC_TRUE@	$(LIBTOOL)  --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT gupcr_node.lo -MD -MP -MF $(DEPDIR)/gupcr_node.Tpo -c -o gupcr_node.lo `test -f 'portals4/gupcr_node.c' || echo '$(srcdir)/'`portals4/gupcr_node.c
@am__fastdepCC_TRUE@	$(am__mv) $(DEPDIR)/gupcr_node.Tpo $(DEPDIR)/gupcr_node.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@	source='portals4/gupcr_node.c' object='gupcr_node.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@	$(LIBTOOL)  --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o gupcr_node.lo `test -f 'portals4/gupcr_node.c' || echo '$(srcdir)/'`portals4/gupcr_node.c

gupcr_mem.lo: portals4/gupcr_mem.c
@am__fastdepCC_TRUE@	$(LIBTOOL)  --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT gupcr_mem.lo -MD -MP -MF $(DEPDIR)/gupcr_mem.Tpo -c -o gupcr_mem.lo `test -f 'portals4/gupcr_mem.c' || echo '$(srcdir)/'`portals4/gupcr_mem.c
@am__fastdepCC_TRUE@	$(am__mv) $(DEPDIR)/gupcr_mem.Tpo $(DEPDIR)/gupcr_mem.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@	source='portals4/gupcr_mem.c' object='gupcr_mem.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@	$(LIBTOOL)  --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o gupcr_mem.lo `test -f 'portals4/gupcr_mem.c' || echo '$(srcdir)/'`portals4/gupcr_mem.c

gupcr_portals.lo: portals4/gupcr_portals.c
@am__fastdepCC_TRUE@	$(LIBTOOL)  --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT gupcr_portals.lo -MD -MP -MF $(DEPDIR)/gupcr_portals.Tpo -c -o gupcr_portals.lo `test -f 'portals4/gupcr_portals.c' || echo '$(srcdir)/'`portals4/gupcr_portals.c
@am__fastdepCC_TRUE@	$(am__mv) $(DEPDIR)/gupcr_portals.Tpo $(DEPDIR)/gupcr_portals.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@	source='portals4/gupcr_portals.c' object='gupcr_portals.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@	$(LIBTOOL)  --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o gupcr_portals.lo `test -f 'portals4/gupcr_portals.c' || echo '$(srcdir)/'`portals4/gupcr_portals.c

gupcr_pgm_info.lo: portals4/gupcr_pgm_info.c
@am__fastdepCC_TRUE@	$(LIBTOOL)  --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT gupcr_pgm_info.lo -MD -MP -MF $(DEPDIR)/gupcr_pgm_info.Tpo -c -o gupcr_pgm_info.lo `test -f 'portals4/gupcr_pgm_info.c' || echo '$(srcdir)/'`portals4/gupcr_pgm_info.c
@am__fastdepCC_TRUE@	$(am__mv) $(DEPDIR)/gupcr_pgm_info.Tpo $(DEPDIR)/gupcr_pgm_info.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@	source='portals4/gupcr_pgm_info.c' object='gupcr_pgm_info.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@	$(LIBTOOL)  --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o gupcr_pgm_info.lo `test -f 'portals4/gupcr_pgm_info.c' || echo '$(srcdir)/'`portals4/gupcr_pgm_info.c

gupcr_runtime.lo: portals4/gupcr_runtime.c
@am__fastdepCC_TRUE@	$(LIBTOOL)  --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT gupcr_runtime.lo -MD -MP -MF $(DEPDIR)/gupcr_runtime.Tpo -c -o gupcr_runtime.lo `test -f 'portals4/gupcr_runtime.c' || echo '$(srcdir)/'`portals4/gupcr_runtime.c
@am__fastdepCC_TRUE@	$(am__mv) $(DEPDIR)/gupcr_runtime.Tpo $(DEPDIR)/gupcr_runtime.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@	source='portals4/gupcr_runtime.c' object='gupcr_runtime.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@	$(LIBTOOL)  --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o gupcr_runtime.lo `test -f 'portals4/gupcr_runtime.c' || echo '$(srcdir)/'`portals4/gupcr_runtime.c

gupcr_shutdown.lo: portals4/gupcr_shutdown.c
@am__fastdepCC_TRUE@	$(LIBTOOL)  --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT gupcr_shutdown.lo -MD -MP -MF $(DEPDIR)/gupcr_shutdown.Tpo -c -o gupcr_shutdown.lo `test -f 'portals4/gupcr_shutdown.c' || echo '$(srcdir)/'`portals4/gupcr_shutdown.c
@am__fastdepCC_TRUE@	$(am__mv) $(DEPDIR)/gupcr_shutdown.Tpo $(DEPDIR)/gupcr_shutdown.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@	source='portals4/gupcr_shutdown.c' object='gupcr_shutdown.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@	$(LIBTOOL)  --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o gupcr_shutdown.lo `test -f 'portals4/gupcr_shutdown.c' || echo '$(srcdir)/'`portals4/gupcr_shutdown.c

gupcr_tick.lo: portals4/gupcr_tick.c
@am__fastdepCC_TRUE@	$(LIBTOOL)  --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT gupcr_tick.lo -MD -MP -MF $(DEPDIR)/gupcr_tick.Tpo -c -o gupcr_tick.lo `test -f 'portals4/gupcr_tick.c' || echo '$(srcdir)/'`portals4/gupcr_tick.c
@am__fastdepCC_TRUE@	$(am__mv) $(DEPDIR)/gupcr_tick.Tpo $(DEPDIR)/gupcr_tick.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@	source='portals4/gupcr_tick.c' object='gupcr_tick.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@	$(LIBTOOL)  --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o gupcr_tick.lo `test -f 'portals4/gupcr_tick.c' || echo '$(srcdir)/'`portals4/gupcr_tick.c

gupcr_utils.lo: portals4/gupcr_utils.c
@am__fastdepCC_TRUE@	$(LIBTOOL)  --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT gupcr_utils.lo -MD -MP -MF $(DEPDIR)/gupcr_utils.Tpo -c -o gupcr_utils.lo `test -f 'portals4/gupcr_utils.c' || echo '$(srcdir)/'`portals4/gupcr_utils.c
@am__fastdepCC_TRUE@	$(am__mv) $(DEPDIR)/gupcr_utils.Tpo $(DEPDIR)/gupcr_utils.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@	source='portals4/gupcr_utils.c' object='gupcr_utils.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@	$(LIBTOOL)  --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o gupcr_utils.lo `test -f 'portals4/gupcr_utils.c' || echo '$(srcdir)/'`portals4/gupcr_utils.c

gupcr_node_mem_posix.lo: portals4/gupcr_node_mem_posix.c
@am__fastdepCC_TRUE@	$(LIBTOOL)  --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT gupcr_node_mem_posix.lo -MD -MP -MF $(DEPDIR)/gupcr_node_mem_posix.Tpo -c -o gupcr_node_mem_posix.lo `test -f 'portals4/gupcr_node_mem_posix.c' || echo '$(srcdir)/'`portals4/gupcr_node_mem_posix.c
@am__fastdepCC_TRUE@	$(am__mv) $(DEPDIR)/gupcr_node_mem_posix.Tpo $(DEPDIR)/gupcr_node_mem_posix.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@	source='portals4/gupcr_node_mem_posix.c' object='gupcr_node_mem_posix.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@	$(LIBTOOL)  --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o gupcr_node_mem_posix.lo `test -f 'portals4/gupcr_node_mem_posix.c' || echo '$(srcdir)/'`portals4/gupcr_node_mem_posix.c

gupcr_node_mem_mmap.lo: portals4/gupcr_node_mem_mmap.c
@am__fastdepCC_TRUE@	$(LIBTOOL)  --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT gupcr_node_mem_mmap.lo -MD -MP -MF $(DEPDIR)/gupcr_node_mem_mmap.Tpo -c -o gupcr_node_mem_mmap.lo `test -f 'portals4/gupcr_node_mem_mmap.c' || echo '$(srcdir)/'`portals4/gupcr_node_mem_mmap.c
@am__fastdepCC_TRUE@	$(am__mv) $(DEPDIR)/gupcr_node_mem_mmap.Tpo $(DEPDIR)/gupcr_node_mem_mmap.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@	source='portals4/gupcr_node_mem_mmap.c' object='gupcr_node_mem_mmap.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@	$(LIBTOOL)  --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o gupcr_node_mem_mmap.lo `test -f 'portals4/gupcr_node_mem_mmap.c' || echo '$(srcdir)/'`portals4/gupcr_node_mem_mmap.c

libgupc_pt_la-upc_access.lo: smp/upc_access.c
@am__fastdepCC_TRUE@	$(LIBTOOL)  --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libgupc_pt_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT libgupc_pt_la-upc_access.lo -MD -MP -MF $(DEPDIR)/libgupc_pt_la-upc_access.Tpo -c -o libgupc_pt_la-upc_access.lo `test -f 'smp/upc_access.c' || echo '$(srcdir)/'`smp/upc_access.c
@am__fastdepCC_TRUE@	$(am__mv) $(DEPDIR)/libgupc_pt_la-upc_access.Tpo $(DEPDIR)/libgupc_pt_la-upc_access.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@	source='smp/upc_access.c' object='libgupc_pt_la-upc_access.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@	$(LIBTOOL)  --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libgupc_pt_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o libgupc_pt_la-upc_access.lo `test -f 'smp/upc_access.c' || echo '$(srcdir)/'`smp/upc_access.c

libgupc_pt_la-upc_accessg.lo: smp/upc_accessg.c
@am__fastdepCC_TRUE@	$(LIBTOOL)  --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libgupc_pt_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT libgupc_pt_la-upc_accessg.lo -MD -MP -MF $(DEPDIR)/libgupc_pt_la-upc_accessg.Tpo -c -o libgupc_pt_la-upc_accessg.lo `test -f 'smp/upc_accessg.c' || echo '$(srcdir)/'`smp/upc_accessg.c
@am__fastdepCC_TRUE@	$(am__mv) $(DEPDIR)/libgupc_pt_la-upc_accessg.Tpo $(DEPDIR)/libgupc_pt_la-upc_accessg.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@	source='smp/upc_accessg.c' object='libgupc_pt_la-upc_accessg.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@	$(LIBTOOL)  --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libgupc_pt_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o libgupc_pt_la-upc_accessg.lo `test -f 'smp/upc_accessg.c' || echo '$(srcdir)/'`smp/upc_accessg.c

libgupc_pt_la-upc_addr.lo: smp/upc_addr.c
@am__fastdepCC_TRUE@	$(LIBTOOL)  --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libgupc_pt_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT libgupc_pt_la-upc_addr.lo -MD -MP -MF $(DEPDIR)/libgupc_pt_la-upc_addr.Tpo -c -o libgupc_pt_la-upc_addr.lo `test -f 'smp/upc_addr.c' || echo '$(srcdir)/'`smp/upc_addr.c
@am__fastdepCC_TRUE@	$(am__mv) $(DEPDIR)/libgupc_pt_la-upc_addr.Tpo $(DEPDIR)/libgupc_pt_la-upc_addr.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@	source='smp/upc_addr.c' object='libgupc_pt_la-upc_addr.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@	$(LIBTOOL)  --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libgupc_pt_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o libgupc_pt_la-upc_addr.lo `test -f 'smp/upc_addr.c' || echo '$(srcdir)/'`smp/upc_addr.c

libgupc_pt_la-upc_affinity_stub.lo: smp/upc_affinity_stub.c
@am__fastdepCC_TRUE@	$(LIBTOOL)  --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libgupc_pt_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT libgupc_pt_la-upc_affinity_stub.lo -MD -MP -MF $(DEPDIR)/libgupc_pt_la-upc_affinity_stub.Tpo -c -o libgupc_pt_la-upc_affinity_stub.lo `test -f 'smp/upc_affinity_stub.c' || echo '$(srcdir)/'`smp/upc_affinity_stub.c
@am__fastdepCC_TRUE@	$(am__mv) $(DEPDIR)/libgupc_pt_la-upc_affinity_stub.Tpo $(DEPDIR)/libgupc_pt_la-upc_affinity_stub.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@	source='smp/upc_affinity_stub.c' object='libgupc_pt_la-upc_affinity_stub.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@	$(LIBTOOL)  --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libgupc_pt_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o libgupc_pt_la-upc_affinity_stub.lo `test -f 'smp/upc_affinity_stub.c' || echo '$(srcdir)/'`smp/upc_affinity_stub.c

libgupc_pt_la-upc_affinity.lo: smp/upc_affinity.c
@am__fastdepCC_TRUE@	$(LIBTOOL)  --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libgupc_pt_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT libgupc_pt_la-upc_affinity.lo -MD -MP -MF $(DEPDIR)/libgupc_pt_la-upc_affinity.Tpo -c -o libgupc_pt_la-upc_affinity.lo `test -f 'smp/upc_affinity.c' || echo '$(srcdir)/'`smp/upc_affinity.c
@am__fastdepCC_TRUE@	$(am__mv) $(DEPDIR)/libgupc_pt_la-upc_affinity.Tpo $(DEPDIR)/libgupc_pt_la-upc_affinity.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@	source='smp/upc_affinity.c' object='libgupc_pt_la-upc_affinity.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@	$(LIBTOOL)  --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libgupc_pt_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o libgupc_pt_la-upc_affinity.lo `test -f 'smp/upc_affinity.c' || echo '$(srcdir)/'`smp/upc_affinity.c

libgupc_pt_la-gupcr_backtrace.lo: portals4/gupcr_backtrace.c
@am__fastdepCC_TRUE@	$(LIBTOOL)  --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libgupc_pt_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT libgupc_pt_la-gupcr_backtrace.lo -MD -MP -MF $(DEPDIR)/libgupc_pt_la-gupcr_backtrace.Tpo -c -o libgupc_pt_la-gupcr_backtrace.lo `test -f 'portals4/gupcr_backtrace.c' || echo '$(srcdir)/'`portals4/gupcr_backtrace.c
@am__fastdepCC_TRUE@	$(am__mv) $(DEPDIR)/libgupc_pt_la-gupcr_backtrace.Tpo $(DEPDIR)/libgupc_pt_la-gupcr_backtrace.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@	source='portals4/gupcr_backtrace.c' object='libgupc_pt_la-gupcr_backtrace.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@	$(LIBTOOL)  --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libgupc_pt_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o libgupc_pt_la-gupcr_backtrace.lo `test -f 'portals4/gupcr_backtrace.c' || echo '$(srcdir)/'`portals4/gupcr_backtrace.c

libgupc_pt_la-upc_backtrace.lo: smp/upc_backtrace.c
@am__fastdepCC_TRUE@	$(LIBTOOL)  --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libgupc_pt_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT libgupc_pt_la-upc_backtrace.lo -MD -MP -MF $(DEPDIR)/libgupc_pt_la-upc_backtrace.Tpo -c -o libgupc_pt_la-upc_backtrace.lo `test -f 'smp/upc_backtrace.c' || echo '$(srcdir)/'`smp/upc_backtrace.c
@am__fastdepCC_TRUE@	$(am__mv) $(DEPDIR)/libgupc_pt_la-upc_backtrace.Tpo $(DEPDIR)/libgupc_pt_la-upc_backtrace.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@	source='smp/upc_backtrace.c' object='libgupc_pt_la-upc_backtrace.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@	$(LIBTOOL)  --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libgupc_pt_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o libgupc_pt_la-upc_backtrace.lo `test -f 'smp/upc_backtrace.c' || echo '$(srcdir)/'`smp/upc_backtrace.c

libgupc_pt_la-upc_debug.lo: smp/upc_debug.c
@am__fastdepCC_TRUE@	$(LIBTOOL)  --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libgupc_pt_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT libgupc_pt_la-upc_debug.lo -MD -MP -MF $(DEPDIR)/libgupc_pt_la-upc_debug.Tpo -c -o libgupc_pt_la-upc_debug.lo `test -f 'smp/upc_debug.c' || echo '$(srcdir)/'`smp/upc_debug.c
@am__fastdepCC_TRUE@	$(am__mv) $(DEPDIR)/libgupc_pt_la-upc_debug.Tpo $(DEPDIR)/libgupc_pt_la-upc_debug.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@	source='smp/upc_debug.c' object='libgupc_pt_la-upc_debug.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@	$(LIBTOOL)  --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libgupc_pt_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o libgupc_pt_la-upc_debug.lo `test -f 'smp/upc_debug.c' || echo '$(srcdir)/'`smp/upc_debug.c

libgupc_pt_la-upc_gasp.lo: smp/upc_gasp.c
@am__fastdepCC_TRUE@	$(LIBTOOL)  --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libgupc_pt_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT libgupc_pt_la-upc_gasp.lo -MD -MP -MF $(DEPDIR)/libgupc_pt_la-upc_gasp.Tpo -c -o libgupc_pt_la-upc_gasp.lo `test -f 'smp/upc_gasp.c' || echo '$(srcdir)/'`smp/upc_gasp.c
@am__fastdepCC_TRUE@	$(am__mv) $(DEPDIR)/libgupc_pt_la-upc_gasp.Tpo $(DEPDIR)/libgupc_pt_la-upc_gasp.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@	source='smp/upc_gasp.c' object='libgupc_pt_la-upc_gasp.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@	$(LIBTOOL)  --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libgupc_pt_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o libgupc_pt_la-upc_gasp.lo `test -f 'smp/upc_gasp.c' || echo '$(srcdir)/'`smp/upc_gasp.c

libgupc_pt_la-upc_gum.lo: smp/upc_gum.c
@am__fastdepCC_TRUE@	$(LIBTOOL)  --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libgupc_pt_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT libgupc_pt_la-upc_gum.lo -MD -MP -MF $(DEPDIR)/libgupc_pt_la-upc_gum.Tpo -c -o libgupc_pt_la-upc_gum.lo `test -f 'smp/upc_gum.c' || echo '$(srcdir)/'`smp/upc_gum.c
@am__fastdepCC_TRUE@	$(am__mv) $(DEPDIR)/libgupc_pt_la-upc_gum.Tpo $(DEPDIR)/libgupc_pt_la-upc_gum.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@	source='smp/upc_gum.c' object='libgupc_pt_la-upc_gum.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@	$(LIBTOOL)  --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libgupc_pt_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o libgupc_pt_la-upc_gum.lo `test -f 'smp/upc_gum.c' || echo '$(srcdir)/'`smp/upc_gum.c

libgupc_pt_la-upc_libat_lock.lo: smp/upc_libat_lock.c
@am__fastdepCC_TRUE@	$(LIBTOOL)  --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libgupc_pt_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT libgupc_pt_la-upc_libat_lock.lo -MD -MP -MF $(DEPDIR)/libgupc_pt_la-upc_libat_lock.Tpo -c -o libgupc_pt_la-upc_libat_lock.lo `test -f 'smp/upc_libat_lock.c' || echo '$(srcdir)/'`smp/upc_libat_lock.c
@am__fastdepCC_TRUE@	$(am__mv) $(DEPDIR)/libgupc_pt_la-upc_libat_lock.Tpo $(DEPDIR)/libgupc_pt_la-upc_libat_lock.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@	source='smp/upc_libat_lock.c' object='libgupc_pt_la-upc_libat_lock.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@	$(LIBTOOL)  --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libgupc_pt_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o libgupc_pt_la-upc_libat_lock.lo `test -f 'smp/upc_libat_lock.c' || echo '$(srcdir)/'`smp/upc_libat_lock.c

libgupc_pt_la-upc_libg.lo: smp/upc_libg.c
@am__fastdepCC_TRUE@	$(LIBTOOL)  --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libgupc_pt_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT libgupc_pt_la-upc_libg.lo -MD -MP -MF $(DEPDIR)/libgupc_pt_la-upc_libg.Tpo -c -o libgupc_pt_la-upc_libg.lo `test -f 'smp/upc_libg.c' || echo '$(srcdir)/'`smp/upc_libg.c
@am__fastdepCC_TRUE@	$(am__mv) $(DEPDIR)/libgupc_pt_la-upc_libg.Tpo $(DEPDIR)/libgupc_pt_la-upc_libg.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@	source='smp/upc_libg.c' object='libgupc_pt_la-upc_libg.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@	$(LIBTOOL)  --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libgupc_pt_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o libgupc_pt_la-upc_libg.lo `test -f 'smp/upc_libg.c' || echo '$(srcdir)/'`smp/upc_libg.c

libgupc_pt_la-upc_lock_sup.lo: smp/upc_lock_sup.c
@am__fastdepCC_TRUE@	$(LIBTOOL)  --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libgupc_pt_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT libgupc_pt_la-upc_lock_sup.lo -MD -MP -MF $(DEPDIR)/libgupc_pt_la-upc_lock_sup.Tpo -c -o libgupc_pt_la-upc_lock_sup.lo `test -f 'smp/upc_lock_sup.c' || echo '$(srcdir)/'`smp/upc_lock_sup.c
@am__fastdepCC_TRUE@	$(am__mv) $(DEPDIR)/libgupc_pt_la-upc_lock_sup.Tpo $(DEPDIR)/libgupc_pt_la-upc_lock_sup.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@	source='smp/upc_lock_sup.c' object='libgupc_pt_la-upc_lock_sup.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@	$(LIBTOOL)  --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libgupc_pt_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o libgupc_pt_la-upc_lock_sup.lo `test -f 'smp/upc_lock_sup.c' || echo '$(srcdir)/'`smp/upc_lock_sup.c

libgupc_pt_la-upc_main.lo: smp/upc_main.c
@am__fastdepCC_TRUE@	$(LIBTOOL)  --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libgupc_pt_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT libgupc_pt_la-upc_main.lo -MD -MP -MF $(DEPDIR)/libgupc_pt_la-upc_main.Tpo -c -o libgupc_pt_la-upc_main.lo `test -f 'smp/upc_main.c' || echo '$(srcdir)/'`smp/upc_main.c
@am__fastdepCC_TRUE@	$(am__mv) $(DEPDIR)/libgupc_pt_la-upc_main.Tpo $(DEPDIR)/libgupc_pt_la-upc_main.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@	source='smp/upc_main.c' object='libgupc_pt_la-upc_main.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@	$(LIBTOOL)  --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libgupc_pt_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o libgupc_pt_la-upc_main.lo `test -f 'smp/upc_main.c' || echo '$(srcdir)/'`smp/upc_main.c

libgupc_pt_la-upc_mem.lo: smp/upc_mem.c
@am__fastdepCC_TRUE@	$(LIBTOOL)  --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libgupc_pt_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT libgupc_pt_la-upc_mem.lo -MD -MP -MF $(DEPDIR)/libgupc_pt_la-upc_mem.Tpo -c -o libgupc_pt_la-upc_mem.lo `test -f 'smp/upc_mem.c' || echo '$(srcdir)/'`smp/upc_mem.c
@am__fastdepCC_TRUE@	$(am__mv) $(DEPDIR)/libgupc_pt_la-upc_mem.Tpo $(DEPDIR)/libgupc_pt_la-upc_mem.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@	source='smp/upc_mem.c' object='libgupc_pt_la-upc_mem.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@	$(LIBTOOL)  --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libgupc_pt_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o libgupc_pt_la-upc_mem.lo `test -f 'smp/upc_mem.c' || echo '$(srcdir)/'`smp/upc_mem.c

libgupc_pt_la-upc_numa_stub.lo: smp/upc_numa_stub.c
@am__fastdepCC_TRUE@	$(LIBTOOL)  --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libgupc_pt_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT libgupc_pt_la-upc_numa_stub.lo -MD -MP -MF $(DEPDIR)/libgupc_pt_la-upc_numa_stub.Tpo -c -o libgupc_pt_la-upc_numa_stub.lo `test -f 'smp/upc_numa_stub.c' || echo '$(srcdir)/'`smp/upc_numa_stub.c
@am__fastdepCC_TRUE@	$(am__mv) $(DEPDIR)/libgupc_pt_la-upc_numa_stub.Tpo $(DEPDIR)/libgupc_pt_la-upc_numa_stub.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@	source='smp/upc_numa_stub.c' object='libgupc_pt_la-upc_numa_stub.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@	$(LIBTOOL)  --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libgupc_pt_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o libgupc_pt_la-upc_numa_stub.lo `test -f 'smp/upc_numa_stub.c' || echo '$(srcdir)/'`smp/upc_numa_stub.c

libgupc_pt_la-upc_numa.lo: smp/upc_numa.c
@am__fastdepCC_TRUE@	$(LIBTOOL)  --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libgupc_pt_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT libgupc_pt_la-upc_numa.lo -MD -MP -MF $(DEPDIR)/libgupc_pt_la-upc_numa.Tpo -c -o libgupc_pt_la-upc_numa.lo `test -f 'smp/upc_numa.c' || echo '$(srcdir)/'`smp/upc_numa.c
@am__fastdepCC_TRUE@	$(am__mv) $(DEPDIR)/libgupc_pt_la-upc_numa.Tpo $(DEPDIR)/libgupc_pt_la-upc_numa.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@	source='smp/upc_numa.c' object='libgupc_pt_la-upc_numa.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@	$(LIBTOOL)  --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libgupc_pt_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o libgupc_pt_la-upc_numa.lo `test -f 'smp/upc_numa.c' || echo '$(srcdir)/'`smp/upc_numa.c

libgupc_pt_la-upc_pgm_info.lo: smp/upc_pgm_info.c
@am__fastdepCC_TRUE@	$(LIBTOOL)  --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libgupc_pt_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT libgupc_pt_la-upc_pgm_info.lo -MD -MP -MF $(DEPDIR)/libgupc_pt_la-upc_pgm_info.Tpo -c -o libgupc_pt_la-upc_pgm_info.lo `test -f 'smp/upc_pgm_info.c' || echo '$(srcdir)/'`smp/upc_pgm_info.c
@am__fastdepCC_TRUE@	$(am__mv) $(DEPDIR)/libgupc_pt_la-upc_pgm_info.Tpo $(DEPDIR)/libgupc_pt_la-upc_pgm_info.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@	source='smp/upc_pgm_info.c' object='libgupc_pt_la-upc_pgm_info.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@	$(LIBTOOL)  --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libgupc_pt_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o libgupc_pt_la-upc_pgm_info.lo `test -f 'smp/upc_pgm_info.c' || echo '$(srcdir)/'`smp/upc_pgm_info.c

libgupc_pt_la-upc_pupc.lo: smp/upc_pupc.c
@am__fastdepCC_TRUE@	$(LIBTOOL)  --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libgupc_pt_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT libgupc_pt_la-upc_pupc.lo -MD -MP -MF $(DEPDIR)/libgupc_pt_la-upc_pupc.Tpo -c -o libgupc_pt_la-upc_pupc.lo `test -f 'smp/upc_pupc.c' || echo '$(srcdir)/'`smp/upc_pupc.c
@am__fastdepCC_TRUE@	$(am__mv) $(DEPDIR)/libgupc_pt_la-upc_pupc.Tpo $(DEPDIR)/libgupc_pt_la-upc_pupc.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@	source='smp/upc_pupc.c' object='libgupc_pt_la-upc_pupc.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@	$(LIBTOOL)  --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libgupc_pt_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o libgupc_pt_la-upc_pupc.lo `test -f 'smp/upc_pupc.c' || echo '$(srcdir)/'`smp/upc_pupc.c

libgupc_pt_la-upc_sysdep.lo: smp/upc_sysdep.c
@am__fastdepCC_TRUE@	$(LIBTOOL)  --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libgupc_pt_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT libgupc_pt_la-upc_sysdep.lo -MD -MP -MF $(DEPDIR)/libgupc_pt_la-upc_sysdep.Tpo -c -o libgupc_pt_la-upc_sysdep.lo `test -f 'smp/upc_sysdep.c' || echo '$(srcdir)/'`smp/upc_sysdep.c
@am__fastdepCC_TRUE@	$(am__mv) $(DEPDIR)/libgupc_pt_la-upc_sysdep.Tpo $(DEPDIR)/libgupc_pt_la-upc_sysdep.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@	source='smp/upc_sysdep.c' object='libgupc_pt_la-upc_sysdep.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@	$(LIBTOOL)  --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libgupc_pt_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o libgupc_pt_la-upc_sysdep.lo `test -f 'smp/upc_sysdep.c' || echo '$(srcdir)/'`smp/upc_sysdep.c

libgupc_pt_la-upc_tick.lo: smp/upc_tick.c
@am__fastdepCC_TRUE@	$(LIBTOOL)  --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libgupc_pt_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT libgupc_pt_la-upc_tick.lo -MD -MP -MF $(DEPDIR)/libgupc_pt_la-upc_tick.Tpo -c -o libgupc_pt_la-upc_tick.lo `test -f 'smp/upc_tick.c' || echo '$(srcdir)/'`smp/upc_tick.c
@am__fastdepCC_TRUE@	$(am__mv) $(DEPDIR)/libgupc_pt_la-upc_tick.Tpo $(DEPDIR)/libgupc_pt_la-upc_tick.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@	source='smp/upc_tick.c' object='libgupc_pt_la-upc_tick.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@	$(LIBTOOL)  --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libgupc_pt_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o libgupc_pt_la-upc_tick.lo `test -f 'smp/upc_tick.c' || echo '$(srcdir)/'`smp/upc_tick.c

libgupc_pt_la-upc_vm.lo: smp/upc_vm.c
@am__fastdepCC_TRUE@	$(LIBTOOL)  --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libgupc_pt_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT libgupc_pt_la-upc_vm.lo -MD -MP -MF $(DEPDIR)/libgupc_pt_la-upc_vm.Tpo -c -o libgupc_pt_la-upc_vm.lo `test -f 'smp/upc_vm.c' || echo '$(srcdir)/'`smp/upc_vm.c
@am__fastdepCC_TRUE@	$(am__mv) $(DEPDIR)/libgupc_pt_la-upc_vm.Tpo $(DEPDIR)/libgupc_pt_la-upc_vm.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@	source='smp/upc_vm.c' object='libgupc_pt_la-upc_vm.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@	$(LIBTOOL)  --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libgupc_pt_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o libgupc_pt_la-upc_vm.lo `test -f 'smp/upc_vm.c' || echo '$(srcdir)/'`smp/upc_vm.c

libgupc_pt_la-gupcr_access.lo: portals4/gupcr_access.c
@am__fastdepCC_TRUE@	$(LIBTOOL)  --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libgupc_pt_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT libgupc_pt_la-gupcr_access.lo -MD -MP -MF $(DEPDIR)/libgupc_pt_la-gupcr_access.Tpo -c -o libgupc_pt_la-gupcr_access.lo `test -f 'portals4/gupcr_access.c' || echo '$(srcdir)/'`portals4/gupcr_access.c
@am__fastdepCC_TRUE@	$(am__mv) $(DEPDIR)/libgupc_pt_la-gupcr_access.Tpo $(DEPDIR)/libgupc_pt_la-gupcr_access.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@	source='portals4/gupcr_access.c' object='libgupc_pt_la-gupcr_access.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@	$(LIBTOOL)  --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libgupc_pt_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o libgupc_pt_la-gupcr_access.lo `test -f 'portals4/gupcr_access.c' || echo '$(srcdir)/'`portals4/gupcr_access.c

libgupc_pt_la-gupcr_addr.lo: portals4/gupcr_addr.c
@am__fastdepCC_TRUE@	$(LIBTOOL)  --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libgupc_pt_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT libgupc_pt_la-gupcr_addr.lo -MD -MP -MF $(DEPDIR)/libgupc_pt_la-gupcr_addr.Tpo -c -o libgupc_pt_la-gupcr_addr.lo `test -f 'portals4/gupcr_addr.c' || echo '$(srcdir)/'`portals4/gupcr_addr.c
@am__fastdepCC_TRUE@	$(am__mv) $(DEPDIR)/libgupc_pt_la-gupcr_addr.Tpo $(DEPDIR)/libgupc_pt_la-gupcr_addr.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@	source='portals4/gupcr_addr.c' object='libgupc_pt_la-gupcr_addr.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@	$(LIBTOOL)  --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libgupc_pt_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o libgupc_pt_la-gupcr_addr.lo `test -f 'portals4/gupcr_addr.c' || echo '$(srcdir)/'`portals4/gupcr_addr.c

libgupc_pt_la-gupcr_atomic_sup.lo: portals4/gupcr_atomic_sup.c
@am__fastdepCC_TRUE@	$(LIBTOOL)  --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libgupc_pt_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT libgupc_pt_la-gupcr_atomic_sup.lo -MD -MP -MF $(DEPDIR)/libgupc_pt_la-gupcr_atomic_sup.Tpo -c -o libgupc_pt_la-gupcr_atomic_sup.lo `test -f 'portals4/gupcr_atomic_sup.c' || echo '$(srcdir)/'`portals4/gupcr_atomic_sup.c
@am__fastdepCC_TRUE@	$(am__mv) $(DEPDIR)/libgupc_pt_la-gupcr_atomic_sup.Tpo $(DEPDIR)/libgupc_pt_la-gupcr_atomic_sup.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@	source='portals4/gupcr_atomic_sup.c' object='libgupc_pt_la-gupcr_atomic_sup.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@	$(LIBTOOL)  --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libgupc_pt_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o libgupc_pt_la-gupcr_atomic_sup.lo `test -f 'portals4/gupcr_atomic_sup.c' || echo '$(srcdir)/'`portals4/gupcr_atomic_sup.c

libgupc_pt_la-gupcr_barrier.lo: portals4/gupcr_barrier.c
@am__fastdepCC_TRUE@	$(LIBTOOL)  --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libgupc_pt_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT libgupc_pt_la-gupcr_barrier.lo -MD -MP -MF $(DEPDIR)/libgupc_pt_la-gupcr_barrier.Tpo -c -o libgupc_pt_la-gupcr_barrier.lo `test -f 'portals4/gupcr_barrier.c' || echo '$(srcdir)/'`portals4/gupcr_barrier.c
@am__fastdepCC_TRUE@	$(am__mv) $(DEPDIR)/libgupc_pt_la-gupcr_barrier.Tpo $(DEPDIR)/libgupc_pt_la-gupcr_barrier.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@	source='portals4/gupcr_barrier.c' object='libgupc_pt_la-gupcr_barrier.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@	$(LIBTOOL)  --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libgupc_pt_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o libgupc_pt_la-gupcr_barrier.lo `test -f 'portals4/gupcr_barrier.c' || echo '$(srcdir)/'`portals4/gupcr_barrier.c

libgupc_pt_la-gupcr_broadcast.lo: portals4/gupcr_broadcast.c
@am__fastdepCC_TRUE@	$(LIBTOOL)  --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libgupc_pt_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT libgupc_pt_la-gupcr_broadcast.lo -MD -MP -MF $(DEPDIR)/libgupc_pt_la-gupcr_broadcast.Tpo -c -o libgupc_pt_la-gupcr_broadcast.lo `test -f 'portals4/gupcr_broadcast.c' || echo '$(srcdir)/'`portals4/gupcr_broadcast.c
@am__fastdepCC_TRUE@	$(am__mv) $(DEPDIR)/libgupc_pt_la-gupcr_broadcast.Tpo $(DEPDIR)/libgupc_pt_la-gupcr_broadcast.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@	source='portals4/gupcr_broadcast.c' object='libgupc_pt_la-gupcr_broadcast.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@	$(LIBTOOL)  --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libgupc_pt_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o libgupc_pt_la-gupcr_broadcast.lo `test -f 'portals4/gupcr_broadcast.c' || echo '$(srcdir)/'`portals4/gupcr_broadcast.c

libgupc_pt_la-gupcr_clock.lo: portals4/gupcr_clock.c
@am__fastdepCC_TRUE@	$(LIBTOOL)  --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libgupc_pt_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT libgupc_pt_la-gupcr_clock.lo -MD -MP -MF $(DEPDIR)/libgupc_pt_la-gupcr_clock.Tpo -c -o libgupc_pt_la-gupcr_clock.lo `test -f 'portals4/gupcr_clock.c' || echo '$(srcdir)/'`portals4/gupcr_clock.c
@am__fastdepCC_TRUE@	$(am__mv) $(DEPDIR)/libgupc_pt_la-gupcr_clock.Tpo $(DEPDIR)/libgupc_pt_la-gupcr_clock.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@	source='portals4/gupcr_clock.c' object='libgupc_pt_la-gupcr_clock.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@	$(LIBTOOL)  --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libgupc_pt_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o libgupc_pt_la-gupcr_clock.lo `test -f 'portals4/gupcr_clock.c' || echo '$(srcdir)/'`portals4/gupcr_clock.c

libgupc_pt_la-gupcr_coll_sup.lo: portals4/gupcr_coll_sup.c
@am__fastdepCC_TRUE@	$(LIBTOOL)  --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libgupc_pt_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT libgupc_pt_la-gupcr_coll_sup.lo -MD -MP -MF $(DEPDIR)/libgupc_pt_la-gupcr_coll_sup.Tpo -c -o libgupc_pt_la-gupcr_coll_sup.lo `test -f 'portals4/gupcr_coll_sup.c' || echo '$(srcdir)/'`portals4/gupcr_coll_sup.c
@am__fastdepCC_TRUE@	$(am__mv) $(DEPDIR)/libgupc_pt_la-gupcr_coll_sup.Tpo $(DEPDIR)/libgupc_pt_la-gupcr_coll_sup.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@	source='portals4/gupcr_coll_sup.c' object='libgupc_pt_la-gupcr_coll_sup.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@	$(LIBTOOL)  --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libgupc_pt_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o libgupc_pt_la-gupcr_coll_sup.lo `test -f 'portals4/gupcr_coll_sup.c' || echo '$(srcdir)/'`portals4/gupcr_coll_sup.c

libgupc_pt_la-gupcr_env.lo: portals4/gupcr_env.c
@am__fastdepCC_TRUE@	$(LIBTOOL)  --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libgupc_pt_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT libgupc_pt_la-gupcr_env.lo -MD -MP -MF $(DEPDIR)/libgupc_pt_la-gupcr_env.Tpo -c -o libgupc_pt_la-gupcr_env.lo `test -f 'portals4/gupcr_env.c' || echo '$(srcdir)/'`portals4/gupcr_env.c
@am__fastdepCC_TRUE@	$(am__mv) $(DEPDIR)/libgupc_pt_la-gupcr_env.Tpo $(DEPDIR)/libgupc_pt_la-gupcr_env.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@	source='portals4/gupcr_env.c' object='libgupc_pt_la-gupcr_env.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@	$(LIBTOOL)  --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libgupc_pt_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o libgupc_pt_la-gupcr_env.lo `test -f 'portals4/gupcr_env.c' || echo '$(srcdir)/'`portals4/gupcr_env.c

libgupc_pt_la-gupcr_gmem.lo: portals4/gupcr_gmem.c
@am__fastdepCC_TRUE@	$(LIBTOOL)  --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libgupc_pt_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT libgupc_pt_la-gupcr_gmem.lo -MD -MP -MF $(DEPDIR)/libgupc_pt_la-gupcr_gmem.Tpo -c -o libgupc_pt_la-gupcr_gmem.lo `test -f 'portals4/gupcr_gmem.c' || echo '$(srcdir)/'`portals4/gupcr_gmem.c
@am__fastdepCC_TRUE@	$(am__mv) $(DEPDIR)/libgupc_pt_la-gupcr_gmem.Tpo $(DEPDIR)/libgupc_pt_la-gupcr_gmem.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@	source='portals4/gupcr_gmem.c' object='libgupc_pt_la-gupcr_gmem.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@	$(LIBTOOL)  --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libgupc_pt_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o libgupc_pt_la-gupcr_gmem.lo `test -f 'portals4/gupcr_gmem.c' || echo '$(srcdir)/'`portals4/gupcr_gmem.c

libgupc_pt_la-gupcr_lock_sup.lo: portals4/gupcr_lock_sup.c
@am__fastdepCC_TRUE@	$(LIBTOOL)  --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libgupc_pt_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT libgupc_pt_la-gupcr_lock_sup.lo -MD -MP -MF $(DEPDIR)/libgupc_pt_la-gupcr_lock_sup.Tpo -c -o libgupc_pt_la-gupcr_lock_sup.lo `test -f 'portals4/gupcr_lock_sup.c' || echo '$(srcdir)/'`portals4/gupcr_lock_sup.c
@am__fastdepCC_TRUE@	$(am__mv) $(DEPDIR)/libgupc_pt_la-gupcr_lock_sup.Tpo $(DEPDIR)/libgupc_pt_la-gupcr_lock_sup.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@	source='portals4/gupcr_lock_sup.c' object='libgupc_pt_la-gupcr_lock_sup.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@	$(LIBTOOL)  --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libgupc_pt_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o libgupc_pt_la-gupcr_lock_sup.lo `test -f 'portals4/gupcr_lock_sup.c' || echo '$(srcdir)/'`portals4/gupcr_lock_sup.c

libgupc_pt_la-gupcr_main.lo: portals4/gupcr_main.c
@am__fastdepCC_TRUE@	$(LIBTOOL)  --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libgupc_pt_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT libgupc_pt_la-gupcr_main.lo -MD -MP -MF $(DEPDIR)/libgupc_pt_la-gupcr_main.Tpo -c -o libgupc_pt_la-gupcr_main.lo `test -f 'portals4/gupcr_main.c' || echo '$(srcdir)/'`portals4/gupcr_main.c
@am__fastdepCC_TRUE@	$(am__mv) $(DEPDIR)/libgupc_pt_la-gupcr_main.Tpo $(DEPDIR)/libgupc_pt_la-gupcr_main.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@	source='portals4/gupcr_main.c' object='libgupc_pt_la-gupcr_main.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@	$(LIBTOOL)  --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libgupc_pt_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o libgupc_pt_la-gupcr_main.lo `test -f 'portals4/gupcr_main.c' || echo '$(srcdir)/'`portals4/gupcr_main.c

libgupc_pt_la-gupcr_nb_sup.lo: portals4/gupcr_nb_sup.c
@am__fastdepCC_TRUE@	$(LIBTOOL)  --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libgupc_pt_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT libgupc_pt_la-gupcr_nb_sup.lo -MD -MP -MF $(DEPDIR)/libgupc_pt_la-gupcr_nb_sup.Tpo -c -o libgupc_pt_la-gupcr_nb_sup.lo `test -f 'portals4/gupcr_nb_sup.c' || echo '$(srcdir)/'`portals4/gupcr_nb_sup.c
@am__fastdepCC_TRUE@	$(am__mv) $(DEPDIR)/libgupc_pt_la-gupcr_nb_sup.Tpo $(DEPDIR)/libgupc_pt_la-gupcr_nb_sup.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@	source='portals4/gupcr_nb_sup.c' object='libgupc_pt_la-gupcr_nb_sup.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@	$(LIBTOOL)  --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libgupc_pt_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o libgupc_pt_la-gupcr_nb_sup.lo `test -f 'portals4/gupcr_nb_sup.c' || echo '$(srcdir)/'`portals4/gupcr_nb_sup.c

libgupc_pt_la-gupcr_node.lo: portals4/gupcr_node.c
@am__fastdepCC_TRUE@	$(LIBTOOL)  --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libgupc_pt_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT libgupc_pt_la-gupcr_node.lo -MD -MP -MF $(DEPDIR)/libgupc_pt_la-gupcr_node.Tpo -c -o libgupc_pt_la-gupcr_node.lo `test -f 'portals4/gupcr_node.c' || echo '$(srcdir)/'`portals4/gupcr_node.c
@am__fastdepCC_TRUE@	$(am__mv) $(DEPDIR)/libgupc_pt_la-gupcr_node.Tpo $(DEPDIR)/libgupc_pt_la-gupcr_node.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@	source='portals4/gupcr_node.c' object='libgupc_pt_la-gupcr_node.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@	$(LIBTOOL)  --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libgupc_pt_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o libgupc_pt_la-gupcr_node.lo `test -f 'portals4/gupcr_node.c' || echo '$(srcdir)/'`portals4/gupcr_node.c

libgupc_pt_la-gupcr_mem.lo: portals4/gupcr_mem.c
@am__fastdepCC_TRUE@	$(LIBTOOL)  --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libgupc_pt_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT libgupc_pt_la-gupcr_mem.lo -MD -MP -MF $(DEPDIR)/libgupc_pt_la-gupcr_mem.Tpo -c -o libgupc_pt_la-gupcr_mem.lo `test -f 'portals4/gupcr_mem.c' || echo '$(srcdir)/'`portals4/gupcr_mem.c
@am__fastdepCC_TRUE@	$(am__mv) $(DEPDIR)/libgupc_pt_la-gupcr_mem.Tpo $(DEPDIR)/libgupc_pt_la-gupcr_mem.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@	source='portals4/gupcr_mem.c' object='libgupc_pt_la-gupcr_mem.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@	$(LIBTOOL)  --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libgupc_pt_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o libgupc_pt_la-gupcr_mem.lo `test -f 'portals4/gupcr_mem.c' || echo '$(srcdir)/'`portals4/gupcr_mem.c

libgupc_pt_la-gupcr_portals.lo: portals4/gupcr_portals.c
@am__fastdepCC_TRUE@	$(LIBTOOL)  --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libgupc_pt_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT libgupc_pt_la-gupcr_portals.lo -MD -MP -MF $(DEPDIR)/libgupc_pt_la-gupcr_portals.Tpo -c -o libgupc_pt_la-gupcr_portals.lo `test -f 'portals4/gupcr_portals.c' || echo '$(srcdir)/'`portals4/gupcr_portals.c
@am__fastdepCC_TRUE@	$(am__mv) $(DEPDIR)/libgupc_pt_la-gupcr_portals.Tpo $(DEPDIR)/libgupc_pt_la-gupcr_portals.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@	source='portals4/gupcr_portals.c' object='libgupc_pt_la-gupcr_portals.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@	$(LIBTOOL)  --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libgupc_pt_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o libgupc_pt_la-gupcr_portals.lo `test -f 'portals4/gupcr_portals.c' || echo '$(srcdir)/'`portals4/gupcr_portals.c

libgupc_pt_la-gupcr_pgm_info.lo: portals4/gupcr_pgm_info.c
@am__fastdepCC_TRUE@	$(LIBTOOL)  --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libgupc_pt_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT libgupc_pt_la-gupcr_pgm_info.lo -MD -MP -MF $(DEPDIR)/libgupc_pt_la-gupcr_pgm_info.Tpo -c -o libgupc_pt_la-gupcr_pgm_info.lo `test -f 'portals4/gupcr_pgm_info.c' || echo '$(srcdir)/'`portals4/gupcr_pgm_info.c
@am__fastdepCC_TRUE@	$(am__mv) $(DEPDIR)/libgupc_pt_la-gupcr_pgm_info.Tpo $(DEPDIR)/libgupc_pt_la-gupcr_pgm_info.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@	source='portals4/gupcr_pgm_info.c' object='libgupc_pt_la-gupcr_pgm_info.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@	$(LIBTOOL)  --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libgupc_pt_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o libgupc_pt_la-gupcr_pgm_info.lo `test -f 'portals4/gupcr_pgm_info.c' || echo '$(srcdir)/'`portals4/gupcr_pgm_info.c

libgupc_pt_la-gupcr_runtime.lo: portals4/gupcr_runtime.c
@am__fastdepCC_TRUE@	$(LIBTOOL)  --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libgupc_pt_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT libgupc_pt_la-gupcr_runtime.lo -MD -MP -MF $(DEPDIR)/libgupc_pt_la-gupcr_runtime.Tpo -c -o libgupc_pt_la-gupcr_runtime.lo `test -f 'portals4/gupcr_runtime.c' || echo '$(srcdir)/'`portals4/gupcr_runtime.c
@am__fastdepCC_TRUE@	$(am__mv) $(DEPDIR)/libgupc_pt_la-gupcr_runtime.Tpo $(DEPDIR)/libgupc_pt_la-gupcr_runtime.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@	source='portals4/gupcr_runtime.c' object='libgupc_pt_la-gupcr_runtime.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@	$(LIBTOOL)  --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libgupc_pt_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o libgupc_pt_la-gupcr_runtime.lo `test -f 'portals4/gupcr_runtime.c' || echo '$(srcdir)/'`portals4/gupcr_runtime.c

libgupc_pt_la-gupcr_shutdown.lo: portals4/gupcr_shutdown.c
@am__fastdepCC_TRUE@	$(LIBTOOL)  --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libgupc_pt_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT libgupc_pt_la-gupcr_shutdown.lo -MD -MP -MF $(DEPDIR)/libgupc_pt_la-gupcr_shutdown.Tpo -c -o libgupc_pt_la-gupcr_shutdown.lo `test -f 'portals4/gupcr_shutdown.c' || echo '$(srcdir)/'`portals4/gupcr_shutdown.c
@am__fastdepCC_TRUE@	$(am__mv) $(DEPDIR)/libgupc_pt_la-gupcr_shutdown.Tpo $(DEPDIR)/libgupc_pt_la-gupcr_shutdown.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@	source='portals4/gupcr_shutdown.c' object='libgupc_pt_la-gupcr_shutdown.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@	$(LIBTOOL)  --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libgupc_pt_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o libgupc_pt_la-gupcr_shutdown.lo `test -f 'portals4/gupcr_shutdown.c' || echo '$(srcdir)/'`portals4/gupcr_shutdown.c

libgupc_pt_la-gupcr_tick.lo: portals4/gupcr_tick.c
@am__fastdepCC_TRUE@	$(LIBTOOL)  --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libgupc_pt_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT libgupc_pt_la-gupcr_tick.lo -MD -MP -MF $(DEPDIR)/libgupc_pt_la-gupcr_tick.Tpo -c -o libgupc_pt_la-gupcr_tick.lo `test -f 'portals4/gupcr_tick.c' || echo '$(srcdir)/'`portals4/gupcr_tick.c
@am__fastdepCC_TRUE@	$(am__mv) $(DEPDIR)/libgupc_pt_la-gupcr_tick.Tpo $(DEPDIR)/libgupc_pt_la-gupcr_tick.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@	source='portals4/gupcr_tick.c' object='libgupc_pt_la-gupcr_tick.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@	$(LIBTOOL)  --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libgupc_pt_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o libgupc_pt_la-gupcr_tick.lo `test -f 'portals4/gupcr_tick.c' || echo '$(srcdir)/'`portals4/gupcr_tick.c

libgupc_pt_la-gupcr_utils.lo: portals4/gupcr_utils.c
@am__fastdepCC_TRUE@	$(LIBTOOL)  --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libgupc_pt_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT libgupc_pt_la-gupcr_utils.lo -MD -MP -MF $(DEPDIR)/libgupc_pt_la-gupcr_utils.Tpo -c -o libgupc_pt_la-gupcr_utils.lo `test -f 'portals4/gupcr_utils.c' || echo '$(srcdir)/'`portals4/gupcr_utils.c
@am__fastdepCC_TRUE@	$(am__mv) $(DEPDIR)/libgupc_pt_la-gupcr_utils.Tpo $(DEPDIR)/libgupc_pt_la-gupcr_utils.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@	source='portals4/gupcr_utils.c' object='libgupc_pt_la-gupcr_utils.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@	$(LIBTOOL)  --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libgupc_pt_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o libgupc_pt_la-gupcr_utils.lo `test -f 'portals4/gupcr_utils.c' || echo '$(srcdir)/'`portals4/gupcr_utils.c

libgupc_pt_la-gupcr_node_mem_posix.lo: portals4/gupcr_node_mem_posix.c
@am__fastdepCC_TRUE@	$(LIBTOOL)  --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libgupc_pt_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT libgupc_pt_la-gupcr_node_mem_posix.lo -MD -MP -MF $(DEPDIR)/libgupc_pt_la-gupcr_node_mem_posix.Tpo -c -o libgupc_pt_la-gupcr_node_mem_posix.lo `test -f 'portals4/gupcr_node_mem_posix.c' || echo '$(srcdir)/'`portals4/gupcr_node_mem_posix.c
@am__fastdepCC_TRUE@	$(am__mv) $(DEPDIR)/libgupc_pt_la-gupcr_node_mem_posix.Tpo $(DEPDIR)/libgupc_pt_la-gupcr_node_mem_posix.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@	source='portals4/gupcr_node_mem_posix.c' object='libgupc_pt_la-gupcr_node_mem_posix.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@	$(LIBTOOL)  --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libgupc_pt_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o libgupc_pt_la-gupcr_node_mem_posix.lo `test -f 'portals4/gupcr_node_mem_posix.c' || echo '$(srcdir)/'`portals4/gupcr_node_mem_posix.c

libgupc_pt_la-gupcr_node_mem_mmap.lo: portals4/gupcr_node_mem_mmap.c
@am__fastdepCC_TRUE@	$(LIBTOOL)  --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libgupc_pt_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT libgupc_pt_la-gupcr_node_mem_mmap.lo -MD -MP -MF $(DEPDIR)/libgupc_pt_la-gupcr_node_mem_mmap.Tpo -c -o libgupc_pt_la-gupcr_node_mem_mmap.lo `test -f 'portals4/gupcr_node_mem_mmap.c' || echo '$(srcdir)/'`portals4/gupcr_node_mem_mmap.c
@am__fastdepCC_TRUE@	$(am__mv) $(DEPDIR)/libgupc_pt_la-gupcr_node_mem_mmap.Tpo $(DEPDIR)/libgupc_pt_la-gupcr_node_mem_mmap.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@	source='portals4/gupcr_node_mem_mmap.c' object='libgupc_pt_la-gupcr_node_mem_mmap.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@	$(LIBTOOL)  --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libgupc_pt_la_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o libgupc_pt_la-gupcr_node_mem_mmap.lo `test -f 'portals4/gupcr_node_mem_mmap.c' || echo '$(srcdir)/'`portals4/gupcr_node_mem_mmap.c

.upc.o:
@am__fastdepUPC_TRUE@	$(UPCCOMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $<
@am__fastdepUPC_TRUE@	$(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po
@AMDEP_TRUE@@am__fastdepUPC_FALSE@	source='$<' object='$@' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepUPC_FALSE@	DEPDIR=$(DEPDIR) $(UPCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepUPC_FALSE@	$(UPCCOMPILE) -c -o $@ $<

.upc.obj:
@am__fastdepUPC_TRUE@	$(UPCCOMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ `$(CYGPATH_W) '$<'`
@am__fastdepUPC_TRUE@	$(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po
@AMDEP_TRUE@@am__fastdepUPC_FALSE@	source='$<' object='$@' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepUPC_FALSE@	DEPDIR=$(DEPDIR) $(UPCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepUPC_FALSE@	$(UPCCOMPILE) -c -o $@ `$(CYGPATH_W) '$<'`

.upc.lo:
@am__fastdepUPC_TRUE@	$(LTUPCCOMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $<
@am__fastdepUPC_TRUE@	$(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Plo
@AMDEP_TRUE@@am__fastdepUPC_FALSE@	source='$<' object='$@' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepUPC_FALSE@	DEPDIR=$(DEPDIR) $(UPCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepUPC_FALSE@	$(LTUPCCOMPILE) -c -o $@ $<

upc_allocg.lo: smp/upc_allocg.upc
@am__fastdepUPC_TRUE@	$(LIBTOOL)  $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(UPC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_UPCFLAGS) $(UPCFLAGS) -MT upc_allocg.lo -MD -MP -MF $(DEPDIR)/upc_allocg.Tpo -c -o upc_allocg.lo `test -f 'smp/upc_allocg.upc' || echo '$(srcdir)/'`smp/upc_allocg.upc
@am__fastdepUPC_TRUE@	$(am__mv) $(DEPDIR)/upc_allocg.Tpo $(DEPDIR)/upc_allocg.Plo
@AMDEP_TRUE@@am__fastdepUPC_FALSE@	source='smp/upc_allocg.upc' object='upc_allocg.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepUPC_FALSE@	DEPDIR=$(DEPDIR) $(UPCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepUPC_FALSE@	$(LIBTOOL)  $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(UPC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_UPCFLAGS) $(UPCFLAGS) -c -o upc_allocg.lo `test -f 'smp/upc_allocg.upc' || echo '$(srcdir)/'`smp/upc_allocg.upc

upc_alloc.lo: smp/upc_alloc.upc
@am__fastdepUPC_TRUE@	$(LIBTOOL)  $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(UPC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_UPCFLAGS) $(UPCFLAGS) -MT upc_alloc.lo -MD -MP -MF $(DEPDIR)/upc_alloc.Tpo -c -o upc_alloc.lo `test -f 'smp/upc_alloc.upc' || echo '$(srcdir)/'`smp/upc_alloc.upc
@am__fastdepUPC_TRUE@	$(am__mv) $(DEPDIR)/upc_alloc.Tpo $(DEPDIR)/upc_alloc.Plo
@AMDEP_TRUE@@am__fastdepUPC_FALSE@	source='smp/upc_alloc.upc' object='upc_alloc.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepUPC_FALSE@	DEPDIR=$(DEPDIR) $(UPCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepUPC_FALSE@	$(LIBTOOL)  $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(UPC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_UPCFLAGS) $(UPCFLAGS) -c -o upc_alloc.lo `test -f 'smp/upc_alloc.upc' || echo '$(srcdir)/'`smp/upc_alloc.upc

upc_atomic.lo: smp/upc_atomic.upc
@am__fastdepUPC_TRUE@	$(LIBTOOL)  $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(UPC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_UPCFLAGS) $(UPCFLAGS) -MT upc_atomic.lo -MD -MP -MF $(DEPDIR)/upc_atomic.Tpo -c -o upc_atomic.lo `test -f 'smp/upc_atomic.upc' || echo '$(srcdir)/'`smp/upc_atomic.upc
@am__fastdepUPC_TRUE@	$(am__mv) $(DEPDIR)/upc_atomic.Tpo $(DEPDIR)/upc_atomic.Plo
@AMDEP_TRUE@@am__fastdepUPC_FALSE@	source='smp/upc_atomic.upc' object='upc_atomic.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepUPC_FALSE@	DEPDIR=$(DEPDIR) $(UPCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepUPC_FALSE@	$(LIBTOOL)  $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(UPC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_UPCFLAGS) $(UPCFLAGS) -c -o upc_atomic.lo `test -f 'smp/upc_atomic.upc' || echo '$(srcdir)/'`smp/upc_atomic.upc

upc_barrier.lo: smp/upc_barrier.upc
@am__fastdepUPC_TRUE@	$(LIBTOOL)  $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(UPC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_UPCFLAGS) $(UPCFLAGS) -MT upc_barrier.lo -MD -MP -MF $(DEPDIR)/upc_barrier.Tpo -c -o upc_barrier.lo `test -f 'smp/upc_barrier.upc' || echo '$(srcdir)/'`smp/upc_barrier.upc
@am__fastdepUPC_TRUE@	$(am__mv) $(DEPDIR)/upc_barrier.Tpo $(DEPDIR)/upc_barrier.Plo
@AMDEP_TRUE@@am__fastdepUPC_FALSE@	source='smp/upc_barrier.upc' object='upc_barrier.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepUPC_FALSE@	DEPDIR=$(DEPDIR) $(UPCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepUPC_FALSE@	$(LIBTOOL)  $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(UPC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_UPCFLAGS) $(UPCFLAGS) -c -o upc_barrier.lo `test -f 'smp/upc_barrier.upc' || echo '$(srcdir)/'`smp/upc_barrier.upc

upc_castable.lo: smp/upc_castable.upc
@am__fastdepUPC_TRUE@	$(LIBTOOL)  $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(UPC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_UPCFLAGS) $(UPCFLAGS) -MT upc_castable.lo -MD -MP -MF $(DEPDIR)/upc_castable.Tpo -c -o upc_castable.lo `test -f 'smp/upc_castable.upc' || echo '$(srcdir)/'`smp/upc_castable.upc
@am__fastdepUPC_TRUE@	$(am__mv) $(DEPDIR)/upc_castable.Tpo $(DEPDIR)/upc_castable.Plo
@AMDEP_TRUE@@am__fastdepUPC_FALSE@	source='smp/upc_castable.upc' object='upc_castable.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepUPC_FALSE@	DEPDIR=$(DEPDIR) $(UPCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepUPC_FALSE@	$(LIBTOOL)  $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(UPC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_UPCFLAGS) $(UPCFLAGS) -c -o upc_castable.lo `test -f 'smp/upc_castable.upc' || echo '$(srcdir)/'`smp/upc_castable.upc

upc_lock.lo: smp/upc_lock.upc
@am__fastdepUPC_TRUE@	$(LIBTOOL)  $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(UPC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_UPCFLAGS) $(UPCFLAGS) -MT upc_lock.lo -MD -MP -MF $(DEPDIR)/upc_lock.Tpo -c -o upc_lock.lo `test -f 'smp/upc_lock.upc' || echo '$(srcdir)/'`smp/upc_lock.upc
@am__fastdepUPC_TRUE@	$(am__mv) $(DEPDIR)/upc_lock.Tpo $(DEPDIR)/upc_lock.Plo
@AMDEP_TRUE@@am__fastdepUPC_FALSE@	source='smp/upc_lock.upc' object='upc_lock.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepUPC_FALSE@	DEPDIR=$(DEPDIR) $(UPCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepUPC_FALSE@	$(LIBTOOL)  $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(UPC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_UPCFLAGS) $(UPCFLAGS) -c -o upc_lock.lo `test -f 'smp/upc_lock.upc' || echo '$(srcdir)/'`smp/upc_lock.upc

upc_nb.lo: smp/upc_nb.upc
@am__fastdepUPC_TRUE@	$(LIBTOOL)  $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(UPC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_UPCFLAGS) $(UPCFLAGS) -MT upc_nb.lo -MD -MP -MF $(DEPDIR)/upc_nb.Tpo -c -o upc_nb.lo `test -f 'smp/upc_nb.upc' || echo '$(srcdir)/'`smp/upc_nb.upc
@am__fastdepUPC_TRUE@	$(am__mv) $(DEPDIR)/upc_nb.Tpo $(DEPDIR)/upc_nb.Plo
@AMDEP_TRUE@@am__fastdepUPC_FALSE@	source='smp/upc_nb.upc' object='upc_nb.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepUPC_FALSE@	DEPDIR=$(DEPDIR) $(UPCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepUPC_FALSE@	$(LIBTOOL)  $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(UPC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_UPCFLAGS) $(UPCFLAGS) -c -o upc_nb.lo `test -f 'smp/upc_nb.upc' || echo '$(srcdir)/'`smp/upc_nb.upc

gupcr_alloc.lo: portals4/gupcr_alloc.upc
@am__fastdepUPC_TRUE@	$(LIBTOOL)  $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(UPC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_UPCFLAGS) $(UPCFLAGS) -MT gupcr_alloc.lo -MD -MP -MF $(DEPDIR)/gupcr_alloc.Tpo -c -o gupcr_alloc.lo `test -f 'portals4/gupcr_alloc.upc' || echo '$(srcdir)/'`portals4/gupcr_alloc.upc
@am__fastdepUPC_TRUE@	$(am__mv) $(DEPDIR)/gupcr_alloc.Tpo $(DEPDIR)/gupcr_alloc.Plo
@AMDEP_TRUE@@am__fastdepUPC_FALSE@	source='portals4/gupcr_alloc.upc' object='gupcr_alloc.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepUPC_FALSE@	DEPDIR=$(DEPDIR) $(UPCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepUPC_FALSE@	$(LIBTOOL)  $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(UPC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_UPCFLAGS) $(UPCFLAGS) -c -o gupcr_alloc.lo `test -f 'portals4/gupcr_alloc.upc' || echo '$(srcdir)/'`portals4/gupcr_alloc.upc

gupcr_atomic.lo: portals4/gupcr_atomic.upc
@am__fastdepUPC_TRUE@	$(LIBTOOL)  $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(UPC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_UPCFLAGS) $(UPCFLAGS) -MT gupcr_atomic.lo -MD -MP -MF $(DEPDIR)/gupcr_atomic.Tpo -c -o gupcr_atomic.lo `test -f 'portals4/gupcr_atomic.upc' || echo '$(srcdir)/'`portals4/gupcr_atomic.upc
@am__fastdepUPC_TRUE@	$(am__mv) $(DEPDIR)/gupcr_atomic.Tpo $(DEPDIR)/gupcr_atomic.Plo
@AMDEP_TRUE@@am__fastdepUPC_FALSE@	source='portals4/gupcr_atomic.upc' object='gupcr_atomic.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepUPC_FALSE@	DEPDIR=$(DEPDIR) $(UPCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepUPC_FALSE@	$(LIBTOOL)  $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(UPC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_UPCFLAGS) $(UPCFLAGS) -c -o gupcr_atomic.lo `test -f 'portals4/gupcr_atomic.upc' || echo '$(srcdir)/'`portals4/gupcr_atomic.upc

gupcr_castable.lo: portals4/gupcr_castable.upc
@am__fastdepUPC_TRUE@	$(LIBTOOL)  $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(UPC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_UPCFLAGS) $(UPCFLAGS) -MT gupcr_castable.lo -MD -MP -MF $(DEPDIR)/gupcr_castable.Tpo -c -o gupcr_castable.lo `test -f 'portals4/gupcr_castable.upc' || echo '$(srcdir)/'`portals4/gupcr_castable.upc
@am__fastdepUPC_TRUE@	$(am__mv) $(DEPDIR)/gupcr_castable.Tpo $(DEPDIR)/gupcr_castable.Plo
@AMDEP_TRUE@@am__fastdepUPC_FALSE@	source='portals4/gupcr_castable.upc' object='gupcr_castable.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepUPC_FALSE@	DEPDIR=$(DEPDIR) $(UPCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepUPC_FALSE@	$(LIBTOOL)  $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(UPC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_UPCFLAGS) $(UPCFLAGS) -c -o gupcr_castable.lo `test -f 'portals4/gupcr_castable.upc' || echo '$(srcdir)/'`portals4/gupcr_castable.upc

gupcr_lock.lo: portals4/gupcr_lock.upc
@am__fastdepUPC_TRUE@	$(LIBTOOL)  $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(UPC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_UPCFLAGS) $(UPCFLAGS) -MT gupcr_lock.lo -MD -MP -MF $(DEPDIR)/gupcr_lock.Tpo -c -o gupcr_lock.lo `test -f 'portals4/gupcr_lock.upc' || echo '$(srcdir)/'`portals4/gupcr_lock.upc
@am__fastdepUPC_TRUE@	$(am__mv) $(DEPDIR)/gupcr_lock.Tpo $(DEPDIR)/gupcr_lock.Plo
@AMDEP_TRUE@@am__fastdepUPC_FALSE@	source='portals4/gupcr_lock.upc' object='gupcr_lock.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepUPC_FALSE@	DEPDIR=$(DEPDIR) $(UPCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepUPC_FALSE@	$(LIBTOOL)  $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(UPC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_UPCFLAGS) $(UPCFLAGS) -c -o gupcr_lock.lo `test -f 'portals4/gupcr_lock.upc' || echo '$(srcdir)/'`portals4/gupcr_lock.upc

gupcr_nb.lo: portals4/gupcr_nb.upc
@am__fastdepUPC_TRUE@	$(LIBTOOL)  $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(UPC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_UPCFLAGS) $(UPCFLAGS) -MT gupcr_nb.lo -MD -MP -MF $(DEPDIR)/gupcr_nb.Tpo -c -o gupcr_nb.lo `test -f 'portals4/gupcr_nb.upc' || echo '$(srcdir)/'`portals4/gupcr_nb.upc
@am__fastdepUPC_TRUE@	$(am__mv) $(DEPDIR)/gupcr_nb.Tpo $(DEPDIR)/gupcr_nb.Plo
@AMDEP_TRUE@@am__fastdepUPC_FALSE@	source='portals4/gupcr_nb.upc' object='gupcr_nb.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepUPC_FALSE@	DEPDIR=$(DEPDIR) $(UPCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepUPC_FALSE@	$(LIBTOOL)  $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(UPC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_UPCFLAGS) $(UPCFLAGS) -c -o gupcr_nb.lo `test -f 'portals4/gupcr_nb.upc' || echo '$(srcdir)/'`portals4/gupcr_nb.upc

gupcr_coll_broadcast.lo: portals4/gupcr_coll_broadcast.upc
@am__fastdepUPC_TRUE@	$(LIBTOOL)  $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(UPC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_UPCFLAGS) $(UPCFLAGS) -MT gupcr_coll_broadcast.lo -MD -MP -MF $(DEPDIR)/gupcr_coll_broadcast.Tpo -c -o gupcr_coll_broadcast.lo `test -f 'portals4/gupcr_coll_broadcast.upc' || echo '$(srcdir)/'`portals4/gupcr_coll_broadcast.upc
@am__fastdepUPC_TRUE@	$(am__mv) $(DEPDIR)/gupcr_coll_broadcast.Tpo $(DEPDIR)/gupcr_coll_broadcast.Plo
@AMDEP_TRUE@@am__fastdepUPC_FALSE@	source='portals4/gupcr_coll_broadcast.upc' object='gupcr_coll_broadcast.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepUPC_FALSE@	DEPDIR=$(DEPDIR) $(UPCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepUPC_FALSE@	$(LIBTOOL)  $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(UPC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_UPCFLAGS) $(UPCFLAGS) -c -o gupcr_coll_broadcast.lo `test -f 'portals4/gupcr_coll_broadcast.upc' || echo '$(srcdir)/'`portals4/gupcr_coll_broadcast.upc

gupcr_coll_init.lo: portals4/gupcr_coll_init.upc
@am__fastdepUPC_TRUE@	$(LIBTOOL)  $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(UPC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_UPCFLAGS) $(UPCFLAGS) -MT gupcr_coll_init.lo -MD -MP -MF $(DEPDIR)/gupcr_coll_init.Tpo -c -o gupcr_coll_init.lo `test -f 'portals4/gupcr_coll_init.upc' || echo '$(srcdir)/'`portals4/gupcr_coll_init.upc
@am__fastdepUPC_TRUE@	$(am__mv) $(DEPDIR)/gupcr_coll_init.Tpo $(DEPDIR)/gupcr_coll_init.Plo
@AMDEP_TRUE@@am__fastdepUPC_FALSE@	source='portals4/gupcr_coll_init.upc' object='gupcr_coll_init.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepUPC_FALSE@	DEPDIR=$(DEPDIR) $(UPCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepUPC_FALSE@	$(LIBTOOL)  $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(UPC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_UPCFLAGS) $(UPCFLAGS) -c -o gupcr_coll_init.lo `test -f 'portals4/gupcr_coll_init.upc' || echo '$(srcdir)/'`portals4/gupcr_coll_init.upc

upc_coll_reduce.lo: $(LIBGUPC_COLL_SRCDIR)/upc_coll_reduce.upc
@am__fastdepUPC_TRUE@	$(LIBTOOL)  $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(UPC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_UPCFLAGS) $(UPCFLAGS) -MT upc_coll_reduce.lo -MD -MP -MF $(DEPDIR)/upc_coll_reduce.Tpo -c -o upc_coll_reduce.lo `test -f '$(LIBGUPC_COLL_SRCDIR)/upc_coll_reduce.upc' || echo '$(srcdir)/'`$(LIBGUPC_COLL_SRCDIR)/upc_coll_reduce.upc
@am__fastdepUPC_TRUE@	$(am__mv) $(DEPDIR)/upc_coll_reduce.Tpo $(DEPDIR)/upc_coll_reduce.Plo
@AMDEP_TRUE@@am__fastdepUPC_FALSE@	source='$(LIBGUPC_COLL_SRCDIR)/upc_coll_reduce.upc' object='upc_coll_reduce.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepUPC_FALSE@	DEPDIR=$(DEPDIR) $(UPCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepUPC_FALSE@	$(LIBTOOL)  $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(UPC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_UPCFLAGS) $(UPCFLAGS) -c -o upc_coll_reduce.lo `test -f '$(LIBGUPC_COLL_SRCDIR)/upc_coll_reduce.upc' || echo '$(srcdir)/'`$(LIBGUPC_COLL_SRCDIR)/upc_coll_reduce.upc

gupcr_coll_reduce.lo: $(LIBGUPC_PORTALS4_SRCDIR)/gupcr_coll_reduce.upc
@am__fastdepUPC_TRUE@	$(LIBTOOL)  $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(UPC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_UPCFLAGS) $(UPCFLAGS) -MT gupcr_coll_reduce.lo -MD -MP -MF $(DEPDIR)/gupcr_coll_reduce.Tpo -c -o gupcr_coll_reduce.lo `test -f '$(LIBGUPC_PORTALS4_SRCDIR)/gupcr_coll_reduce.upc' || echo '$(srcdir)/'`$(LIBGUPC_PORTALS4_SRCDIR)/gupcr_coll_reduce.upc
@am__fastdepUPC_TRUE@	$(am__mv) $(DEPDIR)/gupcr_coll_reduce.Tpo $(DEPDIR)/gupcr_coll_reduce.Plo
@AMDEP_TRUE@@am__fastdepUPC_FALSE@	source='$(LIBGUPC_PORTALS4_SRCDIR)/gupcr_coll_reduce.upc' object='gupcr_coll_reduce.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepUPC_FALSE@	DEPDIR=$(DEPDIR) $(UPCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepUPC_FALSE@	$(LIBTOOL)  $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(UPC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_UPCFLAGS) $(UPCFLAGS) -c -o gupcr_coll_reduce.lo `test -f '$(LIBGUPC_PORTALS4_SRCDIR)/gupcr_coll_reduce.upc' || echo '$(srcdir)/'`$(LIBGUPC_PORTALS4_SRCDIR)/gupcr_coll_reduce.upc

upc_coll_broadcast.lo: collectives/upc_coll_broadcast.upc
@am__fastdepUPC_TRUE@	$(LIBTOOL)  $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(UPC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_UPCFLAGS) $(UPCFLAGS) -MT upc_coll_broadcast.lo -MD -MP -MF $(DEPDIR)/upc_coll_broadcast.Tpo -c -o upc_coll_broadcast.lo `test -f 'collectives/upc_coll_broadcast.upc' || echo '$(srcdir)/'`collectives/upc_coll_broadcast.upc
@am__fastdepUPC_TRUE@	$(am__mv) $(DEPDIR)/upc_coll_broadcast.Tpo $(DEPDIR)/upc_coll_broadcast.Plo
@AMDEP_TRUE@@am__fastdepUPC_FALSE@	source='collectives/upc_coll_broadcast.upc' object='upc_coll_broadcast.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepUPC_FALSE@	DEPDIR=$(DEPDIR) $(UPCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepUPC_FALSE@	$(LIBTOOL)  $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(UPC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_UPCFLAGS) $(UPCFLAGS) -c -o upc_coll_broadcast.lo `test -f 'collectives/upc_coll_broadcast.upc' || echo '$(srcdir)/'`collectives/upc_coll_broadcast.upc

upc_coll_err.lo: collectives/upc_coll_err.upc
@am__fastdepUPC_TRUE@	$(LIBTOOL)  $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(UPC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_UPCFLAGS) $(UPCFLAGS) -MT upc_coll_err.lo -MD -MP -MF $(DEPDIR)/upc_coll_err.Tpo -c -o upc_coll_err.lo `test -f 'collectives/upc_coll_err.upc' || echo '$(srcdir)/'`collectives/upc_coll_err.upc
@am__fastdepUPC_TRUE@	$(am__mv) $(DEPDIR)/upc_coll_err.Tpo $(DEPDIR)/upc_coll_err.Plo
@AMDEP_TRUE@@am__fastdepUPC_FALSE@	source='collectives/upc_coll_err.upc' object='upc_coll_err.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepUPC_FALSE@	DEPDIR=$(DEPDIR) $(UPCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepUPC_FALSE@	$(LIBTOOL)  $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(UPC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_UPCFLAGS) $(UPCFLAGS) -c -o upc_coll_err.lo `test -f 'collectives/upc_coll_err.upc' || echo '$(srcdir)/'`collectives/upc_coll_err.upc

upc_coll_exchange.lo: collectives/upc_coll_exchange.upc
@am__fastdepUPC_TRUE@	$(LIBTOOL)  $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(UPC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_UPCFLAGS) $(UPCFLAGS) -MT upc_coll_exchange.lo -MD -MP -MF $(DEPDIR)/upc_coll_exchange.Tpo -c -o upc_coll_exchange.lo `test -f 'collectives/upc_coll_exchange.upc' || echo '$(srcdir)/'`collectives/upc_coll_exchange.upc
@am__fastdepUPC_TRUE@	$(am__mv) $(DEPDIR)/upc_coll_exchange.Tpo $(DEPDIR)/upc_coll_exchange.Plo
@AMDEP_TRUE@@am__fastdepUPC_FALSE@	source='collectives/upc_coll_exchange.upc' object='upc_coll_exchange.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepUPC_FALSE@	DEPDIR=$(DEPDIR) $(UPCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepUPC_FALSE@	$(LIBTOOL)  $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(UPC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_UPCFLAGS) $(UPCFLAGS) -c -o upc_coll_exchange.lo `test -f 'collectives/upc_coll_exchange.upc' || echo '$(srcdir)/'`collectives/upc_coll_exchange.upc

upc_coll_gather_all.lo: collectives/upc_coll_gather_all.upc
@am__fastdepUPC_TRUE@	$(LIBTOOL)  $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(UPC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_UPCFLAGS) $(UPCFLAGS) -MT upc_coll_gather_all.lo -MD -MP -MF $(DEPDIR)/upc_coll_gather_all.Tpo -c -o upc_coll_gather_all.lo `test -f 'collectives/upc_coll_gather_all.upc' || echo '$(srcdir)/'`collectives/upc_coll_gather_all.upc
@am__fastdepUPC_TRUE@	$(am__mv) $(DEPDIR)/upc_coll_gather_all.Tpo $(DEPDIR)/upc_coll_gather_all.Plo
@AMDEP_TRUE@@am__fastdepUPC_FALSE@	source='collectives/upc_coll_gather_all.upc' object='upc_coll_gather_all.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepUPC_FALSE@	DEPDIR=$(DEPDIR) $(UPCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepUPC_FALSE@	$(LIBTOOL)  $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(UPC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_UPCFLAGS) $(UPCFLAGS) -c -o upc_coll_gather_all.lo `test -f 'collectives/upc_coll_gather_all.upc' || echo '$(srcdir)/'`collectives/upc_coll_gather_all.upc

upc_coll_gather.lo: collectives/upc_coll_gather.upc
@am__fastdepUPC_TRUE@	$(LIBTOOL)  $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(UPC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_UPCFLAGS) $(UPCFLAGS) -MT upc_coll_gather.lo -MD -MP -MF $(DEPDIR)/upc_coll_gather.Tpo -c -o upc_coll_gather.lo `test -f 'collectives/upc_coll_gather.upc' || echo '$(srcdir)/'`collectives/upc_coll_gather.upc
@am__fastdepUPC_TRUE@	$(am__mv) $(DEPDIR)/upc_coll_gather.Tpo $(DEPDIR)/upc_coll_gather.Plo
@AMDEP_TRUE@@am__fastdepUPC_FALSE@	source='collectives/upc_coll_gather.upc' object='upc_coll_gather.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepUPC_FALSE@	DEPDIR=$(DEPDIR) $(UPCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepUPC_FALSE@	$(LIBTOOL)  $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(UPC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_UPCFLAGS) $(UPCFLAGS) -c -o upc_coll_gather.lo `test -f 'collectives/upc_coll_gather.upc' || echo '$(srcdir)/'`collectives/upc_coll_gather.upc

upc_coll_init.lo: collectives/upc_coll_init.upc
@am__fastdepUPC_TRUE@	$(LIBTOOL)  $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(UPC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_UPCFLAGS) $(UPCFLAGS) -MT upc_coll_init.lo -MD -MP -MF $(DEPDIR)/upc_coll_init.Tpo -c -o upc_coll_init.lo `test -f 'collectives/upc_coll_init.upc' || echo '$(srcdir)/'`collectives/upc_coll_init.upc
@am__fastdepUPC_TRUE@	$(am__mv) $(DEPDIR)/upc_coll_init.Tpo $(DEPDIR)/upc_coll_init.Plo
@AMDEP_TRUE@@am__fastdepUPC_FALSE@	source='collectives/upc_coll_init.upc' object='upc_coll_init.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepUPC_FALSE@	DEPDIR=$(DEPDIR) $(UPCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepUPC_FALSE@	$(LIBTOOL)  $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(UPC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_UPCFLAGS) $(UPCFLAGS) -c -o upc_coll_init.lo `test -f 'collectives/upc_coll_init.upc' || echo '$(srcdir)/'`collectives/upc_coll_init.upc

upc_coll_permute.lo: collectives/upc_coll_permute.upc
@am__fastdepUPC_TRUE@	$(LIBTOOL)  $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(UPC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_UPCFLAGS) $(UPCFLAGS) -MT upc_coll_permute.lo -MD -MP -MF $(DEPDIR)/upc_coll_permute.Tpo -c -o upc_coll_permute.lo `test -f 'collectives/upc_coll_permute.upc' || echo '$(srcdir)/'`collectives/upc_coll_permute.upc
@am__fastdepUPC_TRUE@	$(am__mv) $(DEPDIR)/upc_coll_permute.Tpo $(DEPDIR)/upc_coll_permute.Plo
@AMDEP_TRUE@@am__fastdepUPC_FALSE@	source='collectives/upc_coll_permute.upc' object='upc_coll_permute.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepUPC_FALSE@	DEPDIR=$(DEPDIR) $(UPCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepUPC_FALSE@	$(LIBTOOL)  $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(UPC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_UPCFLAGS) $(UPCFLAGS) -c -o upc_coll_permute.lo `test -f 'collectives/upc_coll_permute.upc' || echo '$(srcdir)/'`collectives/upc_coll_permute.upc

upc_coll_prefix_reduce.lo: $(LIBGUPC_COLL_SRCDIR)/upc_coll_prefix_reduce.upc
@am__fastdepUPC_TRUE@	$(LIBTOOL)  $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(UPC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_UPCFLAGS) $(UPCFLAGS) -MT upc_coll_prefix_reduce.lo -MD -MP -MF $(DEPDIR)/upc_coll_prefix_reduce.Tpo -c -o upc_coll_prefix_reduce.lo `test -f '$(LIBGUPC_COLL_SRCDIR)/upc_coll_prefix_reduce.upc' || echo '$(srcdir)/'`$(LIBGUPC_COLL_SRCDIR)/upc_coll_prefix_reduce.upc
@am__fastdepUPC_TRUE@	$(am__mv) $(DEPDIR)/upc_coll_prefix_reduce.Tpo $(DEPDIR)/upc_coll_prefix_reduce.Plo
@AMDEP_TRUE@@am__fastdepUPC_FALSE@	source='$(LIBGUPC_COLL_SRCDIR)/upc_coll_prefix_reduce.upc' object='upc_coll_prefix_reduce.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepUPC_FALSE@	DEPDIR=$(DEPDIR) $(UPCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepUPC_FALSE@	$(LIBTOOL)  $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(UPC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_UPCFLAGS) $(UPCFLAGS) -c -o upc_coll_prefix_reduce.lo `test -f '$(LIBGUPC_COLL_SRCDIR)/upc_coll_prefix_reduce.upc' || echo '$(srcdir)/'`$(LIBGUPC_COLL_SRCDIR)/upc_coll_prefix_reduce.upc

upc_coll_scatter.lo: collectives/upc_coll_scatter.upc
@am__fastdepUPC_TRUE@	$(LIBTOOL)  $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(UPC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_UPCFLAGS) $(UPCFLAGS) -MT upc_coll_scatter.lo -MD -MP -MF $(DEPDIR)/upc_coll_scatter.Tpo -c -o upc_coll_scatter.lo `test -f 'collectives/upc_coll_scatter.upc' || echo '$(srcdir)/'`collectives/upc_coll_scatter.upc
@am__fastdepUPC_TRUE@	$(am__mv) $(DEPDIR)/upc_coll_scatter.Tpo $(DEPDIR)/upc_coll_scatter.Plo
@AMDEP_TRUE@@am__fastdepUPC_FALSE@	source='collectives/upc_coll_scatter.upc' object='upc_coll_scatter.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepUPC_FALSE@	DEPDIR=$(DEPDIR) $(UPCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepUPC_FALSE@	$(LIBTOOL)  $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(UPC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_UPCFLAGS) $(UPCFLAGS) -c -o upc_coll_scatter.lo `test -f 'collectives/upc_coll_scatter.upc' || echo '$(srcdir)/'`collectives/upc_coll_scatter.upc

upc_coll_sort.lo: collectives/upc_coll_sort.upc
@am__fastdepUPC_TRUE@	$(LIBTOOL)  $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(UPC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_UPCFLAGS) $(UPCFLAGS) -MT upc_coll_sort.lo -MD -MP -MF $(DEPDIR)/upc_coll_sort.Tpo -c -o upc_coll_sort.lo `test -f 'collectives/upc_coll_sort.upc' || echo '$(srcdir)/'`collectives/upc_coll_sort.upc
@am__fastdepUPC_TRUE@	$(am__mv) $(DEPDIR)/upc_coll_sort.Tpo $(DEPDIR)/upc_coll_sort.Plo
@AMDEP_TRUE@@am__fastdepUPC_FALSE@	source='collectives/upc_coll_sort.upc' object='upc_coll_sort.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepUPC_FALSE@	DEPDIR=$(DEPDIR) $(UPCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepUPC_FALSE@	$(LIBTOOL)  $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(UPC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_UPCFLAGS) $(UPCFLAGS) -c -o upc_coll_sort.lo `test -f 'collectives/upc_coll_sort.upc' || echo '$(srcdir)/'`collectives/upc_coll_sort.upc

libgupc_pt_la-upc_allocg.lo: smp/upc_allocg.upc
@am__fastdepUPC_TRUE@	$(LIBTOOL)  $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(UPC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libgupc_pt_la_CPPFLAGS) $(CPPFLAGS) $(libgupc_pt_la_UPCFLAGS) $(UPCFLAGS) -MT libgupc_pt_la-upc_allocg.lo -MD -MP -MF $(DEPDIR)/libgupc_pt_la-upc_allocg.Tpo -c -o libgupc_pt_la-upc_allocg.lo `test -f 'smp/upc_allocg.upc' || echo '$(srcdir)/'`smp/upc_allocg.upc
@am__fastdepUPC_TRUE@	$(am__mv) $(DEPDIR)/libgupc_pt_la-upc_allocg.Tpo $(DEPDIR)/libgupc_pt_la-upc_allocg.Plo
@AMDEP_TRUE@@am__fastdepUPC_FALSE@	source='smp/upc_allocg.upc' object='libgupc_pt_la-upc_allocg.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepUPC_FALSE@	DEPDIR=$(DEPDIR) $(UPCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepUPC_FALSE@	$(LIBTOOL)  $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(UPC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libgupc_pt_la_CPPFLAGS) $(CPPFLAGS) $(libgupc_pt_la_UPCFLAGS) $(UPCFLAGS) -c -o libgupc_pt_la-upc_allocg.lo `test -f 'smp/upc_allocg.upc' || echo '$(srcdir)/'`smp/upc_allocg.upc

libgupc_pt_la-upc_alloc.lo: smp/upc_alloc.upc
@am__fastdepUPC_TRUE@	$(LIBTOOL)  $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(UPC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libgupc_pt_la_CPPFLAGS) $(CPPFLAGS) $(libgupc_pt_la_UPCFLAGS) $(UPCFLAGS) -MT libgupc_pt_la-upc_alloc.lo -MD -MP -MF $(DEPDIR)/libgupc_pt_la-upc_alloc.Tpo -c -o libgupc_pt_la-upc_alloc.lo `test -f 'smp/upc_alloc.upc' || echo '$(srcdir)/'`smp/upc_alloc.upc
@am__fastdepUPC_TRUE@	$(am__mv) $(DEPDIR)/libgupc_pt_la-upc_alloc.Tpo $(DEPDIR)/libgupc_pt_la-upc_alloc.Plo
@AMDEP_TRUE@@am__fastdepUPC_FALSE@	source='smp/upc_alloc.upc' object='libgupc_pt_la-upc_alloc.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepUPC_FALSE@	DEPDIR=$(DEPDIR) $(UPCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepUPC_FALSE@	$(LIBTOOL)  $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(UPC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libgupc_pt_la_CPPFLAGS) $(CPPFLAGS) $(libgupc_pt_la_UPCFLAGS) $(UPCFLAGS) -c -o libgupc_pt_la-upc_alloc.lo `test -f 'smp/upc_alloc.upc' || echo '$(srcdir)/'`smp/upc_alloc.upc

libgupc_pt_la-upc_atomic.lo: smp/upc_atomic.upc
@am__fastdepUPC_TRUE@	$(LIBTOOL)  $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(UPC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libgupc_pt_la_CPPFLAGS) $(CPPFLAGS) $(libgupc_pt_la_UPCFLAGS) $(UPCFLAGS) -MT libgupc_pt_la-upc_atomic.lo -MD -MP -MF $(DEPDIR)/libgupc_pt_la-upc_atomic.Tpo -c -o libgupc_pt_la-upc_atomic.lo `test -f 'smp/upc_atomic.upc' || echo '$(srcdir)/'`smp/upc_atomic.upc
@am__fastdepUPC_TRUE@	$(am__mv) $(DEPDIR)/libgupc_pt_la-upc_atomic.Tpo $(DEPDIR)/libgupc_pt_la-upc_atomic.Plo
@AMDEP_TRUE@@am__fastdepUPC_FALSE@	source='smp/upc_atomic.upc' object='libgupc_pt_la-upc_atomic.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepUPC_FALSE@	DEPDIR=$(DEPDIR) $(UPCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepUPC_FALSE@	$(LIBTOOL)  $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(UPC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libgupc_pt_la_CPPFLAGS) $(CPPFLAGS) $(libgupc_pt_la_UPCFLAGS) $(UPCFLAGS) -c -o libgupc_pt_la-upc_atomic.lo `test -f 'smp/upc_atomic.upc' || echo '$(srcdir)/'`smp/upc_atomic.upc

libgupc_pt_la-upc_barrier.lo: smp/upc_barrier.upc
@am__fastdepUPC_TRUE@	$(LIBTOOL)  $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(UPC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libgupc_pt_la_CPPFLAGS) $(CPPFLAGS) $(libgupc_pt_la_UPCFLAGS) $(UPCFLAGS) -MT libgupc_pt_la-upc_barrier.lo -MD -MP -MF $(DEPDIR)/libgupc_pt_la-upc_barrier.Tpo -c -o libgupc_pt_la-upc_barrier.lo `test -f 'smp/upc_barrier.upc' || echo '$(srcdir)/'`smp/upc_barrier.upc
@am__fastdepUPC_TRUE@	$(am__mv) $(DEPDIR)/libgupc_pt_la-upc_barrier.Tpo $(DEPDIR)/libgupc_pt_la-upc_barrier.Plo
@AMDEP_TRUE@@am__fastdepUPC_FALSE@	source='smp/upc_barrier.upc' object='libgupc_pt_la-upc_barrier.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepUPC_FALSE@	DEPDIR=$(DEPDIR) $(UPCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepUPC_FALSE@	$(LIBTOOL)  $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(UPC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libgupc_pt_la_CPPFLAGS) $(CPPFLAGS) $(libgupc_pt_la_UPCFLAGS) $(UPCFLAGS) -c -o libgupc_pt_la-upc_barrier.lo `test -f 'smp/upc_barrier.upc' || echo '$(srcdir)/'`smp/upc_barrier.upc

libgupc_pt_la-upc_castable.lo: smp/upc_castable.upc
@am__fastdepUPC_TRUE@	$(LIBTOOL)  $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(UPC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libgupc_pt_la_CPPFLAGS) $(CPPFLAGS) $(libgupc_pt_la_UPCFLAGS) $(UPCFLAGS) -MT libgupc_pt_la-upc_castable.lo -MD -MP -MF $(DEPDIR)/libgupc_pt_la-upc_castable.Tpo -c -o libgupc_pt_la-upc_castable.lo `test -f 'smp/upc_castable.upc' || echo '$(srcdir)/'`smp/upc_castable.upc
@am__fastdepUPC_TRUE@	$(am__mv) $(DEPDIR)/libgupc_pt_la-upc_castable.Tpo $(DEPDIR)/libgupc_pt_la-upc_castable.Plo
@AMDEP_TRUE@@am__fastdepUPC_FALSE@	source='smp/upc_castable.upc' object='libgupc_pt_la-upc_castable.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepUPC_FALSE@	DEPDIR=$(DEPDIR) $(UPCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepUPC_FALSE@	$(LIBTOOL)  $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(UPC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libgupc_pt_la_CPPFLAGS) $(CPPFLAGS) $(libgupc_pt_la_UPCFLAGS) $(UPCFLAGS) -c -o libgupc_pt_la-upc_castable.lo `test -f 'smp/upc_castable.upc' || echo '$(srcdir)/'`smp/upc_castable.upc

libgupc_pt_la-upc_lock.lo: smp/upc_lock.upc
@am__fastdepUPC_TRUE@	$(LIBTOOL)  $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(UPC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libgupc_pt_la_CPPFLAGS) $(CPPFLAGS) $(libgupc_pt_la_UPCFLAGS) $(UPCFLAGS) -MT libgupc_pt_la-upc_lock.lo -MD -MP -MF $(DEPDIR)/libgupc_pt_la-upc_lock.Tpo -c -o libgupc_pt_la-upc_lock.lo `test -f 'smp/upc_lock.upc' || echo '$(srcdir)/'`smp/upc_lock.upc
@am__fastdepUPC_TRUE@	$(am__mv) $(DEPDIR)/libgupc_pt_la-upc_lock.Tpo $(DEPDIR)/libgupc_pt_la-upc_lock.Plo
@AMDEP_TRUE@@am__fastdepUPC_FALSE@	source='smp/upc_lock.upc' object='libgupc_pt_la-upc_lock.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepUPC_FALSE@	DEPDIR=$(DEPDIR) $(UPCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepUPC_FALSE@	$(LIBTOOL)  $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(UPC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libgupc_pt_la_CPPFLAGS) $(CPPFLAGS) $(libgupc_pt_la_UPCFLAGS) $(UPCFLAGS) -c -o libgupc_pt_la-upc_lock.lo `test -f 'smp/upc_lock.upc' || echo '$(srcdir)/'`smp/upc_lock.upc

libgupc_pt_la-upc_nb.lo: smp/upc_nb.upc
@am__fastdepUPC_TRUE@	$(LIBTOOL)  $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(UPC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libgupc_pt_la_CPPFLAGS) $(CPPFLAGS) $(libgupc_pt_la_UPCFLAGS) $(UPCFLAGS) -MT libgupc_pt_la-upc_nb.lo -MD -MP -MF $(DEPDIR)/libgupc_pt_la-upc_nb.Tpo -c -o libgupc_pt_la-upc_nb.lo `test -f 'smp/upc_nb.upc' || echo '$(srcdir)/'`smp/upc_nb.upc
@am__fastdepUPC_TRUE@	$(am__mv) $(DEPDIR)/libgupc_pt_la-upc_nb.Tpo $(DEPDIR)/libgupc_pt_la-upc_nb.Plo
@AMDEP_TRUE@@am__fastdepUPC_FALSE@	source='smp/upc_nb.upc' object='libgupc_pt_la-upc_nb.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepUPC_FALSE@	DEPDIR=$(DEPDIR) $(UPCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepUPC_FALSE@	$(LIBTOOL)  $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(UPC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libgupc_pt_la_CPPFLAGS) $(CPPFLAGS) $(libgupc_pt_la_UPCFLAGS) $(UPCFLAGS) -c -o libgupc_pt_la-upc_nb.lo `test -f 'smp/upc_nb.upc' || echo '$(srcdir)/'`smp/upc_nb.upc

libgupc_pt_la-gupcr_alloc.lo: portals4/gupcr_alloc.upc
@am__fastdepUPC_TRUE@	$(LIBTOOL)  $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(UPC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libgupc_pt_la_CPPFLAGS) $(CPPFLAGS) $(libgupc_pt_la_UPCFLAGS) $(UPCFLAGS) -MT libgupc_pt_la-gupcr_alloc.lo -MD -MP -MF $(DEPDIR)/libgupc_pt_la-gupcr_alloc.Tpo -c -o libgupc_pt_la-gupcr_alloc.lo `test -f 'portals4/gupcr_alloc.upc' || echo '$(srcdir)/'`portals4/gupcr_alloc.upc
@am__fastdepUPC_TRUE@	$(am__mv) $(DEPDIR)/libgupc_pt_la-gupcr_alloc.Tpo $(DEPDIR)/libgupc_pt_la-gupcr_alloc.Plo
@AMDEP_TRUE@@am__fastdepUPC_FALSE@	source='portals4/gupcr_alloc.upc' object='libgupc_pt_la-gupcr_alloc.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepUPC_FALSE@	DEPDIR=$(DEPDIR) $(UPCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepUPC_FALSE@	$(LIBTOOL)  $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(UPC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libgupc_pt_la_CPPFLAGS) $(CPPFLAGS) $(libgupc_pt_la_UPCFLAGS) $(UPCFLAGS) -c -o libgupc_pt_la-gupcr_alloc.lo `test -f 'portals4/gupcr_alloc.upc' || echo '$(srcdir)/'`portals4/gupcr_alloc.upc

libgupc_pt_la-gupcr_atomic.lo: portals4/gupcr_atomic.upc
@am__fastdepUPC_TRUE@	$(LIBTOOL)  $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(UPC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libgupc_pt_la_CPPFLAGS) $(CPPFLAGS) $(libgupc_pt_la_UPCFLAGS) $(UPCFLAGS) -MT libgupc_pt_la-gupcr_atomic.lo -MD -MP -MF $(DEPDIR)/libgupc_pt_la-gupcr_atomic.Tpo -c -o libgupc_pt_la-gupcr_atomic.lo `test -f 'portals4/gupcr_atomic.upc' || echo '$(srcdir)/'`portals4/gupcr_atomic.upc
@am__fastdepUPC_TRUE@	$(am__mv) $(DEPDIR)/libgupc_pt_la-gupcr_atomic.Tpo $(DEPDIR)/libgupc_pt_la-gupcr_atomic.Plo
@AMDEP_TRUE@@am__fastdepUPC_FALSE@	source='portals4/gupcr_atomic.upc' object='libgupc_pt_la-gupcr_atomic.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepUPC_FALSE@	DEPDIR=$(DEPDIR) $(UPCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepUPC_FALSE@	$(LIBTOOL)  $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(UPC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libgupc_pt_la_CPPFLAGS) $(CPPFLAGS) $(libgupc_pt_la_UPCFLAGS) $(UPCFLAGS) -c -o libgupc_pt_la-gupcr_atomic.lo `test -f 'portals4/gupcr_atomic.upc' || echo '$(srcdir)/'`portals4/gupcr_atomic.upc

libgupc_pt_la-gupcr_castable.lo: portals4/gupcr_castable.upc
@am__fastdepUPC_TRUE@	$(LIBTOOL)  $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(UPC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libgupc_pt_la_CPPFLAGS) $(CPPFLAGS) $(libgupc_pt_la_UPCFLAGS) $(UPCFLAGS) -MT libgupc_pt_la-gupcr_castable.lo -MD -MP -MF $(DEPDIR)/libgupc_pt_la-gupcr_castable.Tpo -c -o libgupc_pt_la-gupcr_castable.lo `test -f 'portals4/gupcr_castable.upc' || echo '$(srcdir)/'`portals4/gupcr_castable.upc
@am__fastdepUPC_TRUE@	$(am__mv) $(DEPDIR)/libgupc_pt_la-gupcr_castable.Tpo $(DEPDIR)/libgupc_pt_la-gupcr_castable.Plo
@AMDEP_TRUE@@am__fastdepUPC_FALSE@	source='portals4/gupcr_castable.upc' object='libgupc_pt_la-gupcr_castable.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepUPC_FALSE@	DEPDIR=$(DEPDIR) $(UPCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepUPC_FALSE@	$(LIBTOOL)  $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(UPC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libgupc_pt_la_CPPFLAGS) $(CPPFLAGS) $(libgupc_pt_la_UPCFLAGS) $(UPCFLAGS) -c -o libgupc_pt_la-gupcr_castable.lo `test -f 'portals4/gupcr_castable.upc' || echo '$(srcdir)/'`portals4/gupcr_castable.upc

libgupc_pt_la-gupcr_lock.lo: portals4/gupcr_lock.upc
@am__fastdepUPC_TRUE@	$(LIBTOOL)  $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(UPC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libgupc_pt_la_CPPFLAGS) $(CPPFLAGS) $(libgupc_pt_la_UPCFLAGS) $(UPCFLAGS) -MT libgupc_pt_la-gupcr_lock.lo -MD -MP -MF $(DEPDIR)/libgupc_pt_la-gupcr_lock.Tpo -c -o libgupc_pt_la-gupcr_lock.lo `test -f 'portals4/gupcr_lock.upc' || echo '$(srcdir)/'`portals4/gupcr_lock.upc
@am__fastdepUPC_TRUE@	$(am__mv) $(DEPDIR)/libgupc_pt_la-gupcr_lock.Tpo $(DEPDIR)/libgupc_pt_la-gupcr_lock.Plo
@AMDEP_TRUE@@am__fastdepUPC_FALSE@	source='portals4/gupcr_lock.upc' object='libgupc_pt_la-gupcr_lock.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepUPC_FALSE@	DEPDIR=$(DEPDIR) $(UPCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepUPC_FALSE@	$(LIBTOOL)  $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(UPC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libgupc_pt_la_CPPFLAGS) $(CPPFLAGS) $(libgupc_pt_la_UPCFLAGS) $(UPCFLAGS) -c -o libgupc_pt_la-gupcr_lock.lo `test -f 'portals4/gupcr_lock.upc' || echo '$(srcdir)/'`portals4/gupcr_lock.upc

libgupc_pt_la-gupcr_nb.lo: portals4/gupcr_nb.upc
@am__fastdepUPC_TRUE@	$(LIBTOOL)  $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(UPC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libgupc_pt_la_CPPFLAGS) $(CPPFLAGS) $(libgupc_pt_la_UPCFLAGS) $(UPCFLAGS) -MT libgupc_pt_la-gupcr_nb.lo -MD -MP -MF $(DEPDIR)/libgupc_pt_la-gupcr_nb.Tpo -c -o libgupc_pt_la-gupcr_nb.lo `test -f 'portals4/gupcr_nb.upc' || echo '$(srcdir)/'`portals4/gupcr_nb.upc
@am__fastdepUPC_TRUE@	$(am__mv) $(DEPDIR)/libgupc_pt_la-gupcr_nb.Tpo $(DEPDIR)/libgupc_pt_la-gupcr_nb.Plo
@AMDEP_TRUE@@am__fastdepUPC_FALSE@	source='portals4/gupcr_nb.upc' object='libgupc_pt_la-gupcr_nb.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepUPC_FALSE@	DEPDIR=$(DEPDIR) $(UPCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepUPC_FALSE@	$(LIBTOOL)  $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(UPC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libgupc_pt_la_CPPFLAGS) $(CPPFLAGS) $(libgupc_pt_la_UPCFLAGS) $(UPCFLAGS) -c -o libgupc_pt_la-gupcr_nb.lo `test -f 'portals4/gupcr_nb.upc' || echo '$(srcdir)/'`portals4/gupcr_nb.upc

libgupc_pt_la-gupcr_coll_broadcast.lo: portals4/gupcr_coll_broadcast.upc
@am__fastdepUPC_TRUE@	$(LIBTOOL)  $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(UPC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libgupc_pt_la_CPPFLAGS) $(CPPFLAGS) $(libgupc_pt_la_UPCFLAGS) $(UPCFLAGS) -MT libgupc_pt_la-gupcr_coll_broadcast.lo -MD -MP -MF $(DEPDIR)/libgupc_pt_la-gupcr_coll_broadcast.Tpo -c -o libgupc_pt_la-gupcr_coll_broadcast.lo `test -f 'portals4/gupcr_coll_broadcast.upc' || echo '$(srcdir)/'`portals4/gupcr_coll_broadcast.upc
@am__fastdepUPC_TRUE@	$(am__mv) $(DEPDIR)/libgupc_pt_la-gupcr_coll_broadcast.Tpo $(DEPDIR)/libgupc_pt_la-gupcr_coll_broadcast.Plo
@AMDEP_TRUE@@am__fastdepUPC_FALSE@	source='portals4/gupcr_coll_broadcast.upc' object='libgupc_pt_la-gupcr_coll_broadcast.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepUPC_FALSE@	DEPDIR=$(DEPDIR) $(UPCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepUPC_FALSE@	$(LIBTOOL)  $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(UPC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libgupc_pt_la_CPPFLAGS) $(CPPFLAGS) $(libgupc_pt_la_UPCFLAGS) $(UPCFLAGS) -c -o libgupc_pt_la-gupcr_coll_broadcast.lo `test -f 'portals4/gupcr_coll_broadcast.upc' || echo '$(srcdir)/'`portals4/gupcr_coll_broadcast.upc

libgupc_pt_la-gupcr_coll_init.lo: portals4/gupcr_coll_init.upc
@am__fastdepUPC_TRUE@	$(LIBTOOL)  $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(UPC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libgupc_pt_la_CPPFLAGS) $(CPPFLAGS) $(libgupc_pt_la_UPCFLAGS) $(UPCFLAGS) -MT libgupc_pt_la-gupcr_coll_init.lo -MD -MP -MF $(DEPDIR)/libgupc_pt_la-gupcr_coll_init.Tpo -c -o libgupc_pt_la-gupcr_coll_init.lo `test -f 'portals4/gupcr_coll_init.upc' || echo '$(srcdir)/'`portals4/gupcr_coll_init.upc
@am__fastdepUPC_TRUE@	$(am__mv) $(DEPDIR)/libgupc_pt_la-gupcr_coll_init.Tpo $(DEPDIR)/libgupc_pt_la-gupcr_coll_init.Plo
@AMDEP_TRUE@@am__fastdepUPC_FALSE@	source='portals4/gupcr_coll_init.upc' object='libgupc_pt_la-gupcr_coll_init.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepUPC_FALSE@	DEPDIR=$(DEPDIR) $(UPCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepUPC_FALSE@	$(LIBTOOL)  $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(UPC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libgupc_pt_la_CPPFLAGS) $(CPPFLAGS) $(libgupc_pt_la_UPCFLAGS) $(UPCFLAGS) -c -o libgupc_pt_la-gupcr_coll_init.lo `test -f 'portals4/gupcr_coll_init.upc' || echo '$(srcdir)/'`portals4/gupcr_coll_init.upc

libgupc_pt_la-upc_coll_reduce.lo: $(LIBGUPC_COLL_SRCDIR)/upc_coll_reduce.upc
@am__fastdepUPC_TRUE@	$(LIBTOOL)  $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(UPC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libgupc_pt_la_CPPFLAGS) $(CPPFLAGS) $(libgupc_pt_la_UPCFLAGS) $(UPCFLAGS) -MT libgupc_pt_la-upc_coll_reduce.lo -MD -MP -MF $(DEPDIR)/libgupc_pt_la-upc_coll_reduce.Tpo -c -o libgupc_pt_la-upc_coll_reduce.lo `test -f '$(LIBGUPC_COLL_SRCDIR)/upc_coll_reduce.upc' || echo '$(srcdir)/'`$(LIBGUPC_COLL_SRCDIR)/upc_coll_reduce.upc
@am__fastdepUPC_TRUE@	$(am__mv) $(DEPDIR)/libgupc_pt_la-upc_coll_reduce.Tpo $(DEPDIR)/libgupc_pt_la-upc_coll_reduce.Plo
@AMDEP_TRUE@@am__fastdepUPC_FALSE@	source='$(LIBGUPC_COLL_SRCDIR)/upc_coll_reduce.upc' object='libgupc_pt_la-upc_coll_reduce.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepUPC_FALSE@	DEPDIR=$(DEPDIR) $(UPCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepUPC_FALSE@	$(LIBTOOL)  $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(UPC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libgupc_pt_la_CPPFLAGS) $(CPPFLAGS) $(libgupc_pt_la_UPCFLAGS) $(UPCFLAGS) -c -o libgupc_pt_la-upc_coll_reduce.lo `test -f '$(LIBGUPC_COLL_SRCDIR)/upc_coll_reduce.upc' || echo '$(srcdir)/'`$(LIBGUPC_COLL_SRCDIR)/upc_coll_reduce.upc

libgupc_pt_la-gupcr_coll_reduce.lo: $(LIBGUPC_PORTALS4_SRCDIR)/gupcr_coll_reduce.upc
@am__fastdepUPC_TRUE@	$(LIBTOOL)  $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(UPC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libgupc_pt_la_CPPFLAGS) $(CPPFLAGS) $(libgupc_pt_la_UPCFLAGS) $(UPCFLAGS) -MT libgupc_pt_la-gupcr_coll_reduce.lo -MD -MP -MF $(DEPDIR)/libgupc_pt_la-gupcr_coll_reduce.Tpo -c -o libgupc_pt_la-gupcr_coll_reduce.lo `test -f '$(LIBGUPC_PORTALS4_SRCDIR)/gupcr_coll_reduce.upc' || echo '$(srcdir)/'`$(LIBGUPC_PORTALS4_SRCDIR)/gupcr_coll_reduce.upc
@am__fastdepUPC_TRUE@	$(am__mv) $(DEPDIR)/libgupc_pt_la-gupcr_coll_reduce.Tpo $(DEPDIR)/libgupc_pt_la-gupcr_coll_reduce.Plo
@AMDEP_TRUE@@am__fastdepUPC_FALSE@	source='$(LIBGUPC_PORTALS4_SRCDIR)/gupcr_coll_reduce.upc' object='libgupc_pt_la-gupcr_coll_reduce.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepUPC_FALSE@	DEPDIR=$(DEPDIR) $(UPCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepUPC_FALSE@	$(LIBTOOL)  $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(UPC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libgupc_pt_la_CPPFLAGS) $(CPPFLAGS) $(libgupc_pt_la_UPCFLAGS) $(UPCFLAGS) -c -o libgupc_pt_la-gupcr_coll_reduce.lo `test -f '$(LIBGUPC_PORTALS4_SRCDIR)/gupcr_coll_reduce.upc' || echo '$(srcdir)/'`$(LIBGUPC_PORTALS4_SRCDIR)/gupcr_coll_reduce.upc

libgupc_pt_la-upc_coll_broadcast.lo: collectives/upc_coll_broadcast.upc
@am__fastdepUPC_TRUE@	$(LIBTOOL)  $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(UPC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libgupc_pt_la_CPPFLAGS) $(CPPFLAGS) $(libgupc_pt_la_UPCFLAGS) $(UPCFLAGS) -MT libgupc_pt_la-upc_coll_broadcast.lo -MD -MP -MF $(DEPDIR)/libgupc_pt_la-upc_coll_broadcast.Tpo -c -o libgupc_pt_la-upc_coll_broadcast.lo `test -f 'collectives/upc_coll_broadcast.upc' || echo '$(srcdir)/'`collectives/upc_coll_broadcast.upc
@am__fastdepUPC_TRUE@	$(am__mv) $(DEPDIR)/libgupc_pt_la-upc_coll_broadcast.Tpo $(DEPDIR)/libgupc_pt_la-upc_coll_broadcast.Plo
@AMDEP_TRUE@@am__fastdepUPC_FALSE@	source='collectives/upc_coll_broadcast.upc' object='libgupc_pt_la-upc_coll_broadcast.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepUPC_FALSE@	DEPDIR=$(DEPDIR) $(UPCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepUPC_FALSE@	$(LIBTOOL)  $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(UPC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libgupc_pt_la_CPPFLAGS) $(CPPFLAGS) $(libgupc_pt_la_UPCFLAGS) $(UPCFLAGS) -c -o libgupc_pt_la-upc_coll_broadcast.lo `test -f 'collectives/upc_coll_broadcast.upc' || echo '$(srcdir)/'`collectives/upc_coll_broadcast.upc

libgupc_pt_la-upc_coll_err.lo: collectives/upc_coll_err.upc
@am__fastdepUPC_TRUE@	$(LIBTOOL)  $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(UPC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libgupc_pt_la_CPPFLAGS) $(CPPFLAGS) $(libgupc_pt_la_UPCFLAGS) $(UPCFLAGS) -MT libgupc_pt_la-upc_coll_err.lo -MD -MP -MF $(DEPDIR)/libgupc_pt_la-upc_coll_err.Tpo -c -o libgupc_pt_la-upc_coll_err.lo `test -f 'collectives/upc_coll_err.upc' || echo '$(srcdir)/'`collectives/upc_coll_err.upc
@am__fastdepUPC_TRUE@	$(am__mv) $(DEPDIR)/libgupc_pt_la-upc_coll_err.Tpo $(DEPDIR)/libgupc_pt_la-upc_coll_err.Plo
@AMDEP_TRUE@@am__fastdepUPC_FALSE@	source='collectives/upc_coll_err.upc' object='libgupc_pt_la-upc_coll_err.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepUPC_FALSE@	DEPDIR=$(DEPDIR) $(UPCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepUPC_FALSE@	$(LIBTOOL)  $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(UPC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libgupc_pt_la_CPPFLAGS) $(CPPFLAGS) $(libgupc_pt_la_UPCFLAGS) $(UPCFLAGS) -c -o libgupc_pt_la-upc_coll_err.lo `test -f 'collectives/upc_coll_err.upc' || echo '$(srcdir)/'`collectives/upc_coll_err.upc

libgupc_pt_la-upc_coll_exchange.lo: collectives/upc_coll_exchange.upc
@am__fastdepUPC_TRUE@	$(LIBTOOL)  $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(UPC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libgupc_pt_la_CPPFLAGS) $(CPPFLAGS) $(libgupc_pt_la_UPCFLAGS) $(UPCFLAGS) -MT libgupc_pt_la-upc_coll_exchange.lo -MD -MP -MF $(DEPDIR)/libgupc_pt_la-upc_coll_exchange.Tpo -c -o libgupc_pt_la-upc_coll_exchange.lo `test -f 'collectives/upc_coll_exchange.upc' || echo '$(srcdir)/'`collectives/upc_coll_exchange.upc
@am__fastdepUPC_TRUE@	$(am__mv) $(DEPDIR)/libgupc_pt_la-upc_coll_exchange.Tpo $(DEPDIR)/libgupc_pt_la-upc_coll_exchange.Plo
@AMDEP_TRUE@@am__fastdepUPC_FALSE@	source='collectives/upc_coll_exchange.upc' object='libgupc_pt_la-upc_coll_exchange.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepUPC_FALSE@	DEPDIR=$(DEPDIR) $(UPCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepUPC_FALSE@	$(LIBTOOL)  $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(UPC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libgupc_pt_la_CPPFLAGS) $(CPPFLAGS) $(libgupc_pt_la_UPCFLAGS) $(UPCFLAGS) -c -o libgupc_pt_la-upc_coll_exchange.lo `test -f 'collectives/upc_coll_exchange.upc' || echo '$(srcdir)/'`collectives/upc_coll_exchange.upc

libgupc_pt_la-upc_coll_gather_all.lo: collectives/upc_coll_gather_all.upc
@am__fastdepUPC_TRUE@	$(LIBTOOL)  $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(UPC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libgupc_pt_la_CPPFLAGS) $(CPPFLAGS) $(libgupc_pt_la_UPCFLAGS) $(UPCFLAGS) -MT libgupc_pt_la-upc_coll_gather_all.lo -MD -MP -MF $(DEPDIR)/libgupc_pt_la-upc_coll_gather_all.Tpo -c -o libgupc_pt_la-upc_coll_gather_all.lo `test -f 'collectives/upc_coll_gather_all.upc' || echo '$(srcdir)/'`collectives/upc_coll_gather_all.upc
@am__fastdepUPC_TRUE@	$(am__mv) $(DEPDIR)/libgupc_pt_la-upc_coll_gather_all.Tpo $(DEPDIR)/libgupc_pt_la-upc_coll_gather_all.Plo
@AMDEP_TRUE@@am__fastdepUPC_FALSE@	source='collectives/upc_coll_gather_all.upc' object='libgupc_pt_la-upc_coll_gather_all.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepUPC_FALSE@	DEPDIR=$(DEPDIR) $(UPCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepUPC_FALSE@	$(LIBTOOL)  $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(UPC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libgupc_pt_la_CPPFLAGS) $(CPPFLAGS) $(libgupc_pt_la_UPCFLAGS) $(UPCFLAGS) -c -o libgupc_pt_la-upc_coll_gather_all.lo `test -f 'collectives/upc_coll_gather_all.upc' || echo '$(srcdir)/'`collectives/upc_coll_gather_all.upc

libgupc_pt_la-upc_coll_gather.lo: collectives/upc_coll_gather.upc
@am__fastdepUPC_TRUE@	$(LIBTOOL)  $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(UPC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libgupc_pt_la_CPPFLAGS) $(CPPFLAGS) $(libgupc_pt_la_UPCFLAGS) $(UPCFLAGS) -MT libgupc_pt_la-upc_coll_gather.lo -MD -MP -MF $(DEPDIR)/libgupc_pt_la-upc_coll_gather.Tpo -c -o libgupc_pt_la-upc_coll_gather.lo `test -f 'collectives/upc_coll_gather.upc' || echo '$(srcdir)/'`collectives/upc_coll_gather.upc
@am__fastdepUPC_TRUE@	$(am__mv) $(DEPDIR)/libgupc_pt_la-upc_coll_gather.Tpo $(DEPDIR)/libgupc_pt_la-upc_coll_gather.Plo
@AMDEP_TRUE@@am__fastdepUPC_FALSE@	source='collectives/upc_coll_gather.upc' object='libgupc_pt_la-upc_coll_gather.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepUPC_FALSE@	DEPDIR=$(DEPDIR) $(UPCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepUPC_FALSE@	$(LIBTOOL)  $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(UPC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libgupc_pt_la_CPPFLAGS) $(CPPFLAGS) $(libgupc_pt_la_UPCFLAGS) $(UPCFLAGS) -c -o libgupc_pt_la-upc_coll_gather.lo `test -f 'collectives/upc_coll_gather.upc' || echo '$(srcdir)/'`collectives/upc_coll_gather.upc

libgupc_pt_la-upc_coll_init.lo: collectives/upc_coll_init.upc
@am__fastdepUPC_TRUE@	$(LIBTOOL)  $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(UPC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libgupc_pt_la_CPPFLAGS) $(CPPFLAGS) $(libgupc_pt_la_UPCFLAGS) $(UPCFLAGS) -MT libgupc_pt_la-upc_coll_init.lo -MD -MP -MF $(DEPDIR)/libgupc_pt_la-upc_coll_init.Tpo -c -o libgupc_pt_la-upc_coll_init.lo `test -f 'collectives/upc_coll_init.upc' || echo '$(srcdir)/'`collectives/upc_coll_init.upc
@am__fastdepUPC_TRUE@	$(am__mv) $(DEPDIR)/libgupc_pt_la-upc_coll_init.Tpo $(DEPDIR)/libgupc_pt_la-upc_coll_init.Plo
@AMDEP_TRUE@@am__fastdepUPC_FALSE@	source='collectives/upc_coll_init.upc' object='libgupc_pt_la-upc_coll_init.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepUPC_FALSE@	DEPDIR=$(DEPDIR) $(UPCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepUPC_FALSE@	$(LIBTOOL)  $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(UPC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libgupc_pt_la_CPPFLAGS) $(CPPFLAGS) $(libgupc_pt_la_UPCFLAGS) $(UPCFLAGS) -c -o libgupc_pt_la-upc_coll_init.lo `test -f 'collectives/upc_coll_init.upc' || echo '$(srcdir)/'`collectives/upc_coll_init.upc

libgupc_pt_la-upc_coll_permute.lo: collectives/upc_coll_permute.upc
@am__fastdepUPC_TRUE@	$(LIBTOOL)  $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(UPC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libgupc_pt_la_CPPFLAGS) $(CPPFLAGS) $(libgupc_pt_la_UPCFLAGS) $(UPCFLAGS) -MT libgupc_pt_la-upc_coll_permute.lo -MD -MP -MF $(DEPDIR)/libgupc_pt_la-upc_coll_permute.Tpo -c -o libgupc_pt_la-upc_coll_permute.lo `test -f 'collectives/upc_coll_permute.upc' || echo '$(srcdir)/'`collectives/upc_coll_permute.upc
@am__fastdepUPC_TRUE@	$(am__mv) $(DEPDIR)/libgupc_pt_la-upc_coll_permute.Tpo $(DEPDIR)/libgupc_pt_la-upc_coll_permute.Plo
@AMDEP_TRUE@@am__fastdepUPC_FALSE@	source='collectives/upc_coll_permute.upc' object='libgupc_pt_la-upc_coll_permute.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepUPC_FALSE@	DEPDIR=$(DEPDIR) $(UPCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepUPC_FALSE@	$(LIBTOOL)  $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(UPC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libgupc_pt_la_CPPFLAGS) $(CPPFLAGS) $(libgupc_pt_la_UPCFLAGS) $(UPCFLAGS) -c -o libgupc_pt_la-upc_coll_permute.lo `test -f 'collectives/upc_coll_permute.upc' || echo '$(srcdir)/'`collectives/upc_coll_permute.upc

libgupc_pt_la-upc_coll_prefix_reduce.lo: $(LIBGUPC_COLL_SRCDIR)/upc_coll_prefix_reduce.upc
@am__fastdepUPC_TRUE@	$(LIBTOOL)  $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(UPC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libgupc_pt_la_CPPFLAGS) $(CPPFLAGS) $(libgupc_pt_la_UPCFLAGS) $(UPCFLAGS) -MT libgupc_pt_la-upc_coll_prefix_reduce.lo -MD -MP -MF $(DEPDIR)/libgupc_pt_la-upc_coll_prefix_reduce.Tpo -c -o libgupc_pt_la-upc_coll_prefix_reduce.lo `test -f '$(LIBGUPC_COLL_SRCDIR)/upc_coll_prefix_reduce.upc' || echo '$(srcdir)/'`$(LIBGUPC_COLL_SRCDIR)/upc_coll_prefix_reduce.upc
@am__fastdepUPC_TRUE@	$(am__mv) $(DEPDIR)/libgupc_pt_la-upc_coll_prefix_reduce.Tpo $(DEPDIR)/libgupc_pt_la-upc_coll_prefix_reduce.Plo
@AMDEP_TRUE@@am__fastdepUPC_FALSE@	source='$(LIBGUPC_COLL_SRCDIR)/upc_coll_prefix_reduce.upc' object='libgupc_pt_la-upc_coll_prefix_reduce.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepUPC_FALSE@	DEPDIR=$(DEPDIR) $(UPCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepUPC_FALSE@	$(LIBTOOL)  $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(UPC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libgupc_pt_la_CPPFLAGS) $(CPPFLAGS) $(libgupc_pt_la_UPCFLAGS) $(UPCFLAGS) -c -o libgupc_pt_la-upc_coll_prefix_reduce.lo `test -f '$(LIBGUPC_COLL_SRCDIR)/upc_coll_prefix_reduce.upc' || echo '$(srcdir)/'`$(LIBGUPC_COLL_SRCDIR)/upc_coll_prefix_reduce.upc

libgupc_pt_la-upc_coll_scatter.lo: collectives/upc_coll_scatter.upc
@am__fastdepUPC_TRUE@	$(LIBTOOL)  $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(UPC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libgupc_pt_la_CPPFLAGS) $(CPPFLAGS) $(libgupc_pt_la_UPCFLAGS) $(UPCFLAGS) -MT libgupc_pt_la-upc_coll_scatter.lo -MD -MP -MF $(DEPDIR)/libgupc_pt_la-upc_coll_scatter.Tpo -c -o libgupc_pt_la-upc_coll_scatter.lo `test -f 'collectives/upc_coll_scatter.upc' || echo '$(srcdir)/'`collectives/upc_coll_scatter.upc
@am__fastdepUPC_TRUE@	$(am__mv) $(DEPDIR)/libgupc_pt_la-upc_coll_scatter.Tpo $(DEPDIR)/libgupc_pt_la-upc_coll_scatter.Plo
@AMDEP_TRUE@@am__fastdepUPC_FALSE@	source='collectives/upc_coll_scatter.upc' object='libgupc_pt_la-upc_coll_scatter.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepUPC_FALSE@	DEPDIR=$(DEPDIR) $(UPCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepUPC_FALSE@	$(LIBTOOL)  $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(UPC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libgupc_pt_la_CPPFLAGS) $(CPPFLAGS) $(libgupc_pt_la_UPCFLAGS) $(UPCFLAGS) -c -o libgupc_pt_la-upc_coll_scatter.lo `test -f 'collectives/upc_coll_scatter.upc' || echo '$(srcdir)/'`collectives/upc_coll_scatter.upc

libgupc_pt_la-upc_coll_sort.lo: collectives/upc_coll_sort.upc
@am__fastdepUPC_TRUE@	$(LIBTOOL)  $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(UPC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libgupc_pt_la_CPPFLAGS) $(CPPFLAGS) $(libgupc_pt_la_UPCFLAGS) $(UPCFLAGS) -MT libgupc_pt_la-upc_coll_sort.lo -MD -MP -MF $(DEPDIR)/libgupc_pt_la-upc_coll_sort.Tpo -c -o libgupc_pt_la-upc_coll_sort.lo `test -f 'collectives/upc_coll_sort.upc' || echo '$(srcdir)/'`collectives/upc_coll_sort.upc
@am__fastdepUPC_TRUE@	$(am__mv) $(DEPDIR)/libgupc_pt_la-upc_coll_sort.Tpo $(DEPDIR)/libgupc_pt_la-upc_coll_sort.Plo
@AMDEP_TRUE@@am__fastdepUPC_FALSE@	source='collectives/upc_coll_sort.upc' object='libgupc_pt_la-upc_coll_sort.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepUPC_FALSE@	DEPDIR=$(DEPDIR) $(UPCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepUPC_FALSE@	$(LIBTOOL)  $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(UPC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libgupc_pt_la_CPPFLAGS) $(CPPFLAGS) $(libgupc_pt_la_UPCFLAGS) $(UPCFLAGS) -c -o libgupc_pt_la-upc_coll_sort.lo `test -f 'collectives/upc_coll_sort.upc' || echo '$(srcdir)/'`collectives/upc_coll_sort.upc

mostlyclean-libtool:
	-rm -f *.lo

clean-libtool:
	-rm -rf .libs _libs

distclean-libtool:
	-rm -f libtool config.lt

# GNU Make needs to see an explicit $(MAKE) variable in the command it
# runs to enable its job server during parallel builds.  Hence the
# comments below.
all-multi:
	$(MULTIDO) $(AM_MAKEFLAGS) DO=all multi-do # $(MAKE)
install-multi:
	$(MULTIDO) $(AM_MAKEFLAGS) DO=install multi-do # $(MAKE)

mostlyclean-multi:
	$(MULTICLEAN) $(AM_MAKEFLAGS) DO=mostlyclean multi-clean # $(MAKE)
clean-multi:
	$(MULTICLEAN) $(AM_MAKEFLAGS) DO=clean multi-clean # $(MAKE)
distclean-multi:
	$(MULTICLEAN) $(AM_MAKEFLAGS) DO=distclean multi-clean # $(MAKE)
maintainer-clean-multi:
	$(MULTICLEAN) $(AM_MAKEFLAGS) DO=maintainer-clean multi-clean # $(MAKE)

libgupc.dvi: libgupc.texi  
	TEXINPUTS="$(am__TEXINFO_TEX_DIR)$(PATH_SEPARATOR)$$TEXINPUTS" \
	MAKEINFO='$(MAKEINFO) $(AM_MAKEINFOFLAGS) $(MAKEINFOFLAGS) -I $(srcdir)' \
	$(TEXI2DVI) -o $@ `test -f 'libgupc.texi' || echo '$(srcdir)/'`libgupc.texi

libgupc.pdf: libgupc.texi  
	TEXINPUTS="$(am__TEXINFO_TEX_DIR)$(PATH_SEPARATOR)$$TEXINPUTS" \
	MAKEINFO='$(MAKEINFO) $(AM_MAKEINFOFLAGS) $(MAKEINFOFLAGS) -I $(srcdir)' \
	$(TEXI2PDF) -o $@ `test -f 'libgupc.texi' || echo '$(srcdir)/'`libgupc.texi

libgupc.html: libgupc.texi  
	rm -rf $(@:.html=.htp)
	if $(MAKEINFOHTML) $(AM_MAKEINFOHTMLFLAGS) $(MAKEINFOFLAGS) -I $(srcdir) \
	 -o $(@:.html=.htp) `test -f 'libgupc.texi' || echo '$(srcdir)/'`libgupc.texi; \
	then \
	  rm -rf $@; \
	  if test ! -d $(@:.html=.htp) && test -d $(@:.html=); then \
	    mv $(@:.html=) $@; else mv $(@:.html=.htp) $@; fi; \
	else \
	  if test ! -d $(@:.html=.htp) && test -d $(@:.html=); then \
	    rm -rf $(@:.html=); else rm -Rf $(@:.html=.htp) $@; fi; \
	  exit 1; \
	fi
.dvi.ps:
	TEXINPUTS="$(am__TEXINFO_TEX_DIR)$(PATH_SEPARATOR)$$TEXINPUTS" \
	$(DVIPS) -o $@ $<

uninstall-dvi-am:
	@$(NORMAL_UNINSTALL)
	@list='$(DVIS)'; test -n "$(dvidir)" || list=; \
	for p in $$list; do \
	  $(am__strip_dir) \
	  echo " rm -f '$(DESTDIR)$(dvidir)/$$f'"; \
	  rm -f "$(DESTDIR)$(dvidir)/$$f"; \
	done

uninstall-html-am:
	@$(NORMAL_UNINSTALL)
	@list='$(HTMLS)'; test -n "$(htmldir)" || list=; \
	for p in $$list; do \
	  $(am__strip_dir) \
	  echo " rm -rf '$(DESTDIR)$(htmldir)/$$f'"; \
	  rm -rf "$(DESTDIR)$(htmldir)/$$f"; \
	done

uninstall-info-am:
	@$(PRE_UNINSTALL)
	@if test -d '$(DESTDIR)$(infodir)' && $(am__can_run_installinfo); then \
	  list='$(INFO_DEPS)'; \
	  for file in $$list; do \
	    relfile=`echo "$$file" | sed 's|^.*/||'`; \
	    echo " install-info --info-dir='$(DESTDIR)$(infodir)' --remove '$(DESTDIR)$(infodir)/$$relfile'"; \
	    if install-info --info-dir="$(DESTDIR)$(infodir)" --remove "$(DESTDIR)$(infodir)/$$relfile"; \
	    then :; else test ! -f "$(DESTDIR)$(infodir)/$$relfile" || exit 1; fi; \
	  done; \
	else :; fi
	@$(NORMAL_UNINSTALL)
	@list='$(INFO_DEPS)'; \
	for file in $$list; do \
	  relfile=`echo "$$file" | sed 's|^.*/||'`; \
	  relfile_i=`echo "$$relfile" | sed 's|\.info$$||;s|$$|.i|'`; \
	  (if test -d "$(DESTDIR)$(infodir)" && cd "$(DESTDIR)$(infodir)"; then \
	     echo " cd '$(DESTDIR)$(infodir)' && rm -f $$relfile $$relfile-[0-9] $$relfile-[0-9][0-9] $$relfile_i[0-9] $$relfile_i[0-9][0-9]"; \
	     rm -f $$relfile $$relfile-[0-9] $$relfile-[0-9][0-9] $$relfile_i[0-9] $$relfile_i[0-9][0-9]; \
	   else :; fi); \
	done

uninstall-pdf-am:
	@$(NORMAL_UNINSTALL)
	@list='$(PDFS)'; test -n "$(pdfdir)" || list=; \
	for p in $$list; do \
	  $(am__strip_dir) \
	  echo " rm -f '$(DESTDIR)$(pdfdir)/$$f'"; \
	  rm -f "$(DESTDIR)$(pdfdir)/$$f"; \
	done

uninstall-ps-am:
	@$(NORMAL_UNINSTALL)
	@list='$(PSS)'; test -n "$(psdir)" || list=; \
	for p in $$list; do \
	  $(am__strip_dir) \
	  echo " rm -f '$(DESTDIR)$(psdir)/$$f'"; \
	  rm -f "$(DESTDIR)$(psdir)/$$f"; \
	done

dist-info: $(INFO_DEPS)
	@srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`; \
	list='$(INFO_DEPS)'; \
	for base in $$list; do \
	  case $$base in \
	    $(srcdir)/*) base=`echo "$$base" | sed "s|^$$srcdirstrip/||"`;; \
	  esac; \
	  if test -f $$base; then d=.; else d=$(srcdir); fi; \
	  base_i=`echo "$$base" | sed 's|\.info$$||;s|$$|.i|'`; \
	  for file in $$d/$$base $$d/$$base-[0-9] $$d/$$base-[0-9][0-9] $$d/$$base_i[0-9] $$d/$$base_i[0-9][0-9]; do \
	    if test -f $$file; then \
	      relfile=`expr "$$file" : "$$d/\(.*\)"`; \
	      test -f "$(distdir)/$$relfile" || \
		cp -p $$file "$(distdir)/$$relfile"; \
	    else :; fi; \
	  done; \
	done

mostlyclean-aminfo:
	-rm -rf libgupc.aux libgupc.cp libgupc.cps libgupc.fn libgupc.fns \
	  libgupc.ky libgupc.kys libgupc.log libgupc.pg libgupc.pgs \
	  libgupc.tmp libgupc.toc libgupc.tp libgupc.tps libgupc.vr \
	  libgupc.vrs

clean-aminfo:
	-test -z "libgupc.dvi libgupc.pdf libgupc.ps libgupc.html" \
	|| rm -rf libgupc.dvi libgupc.pdf libgupc.ps libgupc.html

maintainer-clean-aminfo:
	@list='$(INFO_DEPS)'; for i in $$list; do \
	  i_i=`echo "$$i" | sed 's|\.info$$||;s|$$|.i|'`; \
	  echo " rm -f $$i $$i-[0-9] $$i-[0-9][0-9] $$i_i[0-9] $$i_i[0-9][0-9]"; \
	  rm -f $$i $$i-[0-9] $$i-[0-9][0-9] $$i_i[0-9] $$i_i[0-9][0-9]; \
	done
install-toolexeclibDATA: $(toolexeclib_DATA)
	@$(NORMAL_INSTALL)
	@list='$(toolexeclib_DATA)'; test -n "$(toolexeclibdir)" || list=; \
	if test -n "$$list"; then \
	  echo " $(MKDIR_P) '$(DESTDIR)$(toolexeclibdir)'"; \
	  $(MKDIR_P) "$(DESTDIR)$(toolexeclibdir)" || exit 1; \
	fi; \
	for p in $$list; do \
	  if test -f "$$p"; then d=; else d="$(srcdir)/"; fi; \
	  echo "$$d$$p"; \
	done | $(am__base_list) | \
	while read files; do \
	  echo " $(INSTALL_DATA) $$files '$(DESTDIR)$(toolexeclibdir)'"; \
	  $(INSTALL_DATA) $$files "$(DESTDIR)$(toolexeclibdir)" || exit $$?; \
	done

uninstall-toolexeclibDATA:
	@$(NORMAL_UNINSTALL)
	@list='$(toolexeclib_DATA)'; test -n "$(toolexeclibdir)" || list=; \
	files=`for p in $$list; do echo $$p; done | sed -e 's|^.*/||'`; \
	dir='$(DESTDIR)$(toolexeclibdir)'; $(am__uninstall_files_from_dir)
install-libsubincludeHEADERS: $(libsubinclude_HEADERS)
	@$(NORMAL_INSTALL)
	@list='$(libsubinclude_HEADERS)'; test -n "$(libsubincludedir)" || list=; \
	if test -n "$$list"; then \
	  echo " $(MKDIR_P) '$(DESTDIR)$(libsubincludedir)'"; \
	  $(MKDIR_P) "$(DESTDIR)$(libsubincludedir)" || exit 1; \
	fi; \
	for p in $$list; do \
	  if test -f "$$p"; then d=; else d="$(srcdir)/"; fi; \
	  echo "$$d$$p"; \
	done | $(am__base_list) | \
	while read files; do \
	  echo " $(INSTALL_HEADER) $$files '$(DESTDIR)$(libsubincludedir)'"; \
	  $(INSTALL_HEADER) $$files "$(DESTDIR)$(libsubincludedir)" || exit $$?; \
	done

uninstall-libsubincludeHEADERS:
	@$(NORMAL_UNINSTALL)
	@list='$(libsubinclude_HEADERS)'; test -n "$(libsubincludedir)" || list=; \
	files=`for p in $$list; do echo $$p; done | sed -e 's|^.*/||'`; \
	dir='$(DESTDIR)$(libsubincludedir)'; $(am__uninstall_files_from_dir)
install-nodist_libsubincludeHEADERS: $(nodist_libsubinclude_HEADERS)
	@$(NORMAL_INSTALL)
	@list='$(nodist_libsubinclude_HEADERS)'; test -n "$(libsubincludedir)" || list=; \
	if test -n "$$list"; then \
	  echo " $(MKDIR_P) '$(DESTDIR)$(libsubincludedir)'"; \
	  $(MKDIR_P) "$(DESTDIR)$(libsubincludedir)" || exit 1; \
	fi; \
	for p in $$list; do \
	  if test -f "$$p"; then d=; else d="$(srcdir)/"; fi; \
	  echo "$$d$$p"; \
	done | $(am__base_list) | \
	while read files; do \
	  echo " $(INSTALL_HEADER) $$files '$(DESTDIR)$(libsubincludedir)'"; \
	  $(INSTALL_HEADER) $$files "$(DESTDIR)$(libsubincludedir)" || exit $$?; \
	done

uninstall-nodist_libsubincludeHEADERS:
	@$(NORMAL_UNINSTALL)
	@list='$(nodist_libsubinclude_HEADERS)'; test -n "$(libsubincludedir)" || list=; \
	files=`for p in $$list; do echo $$p; done | sed -e 's|^.*/||'`; \
	dir='$(DESTDIR)$(libsubincludedir)'; $(am__uninstall_files_from_dir)
install-nodist_toolexeclibHEADERS: $(nodist_toolexeclib_HEADERS)
	@$(NORMAL_INSTALL)
	@list='$(nodist_toolexeclib_HEADERS)'; test -n "$(toolexeclibdir)" || list=; \
	if test -n "$$list"; then \
	  echo " $(MKDIR_P) '$(DESTDIR)$(toolexeclibdir)'"; \
	  $(MKDIR_P) "$(DESTDIR)$(toolexeclibdir)" || exit 1; \
	fi; \
	for p in $$list; do \
	  if test -f "$$p"; then d=; else d="$(srcdir)/"; fi; \
	  echo "$$d$$p"; \
	done | $(am__base_list) | \
	while read files; do \
	  echo " $(INSTALL_HEADER) $$files '$(DESTDIR)$(toolexeclibdir)'"; \
	  $(INSTALL_HEADER) $$files "$(DESTDIR)$(toolexeclibdir)" || exit $$?; \
	done

uninstall-nodist_toolexeclibHEADERS:
	@$(NORMAL_UNINSTALL)
	@list='$(nodist_toolexeclib_HEADERS)'; test -n "$(toolexeclibdir)" || list=; \
	files=`for p in $$list; do echo $$p; done | sed -e 's|^.*/||'`; \
	dir='$(DESTDIR)$(toolexeclibdir)'; $(am__uninstall_files_from_dir)

# This directory's subdirectories are mostly independent; you can cd
# into them and run `make' without going through this Makefile.
# To change the values of `make' variables: instead of editing Makefiles,
# (1) if the variable is set in `config.status', edit `config.status'
#     (which will cause the Makefiles to be regenerated when you run `make');
# (2) otherwise, pass the desired values on the `make' command line.
$(RECURSIVE_TARGETS):
	@fail= failcom='exit 1'; \
	for f in x $$MAKEFLAGS; do \
	  case $$f in \
	    *=* | --[!k]*);; \
	    *k*) failcom='fail=yes';; \
	  esac; \
	done; \
	dot_seen=no; \
	target=`echo $@ | sed s/-recursive//`; \
	list='$(SUBDIRS)'; for subdir in $$list; do \
	  echo "Making $$target in $$subdir"; \
	  if test "$$subdir" = "."; then \
	    dot_seen=yes; \
	    local_target="$$target-am"; \
	  else \
	    local_target="$$target"; \
	  fi; \
	  ($(am__cd) $$subdir && $(MAKE) $(AM_MAKEFLAGS) $$local_target) \
	  || eval $$failcom; \
	done; \
	if test "$$dot_seen" = "no"; then \
	  $(MAKE) $(AM_MAKEFLAGS) "$$target-am" || exit 1; \
	fi; test -z "$$fail"

$(RECURSIVE_CLEAN_TARGETS):
	@fail= failcom='exit 1'; \
	for f in x $$MAKEFLAGS; do \
	  case $$f in \
	    *=* | --[!k]*);; \
	    *k*) failcom='fail=yes';; \
	  esac; \
	done; \
	dot_seen=no; \
	case "$@" in \
	  distclean-* | maintainer-clean-*) list='$(DIST_SUBDIRS)' ;; \
	  *) list='$(SUBDIRS)' ;; \
	esac; \
	rev=''; for subdir in $$list; do \
	  if test "$$subdir" = "."; then :; else \
	    rev="$$subdir $$rev"; \
	  fi; \
	done; \
	rev="$$rev ."; \
	target=`echo $@ | sed s/-recursive//`; \
	for subdir in $$rev; do \
	  echo "Making $$target in $$subdir"; \
	  if test "$$subdir" = "."; then \
	    local_target="$$target-am"; \
	  else \
	    local_target="$$target"; \
	  fi; \
	  ($(am__cd) $$subdir && $(MAKE) $(AM_MAKEFLAGS) $$local_target) \
	  || eval $$failcom; \
	done && test -z "$$fail"
tags-recursive:
	list='$(SUBDIRS)'; for subdir in $$list; do \
	  test "$$subdir" = . || ($(am__cd) $$subdir && $(MAKE) $(AM_MAKEFLAGS) tags); \
	done
ctags-recursive:
	list='$(SUBDIRS)'; for subdir in $$list; do \
	  test "$$subdir" = . || ($(am__cd) $$subdir && $(MAKE) $(AM_MAKEFLAGS) ctags); \
	done

ID: $(HEADERS) $(SOURCES) $(LISP) $(TAGS_FILES)
	list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \
	unique=`for i in $$list; do \
	    if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \
	  done | \
	  $(AWK) '{ files[$$0] = 1; nonempty = 1; } \
	      END { if (nonempty) { for (i in files) print i; }; }'`; \
	mkid -fID $$unique
tags: TAGS

TAGS: tags-recursive $(HEADERS) $(SOURCES) config.h.in $(TAGS_DEPENDENCIES) \
		$(TAGS_FILES) $(LISP)
	set x; \
	here=`pwd`; \
	if ($(ETAGS) --etags-include --version) >/dev/null 2>&1; then \
	  include_option=--etags-include; \
	  empty_fix=.; \
	else \
	  include_option=--include; \
	  empty_fix=; \
	fi; \
	list='$(SUBDIRS)'; for subdir in $$list; do \
	  if test "$$subdir" = .; then :; else \
	    test ! -f $$subdir/TAGS || \
	      set "$$@" "$$include_option=$$here/$$subdir/TAGS"; \
	  fi; \
	done; \
	list='$(SOURCES) $(HEADERS) config.h.in $(LISP) $(TAGS_FILES)'; \
	unique=`for i in $$list; do \
	    if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \
	  done | \
	  $(AWK) '{ files[$$0] = 1; nonempty = 1; } \
	      END { if (nonempty) { for (i in files) print i; }; }'`; \
	shift; \
	if test -z "$(ETAGS_ARGS)$$*$$unique"; then :; else \
	  test -n "$$unique" || unique=$$empty_fix; \
	  if test $$# -gt 0; then \
	    $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \
	      "$$@" $$unique; \
	  else \
	    $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \
	      $$unique; \
	  fi; \
	fi
ctags: CTAGS
CTAGS: ctags-recursive $(HEADERS) $(SOURCES) config.h.in $(TAGS_DEPENDENCIES) \
		$(TAGS_FILES) $(LISP)
	list='$(SOURCES) $(HEADERS) config.h.in $(LISP) $(TAGS_FILES)'; \
	unique=`for i in $$list; do \
	    if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \
	  done | \
	  $(AWK) '{ files[$$0] = 1; nonempty = 1; } \
	      END { if (nonempty) { for (i in files) print i; }; }'`; \
	test -z "$(CTAGS_ARGS)$$unique" \
	  || $(CTAGS) $(CTAGSFLAGS) $(AM_CTAGSFLAGS) $(CTAGS_ARGS) \
	     $$unique

GTAGS:
	here=`$(am__cd) $(top_builddir) && pwd` \
	  && $(am__cd) $(top_srcdir) \
	  && gtags -i $(GTAGS_ARGS) "$$here"

distclean-tags:
	-rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags

distdir: $(DISTFILES)
	$(am__remove_distdir)
	test -d "$(distdir)" || mkdir "$(distdir)"
	@srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \
	topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \
	list='$(DISTFILES)'; \
	  dist_files=`for file in $$list; do echo $$file; done | \
	  sed -e "s|^$$srcdirstrip/||;t" \
	      -e "s|^$$topsrcdirstrip/|$(top_builddir)/|;t"`; \
	case $$dist_files in \
	  */*) $(MKDIR_P) `echo "$$dist_files" | \
			   sed '/\//!d;s|^|$(distdir)/|;s,/[^/]*$$,,' | \
			   sort -u` ;; \
	esac; \
	for file in $$dist_files; do \
	  if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \
	  if test -d $$d/$$file; then \
	    dir=`echo "/$$file" | sed -e 's,/[^/]*$$,,'`; \
	    if test -d "$(distdir)/$$file"; then \
	      find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \
	    fi; \
	    if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \
	      cp -fpR $(srcdir)/$$file "$(distdir)$$dir" || exit 1; \
	      find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \
	    fi; \
	    cp -fpR $$d/$$file "$(distdir)$$dir" || exit 1; \
	  else \
	    test -f "$(distdir)/$$file" \
	    || cp -p $$d/$$file "$(distdir)/$$file" \
	    || exit 1; \
	  fi; \
	done
	@list='$(DIST_SUBDIRS)'; for subdir in $$list; do \
	  if test "$$subdir" = .; then :; else \
	    $(am__make_dryrun) \
	      || test -d "$(distdir)/$$subdir" \
	      || $(MKDIR_P) "$(distdir)/$$subdir" \
	      || exit 1; \
	    dir1=$$subdir; dir2="$(distdir)/$$subdir"; \
	    $(am__relativize); \
	    new_distdir=$$reldir; \
	    dir1=$$subdir; dir2="$(top_distdir)"; \
	    $(am__relativize); \
	    new_top_distdir=$$reldir; \
	    echo " (cd $$subdir && $(MAKE) $(AM_MAKEFLAGS) top_distdir="$$new_top_distdir" distdir="$$new_distdir" \\"; \
	    echo "     am__remove_distdir=: am__skip_length_check=: am__skip_mode_fix=: distdir)"; \
	    ($(am__cd) $$subdir && \
	      $(MAKE) $(AM_MAKEFLAGS) \
	        top_distdir="$$new_top_distdir" \
	        distdir="$$new_distdir" \
		am__remove_distdir=: \
		am__skip_length_check=: \
		am__skip_mode_fix=: \
	        distdir) \
	      || exit 1; \
	  fi; \
	done
	$(MAKE) $(AM_MAKEFLAGS) \
	  top_distdir="$(top_distdir)" distdir="$(distdir)" \
	  dist-info
	-test -n "$(am__skip_mode_fix)" \
	|| find "$(distdir)" -type d ! -perm -755 \
		-exec chmod u+rwx,go+rx {} \; -o \
	  ! -type d ! -perm -444 -links 1 -exec chmod a+r {} \; -o \
	  ! -type d ! -perm -400 -exec chmod a+r {} \; -o \
	  ! -type d ! -perm -444 -exec $(install_sh) -c -m a+r {} {} \; \
	|| chmod -R a+r "$(distdir)"
dist-gzip: distdir
	tardir=$(distdir) && $(am__tar) | GZIP=$(GZIP_ENV) gzip -c >$(distdir).tar.gz
	$(am__remove_distdir)

dist-bzip2: distdir
	tardir=$(distdir) && $(am__tar) | BZIP2=$${BZIP2--9} bzip2 -c >$(distdir).tar.bz2
	$(am__remove_distdir)

dist-lzip: distdir
	tardir=$(distdir) && $(am__tar) | lzip -c $${LZIP_OPT--9} >$(distdir).tar.lz
	$(am__remove_distdir)

dist-lzma: distdir
	tardir=$(distdir) && $(am__tar) | lzma -9 -c >$(distdir).tar.lzma
	$(am__remove_distdir)

dist-xz: distdir
	tardir=$(distdir) && $(am__tar) | XZ_OPT=$${XZ_OPT--e} xz -c >$(distdir).tar.xz
	$(am__remove_distdir)

dist-tarZ: distdir
	tardir=$(distdir) && $(am__tar) | compress -c >$(distdir).tar.Z
	$(am__remove_distdir)

dist-shar: distdir
	shar $(distdir) | GZIP=$(GZIP_ENV) gzip -c >$(distdir).shar.gz
	$(am__remove_distdir)

dist-zip: distdir
	-rm -f $(distdir).zip
	zip -rq $(distdir).zip $(distdir)
	$(am__remove_distdir)

dist dist-all: distdir
	tardir=$(distdir) && $(am__tar) | GZIP=$(GZIP_ENV) gzip -c >$(distdir).tar.gz
	$(am__remove_distdir)

# This target untars the dist file and tries a VPATH configuration.  Then
# it guarantees that the distribution is self-contained by making another
# tarfile.
distcheck: dist
	case '$(DIST_ARCHIVES)' in \
	*.tar.gz*) \
	  GZIP=$(GZIP_ENV) gzip -dc $(distdir).tar.gz | $(am__untar) ;;\
	*.tar.bz2*) \
	  bzip2 -dc $(distdir).tar.bz2 | $(am__untar) ;;\
	*.tar.lzma*) \
	  lzma -dc $(distdir).tar.lzma | $(am__untar) ;;\
	*.tar.lz*) \
	  lzip -dc $(distdir).tar.lz | $(am__untar) ;;\
	*.tar.xz*) \
	  xz -dc $(distdir).tar.xz | $(am__untar) ;;\
	*.tar.Z*) \
	  uncompress -c $(distdir).tar.Z | $(am__untar) ;;\
	*.shar.gz*) \
	  GZIP=$(GZIP_ENV) gzip -dc $(distdir).shar.gz | unshar ;;\
	*.zip*) \
	  unzip $(distdir).zip ;;\
	esac
	chmod -R a-w $(distdir); chmod u+w $(distdir)
	mkdir $(distdir)/_build
	mkdir $(distdir)/_inst
	chmod a-w $(distdir)
	test -d $(distdir)/_build || exit 0; \
	dc_install_base=`$(am__cd) $(distdir)/_inst && pwd | sed -e 's,^[^:\\/]:[\\/],/,'` \
	  && dc_destdir="$${TMPDIR-/tmp}/am-dc-$$$$/" \
	  && am__cwd=`pwd` \
	  && $(am__cd) $(distdir)/_build \
	  && ../configure --srcdir=.. --prefix="$$dc_install_base" \
	    $(AM_DISTCHECK_CONFIGURE_FLAGS) \
	    $(DISTCHECK_CONFIGURE_FLAGS) \
	  && $(MAKE) $(AM_MAKEFLAGS) \
	  && $(MAKE) $(AM_MAKEFLAGS) dvi \
	  && $(MAKE) $(AM_MAKEFLAGS) check \
	  && $(MAKE) $(AM_MAKEFLAGS) install \
	  && $(MAKE) $(AM_MAKEFLAGS) installcheck \
	  && $(MAKE) $(AM_MAKEFLAGS) uninstall \
	  && $(MAKE) $(AM_MAKEFLAGS) distuninstallcheck_dir="$$dc_install_base" \
	        distuninstallcheck \
	  && chmod -R a-w "$$dc_install_base" \
	  && ({ \
	       (cd ../.. && umask 077 && mkdir "$$dc_destdir") \
	       && $(MAKE) $(AM_MAKEFLAGS) DESTDIR="$$dc_destdir" install \
	       && $(MAKE) $(AM_MAKEFLAGS) DESTDIR="$$dc_destdir" uninstall \
	       && $(MAKE) $(AM_MAKEFLAGS) DESTDIR="$$dc_destdir" \
	            distuninstallcheck_dir="$$dc_destdir" distuninstallcheck; \
	      } || { rm -rf "$$dc_destdir"; exit 1; }) \
	  && rm -rf "$$dc_destdir" \
	  && $(MAKE) $(AM_MAKEFLAGS) dist \
	  && rm -rf $(DIST_ARCHIVES) \
	  && $(MAKE) $(AM_MAKEFLAGS) distcleancheck \
	  && cd "$$am__cwd" \
	  || exit 1
	$(am__remove_distdir)
	@(echo "$(distdir) archives ready for distribution: "; \
	  list='$(DIST_ARCHIVES)'; for i in $$list; do echo $$i; done) | \
	  sed -e 1h -e 1s/./=/g -e 1p -e 1x -e '$$p' -e '$$x'
distuninstallcheck:
	@test -n '$(distuninstallcheck_dir)' || { \
	  echo 'ERROR: trying to run $@ with an empty' \
	       '$$(distuninstallcheck_dir)' >&2; \
	  exit 1; \
	}; \
	$(am__cd) '$(distuninstallcheck_dir)' || { \
	  echo 'ERROR: cannot chdir into $(distuninstallcheck_dir)' >&2; \
	  exit 1; \
	}; \
	test `$(am__distuninstallcheck_listfiles) | wc -l` -eq 0 \
	   || { echo "ERROR: files left after uninstall:" ; \
	        if test -n "$(DESTDIR)"; then \
	          echo "  (check DESTDIR support)"; \
	        fi ; \
	        $(distuninstallcheck_listfiles) ; \
	        exit 1; } >&2
distcleancheck: distclean
	@if test '$(srcdir)' = . ; then \
	  echo "ERROR: distcleancheck can only run from a VPATH build" ; \
	  exit 1 ; \
	fi
	@test `$(distcleancheck_listfiles) | wc -l` -eq 0 \
	  || { echo "ERROR: files left in build directory after distclean:" ; \
	       $(distcleancheck_listfiles) ; \
	       exit 1; } >&2
check-am: all-am
check: $(BUILT_SOURCES)
	$(MAKE) $(AM_MAKEFLAGS) check-recursive
all-am: Makefile $(INFO_DEPS) $(LTLIBRARIES) all-multi $(DATA) \
		$(HEADERS) config.h all-local
installdirs: installdirs-recursive
installdirs-am:
	for dir in "$(DESTDIR)$(toolexeclibdir)" "$(DESTDIR)$(infodir)" "$(DESTDIR)$(toolexeclibdir)" "$(DESTDIR)$(libsubincludedir)" "$(DESTDIR)$(libsubincludedir)" "$(DESTDIR)$(toolexeclibdir)"; do \
	  test -z "$$dir" || $(MKDIR_P) "$$dir"; \
	done
install: $(BUILT_SOURCES)
	$(MAKE) $(AM_MAKEFLAGS) 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:
	-test -z "$(MOSTLYCLEANFILES)" || rm -f $(MOSTLYCLEANFILES)

clean-generic:
	-test -z "$(CLEANFILES)" || rm -f $(CLEANFILES)

distclean-generic:
	-test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES)
	-test . = "$(srcdir)" || test -z "$(CONFIG_CLEAN_VPATH_FILES)" || rm -f $(CONFIG_CLEAN_VPATH_FILES)

maintainer-clean-generic:
	@echo "This command is intended for maintainers to use"
	@echo "it deletes files that may require special tools to rebuild."
	-test -z "$(BUILT_SOURCES)" || rm -f $(BUILT_SOURCES)
	-test -z "$(MAINTAINERCLEANFILES)" || rm -f $(MAINTAINERCLEANFILES)
clean: clean-multi clean-recursive

clean-am: clean-aminfo clean-generic clean-libtool \
	clean-toolexeclibLTLIBRARIES mostlyclean-am

distclean: distclean-multi distclean-recursive
	-rm -f $(am__CONFIG_DISTCLEAN_FILES)
	-rm -rf ./$(DEPDIR)
	-rm -f Makefile
distclean-am: clean-am distclean-compile distclean-generic \
	distclean-hdr distclean-libtool distclean-tags

dvi: dvi-recursive

dvi-am: $(DVIS)

html: html-recursive

html-am: $(HTMLS)

info: info-recursive

info-am: $(INFO_DEPS)

install-data-am: install-info-am install-libsubincludeHEADERS \
	install-nodist_libsubincludeHEADERS

install-dvi: install-dvi-recursive

install-dvi-am: $(DVIS)
	@$(NORMAL_INSTALL)
	@list='$(DVIS)'; test -n "$(dvidir)" || list=; \
	if test -n "$$list"; then \
	  echo " $(MKDIR_P) '$(DESTDIR)$(dvidir)'"; \
	  $(MKDIR_P) "$(DESTDIR)$(dvidir)" || exit 1; \
	fi; \
	for p in $$list; do \
	  if test -f "$$p"; then d=; else d="$(srcdir)/"; fi; \
	  echo "$$d$$p"; \
	done | $(am__base_list) | \
	while read files; do \
	  echo " $(INSTALL_DATA) $$files '$(DESTDIR)$(dvidir)'"; \
	  $(INSTALL_DATA) $$files "$(DESTDIR)$(dvidir)" || exit $$?; \
	done
install-exec-am: install-multi install-nodist_toolexeclibHEADERS \
	install-toolexeclibDATA install-toolexeclibLTLIBRARIES

install-html: install-html-recursive

install-html-am: $(HTMLS)
	@$(NORMAL_INSTALL)
	@list='$(HTMLS)'; list2=; test -n "$(htmldir)" || list=; \
	if test -n "$$list"; then \
	  echo " $(MKDIR_P) '$(DESTDIR)$(htmldir)'"; \
	  $(MKDIR_P) "$(DESTDIR)$(htmldir)" || exit 1; \
	fi; \
	for p in $$list; do \
	  if test -f "$$p" || test -d "$$p"; then d=; else d="$(srcdir)/"; fi; \
	  $(am__strip_dir) \
	  d2=$$d$$p; \
	  if test -d "$$d2"; then \
	    echo " $(MKDIR_P) '$(DESTDIR)$(htmldir)/$$f'"; \
	    $(MKDIR_P) "$(DESTDIR)$(htmldir)/$$f" || exit 1; \
	    echo " $(INSTALL_DATA) '$$d2'/* '$(DESTDIR)$(htmldir)/$$f'"; \
	    $(INSTALL_DATA) "$$d2"/* "$(DESTDIR)$(htmldir)/$$f" || exit $$?; \
	  else \
	    list2="$$list2 $$d2"; \
	  fi; \
	done; \
	test -z "$$list2" || { echo "$$list2" | $(am__base_list) | \
	while read files; do \
	  echo " $(INSTALL_DATA) $$files '$(DESTDIR)$(htmldir)'"; \
	  $(INSTALL_DATA) $$files "$(DESTDIR)$(htmldir)" || exit $$?; \
	done; }
install-info: install-info-recursive

install-info-am: $(INFO_DEPS)
	@$(NORMAL_INSTALL)
	@srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`; \
	list='$(INFO_DEPS)'; test -n "$(infodir)" || list=; \
	if test -n "$$list"; then \
	  echo " $(MKDIR_P) '$(DESTDIR)$(infodir)'"; \
	  $(MKDIR_P) "$(DESTDIR)$(infodir)" || exit 1; \
	fi; \
	for file in $$list; do \
	  case $$file in \
	    $(srcdir)/*) file=`echo "$$file" | sed "s|^$$srcdirstrip/||"`;; \
	  esac; \
	  if test -f $$file; then d=.; else d=$(srcdir); fi; \
	  file_i=`echo "$$file" | sed 's|\.info$$||;s|$$|.i|'`; \
	  for ifile in $$d/$$file $$d/$$file-[0-9] $$d/$$file-[0-9][0-9] \
	               $$d/$$file_i[0-9] $$d/$$file_i[0-9][0-9] ; do \
	    if test -f $$ifile; then \
	      echo "$$ifile"; \
	    else : ; fi; \
	  done; \
	done | $(am__base_list) | \
	while read files; do \
	  echo " $(INSTALL_DATA) $$files '$(DESTDIR)$(infodir)'"; \
	  $(INSTALL_DATA) $$files "$(DESTDIR)$(infodir)" || exit $$?; done
	@$(POST_INSTALL)
	@if $(am__can_run_installinfo); then \
	  list='$(INFO_DEPS)'; test -n "$(infodir)" || list=; \
	  for file in $$list; do \
	    relfile=`echo "$$file" | sed 's|^.*/||'`; \
	    echo " install-info --info-dir='$(DESTDIR)$(infodir)' '$(DESTDIR)$(infodir)/$$relfile'";\
	    install-info --info-dir="$(DESTDIR)$(infodir)" "$(DESTDIR)$(infodir)/$$relfile" || :;\
	  done; \
	else : ; fi
install-man:

install-pdf: install-pdf-recursive

install-pdf-am: $(PDFS)
	@$(NORMAL_INSTALL)
	@list='$(PDFS)'; test -n "$(pdfdir)" || list=; \
	if test -n "$$list"; then \
	  echo " $(MKDIR_P) '$(DESTDIR)$(pdfdir)'"; \
	  $(MKDIR_P) "$(DESTDIR)$(pdfdir)" || exit 1; \
	fi; \
	for p in $$list; do \
	  if test -f "$$p"; then d=; else d="$(srcdir)/"; fi; \
	  echo "$$d$$p"; \
	done | $(am__base_list) | \
	while read files; do \
	  echo " $(INSTALL_DATA) $$files '$(DESTDIR)$(pdfdir)'"; \
	  $(INSTALL_DATA) $$files "$(DESTDIR)$(pdfdir)" || exit $$?; done
install-ps: install-ps-recursive

install-ps-am: $(PSS)
	@$(NORMAL_INSTALL)
	@list='$(PSS)'; test -n "$(psdir)" || list=; \
	if test -n "$$list"; then \
	  echo " $(MKDIR_P) '$(DESTDIR)$(psdir)'"; \
	  $(MKDIR_P) "$(DESTDIR)$(psdir)" || exit 1; \
	fi; \
	for p in $$list; do \
	  if test -f "$$p"; then d=; else d="$(srcdir)/"; fi; \
	  echo "$$d$$p"; \
	done | $(am__base_list) | \
	while read files; do \
	  echo " $(INSTALL_DATA) $$files '$(DESTDIR)$(psdir)'"; \
	  $(INSTALL_DATA) $$files "$(DESTDIR)$(psdir)" || exit $$?; done
installcheck-am:

maintainer-clean: maintainer-clean-multi maintainer-clean-recursive
	-rm -f $(am__CONFIG_DISTCLEAN_FILES)
	-rm -rf $(top_srcdir)/autom4te.cache
	-rm -rf ./$(DEPDIR)
	-rm -f Makefile
maintainer-clean-am: distclean-am maintainer-clean-aminfo \
	maintainer-clean-generic

mostlyclean: mostlyclean-multi mostlyclean-recursive

mostlyclean-am: mostlyclean-aminfo mostlyclean-compile \
	mostlyclean-generic mostlyclean-libtool

pdf: pdf-recursive

pdf-am: $(PDFS)

ps: ps-recursive

ps-am: $(PSS)

uninstall-am: uninstall-dvi-am uninstall-html-am uninstall-info-am \
	uninstall-libsubincludeHEADERS \
	uninstall-nodist_libsubincludeHEADERS \
	uninstall-nodist_toolexeclibHEADERS uninstall-pdf-am \
	uninstall-ps-am uninstall-toolexeclibDATA \
	uninstall-toolexeclibLTLIBRARIES

.MAKE: $(RECURSIVE_CLEAN_TARGETS) $(RECURSIVE_TARGETS) all all-multi \
	check clean-multi ctags-recursive distclean-multi install \
	install-am install-multi install-strip maintainer-clean-multi \
	mostlyclean-multi tags-recursive

.PHONY: $(RECURSIVE_CLEAN_TARGETS) $(RECURSIVE_TARGETS) CTAGS GTAGS \
	all all-am all-local all-multi am--refresh check check-am \
	clean clean-aminfo clean-generic clean-libtool clean-multi \
	clean-toolexeclibLTLIBRARIES ctags ctags-recursive dist \
	dist-all dist-bzip2 dist-gzip dist-info dist-lzip dist-lzma \
	dist-shar dist-tarZ dist-xz dist-zip distcheck distclean \
	distclean-compile distclean-generic distclean-hdr \
	distclean-libtool distclean-multi distclean-tags \
	distcleancheck distdir distuninstallcheck 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-libsubincludeHEADERS install-man \
	install-multi install-nodist_libsubincludeHEADERS \
	install-nodist_toolexeclibHEADERS install-pdf install-pdf-am \
	install-ps install-ps-am install-strip install-toolexeclibDATA \
	install-toolexeclibLTLIBRARIES installcheck installcheck-am \
	installdirs installdirs-am maintainer-clean \
	maintainer-clean-aminfo maintainer-clean-generic \
	maintainer-clean-multi mostlyclean mostlyclean-aminfo \
	mostlyclean-compile mostlyclean-generic mostlyclean-libtool \
	mostlyclean-multi pdf pdf-am ps ps-am tags tags-recursive \
	uninstall uninstall-am uninstall-dvi-am uninstall-html-am \
	uninstall-info-am uninstall-libsubincludeHEADERS \
	uninstall-nodist_libsubincludeHEADERS \
	uninstall-nodist_toolexeclibHEADERS uninstall-pdf-am \
	uninstall-ps-am uninstall-toolexeclibDATA \
	uninstall-toolexeclibLTLIBRARIES


vpath % $(strip $(search_path))

@LIBGUPC_SMP_RUNTIME_TRUE@@MAINTAINER_MODE_TRUE@$(UPC_ATOMIC_UPC): $(UPC_ATOMIC_DEF) $(UPC_ATOMIC_TPL) \
@LIBGUPC_SMP_RUNTIME_TRUE@@MAINTAINER_MODE_TRUE@			$(UPC_OP_DEF) $(UPC_TYPE_DEF)
@LIBGUPC_SMP_RUNTIME_TRUE@@MAINTAINER_MODE_TRUE@	cd $(LIBGUPC_SMP_SRCDIR); \
@LIBGUPC_SMP_RUNTIME_TRUE@@MAINTAINER_MODE_TRUE@	$(AUTOGEN) -L ../include upc_atomic.def
@DX_COND_doc_TRUE@@DX_COND_ps_TRUE@@LIBGUPC_PORTALS4_RUNTIME_TRUE@doxygen-ps: @DX_DOCDIR@/@PACKAGE@.ps
@DX_COND_doc_TRUE@@DX_COND_ps_TRUE@@LIBGUPC_PORTALS4_RUNTIME_TRUE@@DX_DOCDIR@/@PACKAGE@.ps: @DX_DOCDIR@/@PACKAGE@.tag
@DX_COND_doc_TRUE@@DX_COND_ps_TRUE@@LIBGUPC_PORTALS4_RUNTIME_TRUE@	cd @DX_DOCDIR@/latex; \
@DX_COND_doc_TRUE@@DX_COND_ps_TRUE@@LIBGUPC_PORTALS4_RUNTIME_TRUE@	rm -f *.aux *.toc *.idx *.ind *.ilg *.log *.out; \
@DX_COND_doc_TRUE@@DX_COND_ps_TRUE@@LIBGUPC_PORTALS4_RUNTIME_TRUE@	$(DX_LATEX) refman.tex; \
@DX_COND_doc_TRUE@@DX_COND_ps_TRUE@@LIBGUPC_PORTALS4_RUNTIME_TRUE@	$(MAKEINDEX_PATH) refman.idx; \
@DX_COND_doc_TRUE@@DX_COND_ps_TRUE@@LIBGUPC_PORTALS4_RUNTIME_TRUE@	$(DX_LATEX) refman.tex; \
@DX_COND_doc_TRUE@@DX_COND_ps_TRUE@@LIBGUPC_PORTALS4_RUNTIME_TRUE@	countdown=5; \
@DX_COND_doc_TRUE@@DX_COND_ps_TRUE@@LIBGUPC_PORTALS4_RUNTIME_TRUE@	while $(DX_EGREP) 'Rerun (LaTeX|to get cross-references right)' \
@DX_COND_doc_TRUE@@DX_COND_ps_TRUE@@LIBGUPC_PORTALS4_RUNTIME_TRUE@	refman.log > /dev/null 2>&1 \
@DX_COND_doc_TRUE@@DX_COND_ps_TRUE@@LIBGUPC_PORTALS4_RUNTIME_TRUE@	&& test $$countdown -gt 0; do \
@DX_COND_doc_TRUE@@DX_COND_ps_TRUE@@LIBGUPC_PORTALS4_RUNTIME_TRUE@	$(DX_LATEX) refman.tex; \
@DX_COND_doc_TRUE@@DX_COND_ps_TRUE@@LIBGUPC_PORTALS4_RUNTIME_TRUE@	countdown=`expr $$countdown - 1`; \
@DX_COND_doc_TRUE@@DX_COND_ps_TRUE@@LIBGUPC_PORTALS4_RUNTIME_TRUE@	done; \
@DX_COND_doc_TRUE@@DX_COND_ps_TRUE@@LIBGUPC_PORTALS4_RUNTIME_TRUE@	$(DX_DVIPS) -o ../@PACKAGE@.ps refman.dvi
@DX_COND_doc_TRUE@@DX_COND_pdf_TRUE@@LIBGUPC_PORTALS4_RUNTIME_TRUE@doxygen-pdf: @DX_DOCDIR@/@PACKAGE@.pdf
@DX_COND_doc_TRUE@@DX_COND_pdf_TRUE@@LIBGUPC_PORTALS4_RUNTIME_TRUE@@DX_DOCDIR@/@PACKAGE@.pdf: @DX_DOCDIR@/@PACKAGE@.tag
@DX_COND_doc_TRUE@@DX_COND_pdf_TRUE@@LIBGUPC_PORTALS4_RUNTIME_TRUE@	TEXINPUTS="`pwd`:.:${TEXINPUTS}"; \
@DX_COND_doc_TRUE@@DX_COND_pdf_TRUE@@LIBGUPC_PORTALS4_RUNTIME_TRUE@	export  TEXINPUTS; \
@DX_COND_doc_TRUE@@DX_COND_pdf_TRUE@@LIBGUPC_PORTALS4_RUNTIME_TRUE@	cd @DX_DOCDIR@/latex; \
@DX_COND_doc_TRUE@@DX_COND_pdf_TRUE@@LIBGUPC_PORTALS4_RUNTIME_TRUE@	rm -f *.aux *.toc *.idx *.ind *.ilg *.log *.out; \
@DX_COND_doc_TRUE@@DX_COND_pdf_TRUE@@LIBGUPC_PORTALS4_RUNTIME_TRUE@	$(DX_PDFLATEX) refman.tex; \
@DX_COND_doc_TRUE@@DX_COND_pdf_TRUE@@LIBGUPC_PORTALS4_RUNTIME_TRUE@	$(DX_MAKEINDEX) refman.idx; \
@DX_COND_doc_TRUE@@DX_COND_pdf_TRUE@@LIBGUPC_PORTALS4_RUNTIME_TRUE@	$(DX_PDFLATEX) refman.tex; \
@DX_COND_doc_TRUE@@DX_COND_pdf_TRUE@@LIBGUPC_PORTALS4_RUNTIME_TRUE@	countdown=5; \
@DX_COND_doc_TRUE@@DX_COND_pdf_TRUE@@LIBGUPC_PORTALS4_RUNTIME_TRUE@	while $(DX_EGREP) 'Rerun (LaTeX|to get cross-references right)' \
@DX_COND_doc_TRUE@@DX_COND_pdf_TRUE@@LIBGUPC_PORTALS4_RUNTIME_TRUE@	                  refman.log > /dev/null 2>&1 \
@DX_COND_doc_TRUE@@DX_COND_pdf_TRUE@@LIBGUPC_PORTALS4_RUNTIME_TRUE@	   && test $$countdown -gt 0; do \
@DX_COND_doc_TRUE@@DX_COND_pdf_TRUE@@LIBGUPC_PORTALS4_RUNTIME_TRUE@	    $(DX_PDFLATEX) refman.tex; \
@DX_COND_doc_TRUE@@DX_COND_pdf_TRUE@@LIBGUPC_PORTALS4_RUNTIME_TRUE@	    countdown=`expr $$countdown - 1`; \
@DX_COND_doc_TRUE@@DX_COND_pdf_TRUE@@LIBGUPC_PORTALS4_RUNTIME_TRUE@	done; \
@DX_COND_doc_TRUE@@DX_COND_pdf_TRUE@@LIBGUPC_PORTALS4_RUNTIME_TRUE@	mv refman.pdf ../@PACKAGE@.pdf
@DX_COND_doc_TRUE@@LIBGUPC_PORTALS4_RUNTIME_TRUE@.PHONY: doxygen-run doxygen-doc $(DX_PS_GOAL) $(DX_PDF_GOAL)
@DX_COND_doc_TRUE@@LIBGUPC_PORTALS4_RUNTIME_TRUE@.INTERMEDIATE: doxygen-run $(DX_PS_GOAL) $(DX_PDF_GOAL)
@DX_COND_doc_TRUE@@LIBGUPC_PORTALS4_RUNTIME_TRUE@doxygen-run: @DX_DOCDIR@/@PACKAGE@.tag
@DX_COND_doc_TRUE@@LIBGUPC_PORTALS4_RUNTIME_TRUE@doxygen-doc: doxygen-run $(DX_PS_GOAL) $(DX_PDF_GOAL)
@DX_COND_doc_TRUE@@LIBGUPC_PORTALS4_RUNTIME_TRUE@@DX_DOCDIR@/@PACKAGE@.tag: $(DX_CONFIG) $(pkginclude_HEADERS)
@DX_COND_doc_TRUE@@LIBGUPC_PORTALS4_RUNTIME_TRUE@	rm -rf @DX_DOCDIR@
@DX_COND_doc_TRUE@@LIBGUPC_PORTALS4_RUNTIME_TRUE@	$(DX_ENV) $(DX_DOXYGEN) $(DX_CONFIG)

@LIBGUPC_PORTALS4_RUNTIME_TRUE@@MAINTAINER_MODE_TRUE@$(UPC_COLL_PREFIX_REDUCE_UPC): gen-upc-coll-reduce.pl \
@LIBGUPC_PORTALS4_RUNTIME_TRUE@@MAINTAINER_MODE_TRUE@                               upc_coll_prefix_reduce.in
@LIBGUPC_PORTALS4_RUNTIME_TRUE@@MAINTAINER_MODE_TRUE@	$(PERL) $+ > $@

@LIBGUPC_PORTALS4_RUNTIME_TRUE@@MAINTAINER_MODE_TRUE@$(UPC_COLL_REDUCE_UPC): gen-upc-coll-reduce.pl gupcr_coll_reduce.in
@LIBGUPC_PORTALS4_RUNTIME_TRUE@@MAINTAINER_MODE_TRUE@	$(PERL) $+ > $@

@LIBGUPC_GENERIC_COLLECTIVES_TRUE@@MAINTAINER_MODE_TRUE@$(UPC_COLL_PREFIX_REDUCE_UPC): gen-upc-coll-reduce.pl \
@LIBGUPC_GENERIC_COLLECTIVES_TRUE@@MAINTAINER_MODE_TRUE@                               upc_coll_prefix_reduce.in
@LIBGUPC_GENERIC_COLLECTIVES_TRUE@@MAINTAINER_MODE_TRUE@	$(PERL) $+ > $@

@LIBGUPC_GENERIC_COLLECTIVES_TRUE@@MAINTAINER_MODE_TRUE@$(UPC_COLL_REDUCE_UPC): gen-upc-coll-reduce.pl upc_coll_reduce.in
@LIBGUPC_GENERIC_COLLECTIVES_TRUE@@MAINTAINER_MODE_TRUE@	$(PERL) $+ > $@

gcc-upc-lib.h: gen-inline-libgupc.pl gcc-upc-lib.in \
               $(UPC_RUNTIME_SRC_INLINE)
	$(PERL) $+ > $@
@LIBGUPC_LINK_SCRIPT_TRUE@$(UPC_LINK_SCRIPT): gen-upc-ld-script.pl
@LIBGUPC_LINK_SCRIPT_TRUE@	-echo "int main(){}" | $(CC) $(LDFLAGS) -Xlinker --verbose \
@LIBGUPC_LINK_SCRIPT_TRUE@	-o /dev/null -xc - | $(PERL) $+ > $@

@LIBGUPC_CRTSTUFF_TRUE@include $(gcc_objdir)/libgcc.mvars
@LIBGUPC_CRTSTUFF_TRUE@include $(upc_crtstuff_mak)

all-local: $(STAMP_GENINSRC)

stamp-geninsrc: libgupc.info
	cp -p $(top_builddir)/libgupc.info $(srcdir)/libgupc.info
	@touch $@

libgupc.info: $(STAMP_BUILD_INFO)

stamp-build-info: libgupc.texi
	$(MAKEINFO) $(AM_MAKEINFOFLAGS) $(MAKEINFOFLAGS) -I $(srcdir) -o libgupc.info $(srcdir)/libgupc.texi
	@touch $@

# 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: