File: Makefile.in

package info (click to toggle)
alberta 3.0.3-1
  • links: PTS, VCS
  • area: main
  • in suites: bookworm
  • size: 20,184 kB
  • sloc: ansic: 164,449; sh: 4,427; makefile: 2,109
file content (2771 lines) | stat: -rw-r--r-- 275,606 bytes parent folder | download | duplicates (2)
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
# Makefile.in generated by automake 1.16.1 from Makefile.am.
# @configure_input@

# Copyright (C) 1994-2018 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@

# Hey, Emacs, we're -*- makefile -*- mode!
# 
# Makefile.am fragment shared by all builds
#


VPATH = @srcdir@
am__is_gnu_make = { \
  if test -z '$(MAKELEVEL)'; then \
    false; \
  elif test -n '$(MAKE_HOST)'; then \
    true; \
  elif test -n '$(MAKE_VERSION)' && test -n '$(CURDIR)'; then \
    true; \
  else \
    false; \
  fi; \
}
am__make_running_with_option = \
  case $${target_option-} in \
      ?) ;; \
      *) echo "am__make_running_with_option: internal error: invalid" \
              "target option '$${target_option-}' specified" >&2; \
         exit 1;; \
  esac; \
  has_opt=no; \
  sane_makeflags=$$MAKEFLAGS; \
  if $(am__is_gnu_make); then \
    sane_makeflags=$$MFLAGS; \
  else \
    case $$MAKEFLAGS in \
      *\\[\ \	]*) \
        bs=\\; \
        sane_makeflags=`printf '%s\n' "$$MAKEFLAGS" \
          | sed "s/$$bs$$bs[$$bs $$bs	]*//g"`;; \
    esac; \
  fi; \
  skip_next=no; \
  strip_trailopt () \
  { \
    flg=`printf '%s\n' "$$flg" | sed "s/$$1.*$$//"`; \
  }; \
  for flg in $$sane_makeflags; do \
    test $$skip_next = yes && { skip_next=no; continue; }; \
    case $$flg in \
      *=*|--*) continue;; \
        -*I) strip_trailopt 'I'; skip_next=yes;; \
      -*I?*) strip_trailopt 'I';; \
        -*O) strip_trailopt 'O'; skip_next=yes;; \
      -*O?*) strip_trailopt 'O';; \
        -*l) strip_trailopt 'l'; skip_next=yes;; \
      -*l?*) strip_trailopt 'l';; \
      -[dEDm]) skip_next=yes;; \
      -[JT]) skip_next=yes;; \
    esac; \
    case $$flg in \
      *$$target_option*) has_opt=yes; break;; \
    esac; \
  done; \
  test $$has_opt = yes
am__make_dryrun = (target_option=n; $(am__make_running_with_option))
am__make_keepgoing = (target_option=k; $(am__make_running_with_option))
pkgdatadir = $(datadir)/@PACKAGE@
pkgincludedir = $(includedir)/@PACKAGE@
pkglibdir = $(libdir)/@PACKAGE@
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@
@HAVE_GPSKCA_TRUE@am__append_1 = ../Common/optimize_profile.c ../Common/optimize_profile.h
@HAVE_OPENGL_TRUE@am__append_2 = ../Common/graphXO.c
@HAVE_GLTOOLS_TRUE@am__append_3 = ../Common/gltools.c
@HAVE_OPENDX_TRUE@am__append_4 = ../Common/dxtools.c
@VECTOR_BASIS_FUNCTIONS_TRUE@am__append_5 = libVV_assemble_2d_profile.la\
@VECTOR_BASIS_FUNCTIONS_TRUE@ libVC_assemble_2d_profile.la libCV_assemble_2d_profile.la\
@VECTOR_BASIS_FUNCTIONS_TRUE@ libVS_assemble_2d_profile.la libSV_assemble_2d_profile.la

@ALBERTA_FEM_TOOLBOX_TRUE@am__append_6 = libalberta_fem_2d_profile.la
@ALBERTA_FEM_TOOLBOX_TRUE@am__append_7 = alberta-fem_2d_profile.pc
@ALBERTA_FEM_TOOLBOX_TRUE@am__append_8 = $(assemble_2d_profile_libs)
@ALBERTA_USE_GRAPHICS_TRUE@am__append_9 = libalberta_gfx_2d_profile.la
@ALBERTA_USE_GRAPHICS_TRUE@am__append_10 = alberta-gfx_2d_profile.pc
subdir = alberta/src/alberta_2d_profile
ACLOCAL_M4 = $(top_srcdir)/aclocal.m4
am__aclocal_m4_deps = $(top_srcdir)/m4/alberta-dims.m4 \
	$(top_srcdir)/m4/alberta-unused.m4 \
	$(top_srcdir)/m4/check-iso-c99.m4 \
	$(top_srcdir)/m4/check-package.m4 \
	$(top_srcdir)/m4/frameworks.m4 $(top_srcdir)/m4/gltools.m4 \
	$(top_srcdir)/m4/grapeiface.m4 $(top_srcdir)/m4/libtool.m4 \
	$(top_srcdir)/m4/ltoptions.m4 $(top_srcdir)/m4/ltsugar.m4 \
	$(top_srcdir)/m4/ltversion.m4 $(top_srcdir)/m4/lt~obsolete.m4 \
	$(top_srcdir)/m4/opendx.m4 $(top_srcdir)/m4/opengl.m4 \
	$(top_srcdir)/m4/set-prefix.m4 \
	$(top_srcdir)/m4/simple-enable-flag.m4 \
	$(top_srcdir)/m4/x-window-system.m4 $(top_srcdir)/configure.ac
am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \
	$(ACLOCAL_M4)
DIST_COMMON = $(srcdir)/Makefile.am $(am__DIST_COMMON)
mkinstalldirs = $(install_sh) -d
CONFIG_HEADER = $(top_builddir)/config.h
CONFIG_CLEAN_FILES =
CONFIG_CLEAN_VPATH_FILES =
am__vpath_adj_setup = srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`;
am__vpath_adj = case $$p in \
    $(srcdir)/*) f=`echo "$$p" | sed "s|^$$srcdirstrip/||"`;; \
    *) f=$$p;; \
  esac;
am__strip_dir = f=`echo $$p | sed -e 's|^.*/||'`;
am__install_max = 40
am__nobase_strip_setup = \
  srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*|]/\\\\&/g'`
am__nobase_strip = \
  for p in $$list; do echo "$$p"; done | sed -e "s|$$srcdirstrip/||"
am__nobase_list = $(am__nobase_strip_setup); \
  for p in $$list; do echo "$$p $$p"; done | \
  sed "s| $$srcdirstrip/| |;"' / .*\//!s/ .*/ ./; s,\( .*\)/[^/]*$$,\1,' | \
  $(AWK) 'BEGIN { files["."] = "" } { files[$$2] = files[$$2] " " $$1; \
    if (++n[$$2] == $(am__install_max)) \
      { print $$2, files[$$2]; n[$$2] = 0; files[$$2] = "" } } \
    END { for (dir in files) print dir, files[dir] }'
am__base_list = \
  sed '$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;s/\n/ /g' | \
  sed '$$!N;$$!N;$$!N;$$!N;s/\n/ /g'
am__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)$(libdir)" "$(DESTDIR)$(pkgconfigdir)"
LTLIBRARIES = $(lib_LTLIBRARIES) $(noinst_LTLIBRARIES)
libCV_assemble_2d_profile_la_LIBADD =
am__objects_1 = libCV_assemble_2d_profile_la-M_M_M_M_assemble_fcts.lo \
	libCV_assemble_2d_profile_la-M_M_DM_DM_assemble_fcts.lo \
	libCV_assemble_2d_profile_la-M_M_SCM_SCM_assemble_fcts.lo \
	libCV_assemble_2d_profile_la-DM_DM_DM_DM_assemble_fcts.lo \
	libCV_assemble_2d_profile_la-DM_DM_SCM_SCM_assemble_fcts.lo \
	libCV_assemble_2d_profile_la-SCM_SCM_SCM_SCM_assemble_fcts.lo
am__objects_2 =
am__objects_3 =  \
	libCV_assemble_2d_profile_la-M_M_assemble_bndry_fcts.lo \
	libCV_assemble_2d_profile_la-M_DM_assemble_bndry_fcts.lo \
	libCV_assemble_2d_profile_la-M_SCM_assemble_bndry_fcts.lo \
	libCV_assemble_2d_profile_la-DM_DM_assemble_bndry_fcts.lo \
	libCV_assemble_2d_profile_la-DM_SCM_assemble_bndry_fcts.lo \
	libCV_assemble_2d_profile_la-SCM_SCM_assemble_bndry_fcts.lo
am__objects_4 = libCV_assemble_2d_profile_la-assemble.lo \
	libCV_assemble_2d_profile_la-assemble_bndry.lo \
	libCV_assemble_2d_profile_la-assemble_neigh.lo \
	$(am__objects_1) $(am__objects_2) $(am__objects_3)
am_libCV_assemble_2d_profile_la_OBJECTS = $(am__objects_4)
libCV_assemble_2d_profile_la_OBJECTS =  \
	$(am_libCV_assemble_2d_profile_la_OBJECTS)
AM_V_lt = $(am__v_lt_@AM_V@)
am__v_lt_ = $(am__v_lt_@AM_DEFAULT_V@)
am__v_lt_0 = --silent
am__v_lt_1 = 
@ALBERTA_FEM_TOOLBOX_TRUE@@VECTOR_BASIS_FUNCTIONS_TRUE@am_libCV_assemble_2d_profile_la_rpath =
libSS_assemble_2d_profile_la_LIBADD =
am__objects_5 = libSS_assemble_2d_profile_la-M_M_M_M_assemble_fcts.lo \
	libSS_assemble_2d_profile_la-M_M_DM_DM_assemble_fcts.lo \
	libSS_assemble_2d_profile_la-M_M_SCM_SCM_assemble_fcts.lo \
	libSS_assemble_2d_profile_la-DM_DM_DM_DM_assemble_fcts.lo \
	libSS_assemble_2d_profile_la-DM_DM_SCM_SCM_assemble_fcts.lo \
	libSS_assemble_2d_profile_la-SCM_SCM_SCM_SCM_assemble_fcts.lo
am__objects_6 =  \
	libSS_assemble_2d_profile_la-M_M_assemble_bndry_fcts.lo \
	libSS_assemble_2d_profile_la-M_DM_assemble_bndry_fcts.lo \
	libSS_assemble_2d_profile_la-M_SCM_assemble_bndry_fcts.lo \
	libSS_assemble_2d_profile_la-DM_DM_assemble_bndry_fcts.lo \
	libSS_assemble_2d_profile_la-DM_SCM_assemble_bndry_fcts.lo \
	libSS_assemble_2d_profile_la-SCM_SCM_assemble_bndry_fcts.lo
am__objects_7 = libSS_assemble_2d_profile_la-assemble.lo \
	libSS_assemble_2d_profile_la-assemble_bndry.lo \
	libSS_assemble_2d_profile_la-assemble_neigh.lo \
	$(am__objects_5) $(am__objects_2) $(am__objects_6)
am_libSS_assemble_2d_profile_la_OBJECTS = $(am__objects_7)
libSS_assemble_2d_profile_la_OBJECTS =  \
	$(am_libSS_assemble_2d_profile_la_OBJECTS)
@ALBERTA_FEM_TOOLBOX_TRUE@am_libSS_assemble_2d_profile_la_rpath =
libSV_assemble_2d_profile_la_LIBADD =
am__objects_8 =  \
	libSV_assemble_2d_profile_la-DM_DM_DM_DM_assemble_fcts.lo \
	libSV_assemble_2d_profile_la-DM_DM_SCM_SCM_assemble_fcts.lo \
	libSV_assemble_2d_profile_la-SCM_SCM_SCM_SCM_assemble_fcts.lo
am__objects_9 =  \
	libSV_assemble_2d_profile_la-DM_DM_assemble_bndry_fcts.lo \
	libSV_assemble_2d_profile_la-DM_SCM_assemble_bndry_fcts.lo \
	libSV_assemble_2d_profile_la-SCM_SCM_assemble_bndry_fcts.lo
am__objects_10 = libSV_assemble_2d_profile_la-assemble.lo \
	libSV_assemble_2d_profile_la-assemble_bndry.lo \
	libSV_assemble_2d_profile_la-assemble_neigh.lo \
	$(am__objects_8) $(am__objects_2) $(am__objects_9)
am_libSV_assemble_2d_profile_la_OBJECTS = $(am__objects_10)
libSV_assemble_2d_profile_la_OBJECTS =  \
	$(am_libSV_assemble_2d_profile_la_OBJECTS)
@ALBERTA_FEM_TOOLBOX_TRUE@@VECTOR_BASIS_FUNCTIONS_TRUE@am_libSV_assemble_2d_profile_la_rpath =
libVC_assemble_2d_profile_la_LIBADD =
am__objects_11 =  \
	libVC_assemble_2d_profile_la-M_M_M_M_assemble_fcts.lo \
	libVC_assemble_2d_profile_la-M_M_DM_DM_assemble_fcts.lo \
	libVC_assemble_2d_profile_la-M_M_SCM_SCM_assemble_fcts.lo \
	libVC_assemble_2d_profile_la-DM_DM_DM_DM_assemble_fcts.lo \
	libVC_assemble_2d_profile_la-DM_DM_SCM_SCM_assemble_fcts.lo \
	libVC_assemble_2d_profile_la-SCM_SCM_SCM_SCM_assemble_fcts.lo
am__objects_12 =  \
	libVC_assemble_2d_profile_la-M_M_assemble_bndry_fcts.lo \
	libVC_assemble_2d_profile_la-M_DM_assemble_bndry_fcts.lo \
	libVC_assemble_2d_profile_la-M_SCM_assemble_bndry_fcts.lo \
	libVC_assemble_2d_profile_la-DM_DM_assemble_bndry_fcts.lo \
	libVC_assemble_2d_profile_la-DM_SCM_assemble_bndry_fcts.lo \
	libVC_assemble_2d_profile_la-SCM_SCM_assemble_bndry_fcts.lo
am__objects_13 = libVC_assemble_2d_profile_la-assemble.lo \
	libVC_assemble_2d_profile_la-assemble_bndry.lo \
	libVC_assemble_2d_profile_la-assemble_neigh.lo \
	$(am__objects_11) $(am__objects_2) $(am__objects_12)
am_libVC_assemble_2d_profile_la_OBJECTS = $(am__objects_13)
libVC_assemble_2d_profile_la_OBJECTS =  \
	$(am_libVC_assemble_2d_profile_la_OBJECTS)
@ALBERTA_FEM_TOOLBOX_TRUE@@VECTOR_BASIS_FUNCTIONS_TRUE@am_libVC_assemble_2d_profile_la_rpath =
libVS_assemble_2d_profile_la_LIBADD =
am__objects_14 =  \
	libVS_assemble_2d_profile_la-DM_DM_DM_DM_assemble_fcts.lo \
	libVS_assemble_2d_profile_la-DM_DM_SCM_SCM_assemble_fcts.lo \
	libVS_assemble_2d_profile_la-SCM_SCM_SCM_SCM_assemble_fcts.lo
am__objects_15 =  \
	libVS_assemble_2d_profile_la-DM_DM_assemble_bndry_fcts.lo \
	libVS_assemble_2d_profile_la-DM_SCM_assemble_bndry_fcts.lo \
	libVS_assemble_2d_profile_la-SCM_SCM_assemble_bndry_fcts.lo
am__objects_16 = libVS_assemble_2d_profile_la-assemble.lo \
	libVS_assemble_2d_profile_la-assemble_bndry.lo \
	libVS_assemble_2d_profile_la-assemble_neigh.lo \
	$(am__objects_14) $(am__objects_2) $(am__objects_15)
am_libVS_assemble_2d_profile_la_OBJECTS = $(am__objects_16)
libVS_assemble_2d_profile_la_OBJECTS =  \
	$(am_libVS_assemble_2d_profile_la_OBJECTS)
