summaryrefslogtreecommitdiff
path: root/modules/external_objects/Makefile.in
blob: 235ffef675ffc886c3d3f7eae1068bd2c5acba35 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
1965
1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
1976
1977
1978
1979
1980
1981
1982
1983
1984
1985
1986
1987
1988
1989
1990
1991
1992
1993
1994
1995
1996
1997
1998
1999
2000
2001
2002
2003
2004
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
2027
2028
2029
2030
2031
2032
2033
2034
2035
2036
2037
2038
2039
2040
2041
2042
2043
2044
2045
2046
2047
2048
2049
2050
2051
2052
2053
2054
2055
2056
2057
2058
2059
2060
2061
2062
2063
2064
2065
2066
2067
2068
2069
2070
2071
2072
2073
2074
2075
2076
2077
2078
2079
2080
2081
2082
2083
2084
2085
2086
2087
2088
2089
2090
2091
2092
2093
2094
2095
2096
2097
2098
2099
2100
2101
2102
2103
2104
2105
2106
2107
2108
2109
2110
2111
2112
2113
2114
2115
2116
2117
2118
2119
2120
2121
2122
2123
2124
2125
2126
2127
2128
2129
2130
2131
2132
2133
2134
2135
2136
2137
2138
2139
2140
2141
2142
2143
2144
2145
2146
2147
2148
2149
2150
2151
2152
2153
2154
2155
2156
2157
2158
2159
2160
2161
2162
2163
2164
2165
2166
2167
2168
2169
2170
2171
2172
2173
2174
2175
2176
2177
2178
2179
2180
2181
2182
2183
2184
2185
2186
2187
2188
2189
2190
2191
2192
2193
2194
2195
2196
2197
2198
2199
2200
2201
2202
2203
2204
2205
2206
2207
2208
2209
2210
2211
2212
2213
2214
2215
2216
2217
2218
2219
2220
2221
2222
2223
2224
2225
2226
2227
2228
2229
2230
2231
2232
2233
2234
2235
2236
2237
2238
2239
2240
2241
2242
2243
2244
2245
2246
2247
2248
2249
2250
2251
2252
2253
2254
2255
2256
2257
2258
2259
2260
2261
2262
2263
2264
2265
2266
2267
2268
2269
2270
2271
2272
2273
2274
2275
2276
2277
2278
2279
2280
2281
2282
2283
2284
2285
2286
2287
2288
2289
2290
2291
2292
2293
2294
2295
2296
2297
2298
2299
2300
2301
2302
2303
2304
2305
2306
2307
2308
2309
2310
2311
2312
2313
2314
2315
2316
2317
2318
2319
2320
2321
2322
2323
2324
2325
2326
2327
2328
2329
2330
2331
2332
2333
2334
2335
2336
2337
2338
2339
2340
2341
2342
2343
2344
2345
2346
2347
2348
2349
2350
2351
2352
2353
2354
2355
2356
2357
2358
2359
2360
2361
2362
2363
2364
2365
2366
2367
2368
2369
2370
2371
2372
2373
2374
2375
2376
2377
2378
2379
2380
2381
2382
2383
2384
2385
2386
2387
2388
2389
2390
2391
2392
2393
2394
2395
# Makefile.in generated by automake 1.14.1 from Makefile.am.
# @configure_input@

# Copyright (C) 1994-2013 Free Software Foundation, Inc.

# This Makefile.in is free software; the Free Software Foundation
# gives unlimited permission to copy and/or distribute it,
# with or without modifications, as long as this notice is preserved.

# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY, to the extent permitted by law; without
# even the implied warranty of MERCHANTABILITY or FITNESS FOR A
# PARTICULAR PURPOSE.

@SET_MAKE@

#
# Scilab ( http://www.scilab.org/ ) - This file is part of Scilab
# Copyright (C) 2012 - Scilab Enterprises - Calixte DENIZET
#
# This file must be used under the terms of the CeCILL.
# This source file is licensed as described in the file COPYING, which
# you should have received as part of this distribution. The terms
# are also available at
# http://www.cecill.info/licences/Licence_CeCILL_V2.1-en.txt
#

# Scilab ( http://www.scilab.org/ ) - This file is part of Scilab
# Copyright (C) 2006-2008 - INRIA - Sylvestre LEDRU <sylvestre.ledru@inria.fr>
# Copyright (C) 2008      - INRIA - Pierre MARECHAL <pierre.marechal@inria.fr>
#
# This file must be used under the terms of the CeCILL.
# This source file is licensed as described in the file COPYING, which
# you should have received as part of this distribution.  The terms
# are also available at
# http://www.cecill.info/licences/Licence_CeCILL_V2.1-en.txt
#

##########
### Makefile included stuff
### Target, variable, suffixes which are supposed to be useful in every makefile.am
##########



VPATH = @srcdir@
am__is_gnu_make = test -n '$(MAKEFILE_LIST)' && test -n '$(MAKELEVEL)'
am__make_running_with_option = \
  case $${target_option-} in \
      ?) ;; \
      *) echo "am__make_running_with_option: internal error: invalid" \
              "target option '$${target_option-}' specified" >&2; \
         exit 1;; \
  esac; \
  has_opt=no; \
  sane_makeflags=$$MAKEFLAGS; \
  if $(am__is_gnu_make); then \
    sane_makeflags=$$MFLAGS; \
  else \
    case $$MAKEFLAGS in \
      *\\[\ \	]*) \
        bs=\\; \
        sane_makeflags=`printf '%s\n' "$$MAKEFLAGS" \
          | sed "s/$$bs$$bs[$$bs $$bs	]*//g"`;; \
    esac; \
  fi; \
  skip_next=no; \
  strip_trailopt () \
  { \
    flg=`printf '%s\n' "$$flg" | sed "s/$$1.*$$//"`; \
  }; \
  for flg in $$sane_makeflags; do \
    test $$skip_next = yes && { skip_next=no; continue; }; \
    case $$flg in \
      *=*|--*) continue;; \
        -*I) strip_trailopt 'I'; skip_next=yes;; \
      -*I?*) strip_trailopt 'I';; \
        -*O) strip_trailopt 'O'; skip_next=yes;; \
      -*O?*) strip_trailopt 'O';; \
        -*l) strip_trailopt 'l'; skip_next=yes;; \
      -*l?*) strip_trailopt 'l';; \
      -[dEDm]) skip_next=yes;; \
      -[JT]) skip_next=yes;; \
    esac; \
    case $$flg in \
      *$$target_option*) has_opt=yes; break;; \
    esac; \
  done; \
  test $$has_opt = yes
am__make_dryrun = (target_option=n; $(am__make_running_with_option))
am__make_keepgoing = (target_option=k; $(am__make_running_with_option))
pkgdatadir = $(datadir)/@PACKAGE@
pkgincludedir = $(includedir)/@PACKAGE@
pkglibdir = $(libdir)/@PACKAGE@
pkglibexecdir = $(libexecdir)/@PACKAGE@
am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd
install_sh_DATA = $(install_sh) -c -m 644
install_sh_PROGRAM = $(install_sh) -c
install_sh_SCRIPT = $(install_sh) -c
INSTALL_HEADER = $(INSTALL_DATA)
transform = $(program_transform_name)
NORMAL_INSTALL = :
PRE_INSTALL = :
POST_INSTALL = :
NORMAL_UNINSTALL = :
PRE_UNINSTALL = :
POST_UNINSTALL = :
build_triplet = @build@
host_triplet = @host@
DIST_COMMON = $(top_srcdir)/Makefile.incl.am $(srcdir)/Makefile.in \
	$(srcdir)/Makefile.am $(top_srcdir)/config/mkinstalldirs \
	$(top_srcdir)/config/depcomp \
	$(libsciexternal_objects_la_include_HEADERS)
@NEED_JAVA_TRUE@am__append_1 = java
subdir = modules/external_objects
ACLOCAL_M4 = $(top_srcdir)/aclocal.m4
am__aclocal_m4_deps = $(top_srcdir)/m4/backtrace.m4 \
	$(top_srcdir)/m4/compiler.m4 $(top_srcdir)/m4/curl.m4 \
	$(top_srcdir)/m4/docbook.m4 $(top_srcdir)/m4/doxygen.m4 \
	$(top_srcdir)/m4/fftw.m4 $(top_srcdir)/m4/fortran.m4 \
	$(top_srcdir)/m4/giws.m4 $(top_srcdir)/m4/hdf5.m4 \
	$(top_srcdir)/m4/intel_compiler.m4 \
	$(top_srcdir)/m4/java-thirdparty.m4 $(top_srcdir)/m4/java.m4 \
	$(top_srcdir)/m4/largefile.m4 $(top_srcdir)/m4/lib-ld.m4 \
	$(top_srcdir)/m4/libsmath.m4 $(top_srcdir)/m4/libtool.m4 \
	$(top_srcdir)/m4/libxml2.m4 $(top_srcdir)/m4/ltoptions.m4 \
	$(top_srcdir)/m4/ltsugar.m4 $(top_srcdir)/m4/ltversion.m4 \
	$(top_srcdir)/m4/lt~obsolete.m4 $(top_srcdir)/m4/macosx.m4 \
	$(top_srcdir)/m4/mpi.m4 $(top_srcdir)/m4/ocaml.m4 \
	$(top_srcdir)/m4/pcre.m4 $(top_srcdir)/m4/pkg.m4 \
	$(top_srcdir)/m4/relocatable.m4 $(top_srcdir)/m4/swig.m4 \
	$(top_srcdir)/m4/symlinks.m4 $(top_srcdir)/m4/tcltk.m4 \
	$(top_srcdir)/m4/umfpack.m4 $(top_srcdir)/configure.ac
am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \
	$(ACLOCAL_M4)
mkinstalldirs = $(SHELL) $(top_srcdir)/config/mkinstalldirs
CONFIG_HEADER = $(top_builddir)/modules/core/includes/machine.h
CONFIG_CLEAN_FILES =
CONFIG_CLEAN_VPATH_FILES =
am__vpath_adj_setup = srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`;
am__vpath_adj = case $$p in \
    $(srcdir)/*) f=`echo "$$p" | sed "s|^$$srcdirstrip/||"`;; \
    *) f=$$p;; \
  esac;
am__strip_dir = f=`echo $$p | sed -e 's|^.*/||'`;
am__install_max = 40
am__nobase_strip_setup = \
  srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*|]/\\\\&/g'`
am__nobase_strip = \
  for p in $$list; do echo "$$p"; done | sed -e "s|$$srcdirstrip/||"
am__nobase_list = $(am__nobase_strip_setup); \
  for p in $$list; do echo "$$p $$p"; done | \
  sed "s| $$srcdirstrip/| |;"' / .*\//!s/ .*/ ./; s,\( .*\)/[^/]*$$,\1,' | \
  $(AWK) 'BEGIN { files["."] = "" } { files[$$2] = files[$$2] " " $$1; \
    if (++n[$$2] == $(am__install_max)) \
      { print $$2, files[$$2]; n[$$2] = 0; files[$$2] = "" } } \
    END { for (dir in files) print dir, files[dir] }'
am__base_list = \
  sed '$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;s/\n/ /g' | \
  sed '$$!N;$$!N;$$!N;$$!N;s/\n/ /g'
am__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)$(pkglibdir)" \
	"$(DESTDIR)$(libsciexternal_objects_la_etcdir)" \
	"$(DESTDIR)$(libsciexternal_objects_la_rootdir)" \
	"$(DESTDIR)$(libsciexternal_objects_la_sci_gatewaydir)" \
	"$(DESTDIR)$(libsciexternal_objects_la_includedir)"
LTLIBRARIES = $(noinst_LTLIBRARIES) $(pkglib_LTLIBRARIES)
libsciexternal_objects_algo_la_LIBADD =
am__objects_1 =
am__dirstamp = $(am__leading_dot)dirstamp
am__objects_2 =  \
	src/cpp/libsciexternal_objects_algo_la-ScilabEnvironments.lo \
	src/cpp/libsciexternal_objects_algo_la-ScilabObjects.lo \
	src/cpp/libsciexternal_objects_algo_la-OptionsHelper.lo \
	src/cpp/libsciexternal_objects_algo_la-addToClasspath.lo \
	src/cpp/libsciexternal_objects_algo_la-getClasspath.lo \
	src/cpp/libsciexternal_objects_algo_la-getsetOptions.lo \
	src/cpp/libsciexternal_objects_algo_la-getEnvironmentInfos.lo \
	src/cpp/libsciexternal_objects_algo_la-array.lo \
	src/cpp/libsciexternal_objects_algo_la-operation.lo \
	src/cpp/libsciexternal_objects_algo_la-cast.lo \
	src/cpp/libsciexternal_objects_algo_la-compile.lo \
	src/cpp/libsciexternal_objects_algo_la-convMatrixMethod.lo \
	src/cpp/libsciexternal_objects_algo_la-deff.lo \
	src/cpp/libsciexternal_objects_algo_la-display.lo \
	src/cpp/libsciexternal_objects_algo_la-doubleExclam_invoke.lo \
	src/cpp/libsciexternal_objects_algo_la-classExtract.lo \
	src/cpp/libsciexternal_objects_algo_la-objectExtract.lo \
	src/cpp/libsciexternal_objects_algo_la-objectInsert.lo \
	src/cpp/libsciexternal_objects_algo_la-objectPrint.lo \
	src/cpp/libsciexternal_objects_algo_la-exists.lo \
	src/cpp/libsciexternal_objects_algo_la-getClassName.lo \
	src/cpp/libsciexternal_objects_algo_la-getEnvironmentName.lo \
	src/cpp/libsciexternal_objects_algo_la-getField.lo \
	src/cpp/libsciexternal_objects_algo_la-getFields.lo \
	src/cpp/libsciexternal_objects_algo_la-getMethods.lo \
	src/cpp/libsciexternal_objects_algo_la-getRepresentation.lo \
	src/cpp/libsciexternal_objects_algo_la-import.lo \
	src/cpp/libsciexternal_objects_algo_la-invoke.lo \
	src/cpp/libsciexternal_objects_algo_la-invoke_asref.lo \
	src/cpp/libsciexternal_objects_algo_la-invoke_lu.lo \
	src/cpp/libsciexternal_objects_algo_la-trace.lo \
	src/cpp/libsciexternal_objects_algo_la-newInstance.lo \
	src/cpp/libsciexternal_objects_algo_la-remove.lo \
	src/cpp/libsciexternal_objects_algo_la-setField.lo \
	src/cpp/libsciexternal_objects_algo_la-evalString.lo \
	src/cpp/libsciexternal_objects_algo_la-addNamedVariable.lo \
	src/cpp/libsciexternal_objects_algo_la-getNamedVariable.lo \
	src/cpp/libsciexternal_objects_algo_la-unwrap.lo \
	src/cpp/libsciexternal_objects_algo_la-wrap.lo \
	src/cpp/libsciexternal_objects_algo_la-unwrapremove.lo \
	src/cpp/libsciexternal_objects_algo_la-wrapAsRef.lo \
	src/cpp/libsciexternal_objects_algo_la-invoker.lo \
	src/cpp/libsciexternal_objects_algo_la-getEnvId.lo \
	src/cpp/libsciexternal_objects_algo_la-ScilabOptionsSetter.lo \
	src/cpp/libsciexternal_objects_algo_la-ScilabAutoCleaner.lo \
	src/cpp/libsciexternal_objects_algo_la-ExternalObjectsFunction.lo \
	src/cpp/libsciexternal_objects_algo_la-wrapInFloat.lo
am_libsciexternal_objects_algo_la_OBJECTS = $(am__objects_1) \
	$(am__objects_1) $(am__objects_2)
libsciexternal_objects_algo_la_OBJECTS =  \
	$(am_libsciexternal_objects_algo_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 = 
am__DEPENDENCIES_1 =
libsciexternal_objects_la_DEPENDENCIES =  \
	libsciexternal_objects-algo.la $(am__DEPENDENCIES_1) \
	$(am__DEPENDENCIES_1)
am__objects_3 = sci_gateway/c/libsciexternal_objects_la-gw_external_objects.lo
am__objects_4 = sci_gateway/cpp/libsciexternal_objects_la-sci_percent_EObj_e.lo \
	sci_gateway/cpp/libsciexternal_objects_la-sci_percent_EObj_p.lo \
	sci_gateway/cpp/libsciexternal_objects_la-sci_percent_foo_i_EObj.lo \
	sci_gateway/cpp/libsciexternal_objects_la-sci_percent_EClass_e.lo \
	sci_gateway/cpp/libsciexternal_objects_la-sci_percent_EObj_a_foo.lo \
	sci_gateway/cpp/libsciexternal_objects_la-sci_percent_EObj_d_foo.lo \
	sci_gateway/cpp/libsciexternal_objects_la-sci_percent_EObj_g_foo.lo \
	sci_gateway/cpp/libsciexternal_objects_la-sci_percent_EObj_h_foo.lo \
	sci_gateway/cpp/libsciexternal_objects_la-sci_percent_EObj_j_foo.lo \
	sci_gateway/cpp/libsciexternal_objects_la-sci_percent_EObj_k_foo.lo \
	sci_gateway/cpp/libsciexternal_objects_la-sci_percent_EObj_l_foo.lo \
	sci_gateway/cpp/libsciexternal_objects_la-sci_percent_EObj_m_foo.lo \
	sci_gateway/cpp/libsciexternal_objects_la-sci_percent_EObj_n_foo.lo \
	sci_gateway/cpp/libsciexternal_objects_la-sci_percent_EObj_o_foo.lo \
	sci_gateway/cpp/libsciexternal_objects_la-sci_percent_EObj_p_foo.lo \
	sci_gateway/cpp/libsciexternal_objects_la-sci_percent_EObj_q_foo.lo \
	sci_gateway/cpp/libsciexternal_objects_la-sci_percent_EObj_r_foo.lo \
	sci_gateway/cpp/libsciexternal_objects_la-sci_percent_EObj_s_foo.lo \
	sci_gateway/cpp/libsciexternal_objects_la-sci_percent_EObj_x_foo.lo \
	sci_gateway/cpp/libsciexternal_objects_la-sci_percent_EObj_y_foo.lo \
	sci_gateway/cpp/libsciexternal_objects_la-sci_percent_EObj_z_foo.lo \
	sci_gateway/cpp/libsciexternal_objects_la-sci_percent_EObj_1_foo.lo \
	sci_gateway/cpp/libsciexternal_objects_la-sci_percent_EObj_2_foo.lo \
	sci_gateway/cpp/libsciexternal_objects_la-sci_percent_EObj_3_foo.lo \
	sci_gateway/cpp/libsciexternal_objects_la-sci_percent_EObj_4_foo.lo \
	sci_gateway/cpp/libsciexternal_objects_la-sci_percent_EObj_0.lo \
	sci_gateway/cpp/libsciexternal_objects_la-sci_percent_EObj_5.lo \
	sci_gateway/cpp/libsciexternal_objects_la-sci_percent_EObj_t.lo \
	sci_gateway/cpp/libsciexternal_objects_la-sci_doubleExclam_invoke_.lo \
	sci_gateway/cpp/libsciexternal_objects_la-sci_invoke_lu.lo \
	sci_gateway/cpp/libsciexternal_objects_la-sci_percent_EObj_disp.lo
am_libsciexternal_objects_la_OBJECTS = $(am__objects_3) \
	$(am__objects_4)
libsciexternal_objects_la_OBJECTS =  \
	$(am_libsciexternal_objects_la_OBJECTS)
libsciexternal_objects_la_LINK = $(LIBTOOL) $(AM_V_lt) --tag=CXX \
	$(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=link $(CXXLD) \
	$(AM_CXXFLAGS) $(CXXFLAGS) \
	$(libsciexternal_objects_la_LDFLAGS) $(LDFLAGS) -o $@
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)/modules/core/includes
depcomp = $(SHELL) $(top_srcdir)/config/depcomp
am__depfiles_maybe = depfiles
am__mv = mv -f
COMPILE = $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) \
	$(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS)
LTCOMPILE = $(LIBTOOL) $(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 = 
CXXCOMPILE = $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) \
	$(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS)
LTCXXCOMPILE = $(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) \
	$(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) \
	$(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) \
	$(AM_CXXFLAGS) $(CXXFLAGS)
AM_V_CXX = $(am__v_CXX_@AM_V@)
am__v_CXX_ = $(am__v_CXX_@AM_DEFAULT_V@)
am__v_CXX_0 = @echo "  CXX     " $@;
am__v_CXX_1 = 
CXXLD = $(CXX)
CXXLINK = $(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) \
	$(LIBTOOLFLAGS) --mode=link $(CXXLD) $(AM_CXXFLAGS) \
	$(CXXFLAGS) $(AM_LDFLAGS) $(LDFLAGS) -o $@
AM_V_CXXLD = $(am__v_CXXLD_@AM_V@)
am__v_CXXLD_ = $(am__v_CXXLD_@AM_DEFAULT_V@)
am__v_CXXLD_0 = @echo "  CXXLD   " $@;
am__v_CXXLD_1 = 
SOURCES = $(libsciexternal_objects_algo_la_SOURCES) \
	$(libsciexternal_objects_la_SOURCES)
DIST_SOURCES = $(libsciexternal_objects_algo_la_SOURCES) \
	$(libsciexternal_objects_la_SOURCES)
am__can_run_installinfo = \
  case $$AM_UPDATE_INFO_DIR in \
    n|no|NO) false;; \
    *) (install-info --version) >/dev/null 2>&1;; \
  esac
DATA = $(libsciexternal_objects_la_etc_DATA) \
	$(libsciexternal_objects_la_root_DATA) \
	$(libsciexternal_objects_la_sci_gateway_DATA)
HEADERS = $(libsciexternal_objects_la_include_HEADERS)
am__tagged_files = $(HEADERS) $(SOURCES) $(TAGS_FILES) $(LISP)
# Read a list of newline-separated strings from the standard input,
# and print each of them once, without duplicates.  Input order is
# *not* preserved.
am__uniquify_input = $(AWK) '\
  BEGIN { nonempty = 0; } \
  { items[$$0] = 1; nonempty = 1; } \
  END { if (nonempty) { for (i in items) print i; }; } \
'
# Make sure the list of sources is unique.  This is necessary because,
# e.g., the same source file might be shared among _SOURCES variables
# for different programs/libraries.
am__define_uniq_tagged_files = \
  list='$(am__tagged_files)'; \
  unique=`for i in $$list; do \
    if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \
  done | $(am__uniquify_input)`