@ALBERTA_FEM_TOOLBOX_TRUE@@VECTOR_BASIS_FUNCTIONS_TRUE@am_libVS_assemble_2d_profile_la_rpath =
libVV_assemble_2d_profile_la_LIBADD =
am__objects_17 =  \
	libVV_assemble_2d_profile_la-M_M_M_M_assemble_fcts.lo \
	libVV_assemble_2d_profile_la-M_M_DM_DM_assemble_fcts.lo \
	libVV_assemble_2d_profile_la-M_M_SCM_SCM_assemble_fcts.lo \
	libVV_assemble_2d_profile_la-DM_DM_DM_DM_assemble_fcts.lo \
	libVV_assemble_2d_profile_la-DM_DM_SCM_SCM_assemble_fcts.lo \
	libVV_assemble_2d_profile_la-SCM_SCM_SCM_SCM_assemble_fcts.lo
am__objects_18 =  \
	libVV_assemble_2d_profile_la-M_M_assemble_bndry_fcts.lo \
	libVV_assemble_2d_profile_la-M_DM_assemble_bndry_fcts.lo \
	libVV_assemble_2d_profile_la-M_SCM_assemble_bndry_fcts.lo \
	libVV_assemble_2d_profile_la-DM_DM_assemble_bndry_fcts.lo \
	libVV_assemble_2d_profile_la-DM_SCM_assemble_bndry_fcts.lo \
	libVV_assemble_2d_profile_la-SCM_SCM_assemble_bndry_fcts.lo
am__objects_19 = libVV_assemble_2d_profile_la-assemble.lo \
	libVV_assemble_2d_profile_la-assemble_bndry.lo \
	libVV_assemble_2d_profile_la-assemble_neigh.lo \
	$(am__objects_17) $(am__objects_2) $(am__objects_18)
am_libVV_assemble_2d_profile_la_OBJECTS = $(am__objects_19)
libVV_assemble_2d_profile_la_OBJECTS =  \
	$(am_libVV_assemble_2d_profile_la_OBJECTS)
@ALBERTA_FEM_TOOLBOX_TRUE@@VECTOR_BASIS_FUNCTIONS_TRUE@am_libVV_assemble_2d_profile_la_rpath =
libalberta_2d_profile_la_DEPENDENCIES =
am__objects_20 = libalberta_2d_profile_la-bas_fct.lo \
	libalberta_2d_profile_la-check.lo \
	libalberta_2d_profile_la-coarsen.lo \
	libalberta_2d_profile_la-dof_admin.lo \
	libalberta_2d_profile_la-element.lo \
	libalberta_2d_profile_la-eval.lo \
	libalberta_2d_profile_la-gauss-quad.lo \
	libalberta_2d_profile_la-macro.lo \
	libalberta_2d_profile_la-memory.lo \
	libalberta_2d_profile_la-numint.lo \
	libalberta_2d_profile_la-parametric.lo \
	libalberta_2d_profile_la-periodic.lo \
	libalberta_2d_profile_la-quad_cache.lo \
	libalberta_2d_profile_la-read_mesh.lo \
	libalberta_2d_profile_la-read_mesh_xdr_1.2.lo \
	libalberta_2d_profile_la-refine.lo \
	libalberta_2d_profile_la-submesh.lo \
	libalberta_2d_profile_la-trav_xy.lo \
	libalberta_2d_profile_la-traverse_nr.lo \
	libalberta_2d_profile_la-traverse_r.lo \
	libalberta_2d_profile_la-write_mesh.lo \
	libalberta_2d_profile_la-write_mesh_ps.lo
am__objects_21 = libalberta_2d_profile_la-write_mesh_gmv.lo
am__objects_22 = $(am__objects_20) $(am__objects_21)
nodist_libalberta_2d_profile_la_OBJECTS = $(am__objects_22)
libalberta_2d_profile_la_OBJECTS =  \
	$(nodist_libalberta_2d_profile_la_OBJECTS)
libalberta_2d_profile_la_LINK = $(LIBTOOL) $(AM_V_lt) --tag=CC \
	$(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=link $(CCLD) \
	$(AM_CFLAGS) $(CFLAGS) $(libalberta_2d_profile_la_LDFLAGS) \
	$(LDFLAGS) -o $@
@ALBERTA_FEM_TOOLBOX_TRUE@libalberta_fem_2d_profile_la_DEPENDENCIES =  \
@ALBERTA_FEM_TOOLBOX_TRUE@	$(assemble_2d_profile_libs)
am__libalberta_fem_2d_profile_la_SOURCES_DIST = ../Common/HB_precon.c \
	../Common/MG.c ../Common/MG_s.c ../Common/MG_s1.c \
	../Common/MG_s2.c ../Common/SSOR_precon.c ../Common/adapt.c \
	../Common/assemble-instat.c ../Common/block_precon.c \
	../Common/bndry_cond.c ../Common/crs_matrix.c \
	../Common/crs_matrix.h ../Common/diag_precon.c \
	../Common/error.c ../Common/estimator.c \
	../Common/estimator_dowb.c ../Common/ilu_k_precon.c \
	../Common/ilu_k_precon.h ../Common/l2scp.c ../Common/level.c \
	../Common/oem_solve.c ../Common/oem_sp_solve.c ../Common/sor.c \
	../Common/ssor.c ../Common/wall_quad.c \
	../Common/optimize_profile.c ../Common/optimize_profile.h
@HAVE_GPSKCA_TRUE@am__objects_23 = libalberta_fem_2d_profile_la-optimize_profile.lo
am__objects_24 = libalberta_fem_2d_profile_la-HB_precon.lo \
	libalberta_fem_2d_profile_la-MG.lo \
	libalberta_fem_2d_profile_la-MG_s.lo \
	libalberta_fem_2d_profile_la-MG_s1.lo \
	libalberta_fem_2d_profile_la-MG_s2.lo \
	libalberta_fem_2d_profile_la-SSOR_precon.lo \
	libalberta_fem_2d_profile_la-adapt.lo \
	libalberta_fem_2d_profile_la-assemble-instat.lo \
	libalberta_fem_2d_profile_la-block_precon.lo \
	libalberta_fem_2d_profile_la-bndry_cond.lo \
	libalberta_fem_2d_profile_la-crs_matrix.lo \
	libalberta_fem_2d_profile_la-diag_precon.lo \
	libalberta_fem_2d_profile_la-error.lo \
	libalberta_fem_2d_profile_la-estimator.lo \
	libalberta_fem_2d_profile_la-estimator_dowb.lo \
	libalberta_fem_2d_profile_la-ilu_k_precon.lo \
	libalberta_fem_2d_profile_la-l2scp.lo \
	libalberta_fem_2d_profile_la-level.lo \
	libalberta_fem_2d_profile_la-oem_solve.lo \
	libalberta_fem_2d_profile_la-oem_sp_solve.lo \
	libalberta_fem_2d_profile_la-sor.lo \
	libalberta_fem_2d_profile_la-ssor.lo \
	libalberta_fem_2d_profile_la-wall_quad.lo $(am__objects_23)
@ALBERTA_FEM_TOOLBOX_TRUE@am_libalberta_fem_2d_profile_la_OBJECTS =  \
@ALBERTA_FEM_TOOLBOX_TRUE@	$(am__objects_24)
libalberta_fem_2d_profile_la_OBJECTS =  \
	$(am_libalberta_fem_2d_profile_la_OBJECTS)
libalberta_fem_2d_profile_la_LINK = $(LIBTOOL) $(AM_V_lt) --tag=CC \
	$(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=link $(CCLD) \
	$(AM_CFLAGS) $(CFLAGS) $(libalberta_fem_2d_profile_la_LDFLAGS) \
	$(LDFLAGS) -o $@
@ALBERTA_FEM_TOOLBOX_TRUE@am_libalberta_fem_2d_profile_la_rpath =  \
@ALBERTA_FEM_TOOLBOX_TRUE@	-rpath $(libdir)
libalberta_gfx_2d_profile_la_LIBADD =
@HAVE_OPENGL_TRUE@am__objects_25 =  \
@HAVE_OPENGL_TRUE@	libalberta_gfx_2d_profile_la-graphXO.lo
@HAVE_GLTOOLS_TRUE@am__objects_26 =  \
@HAVE_GLTOOLS_TRUE@	libalberta_gfx_2d_profile_la-gltools.lo
@HAVE_OPENDX_TRUE@am__objects_27 =  \
@HAVE_OPENDX_TRUE@	libalberta_gfx_2d_profile_la-dxtools.lo
am__objects_28 = libalberta_gfx_2d_profile_la-gfx-dummy.lo \
	$(am__objects_25) $(am__objects_26) $(am__objects_27)
@ALBERTA_USE_GRAPHICS_TRUE@nodist_libalberta_gfx_2d_profile_la_OBJECTS =  \
@ALBERTA_USE_GRAPHICS_TRUE@	$(am__objects_28)
libalberta_gfx_2d_profile_la_OBJECTS =  \
	$(nodist_libalberta_gfx_2d_profile_la_OBJECTS)
libalberta_gfx_2d_profile_la_LINK = $(LIBTOOL) $(AM_V_lt) --tag=CC \
	$(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=link $(CCLD) \
	$(AM_CFLAGS) $(CFLAGS) $(libalberta_gfx_2d_profile_la_LDFLAGS) \
	$(LDFLAGS) -o $@
@ALBERTA_USE_GRAPHICS_TRUE@am_libalberta_gfx_2d_profile_la_rpath =  \
@ALBERTA_USE_GRAPHICS_TRUE@	-rpath $(libdir)
AM_V_P = $(am__v_P_@AM_V@)
am__v_P_ = $(am__v_P_@AM_DEFAULT_V@)
am__v_P_0 = false
am__v_P_1 = :
AM_V_GEN = $(am__v_GEN_@AM_V@)
am__v_GEN_ = $(am__v_GEN_@AM_DEFAULT_V@)
am__v_GEN_0 = @echo "  GEN     " $@;
am__v_GEN_1 = 
AM_V_at = $(am__v_at_@AM_V@)
am__v_at_ = $(am__v_at_@AM_DEFAULT_V@)
am__v_at_0 = @
am__v_at_1 = 
DEFAULT_INCLUDES = -I.@am__isrc@ -I$(top_builddir)
depcomp = $(SHELL) $(top_srcdir)/depcomp
am__maybe_remake_depfiles = depfiles
am__depfiles_remade = ./$(DEPDIR)/libCV_assemble_2d_profile_la-DM_DM_DM_DM_assemble_fcts.Plo \
	./$(DEPDIR)/libCV_assemble_2d_profile_la-DM_DM_SCM_SCM_assemble_fcts.Plo \
	./$(DEPDIR)/libCV_assemble_2d_profile_la-DM_DM_assemble_bndry_fcts.Plo \
	./$(DEPDIR)/libCV_assemble_2d_profile_la-DM_SCM_assemble_bndry_fcts.Plo \
	./$(DEPDIR)/libCV_assemble_2d_profile_la-M_DM_assemble_bndry_fcts.Plo \
	./$(DEPDIR)/libCV_assemble_2d_profile_la-M_M_DM_DM_assemble_fcts.Plo \
	./$(DEPDIR)/libCV_assemble_2d_profile_la-M_M_M_M_assemble_fcts.Plo \
	./$(DEPDIR)/libCV_assemble_2d_profile_la-M_M_SCM_SCM_assemble_fcts.Plo \
	./$(DEPDIR)/libCV_assemble_2d_profile_la-M_M_assemble_bndry_fcts.Plo \
	./$(DEPDIR)/libCV_assemble_2d_profile_la-M_SCM_assemble_bndry_fcts.Plo \
	./$(DEPDIR)/libCV_assemble_2d_profile_la-SCM_SCM_SCM_SCM_assemble_fcts.Plo \
	./$(DEPDIR)/libCV_assemble_2d_profile_la-SCM_SCM_assemble_bndry_fcts.Plo \
	./$(DEPDIR)/libCV_assemble_2d_profile_la-assemble.Plo \
	./$(DEPDIR)/libCV_assemble_2d_profile_la-assemble_bndry.Plo \
	./$(DEPDIR)/libCV_assemble_2d_profile_la-assemble_neigh.Plo \
	./$(DEPDIR)/libSS_assemble_2d_profile_la-DM_DM_DM_DM_assemble_fcts.Plo \
	./$(DEPDIR)/libSS_assemble_2d_profile_la-DM_DM_SCM_SCM_assemble_fcts.Plo \
	./$(DEPDIR)/libSS_assemble_2d_profile_la-DM_DM_assemble_bndry_fcts.Plo \
	./$(DEPDIR)/libSS_assemble_2d_profile_la-DM_SCM_assemble_bndry_fcts.Plo \
	./$(DEPDIR)/libSS_assemble_2d_profile_la-M_DM_assemble_bndry_fcts.Plo \
	./$(DEPDIR)/libSS_assemble_2d_profile_la-M_M_DM_DM_assemble_fcts.Plo \
	./$(DEPDIR)/libSS_assemble_2d_profile_la-M_M_M_M_assemble_fcts.Plo \
	./$(DEPDIR)/libSS_assemble_2d_profile_la-M_M_SCM_SCM_assemble_fcts.Plo \
	./$(DEPDIR)/libSS_assemble_2d_profile_la-M_M_assemble_bndry_fcts.Plo \
	./$(DEPDIR)/libSS_assemble_2d_profile_la-M_SCM_assemble_bndry_fcts.Plo \
	./$(DEPDIR)/libSS_assemble_2d_profile_la-SCM_SCM_SCM_SCM_assemble_fcts.Plo \
	./$(DEPDIR)/libSS_assemble_2d_profile_la-SCM_SCM_assemble_bndry_fcts.Plo \
	./$(DEPDIR)/libSS_assemble_2d_profile_la-assemble.Plo \
	./$(DEPDIR)/libSS_assemble_2d_profile_la-assemble_bndry.Plo \
	./$(DEPDIR)/libSS_assemble_2d_profile_la-assemble_neigh.Plo \
	./$(DEPDIR)/libSV_assemble_2d_profile_la-DM_DM_DM_DM_assemble_fcts.Plo \
	./$(DEPDIR)/libSV_assemble_2d_profile_la-DM_DM_SCM_SCM_assemble_fcts.Plo \
	./$(DEPDIR)/libSV_assemble_2d_profile_la-DM_DM_assemble_bndry_fcts.Plo \
	./$(DEPDIR)/libSV_assemble_2d_profile_la-DM_SCM_assemble_bndry_fcts.Plo \
	./$(DEPDIR)/libSV_assemble_2d_profile_la-SCM_SCM_SCM_SCM_assemble_fcts.Plo \
	./$(DEPDIR)/libSV_assemble_2d_profile_la-SCM_SCM_assemble_bndry_fcts.Plo \
	./$(DEPDIR)/libSV_assemble_2d_profile_la-assemble.Plo \
	./$(DEPDIR)/libSV_assemble_2d_profile_la-assemble_bndry.Plo \
	./$(DEPDIR)/libSV_assemble_2d_profile_la-assemble_neigh.Plo \
	./$(DEPDIR)/libVC_assemble_2d_profile_la-DM_DM_DM_DM_assemble_fcts.Plo \
	./$(DEPDIR)/libVC_assemble_2d_profile_la-DM_DM_SCM_SCM_assemble_fcts.Plo \
	./$(DEPDIR)/libVC_assemble_2d_profile_la-DM_DM_assemble_bndry_fcts.Plo \
	./$(DEPDIR)/libVC_assemble_2d_profile_la-DM_SCM_assemble_bndry_fcts.Plo \
	./$(DEPDIR)/libVC_assemble_2d_profile_la-M_DM_assemble_bndry_fcts.Plo \
	./$(DEPDIR)/libVC_assemble_2d_profile_la-M_M_DM_DM_assemble_fcts.Plo \
	./$(DEPDIR)/libVC_assemble_2d_profile_la-M_M_M_M_assemble_fcts.Plo \
	./$(DEPDIR)/libVC_assemble_2d_profile_la-M_M_SCM_SCM_assemble_fcts.Plo \
	./$(DEPDIR)/libVC_assemble_2d_profile_la-M_M_assemble_bndry_fcts.Plo \
	./$(DEPDIR)/libVC_assemble_2d_profile_la-M_SCM_assemble_bndry_fcts.Plo \
	./$(DEPDIR)/libVC_assemble_2d_profile_la-SCM_SCM_SCM_SCM_assemble_fcts.Plo \
	./$(DEPDIR)/libVC_assemble_2d_profile_la-SCM_SCM_assemble_bndry_fcts.Plo \
	./$(DEPDIR)/libVC_assemble_2d_profile_la-assemble.Plo \
	./$(DEPDIR)/libVC_assemble_2d_profile_la-assemble_bndry.Plo \
	./$(DEPDIR)/libVC_assemble_2d_profile_la-assemble_neigh.Plo \
	./$(DEPDIR)/libVS_assemble_2d_profile_la-DM_DM_DM_DM_assemble_fcts.Plo \
	./$(DEPDIR)/libVS_assemble_2d_profile_la-DM_DM_SCM_SCM_assemble_fcts.Plo \
	./$(DEPDIR)/libVS_assemble_2d_profile_la-DM_DM_assemble_bndry_fcts.Plo \
	./$(DEPDIR)/libVS_assemble_2d_profile_la-DM_SCM_assemble_bndry_fcts.Plo \
	./$(DEPDIR)/libVS_assemble_2d_profile_la-SCM_SCM_SCM_SCM_assemble_fcts.Plo \
	./$(DEPDIR)/libVS_assemble_2d_profile_la-SCM_SCM_assemble_bndry_fcts.Plo \
	./$(DEPDIR)/libVS_assemble_2d_profile_la-assemble.Plo \
	./$(DEPDIR)/libVS_assemble_2d_profile_la-assemble_bndry.Plo \
	./$(DEPDIR)/libVS_assemble_2d_profile_la-assemble_neigh.Plo \
	./$(DEPDIR)/libVV_assemble_2d_profile_la-DM_DM_DM_DM_assemble_fcts.Plo \
	./$(DEPDIR)/libVV_assemble_2d_profile_la-DM_DM_SCM_SCM_assemble_fcts.Plo \
	./$(DEPDIR)/libVV_assemble_2d_profile_la-DM_DM_assemble_bndry_fcts.Plo \
	./$(DEPDIR)/libVV_assemble_2d_profile_la-DM_SCM_assemble_bndry_fcts.Plo \
	./$(DEPDIR)/libVV_assemble_2d_profile_la-M_DM_assemble_bndry_fcts.Plo \
	./$(DEPDIR)/libVV_assemble_2d_profile_la-M_M_DM_DM_assemble_fcts.Plo \
	./$(DEPDIR)/libVV_assemble_2d_profile_la-M_M_M_M_assemble_fcts.Plo \
	./$(DEPDIR)/libVV_assemble_2d_profile_la-M_M_SCM_SCM_assemble_fcts.Plo \
	./$(DEPDIR)/libVV_assemble_2d_profile_la-M_M_assemble_bndry_fcts.Plo \
	./$(DEPDIR)/libVV_assemble_2d_profile_la-M_SCM_assemble_bndry_fcts.Plo \
	./$(DEPDIR)/libVV_assemble_2d_profile_la-SCM_SCM_SCM_SCM_assemble_fcts.Plo \
	./$(DEPDIR)/libVV_assemble_2d_profile_la-SCM_SCM_assemble_bndry_fcts.Plo \
	./$(DEPDIR)/libVV_assemble_2d_profile_la-assemble.Plo \
	./$(DEPDIR)/libVV_assemble_2d_profile_la-assemble_bndry.Plo \
	./$(DEPDIR)/libVV_assemble_2d_profile_la-assemble_neigh.Plo \
	./$(DEPDIR)/libalberta_2d_profile_la-bas_fct.Plo \
	./$(DEPDIR)/libalberta_2d_profile_la-check.Plo \
	./$(DEPDIR)/libalberta_2d_profile_la-coarsen.Plo \
	./$(DEPDIR)/libalberta_2d_profile_la-dof_admin.Plo \
	./$(DEPDIR)/libalberta_2d_profile_la-element.Plo \
	./$(DEPDIR)/libalberta_2d_profile_la-eval.Plo \
	./$(DEPDIR)/libalberta_2d_profile_la-gauss-quad.Plo \
	./$(DEPDIR)/libalberta_2d_profile_la-macro.Plo \
	./$(DEPDIR)/libalberta_2d_profile_la-memory.Plo \
	./$(DEPDIR)/libalberta_2d_profile_la-numint.Plo \
	./$(DEPDIR)/libalberta_2d_profile_la-parametric.Plo \
	./$(DEPDIR)/libalberta_2d_profile_la-periodic.Plo \
	./$(DEPDIR)/libalberta_2d_profile_la-quad_cache.Plo \
	./$(DEPDIR)/libalberta_2d_profile_la-read_mesh.Plo \
	./$(DEPDIR)/libalberta_2d_profile_la-read_mesh_xdr_1.2.Plo \
	./$(DEPDIR)/libalberta_2d_profile_la-refine.Plo \
	./$(DEPDIR)/libalberta_2d_profile_la-submesh.Plo \
	./$(DEPDIR)/libalberta_2d_profile_la-trav_xy.Plo \
	./$(DEPDIR)/libalberta_2d_profile_la-traverse_nr.Plo \
	./$(DEPDIR)/libalberta_2d_profile_la-traverse_r.Plo \
	./$(DEPDIR)/libalberta_2d_profile_la-write_mesh.Plo \
	./$(DEPDIR)/libalberta_2d_profile_la-write_mesh_gmv.Plo \
	./$(DEPDIR)/libalberta_2d_profile_la-write_mesh_ps.Plo \
	./$(DEPDIR)/libalberta_fem_2d_profile_la-HB_precon.Plo \
	./$(DEPDIR)/libalberta_fem_2d_profile_la-MG.Plo \
	./$(DEPDIR)/libalberta_fem_2d_profile_la-MG_s.Plo \
	./$(DEPDIR)/libalberta_fem_2d_profile_la-MG_s1.Plo \
	./$(DEPDIR)/libalberta_fem_2d_profile_la-MG_s2.Plo \
	./$(DEPDIR)/libalberta_fem_2d_profile_la-SSOR_precon.Plo \
	./$(DEPDIR)/libalberta_fem_2d_profile_la-adapt.Plo \
	./$(DEPDIR)/libalberta_fem_2d_profile_la-assemble-instat.Plo \
	./$(DEPDIR)/libalberta_fem_2d_profile_la-block_precon.Plo \
	./$(DEPDIR)/libalberta_fem_2d_profile_la-bndry_cond.Plo \
	./$(DEPDIR)/libalberta_fem_2d_profile_la-crs_matrix.Plo \
	./$(DEPDIR)/libalberta_fem_2d_profile_la-diag_precon.Plo \
	./$(DEPDIR)/libalberta_fem_2d_profile_la-error.Plo \
	./$(DEPDIR)/libalberta_fem_2d_profile_la-estimator.Plo \
	./$(DEPDIR)/libalberta_fem_2d_profile_la-estimator_dowb.Plo \
	./$(DEPDIR)/libalberta_fem_2d_profile_la-ilu_k_precon.Plo \
	./$(DEPDIR)/libalberta_fem_2d_profile_la-l2scp.Plo \
	./$(DEPDIR)/libalberta_fem_2d_profile_la-level.Plo \
	./$(DEPDIR)/libalberta_fem_2d_profile_la-oem_solve.Plo \
	./$(DEPDIR)/libalberta_fem_2d_profile_la-oem_sp_solve.Plo \
	./$(DEPDIR)/libalberta_fem_2d_profile_la-optimize_profile.Plo \
	./$(DEPDIR)/libalberta_fem_2d_profile_la-sor.Plo \
	./$(DEPDIR)/libalberta_fem_2d_profile_la-ssor.Plo \
	./$(DEPDIR)/libalberta_fem_2d_profile_la-wall_quad.Plo \
	./$(DEPDIR)/libalberta_gfx_2d_profile_la-dxtools.Plo \
	./$(DEPDIR)/libalberta_gfx_2d_profile_la-gfx-dummy.Plo \
	./$(DEPDIR)/libalberta_gfx_2d_profile_la-gltools.Plo \
	./$(DEPDIR)/libalberta_gfx_2d_profile_la-graphXO.Plo
am__mv = mv -f
COMPILE = $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) \
	$(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS)
LTCOMPILE = $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) \
	$(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) \
	$(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) \
	$(AM_CFLAGS) $(CFLAGS)
AM_V_CC = $(am__v_CC_@AM_V@)
am__v_CC_ = $(am__v_CC_@AM_DEFAULT_V@)
am__v_CC_0 = @echo "  CC      " $@;
am__v_CC_1 = 
CCLD = $(CC)
LINK = $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) \
	$(LIBTOOLFLAGS) --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) \
	$(AM_LDFLAGS) $(LDFLAGS) -o $@
AM_V_CCLD = $(am__v_CCLD_@AM_V@)
am__v_CCLD_ = $(am__v_CCLD_@AM_DEFAULT_V@)
am__v_CCLD_0 = @echo "  CCLD    " $@;
am__v_CCLD_1 = 
SOURCES = $(libCV_assemble_2d_profile_la_SOURCES) \
	$(libSS_assemble_2d_profile_la_SOURCES) \
	$(libSV_assemble_2d_profile_la_SOURCES) \
	$(libVC_assemble_2d_profile_la_SOURCES) \
	$(libVS_assemble_2d_profile_la_SOURCES) \
	$(libVV_assemble_2d_profile_la_SOURCES) \
	$(nodist_libalberta_2d_profile_la_SOURCES) \
	$(libalberta_fem_2d_profile_la_SOURCES) \
	$(nodist_libalberta_gfx_2d_profile_la_SOURCES)
DIST_SOURCES = $(libCV_assemble_2d_profile_la_SOURCES) \
	$(libSS_assemble_2d_profile_la_SOURCES) \
	$(libSV_assemble_2d_profile_la_SOURCES) \
	$(libVC_assemble_2d_profile_la_SOURCES) \
	$(libVS_assemble_2d_profile_la_SOURCES) \
	$(libVV_assemble_2d_profile_la_SOURCES) \
	$(am__libalberta_fem_2d_profile_la_SOURCES_DIST)
am__can_run_installinfo = \
  case $$AM_UPDATE_INFO_DIR in \
    n|no|NO) false;; \
    *) (install-info --version) >/dev/null 2>&1;; \
  esac
DATA = $(pkgconfig_DATA)
am__tagged_files = $(HEADERS) $(SOURCES) $(TAGS_FILES) $(LISP)
# Read a list of newline-separated strings from the standard input,
# and print each of them once, without duplicates.  Input order is
# *not* preserved.
am__uniquify_input = $(AWK) '\
  BEGIN { nonempty = 0; } \
  { items[$$0] = 1; nonempty = 1; } \
  END { if (nonempty) { for (i in items) print i; }; } \
'
# Make sure the list of sources is unique.  This is necessary because,
# e.g., the same source file might be shared among _SOURCES variables
# for different programs/libraries.
am__define_uniq_tagged_files = \
  list='$(am__tagged_files)'; \
  unique=`for i in $$list; do \
    if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \
  done | $(am__uniquify_input)`
ETAGS = etags
CTAGS = ctags
am__DIST_COMMON = $(srcdir)/../Common/Makefile.am.include \
	$(srcdir)/Makefile.in $(top_srcdir)/depcomp
DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST)
pkglibexecdir = @pkglibexecdir@
ACLOCAL = @ACLOCAL@
ALBERTA_ALLOC_MALLOC = @ALBERTA_ALLOC_MALLOC@
ALBERTA_ALLOC_RECORD = @ALBERTA_ALLOC_RECORD@
ALBERTA_ALL_INCLUDES = @ALBERTA_ALL_INCLUDES@
ALBERTA_DEBUG = @ALBERTA_DEBUG@
ALBERTA_DEBUG_CFLAGS = @ALBERTA_DEBUG_CFLAGS@
ALBERTA_DEBUG_CXXFLAGS = @ALBERTA_DEBUG_CXXFLAGS@
ALBERTA_DEBUG_GFX_LIBS_1 = @ALBERTA_DEBUG_GFX_LIBS_1@
ALBERTA_DEBUG_GFX_LIBS_2 = @ALBERTA_DEBUG_GFX_LIBS_2@
ALBERTA_DEBUG_GFX_LIBS_3 = @ALBERTA_DEBUG_GFX_LIBS_3@
ALBERTA_DEBUG_LIBS_1 = @ALBERTA_DEBUG_LIBS_1@
ALBERTA_DEBUG_LIBS_2 = @ALBERTA_DEBUG_LIBS_2@
ALBERTA_DEBUG_LIBS_3 = @ALBERTA_DEBUG_LIBS_3@
ALBERTA_DUMA = @ALBERTA_DUMA@
ALBERTA_EFENCE = @ALBERTA_EFENCE@
ALBERTA_FEM_TOOLBOX = @ALBERTA_FEM_TOOLBOX@
ALBERTA_FFLAGS = @ALBERTA_FFLAGS@
ALBERTA_GFX_LIBS_1 = @ALBERTA_GFX_LIBS_1@
ALBERTA_GFX_LIBS_2 = @ALBERTA_GFX_LIBS_2@
ALBERTA_GFX_LIBS_3 = @ALBERTA_GFX_LIBS_3@
ALBERTA_LIBS_1 = @ALBERTA_LIBS_1@
ALBERTA_LIBS_2 = @ALBERTA_LIBS_2@
ALBERTA_LIBS_3 = @ALBERTA_LIBS_3@
ALBERTA_LIB_PATHS = @ALBERTA_LIB_PATHS@
ALBERTA_OPTIMIZE_CFLAGS = @ALBERTA_OPTIMIZE_CFLAGS@
ALBERTA_OPTIMIZE_CXXFLAGS = @ALBERTA_OPTIMIZE_CXXFLAGS@
ALBERTA_PROFILE_CFLAGS = @ALBERTA_PROFILE_CFLAGS@
ALBERTA_PROFILE_CXXFLAGS = @ALBERTA_PROFILE_CXXFLAGS@
ALBERTA_PROFILE_FFLAGS = @ALBERTA_PROFILE_FFLAGS@
ALBERTA_PROFILE_GFX_LIBS_1 = @ALBERTA_PROFILE_GFX_LIBS_1@
ALBERTA_PROFILE_GFX_LIBS_2 = @ALBERTA_PROFILE_GFX_LIBS_2@
ALBERTA_PROFILE_GFX_LIBS_3 = @ALBERTA_PROFILE_GFX_LIBS_3@
ALBERTA_PROFILE_LIBS_1 = @ALBERTA_PROFILE_LIBS_1@
ALBERTA_PROFILE_LIBS_2 = @ALBERTA_PROFILE_LIBS_2@
ALBERTA_PROFILE_LIBS_3 = @ALBERTA_PROFILE_LIBS_3@
ALBERTA_USE_GRAPHICS = @ALBERTA_USE_GRAPHICS@
AMTAR = @AMTAR@
AM_DEFAULT_VERBOSITY = @AM_DEFAULT_VERBOSITY@
AR = @AR@
AUTOCONF = @AUTOCONF@
AUTOHEADER = @AUTOHEADER@
AUTOMAKE = @AUTOMAKE@
AWK = @AWK@
BLAS_ALL_INCLUDES = @BLAS_ALL_INCLUDES@
BLAS_ALL_LIBS = @BLAS_ALL_LIBS@
BLAS_INCLUDES = @BLAS_INCLUDES@
BLAS_INCLUDE_PATH = @BLAS_INCLUDE_PATH@
BLAS_LIBS = @BLAS_LIBS@
BLAS_LIB_PATHS = @BLAS_LIB_PATHS@
BLAS_NAMES = @BLAS_NAMES@
BUILD_ALBERTA_1 = @BUILD_ALBERTA_1@
BUILD_ALBERTA_2 = @BUILD_ALBERTA_2@
BUILD_ALBERTA_3 = @BUILD_ALBERTA_3@
BUILD_ALBERTA_4 = @BUILD_ALBERTA_4@
BUILD_ALBERTA_5 = @BUILD_ALBERTA_5@
BUILD_ALBERTA_6 = @BUILD_ALBERTA_6@
BUILD_ALBERTA_7 = @BUILD_ALBERTA_7@
BUILD_ALBERTA_8 = @BUILD_ALBERTA_8@
BUILD_ALBERTA_9 = @BUILD_ALBERTA_9@
BUILD_DEBUG_LIBS = @BUILD_DEBUG_LIBS@
BUILD_PROFILE_LIBS = @BUILD_PROFILE_LIBS@
CC = @CC@
CCDEPMODE = @CCDEPMODE@
CFLAGS = @CFLAGS@
CHAINED_BASIS_FUNCTIONS = @CHAINED_BASIS_FUNCTIONS@
CPP = @CPP@
CPPFLAGS = @CPPFLAGS@
CXX = @CXX@
CXXCPP = @CXXCPP@
CXXDEPMODE = @CXXDEPMODE@
CXXFLAGS = @CXXFLAGS@
CYGPATH_W = @CYGPATH_W@
DAXPY_F77_FUNC = @DAXPY_F77_FUNC@
DCOPY_F77_FUNC = @DCOPY_F77_FUNC@
DDOT_F77_FUNC = @DDOT_F77_FUNC@
DEFAULT_PREFIX = @DEFAULT_PREFIX@
DEFS = @DEFS@
DEMOSOURCES = @DEMOSOURCES@
DEPDIR = @DEPDIR@
DLLTOOL = @DLLTOOL@
DNRM2_F77_FUNC = @DNRM2_F77_FUNC@
DSCAL_F77_FUNC = @DSCAL_F77_FUNC@
DSWAP_F77_FUNC = @DSWAP_F77_FUNC@
DSYMUTIL = @DSYMUTIL@
DUMA_ALL_INCLUDES = @DUMA_ALL_INCLUDES@
DUMA_ALL_LIBS = @DUMA_ALL_LIBS@
DUMA_INCLUDES = @DUMA_INCLUDES@
DUMA_INCLUDE_PATH = @DUMA_INCLUDE_PATH@
DUMA_LIBS = @DUMA_LIBS@
DUMA_LIB_PATHS = @DUMA_LIB_PATHS@
DUMA_NAMES = @DUMA_NAMES@
DUMPBIN = @DUMPBIN@
DYLOADER_LIBS = @DYLOADER_LIBS@
ECHO_C = @ECHO_C@
ECHO_N = @ECHO_N@
ECHO_T = @ECHO_T@
EFENCE_ALL_INCLUDES = @EFENCE_ALL_INCLUDES@
EFENCE_ALL_LIBS = @EFENCE_ALL_LIBS@
EFENCE_INCLUDES = @EFENCE_INCLUDES@
EFENCE_INCLUDE_PATH = @EFENCE_INCLUDE_PATH@
EFENCE_LIBS = @EFENCE_LIBS@
EFENCE_LIB_PATHS = @EFENCE_LIB_PATHS@
EFENCE_NAMES = @EFENCE_NAMES@
EGREP = @EGREP@
EXEEXT = @EXEEXT@
F77 = @F77@
FFLAGS = @FFLAGS@
FGREP = @FGREP@
FLIBS = @FLIBS@
GCC_ATTRIBUTE_FLATTEN = @GCC_ATTRIBUTE_FLATTEN@
GLTOOLS_ALL_INCLUDES = @GLTOOLS_ALL_INCLUDES@
GLTOOLS_ALL_LIBS = @GLTOOLS_ALL_LIBS@
GLTOOLS_INCLUDES = @GLTOOLS_INCLUDES@
GLTOOLS_INCLUDE_PATH = @GLTOOLS_INCLUDE_PATH@
GLTOOLS_LIBS = @GLTOOLS_LIBS@
GLTOOLS_LIB_PATHS = @GLTOOLS_LIB_PATHS@
GLTOOLS_NAMES = @GLTOOLS_NAMES@
GLTOOLS_VERSION = @GLTOOLS_VERSION@
GNUCOMPAT_INCLUDE_PATH = @GNUCOMPAT_INCLUDE_PATH@
GPSKCA_ALL_INCLUDES = @GPSKCA_ALL_INCLUDES@
GPSKCA_ALL_LIBS = @GPSKCA_ALL_LIBS@
GPSKCA_INCLUDES = @GPSKCA_INCLUDES@
GPSKCA_INCLUDE_PATH = @GPSKCA_INCLUDE_PATH@
GPSKCA_LIBS = @GPSKCA_LIBS@
GPSKCA_LIB_PATHS = @GPSKCA_LIB_PATHS@
GPSKCA_NAMES = @GPSKCA_NAMES@
GRAPE_ALL_INCLUDES = @GRAPE_ALL_INCLUDES@
GRAPE_ALL_LIBS = @GRAPE_ALL_LIBS@
GRAPE_INCLUDES = @GRAPE_INCLUDES@
GRAPE_INCLUDE_PATH = @GRAPE_INCLUDE_PATH@
GRAPE_LIBS = @GRAPE_LIBS@
GRAPE_LIB_PATHS = @GRAPE_LIB_PATHS@
GRAPE_NAMES = @GRAPE_NAMES@
GREP = @GREP@
GZIP_PROGRAM = @GZIP_PROGRAM@
HAVE_OBSTACK_H = @HAVE_OBSTACK_H@
INSTALL = @INSTALL@
INSTALL_DATA = @INSTALL_DATA@
INSTALL_LIBTOOL = @INSTALL_LIBTOOL@
INSTALL_PROGRAM = @INSTALL_PROGRAM@
INSTALL_SCRIPT = @INSTALL_SCRIPT@
INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@
LD = @LD@
LDFLAGS = @LDFLAGS@
LIBOBJS = @LIBOBJS@
LIBS = @LIBS@
LIBTOOL = @LIBTOOL@
LIPO = @LIPO@
LN_S = @LN_S@
LTLIBOBJS = @LTLIBOBJS@
LT_SYS_LIBRARY_PATH = @LT_SYS_LIBRARY_PATH@
MAINT = @MAINT@
MAKEINFO = @MAKEINFO@
MANIFEST_TOOL = @MANIFEST_TOOL@
MKDIR_P = @MKDIR_P@
NM = @NM@
NMEDIT = @NMEDIT@
OBJDUMP = @OBJDUMP@
OBJEXT = @OBJEXT@
OPENDX_ALL_INCLUDES = @OPENDX_ALL_INCLUDES@
OPENDX_ALL_LIBS = @OPENDX_ALL_LIBS@
OPENDX_INCLUDES = @OPENDX_INCLUDES@
OPENDX_INCLUDE_PATH = @OPENDX_INCLUDE_PATH@
OPENDX_LIBS = @OPENDX_LIBS@
OPENDX_LIB_PATHS = @OPENDX_LIB_PATHS@
OPENDX_NAMES = @OPENDX_NAMES@
OPENGL_ALL_INCLUDES = @OPENGL_ALL_INCLUDES@
OPENGL_ALL_LIBS = @OPENGL_ALL_LIBS@
OPENGL_INCLUDES = @OPENGL_INCLUDES@
OPENGL_INCLUDE_PATH = @OPENGL_INCLUDE_PATH@
OPENGL_LIBS = @OPENGL_LIBS@
OPENGL_LIB_PATHS = @OPENGL_LIB_PATHS@
OPENGL_NAMES = @OPENGL_NAMES@
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@
PKG_CONFIG = @PKG_CONFIG@
PKG_CONFIG_LIBDIR = @PKG_CONFIG_LIBDIR@
PKG_CONFIG_PATH = @PKG_CONFIG_PATH@
RANLIB = @RANLIB@
SED = @SED@
SET_MAKE = @SET_MAKE@
SHELL = @SHELL@
SILO_ALL_INCLUDES = @SILO_ALL_INCLUDES@
SILO_ALL_LIBS = @SILO_ALL_LIBS@
SILO_INCLUDES = @SILO_INCLUDES@
SILO_INCLUDE_PATH = @SILO_INCLUDE_PATH@
SILO_LIBS = @SILO_LIBS@
SILO_LIB_PATHS = @SILO_LIB_PATHS@
SILO_NAMES = @SILO_NAMES@
STRIP = @STRIP@
TAR_PROGRAM = @TAR_PROGRAM@
USE_LIBBLAS = @USE_LIBBLAS@
VECTOR_BASIS_FUNCTIONS = @VECTOR_BASIS_FUNCTIONS@
VERSION = @VERSION@
XMKMF = @XMKMF@
X_ALL_LIBS = @X_ALL_LIBS@
X_CFLAGS = @X_CFLAGS@
X_EXTRA_LIBS = @X_EXTRA_LIBS@
X_LIBS = @X_LIBS@
X_PRE_LIBS = @X_PRE_LIBS@
abs_builddir = @abs_builddir@
abs_srcdir = @abs_srcdir@
abs_top_builddir = @abs_top_builddir@
abs_top_srcdir = @abs_top_srcdir@
ac_ct_AR = @ac_ct_AR@
ac_ct_CC = @ac_ct_CC@
ac_ct_CXX = @ac_ct_CXX@
ac_ct_DUMPBIN = @ac_ct_DUMPBIN@
ac_ct_F77 = @ac_ct_F77@
am__include = @am__include@
am__leading_dot = @am__leading_dot@
am__quote = @am__quote@
am__tar = @am__tar@
am__untar = @am__untar@
bindir = @bindir@
build = @build@
build_alias = @build_alias@
build_cpu = @build_cpu@
build_os = @build_os@
build_vendor = @build_vendor@
builddir = @builddir@
datadir = @datadir@
datarootdir = @datarootdir@
docdir = @docdir@
dvidir = @dvidir@
exec_prefix = @exec_prefix@
expanded_exec_prefix = @expanded_exec_prefix@
expanded_prefix = @expanded_prefix@
host = @host@
host_alias = @host_alias@
host_cpu = @host_cpu@
host_os = @host_os@
host_vendor = @host_vendor@
htmldir = @htmldir@
includedir = @includedir@
infodir = @infodir@
install_sh = @install_sh@
libdir = @libdir@
libexecdir = @libexecdir@
localedir = @localedir@
localstatedir = @localstatedir@
mandir = @mandir@
mkdir_p = @mkdir_p@
oldincludedir = @oldincludedir@
pdfdir = @pdfdir@
pkgconfigdir = @pkgconfigdir@
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@
top_build_prefix = @top_build_prefix@
top_builddir = @top_builddir@
top_srcdir = @top_srcdir@
LIBCODE = _2d_profile
SUFFIX = _profile
ASSEMBLE_SRC = \
 ../Common/M_M_M_M_assemble_fcts.c\
 ../Common/M_M_DM_DM_assemble_fcts.c\
 ../Common/M_M_SCM_SCM_assemble_fcts.c\
 ../Common/DM_DM_DM_DM_assemble_fcts.c\
 ../Common/DM_DM_SCM_SCM_assemble_fcts.c\
 ../Common/SCM_SCM_SCM_SCM_assemble_fcts.c

VSSV_ASSEMBLE_SRC = \
 ../Common/DM_DM_DM_DM_assemble_fcts.c \
 ../Common/DM_DM_SCM_SCM_assemble_fcts.c \
 ../Common/SCM_SCM_SCM_SCM_assemble_fcts.c

ASSEMBLE_BNDRY_SRC = \
 ../Common/M_M_assemble_bndry_fcts.c\
 ../Common/M_DM_assemble_bndry_fcts.c\
 ../Common/M_SCM_assemble_bndry_fcts.c\
 ../Common/DM_DM_assemble_bndry_fcts.c\
 ../Common/DM_SCM_assemble_bndry_fcts.c\
 ../Common/SCM_SCM_assemble_bndry_fcts.c

VSSV_ASSEMBLE_BNDRY_SRC = \
 ../Common/DM_DM_assemble_bndry_fcts.c\
 ../Common/DM_SCM_assemble_bndry_fcts.c\
 ../Common/SCM_SCM_assemble_bndry_fcts.c

assemble_sources = \
 ../Common/assemble.c ../Common/assemble.h\
 ../Common/assemble_bndry.c ../Common/assemble_bndry.h\
 ../Common/assemble_neigh.c\
 $(ASSEMBLE_SRC) $(ASSEMBLE_SRC:.c=.h) $(ASSEMBLE_BNDRY_SRC)

VSSV_assemble_sources = \
 ../Common/assemble.c ../Common/assemble.h\
 ../Common/assemble_bndry.c ../Common/assemble_bndry.h\
 ../Common/assemble_neigh.c\
 $(VSSV_ASSEMBLE_SRC) $(VSSV_ASSEMBLE_SRC:.c=.h) $(VSSV_ASSEMBLE_BNDRY_SRC)

common_fem_sources = ../Common/HB_precon.c ../Common/MG.c \
	../Common/MG_s.c ../Common/MG_s1.c ../Common/MG_s2.c \
	../Common/SSOR_precon.c ../Common/adapt.c \
	../Common/assemble-instat.c ../Common/block_precon.c \
	../Common/bndry_cond.c ../Common/crs_matrix.c \
	../Common/crs_matrix.h ../Common/diag_precon.c \
	../Common/error.c ../Common/estimator.c \
	../Common/estimator_dowb.c ../Common/ilu_k_precon.c \
	../Common/ilu_k_precon.h ../Common/l2scp.c ../Common/level.c \
	../Common/oem_solve.c ../Common/oem_sp_solve.c ../Common/sor.c \
	../Common/ssor.c ../Common/wall_quad.c $(am__append_1)
common_sources = \
  ../Common/bas_fct.c \
  ../Common/check.c \
  ../Common/coarsen.c \
  ../Common/dof_admin.c \
  ../Common/element.c \
  ../Common/eval.c \
  ../Common/gauss-quad.c \
  ../Common/macro.c \
  ../Common/memory.c \
  ../Common/numint.c \
  ../Common/parametric.c \
  ../Common/parametric_intern.h \
  ../Common/periodic.c \
  ../Common/quad_cache.c \
  ../Common/read_mesh.c \
  ../Common/read_mesh_xdr_1.2.c \
  ../Common/refine.c \
  ../Common/submesh.c \
  ../Common/trav_xy.c \
  ../Common/traverse_nr.c \
  ../Common/traverse_r.c \
  ../Common/write_mesh.c \
  ../Common/write_mesh_ps.c

lowdim_sources = \
  ../Common/write_mesh_gmv.c

INCLUDES = \
 -I$(top_builddir)/include\
 -I$(srcdir)/../0d\
 -I$(srcdir)/../1d\
 -I$(srcdir)/../2d\
 -I$(srcdir)/../3d\
 -I$(srcdir)/../Common\
 -I$(top_srcdir)/alberta_util/src\
 -I$(top_builddir)/alberta_util/src\
 -I$(top_srcdir)/gnu-compat\
 -I../Common \
 @OPENGL_INCLUDES@ @GLTOOLS_INCLUDES@ @OPENDX_INCLUDES@


#
# gltools and opendx are implicitly disabled when ALBERTA_USE_GRAPHICS
# is false
#
gfxsources = ../Common/gfx-dummy.c $(am__append_2) $(am__append_3) \
	$(am__append_4)
EXTRA_DIST = \
 ../Common/optimize_profile.c ../Common/optimize_profile.h\
 ../Common/graphXO.c ../Common/gltools.c ../Common/dxtools.c

pkgconfig_DATA = alberta-grid_2d_profile.pc $(am__append_7) \
	$(am__append_10)

# Should be called libalbertagrid, but just "alberta" is just easier.
lib_LTLIBRARIES = libalberta_2d_profile.la $(am__append_6) \
	$(am__append_9)
noinst_LTLIBRARIES = $(am__append_8)
assemble_2d_profile_libs = libSS_assemble_2d_profile.la \
	$(am__append_5)