ETAGS = etags
CTAGS = ctags
DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST)
ACLOCAL = @ACLOCAL@
ALL_LINGUAS = @ALL_LINGUAS@
ALL_LINGUAS_DOC = @ALL_LINGUAS_DOC@
AMTAR = @AMTAR@
AM_DEFAULT_VERBOSITY = @AM_DEFAULT_VERBOSITY@
ANT = @ANT@
ANTLR = @ANTLR@
AR = @AR@
ARPACK_LIBS = @ARPACK_LIBS@
ASM3 = @ASM3@
AUTOCONF = @AUTOCONF@
AUTOHEADER = @AUTOHEADER@
AUTOMAKE = @AUTOMAKE@
AVALON_FRAMEWORK = @AVALON_FRAMEWORK@
AWK = @AWK@
BATIK = @BATIK@
BLAS_LIBS = @BLAS_LIBS@
CC = @CC@
CCACHE = @CCACHE@
CCDEPMODE = @CCDEPMODE@
CFLAGS = @CFLAGS@
CHECKSTYLE = @CHECKSTYLE@
COBERTURA = @COBERTURA@
COMMONS_BEANUTILS = @COMMONS_BEANUTILS@
COMMONS_IO = @COMMONS_IO@
COMMONS_LOGGING = @COMMONS_LOGGING@
CPP = @CPP@
CPPFLAGS = @CPPFLAGS@
CURL_CFLAGS = @CURL_CFLAGS@
CURL_CONFIG = @CURL_CONFIG@
CURL_LIBS = @CURL_LIBS@
CURL_VERSION = @CURL_VERSION@
CXX = @CXX@
CXXCPP = @CXXCPP@
CXXDEPMODE = @CXXDEPMODE@
CXXFLAGS = @CXXFLAGS@
CYGPATH_W = @CYGPATH_W@
DEFS = @DEFS@
DEMOTOOLS_ENABLE = @DEMOTOOLS_ENABLE@
DEPDIR = @DEPDIR@
DLLTOOL = @DLLTOOL@
DOCBOOK_ROOT = @DOCBOOK_ROOT@
DOXYGEN_BIN = @DOXYGEN_BIN@
DSYMUTIL = @DSYMUTIL@
DUMPBIN = @DUMPBIN@
ECHO_C = @ECHO_C@
ECHO_N = @ECHO_N@
ECHO_T = @ECHO_T@
ECJ = @ECJ@
EGREP = @EGREP@
EXEEXT = @EXEEXT@
F77 = @F77@
FFLAGS = @FFLAGS@
FFTW3_LIB = @FFTW3_LIB@
FFTW_ENABLE = @FFTW_ENABLE@
FGREP = @FGREP@
FLEXDOCK = @FLEXDOCK@
FLIBS = @FLIBS@
FOP = @FOP@
FREEHEP_GRAPHICS2D = @FREEHEP_GRAPHICS2D@
FREEHEP_GRAPHICSIO = @FREEHEP_GRAPHICSIO@
FREEHEP_GRAPHICSIO_EMF = @FREEHEP_GRAPHICSIO_EMF@
FREEHEP_IO = @FREEHEP_IO@
FREEHEP_UTIL = @FREEHEP_UTIL@
GENHTML = @GENHTML@
GETTEXT_MACRO_VERSION = @GETTEXT_MACRO_VERSION@
GIWS_BIN = @GIWS_BIN@
GLUEGEN2_RT = @GLUEGEN2_RT@
GMSGFMT = @GMSGFMT@
GMSGFMT_015 = @GMSGFMT_015@
GRAPHICS_ENABLE = @GRAPHICS_ENABLE@
GREP = @GREP@
GUI_ENABLE = @GUI_ENABLE@
HDF5_CFLAGS = @HDF5_CFLAGS@
HDF5_LIBS = @HDF5_LIBS@
HELP_ENABLE = @HELP_ENABLE@
INSTALL = @INSTALL@
INSTALL_DATA = @INSTALL_DATA@
INSTALL_PROGRAM = @INSTALL_PROGRAM@
INSTALL_SCRIPT = @INSTALL_SCRIPT@
INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@
INTLLIBS = @INTLLIBS@
INTL_MACOSX_LIBS = @INTL_MACOSX_LIBS@
JAR = @JAR@
JAVA = @JAVA@
JAVAC = @JAVAC@
JAVAC_DEBUG = @JAVAC_DEBUG@
JAVADOC = @JAVADOC@
JAVAH = @JAVAH@
JAVASCI_ENABLE = @JAVASCI_ENABLE@
JAVA_ENABLE = @JAVA_ENABLE@
JAVA_G = @JAVA_G@
JAVA_HOME = @JAVA_HOME@
JAVA_JNI_INCLUDE = @JAVA_JNI_INCLUDE@
JAVA_JNI_LIBS = @JAVA_JNI_LIBS@
JDB = @JDB@
JEUCLID_CORE = @JEUCLID_CORE@
JGRAPHX = @JGRAPHX@
JHALL = @JHALL@
JLATEXMATH = @JLATEXMATH@
JLATEXMATH_FOP = @JLATEXMATH_FOP@
JOGL2 = @JOGL2@
JROSETTA_API = @JROSETTA_API@
JROSETTA_ENGINE = @JROSETTA_ENGINE@
JUNIT4 = @JUNIT4@
LAPACK_LIBS = @LAPACK_LIBS@
LCOV = @LCOV@
LD = @LD@
LDFLAGS = @LDFLAGS@
LIBICONV = @LIBICONV@
LIBINTL = @LIBINTL@
LIBM = @LIBM@
LIBOBJS = @LIBOBJS@
LIBS = @LIBS@
LIBTOOL = @LIBTOOL@
LIPO = @LIPO@
LN_S = @LN_S@
LOGGING_LEVEL = @LOGGING_LEVEL@
LOOKS = @LOOKS@
LTLIBICONV = @LTLIBICONV@
LTLIBINTL = @LTLIBINTL@
LTLIBOBJS = @LTLIBOBJS@
MAINT = @MAINT@
MAKEINFO = @MAKEINFO@
MANIFEST_TOOL = @MANIFEST_TOOL@
MATIO_CFLAGS = @MATIO_CFLAGS@
MATIO_ENABLE = @MATIO_ENABLE@
MATIO_LIBS = @MATIO_LIBS@
MKDIR_P = @MKDIR_P@
MPI_ENABLE = @MPI_ENABLE@
MSGCAT = @MSGCAT@
MSGFMT = @MSGFMT@
MSGFMT_015 = @MSGFMT_015@
MSGMERGE = @MSGMERGE@
NM = @NM@
NMEDIT = @NMEDIT@
OBJDUMP = @OBJDUMP@
OBJEXT = @OBJEXT@
OCAMLC = @OCAMLC@
OCAMLDEP = @OCAMLDEP@
OCAMLLEX = @OCAMLLEX@
OCAMLOPT = @OCAMLOPT@
OCAMLYACC = @OCAMLYACC@
OPENMPI_CC = @OPENMPI_CC@
OPENMPI_CFLAGS = @OPENMPI_CFLAGS@
OPENMPI_CXX = @OPENMPI_CXX@
OPENMPI_CXXFLAGS = @OPENMPI_CXXFLAGS@
OPENMPI_LIBS = @OPENMPI_LIBS@
OPENMP_CFLAGS = @OPENMP_CFLAGS@
OPENMP_CXXFLAGS = @OPENMP_CXXFLAGS@
OPENMP_ENABLE = @OPENMP_ENABLE@
OPENMP_LIBS = @OPENMP_LIBS@
OTOOL = @OTOOL@
OTOOL64 = @OTOOL64@
PACKAGE = @PACKAGE@
PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@
PACKAGE_NAME = @PACKAGE_NAME@
PACKAGE_STRING = @PACKAGE_STRING@
PACKAGE_TARNAME = @PACKAGE_TARNAME@
PACKAGE_URL = @PACKAGE_URL@
PACKAGE_VERSION = @PACKAGE_VERSION@
PATH_SEPARATOR = @PATH_SEPARATOR@
PCRE_CFLAGS = @PCRE_CFLAGS@
PCRE_CONFIG = @PCRE_CONFIG@
PCRE_LIBS = @PCRE_LIBS@
PCRE_VERSION = @PCRE_VERSION@
PKG_CONFIG = @PKG_CONFIG@
POSUB = @POSUB@
POW_LIB = @POW_LIB@
PYTHON = @PYTHON@
RANLIB = @RANLIB@
RELOCATABLE = @RELOCATABLE@
RT_LIB = @RT_LIB@
SAXON = @SAXON@
SCILAB_BINARY_VERSION = @SCILAB_BINARY_VERSION@
SCILAB_LIBRARY_VERSION = @SCILAB_LIBRARY_VERSION@
SCILAB_VERSION_MAINTENANCE = @SCILAB_VERSION_MAINTENANCE@
SCILAB_VERSION_MAJOR = @SCILAB_VERSION_MAJOR@
SCILAB_VERSION_MINOR = @SCILAB_VERSION_MINOR@
SCIRENDERER = @SCIRENDERER@
SCIRENDERER_CP = @SCIRENDERER_CP@
SCI_CFLAGS = @SCI_CFLAGS@
SCI_CXXFLAGS = @SCI_CXXFLAGS@
SCI_FFLAGS = @SCI_FFLAGS@
SCI_LDFLAGS = @SCI_LDFLAGS@
SED = @SED@
SET_MAKE = @SET_MAKE@
SET_RELOCATABLE = @SET_RELOCATABLE@
SHELL = @SHELL@
SKINLF = @SKINLF@
SPLINT = @SPLINT@
STRIP = @STRIP@
SWIG_BIN = @SWIG_BIN@
SWIG_JAVA = @SWIG_JAVA@
SWIG_RUNTIME_LIBS_DIR = @SWIG_RUNTIME_LIBS_DIR@
SWIG_SCILAB = @SWIG_SCILAB@
TCLTK_LIBS = @TCLTK_LIBS@
TCL_INC_PATH = @TCL_INC_PATH@
TK_INC_PATH = @TK_INC_PATH@
UMFPACK_CFLAGS = @UMFPACK_CFLAGS@
UMFPACK_ENABLE = @UMFPACK_ENABLE@
UMFPACK_LIB = @UMFPACK_LIB@
USE_NLS = @USE_NLS@
VERSION = @VERSION@
WITH_OCAML = @WITH_OCAML@
WITH_TKSCI = @WITH_TKSCI@
XCOS_ENABLE = @XCOS_ENABLE@
XGETTEXT = @XGETTEXT@
XGETTEXT_015 = @XGETTEXT_015@
XGETTEXT_EXTRA_OPTIONS = @XGETTEXT_EXTRA_OPTIONS@
XMKMF = @XMKMF@
XMLGRAPHICS_COMMONS = @XMLGRAPHICS_COMMONS@
XML_APIS_EXT = @XML_APIS_EXT@
XML_CONFIG = @XML_CONFIG@
XML_FLAGS = @XML_FLAGS@
XML_LIBS = @XML_LIBS@
XML_VERSION = @XML_VERSION@
X_CFLAGS = @X_CFLAGS@
X_EXTRA_LIBS = @X_EXTRA_LIBS@
X_LIBS = @X_LIBS@
X_PRE_LIBS = @X_PRE_LIBS@
abs_builddir = @abs_builddir@
abs_srcdir = @abs_srcdir@
abs_top_builddir = @abs_top_builddir@
abs_top_srcdir = @abs_top_srcdir@
ac_ct_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@
cxx_present = @cxx_present@
datadir = @datadir@
datarootdir = @datarootdir@
docdir = @docdir@
dvidir = @dvidir@
exec_prefix = @exec_prefix@
host = @host@
host_alias = @host_alias@
host_cpu = @host_cpu@
host_os = @host_os@
host_vendor = @host_vendor@
htmldir = @htmldir@
includedir = @includedir@
infodir = @infodir@
install_sh = @install_sh@
libdir = @libdir@
libexecdir = @libexecdir@
localedir = @localedir@
localstatedir = @localstatedir@
mandir = @mandir@
mkdir_p = @mkdir_p@
oldincludedir = @oldincludedir@
pdfdir = @pdfdir@
prefix = @prefix@
program_transform_name = @program_transform_name@
psdir = @psdir@
sbindir = @sbindir@
sharedstatedir = @sharedstatedir@
srcdir = @srcdir@
sysconfdir = @sysconfdir@
target_alias = @target_alias@
top_build_prefix = @top_build_prefix@
top_builddir = @top_builddir@
top_srcdir = @top_srcdir@

#### Target ######
modulename = external_objects

#### external_objects : Conf files ####
libsciexternal_objects_la_rootdir = $(mydatadir)
libsciexternal_objects_la_root_DATA = license.txt 

#### external_objects : init scripts & configuration files ####
libsciexternal_objects_la_etcdir = $(mydatadir)/etc
libsciexternal_objects_la_etc_DATA = etc/external_objects.quit \
									 etc/external_objects.start


# Where all the Scilab stuff is installed (macros, help, ...)
mydatadir = $(pkgdatadir)/modules/$(modulename)

# Set AM_* SCI detected settings
AM_CPPFLAGS = $(SCI_CPPFLAGS)
AM_CFLAGS = $(SCI_CFLAGS)
AM_CXXFLAGS = $(SCI_CXXFLAGS)
# append includes to AM_FFLAGS to manage fortran includes
AM_FFLAGS = $(SCI_FFLAGS) -I$(top_srcdir)/modules/core/includes/

# Tag shared libraries with the Scilab version
AM_LDFLAGS = $(SCI_LDFLAGS) -version-number $(SCILAB_LIBRARY_VERSION)

# splint options
SPLINT_OPTIONS = -weak -booltype BOOL

########################### JAVA ######################################
#### We are delegating java compilation to ant... Thanks to that
#### the procedure will be the same with Microsoft Windows (C)
#### and Linux/Unix
#######################################################################
TARGETS_ALL = $(am__append_1)

################ MACROS ######################
# Rule to build a macro
# NOT USED  AT THE MOMENT
SUFFIXES = .sci 

########### INSTALL DOCUMENTATION ###################

# Install documentation files into the right target
# We do not use the automake mechanism (libxxxx_la_help_fr_DATA) because
# automake needs the html files to be present which is not the case when
# we are building Scilab

# Where it should be installed
pkgdocdir = $(mydatadir)

# What is the mask of the help source
DOCMASKXML = *.xml

# What is the mask of the MathML sources
DOCMASKMML = *.mml

########### INSTALL DATA ###################
# Install macros, help & demos
# Where it should be installed
pkgmacrosdir = $(mydatadir)
# Which directory we process
MACRODIRS = macros/
# Mask of the Scilab sources macros
MACROMASK = *.sci
# Mask of the Scilab executable sources macros
MACROBUILDMASK = *.sce
# Mask of the Scilab compiled macros
MACROBINMASK = *.bin
# List of the standard directory for tests
TESTS_DIR = tests/benchmarks tests/nonreg_tests tests/unit_tests tests/java
# Where the demos should be installed
pkgdemosdir = $(mydatadir)
# List of the standard directory for demos
DEMOS_DIR = demos
# List of the standard directory for examples
EXAMPLES_DIR = examples
# Where to export JAVA archives (.jar)
JARDIR = jar/
# JAR files mask
JARMASK = *.jar
# Chapter file 
HELP_CHAPTERDIR = help/
HELP_CHAPTERFILE = addchapter.sce
HELP_CHAPTERLANG = en_US fr_FR pt_BR
EXTERNAL_OBJECTS_JNI_SOURCES = 
EXTERNAL_OBJECTS_C_SOURCES = 
EXTERNAL_OBJECTS_CPP_SOURCES = src/cpp/ScilabEnvironments.cpp \
			       src/cpp/ScilabObjects.cpp \
			       src/cpp/OptionsHelper.cpp \
			       src/cpp/addToClasspath.cpp \
			       src/cpp/getClasspath.cpp \
			       src/cpp/getsetOptions.cpp \
			       src/cpp/getEnvironmentInfos.cpp \
			       src/cpp/array.cpp \
			       src/cpp/operation.cpp \
			       src/cpp/cast.cpp \
			       src/cpp/compile.cpp \
			       src/cpp/convMatrixMethod.cpp \
			       src/cpp/deff.cpp \
			       src/cpp/display.cpp \
			       src/cpp/doubleExclam_invoke.cpp \
			       src/cpp/classExtract.cpp \
			       src/cpp/objectExtract.cpp \
			       src/cpp/objectInsert.cpp \
			       src/cpp/objectPrint.cpp \
			       src/cpp/exists.cpp \
			       src/cpp/getClassName.cpp \
			       src/cpp/getEnvironmentName.cpp \
			       src/cpp/getField.cpp \
			       src/cpp/getFields.cpp \
			       src/cpp/getMethods.cpp \
			       src/cpp/getRepresentation.cpp \
			       src/cpp/import.cpp \
			       src/cpp/invoke.cpp \
			       src/cpp/invoke_asref.cpp \
			       src/cpp/invoke_lu.cpp \
			       src/cpp/trace.cpp \
			       src/cpp/newInstance.cpp \
			       src/cpp/remove.cpp \
			       src/cpp/setField.cpp \
			       src/cpp/evalString.cpp \
			       src/cpp/addNamedVariable.cpp \
			       src/cpp/getNamedVariable.cpp \
			       src/cpp/unwrap.cpp \
			       src/cpp/wrap.cpp \
			       src/cpp/unwrapremove.cpp \
			       src/cpp/wrapAsRef.cpp \
			       src/cpp/invoker.cpp \
			       src/cpp/getEnvId.cpp \
			       src/cpp/ScilabOptionsSetter.cpp \
			       src/cpp/ScilabAutoCleaner.cpp \
			       src/cpp/ExternalObjectsFunction.cpp \
			       src/cpp/wrapInFloat.cpp

GATEWAY_C_SOURCES = sci_gateway/c/gw_external_objects.c
GATEWAY_CPP_SOURCES = sci_gateway/cpp/sci_percent_EObj_e.cpp \
	sci_gateway/cpp/sci_percent_EObj_p.cpp \
	sci_gateway/cpp/sci_percent_foo_i_EObj.cpp \
	sci_gateway/cpp/sci_percent_EClass_e.cpp \
	sci_gateway/cpp/sci_percent_EObj_a_foo.cpp \
	sci_gateway/cpp/sci_percent_EObj_d_foo.cpp \
	sci_gateway/cpp/sci_percent_EObj_g_foo.cpp \
	sci_gateway/cpp/sci_percent_EObj_h_foo.cpp \
	sci_gateway/cpp/sci_percent_EObj_j_foo.cpp \
	sci_gateway/cpp/sci_percent_EObj_k_foo.cpp \
	sci_gateway/cpp/sci_percent_EObj_l_foo.cpp \
	sci_gateway/cpp/sci_percent_EObj_m_foo.cpp \
	sci_gateway/cpp/sci_percent_EObj_n_foo.cpp \
	sci_gateway/cpp/sci_percent_EObj_o_foo.cpp \
	sci_gateway/cpp/sci_percent_EObj_p_foo.cpp \
	sci_gateway/cpp/sci_percent_EObj_q_foo.cpp \
	sci_gateway/cpp/sci_percent_EObj_r_foo.cpp \
	sci_gateway/cpp/sci_percent_EObj_s_foo.cpp \
	sci_gateway/cpp/sci_percent_EObj_x_foo.cpp \
	sci_gateway/cpp/sci_percent_EObj_y_foo.cpp \
	sci_gateway/cpp/sci_percent_EObj_z_foo.cpp \
	sci_gateway/cpp/sci_percent_EObj_1_foo.cpp \
	sci_gateway/cpp/sci_percent_EObj_2_foo.cpp \
	sci_gateway/cpp/sci_percent_EObj_3_foo.cpp \
	sci_gateway/cpp/sci_percent_EObj_4_foo.cpp \
	sci_gateway/cpp/sci_percent_EObj_0.cpp \
	sci_gateway/cpp/sci_percent_EObj_5.cpp \
	sci_gateway/cpp/sci_percent_EObj_t.cpp \
	sci_gateway/cpp/sci_doubleExclam_invoke_.cpp \
	sci_gateway/cpp/sci_invoke_lu.cpp \
	sci_gateway/cpp/sci_percent_EObj_disp.cpp

libsciexternal_objects_la_CFLAGS = -I$(srcdir)/includes/ \
             -I$(top_srcdir)/modules/core/includes \
             -I$(top_srcdir)/modules/api_scilab/includes \
             -I$(top_srcdir)/modules/output_stream/includes \
             -I$(top_srcdir)/modules/string/includes \
             -I$(top_srcdir)/modules/fileio/includes

libsciexternal_objects_la_CPPFLAGS = -I$(srcdir)/includes/ \
    -I$(srcdir)/src/cpp/ \
    -I$(top_srcdir)/modules/localization/includes \
    -I$(top_srcdir)/modules/api_scilab/includes \
    -I$(top_srcdir)/modules/output_stream/includes \
    -I$(top_srcdir)/modules/string/includes \
    -I$(top_srcdir)/modules/fileio/includes \
    -I$(top_srcdir)/modules/core/src/c

pkglib_LTLIBRARIES = libsciexternal_objects.la 
noinst_LTLIBRARIES = libsciexternal_objects-algo.la 
libsciexternal_objects_la_LDFLAGS = -version-number $(SCILAB_LIBRARY_VERSION) $(LD_FLAGS)
libsciexternal_objects_algo_la_SOURCES = $(EXTERNAL_OBJECTS_C_SOURCES) $(EXTERNAL_OBJECTS_JNI_SOURCES) $(EXTERNAL_OBJECTS_CPP_SOURCES)
libsciexternal_objects_la_SOURCES = $(GATEWAY_C_SOURCES) $(GATEWAY_CPP_SOURCES) 
libsciexternal_objects_algo_la_CFLAGS = $(libsciexternal_objects_la_CFLAGS)
libsciexternal_objects_algo_la_CPPFLAGS = $(libsciexternal_objects_la_CPPFLAGS)
libsciexternal_objects_la_LIBADD = libsciexternal_objects-algo.la $(X_LIBS) $(X_EXTRA_LIBS)

# For the code check (splint)
CHECK_SRC = $(EXTERNAL_OBJECTS_C_SOURCES) $(GATEWAY_C_SOURCES)
INCLUDE_FLAGS = $(libsciexternal_objects_la_CFLAGS)

#### external_objects : gateway declaration ####
libsciexternal_objects_la_sci_gatewaydir = $(mydatadir)/sci_gateway
libsciexternal_objects_la_sci_gateway_DATA = sci_gateway/external_objects_gateway.xml

#### external_objects : include files ####
libsciexternal_objects_la_includedir = $(pkgincludedir)
libsciexternal_objects_la_include_HEADERS = includes/ExternalObjects.h \
includes/dynlib_external_objects_scilab.h \
includes/OptionsHelper.hxx \
includes/ScilabAbstractEnvironmentException.hxx \
includes/ScilabAbstractInvoker.hxx \
includes/ScilabAbstractOptionsSetter.hxx \
includes/ScilabEnvironments.hxx \
includes/ScilabGatewayOptions.hxx \
includes/ScilabOptionsSetter.hxx \
includes/ScilabAbstractEnvironment.hxx \
includes/ScilabAbstractEnvironmentWrapper.hxx \
includes/ScilabAbstractMemoryAllocator.hxx \
includes/ScilabAutoCleaner.hxx \
includes/ScilabGateway.hxx \
includes/ScilabObjects.hxx \
includes/ScilabStream.hxx

all: all-am

.SUFFIXES:
.SUFFIXES: .sci .bin .c .cpp .lo .o .obj
$(srcdir)/Makefile.in: @MAINTAINER_MODE_TRUE@ $(srcdir)/Makefile.am $(top_srcdir)/Makefile.incl.am $(am__configure_deps)
	@for dep in $?; do \
	  case '$(am__configure_deps)' in \
	    *$$dep*) \
	      ( cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh ) \
	        && { if test -f $@; then exit 0; else break; fi; }; \
	      exit 1;; \
	  esac; \
	done; \
	echo ' cd $(top_srcdir) && $(AUTOMAKE) --foreign modules/external_objects/Makefile'; \
	$(am__cd) $(top_srcdir) && \
	  $(AUTOMAKE) --foreign modules/external_objects/Makefile
.PRECIOUS: Makefile
Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status
	@case '$?' in \
	  *config.status*) \
	    cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \
	  *) \
	    echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \
	    cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \
	esac;
$(top_srcdir)/Makefile.incl.am:

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

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}; \
	}

install-pkglibLTLIBRARIES: $(pkglib_LTLIBRARIES)
	@$(NORMAL_INSTALL)
	@list='$(pkglib_LTLIBRARIES)'; test -n "$(pkglibdir)" || list=; \
	list2=; for p in $$list; do \
	  if test -f $$p; then \
	    list2="$$list2 $$p"; \
	  else :; fi; \
	done; \
	test -z "$$list2" || { \
	  echo " $(MKDIR_P) '$(DESTDIR)$(pkglibdir)'"; \
	  $(MKDIR_P) "$(DESTDIR)$(pkglibdir)" || exit 1; \
	  echo " $(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=install $(INSTALL) $(INSTALL_STRIP_FLAG) $$list2 '$(DESTDIR)$(pkglibdir)'"; \
	  $(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=install $(INSTALL) $(INSTALL_STRIP_FLAG) $$list2 "$(DESTDIR)$(pkglibdir)"; \
	}

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

clean-pkglibLTLIBRARIES:
	-test -z "$(pkglib_LTLIBRARIES)" || rm -f $(pkglib_LTLIBRARIES)
	@list='$(pkglib_LTLIBRARIES)'; \
	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}; \
	}
src/cpp/$(am__dirstamp):
	@$(MKDIR_P) src/cpp
	@: > src/cpp/$(am__dirstamp)
src/cpp/$(DEPDIR)/$(am__dirstamp):
	@$(MKDIR_P) src/cpp/$(DEPDIR)
	@: > src/cpp/$(DEPDIR)/$(am__dirstamp)
src/cpp/libsciexternal_objects_algo_la-ScilabEnvironments.lo:  \
	src/cpp/$(am__dirstamp) src/cpp/$(DEPDIR)/$(am__dirstamp)
src/cpp/libsciexternal_objects_algo_la-ScilabObjects.lo:  \
	src/cpp/$(am__dirstamp) src/cpp/$(DEPDIR)/$(am__dirstamp)
src/cpp/libsciexternal_objects_algo_la-OptionsHelper.lo:  \
	src/cpp/$(am__dirstamp) src/cpp/$(DEPDIR)/$(am__dirstamp)
src/cpp/libsciexternal_objects_algo_la-addToClasspath.lo:  \
	src/cpp/$(am__dirstamp) src/cpp/$(DEPDIR)/$(am__dirstamp)
src/cpp/libsciexternal_objects_algo_la-getClasspath.lo:  \
	src/cpp/$(am__dirstamp) src/cpp/$(DEPDIR)/$(am__dirstamp)
src/cpp/libsciexternal_objects_algo_la-getsetOptions.lo:  \
	src/cpp/$(am__dirstamp) src/cpp/$(DEPDIR)/$(am__dirstamp)
src/cpp/libsciexternal_objects_algo_la-getEnvironmentInfos.lo:  \
	src/cpp/$(am__dirstamp) src/cpp/$(DEPDIR)/$(am__dirstamp)
src/cpp/libsciexternal_objects_algo_la-array.lo:  \
	src/cpp/$(am__dirstamp) src/cpp/$(DEPDIR)/$(am__dirstamp)
src/cpp/libsciexternal_objects_algo_la-operation.lo:  \
	src/cpp/$(am__dirstamp) src/cpp/$(DEPDIR)/$(am__dirstamp)
src/cpp/libsciexternal_objects_algo_la-cast.lo:  \
	src/cpp/$(am__dirstamp) src/cpp/$(DEPDIR)/$(am__dirstamp)
src/cpp/libsciexternal_objects_algo_la-compile.lo:  \
	src/cpp/$(am__dirstamp) src/cpp/$(DEPDIR)/$(am__dirstamp)
src/cpp/libsciexternal_objects_algo_la-convMatrixMethod.lo:  \
	src/cpp/$(am__dirstamp) src/cpp/$(DEPDIR)/$(am__dirstamp)
src/cpp/libsciexternal_objects_algo_la-deff.lo:  \
	src/cpp/$(am__dirstamp) src/cpp/$(DEPDIR)/$(am__dirstamp)
src/cpp/libsciexternal_objects_algo_la-display.lo:  \
	src/cpp/$(am__dirstamp) src/cpp/$(DEPDIR)/$(am__dirstamp)
src/cpp/libsciexternal_objects_algo_la-doubleExclam_invoke.lo:  \
	src/cpp/$(am__dirstamp) src/cpp/$(DEPDIR)/$(am__dirstamp)
src/cpp/libsciexternal_objects_algo_la-classExtract.lo:  \
	src/cpp/$(am__dirstamp) src/cpp/$(DEPDIR)/$(am__dirstamp)
src/cpp/libsciexternal_objects_algo_la-objectExtract.lo:  \
	src/cpp/$(am__dirstamp) src/cpp/$(DEPDIR)/$(am__dirstamp)
src/cpp/libsciexternal_objects_algo_la-objectInsert.lo:  \
	src/cpp/$(am__dirstamp) src/cpp/$(DEPDIR)/$(am__dirstamp)
src/cpp/libsciexternal_objects_algo_la-objectPrint.lo:  \
	src/cpp/$(am__dirstamp) src/cpp/$(DEPDIR)/$(am__dirstamp)
src/cpp/libsciexternal_objects_algo_la-exists.lo:  \
	src/cpp/$(am__dirstamp) src/cpp/$(DEPDIR)/$(am__dirstamp)
src/cpp/libsciexternal_objects_algo_la-getClassName.lo:  \
	src/cpp/$(am__dirstamp) src/cpp/$(DEPDIR)/$(am__dirstamp)
src/cpp/libsciexternal_objects_algo_la-getEnvironmentName.lo:  \
	src/cpp/$(am__dirstamp) src/cpp/$(DEPDIR)/$(am__dirstamp)
src/cpp/libsciexternal_objects_algo_la-getField.lo:  \
	src/cpp/$(am__dirstamp) src/cpp/$(DEPDIR)/$(am__dirstamp)
src/cpp/libsciexternal_objects_algo_la-getFields.lo:  \
	src/cpp/$(am__dirstamp) src/cpp/$(DEPDIR)/$(am__dirstamp)
src/cpp/libsciexternal_objects_algo_la-getMethods.lo:  \
	src/cpp/$(am__dirstamp) src/cpp/$(DEPDIR)/$(am__dirstamp)