@ALBERTA_FEM_TOOLBOX_TRUE@libalberta_fem_2d_profile_la_SOURCES = $(common_fem_sources)
@ALBERTA_FEM_TOOLBOX_TRUE@libalberta_fem_2d_profile_la_LIBADD = $(assemble_2d_profile_libs) @GPSKCA_ALL_LIBS@ @DYLOADER_LIBS@
@ALBERTA_FEM_TOOLBOX_TRUE@libalberta_fem_2d_profile_la_CPPFLAGS = \
@ALBERTA_FEM_TOOLBOX_TRUE@ $(CPPFLAGS) -DDIM_OF_WORLD=2 \
@ALBERTA_FEM_TOOLBOX_TRUE@ -DALBERTA_DEBUG=0 \
@ALBERTA_FEM_TOOLBOX_TRUE@ -DALBERTA_PROFILE=1

@ALBERTA_FEM_TOOLBOX_TRUE@libalberta_fem_2d_profile_la_LDFLAGS = -version-info 4:0:0
AM_CFLAGS = $(ALBERTA_PROFILE_CFLAGS)
AM_CXXFLAGS = $(ALBERTA_PROFILE_CXXFLAGS)
AM_LDFLAGS = ${AM_CFLAGS} 
sources = $(common_sources) $(lowdim_sources)
nodist_libalberta_2d_profile_la_SOURCES = $(sources)
libalberta_2d_profile_la_LIBADD = 
libalberta_2d_profile_la_CPPFLAGS = \
 $(CPPFLAGS) -DDIM_OF_WORLD=2 \
 -DALBERTA_DEBUG=0 \
 -DALBERTA_PROFILE=1

libalberta_2d_profile_la_LDFLAGS = -version-info 4:0:0

# Various flavours of block-matrix assembly

# scalar-scalar or Cartesian/Cartesian
libSS_assemble_2d_profile_la_SOURCES = $(assemble_sources)
libSS_assemble_2d_profile_la_CPPFLAGS = \
 $(libalberta_2d_profile_la_CPPFLAGS)\
 -DHAVE_ROW_FCTS_V_TYPE=0 -DHAVE_COL_FCTS_V_TYPE=0\
 -DHAVE_ROW_FCTS_C_TYPE=0 -DHAVE_COL_FCTS_C_TYPE=0


# vector-vector
libVV_assemble_2d_profile_la_SOURCES = $(assemble_sources)
libVV_assemble_2d_profile_la_CPPFLAGS = \
 $(libalberta_2d_profile_la_CPPFLAGS)\
 -DHAVE_ROW_FCTS_V_TYPE=1 -DHAVE_COL_FCTS_V_TYPE=1\
 -DHAVE_ROW_FCTS_C_TYPE=0 -DHAVE_COL_FCTS_C_TYPE=0


# vector-Cartesian
libVC_assemble_2d_profile_la_SOURCES = $(assemble_sources)
libVC_assemble_2d_profile_la_CPPFLAGS = \
 $(libalberta_2d_profile_la_CPPFLAGS)\
 -DHAVE_ROW_FCTS_V_TYPE=1 -DHAVE_COL_FCTS_V_TYPE=0\
 -DHAVE_ROW_FCTS_C_TYPE=0 -DHAVE_COL_FCTS_C_TYPE=1


# Cartesian-vector
libCV_assemble_2d_profile_la_SOURCES = $(assemble_sources)
libCV_assemble_2d_profile_la_CPPFLAGS = \
 $(libalberta_2d_profile_la_CPPFLAGS)\
 -DHAVE_ROW_FCTS_V_TYPE=0 -DHAVE_COL_FCTS_V_TYPE=1\
 -DHAVE_ROW_FCTS_C_TYPE=1 -DHAVE_COL_FCTS_C_TYPE=0


# vector-scalar
libVS_assemble_2d_profile_la_SOURCES = $(VSSV_assemble_sources)
libVS_assemble_2d_profile_la_CPPFLAGS = \
 $(libalberta_2d_profile_la_CPPFLAGS)\
 -DHAVE_ROW_FCTS_V_TYPE=1 -DHAVE_COL_FCTS_V_TYPE=0\
 -DHAVE_ROW_FCTS_C_TYPE=0 -DHAVE_COL_FCTS_C_TYPE=0


# scalar-vector
libSV_assemble_2d_profile_la_SOURCES = $(VSSV_assemble_sources)
libSV_assemble_2d_profile_la_CPPFLAGS = \
 $(libalberta_2d_profile_la_CPPFLAGS)\
 -DHAVE_ROW_FCTS_V_TYPE=0 -DHAVE_COL_FCTS_V_TYPE=1\
 -DHAVE_ROW_FCTS_C_TYPE=0 -DHAVE_COL_FCTS_C_TYPE=0

@ALBERTA_USE_GRAPHICS_TRUE@nodist_libalberta_gfx_2d_profile_la_SOURCES = $(gfxsources)
@ALBERTA_USE_GRAPHICS_TRUE@libalberta_gfx_2d_profile_la_CPPFLAGS = \
@ALBERTA_USE_GRAPHICS_TRUE@ $(CPPFLAGS) -DDIM_OF_WORLD=2 \
@ALBERTA_USE_GRAPHICS_TRUE@ -DALBERTA_DEBUG=0 \
@ALBERTA_USE_GRAPHICS_TRUE@ -DALBERTA_PROFILE=1

#libalberta_gfx_2d_profile_la_LIBADD = @GLTOOLS_ALL_LIBS@ @OPENDX_ALL_LIBS@ @OPENGL_ALL_LIBS@
@ALBERTA_USE_GRAPHICS_TRUE@libalberta_gfx_2d_profile_la_LDFLAGS = -version-info 4:0:0
BUILT_SOURCES = \
 alberta-grid_2d_profile.pc\
 alberta-fem_2d_profile.pc\
 alberta-gfx_2d_profile.pc

all: $(BUILT_SOURCES)
	$(MAKE) $(AM_MAKEFLAGS) all-am

.SUFFIXES:
.SUFFIXES: .c .lo .o .obj
$(srcdir)/Makefile.in: @MAINTAINER_MODE_TRUE@ $(srcdir)/Makefile.am $(srcdir)/../Common/Makefile.am.include $(am__configure_deps)
	@for dep in $?; do \
	  case '$(am__configure_deps)' in \
	    *$$dep*) \
	      ( cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh ) \
	        && { if test -f $@; then exit 0; else break; fi; }; \
	      exit 1;; \
	  esac; \
	done; \
	echo ' cd $(top_srcdir) && $(AUTOMAKE) --gnu alberta/src/alberta_2d_profile/Makefile'; \
	$(am__cd) $(top_srcdir) && \
	  $(AUTOMAKE) --gnu alberta/src/alberta_2d_profile/Makefile
Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status
	@case '$?' in \
	  *config.status*) \
	    cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \
	  *) \
	    echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__maybe_remake_depfiles)'; \
	    cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__maybe_remake_depfiles);; \
	esac;
$(srcdir)/../Common/Makefile.am.include $(am__empty):

$(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES)
	cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh

$(top_srcdir)/configure: @MAINTAINER_MODE_TRUE@ $(am__configure_deps)
	cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh
$(ACLOCAL_M4): @MAINTAINER_MODE_TRUE@ $(am__aclocal_m4_deps)
	cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh
$(am__aclocal_m4_deps):

install-libLTLIBRARIES: $(lib_LTLIBRARIES)
	@$(NORMAL_INSTALL)
	@list='$(lib_LTLIBRARIES)'; test -n "$(libdir)" || 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)$(libdir)'"; \
	  $(MKDIR_P) "$(DESTDIR)$(libdir)" || exit 1; \
	  echo " $(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=install $(INSTALL) $(INSTALL_STRIP_FLAG) $$list2 '$(DESTDIR)$(libdir)'"; \
	  $(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=install $(INSTALL) $(INSTALL_STRIP_FLAG) $$list2 "$(DESTDIR)$(libdir)"; \
	}

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

clean-libLTLIBRARIES:
	-test -z "$(lib_LTLIBRARIES)" || rm -f $(lib_LTLIBRARIES)
	@list='$(lib_LTLIBRARIES)'; \
	locs=`for p in $$list; do echo $$p; done | \
	      sed 's|^[^/]*$$|.|; s|/[^/]*$$||; s|$$|/so_locations|' | \
	      sort -u`; \
	test -z "$$locs" || { \
	  echo rm -f $${locs}; \
	  rm -f $${locs}; \
	}

clean-noinstLTLIBRARIES:
	-test -z "$(noinst_LTLIBRARIES)" || rm -f $(noinst_LTLIBRARIES)
	@list='$(noinst_LTLIBRARIES)'; \
	locs=`for p in $$list; do echo $$p; done | \
	      sed 's|^[^/]*$$|.|; s|/[^/]*$$||; s|$$|/so_locations|' | \
	      sort -u`; \
	test -z "$$locs" || { \
	  echo rm -f $${locs}; \
	  rm -f $${locs}; \
	}

libCV_assemble_2d_profile.la: $(libCV_assemble_2d_profile_la_OBJECTS) $(libCV_assemble_2d_profile_la_DEPENDENCIES) $(EXTRA_libCV_assemble_2d_profile_la_DEPENDENCIES) 
	$(AM_V_CCLD)$(LINK) $(am_libCV_assemble_2d_profile_la_rpath) $(libCV_assemble_2d_profile_la_OBJECTS) $(libCV_assemble_2d_profile_la_LIBADD) $(LIBS)

libSS_assemble_2d_profile.la: $(libSS_assemble_2d_profile_la_OBJECTS) $(libSS_assemble_2d_profile_la_DEPENDENCIES) $(EXTRA_libSS_assemble_2d_profile_la_DEPENDENCIES) 
	$(AM_V_CCLD)$(LINK) $(am_libSS_assemble_2d_profile_la_rpath) $(libSS_assemble_2d_profile_la_OBJECTS) $(libSS_assemble_2d_profile_la_LIBADD) $(LIBS)

libSV_assemble_2d_profile.la: $(libSV_assemble_2d_profile_la_OBJECTS) $(libSV_assemble_2d_profile_la_DEPENDENCIES) $(EXTRA_libSV_assemble_2d_profile_la_DEPENDENCIES) 
	$(AM_V_CCLD)$(LINK) $(am_libSV_assemble_2d_profile_la_rpath) $(libSV_assemble_2d_profile_la_OBJECTS) $(libSV_assemble_2d_profile_la_LIBADD) $(LIBS)

libVC_assemble_2d_profile.la: $(libVC_assemble_2d_profile_la_OBJECTS) $(libVC_assemble_2d_profile_la_DEPENDENCIES) $(EXTRA_libVC_assemble_2d_profile_la_DEPENDENCIES) 
	$(AM_V_CCLD)$(LINK) $(am_libVC_assemble_2d_profile_la_rpath) $(libVC_assemble_2d_profile_la_OBJECTS) $(libVC_assemble_2d_profile_la_LIBADD) $(LIBS)

libVS_assemble_2d_profile.la: $(libVS_assemble_2d_profile_la_OBJECTS) $(libVS_assemble_2d_profile_la_DEPENDENCIES) $(EXTRA_libVS_assemble_2d_profile_la_DEPENDENCIES) 
	$(AM_V_CCLD)$(LINK) $(am_libVS_assemble_2d_profile_la_rpath) $(libVS_assemble_2d_profile_la_OBJECTS) $(libVS_assemble_2d_profile_la_LIBADD) $(LIBS)

libVV_assemble_2d_profile.la: $(libVV_assemble_2d_profile_la_OBJECTS) $(libVV_assemble_2d_profile_la_DEPENDENCIES) $(EXTRA_libVV_assemble_2d_profile_la_DEPENDENCIES) 
	$(AM_V_CCLD)$(LINK) $(am_libVV_assemble_2d_profile_la_rpath) $(libVV_assemble_2d_profile_la_OBJECTS) $(libVV_assemble_2d_profile_la_LIBADD) $(LIBS)

libalberta_2d_profile.la: $(libalberta_2d_profile_la_OBJECTS) $(libalberta_2d_profile_la_DEPENDENCIES) $(EXTRA_libalberta_2d_profile_la_DEPENDENCIES) 
	$(AM_V_CCLD)$(libalberta_2d_profile_la_LINK) -rpath $(libdir) $(libalberta_2d_profile_la_OBJECTS) $(libalberta_2d_profile_la_LIBADD) $(LIBS)

libalberta_fem_2d_profile.la: $(libalberta_fem_2d_profile_la_OBJECTS) $(libalberta_fem_2d_profile_la_DEPENDENCIES) $(EXTRA_libalberta_fem_2d_profile_la_DEPENDENCIES) 
	$(AM_V_CCLD)$(libalberta_fem_2d_profile_la_LINK) $(am_libalberta_fem_2d_profile_la_rpath) $(libalberta_fem_2d_profile_la_OBJECTS) $(libalberta_fem_2d_profile_la_LIBADD) $(LIBS)

libalberta_gfx_2d_profile.la: $(libalberta_gfx_2d_profile_la_OBJECTS) $(libalberta_gfx_2d_profile_la_DEPENDENCIES) $(EXTRA_libalberta_gfx_2d_profile_la_DEPENDENCIES) 
	$(AM_V_CCLD)$(libalberta_gfx_2d_profile_la_LINK) $(am_libalberta_gfx_2d_profile_la_rpath) $(libalberta_gfx_2d_profile_la_OBJECTS) $(libalberta_gfx_2d_profile_la_LIBADD) $(LIBS)

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

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