src/cpp/libsciexternal_objects_algo_la-getRepresentation.lo:  \
	src/cpp/$(am__dirstamp) src/cpp/$(DEPDIR)/$(am__dirstamp)
src/cpp/libsciexternal_objects_algo_la-import.lo:  \
	src/cpp/$(am__dirstamp) src/cpp/$(DEPDIR)/$(am__dirstamp)
src/cpp/libsciexternal_objects_algo_la-invoke.lo:  \
	src/cpp/$(am__dirstamp) src/cpp/$(DEPDIR)/$(am__dirstamp)
src/cpp/libsciexternal_objects_algo_la-invoke_asref.lo:  \
	src/cpp/$(am__dirstamp) src/cpp/$(DEPDIR)/$(am__dirstamp)
src/cpp/libsciexternal_objects_algo_la-invoke_lu.lo:  \
	src/cpp/$(am__dirstamp) src/cpp/$(DEPDIR)/$(am__dirstamp)
src/cpp/libsciexternal_objects_algo_la-trace.lo:  \
	src/cpp/$(am__dirstamp) src/cpp/$(DEPDIR)/$(am__dirstamp)
src/cpp/libsciexternal_objects_algo_la-newInstance.lo:  \
	src/cpp/$(am__dirstamp) src/cpp/$(DEPDIR)/$(am__dirstamp)
src/cpp/libsciexternal_objects_algo_la-remove.lo:  \
	src/cpp/$(am__dirstamp) src/cpp/$(DEPDIR)/$(am__dirstamp)
src/cpp/libsciexternal_objects_algo_la-setField.lo:  \
	src/cpp/$(am__dirstamp) src/cpp/$(DEPDIR)/$(am__dirstamp)
src/cpp/libsciexternal_objects_algo_la-evalString.lo:  \
	src/cpp/$(am__dirstamp) src/cpp/$(DEPDIR)/$(am__dirstamp)
src/cpp/libsciexternal_objects_algo_la-addNamedVariable.lo:  \
	src/cpp/$(am__dirstamp) src/cpp/$(DEPDIR)/$(am__dirstamp)
src/cpp/libsciexternal_objects_algo_la-getNamedVariable.lo:  \
	src/cpp/$(am__dirstamp) src/cpp/$(DEPDIR)/$(am__dirstamp)
src/cpp/libsciexternal_objects_algo_la-unwrap.lo:  \
	src/cpp/$(am__dirstamp) src/cpp/$(DEPDIR)/$(am__dirstamp)
src/cpp/libsciexternal_objects_algo_la-wrap.lo:  \
	src/cpp/$(am__dirstamp) src/cpp/$(DEPDIR)/$(am__dirstamp)
src/cpp/libsciexternal_objects_algo_la-unwrapremove.lo:  \
	src/cpp/$(am__dirstamp) src/cpp/$(DEPDIR)/$(am__dirstamp)
src/cpp/libsciexternal_objects_algo_la-wrapAsRef.lo:  \
	src/cpp/$(am__dirstamp) src/cpp/$(DEPDIR)/$(am__dirstamp)
src/cpp/libsciexternal_objects_algo_la-invoker.lo:  \
	src/cpp/$(am__dirstamp) src/cpp/$(DEPDIR)/$(am__dirstamp)
src/cpp/libsciexternal_objects_algo_la-getEnvId.lo:  \
	src/cpp/$(am__dirstamp) src/cpp/$(DEPDIR)/$(am__dirstamp)
src/cpp/libsciexternal_objects_algo_la-ScilabOptionsSetter.lo:  \
	src/cpp/$(am__dirstamp) src/cpp/$(DEPDIR)/$(am__dirstamp)
src/cpp/libsciexternal_objects_algo_la-ScilabAutoCleaner.lo:  \
	src/cpp/$(am__dirstamp) src/cpp/$(DEPDIR)/$(am__dirstamp)
src/cpp/libsciexternal_objects_algo_la-ExternalObjectsFunction.lo:  \
	src/cpp/$(am__dirstamp) src/cpp/$(DEPDIR)/$(am__dirstamp)
src/cpp/libsciexternal_objects_algo_la-wrapInFloat.lo:  \
	src/cpp/$(am__dirstamp) src/cpp/$(DEPDIR)/$(am__dirstamp)

libsciexternal_objects-algo.la: $(libsciexternal_objects_algo_la_OBJECTS) $(libsciexternal_objects_algo_la_DEPENDENCIES) $(EXTRA_libsciexternal_objects_algo_la_DEPENDENCIES) 
	$(AM_V_CXXLD)$(CXXLINK)  $(libsciexternal_objects_algo_la_OBJECTS) $(libsciexternal_objects_algo_la_LIBADD) $(LIBS)
sci_gateway/c/$(am__dirstamp):
	@$(MKDIR_P) sci_gateway/c
	@: > sci_gateway/c/$(am__dirstamp)
sci_gateway/c/$(DEPDIR)/$(am__dirstamp):
	@$(MKDIR_P) sci_gateway/c/$(DEPDIR)
	@: > sci_gateway/c/$(DEPDIR)/$(am__dirstamp)
sci_gateway/c/libsciexternal_objects_la-gw_external_objects.lo:  \
	sci_gateway/c/$(am__dirstamp) \
	sci_gateway/c/$(DEPDIR)/$(am__dirstamp)
sci_gateway/cpp/$(am__dirstamp):
	@$(MKDIR_P) sci_gateway/cpp
	@: > sci_gateway/cpp/$(am__dirstamp)
sci_gateway/cpp/$(DEPDIR)/$(am__dirstamp):
	@$(MKDIR_P) sci_gateway/cpp/$(DEPDIR)
	@: > sci_gateway/cpp/$(DEPDIR)/$(am__dirstamp)
sci_gateway/cpp/libsciexternal_objects_la-sci_percent_EObj_e.lo:  \
	sci_gateway/cpp/$(am__dirstamp) \
	sci_gateway/cpp/$(DEPDIR)/$(am__dirstamp)
sci_gateway/cpp/libsciexternal_objects_la-sci_percent_EObj_p.lo:  \
	sci_gateway/cpp/$(am__dirstamp) \
	sci_gateway/cpp/$(DEPDIR)/$(am__dirstamp)
sci_gateway/cpp/libsciexternal_objects_la-sci_percent_foo_i_EObj.lo:  \
	sci_gateway/cpp/$(am__dirstamp) \
	sci_gateway/cpp/$(DEPDIR)/$(am__dirstamp)
sci_gateway/cpp/libsciexternal_objects_la-sci_percent_EClass_e.lo:  \
	sci_gateway/cpp/$(am__dirstamp) \
	sci_gateway/cpp/$(DEPDIR)/$(am__dirstamp)
sci_gateway/cpp/libsciexternal_objects_la-sci_percent_EObj_a_foo.lo:  \
	sci_gateway/cpp/$(am__dirstamp) \
	sci_gateway/cpp/$(DEPDIR)/$(am__dirstamp)
sci_gateway/cpp/libsciexternal_objects_la-sci_percent_EObj_d_foo.lo:  \
	sci_gateway/cpp/$(am__dirstamp) \
	sci_gateway/cpp/$(DEPDIR)/$(am__dirstamp)
sci_gateway/cpp/libsciexternal_objects_la-sci_percent_EObj_g_foo.lo:  \
	sci_gateway/cpp/$(am__dirstamp) \
	sci_gateway/cpp/$(DEPDIR)/$(am__dirstamp)
sci_gateway/cpp/libsciexternal_objects_la-sci_percent_EObj_h_foo.lo:  \
	sci_gateway/cpp/$(am__dirstamp) \
	sci_gateway/cpp/$(DEPDIR)/$(am__dirstamp)
sci_gateway/cpp/libsciexternal_objects_la-sci_percent_EObj_j_foo.lo:  \
	sci_gateway/cpp/$(am__dirstamp) \
	sci_gateway/cpp/$(DEPDIR)/$(am__dirstamp)
sci_gateway/cpp/libsciexternal_objects_la-sci_percent_EObj_k_foo.lo:  \
	sci_gateway/cpp/$(am__dirstamp) \
	sci_gateway/cpp/$(DEPDIR)/$(am__dirstamp)
sci_gateway/cpp/libsciexternal_objects_la-sci_percent_EObj_l_foo.lo:  \
	sci_gateway/cpp/$(am__dirstamp) \
	sci_gateway/cpp/$(DEPDIR)/$(am__dirstamp)
sci_gateway/cpp/libsciexternal_objects_la-sci_percent_EObj_m_foo.lo:  \
	sci_gateway/cpp/$(am__dirstamp) \
	sci_gateway/cpp/$(DEPDIR)/$(am__dirstamp)
sci_gateway/cpp/libsciexternal_objects_la-sci_percent_EObj_n_foo.lo:  \
	sci_gateway/cpp/$(am__dirstamp) \
	sci_gateway/cpp/$(DEPDIR)/$(am__dirstamp)
sci_gateway/cpp/libsciexternal_objects_la-sci_percent_EObj_o_foo.lo:  \
	sci_gateway/cpp/$(am__dirstamp) \
	sci_gateway/cpp/$(DEPDIR)/$(am__dirstamp)
sci_gateway/cpp/libsciexternal_objects_la-sci_percent_EObj_p_foo.lo:  \
	sci_gateway/cpp/$(am__dirstamp) \
	sci_gateway/cpp/$(DEPDIR)/$(am__dirstamp)
sci_gateway/cpp/libsciexternal_objects_la-sci_percent_EObj_q_foo.lo:  \
	sci_gateway/cpp/$(am__dirstamp) \
	sci_gateway/cpp/$(DEPDIR)/$(am__dirstamp)
sci_gateway/cpp/libsciexternal_objects_la-sci_percent_EObj_r_foo.lo:  \
	sci_gateway/cpp/$(am__dirstamp) \
	sci_gateway/cpp/$(DEPDIR)/$(am__dirstamp)
sci_gateway/cpp/libsciexternal_objects_la-sci_percent_EObj_s_foo.lo:  \
	sci_gateway/cpp/$(am__dirstamp) \
	sci_gateway/cpp/$(DEPDIR)/$(am__dirstamp)
sci_gateway/cpp/libsciexternal_objects_la-sci_percent_EObj_x_foo.lo:  \
	sci_gateway/cpp/$(am__dirstamp) \
	sci_gateway/cpp/$(DEPDIR)/$(am__dirstamp)
sci_gateway/cpp/libsciexternal_objects_la-sci_percent_EObj_y_foo.lo:  \
	sci_gateway/cpp/$(am__dirstamp) \
	sci_gateway/cpp/$(DEPDIR)/$(am__dirstamp)
sci_gateway/cpp/libsciexternal_objects_la-sci_percent_EObj_z_foo.lo:  \
	sci_gateway/cpp/$(am__dirstamp) \
	sci_gateway/cpp/$(DEPDIR)/$(am__dirstamp)
sci_gateway/cpp/libsciexternal_objects_la-sci_percent_EObj_1_foo.lo:  \
	sci_gateway/cpp/$(am__dirstamp) \
	sci_gateway/cpp/$(DEPDIR)/$(am__dirstamp)
sci_gateway/cpp/libsciexternal_objects_la-sci_percent_EObj_2_foo.lo:  \
	sci_gateway/cpp/$(am__dirstamp) \
	sci_gateway/cpp/$(DEPDIR)/$(am__dirstamp)
sci_gateway/cpp/libsciexternal_objects_la-sci_percent_EObj_3_foo.lo:  \
	sci_gateway/cpp/$(am__dirstamp) \
	sci_gateway/cpp/$(DEPDIR)/$(am__dirstamp)
sci_gateway/cpp/libsciexternal_objects_la-sci_percent_EObj_4_foo.lo:  \
	sci_gateway/cpp/$(am__dirstamp) \
	sci_gateway/cpp/$(DEPDIR)/$(am__dirstamp)
sci_gateway/cpp/libsciexternal_objects_la-sci_percent_EObj_0.lo:  \
	sci_gateway/cpp/$(am__dirstamp) \
	sci_gateway/cpp/$(DEPDIR)/$(am__dirstamp)
sci_gateway/cpp/libsciexternal_objects_la-sci_percent_EObj_5.lo:  \
	sci_gateway/cpp/$(am__dirstamp) \
	sci_gateway/cpp/$(DEPDIR)/$(am__dirstamp)
sci_gateway/cpp/libsciexternal_objects_la-sci_percent_EObj_t.lo:  \
	sci_gateway/cpp/$(am__dirstamp) \
	sci_gateway/cpp/$(DEPDIR)/$(am__dirstamp)
sci_gateway/cpp/libsciexternal_objects_la-sci_doubleExclam_invoke_.lo:  \
	sci_gateway/cpp/$(am__dirstamp) \
	sci_gateway/cpp/$(DEPDIR)/$(am__dirstamp)
sci_gateway/cpp/libsciexternal_objects_la-sci_invoke_lu.lo:  \
	sci_gateway/cpp/$(am__dirstamp) \
	sci_gateway/cpp/$(DEPDIR)/$(am__dirstamp)
sci_gateway/cpp/libsciexternal_objects_la-sci_percent_EObj_disp.lo:  \
	sci_gateway/cpp/$(am__dirstamp) \
	sci_gateway/cpp/$(DEPDIR)/$(am__dirstamp)

libsciexternal_objects.la: $(libsciexternal_objects_la_OBJECTS) $(libsciexternal_objects_la_DEPENDENCIES) $(EXTRA_libsciexternal_objects_la_DEPENDENCIES) 
	$(AM_V_CXXLD)$(libsciexternal_objects_la_LINK) -rpath $(pkglibdir) $(libsciexternal_objects_la_OBJECTS) $(libsciexternal_objects_la_LIBADD) $(LIBS)

mostlyclean-compile:
	-rm -f *.$(OBJEXT)
	-rm -f sci_gateway/c/*.$(OBJEXT)
	-rm -f sci_gateway/c/*.lo
	-rm -f sci_gateway/cpp/*.$(OBJEXT)
	-rm -f sci_gateway/cpp/*.lo
	-rm -f src/cpp/*.$(OBJEXT)
	-rm -f src/cpp/*.lo

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

@AMDEP_TRUE@@am__include@ @am__quote@sci_gateway/c/$(DEPDIR)/libsciexternal_objects_la-gw_external_objects.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@sci_gateway/cpp/$(DEPDIR)/libsciexternal_objects_la-sci_doubleExclam_invoke_.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@sci_gateway/cpp/$(DEPDIR)/libsciexternal_objects_la-sci_invoke_lu.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@sci_gateway/cpp/$(DEPDIR)/libsciexternal_objects_la-sci_percent_EClass_e.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@sci_gateway/cpp/$(DEPDIR)/libsciexternal_objects_la-sci_percent_EObj_0.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@sci_gateway/cpp/$(DEPDIR)/libsciexternal_objects_la-sci_percent_EObj_1_foo.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@sci_gateway/cpp/$(DEPDIR)/libsciexternal_objects_la-sci_percent_EObj_2_foo.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@sci_gateway/cpp/$(DEPDIR)/libsciexternal_objects_la-sci_percent_EObj_3_foo.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@sci_gateway/cpp/$(DEPDIR)/libsciexternal_objects_la-sci_percent_EObj_4_foo.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@sci_gateway/cpp/$(DEPDIR)/libsciexternal_objects_la-sci_percent_EObj_5.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@sci_gateway/cpp/$(DEPDIR)/libsciexternal_objects_la-sci_percent_EObj_a_foo.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@sci_gateway/cpp/$(DEPDIR)/libsciexternal_objects_la-sci_percent_EObj_d_foo.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@sci_gateway/cpp/$(DEPDIR)/libsciexternal_objects_la-sci_percent_EObj_disp.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@sci_gateway/cpp/$(DEPDIR)/libsciexternal_objects_la-sci_percent_EObj_e.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@sci_gateway/cpp/$(DEPDIR)/libsciexternal_objects_la-sci_percent_EObj_g_foo.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@sci_gateway/cpp/$(DEPDIR)/libsciexternal_objects_la-sci_percent_EObj_h_foo.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@sci_gateway/cpp/$(DEPDIR)/libsciexternal_objects_la-sci_percent_EObj_j_foo.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@sci_gateway/cpp/$(DEPDIR)/libsciexternal_objects_la-sci_percent_EObj_k_foo.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@sci_gateway/cpp/$(DEPDIR)/libsciexternal_objects_la-sci_percent_EObj_l_foo.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@sci_gateway/cpp/$(DEPDIR)/libsciexternal_objects_la-sci_percent_EObj_m_foo.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@sci_gateway/cpp/$(DEPDIR)/libsciexternal_objects_la-sci_percent_EObj_n_foo.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@sci_gateway/cpp/$(DEPDIR)/libsciexternal_objects_la-sci_percent_EObj_o_foo.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@sci_gateway/cpp/$(DEPDIR)/libsciexternal_objects_la-sci_percent_EObj_p.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@sci_gateway/cpp/$(DEPDIR)/libsciexternal_objects_la-sci_percent_EObj_p_foo.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@sci_gateway/cpp/$(DEPDIR)/libsciexternal_objects_la-sci_percent_EObj_q_foo.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@sci_gateway/cpp/$(DEPDIR)/libsciexternal_objects_la-sci_percent_EObj_r_foo.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@sci_gateway/cpp/$(DEPDIR)/libsciexternal_objects_la-sci_percent_EObj_s_foo.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@sci_gateway/cpp/$(DEPDIR)/libsciexternal_objects_la-sci_percent_EObj_t.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@sci_gateway/cpp/$(DEPDIR)/libsciexternal_objects_la-sci_percent_EObj_x_foo.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@sci_gateway/cpp/$(DEPDIR)/libsciexternal_objects_la-sci_percent_EObj_y_foo.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@sci_gateway/cpp/$(DEPDIR)/libsciexternal_objects_la-sci_percent_EObj_z_foo.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@sci_gateway/cpp/$(DEPDIR)/libsciexternal_objects_la-sci_percent_foo_i_EObj.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@src/cpp/$(DEPDIR)/libsciexternal_objects_algo_la-ExternalObjectsFunction.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@src/cpp/$(DEPDIR)/libsciexternal_objects_algo_la-OptionsHelper.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@src/cpp/$(DEPDIR)/libsciexternal_objects_algo_la-ScilabAutoCleaner.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@src/cpp/$(DEPDIR)/libsciexternal_objects_algo_la-ScilabEnvironments.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@src/cpp/$(DEPDIR)/libsciexternal_objects_algo_la-ScilabObjects.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@src/cpp/$(DEPDIR)/libsciexternal_objects_algo_la-ScilabOptionsSetter.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@src/cpp/$(DEPDIR)/libsciexternal_objects_algo_la-addNamedVariable.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@src/cpp/$(DEPDIR)/libsciexternal_objects_algo_la-addToClasspath.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@src/cpp/$(DEPDIR)/libsciexternal_objects_algo_la-array.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@src/cpp/$(DEPDIR)/libsciexternal_objects_algo_la-cast.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@src/cpp/$(DEPDIR)/libsciexternal_objects_algo_la-classExtract.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@src/cpp/$(DEPDIR)/libsciexternal_objects_algo_la-compile.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@src/cpp/$(DEPDIR)/libsciexternal_objects_algo_la-convMatrixMethod.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@src/cpp/$(DEPDIR)/libsciexternal_objects_algo_la-deff.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@src/cpp/$(DEPDIR)/libsciexternal_objects_algo_la-display.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@src/cpp/$(DEPDIR)/libsciexternal_objects_algo_la-doubleExclam_invoke.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@src/cpp/$(DEPDIR)/libsciexternal_objects_algo_la-evalString.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@src/cpp/$(DEPDIR)/libsciexternal_objects_algo_la-exists.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@src/cpp/$(DEPDIR)/libsciexternal_objects_algo_la-getClassName.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@src/cpp/$(DEPDIR)/libsciexternal_objects_algo_la-getClasspath.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@src/cpp/$(DEPDIR)/libsciexternal_objects_algo_la-getEnvId.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@src/cpp/$(DEPDIR)/libsciexternal_objects_algo_la-getEnvironmentInfos.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@src/cpp/$(DEPDIR)/libsciexternal_objects_algo_la-getEnvironmentName.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@src/cpp/$(DEPDIR)/libsciexternal_objects_algo_la-getField.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@src/cpp/$(DEPDIR)/libsciexternal_objects_algo_la-getFields.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@src/cpp/$(DEPDIR)/libsciexternal_objects_algo_la-getMethods.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@src/cpp/$(DEPDIR)/libsciexternal_objects_algo_la-getNamedVariable.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@src/cpp/$(DEPDIR)/libsciexternal_objects_algo_la-getRepresentation.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@src/cpp/$(DEPDIR)/libsciexternal_objects_algo_la-getsetOptions.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@src/cpp/$(DEPDIR)/libsciexternal_objects_algo_la-import.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@src/cpp/$(DEPDIR)/libsciexternal_objects_algo_la-invoke.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@src/cpp/$(DEPDIR)/libsciexternal_objects_algo_la-invoke_asref.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@src/cpp/$(DEPDIR)/libsciexternal_objects_algo_la-invoke_lu.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@src/cpp/$(DEPDIR)/libsciexternal_objects_algo_la-invoker.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@src/cpp/$(DEPDIR)/libsciexternal_objects_algo_la-newInstance.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@src/cpp/$(DEPDIR)/libsciexternal_objects_algo_la-objectExtract.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@src/cpp/$(DEPDIR)/libsciexternal_objects_algo_la-objectInsert.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@src/cpp/$(DEPDIR)/libsciexternal_objects_algo_la-objectPrint.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@src/cpp/$(DEPDIR)/libsciexternal_objects_algo_la-operation.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@src/cpp/$(DEPDIR)/libsciexternal_objects_algo_la-remove.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@src/cpp/$(DEPDIR)/libsciexternal_objects_algo_la-setField.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@src/cpp/$(DEPDIR)/libsciexternal_objects_algo_la-trace.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@src/cpp/$(DEPDIR)/libsciexternal_objects_algo_la-unwrap.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@src/cpp/$(DEPDIR)/libsciexternal_objects_algo_la-unwrapremove.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@src/cpp/$(DEPDIR)/libsciexternal_objects_algo_la-wrap.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@src/cpp/$(DEPDIR)/libsciexternal_objects_algo_la-wrapAsRef.Plo@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@src/cpp/$(DEPDIR)/libsciexternal_objects_algo_la-wrapInFloat.Plo@am__quote@

.c.o:
@am__fastdepCC_TRUE@	$(AM_V_CC)depbase=`echo $@ | sed 's|[^/]*$$|$(DEPDIR)/&|;s|\.o$$||'`;\
@am__fastdepCC_TRUE@	$(COMPILE) -MT $@ -MD -MP -MF $$depbase.Tpo -c -o $@ $< &&\
@am__fastdepCC_TRUE@	$(am__mv) $$depbase.Tpo $$depbase.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@	$(AM_V_CC)source='$<' object='$@' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@	$(AM_V_CC@am__nodep@)$(COMPILE) -c -o $@ $<

.c.obj:
@am__fastdepCC_TRUE@	$(AM_V_CC)depbase=`echo $@ | sed 's|[^/]*$$|$(DEPDIR)/&|;s|\.obj$$||'`;\
@am__fastdepCC_TRUE@	$(COMPILE) -MT $@ -MD -MP -MF $$depbase.Tpo -c -o $@ `$(CYGPATH_W) '$<'` &&\
@am__fastdepCC_TRUE@	$(am__mv) $$depbase.Tpo $$depbase.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@	$(AM_V_CC)source='$<' object='$@' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@	$(AM_V_CC@am__nodep@)$(COMPILE) -c -o $@ `$(CYGPATH_W) '$<'`

.c.lo:
@am__fastdepCC_TRUE@	$(AM_V_CC)depbase=`echo $@ | sed 's|[^/]*$$|$(DEPDIR)/&|;s|\.lo$$||'`;\
@am__fastdepCC_TRUE@	$(LTCOMPILE) -MT $@ -MD -MP -MF $$depbase.Tpo -c -o $@ $< &&\
@am__fastdepCC_TRUE@	$(am__mv) $$depbase.Tpo $$depbase.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@	$(AM_V_CC)source='$<' object='$@' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@	DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@	$(AM_V_CC@am__nodep@)$(LTCOMPILE) -c -o $@ $<

sci_gateway/c/libsciexternal_objects_la-gw_external_objects.lo: sci_gateway/c/gw_external_objects.c
@am__fastdepCC_TRUE@	$(AM_V_CC)$(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libsciexternal_objects_la_CPPFLAGS) $(CPPFLAGS) $(libsciexternal_objects_la_CFLAGS) $(CFLAGS) -MT sci_gateway/c/libsciexternal_objects_la-gw_external_objects.lo -MD -MP -MF sci_gateway/c/$(DEPDIR)/libsciexternal_objects_la-gw_external_objects.Tpo -c -o sci_gateway/c/libsciexternal_objects_la-gw_external_objects.lo `test -f 'sci_gateway/c/gw_external_objects.c' || echo '$(srcdir)/'`sci_gateway/c/gw_external_objects.c
@am__fastdepCC_TRUE@	$(AM_V_at)$(am__mv) sci_gateway/c/$(DEPDIR)/libsciexternal_objects_la-gw_external_objects.Tpo sci_gateway/c/$(DEPDIR)/libsciexternal_objects_la-gw_external_objects.Plo
@AMDEP_TRUE@@am__fastdepCC_FALSE@	$(AM_V_CC)source='sci_gateway/c/gw_external_objects.c' object='sci_gateway/c/libsciexternal_objects_la-gw_external_objects.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) $(libsciexternal_objects_la_CPPFLAGS) $(CPPFLAGS) $(libsciexternal_objects_la_CFLAGS) $(CFLAGS) -c -o sci_gateway/c/libsciexternal_objects_la-gw_external_objects.lo `test -f 'sci_gateway/c/gw_external_objects.c' || echo '$(srcdir)/'`sci_gateway/c/gw_external_objects.c

.cpp.o:
@am__fastdepCXX_TRUE@	$(AM_V_CXX)depbase=`echo $@ | sed 's|[^/]*$$|$(DEPDIR)/&|;s|\.o$$||'`;\
@am__fastdepCXX_TRUE@	$(CXXCOMPILE) -MT $@ -MD -MP -MF $$depbase.Tpo -c -o $@ $< &&\
@am__fastdepCXX_TRUE@	$(am__mv) $$depbase.Tpo $$depbase.Po
@AMDEP_TRUE@@am__fastdepCXX_FALSE@	$(AM_V_CXX)source='$<' object='$@' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@	$(AM_V_CXX@am__nodep@)$(CXXCOMPILE) -c -o $@ $<

.cpp.obj:
@am__fastdepCXX_TRUE@	$(AM_V_CXX)depbase=`echo $@ | sed 's|[^/]*$$|$(DEPDIR)/&|;s|\.obj$$||'`;\
@am__fastdepCXX_TRUE@	$(CXXCOMPILE) -MT $@ -MD -MP -MF $$depbase.Tpo -c -o $@ `$(CYGPATH_W) '$<'` &&\
@am__fastdepCXX_TRUE@	$(am__mv) $$depbase.Tpo $$depbase.Po
@AMDEP_TRUE@@am__fastdepCXX_FALSE@	$(AM_V_CXX)source='$<' object='$@' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@	$(AM_V_CXX@am__nodep@)$(CXXCOMPILE) -c -o $@ `$(CYGPATH_W) '$<'`

.cpp.lo:
@am__fastdepCXX_TRUE@	$(AM_V_CXX)depbase=`echo $@ | sed 's|[^/]*$$|$(DEPDIR)/&|;s|\.lo$$||'`;\
@am__fastdepCXX_TRUE@	$(LTCXXCOMPILE) -MT $@ -MD -MP -MF $$depbase.Tpo -c -o $@ $< &&\
@am__fastdepCXX_TRUE@	$(am__mv) $$depbase.Tpo $$depbase.Plo
@AMDEP_TRUE@@am__fastdepCXX_FALSE@	$(AM_V_CXX)source='$<' object='$@' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@	$(AM_V_CXX@am__nodep@)$(LTCXXCOMPILE) -c -o $@ $<

src/cpp/libsciexternal_objects_algo_la-ScilabEnvironments.lo: src/cpp/ScilabEnvironments.cpp
@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libsciexternal_objects_algo_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT src/cpp/libsciexternal_objects_algo_la-ScilabEnvironments.lo -MD -MP -MF src/cpp/$(DEPDIR)/libsciexternal_objects_algo_la-ScilabEnvironments.Tpo -c -o src/cpp/libsciexternal_objects_algo_la-ScilabEnvironments.lo `test -f 'src/cpp/ScilabEnvironments.cpp' || echo '$(srcdir)/'`src/cpp/ScilabEnvironments.cpp
@am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) src/cpp/$(DEPDIR)/libsciexternal_objects_algo_la-ScilabEnvironments.Tpo src/cpp/$(DEPDIR)/libsciexternal_objects_algo_la-ScilabEnvironments.Plo
@AMDEP_TRUE@@am__fastdepCXX_FALSE@	$(AM_V_CXX)source='src/cpp/ScilabEnvironments.cpp' object='src/cpp/libsciexternal_objects_algo_la-ScilabEnvironments.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@	$(AM_V_CXX@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libsciexternal_objects_algo_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o src/cpp/libsciexternal_objects_algo_la-ScilabEnvironments.lo `test -f 'src/cpp/ScilabEnvironments.cpp' || echo '$(srcdir)/'`src/cpp/ScilabEnvironments.cpp

src/cpp/libsciexternal_objects_algo_la-ScilabObjects.lo: src/cpp/ScilabObjects.cpp
@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libsciexternal_objects_algo_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT src/cpp/libsciexternal_objects_algo_la-ScilabObjects.lo -MD -MP -MF src/cpp/$(DEPDIR)/libsciexternal_objects_algo_la-ScilabObjects.Tpo -c -o src/cpp/libsciexternal_objects_algo_la-ScilabObjects.lo `test -f 'src/cpp/ScilabObjects.cpp' || echo '$(srcdir)/'`src/cpp/ScilabObjects.cpp
@am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) src/cpp/$(DEPDIR)/libsciexternal_objects_algo_la-ScilabObjects.Tpo src/cpp/$(DEPDIR)/libsciexternal_objects_algo_la-ScilabObjects.Plo
@AMDEP_TRUE@@am__fastdepCXX_FALSE@	$(AM_V_CXX)source='src/cpp/ScilabObjects.cpp' object='src/cpp/libsciexternal_objects_algo_la-ScilabObjects.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@	$(AM_V_CXX@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libsciexternal_objects_algo_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o src/cpp/libsciexternal_objects_algo_la-ScilabObjects.lo `test -f 'src/cpp/ScilabObjects.cpp' || echo '$(srcdir)/'`src/cpp/ScilabObjects.cpp

src/cpp/libsciexternal_objects_algo_la-OptionsHelper.lo: src/cpp/OptionsHelper.cpp
@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libsciexternal_objects_algo_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT src/cpp/libsciexternal_objects_algo_la-OptionsHelper.lo -MD -MP -MF src/cpp/$(DEPDIR)/libsciexternal_objects_algo_la-OptionsHelper.Tpo -c -o src/cpp/libsciexternal_objects_algo_la-OptionsHelper.lo `test -f 'src/cpp/OptionsHelper.cpp' || echo '$(srcdir)/'`src/cpp/OptionsHelper.cpp
@am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) src/cpp/$(DEPDIR)/libsciexternal_objects_algo_la-OptionsHelper.Tpo src/cpp/$(DEPDIR)/libsciexternal_objects_algo_la-OptionsHelper.Plo
@AMDEP_TRUE@@am__fastdepCXX_FALSE@	$(AM_V_CXX)source='src/cpp/OptionsHelper.cpp' object='src/cpp/libsciexternal_objects_algo_la-OptionsHelper.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@	$(AM_V_CXX@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libsciexternal_objects_algo_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o src/cpp/libsciexternal_objects_algo_la-OptionsHelper.lo `test -f 'src/cpp/OptionsHelper.cpp' || echo '$(srcdir)/'`src/cpp/OptionsHelper.cpp

src/cpp/libsciexternal_objects_algo_la-addToClasspath.lo: src/cpp/addToClasspath.cpp
@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libsciexternal_objects_algo_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT src/cpp/libsciexternal_objects_algo_la-addToClasspath.lo -MD -MP -MF src/cpp/$(DEPDIR)/libsciexternal_objects_algo_la-addToClasspath.Tpo -c -o src/cpp/libsciexternal_objects_algo_la-addToClasspath.lo `test -f 'src/cpp/addToClasspath.cpp' || echo '$(srcdir)/'`src/cpp/addToClasspath.cpp
@am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) src/cpp/$(DEPDIR)/libsciexternal_objects_algo_la-addToClasspath.Tpo src/cpp/$(DEPDIR)/libsciexternal_objects_algo_la-addToClasspath.Plo
@AMDEP_TRUE@@am__fastdepCXX_FALSE@	$(AM_V_CXX)source='src/cpp/addToClasspath.cpp' object='src/cpp/libsciexternal_objects_algo_la-addToClasspath.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@	$(AM_V_CXX@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libsciexternal_objects_algo_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o src/cpp/libsciexternal_objects_algo_la-addToClasspath.lo `test -f 'src/cpp/addToClasspath.cpp' || echo '$(srcdir)/'`src/cpp/addToClasspath.cpp

src/cpp/libsciexternal_objects_algo_la-getClasspath.lo: src/cpp/getClasspath.cpp
@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libsciexternal_objects_algo_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT src/cpp/libsciexternal_objects_algo_la-getClasspath.lo -MD -MP -MF src/cpp/$(DEPDIR)/libsciexternal_objects_algo_la-getClasspath.Tpo -c -o src/cpp/libsciexternal_objects_algo_la-getClasspath.lo `test -f 'src/cpp/getClasspath.cpp' || echo '$(srcdir)/'`src/cpp/getClasspath.cpp
@am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) src/cpp/$(DEPDIR)/libsciexternal_objects_algo_la-getClasspath.Tpo src/cpp/$(DEPDIR)/libsciexternal_objects_algo_la-getClasspath.Plo
@AMDEP_TRUE@@am__fastdepCXX_FALSE@	$(AM_V_CXX)source='src/cpp/getClasspath.cpp' object='src/cpp/libsciexternal_objects_algo_la-getClasspath.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@	$(AM_V_CXX@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libsciexternal_objects_algo_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o src/cpp/libsciexternal_objects_algo_la-getClasspath.lo `test -f 'src/cpp/getClasspath.cpp' || echo '$(srcdir)/'`src/cpp/getClasspath.cpp

src/cpp/libsciexternal_objects_algo_la-getsetOptions.lo: src/cpp/getsetOptions.cpp
@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libsciexternal_objects_algo_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT src/cpp/libsciexternal_objects_algo_la-getsetOptions.lo -MD -MP -MF src/cpp/$(DEPDIR)/libsciexternal_objects_algo_la-getsetOptions.Tpo -c -o src/cpp/libsciexternal_objects_algo_la-getsetOptions.lo `test -f 'src/cpp/getsetOptions.cpp' || echo '$(srcdir)/'`src/cpp/getsetOptions.cpp
@am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) src/cpp/$(DEPDIR)/libsciexternal_objects_algo_la-getsetOptions.Tpo src/cpp/$(DEPDIR)/libsciexternal_objects_algo_la-getsetOptions.Plo
@AMDEP_TRUE@@am__fastdepCXX_FALSE@	$(AM_V_CXX)source='src/cpp/getsetOptions.cpp' object='src/cpp/libsciexternal_objects_algo_la-getsetOptions.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@	$(AM_V_CXX@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libsciexternal_objects_algo_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o src/cpp/libsciexternal_objects_algo_la-getsetOptions.lo `test -f 'src/cpp/getsetOptions.cpp' || echo '$(srcdir)/'`src/cpp/getsetOptions.cpp

src/cpp/libsciexternal_objects_algo_la-getEnvironmentInfos.lo: src/cpp/getEnvironmentInfos.cpp
@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libsciexternal_objects_algo_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT src/cpp/libsciexternal_objects_algo_la-getEnvironmentInfos.lo -MD -MP -MF src/cpp/$(DEPDIR)/libsciexternal_objects_algo_la-getEnvironmentInfos.Tpo -c -o src/cpp/libsciexternal_objects_algo_la-getEnvironmentInfos.lo `test -f 'src/cpp/getEnvironmentInfos.cpp' || echo '$(srcdir)/'`src/cpp/getEnvironmentInfos.cpp
@am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) src/cpp/$(DEPDIR)/libsciexternal_objects_algo_la-getEnvironmentInfos.Tpo src/cpp/$(DEPDIR)/libsciexternal_objects_algo_la-getEnvironmentInfos.Plo
@AMDEP_TRUE@@am__fastdepCXX_FALSE@	$(AM_V_CXX)source='src/cpp/getEnvironmentInfos.cpp' object='src/cpp/libsciexternal_objects_algo_la-getEnvironmentInfos.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@	$(AM_V_CXX@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libsciexternal_objects_algo_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o src/cpp/libsciexternal_objects_algo_la-getEnvironmentInfos.lo `test -f 'src/cpp/getEnvironmentInfos.cpp' || echo '$(srcdir)/'`src/cpp/getEnvironmentInfos.cpp

src/cpp/libsciexternal_objects_algo_la-array.lo: src/cpp/array.cpp
@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libsciexternal_objects_algo_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT src/cpp/libsciexternal_objects_algo_la-array.lo -MD -MP -MF src/cpp/$(DEPDIR)/libsciexternal_objects_algo_la-array.Tpo -c -o src/cpp/libsciexternal_objects_algo_la-array.lo `test -f 'src/cpp/array.cpp' || echo '$(srcdir)/'`src/cpp/array.cpp
@am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) src/cpp/$(DEPDIR)/libsciexternal_objects_algo_la-array.Tpo src/cpp/$(DEPDIR)/libsciexternal_objects_algo_la-array.Plo
@AMDEP_TRUE@@am__fastdepCXX_FALSE@	$(AM_V_CXX)source='src/cpp/array.cpp' object='src/cpp/libsciexternal_objects_algo_la-array.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@	$(AM_V_CXX@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libsciexternal_objects_algo_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o src/cpp/libsciexternal_objects_algo_la-array.lo `test -f 'src/cpp/array.cpp' || echo '$(srcdir)/'`src/cpp/array.cpp

src/cpp/libsciexternal_objects_algo_la-operation.lo: src/cpp/operation.cpp
@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libsciexternal_objects_algo_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT src/cpp/libsciexternal_objects_algo_la-operation.lo -MD -MP -MF src/cpp/$(DEPDIR)/libsciexternal_objects_algo_la-operation.Tpo -c -o src/cpp/libsciexternal_objects_algo_la-operation.lo `test -f 'src/cpp/operation.cpp' || echo '$(srcdir)/'`src/cpp/operation.cpp
@am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) src/cpp/$(DEPDIR)/libsciexternal_objects_algo_la-operation.Tpo src/cpp/$(DEPDIR)/libsciexternal_objects_algo_la-operation.Plo
@AMDEP_TRUE@@am__fastdepCXX_FALSE@	$(AM_V_CXX)source='src/cpp/operation.cpp' object='src/cpp/libsciexternal_objects_algo_la-operation.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@	$(AM_V_CXX@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libsciexternal_objects_algo_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o src/cpp/libsciexternal_objects_algo_la-operation.lo `test -f 'src/cpp/operation.cpp' || echo '$(srcdir)/'`src/cpp/operation.cpp

src/cpp/libsciexternal_objects_algo_la-cast.lo: src/cpp/cast.cpp
@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libsciexternal_objects_algo_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT src/cpp/libsciexternal_objects_algo_la-cast.lo -MD -MP -MF src/cpp/$(DEPDIR)/libsciexternal_objects_algo_la-cast.Tpo -c -o src/cpp/libsciexternal_objects_algo_la-cast.lo `test -f 'src/cpp/cast.cpp' || echo '$(srcdir)/'`src/cpp/cast.cpp
@am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) src/cpp/$(DEPDIR)/libsciexternal_objects_algo_la-cast.Tpo src/cpp/$(DEPDIR)/libsciexternal_objects_algo_la-cast.Plo
@AMDEP_TRUE@@am__fastdepCXX_FALSE@	$(AM_V_CXX)source='src/cpp/cast.cpp' object='src/cpp/libsciexternal_objects_algo_la-cast.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@	$(AM_V_CXX@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libsciexternal_objects_algo_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o src/cpp/libsciexternal_objects_algo_la-cast.lo `test -f 'src/cpp/cast.cpp' || echo '$(srcdir)/'`src/cpp/cast.cpp

src/cpp/libsciexternal_objects_algo_la-compile.lo: src/cpp/compile.cpp
@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libsciexternal_objects_algo_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT src/cpp/libsciexternal_objects_algo_la-compile.lo -MD -MP -MF src/cpp/$(DEPDIR)/libsciexternal_objects_algo_la-compile.Tpo -c -o src/cpp/libsciexternal_objects_algo_la-compile.lo `test -f 'src/cpp/compile.cpp' || echo '$(srcdir)/'`src/cpp/compile.cpp
@am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) src/cpp/$(DEPDIR)/libsciexternal_objects_algo_la-compile.Tpo src/cpp/$(DEPDIR)/libsciexternal_objects_algo_la-compile.Plo
@AMDEP_TRUE@@am__fastdepCXX_FALSE@	$(AM_V_CXX)source='src/cpp/compile.cpp' object='src/cpp/libsciexternal_objects_algo_la-compile.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@	$(AM_V_CXX@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libsciexternal_objects_algo_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o src/cpp/libsciexternal_objects_algo_la-compile.lo `test -f 'src/cpp/compile.cpp' || echo '$(srcdir)/'`src/cpp/compile.cpp

src/cpp/libsciexternal_objects_algo_la-convMatrixMethod.lo: src/cpp/convMatrixMethod.cpp
@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libsciexternal_objects_algo_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT src/cpp/libsciexternal_objects_algo_la-convMatrixMethod.lo -MD -MP -MF src/cpp/$(DEPDIR)/libsciexternal_objects_algo_la-convMatrixMethod.Tpo -c -o src/cpp/libsciexternal_objects_algo_la-convMatrixMethod.lo `test -f 'src/cpp/convMatrixMethod.cpp' || echo '$(srcdir)/'`src/cpp/convMatrixMethod.cpp
@am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) src/cpp/$(DEPDIR)/libsciexternal_objects_algo_la-convMatrixMethod.Tpo src/cpp/$(DEPDIR)/libsciexternal_objects_algo_la-convMatrixMethod.Plo
@AMDEP_TRUE@@am__fastdepCXX_FALSE@	$(AM_V_CXX)source='src/cpp/convMatrixMethod.cpp' object='src/cpp/libsciexternal_objects_algo_la-convMatrixMethod.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@	$(AM_V_CXX@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libsciexternal_objects_algo_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o src/cpp/libsciexternal_objects_algo_la-convMatrixMethod.lo `test -f 'src/cpp/convMatrixMethod.cpp' || echo '$(srcdir)/'`src/cpp/convMatrixMethod.cpp

src/cpp/libsciexternal_objects_algo_la-deff.lo: src/cpp/deff.cpp
@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libsciexternal_objects_algo_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT src/cpp/libsciexternal_objects_algo_la-deff.lo -MD -MP -MF src/cpp/$(DEPDIR)/libsciexternal_objects_algo_la-deff.Tpo -c -o src/cpp/libsciexternal_objects_algo_la-deff.lo `test -f 'src/cpp/deff.cpp' || echo '$(srcdir)/'`src/cpp/deff.cpp
@am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) src/cpp/$(DEPDIR)/libsciexternal_objects_algo_la-deff.Tpo src/cpp/$(DEPDIR)/libsciexternal_objects_algo_la-deff.Plo
@AMDEP_TRUE@@am__fastdepCXX_FALSE@	$(AM_V_CXX)source='src/cpp/deff.cpp' object='src/cpp/libsciexternal_objects_algo_la-deff.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@	$(AM_V_CXX@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libsciexternal_objects_algo_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o src/cpp/libsciexternal_objects_algo_la-deff.lo `test -f 'src/cpp/deff.cpp' || echo '$(srcdir)/'`src/cpp/deff.cpp

src/cpp/libsciexternal_objects_algo_la-display.lo: src/cpp/display.cpp
@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libsciexternal_objects_algo_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT src/cpp/libsciexternal_objects_algo_la-display.lo -MD -MP -MF src/cpp/$(DEPDIR)/libsciexternal_objects_algo_la-display.Tpo -c -o src/cpp/libsciexternal_objects_algo_la-display.lo `test -f 'src/cpp/display.cpp' || echo '$(srcdir)/'`src/cpp/display.cpp
@am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) src/cpp/$(DEPDIR)/libsciexternal_objects_algo_la-display.Tpo src/cpp/$(DEPDIR)/libsciexternal_objects_algo_la-display.Plo
@AMDEP_TRUE@@am__fastdepCXX_FALSE@	$(AM_V_CXX)source='src/cpp/display.cpp' object='src/cpp/libsciexternal_objects_algo_la-display.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@	$(AM_V_CXX@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libsciexternal_objects_algo_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o src/cpp/libsciexternal_objects_algo_la-display.lo `test -f 'src/cpp/display.cpp' || echo '$(srcdir)/'`src/cpp/display.cpp

src/cpp/libsciexternal_objects_algo_la-doubleExclam_invoke.lo: src/cpp/doubleExclam_invoke.cpp
@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libsciexternal_objects_algo_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT src/cpp/libsciexternal_objects_algo_la-doubleExclam_invoke.lo -MD -MP -MF src/cpp/$(DEPDIR)/libsciexternal_objects_algo_la-doubleExclam_invoke.Tpo -c -o src/cpp/libsciexternal_objects_algo_la-doubleExclam_invoke.lo `test -f 'src/cpp/doubleExclam_invoke.cpp' || echo '$(srcdir)/'`src/cpp/doubleExclam_invoke.cpp
@am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) src/cpp/$(DEPDIR)/libsciexternal_objects_algo_la-doubleExclam_invoke.Tpo src/cpp/$(DEPDIR)/libsciexternal_objects_algo_la-doubleExclam_invoke.Plo
@AMDEP_TRUE@@am__fastdepCXX_FALSE@	$(AM_V_CXX)source='src/cpp/doubleExclam_invoke.cpp' object='src/cpp/libsciexternal_objects_algo_la-doubleExclam_invoke.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@	$(AM_V_CXX@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libsciexternal_objects_algo_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o src/cpp/libsciexternal_objects_algo_la-doubleExclam_invoke.lo `test -f 'src/cpp/doubleExclam_invoke.cpp' || echo '$(srcdir)/'`src/cpp/doubleExclam_invoke.cpp

src/cpp/libsciexternal_objects_algo_la-classExtract.lo: src/cpp/classExtract.cpp
@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libsciexternal_objects_algo_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT src/cpp/libsciexternal_objects_algo_la-classExtract.lo -MD -MP -MF src/cpp/$(DEPDIR)/libsciexternal_objects_algo_la-classExtract.Tpo -c -o src/cpp/libsciexternal_objects_algo_la-classExtract.lo `test -f 'src/cpp/classExtract.cpp' || echo '$(srcdir)/'`src/cpp/classExtract.cpp
@am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) src/cpp/$(DEPDIR)/libsciexternal_objects_algo_la-classExtract.Tpo src/cpp/$(DEPDIR)/libsciexternal_objects_algo_la-classExtract.Plo
@AMDEP_TRUE@@am__fastdepCXX_FALSE@	$(AM_V_CXX)source='src/cpp/classExtract.cpp' object='src/cpp/libsciexternal_objects_algo_la-classExtract.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@	$(AM_V_CXX@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libsciexternal_objects_algo_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o src/cpp/libsciexternal_objects_algo_la-classExtract.lo `test -f 'src/cpp/classExtract.cpp' || echo '$(srcdir)/'`src/cpp/classExtract.cpp

src/cpp/libsciexternal_objects_algo_la-objectExtract.lo: src/cpp/objectExtract.cpp
@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libsciexternal_objects_algo_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT src/cpp/libsciexternal_objects_algo_la-objectExtract.lo -MD -MP -MF src/cpp/$(DEPDIR)/libsciexternal_objects_algo_la-objectExtract.Tpo -c -o src/cpp/libsciexternal_objects_algo_la-objectExtract.lo `test -f 'src/cpp/objectExtract.cpp' || echo '$(srcdir)/'`src/cpp/objectExtract.cpp
@am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) src/cpp/$(DEPDIR)/libsciexternal_objects_algo_la-objectExtract.Tpo src/cpp/$(DEPDIR)/libsciexternal_objects_algo_la-objectExtract.Plo
@AMDEP_TRUE@@am__fastdepCXX_FALSE@	$(AM_V_CXX)source='src/cpp/objectExtract.cpp' object='src/cpp/libsciexternal_objects_algo_la-objectExtract.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@	$(AM_V_CXX@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libsciexternal_objects_algo_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o src/cpp/libsciexternal_objects_algo_la-objectExtract.lo `test -f 'src/cpp/objectExtract.cpp' || echo '$(srcdir)/'`src/cpp/objectExtract.cpp

src/cpp/libsciexternal_objects_algo_la-objectInsert.lo: src/cpp/objectInsert.cpp
@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libsciexternal_objects_algo_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT src/cpp/libsciexternal_objects_algo_la-objectInsert.lo -MD -MP -MF src/cpp/$(DEPDIR)/libsciexternal_objects_algo_la-objectInsert.Tpo -c -o src/cpp/libsciexternal_objects_algo_la-objectInsert.lo `test -f 'src/cpp/objectInsert.cpp' || echo '$(srcdir)/'`src/cpp/objectInsert.cpp
@am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) src/cpp/$(DEPDIR)/libsciexternal_objects_algo_la-objectInsert.Tpo src/cpp/$(DEPDIR)/libsciexternal_objects_algo_la-objectInsert.Plo
@AMDEP_TRUE@@am__fastdepCXX_FALSE@	$(AM_V_CXX)source='src/cpp/objectInsert.cpp' object='src/cpp/libsciexternal_objects_algo_la-objectInsert.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@	$(AM_V_CXX@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libsciexternal_objects_algo_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o src/cpp/libsciexternal_objects_algo_la-objectInsert.lo `test -f 'src/cpp/objectInsert.cpp' || echo '$(srcdir)/'`src/cpp/objectInsert.cpp

src/cpp/libsciexternal_objects_algo_la-objectPrint.lo: src/cpp/objectPrint.cpp
@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libsciexternal_objects_algo_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT src/cpp/libsciexternal_objects_algo_la-objectPrint.lo -MD -MP -MF src/cpp/$(DEPDIR)/libsciexternal_objects_algo_la-objectPrint.Tpo -c -o src/cpp/libsciexternal_objects_algo_la-objectPrint.lo `test -f 'src/cpp/objectPrint.cpp' || echo '$(srcdir)/'`src/cpp/objectPrint.cpp
@am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) src/cpp/$(DEPDIR)/libsciexternal_objects_algo_la-objectPrint.Tpo src/cpp/$(DEPDIR)/libsciexternal_objects_algo_la-objectPrint.Plo
@AMDEP_TRUE@@am__fastdepCXX_FALSE@	$(AM_V_CXX)source='src/cpp/objectPrint.cpp' object='src/cpp/libsciexternal_objects_algo_la-objectPrint.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@	$(AM_V_CXX@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libsciexternal_objects_algo_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o src/cpp/libsciexternal_objects_algo_la-objectPrint.lo `test -f 'src/cpp/objectPrint.cpp' || echo '$(srcdir)/'`src/cpp/objectPrint.cpp

src/cpp/libsciexternal_objects_algo_la-exists.lo: src/cpp/exists.cpp
@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libsciexternal_objects_algo_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT src/cpp/libsciexternal_objects_algo_la-exists.lo -MD -MP -MF src/cpp/$(DEPDIR)/libsciexternal_objects_algo_la-exists.Tpo -c -o src/cpp/libsciexternal_objects_algo_la-exists.lo `test -f 'src/cpp/exists.cpp' || echo '$(srcdir)/'`src/cpp/exists.cpp
@am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) src/cpp/$(DEPDIR)/libsciexternal_objects_algo_la-exists.Tpo src/cpp/$(DEPDIR)/libsciexternal_objects_algo_la-exists.Plo
@AMDEP_TRUE@@am__fastdepCXX_FALSE@	$(AM_V_CXX)source='src/cpp/exists.cpp' object='src/cpp/libsciexternal_objects_algo_la-exists.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@	$(AM_V_CXX@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libsciexternal_objects_algo_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o src/cpp/libsciexternal_objects_algo_la-exists.lo `test -f 'src/cpp/exists.cpp' || echo '$(srcdir)/'`src/cpp/exists.cpp

src/cpp/libsciexternal_objects_algo_la-getClassName.lo: src/cpp/getClassName.cpp
@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libsciexternal_objects_algo_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT src/cpp/libsciexternal_objects_algo_la-getClassName.lo -MD -MP -MF src/cpp/$(DEPDIR)/libsciexternal_objects_algo_la-getClassName.Tpo -c -o src/cpp/libsciexternal_objects_algo_la-getClassName.lo `test -f 'src/cpp/getClassName.cpp' || echo '$(srcdir)/'`src/cpp/getClassName.cpp
@am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) src/cpp/$(DEPDIR)/libsciexternal_objects_algo_la-getClassName.Tpo src/cpp/$(DEPDIR)/libsciexternal_objects_algo_la-getClassName.Plo
@AMDEP_TRUE@@am__fastdepCXX_FALSE@	$(AM_V_CXX)source='src/cpp/getClassName.cpp' object='src/cpp/libsciexternal_objects_algo_la-getClassName.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@	$(AM_V_CXX@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libsciexternal_objects_algo_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o src/cpp/libsciexternal_objects_algo_la-getClassName.lo `test -f 'src/cpp/getClassName.cpp' || echo '$(srcdir)/'`src/cpp/getClassName.cpp

src/cpp/libsciexternal_objects_algo_la-getEnvironmentName.lo: src/cpp/getEnvironmentName.cpp
@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libsciexternal_objects_algo_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT src/cpp/libsciexternal_objects_algo_la-getEnvironmentName.lo -MD -MP -MF src/cpp/$(DEPDIR)/libsciexternal_objects_algo_la-getEnvironmentName.Tpo -c -o src/cpp/libsciexternal_objects_algo_la-getEnvironmentName.lo `test -f 'src/cpp/getEnvironmentName.cpp' || echo '$(srcdir)/'`src/cpp/getEnvironmentName.cpp
@am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) src/cpp/$(DEPDIR)/libsciexternal_objects_algo_la-getEnvironmentName.Tpo src/cpp/$(DEPDIR)/libsciexternal_objects_algo_la-getEnvironmentName.Plo
@AMDEP_TRUE@@am__fastdepCXX_FALSE@	$(AM_V_CXX)source='src/cpp/getEnvironmentName.cpp' object='src/cpp/libsciexternal_objects_algo_la-getEnvironmentName.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@	$(AM_V_CXX@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libsciexternal_objects_algo_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o src/cpp/libsciexternal_objects_algo_la-getEnvironmentName.lo `test -f 'src/cpp/getEnvironmentName.cpp' || echo '$(srcdir)/'`src/cpp/getEnvironmentName.cpp

src/cpp/libsciexternal_objects_algo_la-getField.lo: src/cpp/getField.cpp
@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libsciexternal_objects_algo_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT src/cpp/libsciexternal_objects_algo_la-getField.lo -MD -MP -MF src/cpp/$(DEPDIR)/libsciexternal_objects_algo_la-getField.Tpo -c -o src/cpp/libsciexternal_objects_algo_la-getField.lo `test -f 'src/cpp/getField.cpp' || echo '$(srcdir)/'`src/cpp/getField.cpp
@am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) src/cpp/$(DEPDIR)/libsciexternal_objects_algo_la-getField.Tpo src/cpp/$(DEPDIR)/libsciexternal_objects_algo_la-getField.Plo
@AMDEP_TRUE@@am__fastdepCXX_FALSE@	$(AM_V_CXX)source='src/cpp/getField.cpp' object='src/cpp/libsciexternal_objects_algo_la-getField.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@	$(AM_V_CXX@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libsciexternal_objects_algo_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o src/cpp/libsciexternal_objects_algo_la-getField.lo `test -f 'src/cpp/getField.cpp' || echo '$(srcdir)/'`src/cpp/getField.cpp

src/cpp/libsciexternal_objects_algo_la-getFields.lo: src/cpp/getFields.cpp
@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libsciexternal_objects_algo_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT src/cpp/libsciexternal_objects_algo_la-getFields.lo -MD -MP -MF src/cpp/$(DEPDIR)/libsciexternal_objects_algo_la-getFields.Tpo -c -o src/cpp/libsciexternal_objects_algo_la-getFields.lo `test -f 'src/cpp/getFields.cpp' || echo '$(srcdir)/'`src/cpp/getFields.cpp
@am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) src/cpp/$(DEPDIR)/libsciexternal_objects_algo_la-getFields.Tpo src/cpp/$(DEPDIR)/libsciexternal_objects_algo_la-getFields.Plo
@AMDEP_TRUE@@am__fastdepCXX_FALSE@	$(AM_V_CXX)source='src/cpp/getFields.cpp' object='src/cpp/libsciexternal_objects_algo_la-getFields.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@	$(AM_V_CXX@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libsciexternal_objects_algo_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o src/cpp/libsciexternal_objects_algo_la-getFields.lo `test -f 'src/cpp/getFields.cpp' || echo '$(srcdir)/'`src/cpp/getFields.cpp

src/cpp/libsciexternal_objects_algo_la-getMethods.lo: src/cpp/getMethods.cpp
@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libsciexternal_objects_algo_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT src/cpp/libsciexternal_objects_algo_la-getMethods.lo -MD -MP -MF src/cpp/$(DEPDIR)/libsciexternal_objects_algo_la-getMethods.Tpo -c -o src/cpp/libsciexternal_objects_algo_la-getMethods.lo `test -f 'src/cpp/getMethods.cpp' || echo '$(srcdir)/'`src/cpp/getMethods.cpp
@am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) src/cpp/$(DEPDIR)/libsciexternal_objects_algo_la-getMethods.Tpo src/cpp/$(DEPDIR)/libsciexternal_objects_algo_la-getMethods.Plo
@AMDEP_TRUE@@am__fastdepCXX_FALSE@	$(AM_V_CXX)source='src/cpp/getMethods.cpp' object='src/cpp/libsciexternal_objects_algo_la-getMethods.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@	$(AM_V_CXX@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libsciexternal_objects_algo_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o src/cpp/libsciexternal_objects_algo_la-getMethods.lo `test -f 'src/cpp/getMethods.cpp' || echo '$(srcdir)/'`src/cpp/getMethods.cpp

src/cpp/libsciexternal_objects_algo_la-getRepresentation.lo: src/cpp/getRepresentation.cpp
@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libsciexternal_objects_algo_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT src/cpp/libsciexternal_objects_algo_la-getRepresentation.lo -MD -MP -MF src/cpp/$(DEPDIR)/libsciexternal_objects_algo_la-getRepresentation.Tpo -c -o src/cpp/libsciexternal_objects_algo_la-getRepresentation.lo `test -f 'src/cpp/getRepresentation.cpp' || echo '$(srcdir)/'`src/cpp/getRepresentation.cpp
@am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) src/cpp/$(DEPDIR)/libsciexternal_objects_algo_la-getRepresentation.Tpo src/cpp/$(DEPDIR)/libsciexternal_objects_algo_la-getRepresentation.Plo
@AMDEP_TRUE@@am__fastdepCXX_FALSE@	$(AM_V_CXX)source='src/cpp/getRepresentation.cpp' object='src/cpp/libsciexternal_objects_algo_la-getRepresentation.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@	$(AM_V_CXX@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libsciexternal_objects_algo_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o src/cpp/libsciexternal_objects_algo_la-getRepresentation.lo `test -f 'src/cpp/getRepresentation.cpp' || echo '$(srcdir)/'`src/cpp/getRepresentation.cpp

src/cpp/libsciexternal_objects_algo_la-import.lo: src/cpp/import.cpp
@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libsciexternal_objects_algo_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT src/cpp/libsciexternal_objects_algo_la-import.lo -MD -MP -MF src/cpp/$(DEPDIR)/libsciexternal_objects_algo_la-import.Tpo -c -o src/cpp/libsciexternal_objects_algo_la-import.lo `test -f 'src/cpp/import.cpp' || echo '$(srcdir)/'`src/cpp/import.cpp
@am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) src/cpp/$(DEPDIR)/libsciexternal_objects_algo_la-import.Tpo src/cpp/$(DEPDIR)/libsciexternal_objects_algo_la-import.Plo
@AMDEP_TRUE@@am__fastdepCXX_FALSE@	$(AM_V_CXX)source='src/cpp/import.cpp' object='src/cpp/libsciexternal_objects_algo_la-import.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@	$(AM_V_CXX@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libsciexternal_objects_algo_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o src/cpp/libsciexternal_objects_algo_la-import.lo `test -f 'src/cpp/import.cpp' || echo '$(srcdir)/'`src/cpp/import.cpp

src/cpp/libsciexternal_objects_algo_la-invoke.lo: src/cpp/invoke.cpp
@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libsciexternal_objects_algo_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT src/cpp/libsciexternal_objects_algo_la-invoke.lo -MD -MP -MF src/cpp/$(DEPDIR)/libsciexternal_objects_algo_la-invoke.Tpo -c -o src/cpp/libsciexternal_objects_algo_la-invoke.lo `test -f 'src/cpp/invoke.cpp' || echo '$(srcdir)/'`src/cpp/invoke.cpp
@am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) src/cpp/$(DEPDIR)/libsciexternal_objects_algo_la-invoke.Tpo src/cpp/$(DEPDIR)/libsciexternal_objects_algo_la-invoke.Plo
@AMDEP_TRUE@@am__fastdepCXX_FALSE@	$(AM_V_CXX)source='src/cpp/invoke.cpp' object='src/cpp/libsciexternal_objects_algo_la-invoke.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@	$(AM_V_CXX@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libsciexternal_objects_algo_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o src/cpp/libsciexternal_objects_algo_la-invoke.lo `test -f 'src/cpp/invoke.cpp' || echo '$(srcdir)/'`src/cpp/invoke.cpp

src/cpp/libsciexternal_objects_algo_la-invoke_asref.lo: src/cpp/invoke_asref.cpp
@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libsciexternal_objects_algo_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT src/cpp/libsciexternal_objects_algo_la-invoke_asref.lo -MD -MP -MF src/cpp/$(DEPDIR)/libsciexternal_objects_algo_la-invoke_asref.Tpo -c -o src/cpp/libsciexternal_objects_algo_la-invoke_asref.lo `test -f 'src/cpp/invoke_asref.cpp' || echo '$(srcdir)/'`src/cpp/invoke_asref.cpp
@am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) src/cpp/$(DEPDIR)/libsciexternal_objects_algo_la-invoke_asref.Tpo src/cpp/$(DEPDIR)/libsciexternal_objects_algo_la-invoke_asref.Plo
@AMDEP_TRUE@@am__fastdepCXX_FALSE@	$(AM_V_CXX)source='src/cpp/invoke_asref.cpp' object='src/cpp/libsciexternal_objects_algo_la-invoke_asref.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@	$(AM_V_CXX@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libsciexternal_objects_algo_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o src/cpp/libsciexternal_objects_algo_la-invoke_asref.lo `test -f 'src/cpp/invoke_asref.cpp' || echo '$(srcdir)/'`src/cpp/invoke_asref.cpp

src/cpp/libsciexternal_objects_algo_la-invoke_lu.lo: src/cpp/invoke_lu.cpp
@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libsciexternal_objects_algo_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT src/cpp/libsciexternal_objects_algo_la-invoke_lu.lo -MD -MP -MF src/cpp/$(DEPDIR)/libsciexternal_objects_algo_la-invoke_lu.Tpo -c -o src/cpp/libsciexternal_objects_algo_la-invoke_lu.lo `test -f 'src/cpp/invoke_lu.cpp' || echo '$(srcdir)/'`src/cpp/invoke_lu.cpp
@am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) src/cpp/$(DEPDIR)/libsciexternal_objects_algo_la-invoke_lu.Tpo src/cpp/$(DEPDIR)/libsciexternal_objects_algo_la-invoke_lu.Plo
@AMDEP_TRUE@@am__fastdepCXX_FALSE@	$(AM_V_CXX)source='src/cpp/invoke_lu.cpp' object='src/cpp/libsciexternal_objects_algo_la-invoke_lu.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@	$(AM_V_CXX@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libsciexternal_objects_algo_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o src/cpp/libsciexternal_objects_algo_la-invoke_lu.lo `test -f 'src/cpp/invoke_lu.cpp' || echo '$(srcdir)/'`src/cpp/invoke_lu.cpp

src/cpp/libsciexternal_objects_algo_la-trace.lo: src/cpp/trace.cpp
@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libsciexternal_objects_algo_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT src/cpp/libsciexternal_objects_algo_la-trace.lo -MD -MP -MF src/cpp/$(DEPDIR)/libsciexternal_objects_algo_la-trace.Tpo -c -o src/cpp/libsciexternal_objects_algo_la-trace.lo `test -f 'src/cpp/trace.cpp' || echo '$(srcdir)/'`src/cpp/trace.cpp
@am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) src/cpp/$(DEPDIR)/libsciexternal_objects_algo_la-trace.Tpo src/cpp/$(DEPDIR)/libsciexternal_objects_algo_la-trace.Plo
@AMDEP_TRUE@@am__fastdepCXX_FALSE@	$(AM_V_CXX)source='src/cpp/trace.cpp' object='src/cpp/libsciexternal_objects_algo_la-trace.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@	$(AM_V_CXX@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libsciexternal_objects_algo_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o src/cpp/libsciexternal_objects_algo_la-trace.lo `test -f 'src/cpp/trace.cpp' || echo '$(srcdir)/'`src/cpp/trace.cpp

src/cpp/libsciexternal_objects_algo_la-newInstance.lo: src/cpp/newInstance.cpp
@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libsciexternal_objects_algo_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT src/cpp/libsciexternal_objects_algo_la-newInstance.lo -MD -MP -MF src/cpp/$(DEPDIR)/libsciexternal_objects_algo_la-newInstance.Tpo -c -o src/cpp/libsciexternal_objects_algo_la-newInstance.lo `test -f 'src/cpp/newInstance.cpp' || echo '$(srcdir)/'`src/cpp/newInstance.cpp
@am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) src/cpp/$(DEPDIR)/libsciexternal_objects_algo_la-newInstance.Tpo src/cpp/$(DEPDIR)/libsciexternal_objects_algo_la-newInstance.Plo
@AMDEP_TRUE@@am__fastdepCXX_FALSE@	$(AM_V_CXX)source='src/cpp/newInstance.cpp' object='src/cpp/libsciexternal_objects_algo_la-newInstance.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@	$(AM_V_CXX@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libsciexternal_objects_algo_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o src/cpp/libsciexternal_objects_algo_la-newInstance.lo `test -f 'src/cpp/newInstance.cpp' || echo '$(srcdir)/'`src/cpp/newInstance.cpp

src/cpp/libsciexternal_objects_algo_la-remove.lo: src/cpp/remove.cpp
@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libsciexternal_objects_algo_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT src/cpp/libsciexternal_objects_algo_la-remove.lo -MD -MP -MF src/cpp/$(DEPDIR)/libsciexternal_objects_algo_la-remove.Tpo -c -o src/cpp/libsciexternal_objects_algo_la-remove.lo `test -f 'src/cpp/remove.cpp' || echo '$(srcdir)/'`src/cpp/remove.cpp
@am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) src/cpp/$(DEPDIR)/libsciexternal_objects_algo_la-remove.Tpo src/cpp/$(DEPDIR)/libsciexternal_objects_algo_la-remove.Plo
@AMDEP_TRUE@@am__fastdepCXX_FALSE@	$(AM_V_CXX)source='src/cpp/remove.cpp' object='src/cpp/libsciexternal_objects_algo_la-remove.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@	$(AM_V_CXX@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libsciexternal_objects_algo_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o src/cpp/libsciexternal_objects_algo_la-remove.lo `test -f 'src/cpp/remove.cpp' || echo '$(srcdir)/'`src/cpp/remove.cpp

src/cpp/libsciexternal_objects_algo_la-setField.lo: src/cpp/setField.cpp
@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libsciexternal_objects_algo_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT src/cpp/libsciexternal_objects_algo_la-setField.lo -MD -MP -MF src/cpp/$(DEPDIR)/libsciexternal_objects_algo_la-setField.Tpo -c -o src/cpp/libsciexternal_objects_algo_la-setField.lo `test -f 'src/cpp/setField.cpp' || echo '$(srcdir)/'`src/cpp/setField.cpp
@am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) src/cpp/$(DEPDIR)/libsciexternal_objects_algo_la-setField.Tpo src/cpp/$(DEPDIR)/libsciexternal_objects_algo_la-setField.Plo
@AMDEP_TRUE@@am__fastdepCXX_FALSE@	$(AM_V_CXX)source='src/cpp/setField.cpp' object='src/cpp/libsciexternal_objects_algo_la-setField.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@	$(AM_V_CXX@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libsciexternal_objects_algo_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o src/cpp/libsciexternal_objects_algo_la-setField.lo `test -f 'src/cpp/setField.cpp' || echo '$(srcdir)/'`src/cpp/setField.cpp

src/cpp/libsciexternal_objects_algo_la-evalString.lo: src/cpp/evalString.cpp
@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libsciexternal_objects_algo_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT src/cpp/libsciexternal_objects_algo_la-evalString.lo -MD -MP -MF src/cpp/$(DEPDIR)/libsciexternal_objects_algo_la-evalString.Tpo -c -o src/cpp/libsciexternal_objects_algo_la-evalString.lo `test -f 'src/cpp/evalString.cpp' || echo '$(srcdir)/'`src/cpp/evalString.cpp
@am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) src/cpp/$(DEPDIR)/libsciexternal_objects_algo_la-evalString.Tpo src/cpp/$(DEPDIR)/libsciexternal_objects_algo_la-evalString.Plo
@AMDEP_TRUE@@am__fastdepCXX_FALSE@	$(AM_V_CXX)source='src/cpp/evalString.cpp' object='src/cpp/libsciexternal_objects_algo_la-evalString.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@	$(AM_V_CXX@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libsciexternal_objects_algo_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o src/cpp/libsciexternal_objects_algo_la-evalString.lo `test -f 'src/cpp/evalString.cpp' || echo '$(srcdir)/'`src/cpp/evalString.cpp

src/cpp/libsciexternal_objects_algo_la-addNamedVariable.lo: src/cpp/addNamedVariable.cpp
@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libsciexternal_objects_algo_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT src/cpp/libsciexternal_objects_algo_la-addNamedVariable.lo -MD -MP -MF src/cpp/$(DEPDIR)/libsciexternal_objects_algo_la-addNamedVariable.Tpo -c -o src/cpp/libsciexternal_objects_algo_la-addNamedVariable.lo `test -f 'src/cpp/addNamedVariable.cpp' || echo '$(srcdir)/'`src/cpp/addNamedVariable.cpp
@am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) src/cpp/$(DEPDIR)/libsciexternal_objects_algo_la-addNamedVariable.Tpo src/cpp/$(DEPDIR)/libsciexternal_objects_algo_la-addNamedVariable.Plo
@AMDEP_TRUE@@am__fastdepCXX_FALSE@	$(AM_V_CXX)source='src/cpp/addNamedVariable.cpp' object='src/cpp/libsciexternal_objects_algo_la-addNamedVariable.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@	$(AM_V_CXX@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libsciexternal_objects_algo_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o src/cpp/libsciexternal_objects_algo_la-addNamedVariable.lo `test -f 'src/cpp/addNamedVariable.cpp' || echo '$(srcdir)/'`src/cpp/addNamedVariable.cpp

src/cpp/libsciexternal_objects_algo_la-getNamedVariable.lo: src/cpp/getNamedVariable.cpp
@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libsciexternal_objects_algo_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT src/cpp/libsciexternal_objects_algo_la-getNamedVariable.lo -MD -MP -MF src/cpp/$(DEPDIR)/libsciexternal_objects_algo_la-getNamedVariable.Tpo -c -o src/cpp/libsciexternal_objects_algo_la-getNamedVariable.lo `test -f 'src/cpp/getNamedVariable.cpp' || echo '$(srcdir)/'`src/cpp/getNamedVariable.cpp
@am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) src/cpp/$(DEPDIR)/libsciexternal_objects_algo_la-getNamedVariable.Tpo src/cpp/$(DEPDIR)/libsciexternal_objects_algo_la-getNamedVariable.Plo
@AMDEP_TRUE@@am__fastdepCXX_FALSE@	$(AM_V_CXX)source='src/cpp/getNamedVariable.cpp' object='src/cpp/libsciexternal_objects_algo_la-getNamedVariable.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@	$(AM_V_CXX@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libsciexternal_objects_algo_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o src/cpp/libsciexternal_objects_algo_la-getNamedVariable.lo `test -f 'src/cpp/getNamedVariable.cpp' || echo '$(srcdir)/'`src/cpp/getNamedVariable.cpp

src/cpp/libsciexternal_objects_algo_la-unwrap.lo: src/cpp/unwrap.cpp
@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libsciexternal_objects_algo_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT src/cpp/libsciexternal_objects_algo_la-unwrap.lo -MD -MP -MF src/cpp/$(DEPDIR)/libsciexternal_objects_algo_la-unwrap.Tpo -c -o src/cpp/libsciexternal_objects_algo_la-unwrap.lo `test -f 'src/cpp/unwrap.cpp' || echo '$(srcdir)/'`src/cpp/unwrap.cpp
@am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) src/cpp/$(DEPDIR)/libsciexternal_objects_algo_la-unwrap.Tpo src/cpp/$(DEPDIR)/libsciexternal_objects_algo_la-unwrap.Plo
@AMDEP_TRUE@@am__fastdepCXX_FALSE@	$(AM_V_CXX)source='src/cpp/unwrap.cpp' object='src/cpp/libsciexternal_objects_algo_la-unwrap.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@	$(AM_V_CXX@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libsciexternal_objects_algo_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o src/cpp/libsciexternal_objects_algo_la-unwrap.lo `test -f 'src/cpp/unwrap.cpp' || echo '$(srcdir)/'`src/cpp/unwrap.cpp

src/cpp/libsciexternal_objects_algo_la-wrap.lo: src/cpp/wrap.cpp
@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libsciexternal_objects_algo_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT src/cpp/libsciexternal_objects_algo_la-wrap.lo -MD -MP -MF src/cpp/$(DEPDIR)/libsciexternal_objects_algo_la-wrap.Tpo -c -o src/cpp/libsciexternal_objects_algo_la-wrap.lo `test -f 'src/cpp/wrap.cpp' || echo '$(srcdir)/'`src/cpp/wrap.cpp
@am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) src/cpp/$(DEPDIR)/libsciexternal_objects_algo_la-wrap.Tpo src/cpp/$(DEPDIR)/libsciexternal_objects_algo_la-wrap.Plo
@AMDEP_TRUE@@am__fastdepCXX_FALSE@	$(AM_V_CXX)source='src/cpp/wrap.cpp' object='src/cpp/libsciexternal_objects_algo_la-wrap.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@	$(AM_V_CXX@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libsciexternal_objects_algo_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o src/cpp/libsciexternal_objects_algo_la-wrap.lo `test -f 'src/cpp/wrap.cpp' || echo '$(srcdir)/'`src/cpp/wrap.cpp

src/cpp/libsciexternal_objects_algo_la-unwrapremove.lo: src/cpp/unwrapremove.cpp
@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libsciexternal_objects_algo_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT src/cpp/libsciexternal_objects_algo_la-unwrapremove.lo -MD -MP -MF src/cpp/$(DEPDIR)/libsciexternal_objects_algo_la-unwrapremove.Tpo -c -o src/cpp/libsciexternal_objects_algo_la-unwrapremove.lo `test -f 'src/cpp/unwrapremove.cpp' || echo '$(srcdir)/'`src/cpp/unwrapremove.cpp
@am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) src/cpp/$(DEPDIR)/libsciexternal_objects_algo_la-unwrapremove.Tpo src/cpp/$(DEPDIR)/libsciexternal_objects_algo_la-unwrapremove.Plo
@AMDEP_TRUE@@am__fastdepCXX_FALSE@	$(AM_V_CXX)source='src/cpp/unwrapremove.cpp' object='src/cpp/libsciexternal_objects_algo_la-unwrapremove.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@	$(AM_V_CXX@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libsciexternal_objects_algo_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o src/cpp/libsciexternal_objects_algo_la-unwrapremove.lo `test -f 'src/cpp/unwrapremove.cpp' || echo '$(srcdir)/'`src/cpp/unwrapremove.cpp

src/cpp/libsciexternal_objects_algo_la-wrapAsRef.lo: src/cpp/wrapAsRef.cpp
@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libsciexternal_objects_algo_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT src/cpp/libsciexternal_objects_algo_la-wrapAsRef.lo -MD -MP -MF src/cpp/$(DEPDIR)/libsciexternal_objects_algo_la-wrapAsRef.Tpo -c -o src/cpp/libsciexternal_objects_algo_la-wrapAsRef.lo `test -f 'src/cpp/wrapAsRef.cpp' || echo '$(srcdir)/'`src/cpp/wrapAsRef.cpp
@am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) src/cpp/$(DEPDIR)/libsciexternal_objects_algo_la-wrapAsRef.Tpo src/cpp/$(DEPDIR)/libsciexternal_objects_algo_la-wrapAsRef.Plo
@AMDEP_TRUE@@am__fastdepCXX_FALSE@	$(AM_V_CXX)source='src/cpp/wrapAsRef.cpp' object='src/cpp/libsciexternal_objects_algo_la-wrapAsRef.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@	$(AM_V_CXX@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libsciexternal_objects_algo_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o src/cpp/libsciexternal_objects_algo_la-wrapAsRef.lo `test -f 'src/cpp/wrapAsRef.cpp' || echo '$(srcdir)/'`src/cpp/wrapAsRef.cpp

src/cpp/libsciexternal_objects_algo_la-invoker.lo: src/cpp/invoker.cpp
@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libsciexternal_objects_algo_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT src/cpp/libsciexternal_objects_algo_la-invoker.lo -MD -MP -MF src/cpp/$(DEPDIR)/libsciexternal_objects_algo_la-invoker.Tpo -c -o src/cpp/libsciexternal_objects_algo_la-invoker.lo `test -f 'src/cpp/invoker.cpp' || echo '$(srcdir)/'`src/cpp/invoker.cpp
@am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) src/cpp/$(DEPDIR)/libsciexternal_objects_algo_la-invoker.Tpo src/cpp/$(DEPDIR)/libsciexternal_objects_algo_la-invoker.Plo
@AMDEP_TRUE@@am__fastdepCXX_FALSE@	$(AM_V_CXX)source='src/cpp/invoker.cpp' object='src/cpp/libsciexternal_objects_algo_la-invoker.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@	$(AM_V_CXX@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libsciexternal_objects_algo_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o src/cpp/libsciexternal_objects_algo_la-invoker.lo `test -f 'src/cpp/invoker.cpp' || echo '$(srcdir)/'`src/cpp/invoker.cpp

src/cpp/libsciexternal_objects_algo_la-getEnvId.lo: src/cpp/getEnvId.cpp
@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libsciexternal_objects_algo_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT src/cpp/libsciexternal_objects_algo_la-getEnvId.lo -MD -MP -MF src/cpp/$(DEPDIR)/libsciexternal_objects_algo_la-getEnvId.Tpo -c -o src/cpp/libsciexternal_objects_algo_la-getEnvId.lo `test -f 'src/cpp/getEnvId.cpp' || echo '$(srcdir)/'`src/cpp/getEnvId.cpp
@am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) src/cpp/$(DEPDIR)/libsciexternal_objects_algo_la-getEnvId.Tpo src/cpp/$(DEPDIR)/libsciexternal_objects_algo_la-getEnvId.Plo
@AMDEP_TRUE@@am__fastdepCXX_FALSE@	$(AM_V_CXX)source='src/cpp/getEnvId.cpp' object='src/cpp/libsciexternal_objects_algo_la-getEnvId.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@	$(AM_V_CXX@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libsciexternal_objects_algo_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o src/cpp/libsciexternal_objects_algo_la-getEnvId.lo `test -f 'src/cpp/getEnvId.cpp' || echo '$(srcdir)/'`src/cpp/getEnvId.cpp

src/cpp/libsciexternal_objects_algo_la-ScilabOptionsSetter.lo: src/cpp/ScilabOptionsSetter.cpp
@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libsciexternal_objects_algo_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT src/cpp/libsciexternal_objects_algo_la-ScilabOptionsSetter.lo -MD -MP -MF src/cpp/$(DEPDIR)/libsciexternal_objects_algo_la-ScilabOptionsSetter.Tpo -c -o src/cpp/libsciexternal_objects_algo_la-ScilabOptionsSetter.lo `test -f 'src/cpp/ScilabOptionsSetter.cpp' || echo '$(srcdir)/'`src/cpp/ScilabOptionsSetter.cpp
@am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) src/cpp/$(DEPDIR)/libsciexternal_objects_algo_la-ScilabOptionsSetter.Tpo src/cpp/$(DEPDIR)/libsciexternal_objects_algo_la-ScilabOptionsSetter.Plo
@AMDEP_TRUE@@am__fastdepCXX_FALSE@	$(AM_V_CXX)source='src/cpp/ScilabOptionsSetter.cpp' object='src/cpp/libsciexternal_objects_algo_la-ScilabOptionsSetter.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@	$(AM_V_CXX@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libsciexternal_objects_algo_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o src/cpp/libsciexternal_objects_algo_la-ScilabOptionsSetter.lo `test -f 'src/cpp/ScilabOptionsSetter.cpp' || echo '$(srcdir)/'`src/cpp/ScilabOptionsSetter.cpp

src/cpp/libsciexternal_objects_algo_la-ScilabAutoCleaner.lo: src/cpp/ScilabAutoCleaner.cpp
@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libsciexternal_objects_algo_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT src/cpp/libsciexternal_objects_algo_la-ScilabAutoCleaner.lo -MD -MP -MF src/cpp/$(DEPDIR)/libsciexternal_objects_algo_la-ScilabAutoCleaner.Tpo -c -o src/cpp/libsciexternal_objects_algo_la-ScilabAutoCleaner.lo `test -f 'src/cpp/ScilabAutoCleaner.cpp' || echo '$(srcdir)/'`src/cpp/ScilabAutoCleaner.cpp
@am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) src/cpp/$(DEPDIR)/libsciexternal_objects_algo_la-ScilabAutoCleaner.Tpo src/cpp/$(DEPDIR)/libsciexternal_objects_algo_la-ScilabAutoCleaner.Plo
@AMDEP_TRUE@@am__fastdepCXX_FALSE@	$(AM_V_CXX)source='src/cpp/ScilabAutoCleaner.cpp' object='src/cpp/libsciexternal_objects_algo_la-ScilabAutoCleaner.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@	$(AM_V_CXX@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libsciexternal_objects_algo_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o src/cpp/libsciexternal_objects_algo_la-ScilabAutoCleaner.lo `test -f 'src/cpp/ScilabAutoCleaner.cpp' || echo '$(srcdir)/'`src/cpp/ScilabAutoCleaner.cpp

src/cpp/libsciexternal_objects_algo_la-ExternalObjectsFunction.lo: src/cpp/ExternalObjectsFunction.cpp
@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libsciexternal_objects_algo_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT src/cpp/libsciexternal_objects_algo_la-ExternalObjectsFunction.lo -MD -MP -MF src/cpp/$(DEPDIR)/libsciexternal_objects_algo_la-ExternalObjectsFunction.Tpo -c -o src/cpp/libsciexternal_objects_algo_la-ExternalObjectsFunction.lo `test -f 'src/cpp/ExternalObjectsFunction.cpp' || echo '$(srcdir)/'`src/cpp/ExternalObjectsFunction.cpp
@am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) src/cpp/$(DEPDIR)/libsciexternal_objects_algo_la-ExternalObjectsFunction.Tpo src/cpp/$(DEPDIR)/libsciexternal_objects_algo_la-ExternalObjectsFunction.Plo
@AMDEP_TRUE@@am__fastdepCXX_FALSE@	$(AM_V_CXX)source='src/cpp/ExternalObjectsFunction.cpp' object='src/cpp/libsciexternal_objects_algo_la-ExternalObjectsFunction.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@	$(AM_V_CXX@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libsciexternal_objects_algo_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o src/cpp/libsciexternal_objects_algo_la-ExternalObjectsFunction.lo `test -f 'src/cpp/ExternalObjectsFunction.cpp' || echo '$(srcdir)/'`src/cpp/ExternalObjectsFunction.cpp

src/cpp/libsciexternal_objects_algo_la-wrapInFloat.lo: src/cpp/wrapInFloat.cpp
@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libsciexternal_objects_algo_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT src/cpp/libsciexternal_objects_algo_la-wrapInFloat.lo -MD -MP -MF src/cpp/$(DEPDIR)/libsciexternal_objects_algo_la-wrapInFloat.Tpo -c -o src/cpp/libsciexternal_objects_algo_la-wrapInFloat.lo `test -f 'src/cpp/wrapInFloat.cpp' || echo '$(srcdir)/'`src/cpp/wrapInFloat.cpp
@am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) src/cpp/$(DEPDIR)/libsciexternal_objects_algo_la-wrapInFloat.Tpo src/cpp/$(DEPDIR)/libsciexternal_objects_algo_la-wrapInFloat.Plo
@AMDEP_TRUE@@am__fastdepCXX_FALSE@	$(AM_V_CXX)source='src/cpp/wrapInFloat.cpp' object='src/cpp/libsciexternal_objects_algo_la-wrapInFloat.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@	$(AM_V_CXX@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libsciexternal_objects_algo_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o src/cpp/libsciexternal_objects_algo_la-wrapInFloat.lo `test -f 'src/cpp/wrapInFloat.cpp' || echo '$(srcdir)/'`src/cpp/wrapInFloat.cpp

sci_gateway/cpp/libsciexternal_objects_la-sci_percent_EObj_e.lo: sci_gateway/cpp/sci_percent_EObj_e.cpp
@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libsciexternal_objects_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT sci_gateway/cpp/libsciexternal_objects_la-sci_percent_EObj_e.lo -MD -MP -MF sci_gateway/cpp/$(DEPDIR)/libsciexternal_objects_la-sci_percent_EObj_e.Tpo -c -o sci_gateway/cpp/libsciexternal_objects_la-sci_percent_EObj_e.lo `test -f 'sci_gateway/cpp/sci_percent_EObj_e.cpp' || echo '$(srcdir)/'`sci_gateway/cpp/sci_percent_EObj_e.cpp
@am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) sci_gateway/cpp/$(DEPDIR)/libsciexternal_objects_la-sci_percent_EObj_e.Tpo sci_gateway/cpp/$(DEPDIR)/libsciexternal_objects_la-sci_percent_EObj_e.Plo
@AMDEP_TRUE@@am__fastdepCXX_FALSE@	$(AM_V_CXX)source='sci_gateway/cpp/sci_percent_EObj_e.cpp' object='sci_gateway/cpp/libsciexternal_objects_la-sci_percent_EObj_e.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@	$(AM_V_CXX@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libsciexternal_objects_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o sci_gateway/cpp/libsciexternal_objects_la-sci_percent_EObj_e.lo `test -f 'sci_gateway/cpp/sci_percent_EObj_e.cpp' || echo '$(srcdir)/'`sci_gateway/cpp/sci_percent_EObj_e.cpp

sci_gateway/cpp/libsciexternal_objects_la-sci_percent_EObj_p.lo: sci_gateway/cpp/sci_percent_EObj_p.cpp
@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libsciexternal_objects_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT sci_gateway/cpp/libsciexternal_objects_la-sci_percent_EObj_p.lo -MD -MP -MF sci_gateway/cpp/$(DEPDIR)/libsciexternal_objects_la-sci_percent_EObj_p.Tpo -c -o sci_gateway/cpp/libsciexternal_objects_la-sci_percent_EObj_p.lo `test -f 'sci_gateway/cpp/sci_percent_EObj_p.cpp' || echo '$(srcdir)/'`sci_gateway/cpp/sci_percent_EObj_p.cpp
@am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) sci_gateway/cpp/$(DEPDIR)/libsciexternal_objects_la-sci_percent_EObj_p.Tpo sci_gateway/cpp/$(DEPDIR)/libsciexternal_objects_la-sci_percent_EObj_p.Plo
@AMDEP_TRUE@@am__fastdepCXX_FALSE@	$(AM_V_CXX)source='sci_gateway/cpp/sci_percent_EObj_p.cpp' object='sci_gateway/cpp/libsciexternal_objects_la-sci_percent_EObj_p.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@	$(AM_V_CXX@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libsciexternal_objects_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o sci_gateway/cpp/libsciexternal_objects_la-sci_percent_EObj_p.lo `test -f 'sci_gateway/cpp/sci_percent_EObj_p.cpp' || echo '$(srcdir)/'`sci_gateway/cpp/sci_percent_EObj_p.cpp

sci_gateway/cpp/libsciexternal_objects_la-sci_percent_foo_i_EObj.lo: sci_gateway/cpp/sci_percent_foo_i_EObj.cpp
@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libsciexternal_objects_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT sci_gateway/cpp/libsciexternal_objects_la-sci_percent_foo_i_EObj.lo -MD -MP -MF sci_gateway/cpp/$(DEPDIR)/libsciexternal_objects_la-sci_percent_foo_i_EObj.Tpo -c -o sci_gateway/cpp/libsciexternal_objects_la-sci_percent_foo_i_EObj.lo `test -f 'sci_gateway/cpp/sci_percent_foo_i_EObj.cpp' || echo '$(srcdir)/'`sci_gateway/cpp/sci_percent_foo_i_EObj.cpp
@am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) sci_gateway/cpp/$(DEPDIR)/libsciexternal_objects_la-sci_percent_foo_i_EObj.Tpo sci_gateway/cpp/$(DEPDIR)/libsciexternal_objects_la-sci_percent_foo_i_EObj.Plo
@AMDEP_TRUE@@am__fastdepCXX_FALSE@	$(AM_V_CXX)source='sci_gateway/cpp/sci_percent_foo_i_EObj.cpp' object='sci_gateway/cpp/libsciexternal_objects_la-sci_percent_foo_i_EObj.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@	$(AM_V_CXX@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libsciexternal_objects_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o sci_gateway/cpp/libsciexternal_objects_la-sci_percent_foo_i_EObj.lo `test -f 'sci_gateway/cpp/sci_percent_foo_i_EObj.cpp' || echo '$(srcdir)/'`sci_gateway/cpp/sci_percent_foo_i_EObj.cpp

sci_gateway/cpp/libsciexternal_objects_la-sci_percent_EClass_e.lo: sci_gateway/cpp/sci_percent_EClass_e.cpp
@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libsciexternal_objects_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT sci_gateway/cpp/libsciexternal_objects_la-sci_percent_EClass_e.lo -MD -MP -MF sci_gateway/cpp/$(DEPDIR)/libsciexternal_objects_la-sci_percent_EClass_e.Tpo -c -o sci_gateway/cpp/libsciexternal_objects_la-sci_percent_EClass_e.lo `test -f 'sci_gateway/cpp/sci_percent_EClass_e.cpp' || echo '$(srcdir)/'`sci_gateway/cpp/sci_percent_EClass_e.cpp
@am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) sci_gateway/cpp/$(DEPDIR)/libsciexternal_objects_la-sci_percent_EClass_e.Tpo sci_gateway/cpp/$(DEPDIR)/libsciexternal_objects_la-sci_percent_EClass_e.Plo
@AMDEP_TRUE@@am__fastdepCXX_FALSE@	$(AM_V_CXX)source='sci_gateway/cpp/sci_percent_EClass_e.cpp' object='sci_gateway/cpp/libsciexternal_objects_la-sci_percent_EClass_e.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@	$(AM_V_CXX@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libsciexternal_objects_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o sci_gateway/cpp/libsciexternal_objects_la-sci_percent_EClass_e.lo `test -f 'sci_gateway/cpp/sci_percent_EClass_e.cpp' || echo '$(srcdir)/'`sci_gateway/cpp/sci_percent_EClass_e.cpp

sci_gateway/cpp/libsciexternal_objects_la-sci_percent_EObj_a_foo.lo: sci_gateway/cpp/sci_percent_EObj_a_foo.cpp
@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libsciexternal_objects_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT sci_gateway/cpp/libsciexternal_objects_la-sci_percent_EObj_a_foo.lo -MD -MP -MF sci_gateway/cpp/$(DEPDIR)/libsciexternal_objects_la-sci_percent_EObj_a_foo.Tpo -c -o sci_gateway/cpp/libsciexternal_objects_la-sci_percent_EObj_a_foo.lo `test -f 'sci_gateway/cpp/sci_percent_EObj_a_foo.cpp' || echo '$(srcdir)/'`sci_gateway/cpp/sci_percent_EObj_a_foo.cpp
@am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) sci_gateway/cpp/$(DEPDIR)/libsciexternal_objects_la-sci_percent_EObj_a_foo.Tpo sci_gateway/cpp/$(DEPDIR)/libsciexternal_objects_la-sci_percent_EObj_a_foo.Plo
@AMDEP_TRUE@@am__fastdepCXX_FALSE@	$(AM_V_CXX)source='sci_gateway/cpp/sci_percent_EObj_a_foo.cpp' object='sci_gateway/cpp/libsciexternal_objects_la-sci_percent_EObj_a_foo.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@	$(AM_V_CXX@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libsciexternal_objects_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o sci_gateway/cpp/libsciexternal_objects_la-sci_percent_EObj_a_foo.lo `test -f 'sci_gateway/cpp/sci_percent_EObj_a_foo.cpp' || echo '$(srcdir)/'`sci_gateway/cpp/sci_percent_EObj_a_foo.cpp

sci_gateway/cpp/libsciexternal_objects_la-sci_percent_EObj_d_foo.lo: sci_gateway/cpp/sci_percent_EObj_d_foo.cpp
@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libsciexternal_objects_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT sci_gateway/cpp/libsciexternal_objects_la-sci_percent_EObj_d_foo.lo -MD -MP -MF sci_gateway/cpp/$(DEPDIR)/libsciexternal_objects_la-sci_percent_EObj_d_foo.Tpo -c -o sci_gateway/cpp/libsciexternal_objects_la-sci_percent_EObj_d_foo.lo `test -f 'sci_gateway/cpp/sci_percent_EObj_d_foo.cpp' || echo '$(srcdir)/'`sci_gateway/cpp/sci_percent_EObj_d_foo.cpp
@am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) sci_gateway/cpp/$(DEPDIR)/libsciexternal_objects_la-sci_percent_EObj_d_foo.Tpo sci_gateway/cpp/$(DEPDIR)/libsciexternal_objects_la-sci_percent_EObj_d_foo.Plo
@AMDEP_TRUE@@am__fastdepCXX_FALSE@	$(AM_V_CXX)source='sci_gateway/cpp/sci_percent_EObj_d_foo.cpp' object='sci_gateway/cpp/libsciexternal_objects_la-sci_percent_EObj_d_foo.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@	$(AM_V_CXX@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libsciexternal_objects_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o sci_gateway/cpp/libsciexternal_objects_la-sci_percent_EObj_d_foo.lo `test -f 'sci_gateway/cpp/sci_percent_EObj_d_foo.cpp' || echo '$(srcdir)/'`sci_gateway/cpp/sci_percent_EObj_d_foo.cpp

sci_gateway/cpp/libsciexternal_objects_la-sci_percent_EObj_g_foo.lo: sci_gateway/cpp/sci_percent_EObj_g_foo.cpp
@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libsciexternal_objects_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT sci_gateway/cpp/libsciexternal_objects_la-sci_percent_EObj_g_foo.lo -MD -MP -MF sci_gateway/cpp/$(DEPDIR)/libsciexternal_objects_la-sci_percent_EObj_g_foo.Tpo -c -o sci_gateway/cpp/libsciexternal_objects_la-sci_percent_EObj_g_foo.lo `test -f 'sci_gateway/cpp/sci_percent_EObj_g_foo.cpp' || echo '$(srcdir)/'`sci_gateway/cpp/sci_percent_EObj_g_foo.cpp
@am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) sci_gateway/cpp/$(DEPDIR)/libsciexternal_objects_la-sci_percent_EObj_g_foo.Tpo sci_gateway/cpp/$(DEPDIR)/libsciexternal_objects_la-sci_percent_EObj_g_foo.Plo
@AMDEP_TRUE@@am__fastdepCXX_FALSE@	$(AM_V_CXX)source='sci_gateway/cpp/sci_percent_EObj_g_foo.cpp' object='sci_gateway/cpp/libsciexternal_objects_la-sci_percent_EObj_g_foo.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@	$(AM_V_CXX@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libsciexternal_objects_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o sci_gateway/cpp/libsciexternal_objects_la-sci_percent_EObj_g_foo.lo `test -f 'sci_gateway/cpp/sci_percent_EObj_g_foo.cpp' || echo '$(srcdir)/'`sci_gateway/cpp/sci_percent_EObj_g_foo.cpp

sci_gateway/cpp/libsciexternal_objects_la-sci_percent_EObj_h_foo.lo: sci_gateway/cpp/sci_percent_EObj_h_foo.cpp
@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libsciexternal_objects_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT sci_gateway/cpp/libsciexternal_objects_la-sci_percent_EObj_h_foo.lo -MD -MP -MF sci_gateway/cpp/$(DEPDIR)/libsciexternal_objects_la-sci_percent_EObj_h_foo.Tpo -c -o sci_gateway/cpp/libsciexternal_objects_la-sci_percent_EObj_h_foo.lo `test -f 'sci_gateway/cpp/sci_percent_EObj_h_foo.cpp' || echo '$(srcdir)/'`sci_gateway/cpp/sci_percent_EObj_h_foo.cpp
@am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) sci_gateway/cpp/$(DEPDIR)/libsciexternal_objects_la-sci_percent_EObj_h_foo.Tpo sci_gateway/cpp/$(DEPDIR)/libsciexternal_objects_la-sci_percent_EObj_h_foo.Plo
@AMDEP_TRUE@@am__fastdepCXX_FALSE@	$(AM_V_CXX)source='sci_gateway/cpp/sci_percent_EObj_h_foo.cpp' object='sci_gateway/cpp/libsciexternal_objects_la-sci_percent_EObj_h_foo.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@	$(AM_V_CXX@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libsciexternal_objects_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o sci_gateway/cpp/libsciexternal_objects_la-sci_percent_EObj_h_foo.lo `test -f 'sci_gateway/cpp/sci_percent_EObj_h_foo.cpp' || echo '$(srcdir)/'`sci_gateway/cpp/sci_percent_EObj_h_foo.cpp

sci_gateway/cpp/libsciexternal_objects_la-sci_percent_EObj_j_foo.lo: sci_gateway/cpp/sci_percent_EObj_j_foo.cpp
@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libsciexternal_objects_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT sci_gateway/cpp/libsciexternal_objects_la-sci_percent_EObj_j_foo.lo -MD -MP -MF sci_gateway/cpp/$(DEPDIR)/libsciexternal_objects_la-sci_percent_EObj_j_foo.Tpo -c -o sci_gateway/cpp/libsciexternal_objects_la-sci_percent_EObj_j_foo.lo `test -f 'sci_gateway/cpp/sci_percent_EObj_j_foo.cpp' || echo '$(srcdir)/'`sci_gateway/cpp/sci_percent_EObj_j_foo.cpp
@am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) sci_gateway/cpp/$(DEPDIR)/libsciexternal_objects_la-sci_percent_EObj_j_foo.Tpo sci_gateway/cpp/$(DEPDIR)/libsciexternal_objects_la-sci_percent_EObj_j_foo.Plo
@AMDEP_TRUE@@am__fastdepCXX_FALSE@	$(AM_V_CXX)source='sci_gateway/cpp/sci_percent_EObj_j_foo.cpp' object='sci_gateway/cpp/libsciexternal_objects_la-sci_percent_EObj_j_foo.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@	$(AM_V_CXX@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libsciexternal_objects_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o sci_gateway/cpp/libsciexternal_objects_la-sci_percent_EObj_j_foo.lo `test -f 'sci_gateway/cpp/sci_percent_EObj_j_foo.cpp' || echo '$(srcdir)/'`sci_gateway/cpp/sci_percent_EObj_j_foo.cpp

sci_gateway/cpp/libsciexternal_objects_la-sci_percent_EObj_k_foo.lo: sci_gateway/cpp/sci_percent_EObj_k_foo.cpp
@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libsciexternal_objects_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT sci_gateway/cpp/libsciexternal_objects_la-sci_percent_EObj_k_foo.lo -MD -MP -MF sci_gateway/cpp/$(DEPDIR)/libsciexternal_objects_la-sci_percent_EObj_k_foo.Tpo -c -o sci_gateway/cpp/libsciexternal_objects_la-sci_percent_EObj_k_foo.lo `test -f 'sci_gateway/cpp/sci_percent_EObj_k_foo.cpp' || echo '$(srcdir)/'`sci_gateway/cpp/sci_percent_EObj_k_foo.cpp
@am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) sci_gateway/cpp/$(DEPDIR)/libsciexternal_objects_la-sci_percent_EObj_k_foo.Tpo sci_gateway/cpp/$(DEPDIR)/libsciexternal_objects_la-sci_percent_EObj_k_foo.Plo
@AMDEP_TRUE@@am__fastdepCXX_FALSE@	$(AM_V_CXX)source='sci_gateway/cpp/sci_percent_EObj_k_foo.cpp' object='sci_gateway/cpp/libsciexternal_objects_la-sci_percent_EObj_k_foo.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@	$(AM_V_CXX@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libsciexternal_objects_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o sci_gateway/cpp/libsciexternal_objects_la-sci_percent_EObj_k_foo.lo `test -f 'sci_gateway/cpp/sci_percent_EObj_k_foo.cpp' || echo '$(srcdir)/'`sci_gateway/cpp/sci_percent_EObj_k_foo.cpp

sci_gateway/cpp/libsciexternal_objects_la-sci_percent_EObj_l_foo.lo: sci_gateway/cpp/sci_percent_EObj_l_foo.cpp
@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libsciexternal_objects_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT sci_gateway/cpp/libsciexternal_objects_la-sci_percent_EObj_l_foo.lo -MD -MP -MF sci_gateway/cpp/$(DEPDIR)/libsciexternal_objects_la-sci_percent_EObj_l_foo.Tpo -c -o sci_gateway/cpp/libsciexternal_objects_la-sci_percent_EObj_l_foo.lo `test -f 'sci_gateway/cpp/sci_percent_EObj_l_foo.cpp' || echo '$(srcdir)/'`sci_gateway/cpp/sci_percent_EObj_l_foo.cpp
@am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) sci_gateway/cpp/$(DEPDIR)/libsciexternal_objects_la-sci_percent_EObj_l_foo.Tpo sci_gateway/cpp/$(DEPDIR)/libsciexternal_objects_la-sci_percent_EObj_l_foo.Plo
@AMDEP_TRUE@@am__fastdepCXX_FALSE@	$(AM_V_CXX)source='sci_gateway/cpp/sci_percent_EObj_l_foo.cpp' object='sci_gateway/cpp/libsciexternal_objects_la-sci_percent_EObj_l_foo.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@	$(AM_V_CXX@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libsciexternal_objects_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o sci_gateway/cpp/libsciexternal_objects_la-sci_percent_EObj_l_foo.lo `test -f 'sci_gateway/cpp/sci_percent_EObj_l_foo.cpp' || echo '$(srcdir)/'`sci_gateway/cpp/sci_percent_EObj_l_foo.cpp

sci_gateway/cpp/libsciexternal_objects_la-sci_percent_EObj_m_foo.lo: sci_gateway/cpp/sci_percent_EObj_m_foo.cpp
@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libsciexternal_objects_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT sci_gateway/cpp/libsciexternal_objects_la-sci_percent_EObj_m_foo.lo -MD -MP -MF sci_gateway/cpp/$(DEPDIR)/libsciexternal_objects_la-sci_percent_EObj_m_foo.Tpo -c -o sci_gateway/cpp/libsciexternal_objects_la-sci_percent_EObj_m_foo.lo `test -f 'sci_gateway/cpp/sci_percent_EObj_m_foo.cpp' || echo '$(srcdir)/'`sci_gateway/cpp/sci_percent_EObj_m_foo.cpp
@am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) sci_gateway/cpp/$(DEPDIR)/libsciexternal_objects_la-sci_percent_EObj_m_foo.Tpo sci_gateway/cpp/$(DEPDIR)/libsciexternal_objects_la-sci_percent_EObj_m_foo.Plo
@AMDEP_TRUE@@am__fastdepCXX_FALSE@	$(AM_V_CXX)source='sci_gateway/cpp/sci_percent_EObj_m_foo.cpp' object='sci_gateway/cpp/libsciexternal_objects_la-sci_percent_EObj_m_foo.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@	$(AM_V_CXX@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libsciexternal_objects_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o sci_gateway/cpp/libsciexternal_objects_la-sci_percent_EObj_m_foo.lo `test -f 'sci_gateway/cpp/sci_percent_EObj_m_foo.cpp' || echo '$(srcdir)/'`sci_gateway/cpp/sci_percent_EObj_m_foo.cpp

sci_gateway/cpp/libsciexternal_objects_la-sci_percent_EObj_n_foo.lo: sci_gateway/cpp/sci_percent_EObj_n_foo.cpp
@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libsciexternal_objects_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT sci_gateway/cpp/libsciexternal_objects_la-sci_percent_EObj_n_foo.lo -MD -MP -MF sci_gateway/cpp/$(DEPDIR)/libsciexternal_objects_la-sci_percent_EObj_n_foo.Tpo -c -o sci_gateway/cpp/libsciexternal_objects_la-sci_percent_EObj_n_foo.lo `test -f 'sci_gateway/cpp/sci_percent_EObj_n_foo.cpp' || echo '$(srcdir)/'`sci_gateway/cpp/sci_percent_EObj_n_foo.cpp
@am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) sci_gateway/cpp/$(DEPDIR)/libsciexternal_objects_la-sci_percent_EObj_n_foo.Tpo sci_gateway/cpp/$(DEPDIR)/libsciexternal_objects_la-sci_percent_EObj_n_foo.Plo
@AMDEP_TRUE@@am__fastdepCXX_FALSE@	$(AM_V_CXX)source='sci_gateway/cpp/sci_percent_EObj_n_foo.cpp' object='sci_gateway/cpp/libsciexternal_objects_la-sci_percent_EObj_n_foo.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@	$(AM_V_CXX@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libsciexternal_objects_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o sci_gateway/cpp/libsciexternal_objects_la-sci_percent_EObj_n_foo.lo `test -f 'sci_gateway/cpp/sci_percent_EObj_n_foo.cpp' || echo '$(srcdir)/'`sci_gateway/cpp/sci_percent_EObj_n_foo.cpp

sci_gateway/cpp/libsciexternal_objects_la-sci_percent_EObj_o_foo.lo: sci_gateway/cpp/sci_percent_EObj_o_foo.cpp
@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libsciexternal_objects_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT sci_gateway/cpp/libsciexternal_objects_la-sci_percent_EObj_o_foo.lo -MD -MP -MF sci_gateway/cpp/$(DEPDIR)/libsciexternal_objects_la-sci_percent_EObj_o_foo.Tpo -c -o sci_gateway/cpp/libsciexternal_objects_la-sci_percent_EObj_o_foo.lo `test -f 'sci_gateway/cpp/sci_percent_EObj_o_foo.cpp' || echo '$(srcdir)/'`sci_gateway/cpp/sci_percent_EObj_o_foo.cpp
@am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) sci_gateway/cpp/$(DEPDIR)/libsciexternal_objects_la-sci_percent_EObj_o_foo.Tpo sci_gateway/cpp/$(DEPDIR)/libsciexternal_objects_la-sci_percent_EObj_o_foo.Plo
@AMDEP_TRUE@@am__fastdepCXX_FALSE@	$(AM_V_CXX)source='sci_gateway/cpp/sci_percent_EObj_o_foo.cpp' object='sci_gateway/cpp/libsciexternal_objects_la-sci_percent_EObj_o_foo.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@	$(AM_V_CXX@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libsciexternal_objects_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o sci_gateway/cpp/libsciexternal_objects_la-sci_percent_EObj_o_foo.lo `test -f 'sci_gateway/cpp/sci_percent_EObj_o_foo.cpp' || echo '$(srcdir)/'`sci_gateway/cpp/sci_percent_EObj_o_foo.cpp

sci_gateway/cpp/libsciexternal_objects_la-sci_percent_EObj_p_foo.lo: sci_gateway/cpp/sci_percent_EObj_p_foo.cpp
@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libsciexternal_objects_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT sci_gateway/cpp/libsciexternal_objects_la-sci_percent_EObj_p_foo.lo -MD -MP -MF sci_gateway/cpp/$(DEPDIR)/libsciexternal_objects_la-sci_percent_EObj_p_foo.Tpo -c -o sci_gateway/cpp/libsciexternal_objects_la-sci_percent_EObj_p_foo.lo `test -f 'sci_gateway/cpp/sci_percent_EObj_p_foo.cpp' || echo '$(srcdir)/'`sci_gateway/cpp/sci_percent_EObj_p_foo.cpp
@am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) sci_gateway/cpp/$(DEPDIR)/libsciexternal_objects_la-sci_percent_EObj_p_foo.Tpo sci_gateway/cpp/$(DEPDIR)/libsciexternal_objects_la-sci_percent_EObj_p_foo.Plo
@AMDEP_TRUE@@am__fastdepCXX_FALSE@	$(AM_V_CXX)source='sci_gateway/cpp/sci_percent_EObj_p_foo.cpp' object='sci_gateway/cpp/libsciexternal_objects_la-sci_percent_EObj_p_foo.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@	$(AM_V_CXX@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libsciexternal_objects_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o sci_gateway/cpp/libsciexternal_objects_la-sci_percent_EObj_p_foo.lo `test -f 'sci_gateway/cpp/sci_percent_EObj_p_foo.cpp' || echo '$(srcdir)/'`sci_gateway/cpp/sci_percent_EObj_p_foo.cpp

sci_gateway/cpp/libsciexternal_objects_la-sci_percent_EObj_q_foo.lo: sci_gateway/cpp/sci_percent_EObj_q_foo.cpp
@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libsciexternal_objects_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT sci_gateway/cpp/libsciexternal_objects_la-sci_percent_EObj_q_foo.lo -MD -MP -MF sci_gateway/cpp/$(DEPDIR)/libsciexternal_objects_la-sci_percent_EObj_q_foo.Tpo -c -o sci_gateway/cpp/libsciexternal_objects_la-sci_percent_EObj_q_foo.lo `test -f 'sci_gateway/cpp/sci_percent_EObj_q_foo.cpp' || echo '$(srcdir)/'`sci_gateway/cpp/sci_percent_EObj_q_foo.cpp
@am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) sci_gateway/cpp/$(DEPDIR)/libsciexternal_objects_la-sci_percent_EObj_q_foo.Tpo sci_gateway/cpp/$(DEPDIR)/libsciexternal_objects_la-sci_percent_EObj_q_foo.Plo
@AMDEP_TRUE@@am__fastdepCXX_FALSE@	$(AM_V_CXX)source='sci_gateway/cpp/sci_percent_EObj_q_foo.cpp' object='sci_gateway/cpp/libsciexternal_objects_la-sci_percent_EObj_q_foo.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@	$(AM_V_CXX@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libsciexternal_objects_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o sci_gateway/cpp/libsciexternal_objects_la-sci_percent_EObj_q_foo.lo `test -f 'sci_gateway/cpp/sci_percent_EObj_q_foo.cpp' || echo '$(srcdir)/'`sci_gateway/cpp/sci_percent_EObj_q_foo.cpp

sci_gateway/cpp/libsciexternal_objects_la-sci_percent_EObj_r_foo.lo: sci_gateway/cpp/sci_percent_EObj_r_foo.cpp
@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libsciexternal_objects_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT sci_gateway/cpp/libsciexternal_objects_la-sci_percent_EObj_r_foo.lo -MD -MP -MF sci_gateway/cpp/$(DEPDIR)/libsciexternal_objects_la-sci_percent_EObj_r_foo.Tpo -c -o sci_gateway/cpp/libsciexternal_objects_la-sci_percent_EObj_r_foo.lo `test -f 'sci_gateway/cpp/sci_percent_EObj_r_foo.cpp' || echo '$(srcdir)/'`sci_gateway/cpp/sci_percent_EObj_r_foo.cpp
@am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) sci_gateway/cpp/$(DEPDIR)/libsciexternal_objects_la-sci_percent_EObj_r_foo.Tpo sci_gateway/cpp/$(DEPDIR)/libsciexternal_objects_la-sci_percent_EObj_r_foo.Plo
@AMDEP_TRUE@@am__fastdepCXX_FALSE@	$(AM_V_CXX)source='sci_gateway/cpp/sci_percent_EObj_r_foo.cpp' object='sci_gateway/cpp/libsciexternal_objects_la-sci_percent_EObj_r_foo.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@	$(AM_V_CXX@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libsciexternal_objects_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o sci_gateway/cpp/libsciexternal_objects_la-sci_percent_EObj_r_foo.lo `test -f 'sci_gateway/cpp/sci_percent_EObj_r_foo.cpp' || echo '$(srcdir)/'`sci_gateway/cpp/sci_percent_EObj_r_foo.cpp

sci_gateway/cpp/libsciexternal_objects_la-sci_percent_EObj_s_foo.lo: sci_gateway/cpp/sci_percent_EObj_s_foo.cpp
@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libsciexternal_objects_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT sci_gateway/cpp/libsciexternal_objects_la-sci_percent_EObj_s_foo.lo -MD -MP -MF sci_gateway/cpp/$(DEPDIR)/libsciexternal_objects_la-sci_percent_EObj_s_foo.Tpo -c -o sci_gateway/cpp/libsciexternal_objects_la-sci_percent_EObj_s_foo.lo `test -f 'sci_gateway/cpp/sci_percent_EObj_s_foo.cpp' || echo '$(srcdir)/'`sci_gateway/cpp/sci_percent_EObj_s_foo.cpp
@am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) sci_gateway/cpp/$(DEPDIR)/libsciexternal_objects_la-sci_percent_EObj_s_foo.Tpo sci_gateway/cpp/$(DEPDIR)/libsciexternal_objects_la-sci_percent_EObj_s_foo.Plo
@AMDEP_TRUE@@am__fastdepCXX_FALSE@	$(AM_V_CXX)source='sci_gateway/cpp/sci_percent_EObj_s_foo.cpp' object='sci_gateway/cpp/libsciexternal_objects_la-sci_percent_EObj_s_foo.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@	$(AM_V_CXX@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libsciexternal_objects_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o sci_gateway/cpp/libsciexternal_objects_la-sci_percent_EObj_s_foo.lo `test -f 'sci_gateway/cpp/sci_percent_EObj_s_foo.cpp' || echo '$(srcdir)/'`sci_gateway/cpp/sci_percent_EObj_s_foo.cpp

sci_gateway/cpp/libsciexternal_objects_la-sci_percent_EObj_x_foo.lo: sci_gateway/cpp/sci_percent_EObj_x_foo.cpp
@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libsciexternal_objects_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT sci_gateway/cpp/libsciexternal_objects_la-sci_percent_EObj_x_foo.lo -MD -MP -MF sci_gateway/cpp/$(DEPDIR)/libsciexternal_objects_la-sci_percent_EObj_x_foo.Tpo -c -o sci_gateway/cpp/libsciexternal_objects_la-sci_percent_EObj_x_foo.lo `test -f 'sci_gateway/cpp/sci_percent_EObj_x_foo.cpp' || echo '$(srcdir)/'`sci_gateway/cpp/sci_percent_EObj_x_foo.cpp
@am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) sci_gateway/cpp/$(DEPDIR)/libsciexternal_objects_la-sci_percent_EObj_x_foo.Tpo sci_gateway/cpp/$(DEPDIR)/libsciexternal_objects_la-sci_percent_EObj_x_foo.Plo
@AMDEP_TRUE@@am__fastdepCXX_FALSE@	$(AM_V_CXX)source='sci_gateway/cpp/sci_percent_EObj_x_foo.cpp' object='sci_gateway/cpp/libsciexternal_objects_la-sci_percent_EObj_x_foo.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@	$(AM_V_CXX@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libsciexternal_objects_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o sci_gateway/cpp/libsciexternal_objects_la-sci_percent_EObj_x_foo.lo `test -f 'sci_gateway/cpp/sci_percent_EObj_x_foo.cpp' || echo '$(srcdir)/'`sci_gateway/cpp/sci_percent_EObj_x_foo.cpp

sci_gateway/cpp/libsciexternal_objects_la-sci_percent_EObj_y_foo.lo: sci_gateway/cpp/sci_percent_EObj_y_foo.cpp
@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libsciexternal_objects_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT sci_gateway/cpp/libsciexternal_objects_la-sci_percent_EObj_y_foo.lo -MD -MP -MF sci_gateway/cpp/$(DEPDIR)/libsciexternal_objects_la-sci_percent_EObj_y_foo.Tpo -c -o sci_gateway/cpp/libsciexternal_objects_la-sci_percent_EObj_y_foo.lo `test -f 'sci_gateway/cpp/sci_percent_EObj_y_foo.cpp' || echo '$(srcdir)/'`sci_gateway/cpp/sci_percent_EObj_y_foo.cpp
@am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) sci_gateway/cpp/$(DEPDIR)/libsciexternal_objects_la-sci_percent_EObj_y_foo.Tpo sci_gateway/cpp/$(DEPDIR)/libsciexternal_objects_la-sci_percent_EObj_y_foo.Plo
@AMDEP_TRUE@@am__fastdepCXX_FALSE@	$(AM_V_CXX)source='sci_gateway/cpp/sci_percent_EObj_y_foo.cpp' object='sci_gateway/cpp/libsciexternal_objects_la-sci_percent_EObj_y_foo.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@	$(AM_V_CXX@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libsciexternal_objects_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o sci_gateway/cpp/libsciexternal_objects_la-sci_percent_EObj_y_foo.lo `test -f 'sci_gateway/cpp/sci_percent_EObj_y_foo.cpp' || echo '$(srcdir)/'`sci_gateway/cpp/sci_percent_EObj_y_foo.cpp

sci_gateway/cpp/libsciexternal_objects_la-sci_percent_EObj_z_foo.lo: sci_gateway/cpp/sci_percent_EObj_z_foo.cpp
@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libsciexternal_objects_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT sci_gateway/cpp/libsciexternal_objects_la-sci_percent_EObj_z_foo.lo -MD -MP -MF sci_gateway/cpp/$(DEPDIR)/libsciexternal_objects_la-sci_percent_EObj_z_foo.Tpo -c -o sci_gateway/cpp/libsciexternal_objects_la-sci_percent_EObj_z_foo.lo `test -f 'sci_gateway/cpp/sci_percent_EObj_z_foo.cpp' || echo '$(srcdir)/'`sci_gateway/cpp/sci_percent_EObj_z_foo.cpp
@am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) sci_gateway/cpp/$(DEPDIR)/libsciexternal_objects_la-sci_percent_EObj_z_foo.Tpo sci_gateway/cpp/$(DEPDIR)/libsciexternal_objects_la-sci_percent_EObj_z_foo.Plo
@AMDEP_TRUE@@am__fastdepCXX_FALSE@	$(AM_V_CXX)source='sci_gateway/cpp/sci_percent_EObj_z_foo.cpp' object='sci_gateway/cpp/libsciexternal_objects_la-sci_percent_EObj_z_foo.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@	$(AM_V_CXX@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libsciexternal_objects_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o sci_gateway/cpp/libsciexternal_objects_la-sci_percent_EObj_z_foo.lo `test -f 'sci_gateway/cpp/sci_percent_EObj_z_foo.cpp' || echo '$(srcdir)/'`sci_gateway/cpp/sci_percent_EObj_z_foo.cpp

sci_gateway/cpp/libsciexternal_objects_la-sci_percent_EObj_1_foo.lo: sci_gateway/cpp/sci_percent_EObj_1_foo.cpp
@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libsciexternal_objects_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT sci_gateway/cpp/libsciexternal_objects_la-sci_percent_EObj_1_foo.lo -MD -MP -MF sci_gateway/cpp/$(DEPDIR)/libsciexternal_objects_la-sci_percent_EObj_1_foo.Tpo -c -o sci_gateway/cpp/libsciexternal_objects_la-sci_percent_EObj_1_foo.lo `test -f 'sci_gateway/cpp/sci_percent_EObj_1_foo.cpp' || echo '$(srcdir)/'`sci_gateway/cpp/sci_percent_EObj_1_foo.cpp
@am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) sci_gateway/cpp/$(DEPDIR)/libsciexternal_objects_la-sci_percent_EObj_1_foo.Tpo sci_gateway/cpp/$(DEPDIR)/libsciexternal_objects_la-sci_percent_EObj_1_foo.Plo
@AMDEP_TRUE@@am__fastdepCXX_FALSE@	$(AM_V_CXX)source='sci_gateway/cpp/sci_percent_EObj_1_foo.cpp' object='sci_gateway/cpp/libsciexternal_objects_la-sci_percent_EObj_1_foo.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@	$(AM_V_CXX@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libsciexternal_objects_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o sci_gateway/cpp/libsciexternal_objects_la-sci_percent_EObj_1_foo.lo `test -f 'sci_gateway/cpp/sci_percent_EObj_1_foo.cpp' || echo '$(srcdir)/'`sci_gateway/cpp/sci_percent_EObj_1_foo.cpp

sci_gateway/cpp/libsciexternal_objects_la-sci_percent_EObj_2_foo.lo: sci_gateway/cpp/sci_percent_EObj_2_foo.cpp
@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libsciexternal_objects_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT sci_gateway/cpp/libsciexternal_objects_la-sci_percent_EObj_2_foo.lo -MD -MP -MF sci_gateway/cpp/$(DEPDIR)/libsciexternal_objects_la-sci_percent_EObj_2_foo.Tpo -c -o sci_gateway/cpp/libsciexternal_objects_la-sci_percent_EObj_2_foo.lo `test -f 'sci_gateway/cpp/sci_percent_EObj_2_foo.cpp' || echo '$(srcdir)/'`sci_gateway/cpp/sci_percent_EObj_2_foo.cpp
@am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) sci_gateway/cpp/$(DEPDIR)/libsciexternal_objects_la-sci_percent_EObj_2_foo.Tpo sci_gateway/cpp/$(DEPDIR)/libsciexternal_objects_la-sci_percent_EObj_2_foo.Plo
@AMDEP_TRUE@@am__fastdepCXX_FALSE@	$(AM_V_CXX)source='sci_gateway/cpp/sci_percent_EObj_2_foo.cpp' object='sci_gateway/cpp/libsciexternal_objects_la-sci_percent_EObj_2_foo.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@	$(AM_V_CXX@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libsciexternal_objects_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o sci_gateway/cpp/libsciexternal_objects_la-sci_percent_EObj_2_foo.lo `test -f 'sci_gateway/cpp/sci_percent_EObj_2_foo.cpp' || echo '$(srcdir)/'`sci_gateway/cpp/sci_percent_EObj_2_foo.cpp

sci_gateway/cpp/libsciexternal_objects_la-sci_percent_EObj_3_foo.lo: sci_gateway/cpp/sci_percent_EObj_3_foo.cpp
@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libsciexternal_objects_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT sci_gateway/cpp/libsciexternal_objects_la-sci_percent_EObj_3_foo.lo -MD -MP -MF sci_gateway/cpp/$(DEPDIR)/libsciexternal_objects_la-sci_percent_EObj_3_foo.Tpo -c -o sci_gateway/cpp/libsciexternal_objects_la-sci_percent_EObj_3_foo.lo `test -f 'sci_gateway/cpp/sci_percent_EObj_3_foo.cpp' || echo '$(srcdir)/'`sci_gateway/cpp/sci_percent_EObj_3_foo.cpp
@am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) sci_gateway/cpp/$(DEPDIR)/libsciexternal_objects_la-sci_percent_EObj_3_foo.Tpo sci_gateway/cpp/$(DEPDIR)/libsciexternal_objects_la-sci_percent_EObj_3_foo.Plo
@AMDEP_TRUE@@am__fastdepCXX_FALSE@	$(AM_V_CXX)source='sci_gateway/cpp/sci_percent_EObj_3_foo.cpp' object='sci_gateway/cpp/libsciexternal_objects_la-sci_percent_EObj_3_foo.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@	$(AM_V_CXX@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libsciexternal_objects_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o sci_gateway/cpp/libsciexternal_objects_la-sci_percent_EObj_3_foo.lo `test -f 'sci_gateway/cpp/sci_percent_EObj_3_foo.cpp' || echo '$(srcdir)/'`sci_gateway/cpp/sci_percent_EObj_3_foo.cpp

sci_gateway/cpp/libsciexternal_objects_la-sci_percent_EObj_4_foo.lo: sci_gateway/cpp/sci_percent_EObj_4_foo.cpp
@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libsciexternal_objects_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT sci_gateway/cpp/libsciexternal_objects_la-sci_percent_EObj_4_foo.lo -MD -MP -MF sci_gateway/cpp/$(DEPDIR)/libsciexternal_objects_la-sci_percent_EObj_4_foo.Tpo -c -o sci_gateway/cpp/libsciexternal_objects_la-sci_percent_EObj_4_foo.lo `test -f 'sci_gateway/cpp/sci_percent_EObj_4_foo.cpp' || echo '$(srcdir)/'`sci_gateway/cpp/sci_percent_EObj_4_foo.cpp
@am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) sci_gateway/cpp/$(DEPDIR)/libsciexternal_objects_la-sci_percent_EObj_4_foo.Tpo sci_gateway/cpp/$(DEPDIR)/libsciexternal_objects_la-sci_percent_EObj_4_foo.Plo
@AMDEP_TRUE@@am__fastdepCXX_FALSE@	$(AM_V_CXX)source='sci_gateway/cpp/sci_percent_EObj_4_foo.cpp' object='sci_gateway/cpp/libsciexternal_objects_la-sci_percent_EObj_4_foo.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@	$(AM_V_CXX@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libsciexternal_objects_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o sci_gateway/cpp/libsciexternal_objects_la-sci_percent_EObj_4_foo.lo `test -f 'sci_gateway/cpp/sci_percent_EObj_4_foo.cpp' || echo '$(srcdir)/'`sci_gateway/cpp/sci_percent_EObj_4_foo.cpp

sci_gateway/cpp/libsciexternal_objects_la-sci_percent_EObj_0.lo: sci_gateway/cpp/sci_percent_EObj_0.cpp
@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libsciexternal_objects_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT sci_gateway/cpp/libsciexternal_objects_la-sci_percent_EObj_0.lo -MD -MP -MF sci_gateway/cpp/$(DEPDIR)/libsciexternal_objects_la-sci_percent_EObj_0.Tpo -c -o sci_gateway/cpp/libsciexternal_objects_la-sci_percent_EObj_0.lo `test -f 'sci_gateway/cpp/sci_percent_EObj_0.cpp' || echo '$(srcdir)/'`sci_gateway/cpp/sci_percent_EObj_0.cpp
@am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) sci_gateway/cpp/$(DEPDIR)/libsciexternal_objects_la-sci_percent_EObj_0.Tpo sci_gateway/cpp/$(DEPDIR)/libsciexternal_objects_la-sci_percent_EObj_0.Plo
@AMDEP_TRUE@@am__fastdepCXX_FALSE@	$(AM_V_CXX)source='sci_gateway/cpp/sci_percent_EObj_0.cpp' object='sci_gateway/cpp/libsciexternal_objects_la-sci_percent_EObj_0.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@	$(AM_V_CXX@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libsciexternal_objects_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o sci_gateway/cpp/libsciexternal_objects_la-sci_percent_EObj_0.lo `test -f 'sci_gateway/cpp/sci_percent_EObj_0.cpp' || echo '$(srcdir)/'`sci_gateway/cpp/sci_percent_EObj_0.cpp

sci_gateway/cpp/libsciexternal_objects_la-sci_percent_EObj_5.lo: sci_gateway/cpp/sci_percent_EObj_5.cpp
@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libsciexternal_objects_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT sci_gateway/cpp/libsciexternal_objects_la-sci_percent_EObj_5.lo -MD -MP -MF sci_gateway/cpp/$(DEPDIR)/libsciexternal_objects_la-sci_percent_EObj_5.Tpo -c -o sci_gateway/cpp/libsciexternal_objects_la-sci_percent_EObj_5.lo `test -f 'sci_gateway/cpp/sci_percent_EObj_5.cpp' || echo '$(srcdir)/'`sci_gateway/cpp/sci_percent_EObj_5.cpp
@am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) sci_gateway/cpp/$(DEPDIR)/libsciexternal_objects_la-sci_percent_EObj_5.Tpo sci_gateway/cpp/$(DEPDIR)/libsciexternal_objects_la-sci_percent_EObj_5.Plo
@AMDEP_TRUE@@am__fastdepCXX_FALSE@	$(AM_V_CXX)source='sci_gateway/cpp/sci_percent_EObj_5.cpp' object='sci_gateway/cpp/libsciexternal_objects_la-sci_percent_EObj_5.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@	$(AM_V_CXX@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libsciexternal_objects_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o sci_gateway/cpp/libsciexternal_objects_la-sci_percent_EObj_5.lo `test -f 'sci_gateway/cpp/sci_percent_EObj_5.cpp' || echo '$(srcdir)/'`sci_gateway/cpp/sci_percent_EObj_5.cpp

sci_gateway/cpp/libsciexternal_objects_la-sci_percent_EObj_t.lo: sci_gateway/cpp/sci_percent_EObj_t.cpp
@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libsciexternal_objects_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT sci_gateway/cpp/libsciexternal_objects_la-sci_percent_EObj_t.lo -MD -MP -MF sci_gateway/cpp/$(DEPDIR)/libsciexternal_objects_la-sci_percent_EObj_t.Tpo -c -o sci_gateway/cpp/libsciexternal_objects_la-sci_percent_EObj_t.lo `test -f 'sci_gateway/cpp/sci_percent_EObj_t.cpp' || echo '$(srcdir)/'`sci_gateway/cpp/sci_percent_EObj_t.cpp
@am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) sci_gateway/cpp/$(DEPDIR)/libsciexternal_objects_la-sci_percent_EObj_t.Tpo sci_gateway/cpp/$(DEPDIR)/libsciexternal_objects_la-sci_percent_EObj_t.Plo
@AMDEP_TRUE@@am__fastdepCXX_FALSE@	$(AM_V_CXX)source='sci_gateway/cpp/sci_percent_EObj_t.cpp' object='sci_gateway/cpp/libsciexternal_objects_la-sci_percent_EObj_t.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@	$(AM_V_CXX@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libsciexternal_objects_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o sci_gateway/cpp/libsciexternal_objects_la-sci_percent_EObj_t.lo `test -f 'sci_gateway/cpp/sci_percent_EObj_t.cpp' || echo '$(srcdir)/'`sci_gateway/cpp/sci_percent_EObj_t.cpp

sci_gateway/cpp/libsciexternal_objects_la-sci_doubleExclam_invoke_.lo: sci_gateway/cpp/sci_doubleExclam_invoke_.cpp
@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libsciexternal_objects_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT sci_gateway/cpp/libsciexternal_objects_la-sci_doubleExclam_invoke_.lo -MD -MP -MF sci_gateway/cpp/$(DEPDIR)/libsciexternal_objects_la-sci_doubleExclam_invoke_.Tpo -c -o sci_gateway/cpp/libsciexternal_objects_la-sci_doubleExclam_invoke_.lo `test -f 'sci_gateway/cpp/sci_doubleExclam_invoke_.cpp' || echo '$(srcdir)/'`sci_gateway/cpp/sci_doubleExclam_invoke_.cpp
@am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) sci_gateway/cpp/$(DEPDIR)/libsciexternal_objects_la-sci_doubleExclam_invoke_.Tpo sci_gateway/cpp/$(DEPDIR)/libsciexternal_objects_la-sci_doubleExclam_invoke_.Plo
@AMDEP_TRUE@@am__fastdepCXX_FALSE@	$(AM_V_CXX)source='sci_gateway/cpp/sci_doubleExclam_invoke_.cpp' object='sci_gateway/cpp/libsciexternal_objects_la-sci_doubleExclam_invoke_.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@	$(AM_V_CXX@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libsciexternal_objects_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o sci_gateway/cpp/libsciexternal_objects_la-sci_doubleExclam_invoke_.lo `test -f 'sci_gateway/cpp/sci_doubleExclam_invoke_.cpp' || echo '$(srcdir)/'`sci_gateway/cpp/sci_doubleExclam_invoke_.cpp

sci_gateway/cpp/libsciexternal_objects_la-sci_invoke_lu.lo: sci_gateway/cpp/sci_invoke_lu.cpp
@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libsciexternal_objects_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT sci_gateway/cpp/libsciexternal_objects_la-sci_invoke_lu.lo -MD -MP -MF sci_gateway/cpp/$(DEPDIR)/libsciexternal_objects_la-sci_invoke_lu.Tpo -c -o sci_gateway/cpp/libsciexternal_objects_la-sci_invoke_lu.lo `test -f 'sci_gateway/cpp/sci_invoke_lu.cpp' || echo '$(srcdir)/'`sci_gateway/cpp/sci_invoke_lu.cpp
@am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) sci_gateway/cpp/$(DEPDIR)/libsciexternal_objects_la-sci_invoke_lu.Tpo sci_gateway/cpp/$(DEPDIR)/libsciexternal_objects_la-sci_invoke_lu.Plo
@AMDEP_TRUE@@am__fastdepCXX_FALSE@	$(AM_V_CXX)source='sci_gateway/cpp/sci_invoke_lu.cpp' object='sci_gateway/cpp/libsciexternal_objects_la-sci_invoke_lu.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@	$(AM_V_CXX@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libsciexternal_objects_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o sci_gateway/cpp/libsciexternal_objects_la-sci_invoke_lu.lo `test -f 'sci_gateway/cpp/sci_invoke_lu.cpp' || echo '$(srcdir)/'`sci_gateway/cpp/sci_invoke_lu.cpp

sci_gateway/cpp/libsciexternal_objects_la-sci_percent_EObj_disp.lo: sci_gateway/cpp/sci_percent_EObj_disp.cpp
@am__fastdepCXX_TRUE@	$(AM_V_CXX)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libsciexternal_objects_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -MT sci_gateway/cpp/libsciexternal_objects_la-sci_percent_EObj_disp.lo -MD -MP -MF sci_gateway/cpp/$(DEPDIR)/libsciexternal_objects_la-sci_percent_EObj_disp.Tpo -c -o sci_gateway/cpp/libsciexternal_objects_la-sci_percent_EObj_disp.lo `test -f 'sci_gateway/cpp/sci_percent_EObj_disp.cpp' || echo '$(srcdir)/'`sci_gateway/cpp/sci_percent_EObj_disp.cpp
@am__fastdepCXX_TRUE@	$(AM_V_at)$(am__mv) sci_gateway/cpp/$(DEPDIR)/libsciexternal_objects_la-sci_percent_EObj_disp.Tpo sci_gateway/cpp/$(DEPDIR)/libsciexternal_objects_la-sci_percent_EObj_disp.Plo
@AMDEP_TRUE@@am__fastdepCXX_FALSE@	$(AM_V_CXX)source='sci_gateway/cpp/sci_percent_EObj_disp.cpp' object='sci_gateway/cpp/libsciexternal_objects_la-sci_percent_EObj_disp.lo' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@	DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@	$(AM_V_CXX@am__nodep@)$(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(libsciexternal_objects_la_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS) -c -o sci_gateway/cpp/libsciexternal_objects_la-sci_percent_EObj_disp.lo `test -f 'sci_gateway/cpp/sci_percent_EObj_disp.cpp' || echo '$(srcdir)/'`sci_gateway/cpp/sci_percent_EObj_disp.cpp

mostlyclean-libtool:
	-rm -f *.lo

clean-libtool:
	-rm -rf .libs _libs
	-rm -rf sci_gateway/c/.libs sci_gateway/c/_libs
	-rm -rf sci_gateway/cpp/.libs sci_gateway/cpp/_libs
	-rm -rf src/cpp/.libs src/cpp/_libs
install-libsciexternal_objects_la_etcDATA: $(libsciexternal_objects_la_etc_DATA)
	@$(NORMAL_INSTALL)
	@list='$(libsciexternal_objects_la_etc_DATA)'; test -n "$(libsciexternal_objects_la_etcdir)" || list=; \
	if test -n "$$list"; then \
	  echo " $(MKDIR_P) '$(DESTDIR)$(libsciexternal_objects_la_etcdir)'"; \
	  $(MKDIR_P) "$(DESTDIR)$(libsciexternal_objects_la_etcdir)" || 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)$(libsciexternal_objects_la_etcdir)'"; \
	  $(INSTALL_DATA) $$files "$(DESTDIR)$(libsciexternal_objects_la_etcdir)" || exit $$?; \
	done

uninstall-libsciexternal_objects_la_etcDATA:
	@$(NORMAL_UNINSTALL)
	@list='$(libsciexternal_objects_la_etc_DATA)'; test -n "$(libsciexternal_objects_la_etcdir)" || list=; \
	files=`for p in $$list; do echo $$p; done | sed -e 's|^.*/||'`; \
	dir='$(DESTDIR)$(libsciexternal_objects_la_etcdir)'; $(am__uninstall_files_from_dir)