@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libCV_assemble_2d_profile_la-DM_DM_DM_DM_assemble_fcts.Plo@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libCV_assemble_2d_profile_la-DM_DM_SCM_SCM_assemble_fcts.Plo@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libCV_assemble_2d_profile_la-DM_DM_assemble_bndry_fcts.Plo@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libCV_assemble_2d_profile_la-DM_SCM_assemble_bndry_fcts.Plo@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libCV_assemble_2d_profile_la-M_DM_assemble_bndry_fcts.Plo@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libCV_assemble_2d_profile_la-M_M_DM_DM_assemble_fcts.Plo@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libCV_assemble_2d_profile_la-M_M_M_M_assemble_fcts.Plo@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libCV_assemble_2d_profile_la-M_M_SCM_SCM_assemble_fcts.Plo@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libCV_assemble_2d_profile_la-M_M_assemble_bndry_fcts.Plo@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libCV_assemble_2d_profile_la-M_SCM_assemble_bndry_fcts.Plo@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libCV_assemble_2d_profile_la-SCM_SCM_SCM_SCM_assemble_fcts.Plo@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libCV_assemble_2d_profile_la-SCM_SCM_assemble_bndry_fcts.Plo@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libCV_assemble_2d_profile_la-assemble.Plo@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libCV_assemble_2d_profile_la-assemble_bndry.Plo@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libCV_assemble_2d_profile_la-assemble_neigh.Plo@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libSS_assemble_2d_profile_la-DM_DM_DM_DM_assemble_fcts.Plo@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libSS_assemble_2d_profile_la-DM_DM_SCM_SCM_assemble_fcts.Plo@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libSS_assemble_2d_profile_la-DM_DM_assemble_bndry_fcts.Plo@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libSS_assemble_2d_profile_la-DM_SCM_assemble_bndry_fcts.Plo@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libSS_assemble_2d_profile_la-M_DM_assemble_bndry_fcts.Plo@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libSS_assemble_2d_profile_la-M_M_DM_DM_assemble_fcts.Plo@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libSS_assemble_2d_profile_la-M_M_M_M_assemble_fcts.Plo@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libSS_assemble_2d_profile_la-M_M_SCM_SCM_assemble_fcts.Plo@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libSS_assemble_2d_profile_la-M_M_assemble_bndry_fcts.Plo@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libSS_assemble_2d_profile_la-M_SCM_assemble_bndry_fcts.Plo@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libSS_assemble_2d_profile_la-SCM_SCM_SCM_SCM_assemble_fcts.Plo@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libSS_assemble_2d_profile_la-SCM_SCM_assemble_bndry_fcts.Plo@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libSS_assemble_2d_profile_la-assemble.Plo@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libSS_assemble_2d_profile_la-assemble_bndry.Plo@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libSS_assemble_2d_profile_la-assemble_neigh.Plo@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libSV_assemble_2d_profile_la-DM_DM_DM_DM_assemble_fcts.Plo@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libSV_assemble_2d_profile_la-DM_DM_SCM_SCM_assemble_fcts.Plo@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libSV_assemble_2d_profile_la-DM_DM_assemble_bndry_fcts.Plo@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libSV_assemble_2d_profile_la-DM_SCM_assemble_bndry_fcts.Plo@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libSV_assemble_2d_profile_la-SCM_SCM_SCM_SCM_assemble_fcts.Plo@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libSV_assemble_2d_profile_la-SCM_SCM_assemble_bndry_fcts.Plo@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libSV_assemble_2d_profile_la-assemble.Plo@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libSV_assemble_2d_profile_la-assemble_bndry.Plo@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libSV_assemble_2d_profile_la-assemble_neigh.Plo@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libVC_assemble_2d_profile_la-DM_DM_DM_DM_assemble_fcts.Plo@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libVC_assemble_2d_profile_la-DM_DM_SCM_SCM_assemble_fcts.Plo@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libVC_assemble_2d_profile_la-DM_DM_assemble_bndry_fcts.Plo@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libVC_assemble_2d_profile_la-DM_SCM_assemble_bndry_fcts.Plo@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libVC_assemble_2d_profile_la-M_DM_assemble_bndry_fcts.Plo@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libVC_assemble_2d_profile_la-M_M_DM_DM_assemble_fcts.Plo@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libVC_assemble_2d_profile_la-M_M_M_M_assemble_fcts.Plo@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libVC_assemble_2d_profile_la-M_M_SCM_SCM_assemble_fcts.Plo@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libVC_assemble_2d_profile_la-M_M_assemble_bndry_fcts.Plo@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libVC_assemble_2d_profile_la-M_SCM_assemble_bndry_fcts.Plo@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libVC_assemble_2d_profile_la-SCM_SCM_SCM_SCM_assemble_fcts.Plo@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libVC_assemble_2d_profile_la-SCM_SCM_assemble_bndry_fcts.Plo@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libVC_assemble_2d_profile_la-assemble.Plo@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libVC_assemble_2d_profile_la-assemble_bndry.Plo@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libVC_assemble_2d_profile_la-assemble_neigh.Plo@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libVS_assemble_2d_profile_la-DM_DM_DM_DM_assemble_fcts.Plo@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libVS_assemble_2d_profile_la-DM_DM_SCM_SCM_assemble_fcts.Plo@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libVS_assemble_2d_profile_la-DM_DM_assemble_bndry_fcts.Plo@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libVS_assemble_2d_profile_la-DM_SCM_assemble_bndry_fcts.Plo@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libVS_assemble_2d_profile_la-SCM_SCM_SCM_SCM_assemble_fcts.Plo@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libVS_assemble_2d_profile_la-SCM_SCM_assemble_bndry_fcts.Plo@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libVS_assemble_2d_profile_la-assemble.Plo@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libVS_assemble_2d_profile_la-assemble_bndry.Plo@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libVS_assemble_2d_profile_la-assemble_neigh.Plo@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libVV_assemble_2d_profile_la-DM_DM_DM_DM_assemble_fcts.Plo@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libVV_assemble_2d_profile_la-DM_DM_SCM_SCM_assemble_fcts.Plo@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libVV_assemble_2d_profile_la-DM_DM_assemble_bndry_fcts.Plo@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libVV_assemble_2d_profile_la-DM_SCM_assemble_bndry_fcts.Plo@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libVV_assemble_2d_profile_la-M_DM_assemble_bndry_fcts.Plo@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libVV_assemble_2d_profile_la-M_M_DM_DM_assemble_fcts.Plo@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libVV_assemble_2d_profile_la-M_M_M_M_assemble_fcts.Plo@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libVV_assemble_2d_profile_la-M_M_SCM_SCM_assemble_fcts.Plo@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libVV_assemble_2d_profile_la-M_M_assemble_bndry_fcts.Plo@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libVV_assemble_2d_profile_la-M_SCM_assemble_bndry_fcts.Plo@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libVV_assemble_2d_profile_la-SCM_SCM_SCM_SCM_assemble_fcts.Plo@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libVV_assemble_2d_profile_la-SCM_SCM_assemble_bndry_fcts.Plo@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libVV_assemble_2d_profile_la-assemble.Plo@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libVV_assemble_2d_profile_la-assemble_bndry.Plo@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libVV_assemble_2d_profile_la-assemble_neigh.Plo@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libalberta_2d_profile_la-bas_fct.Plo@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libalberta_2d_profile_la-check.Plo@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libalberta_2d_profile_la-coarsen.Plo@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libalberta_2d_profile_la-dof_admin.Plo@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libalberta_2d_profile_la-element.Plo@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libalberta_2d_profile_la-eval.Plo@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libalberta_2d_profile_la-gauss-quad.Plo@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libalberta_2d_profile_la-macro.Plo@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libalberta_2d_profile_la-memory.Plo@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libalberta_2d_profile_la-numint.Plo@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libalberta_2d_profile_la-parametric.Plo@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libalberta_2d_profile_la-periodic.Plo@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libalberta_2d_profile_la-quad_cache.Plo@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libalberta_2d_profile_la-read_mesh.Plo@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libalberta_2d_profile_la-read_mesh_xdr_1.2.Plo@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libalberta_2d_profile_la-refine.Plo@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libalberta_2d_profile_la-submesh.Plo@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libalberta_2d_profile_la-trav_xy.Plo@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libalberta_2d_profile_la-traverse_nr.Plo@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libalberta_2d_profile_la-traverse_r.Plo@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libalberta_2d_profile_la-write_mesh.Plo@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libalberta_2d_profile_la-write_mesh_gmv.Plo@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libalberta_2d_profile_la-write_mesh_ps.Plo@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libalberta_fem_2d_profile_la-HB_precon.Plo@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libalberta_fem_2d_profile_la-MG.Plo@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libalberta_fem_2d_profile_la-MG_s.Plo@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libalberta_fem_2d_profile_la-MG_s1.Plo@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libalberta_fem_2d_profile_la-MG_s2.Plo@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libalberta_fem_2d_profile_la-SSOR_precon.Plo@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libalberta_fem_2d_profile_la-adapt.Plo@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libalberta_fem_2d_profile_la-assemble-instat.Plo@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libalberta_fem_2d_profile_la-block_precon.Plo@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libalberta_fem_2d_profile_la-bndry_cond.Plo@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libalberta_fem_2d_profile_la-crs_matrix.Plo@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libalberta_fem_2d_profile_la-diag_precon.Plo@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libalberta_fem_2d_profile_la-error.Plo@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libalberta_fem_2d_profile_la-estimator.Plo@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libalberta_fem_2d_profile_la-estimator_dowb.Plo@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libalberta_fem_2d_profile_la-ilu_k_precon.Plo@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libalberta_fem_2d_profile_la-l2scp.Plo@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libalberta_fem_2d_profile_la-level.Plo@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libalberta_fem_2d_profile_la-oem_solve.Plo@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libalberta_fem_2d_profile_la-oem_sp_solve.Plo@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libalberta_fem_2d_profile_la-optimize_profile.Plo@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libalberta_fem_2d_profile_la-sor.Plo@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libalberta_fem_2d_profile_la-ssor.Plo@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libalberta_fem_2d_profile_la-wall_quad.Plo@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libalberta_gfx_2d_profile_la-dxtools.Plo@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libalberta_gfx_2d_profile_la-gfx-dummy.Plo@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libalberta_gfx_2d_profile_la-gltools.Plo@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/libalberta_gfx_2d_profile_la-graphXO.Plo@am__quote@ # am--include-marker

$(am__depfiles_remade):
	@$(MKDIR_P) $(@D)
	@echo '# dummy' >$@-t && $(am__mv) $@-t $@

am--depfiles: $(am__depfiles_remade)

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

mostlyclean-libtool:
	-rm -f *.lo

clean-libtool:
	-rm -rf .libs _libs
install-pkgconfigDATA: $(pkgconfig_DATA)
	@$(NORMAL_INSTALL)
	@list='$(pkgconfig_DATA)'; test -n "$(pkgconfigdir)" || list=; \
	if test -n "$$list"; then \
	  echo " $(MKDIR_P) '$(DESTDIR)$(pkgconfigdir)'"; \
	  $(MKDIR_P) "$(DESTDIR)$(pkgconfigdir)" || 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)$(pkgconfigdir)'"; \
	  $(INSTALL_DATA) $$files "$(DESTDIR)$(pkgconfigdir)" || exit $$?; \
	done

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

ID: $(am__tagged_files)
	$(am__define_uniq_tagged_files); mkid -fID $$unique
tags: tags-am
TAGS: tags

tags-am: $(TAGS_DEPENDENCIES) $(am__tagged_files)
	set x; \
	here=`pwd`; \
	$(am__define_uniq_tagged_files); \
	shift; \
	if test -z "$(ETAGS_ARGS)$$*$$unique"; then :; else \
	  test -n "$$unique" || unique=$$empty_fix; \
	  if test $$# -gt 0; then \
	    $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \
	      "$$@" $$unique; \
	  else \
	    $(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \
	      $$unique; \
	  fi; \
	fi
ctags: ctags-am

CTAGS: ctags
ctags-am: $(TAGS_DEPENDENCIES) $(am__tagged_files)
	$(am__define_uniq_tagged_files); \
	test -z "$(CTAGS_ARGS)$$unique" \
	  || $(CTAGS) $(CTAGSFLAGS) $(AM_CTAGSFLAGS) $(CTAGS_ARGS) \
	     $$unique

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

cscopelist-am: $(am__tagged_files)
	list='$(am__tagged_files)'; \
	case "$(srcdir)" in \
	  [\\/]* | ?:[\\/]*) sdir="$(srcdir)" ;; \
	  *) sdir=$(subdir)/$(srcdir) ;; \
	esac; \
	for i in $$list; do \
	  if test -f "$$i"; then \
	    echo "$(subdir)/$$i"; \
	  else \
	    echo "$$sdir/$$i"; \
	  fi; \
	done >> $(top_builddir)/cscope.files

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

distdir: $(BUILT_SOURCES)
	$(MAKE) $(AM_MAKEFLAGS) distdir-am