install-libsciexternal_objects_la_rootDATA: $(libsciexternal_objects_la_root_DATA)
	@$(NORMAL_INSTALL)
	@list='$(libsciexternal_objects_la_root_DATA)'; test -n "$(libsciexternal_objects_la_rootdir)" || list=; \
	if test -n "$$list"; then \
	  echo " $(MKDIR_P) '$(DESTDIR)$(libsciexternal_objects_la_rootdir)'"; \
	  $(MKDIR_P) "$(DESTDIR)$(libsciexternal_objects_la_rootdir)" || 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)$(libsciexternal_objects_la_rootdir)'"; \
	  $(INSTALL_DATA) $$files "$(DESTDIR)$(libsciexternal_objects_la_rootdir)" || exit $$?; \
	done

uninstall-libsciexternal_objects_la_rootDATA:
	@$(NORMAL_UNINSTALL)
	@list='$(libsciexternal_objects_la_root_DATA)'; test -n "$(libsciexternal_objects_la_rootdir)" || list=; \
	files=`for p in $$list; do echo $$p; done | sed -e 's|^.*/||'`; \
	dir='$(DESTDIR)$(libsciexternal_objects_la_rootdir)'; $(am__uninstall_files_from_dir)
install-libsciexternal_objects_la_sci_gatewayDATA: $(libsciexternal_objects_la_sci_gateway_DATA)
	@$(NORMAL_INSTALL)
	@list='$(libsciexternal_objects_la_sci_gateway_DATA)'; test -n "$(libsciexternal_objects_la_sci_gatewaydir)" || list=; \
	if test -n "$$list"; then \
	  echo " $(MKDIR_P) '$(DESTDIR)$(libsciexternal_objects_la_sci_gatewaydir)'"; \
	  $(MKDIR_P) "$(DESTDIR)$(libsciexternal_objects_la_sci_gatewaydir)" || 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)$(libsciexternal_objects_la_sci_gatewaydir)'"; \
	  $(INSTALL_DATA) $$files "$(DESTDIR)$(libsciexternal_objects_la_sci_gatewaydir)" || exit $$?; \
	done

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

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

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

installcheck: installcheck-am
install-strip:
	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)
	-rm -f sci_gateway/c/$(DEPDIR)/$(am__dirstamp)
	-rm -f sci_gateway/c/$(am__dirstamp)
	-rm -f sci_gateway/cpp/$(DEPDIR)/$(am__dirstamp)
	-rm -f sci_gateway/cpp/$(am__dirstamp)
	-rm -f src/cpp/$(DEPDIR)/$(am__dirstamp)
	-rm -f src/cpp/$(am__dirstamp)

maintainer-clean-generic:
	@echo "This command is intended for maintainers to use"
	@echo "it deletes files that may require special tools to rebuild."
clean: clean-am

clean-am: clean-generic clean-libtool clean-local \
	clean-noinstLTLIBRARIES clean-pkglibLTLIBRARIES mostlyclean-am

distclean: distclean-am
	-rm -rf sci_gateway/c/$(DEPDIR) sci_gateway/cpp/$(DEPDIR) src/cpp/$(DEPDIR)
	-rm -f Makefile
distclean-am: clean-am distclean-compile distclean-generic \
	distclean-local distclean-tags

dvi: dvi-am

dvi-am:

html: html-am

html-am:

info: info-am

info-am:

install-data-am: install-data-local \
	install-libsciexternal_objects_la_etcDATA \
	install-libsciexternal_objects_la_includeHEADERS \
	install-libsciexternal_objects_la_rootDATA \
	install-libsciexternal_objects_la_sci_gatewayDATA