distdir-am: $(DISTFILES)
	@srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \
	topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \
	list='$(DISTFILES)'; \
	  dist_files=`for file in $$list; do echo $$file; done | \
	  sed -e "s|^$$srcdirstrip/||;t" \
	      -e "s|^$$topsrcdirstrip/|$(top_builddir)/|;t"`; \
	case $$dist_files in \
	  */*) $(MKDIR_P) `echo "$$dist_files" | \
			   sed '/\//!d;s|^|$(distdir)/|;s,/[^/]*$$,,' | \
			   sort -u` ;; \
	esac; \
	for file in $$dist_files; do \
	  if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \
	  if test -d $$d/$$file; then \
	    dir=`echo "/$$file" | sed -e 's,/[^/]*$$,,'`; \
	    if test -d "$(distdir)/$$file"; then \
	      find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \
	    fi; \
	    if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \
	      cp -fpR $(srcdir)/$$file "$(distdir)$$dir" || exit 1; \
	      find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \
	    fi; \
	    cp -fpR $$d/$$file "$(distdir)$$dir" || exit 1; \
	  else \
	    test -f "$(distdir)/$$file" \
	    || cp -p $$d/$$file "$(distdir)/$$file" \
	    || exit 1; \
	  fi; \
	done
check-am: all-am
check: $(BUILT_SOURCES)
	$(MAKE) $(AM_MAKEFLAGS) check-am
all-am: Makefile $(LTLIBRARIES) $(DATA) all-local
installdirs:
	for dir in "$(DESTDIR)$(libdir)" "$(DESTDIR)$(pkgconfigdir)"; do \
	  test -z "$$dir" || $(MKDIR_P) "$$dir"; \
	done
install: $(BUILT_SOURCES)
	$(MAKE) $(AM_MAKEFLAGS) install-am
install-exec: install-exec-am
install-data: install-data-am
uninstall: uninstall-am

install-am: all-am
	@$(MAKE) $(AM_MAKEFLAGS) install-exec-am install-data-am

installcheck: installcheck-am
install-strip:
	if test -z '$(STRIP)'; then \
	  $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \
	    install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \
	      install; \
	else \
	  $(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \
	    install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \
	    "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'" install; \
	fi
mostlyclean-generic:

clean-generic:

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)
clean: clean-am

clean-am: clean-generic clean-libLTLIBRARIES clean-libtool \
	clean-noinstLTLIBRARIES mostlyclean-am

distclean: distclean-am
		-rm -f ./$(DEPDIR)/libCV_assemble_2d_profile_la-DM_DM_DM_DM_assemble_fcts.Plo
	-rm -f ./$(DEPDIR)/libCV_assemble_2d_profile_la-DM_DM_SCM_SCM_assemble_fcts.Plo
	-rm -f ./$(DEPDIR)/libCV_assemble_2d_profile_la-DM_DM_assemble_bndry_fcts.Plo
	-rm -f ./$(DEPDIR)/libCV_assemble_2d_profile_la-DM_SCM_assemble_bndry_fcts.Plo
	-rm -f ./$(DEPDIR)/libCV_assemble_2d_profile_la-M_DM_assemble_bndry_fcts.Plo
	-rm -f ./$(DEPDIR)/libCV_assemble_2d_profile_la-M_M_DM_DM_assemble_fcts.Plo
	-rm -f ./$(DEPDIR)/libCV_assemble_2d_profile_la-M_M_M_M_assemble_fcts.Plo
	-rm -f ./$(DEPDIR)/libCV_assemble_2d_profile_la-M_M_SCM_SCM_assemble_fcts.Plo
	-rm -f ./$(DEPDIR)/libCV_assemble_2d_profile_la-M_M_assemble_bndry_fcts.Plo
	-rm -f ./$(DEPDIR)/libCV_assemble_2d_profile_la-M_SCM_assemble_bndry_fcts.Plo
	-rm -f ./$(DEPDIR)/libCV_assemble_2d_profile_la-SCM_SCM_SCM_SCM_assemble_fcts.Plo
	-rm -f ./$(DEPDIR)/libCV_assemble_2d_profile_la-SCM_SCM_assemble_bndry_fcts.Plo
	-rm -f ./$(DEPDIR)/libCV_assemble_2d_profile_la-assemble.Plo
	-rm -f ./$(DEPDIR)/libCV_assemble_2d_profile_la-assemble_bndry.Plo
	-rm -f ./$(DEPDIR)/libCV_assemble_2d_profile_la-assemble_neigh.Plo
	-rm -f ./$(DEPDIR)/libSS_assemble_2d_profile_la-DM_DM_DM_DM_assemble_fcts.Plo
	-rm -f ./$(DEPDIR)/libSS_assemble_2d_profile_la-DM_DM_SCM_SCM_assemble_fcts.Plo
	-rm -f ./$(DEPDIR)/libSS_assemble_2d_profile_la-DM_DM_assemble_bndry_fcts.Plo
	-rm -f ./$(DEPDIR)/libSS_assemble_2d_profile_la-DM_SCM_assemble_bndry_fcts.Plo
	-rm -f ./$(DEPDIR)/libSS_assemble_2d_profile_la-M_DM_assemble_bndry_fcts.Plo
	-rm -f ./$(DEPDIR)/libSS_assemble_2d_profile_la-M_M_DM_DM_assemble_fcts.Plo
	-rm -f ./$(DEPDIR)/libSS_assemble_2d_profile_la-M_M_M_M_assemble_fcts.Plo
	-rm -f ./$(DEPDIR)/libSS_assemble_2d_profile_la-M_M_SCM_SCM_assemble_fcts.Plo
	-rm -f ./$(DEPDIR)/libSS_assemble_2d_profile_la-M_M_assemble_bndry_fcts.Plo
	-rm -f ./$(DEPDIR)/libSS_assemble_2d_profile_la-M_SCM_assemble_bndry_fcts.Plo
	-rm -f ./$(DEPDIR)/libSS_assemble_2d_profile_la-SCM_SCM_SCM_SCM_assemble_fcts.Plo
	-rm -f ./$(DEPDIR)/libSS_assemble_2d_profile_la-SCM_SCM_assemble_bndry_fcts.Plo
	-rm -f ./$(DEPDIR)/libSS_assemble_2d_profile_la-assemble.Plo
	-rm -f ./$(DEPDIR)/libSS_assemble_2d_profile_la-assemble_bndry.Plo
	-rm -f ./$(DEPDIR)/libSS_assemble_2d_profile_la-assemble_neigh.Plo
	-rm -f ./$(DEPDIR)/libSV_assemble_2d_profile_la-DM_DM_DM_DM_assemble_fcts.Plo
	-rm -f ./$(DEPDIR)/libSV_assemble_2d_profile_la-DM_DM_SCM_SCM_assemble_fcts.Plo
	-rm -f ./$(DEPDIR)/libSV_assemble_2d_profile_la-DM_DM_assemble_bndry_fcts.Plo
	-rm -f ./$(DEPDIR)/libSV_assemble_2d_profile_la-DM_SCM_assemble_bndry_fcts.Plo
	-rm -f ./$(DEPDIR)/libSV_assemble_2d_profile_la-SCM_SCM_SCM_SCM_assemble_fcts.Plo
	-rm -f ./$(DEPDIR)/libSV_assemble_2d_profile_la-SCM_SCM_assemble_bndry_fcts.Plo
	-rm -f ./$(DEPDIR)/libSV_assemble_2d_profile_la-assemble.Plo
	-rm -f ./$(DEPDIR)/libSV_assemble_2d_profile_la-assemble_bndry.Plo
	-rm -f ./$(DEPDIR)/libSV_assemble_2d_profile_la-assemble_neigh.Plo
	-rm -f ./$(DEPDIR)/libVC_assemble_2d_profile_la-DM_DM_DM_DM_assemble_fcts.Plo
	-rm -f ./$(DEPDIR)/libVC_assemble_2d_profile_la-DM_DM_SCM_SCM_assemble_fcts.Plo
	-rm -f ./$(DEPDIR)/libVC_assemble_2d_profile_la-DM_DM_assemble_bndry_fcts.Plo
	-rm -f ./$(DEPDIR)/libVC_assemble_2d_profile_la-DM_SCM_assemble_bndry_fcts.Plo
	-rm -f ./$(DEPDIR)/libVC_assemble_2d_profile_la-M_DM_assemble_bndry_fcts.Plo
	-rm -f ./$(DEPDIR)/libVC_assemble_2d_profile_la-M_M_DM_DM_assemble_fcts.Plo
	-rm -f ./$(DEPDIR)/libVC_assemble_2d_profile_la-M_M_M_M_assemble_fcts.Plo
	-rm -f ./$(DEPDIR)/libVC_assemble_2d_profile_la-M_M_SCM_SCM_assemble_fcts.Plo
	-rm -f ./$(DEPDIR)/libVC_assemble_2d_profile_la-M_M_assemble_bndry_fcts.Plo
	-rm -f ./$(DEPDIR)/libVC_assemble_2d_profile_la-M_SCM_assemble_bndry_fcts.Plo
	-rm -f ./$(DEPDIR)/libVC_assemble_2d_profile_la-SCM_SCM_SCM_SCM_assemble_fcts.Plo
	-rm -f ./$(DEPDIR)/libVC_assemble_2d_profile_la-SCM_SCM_assemble_bndry_fcts.Plo
	-rm -f ./$(DEPDIR)/libVC_assemble_2d_profile_la-assemble.Plo
	-rm -f ./$(DEPDIR)/libVC_assemble_2d_profile_la-assemble_bndry.Plo
	-rm -f ./$(DEPDIR)/libVC_assemble_2d_profile_la-assemble_neigh.Plo
	-rm -f ./$(DEPDIR)/libVS_assemble_2d_profile_la-DM_DM_DM_DM_assemble_fcts.Plo
	-rm -f ./$(DEPDIR)/libVS_assemble_2d_profile_la-DM_DM_SCM_SCM_assemble_fcts.Plo
	-rm -f ./$(DEPDIR)/libVS_assemble_2d_profile_la-DM_DM_assemble_bndry_fcts.Plo
	-rm -f ./$(DEPDIR)/libVS_assemble_2d_profile_la-DM_SCM_assemble_bndry_fcts.Plo
	-rm -f ./$(DEPDIR)/libVS_assemble_2d_profile_la-SCM_SCM_SCM_SCM_assemble_fcts.Plo
	-rm -f ./$(DEPDIR)/libVS_assemble_2d_profile_la-SCM_SCM_assemble_bndry_fcts.Plo
	-rm -f ./$(DEPDIR)/libVS_assemble_2d_profile_la-assemble.Plo
	-rm -f ./$(DEPDIR)/libVS_assemble_2d_profile_la-assemble_bndry.Plo
	-rm -f ./$(DEPDIR)/libVS_assemble_2d_profile_la-assemble_neigh.Plo
	-rm -f ./$(DEPDIR)/libVV_assemble_2d_profile_la-DM_DM_DM_DM_assemble_fcts.Plo
	-rm -f ./$(DEPDIR)/libVV_assemble_2d_profile_la-DM_DM_SCM_SCM_assemble_fcts.Plo
	-rm -f ./$(DEPDIR)/libVV_assemble_2d_profile_la-DM_DM_assemble_bndry_fcts.Plo
	-rm -f ./$(DEPDIR)/libVV_assemble_2d_profile_la-DM_SCM_assemble_bndry_fcts.Plo
	-rm -f ./$(DEPDIR)/libVV_assemble_2d_profile_la-M_DM_assemble_bndry_fcts.Plo
	-rm -f ./$(DEPDIR)/libVV_assemble_2d_profile_la-M_M_DM_DM_assemble_fcts.Plo
	-rm -f ./$(DEPDIR)/libVV_assemble_2d_profile_la-M_M_M_M_assemble_fcts.Plo
	-rm -f ./$(DEPDIR)/libVV_assemble_2d_profile_la-M_M_SCM_SCM_assemble_fcts.Plo
	-rm -f ./$(DEPDIR)/libVV_assemble_2d_profile_la-M_M_assemble_bndry_fcts.Plo
	-rm -f ./$(DEPDIR)/libVV_assemble_2d_profile_la-M_SCM_assemble_bndry_fcts.Plo
	-rm -f ./$(DEPDIR)/libVV_assemble_2d_profile_la-SCM_SCM_SCM_SCM_assemble_fcts.Plo
	-rm -f ./$(DEPDIR)/libVV_assemble_2d_profile_la-SCM_SCM_assemble_bndry_fcts.Plo
	-rm -f ./$(DEPDIR)/libVV_assemble_2d_profile_la-assemble.Plo
	-rm -f ./$(DEPDIR)/libVV_assemble_2d_profile_la-assemble_bndry.Plo
	-rm -f ./$(DEPDIR)/libVV_assemble_2d_profile_la-assemble_neigh.Plo
	-rm -f ./$(DEPDIR)/libalberta_2d_profile_la-bas_fct.Plo
	-rm -f ./$(DEPDIR)/libalberta_2d_profile_la-check.Plo
	-rm -f ./$(DEPDIR)/libalberta_2d_profile_la-coarsen.Plo
	-rm -f ./$(DEPDIR)/libalberta_2d_profile_la-dof_admin.Plo
	-rm -f ./$(DEPDIR)/libalberta_2d_profile_la-element.Plo
	-rm -f ./$(DEPDIR)/libalberta_2d_profile_la-eval.Plo
	-rm -f ./$(DEPDIR)/libalberta_2d_profile_la-gauss-quad.Plo
	-rm -f ./$(DEPDIR)/libalberta_2d_profile_la-macro.Plo
	-rm -f ./$(DEPDIR)/libalberta_2d_profile_la-memory.Plo
	-rm -f ./$(DEPDIR)/libalberta_2d_profile_la-numint.Plo
	-rm -f ./$(DEPDIR)/libalberta_2d_profile_la-parametric.Plo
	-rm -f ./$(DEPDIR)/libalberta_2d_profile_la-periodic.Plo
	-rm -f ./$(DEPDIR)/libalberta_2d_profile_la-quad_cache.Plo
	-rm -f ./$(DEPDIR)/libalberta_2d_profile_la-read_mesh.Plo
	-rm -f ./$(DEPDIR)/libalberta_2d_profile_la-read_mesh_xdr_1.2.Plo
	-rm -f ./$(DEPDIR)/libalberta_2d_profile_la-refine.Plo
	-rm -f ./$(DEPDIR)/libalberta_2d_profile_la-submesh.Plo
	-rm -f ./$(DEPDIR)/libalberta_2d_profile_la-trav_xy.Plo
	-rm -f ./$(DEPDIR)/libalberta_2d_profile_la-traverse_nr.Plo
	-rm -f ./$(DEPDIR)/libalberta_2d_profile_la-traverse_r.Plo
	-rm -f ./$(DEPDIR)/libalberta_2d_profile_la-write_mesh.Plo
	-rm -f ./$(DEPDIR)/libalberta_2d_profile_la-write_mesh_gmv.Plo
	-rm -f ./$(DEPDIR)/libalberta_2d_profile_la-write_mesh_ps.Plo
	-rm -f ./$(DEPDIR)/libalberta_fem_2d_profile_la-HB_precon.Plo
	-rm -f ./$(DEPDIR)/libalberta_fem_2d_profile_la-MG.Plo
	-rm -f ./$(DEPDIR)/libalberta_fem_2d_profile_la-MG_s.Plo
	-rm -f ./$(DEPDIR)/libalberta_fem_2d_profile_la-MG_s1.Plo
	-rm -f ./$(DEPDIR)/libalberta_fem_2d_profile_la-MG_s2.Plo
	-rm -f ./$(DEPDIR)/libalberta_fem_2d_profile_la-SSOR_precon.Plo
	-rm -f ./$(DEPDIR)/libalberta_fem_2d_profile_la-adapt.Plo
	-rm -f ./$(DEPDIR)/libalberta_fem_2d_profile_la-assemble-instat.Plo
	-rm -f ./$(DEPDIR)/libalberta_fem_2d_profile_la-block_precon.Plo
	-rm -f ./$(DEPDIR)/libalberta_fem_2d_profile_la-bndry_cond.Plo
	-rm -f ./$(DEPDIR)/libalberta_fem_2d_profile_la-crs_matrix.Plo
	-rm -f ./$(DEPDIR)/libalberta_fem_2d_profile_la-diag_precon.Plo
	-rm -f ./$(DEPDIR)/libalberta_fem_2d_profile_la-error.Plo
	-rm -f ./$(DEPDIR)/libalberta_fem_2d_profile_la-estimator.Plo
	-rm -f ./$(DEPDIR)/libalberta_fem_2d_profile_la-estimator_dowb.Plo
	-rm -f ./$(DEPDIR)/libalberta_fem_2d_profile_la-ilu_k_precon.Plo
	-rm -f ./$(DEPDIR)/libalberta_fem_2d_profile_la-l2scp.Plo
	-rm -f ./$(DEPDIR)/libalberta_fem_2d_profile_la-level.Plo
	-rm -f ./$(DEPDIR)/libalberta_fem_2d_profile_la-oem_solve.Plo
	-rm -f ./$(DEPDIR)/libalberta_fem_2d_profile_la-oem_sp_solve.Plo
	-rm -f ./$(DEPDIR)/libalberta_fem_2d_profile_la-optimize_profile.Plo
	-rm -f ./$(DEPDIR)/libalberta_fem_2d_profile_la-sor.Plo
	-rm -f ./$(DEPDIR)/libalberta_fem_2d_profile_la-ssor.Plo
	-rm -f ./$(DEPDIR)/libalberta_fem_2d_profile_la-wall_quad.Plo
	-rm -f ./$(DEPDIR)/libalberta_gfx_2d_profile_la-dxtools.Plo
	-rm -f ./$(DEPDIR)/libalberta_gfx_2d_profile_la-gfx-dummy.Plo
	-rm -f ./$(DEPDIR)/libalberta_gfx_2d_profile_la-gltools.Plo
	-rm -f ./$(DEPDIR)/libalberta_gfx_2d_profile_la-graphXO.Plo
	-rm -f Makefile
distclean-am: clean-am distclean-compile distclean-generic \
	distclean-local distclean-tags

dvi: dvi-am

dvi-am:

html: html-am

html-am:

info: info-am

info-am:

install-data-am: install-pkgconfigDATA

install-dvi: install-dvi-am

install-dvi-am:

install-exec-am: install-libLTLIBRARIES

install-html: install-html-am

install-html-am:

install-info: install-info-am

install-info-am:

install-man:

install-pdf: install-pdf-am

install-pdf-am:

install-ps: install-ps-am

install-ps-am:

installcheck-am:

maintainer-clean: maintainer-clean-am
		-rm -f ./$(DEPDIR)/libCV_assemble_2d_profile_la-DM_DM_DM_DM_assemble_fcts.Plo
	-rm -f ./$(DEPDIR)/libCV_assemble_2d_profile_la-DM_DM_SCM_SCM_assemble_fcts.Plo
	-rm -f ./$(DEPDIR)/libCV_assemble_2d_profile_la-DM_DM_assemble_bndry_fcts.Plo
	-rm -f ./$(DEPDIR)/libCV_assemble_2d_profile_la-DM_SCM_assemble_bndry_fcts.Plo
	-rm -f ./$(DEPDIR)/libCV_assemble_2d_profile_la-M_DM_assemble_bndry_fcts.Plo
	-rm -f ./$(DEPDIR)/libCV_assemble_2d_profile_la-M_M_DM_DM_assemble_fcts.Plo
	-rm -f ./$(DEPDIR)/libCV_assemble_2d_profile_la-M_M_M_M_assemble_fcts.Plo
	-rm -f ./$(DEPDIR)/libCV_assemble_2d_profile_la-M_M_SCM_SCM_assemble_fcts.Plo
	-rm -f ./$(DEPDIR)/libCV_assemble_2d_profile_la-M_M_assemble_bndry_fcts.Plo
	-rm -f ./$(DEPDIR)/libCV_assemble_2d_profile_la-M_SCM_assemble_bndry_fcts.Plo
	-rm -f ./$(DEPDIR)/libCV_assemble_2d_profile_la-SCM_SCM_SCM_SCM_assemble_fcts.Plo
	-rm -f ./$(DEPDIR)/libCV_assemble_2d_profile_la-SCM_SCM_assemble_bndry_fcts.Plo
	-rm -f ./$(DEPDIR)/libCV_assemble_2d_profile_la-assemble.Plo
	-rm -f ./$(DEPDIR)/libCV_assemble_2d_profile_la-assemble_bndry.Plo
	-rm -f ./$(DEPDIR)/libCV_assemble_2d_profile_la-assemble_neigh.Plo
	-rm -f ./$(DEPDIR)/libSS_assemble_2d_profile_la-DM_DM_DM_DM_assemble_fcts.Plo
	-rm -f ./$(DEPDIR)/libSS_assemble_2d_profile_la-DM_DM_SCM_SCM_assemble_fcts.Plo
	-rm -f ./$(DEPDIR)/libSS_assemble_2d_profile_la-DM_DM_assemble_bndry_fcts.Plo
	-rm -f ./$(DEPDIR)/libSS_assemble_2d_profile_la-DM_SCM_assemble_bndry_fcts.Plo
	-rm -f ./$(DEPDIR)/libSS_assemble_2d_profile_la-M_DM_assemble_bndry_fcts.Plo
	-rm -f ./$(DEPDIR)/libSS_assemble_2d_profile_la-M_M_DM_DM_assemble_fcts.Plo
	-rm -f ./$(DEPDIR)/libSS_assemble_2d_profile_la-M_M_M_M_assemble_fcts.Plo
	-rm -f ./$(DEPDIR)/libSS_assemble_2d_profile_la-M_M_SCM_SCM_assemble_fcts.Plo
	-rm -f ./$(DEPDIR)/libSS_assemble_2d_profile_la-M_M_assemble_bndry_fcts.Plo
	-rm -f ./$(DEPDIR)/libSS_assemble_2d_profile_la-M_SCM_assemble_bndry_fcts.Plo
	-rm -f ./$(DEPDIR)/libSS_assemble_2d_profile_la-SCM_SCM_SCM_SCM_assemble_fcts.Plo
	-rm -f ./$(DEPDIR)/libSS_assemble_2d_profile_la-SCM_SCM_assemble_bndry_fcts.Plo
	-rm -f ./$(DEPDIR)/libSS_assemble_2d_profile_la-assemble.Plo
	-rm -f ./$(DEPDIR)/libSS_assemble_2d_profile_la-assemble_bndry.Plo
	-rm -f ./$(DEPDIR)/libSS_assemble_2d_profile_la-assemble_neigh.Plo
	-rm -f ./$(DEPDIR)/libSV_assemble_2d_profile_la-DM_DM_DM_DM_assemble_fcts.Plo
	-rm -f ./$(DEPDIR)/libSV_assemble_2d_profile_la-DM_DM_SCM_SCM_assemble_fcts.Plo
	-rm -f ./$(DEPDIR)/libSV_assemble_2d_profile_la-DM_DM_assemble_bndry_fcts.Plo
	-rm -f ./$(DEPDIR)/libSV_assemble_2d_profile_la-DM_SCM_assemble_bndry_fcts.Plo
	-rm -f ./$(DEPDIR)/libSV_assemble_2d_profile_la-SCM_SCM_SCM_SCM_assemble_fcts.Plo
	-rm -f ./$(DEPDIR)/libSV_assemble_2d_profile_la-SCM_SCM_assemble_bndry_fcts.Plo
	-rm -f ./$(DEPDIR)/libSV_assemble_2d_profile_la-assemble.Plo
	-rm -f ./$(DEPDIR)/libSV_assemble_2d_profile_la-assemble_bndry.Plo
	-rm -f ./$(DEPDIR)/libSV_assemble_2d_profile_la-assemble_neigh.Plo
	-rm -f ./$(DEPDIR)/libVC_assemble_2d_profile_la-DM_DM_DM_DM_assemble_fcts.Plo
	-rm -f ./$(DEPDIR)/libVC_assemble_2d_profile_la-DM_DM_SCM_SCM_assemble_fcts.Plo
	-rm -f ./$(DEPDIR)/libVC_assemble_2d_profile_la-DM_DM_assemble_bndry_fcts.Plo
	-rm -f ./$(DEPDIR)/libVC_assemble_2d_profile_la-DM_SCM_assemble_bndry_fcts.Plo
	-rm -f ./$(DEPDIR)/libVC_assemble_2d_profile_la-M_DM_assemble_bndry_fcts.Plo
	-rm -f ./$(DEPDIR)/libVC_assemble_2d_profile_la-M_M_DM_DM_assemble_fcts.Plo
	-rm -f ./$(DEPDIR)/libVC_assemble_2d_profile_la-M_M_M_M_assemble_fcts.Plo
	-rm -f ./$(DEPDIR)/libVC_assemble_2d_profile_la-M_M_SCM_SCM_assemble_fcts.Plo
	-rm -f ./$(DEPDIR)/libVC_assemble_2d_profile_la-M_M_assemble_bndry_fcts.Plo
	-rm -f ./$(DEPDIR)/libVC_assemble_2d_profile_la-M_SCM_assemble_bndry_fcts.Plo
	-rm -f ./$(DEPDIR)/libVC_assemble_2d_profile_la-SCM_SCM_SCM_SCM_assemble_fcts.Plo
	-rm -f ./$(DEPDIR)/libVC_assemble_2d_profile_la-SCM_SCM_assemble_bndry_fcts.Plo
	-rm -f ./$(DEPDIR)/libVC_assemble_2d_profile_la-assemble.Plo
	-rm -f ./$(DEPDIR)/libVC_assemble_2d_profile_la-assemble_bndry.Plo
	-rm -f ./$(DEPDIR)/libVC_assemble_2d_profile_la-assemble_neigh.Plo
	-rm -f ./$(DEPDIR)/libVS_assemble_2d_profile_la-DM_DM_DM_DM_assemble_fcts.Plo
	-rm -f ./$(DEPDIR)/libVS_assemble_2d_profile_la-DM_DM_SCM_SCM_assemble_fcts.Plo
	-rm -f ./$(DEPDIR)/libVS_assemble_2d_profile_la-DM_DM_assemble_bndry_fcts.Plo
	-rm -f ./$(DEPDIR)/libVS_assemble_2d_profile_la-DM_SCM_assemble_bndry_fcts.Plo
	-rm -f ./$(DEPDIR)/libVS_assemble_2d_profile_la-SCM_SCM_SCM_SCM_assemble_fcts.Plo
	-rm -f ./$(DEPDIR)/libVS_assemble_2d_profile_la-SCM_SCM_assemble_bndry_fcts.Plo
	-rm -f ./$(DEPDIR)/libVS_assemble_2d_profile_la-assemble.Plo
	-rm -f ./$(DEPDIR)/libVS_assemble_2d_profile_la-assemble_bndry.Plo
	-rm -f ./$(DEPDIR)/libVS_assemble_2d_profile_la-assemble_neigh.Plo
	-rm -f ./$(DEPDIR)/libVV_assemble_2d_profile_la-DM_DM_DM_DM_assemble_fcts.Plo
	-rm -f ./$(DEPDIR)/libVV_assemble_2d_profile_la-DM_DM_SCM_SCM_assemble_fcts.Plo
	-rm -f ./$(DEPDIR)/libVV_assemble_2d_profile_la-DM_DM_assemble_bndry_fcts.Plo
	-rm -f ./$(DEPDIR)/libVV_assemble_2d_profile_la-DM_SCM_assemble_bndry_fcts.Plo
	-rm -f ./$(DEPDIR)/libVV_assemble_2d_profile_la-M_DM_assemble_bndry_fcts.Plo
	-rm -f ./$(DEPDIR)/libVV_assemble_2d_profile_la-M_M_DM_DM_assemble_fcts.Plo
	-rm -f ./$(DEPDIR)/libVV_assemble_2d_profile_la-M_M_M_M_assemble_fcts.Plo
	-rm -f ./$(DEPDIR)/libVV_assemble_2d_profile_la-M_M_SCM_SCM_assemble_fcts.Plo
	-rm -f ./$(DEPDIR)/libVV_assemble_2d_profile_la-M_M_assemble_bndry_fcts.Plo
	-rm -f ./$(DEPDIR)/libVV_assemble_2d_profile_la-M_SCM_assemble_bndry_fcts.Plo
	-rm -f ./$(DEPDIR)/libVV_assemble_2d_profile_la-SCM_SCM_SCM_SCM_assemble_fcts.Plo
	-rm -f ./$(DEPDIR)/libVV_assemble_2d_profile_la-SCM_SCM_assemble_bndry_fcts.Plo
	-rm -f ./$(DEPDIR)/libVV_assemble_2d_profile_la-assemble.Plo
	-rm -f ./$(DEPDIR)/libVV_assemble_2d_profile_la-assemble_bndry.Plo
	-rm -f ./$(DEPDIR)/libVV_assemble_2d_profile_la-assemble_neigh.Plo
	-rm -f ./$(DEPDIR)/libalberta_2d_profile_la-bas_fct.Plo
	-rm -f ./$(DEPDIR)/libalberta_2d_profile_la-check.Plo
	-rm -f ./$(DEPDIR)/libalberta_2d_profile_la-coarsen.Plo
	-rm -f ./$(DEPDIR)/libalberta_2d_profile_la-dof_admin.Plo
	-rm -f ./$(DEPDIR)/libalberta_2d_profile_la-element.Plo
	-rm -f ./$(DEPDIR)/libalberta_2d_profile_la-eval.Plo
	-rm -f ./$(DEPDIR)/libalberta_2d_profile_la-gauss-quad.Plo
	-rm -f ./$(DEPDIR)/libalberta_2d_profile_la-macro.Plo
	-rm -f ./$(DEPDIR)/libalberta_2d_profile_la-memory.Plo
	-rm -f ./$(DEPDIR)/libalberta_2d_profile_la-numint.Plo
	-rm -f ./$(DEPDIR)/libalberta_2d_profile_la-parametric.Plo
	-rm -f ./$(DEPDIR)/libalberta_2d_profile_la-periodic.Plo
	-rm -f ./$(DEPDIR)/libalberta_2d_profile_la-quad_cache.Plo
	-rm -f ./$(DEPDIR)/libalberta_2d_profile_la-read_mesh.Plo
	-rm -f ./$(DEPDIR)/libalberta_2d_profile_la-read_mesh_xdr_1.2.Plo
	-rm -f ./$(DEPDIR)/libalberta_2d_profile_la-refine.Plo
	-rm -f ./$(DEPDIR)/libalberta_2d_profile_la-submesh.Plo
	-rm -f ./$(DEPDIR)/libalberta_2d_profile_la-trav_xy.Plo
	-rm -f ./$(DEPDIR)/libalberta_2d_profile_la-traverse_nr.Plo
	-rm -f ./$(DEPDIR)/libalberta_2d_profile_la-traverse_r.Plo
	-rm -f ./$(DEPDIR)/libalberta_2d_profile_la-write_mesh.Plo
	-rm -f ./$(DEPDIR)/libalberta_2d_profile_la-write_mesh_gmv.Plo
	-rm -f ./$(DEPDIR)/libalberta_2d_profile_la-write_mesh_ps.Plo
	-rm -f ./$(DEPDIR)/libalberta_fem_2d_profile_la-HB_precon.Plo
	-rm -f ./$(DEPDIR)/libalberta_fem_2d_profile_la-MG.Plo
	-rm -f ./$(DEPDIR)/libalberta_fem_2d_profile_la-MG_s.Plo
	-rm -f ./$(DEPDIR)/libalberta_fem_2d_profile_la-MG_s1.Plo
	-rm -f ./$(DEPDIR)/libalberta_fem_2d_profile_la-MG_s2.Plo
	-rm -f ./$(DEPDIR)/libalberta_fem_2d_profile_la-SSOR_precon.Plo
	-rm -f ./$(DEPDIR)/libalberta_fem_2d_profile_la-adapt.Plo
	-rm -f ./$(DEPDIR)/libalberta_fem_2d_profile_la-assemble-instat.Plo
	-rm -f ./$(DEPDIR)/libalberta_fem_2d_profile_la-block_precon.Plo
	-rm -f ./$(DEPDIR)/libalberta_fem_2d_profile_la-bndry_cond.Plo
	-rm -f ./$(DEPDIR)/libalberta_fem_2d_profile_la-crs_matrix.Plo
	-rm -f ./$(DEPDIR)/libalberta_fem_2d_profile_la-diag_precon.Plo
	-rm -f ./$(DEPDIR)/libalberta_fem_2d_profile_la-error.Plo
	-rm -f ./$(DEPDIR)/libalberta_fem_2d_profile_la-estimator.Plo
	-rm -f ./$(DEPDIR)/libalberta_fem_2d_profile_la-estimator_dowb.Plo
	-rm -f ./$(DEPDIR)/libalberta_fem_2d_profile_la-ilu_k_precon.Plo
	-rm -f ./$(DEPDIR)/libalberta_fem_2d_profile_la-l2scp.Plo
	-rm -f ./$(DEPDIR)/libalberta_fem_2d_profile_la-level.Plo
	-rm -f ./$(DEPDIR)/libalberta_fem_2d_profile_la-oem_solve.Plo
	-rm -f ./$(DEPDIR)/libalberta_fem_2d_profile_la-oem_sp_solve.Plo
	-rm -f ./$(DEPDIR)/libalberta_fem_2d_profile_la-optimize_profile.Plo
	-rm -f ./$(DEPDIR)/libalberta_fem_2d_profile_la-sor.Plo
	-rm -f ./$(DEPDIR)/libalberta_fem_2d_profile_la-ssor.Plo
	-rm -f ./$(DEPDIR)/libalberta_fem_2d_profile_la-wall_quad.Plo
	-rm -f ./$(DEPDIR)/libalberta_gfx_2d_profile_la-dxtools.Plo
	-rm -f ./$(DEPDIR)/libalberta_gfx_2d_profile_la-gfx-dummy.Plo
	-rm -f ./$(DEPDIR)/libalberta_gfx_2d_profile_la-gltools.Plo
	-rm -f ./$(DEPDIR)/libalberta_gfx_2d_profile_la-graphXO.Plo
	-rm -f Makefile
maintainer-clean-am: distclean-am maintainer-clean-generic

mostlyclean: mostlyclean-am

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

pdf: pdf-am

pdf-am:

ps: ps-am

ps-am:

uninstall-am: uninstall-libLTLIBRARIES uninstall-pkgconfigDATA

.MAKE: all check install install-am install-strip

.PHONY: CTAGS GTAGS TAGS all all-am all-local am--depfiles check \
	check-am clean clean-generic clean-libLTLIBRARIES \
	clean-libtool clean-noinstLTLIBRARIES cscopelist-am ctags \
	ctags-am distclean distclean-compile distclean-generic \
	distclean-libtool distclean-local distclean-tags distdir dvi \
	dvi-am html html-am info info-am install install-am \
	install-data install-data-am install-dvi install-dvi-am \
	install-exec install-exec-am install-html install-html-am \
	install-info install-info-am install-libLTLIBRARIES \
	install-man install-pdf install-pdf-am install-pkgconfigDATA \
	install-ps install-ps-am install-strip installcheck \
	installcheck-am installdirs maintainer-clean \
	maintainer-clean-generic mostlyclean mostlyclean-compile \
	mostlyclean-generic mostlyclean-libtool pdf pdf-am ps ps-am \
	tags tags-am uninstall uninstall-am uninstall-libLTLIBRARIES \
	uninstall-pkgconfigDATA

.PRECIOUS: Makefile


$(ASSEMBLE_SRC): \
 ../Common/assemble_fcts.c.in ../Common/assemble_fcts.h.in \
 $(top_srcdir)/gen-assemble-fcts.sh
	make -C ../Common

$(ASSEMBLE_SRC:.c=.h): \
 ../Common/assemble_fcts.h.in $(top_srcdir)/gen-assemble-fcts.sh
	make -C ../Common

$(ASSEMBLE_BNDRY_SRC): \
 ../Common/assemble_bndry_fcts.c.in $(top_srcdir)/gen-assemble-fcts.sh
	make -C ../Common

alberta-grid_2d_profile.pc: $(top_builddir)/alberta-grid.pctmpl Makefile
	$(SED) -e 's/!DIMENSION!/2/g' -e 's/!LIBCODE!/$(LIBCODE)/g' -e 's/!SUFFIX!/$(SUFFIX)/g' $< > $@

alberta-fem_2d_profile.pc: $(top_builddir)/alberta-fem.pctmpl Makefile
	$(SED) -e 's/!DIMENSION!/2/g' -e 's/!LIBCODE!/$(LIBCODE)/g' -e 's/!SUFFIX!/$(SUFFIX)/g' $< > $@

alberta-gfx_2d_profile.pc: $(top_builddir)/alberta-gfx.pctmpl Makefile
	$(SED) -e 's/!DIMENSION!/2/g' -e 's/!LIBCODE!/$(LIBCODE)/g' -e 's/!SUFFIX!/$(SUFFIX)/g' $< > $@

distclean-local:
	-rm -f $(BUILT_SOURCES)

@MAINTAINER_MODE_TRUE@$(srcdir)/Makefile.am: \
@MAINTAINER_MODE_TRUE@ $(top_srcdir)/Makefile.am.template \
@MAINTAINER_MODE_TRUE@ $(top_srcdir)/generate-alberta-automakefiles.sh
@MAINTAINER_MODE_TRUE@	cd $(top_srcdir) && sh generate-alberta-automakefiles.sh

all-local:
	make -C ../Common all-local

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