install-dvi: install-dvi-am

install-dvi-am:

install-exec-am: install-pkglibLTLIBRARIES

install-html: install-html-am

install-html-am: install-html-local

install-info: install-info-am

install-info-am:

install-man:

install-pdf: install-pdf-am

install-pdf-am:

install-ps: install-ps-am

install-ps-am:

installcheck-am:

maintainer-clean: maintainer-clean-am
	-rm -rf sci_gateway/c/$(DEPDIR) sci_gateway/cpp/$(DEPDIR) src/cpp/$(DEPDIR)
	-rm -f Makefile
maintainer-clean-am: distclean-am maintainer-clean-generic

mostlyclean: mostlyclean-am

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

pdf: pdf-am

pdf-am:

ps: ps-am

ps-am:

uninstall-am: uninstall-libsciexternal_objects_la_etcDATA \
	uninstall-libsciexternal_objects_la_includeHEADERS \
	uninstall-libsciexternal_objects_la_rootDATA \
	uninstall-libsciexternal_objects_la_sci_gatewayDATA \
	uninstall-pkglibLTLIBRARIES

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

.PHONY: CTAGS GTAGS TAGS all all-am all-local check check-am \
	check-local clean clean-generic clean-libtool clean-local \
	clean-noinstLTLIBRARIES clean-pkglibLTLIBRARIES 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-data-local install-dvi \
	install-dvi-am install-exec install-exec-am install-html \
	install-html-am install-html-local install-info \
	install-info-am install-libsciexternal_objects_la_etcDATA \
	install-libsciexternal_objects_la_includeHEADERS \
	install-libsciexternal_objects_la_rootDATA \
	install-libsciexternal_objects_la_sci_gatewayDATA install-man \
	install-pdf install-pdf-am install-pkglibLTLIBRARIES \
	install-ps install-ps-am install-strip installcheck \
	installcheck-am installdirs maintainer-clean \
	maintainer-clean-generic mostlyclean mostlyclean-compile \
	mostlyclean-generic mostlyclean-libtool pdf pdf-am ps ps-am \
	tags tags-am uninstall uninstall-am \
	uninstall-libsciexternal_objects_la_etcDATA \
	uninstall-libsciexternal_objects_la_includeHEADERS \
	uninstall-libsciexternal_objects_la_rootDATA \
	uninstall-libsciexternal_objects_la_sci_gatewayDATA \
	uninstall-pkglibLTLIBRARIES


# This target enables tests for Scilab
check-local: $(top_builddir)/scilab-bin test
	if test -d $(mydatadir)/tests; then \
	  @COMMAND="try test_run('$(modulename)');catch exit(-1);end;exit(0)"; export LANG=C; $(top_builddir)/bin/scilab -nwni -nb -e "$$COMMAND"; \
	fi
check-code:
	if test -f build.xml; then \
		$(ANT) checkstyle; \
	fi
	if test -x "$(SPLINT)"; then \
		$(SPLINT) $(SPLINT_OPTIONS) -I$(top_srcdir)/modules/core/includes/ -I$(top_srcdir)/libs/MALLOC/includes/ -I$(top_srcdir)/modules/localization/includes/ $(INCLUDE_FLAGS) $(CHECK_SRC); \
	fi
@NEED_JAVA_TRUE@java:
# Some configurations needs to export JAVA_HOME in the current env
@NEED_JAVA_TRUE@	@if test "$(JAVA_HOME)"; then export JAVA_HOME=$(JAVA_HOME); fi; \
@NEED_JAVA_TRUE@	if test -z "$(USEANT)"; then USEANT=0; else USEANT=1; fi; \
@NEED_JAVA_TRUE@	if test -f build.xml -a $$USEANT -eq 1; then \
@NEED_JAVA_TRUE@		$(ANT); \
@NEED_JAVA_TRUE@	fi

@NEED_JAVA_TRUE@clean-java:
# Some configurations needs to export JAVA_HOME in the current env
@NEED_JAVA_TRUE@	@if test "$(JAVA_HOME)"; then export JAVA_HOME=$(JAVA_HOME); fi; \
@NEED_JAVA_TRUE@	if test -z "$(USEANT)"; then USEANT=0; else USEANT=1; fi; \
@NEED_JAVA_TRUE@	if test -f build.xml -a $$USEANT -eq 1; then \
@NEED_JAVA_TRUE@		$(ANT) clean; \
@NEED_JAVA_TRUE@	fi;

# If the user request for the SWIG generation of the wrappers Java => C/C++ 
# We call the target swig-build on the variable SWIG_WRAPPERS

@SWIG_TRUE@swig: $(SWIG_WRAPPERS)
@SWIG_TRUE@	@SWIG_PACKAGENAME=org.scilab.modules.$(modulename); \
@SWIG_TRUE@	SWIG_OUTDIR=src/java/org/scilab/modules/$(modulename)/; \
@SWIG_TRUE@	if test -n "$(SWIG_WRAPPERS)"; then \
@SWIG_TRUE@		for file in $(SWIG_WRAPPERS) ; do \
@SWIG_TRUE@			echo "Swig process of $$file (Java) ..."; \
@SWIG_TRUE@			$(SWIG_BIN) $(SWIG_JAVA) -package $$SWIG_PACKAGENAME  -outdir $$SWIG_OUTDIR $$file; \
@SWIG_TRUE@		done; \
@SWIG_TRUE@	fi

@SWIG_TRUE@swig-scilab: $(SWIG_SCILAB_WRAPPERS)
@SWIG_TRUE@	@SWIG_OUTDIR=src/swig/; \
@SWIG_TRUE@	if test -n "$(SWIG_SCILAB_WRAPPERS)"; then \
@SWIG_TRUE@		for file in $(SWIG_SCILAB_WRAPPERS) ; do \
@SWIG_TRUE@			echo "Swig process of $$file (Scilab) ..."; \
@SWIG_TRUE@			$(SWIG_BIN) $(SWIG_SCILAB)  -outdir $$SWIG_OUTDIR $$file; \
@SWIG_TRUE@		done; \
@SWIG_TRUE@	fi

# If the user request for the SWIG generation of the wrappers Java => C/C++ 
# We call the target swig-build on the variable SWIG_WRAPPERS

@GIWS_TRUE@giws: $(GIWS_WRAPPERS)
@GIWS_TRUE@	@GIWS_OUTPUTDIR=src/jni/; \
@GIWS_TRUE@	MANDATORY_OPTIONS="--throws-exception-on-error --description-file"; \
@GIWS_TRUE@	if test -n "$(GIWS_WRAPPERS)"; then \
@GIWS_TRUE@		for file in $(GIWS_WRAPPERS) ; do \
@GIWS_TRUE@			echo "GIWS process of $$file ..."; \
@GIWS_TRUE@			if test -z "$(GIWS_OPTIONS)"; then \
@GIWS_TRUE@				$(GIWS_BIN) --disable-return-size-array --output-dir $$GIWS_OUTPUTDIR $$MANDATORY_OPTIONS $$file; \
@GIWS_TRUE@			else \
@GIWS_TRUE@				echo "Custom GIWS call with '$$GIWS_OPTIONS'"; \
@GIWS_TRUE@				$(GIWS_BIN) $$GIWS_OPTIONS --output-dir $$GIWS_OUTPUTDIR $$MANDATORY_OPTIONS $$file; \
@GIWS_TRUE@			fi \
@GIWS_TRUE@		done; \
@GIWS_TRUE@	fi

@GIWS_TRUE@giws-exception:
@GIWS_TRUE@	@GIWS_OUTPUTDIR=src/jni/;\
@GIWS_TRUE@	echo "GIWS: Generation of exception class ..."; \
@GIWS_TRUE@	$(GIWS_BIN) --generate-exception-class --output-dir $$GIWS_OUTPUTDIR 

macros:
	-@( if test ! -x $(top_builddir)/scilab-bin; then \
		echo "Error : Cannot build $< : Scilab has not been built"; \
	else \
		$(top_builddir)/bin/scilab -ns -nwni -e "exec('macros/buildmacros.sce');quit;";\
	fi)

# Removes the macros
clean-macros:
# Removes macros (*.bin generated from .sci)
	@for dir in $(MACRODIRS) $(MACROSDIRSEXT) ; do \
		echo "rm -f $(builddir)/$$dir/$(MACROBINMASK)"; \
		rm -f $(builddir)/$$dir/$(MACROBINMASK); \
	done

test:
# More tests could be added here
	@if test -z "$(USEANT)"; then USEANT=0; else USEANT=1; fi; \
	if test -f build.xml -a $$USEANT -eq 1; then \
		$(ANT) test; \
	fi

all-local: $(TARGETS_ALL)

.sci.bin:
	-@( if test ! -x $(top_builddir)/scilab-bin; then \
	echo "Error : Cannot build $< : Scilab has not been build"; \
	else \
	echo "Creating $@"; \
	$(top_builddir)/bin/scilab -ns -nwni -e "exec('$(abs_srcdir)/$<');save('$(abs_srcdir)/$@');exit;"; \
	fi )

install-html-local:

install-data-local-local:
# Mainly for javasci
	@if test -d $(srcdir)/javadoc; then \
		cp -R $(srcdir)/javadoc $(DESTDIR)/$(mydatadir)/; \
	fi
# If the user wants the help sources to be installed
@INSTALL_HELP_XML_TRUE@	@echo "-------- Install of XML sources of help files --------"; \
@INSTALL_HELP_XML_TRUE@	for lang in $(ALL_LINGUAS); do \
@INSTALL_HELP_XML_TRUE@	 if test -d $(srcdir)/help/$$lang; then \
@INSTALL_HELP_XML_TRUE@	  $(mkinstalldirs) $(DESTDIR)$(pkgdocdir)/help/$$lang && \
@INSTALL_HELP_XML_TRUE@		if ls -lLd $(srcdir)/help/$$lang/$(DOCMASKXML) >/dev/null 2>&1; then \
@INSTALL_HELP_XML_TRUE@		  for file in $(srcdir)/help/$$lang/$(DOCMASKXML) ; do \
@INSTALL_HELP_XML_TRUE@		    echo "$(INSTALL_DATA) $$file $(DESTDIR)$(pkgdocdir)/help/$$lang" ; \
@INSTALL_HELP_XML_TRUE@	    	$(INSTALL_DATA) "$$file" $(DESTDIR)$(pkgdocdir)/help/$$lang ; \
@INSTALL_HELP_XML_TRUE@		  done ; \
@INSTALL_HELP_XML_TRUE@		fi; \
@INSTALL_HELP_XML_TRUE@	 fi; \
@INSTALL_HELP_XML_TRUE@	done; \
@INSTALL_HELP_XML_TRUE@	@echo "-------- Install of MathML sources --------"; \
@INSTALL_HELP_XML_TRUE@	 if test -d $(srcdir)/help/mml/; then \
@INSTALL_HELP_XML_TRUE@	  $(mkinstalldirs) $(DESTDIR)$(pkgdocdir)/help/mml/ && \
@INSTALL_HELP_XML_TRUE@		if ls -lLd $(srcdir)/help/mml/$(DOCMASKMML) >/dev/null 2>&1; then \
@INSTALL_HELP_XML_TRUE@		  for file in $(srcdir)/help/mml/$(DOCMASKMML) ; do \
@INSTALL_HELP_XML_TRUE@		    echo "$(INSTALL_DATA) $$file $(DESTDIR)$(pkgdocdir)/help/mml" ; \
@INSTALL_HELP_XML_TRUE@	    	$(INSTALL_DATA) "$$file" $(DESTDIR)$(pkgdocdir)/help/mml ; \
@INSTALL_HELP_XML_TRUE@		  done ; \
@INSTALL_HELP_XML_TRUE@		fi; \
@INSTALL_HELP_XML_TRUE@	fi
install-data-local:
# Install the tests
	@echo "-------- Install tests (if any) --------"; \
	for dir in $(TESTS_DIR) $(TESTS_DIREXT) ; do \
	  if test -d $(srcdir)/$$dir/; then \
	    $(mkinstalldirs) $(DESTDIR)$(pkgmacrosdir)/$$dir && \
		  for file in `find $(srcdir)/$$dir | sed "s|^$(srcdir)/$$dir||" 2>/dev/null`; do \
		    if test -d "$(srcdir)/$$dir/$$file"; then \
			  echo $(mkinstalldirs) $(DESTDIR)$(pkgmacrosdir)/$$dir/$$file; \
			  $(mkinstalldirs) "$(DESTDIR)$(pkgmacrosdir)/$$dir/$$file"; \
		    else \
		      echo "$(INSTALL_DATA) $(srcdir)/$$dir/$$file $(DESTDIR)$(pkgmacrosdir)/`dirname $$dir/$$file`" ; \
	    	  $(INSTALL_DATA) "$(srcdir)/$$dir/$$file" "$(DESTDIR)$(pkgmacrosdir)/`dirname $$dir/$$file`" ; \
		    fi \
		  done; \
	  fi; \
	done
# Install the help chapter
	@echo "-------- Install the help chapter (if any) --------"; \
	for lang in $(HELP_CHAPTERLANG); do \
		HELPFILE=$(srcdir)/$(HELP_CHAPTERDIR)$$lang/$(HELP_CHAPTERFILE); \
		if test -f $$HELPFILE; then \
			echo $(mkinstalldirs) $(DESTDIR)$(pkgdocdir)/$(HELP_CHAPTERDIR)/$$lang/; \
			$(mkinstalldirs) $(DESTDIR)$(pkgdocdir)/$(HELP_CHAPTERDIR)/$$lang/; \
			echo $(INSTALL_DATA) $$HELPFILE $(DESTDIR)$(pkgdocdir)/$$HELPFILE; \
			$(INSTALL_DATA) $$HELPFILE $(DESTDIR)$(pkgdocdir)/$$HELPFILE; \
		fi; \
	done
# Install the demos & examples
	@echo "-------- Install demos & examples (if any) --------"; \
	for dir in $(DEMOS_DIR) $(DEMOS_DIREXT) $(EXAMPLES_DIR) $(EXAMPLES_DIREXT) ; do \
	  if test -d $(srcdir)/$$dir/; then \
	    $(mkinstalldirs) $(DESTDIR)$(pkgdocdir)/$$dir && \
		  for file in `find $(srcdir)/$$dir | sed "s|^$(srcdir)/$$dir||" 2>/dev/null`; do \
		    if test -d "$(srcdir)/$$dir/$$file"; then \
			  echo $(mkinstalldirs) $(DESTDIR)$(pkgdocdir)/$$dir/$$file; \
			  $(mkinstalldirs) "$(DESTDIR)$(pkgdocdir)/$$dir/$$file"; \
		    else \
		      echo "$(INSTALL_DATA) $(srcdir)/$$dir/$$file $(DESTDIR)$(pkgdocdir)/`dirname $$dir/$$file`" ; \
	    	  $(INSTALL_DATA) "$(srcdir)/$$dir/$$file" "$(DESTDIR)$(pkgdocdir)/`dirname $$dir/$$file`" ; \
		    fi \
		  done; \
	  fi; \
	done
# Install the macros
	@echo "-------- Install macros (if any) --------"; \
	for dir in $(MACRODIRS) $(MACROSDIRSEXT) ; do \
	  $(mkinstalldirs) $(DESTDIR)$(pkgmacrosdir)/$$dir && \
		if test -d $(srcdir)/$$dir/; then \
			FILELIST="$(srcdir)/$$dir/$(MACROMASK) $(srcdir)/$$dir/$(MACROBINMASK) $(srcdir)/$$dir/$(MACROBUILDMASK) $(srcdir)/$$dir/names $(srcdir)/$$dir/lib";\
			if test -n "$(MACROSSPECIALEXT)"; then \
				specialExtDir=""; \
				for specialExt in $(MACROSSPECIALEXT); do \
					specialExtDir="$$specialExtDir $(srcdir)/$$dir/$$specialExt"; \
				done; \
				FILELIST="$$FILELIST $$specialExtDir"; \
			fi; \
		  for file in `ls -1 $$FILELIST 2>/dev/null`; do \
		    echo "$(INSTALL_DATA) $$file $(DESTDIR)$(pkgmacrosdir)/$$dir" ; \
	    	$(INSTALL_DATA) "$$file" $(DESTDIR)$(pkgmacrosdir)/$$dir ; \
		  done; \
		fi; \
	done
# Install java files (.jar)
	@if ls -lLd $(srcdir)/$(JARDIR)$(JARMASK) >/dev/null 2>&1; then \
	echo "-------- Install jar files --------"; \
    $(mkinstalldirs) $(DESTDIR)$(pkgdocdir)/$(JARDIR); \
	  for file in $(srcdir)/$(JARDIR)$(JARMASK); do\
		    echo "$(INSTALL_DATA) $$file $(DESTDIR)$(pkgdocdir)/$(JARDIR)" ; \
	    	$(INSTALL_DATA) "$$file" $(DESTDIR)$(pkgdocdir)/$(JARDIR) ; \
	  done ; \
	fi

########### CLEAN ###################
# Clean help (generated automatically by Scilab)
# It used to clean the macro (clean-macros) but this was causing
# make clean && make to fail Scilab startup
@NEED_JAVA_TRUE@clean-local: clean-java
@NEED_JAVA_FALSE@clean-local:

distclean-local:
	rm -f $(builddir)/help/*/.last_successful_build_javaHelp $(builddir)/help/*/.list_*

.PHONY: macros java swig giws

# Tell versions [3.59,3.63) of GNU make to not export all variables.
# Otherwise a system limit (for SysV at least) may be exceeded.
.NOEXPORT: