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
|
# Makefile.in generated by automake 1.12.6 from Makefile.am.
# @configure_input@
# Copyright (C) 1994-2012 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@
VPATH = @srcdir@
am__make_dryrun = \
{ \
am__dry=no; \
case $$MAKEFLAGS in \
*\\[\ \ ]*) \
echo 'am--echo: ; @echo "AM" OK' | $(MAKE) -f - 2>/dev/null \
| grep '^AM OK$$' >/dev/null || am__dry=yes;; \
*) \
for am__flg in $$MAKEFLAGS; do \
case $$am__flg in \
*=*|--*) ;; \
*n*) am__dry=yes; break;; \
esac; \
done;; \
esac; \
test $$am__dry = yes; \
}
pkgdatadir = $(datadir)/@PACKAGE@
pkgincludedir = $(includedir)/@PACKAGE@
pkglibdir = $(libdir)/@PACKAGE@
pkglibexecdir = $(libexecdir)/@PACKAGE@
am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd
install_sh_DATA = $(install_sh) -c -m 644
install_sh_PROGRAM = $(install_sh) -c
install_sh_SCRIPT = $(install_sh) -c
INSTALL_HEADER = $(INSTALL_DATA)
transform = $(program_transform_name)
NORMAL_INSTALL = :
PRE_INSTALL = :
POST_INSTALL = :
NORMAL_UNINSTALL = :
PRE_UNINSTALL = :
POST_UNINSTALL = :
build_triplet = @build@
host_triplet = @host@
@BUILD_UNITTEST_TRUE@bin_PROGRAMS = samltest$(EXEEXT)
subdir = samltest
DIST_COMMON = $(noinst_HEADERS) $(srcdir)/Makefile.am \
$(srcdir)/Makefile.in $(top_srcdir)/build-aux/depcomp
ACLOCAL_M4 = $(top_srcdir)/aclocal.m4
am__aclocal_m4_deps = $(top_srcdir)/m4/acinclude.m4 \
$(top_srcdir)/m4/acx_pthread.m4 \
$(top_srcdir)/m4/ax_create_pkgconfig_info.m4 \
$(top_srcdir)/m4/boost.m4 $(top_srcdir)/m4/doxygen.m4 \
$(top_srcdir)/m4/libtool.m4 $(top_srcdir)/m4/ltoptions.m4 \
$(top_srcdir)/m4/ltsugar.m4 $(top_srcdir)/m4/ltversion.m4 \
$(top_srcdir)/m4/lt~obsolete.m4 $(top_srcdir)/configure.ac
am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \
$(ACLOCAL_M4)
mkinstalldirs = $(install_sh) -d
CONFIG_HEADER = $(top_builddir)/config.h
CONFIG_CLEAN_FILES =
CONFIG_CLEAN_VPATH_FILES =
am__installdirs = "$(DESTDIR)$(bindir)"
PROGRAMS = $(bin_PROGRAMS)
am__objects_1 = samltest-samltest.$(OBJEXT) \
samltest-SAMLArtifactCreationTest.$(OBJEXT) \
samltest-SAMLArtifactType0001Test.$(OBJEXT) \
samltest-SAMLArtifactType0002Test.$(OBJEXT) \
samltest-SAMLArtifactType0004Test.$(OBJEXT) \
samltest-ArtifactMapTest.$(OBJEXT) \
samltest-CookieTest.$(OBJEXT) \
samltest-EncryptedAssertionTest.$(OBJEXT) \
samltest-SAML1AssertionTest.$(OBJEXT) \
samltest-SAML1RequestTest.$(OBJEXT) \
samltest-SAML1ResponseTest.$(OBJEXT) \
samltest-SAML2AssertionTest.$(OBJEXT) \
samltest-ExplicitKeyTrustEngineTest.$(OBJEXT) \
samltest-StaticPKIXTrustEngineTest.$(OBJEXT) \
samltest-ActionTest.$(OBJEXT) samltest-AdviceTest.$(OBJEXT) \
samltest-AssertionIDReferenceTest.$(OBJEXT) \
samltest-AssertionTest.$(OBJEXT) \
samltest-AttributeDesignatorTest.$(OBJEXT) \
samltest-AttributeStatementTest.$(OBJEXT) \
samltest-AttributeTest.$(OBJEXT) \
samltest-AudienceRestrictionConditionTest.$(OBJEXT) \
samltest-AudienceTest.$(OBJEXT) \
samltest-AuthenticationStatementTest.$(OBJEXT) \
samltest-SAML1ArtifactTest.$(OBJEXT) \
samltest-SAML1POSTTest.$(OBJEXT) \
samltest-SAML1PolicyTest.$(OBJEXT) \
samltest-Action20Test.$(OBJEXT) \
samltest-Advice20Test.$(OBJEXT) \
samltest-Artifact20Test.$(OBJEXT) \
samltest-ArtifactResolve20Test.$(OBJEXT) \
samltest-ArtifactResponse20Test.$(OBJEXT) \
samltest-Assertion20Test.$(OBJEXT) \
samltest-AssertionIDRef20Test.$(OBJEXT) \
samltest-AssertionIDRequest20Test.$(OBJEXT) \
samltest-AssertionURIRef20Test.$(OBJEXT) \
samltest-Attribute20Test.$(OBJEXT) \
samltest-AttributeQuery20Test.$(OBJEXT) \
samltest-AttributeStatement20Test.$(OBJEXT) \
samltest-Audience20Test.$(OBJEXT) \
samltest-AudienceRestriction20Test.$(OBJEXT) \
samltest-AuthenticatingAuthority20Test.$(OBJEXT) \
samltest-AuthnContext20Test.$(OBJEXT) \
samltest-AuthnContextClassRef20Test.$(OBJEXT) \
samltest-AuthnContextDeclRef20Test.$(OBJEXT) \
samltest-AuthnQuery20Test.$(OBJEXT) \
samltest-AuthnRequest20Test.$(OBJEXT) \
samltest-AuthnStatement20Test.$(OBJEXT) \
samltest-AuthzDecisionQuery20Test.$(OBJEXT) \
samltest-AuthzDecisionStatement20Test.$(OBJEXT) \
samltest-Conditions20Test.$(OBJEXT) \
samltest-Evidence20Test.$(OBJEXT) \
samltest-GetComplete20Test.$(OBJEXT) \
samltest-IDPEntry20Test.$(OBJEXT) \
samltest-IDPList20Test.$(OBJEXT) \
samltest-Issuer20Test.$(OBJEXT) \
samltest-KeyInfoConfirmationDataType20Test.$(OBJEXT) \
samltest-LogoutRequest20Test.$(OBJEXT) \
samltest-LogoutResponse20Test.$(OBJEXT) \
samltest-ManageNameIDRequest20Test.$(OBJEXT) \
samltest-ManageNameIDResponse20Test.$(OBJEXT) \
samltest-NameIDMappingRequest20Test.$(OBJEXT) \
samltest-NameIDMappingResponse20Test.$(OBJEXT) \
samltest-NameIDPolicy20Test.$(OBJEXT) \
samltest-NameID20Test.$(OBJEXT) \
samltest-NameIDType20Test.$(OBJEXT) \
samltest-NewEncryptedID20Test.$(OBJEXT) \
samltest-NewID20Test.$(OBJEXT) \
samltest-OneTimeUse20Test.$(OBJEXT) \
samltest-ProxyRestriction20Test.$(OBJEXT) \
samltest-RequesterID20Test.$(OBJEXT) \
samltest-RequestedAuthnContext20Test.$(OBJEXT) \
samltest-Response20Test.$(OBJEXT) \
samltest-Scoping20Test.$(OBJEXT) \
samltest-SessionIndex20Test.$(OBJEXT) \
samltest-Status20Test.$(OBJEXT) \
samltest-StatusCode20Test.$(OBJEXT) \
samltest-StatusDetail20Test.$(OBJEXT) \
samltest-StatusMessage20Test.$(OBJEXT) \
samltest-Subject20Test.$(OBJEXT) \
samltest-SubjectConfirmation20Test.$(OBJEXT) \
samltest-SubjectConfirmationData20Test.$(OBJEXT) \
samltest-SubjectLocality20Test.$(OBJEXT) \
samltest-Terminate20Test.$(OBJEXT) \
samltest-SAML2ArtifactTest.$(OBJEXT) \
samltest-SAML2POSTTest.$(OBJEXT) \
samltest-SAML2RedirectTest.$(OBJEXT) \
samltest-XMLMetadataProviderTest.$(OBJEXT) \
samltest-SAML2PolicyTest.$(OBJEXT)
nodist_samltest_OBJECTS = $(am__objects_1)
samltest_OBJECTS = $(nodist_samltest_OBJECTS)
samltest_DEPENDENCIES = $(top_builddir)/saml/libsaml.la
samltest_LINK = $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) \
$(LIBTOOLFLAGS) --mode=link $(CXXLD) $(samltest_CXXFLAGS) \
$(CXXFLAGS) $(AM_LDFLAGS) $(LDFLAGS) -o $@
DEFAULT_INCLUDES = -I.@am__isrc@ -I$(top_builddir)
depcomp = $(SHELL) $(top_srcdir)/build-aux/depcomp
am__depfiles_maybe = depfiles
am__mv = mv -f
CXXCOMPILE = $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) \
$(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS)
LTCXXCOMPILE = $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) \
--mode=compile $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) \
$(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS)
CXXLD = $(CXX)
CXXLINK = $(LIBTOOL) --tag=CXX $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) \
--mode=link $(CXXLD) $(AM_CXXFLAGS) $(CXXFLAGS) $(AM_LDFLAGS) \
$(LDFLAGS) -o $@
SOURCES = $(nodist_samltest_SOURCES)
DIST_SOURCES =
am__can_run_installinfo = \
case $$AM_UPDATE_INFO_DIR in \
n|no|NO) false;; \
*) (install-info --version) >/dev/null 2>&1;; \
esac
HEADERS = $(noinst_HEADERS)
ETAGS = etags
CTAGS = ctags
DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST)
ACLOCAL = @ACLOCAL@
AMTAR = @AMTAR@
AR = @AR@
AUTOCONF = @AUTOCONF@
AUTOHEADER = @AUTOHEADER@
AUTOMAKE = @AUTOMAKE@
AWK = @AWK@
BOOST_CPPFLAGS = @BOOST_CPPFLAGS@
BOOST_ROOT = @BOOST_ROOT@
CC = @CC@
CCDEPMODE = @CCDEPMODE@
CFLAGS = @CFLAGS@
CPP = @CPP@
CPPFLAGS = @CPPFLAGS@
CXX = @CXX@
CXXCPP = @CXXCPP@
CXXDEPMODE = @CXXDEPMODE@
CXXFLAGS = @CXXFLAGS@
CXXTEST = @CXXTEST@
CXXTESTFLAGS = @CXXTESTFLAGS@
CYGPATH_W = @CYGPATH_W@
DEFS = @DEFS@
DEPDIR = @DEPDIR@
DISTCHECK_CONFIGURE_FLAGS = @DISTCHECK_CONFIGURE_FLAGS@
DLLTOOL = @DLLTOOL@
DOXYGEN_PAPER_SIZE = @DOXYGEN_PAPER_SIZE@
DSYMUTIL = @DSYMUTIL@
DUMPBIN = @DUMPBIN@
DX_CONFIG = @DX_CONFIG@
DX_DOCDIR = @DX_DOCDIR@
DX_DOT = @DX_DOT@
DX_DOXYGEN = @DX_DOXYGEN@
DX_DVIPS = @DX_DVIPS@
DX_EGREP = @DX_EGREP@
DX_ENV = @DX_ENV@
DX_FLAG_chi = @DX_FLAG_chi@
DX_FLAG_chm = @DX_FLAG_chm@
DX_FLAG_doc = @DX_FLAG_doc@
DX_FLAG_dot = @DX_FLAG_dot@
DX_FLAG_html = @DX_FLAG_html@
DX_FLAG_man = @DX_FLAG_man@
DX_FLAG_pdf = @DX_FLAG_pdf@
DX_FLAG_ps = @DX_FLAG_ps@
DX_FLAG_rtf = @DX_FLAG_rtf@
DX_FLAG_xml = @DX_FLAG_xml@
DX_HHC = @DX_HHC@
DX_INCLUDE = @DX_INCLUDE@
DX_LATEX = @DX_LATEX@
DX_MAKEINDEX = @DX_MAKEINDEX@
DX_PDFLATEX = @DX_PDFLATEX@
DX_PERL = @DX_PERL@
DX_PROJECT = @DX_PROJECT@
ECHO_C = @ECHO_C@
ECHO_N = @ECHO_N@
ECHO_T = @ECHO_T@
EGREP = @EGREP@
EXEEXT = @EXEEXT@
FGREP = @FGREP@
GREP = @GREP@
INSTALL = @INSTALL@
INSTALL_DATA = @INSTALL_DATA@
INSTALL_PROGRAM = @INSTALL_PROGRAM@
INSTALL_SCRIPT = @INSTALL_SCRIPT@
INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@
LD = @LD@
LDFLAGS = @LDFLAGS@
LIBOBJS = @LIBOBJS@
LIBS = @LIBS@
LIBTOOL = @LIBTOOL@
LIPO = @LIPO@
LN_S = @LN_S@
LOG4CPP_CONFIG = @LOG4CPP_CONFIG@
LOG4SHIB_CONFIG = @LOG4SHIB_CONFIG@
LTLIBOBJS = @LTLIBOBJS@
MAKEINFO = @MAKEINFO@
MANIFEST_TOOL = @MANIFEST_TOOL@
MKDIR_P = @MKDIR_P@
NM = @NM@
NMEDIT = @NMEDIT@
OBJDUMP = @OBJDUMP@
OBJEXT = @OBJEXT@
OTOOL = @OTOOL@
OTOOL64 = @OTOOL64@
PACKAGE = @PACKAGE@
PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@
PACKAGE_NAME = @PACKAGE_NAME@
PACKAGE_STRING = @PACKAGE_STRING@
PACKAGE_TARNAME = @PACKAGE_TARNAME@
PACKAGE_URL = @PACKAGE_URL@
PACKAGE_VERSION = @PACKAGE_VERSION@
PATH_SEPARATOR = @PATH_SEPARATOR@
PKG_CONFIG = @PKG_CONFIG@
PTHREAD_CC = @PTHREAD_CC@
PTHREAD_CFLAGS = @PTHREAD_CFLAGS@
PTHREAD_LIBS = @PTHREAD_LIBS@
RANLIB = @RANLIB@
SED = @SED@
SET_MAKE = @SET_MAKE@
SHELL = @SHELL@
STRIP = @STRIP@
VERSION = @VERSION@
abs_builddir = @abs_builddir@
abs_srcdir = @abs_srcdir@
abs_top_builddir = @abs_top_builddir@
abs_top_srcdir = @abs_top_srcdir@
ac_ct_AR = @ac_ct_AR@
ac_ct_CC = @ac_ct_CC@
ac_ct_CXX = @ac_ct_CXX@
ac_ct_DUMPBIN = @ac_ct_DUMPBIN@
acx_pthread_config = @acx_pthread_config@
am__include = @am__include@
am__leading_dot = @am__leading_dot@
am__quote = @am__quote@
am__tar = @am__tar@
am__untar = @am__untar@
bindir = @bindir@
build = @build@
build_alias = @build_alias@
build_cpu = @build_cpu@
build_os = @build_os@
build_vendor = @build_vendor@
builddir = @builddir@
datadir = @datadir@
datarootdir = @datarootdir@
docdir = @docdir@
dvidir = @dvidir@
exec_prefix = @exec_prefix@
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@
pkgconfig_libdir = @pkgconfig_libdir@
pkgconfig_libfile = @pkgconfig_libfile@
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@
AUTOMAKE_OPTIONS = foreign
@BUILD_UNITTEST_TRUE@samltest_CXXFLAGS = $(CXXFLAGS) $(CXXTESTFLAGS)
samltest_h = \
samltest.h \
SAMLArtifactCreationTest.h \
SAMLArtifactType0001Test.h \
SAMLArtifactType0002Test.h \
SAMLArtifactType0004Test.h \
ArtifactMapTest.h \
CookieTest.h \
encryption/EncryptedAssertionTest.h \
signature/SAML1AssertionTest.h \
signature/SAML1RequestTest.h \
signature/SAML1ResponseTest.h \
signature/SAML2AssertionTest.h \
security/ExplicitKeyTrustEngineTest.h \
security/StaticPKIXTrustEngineTest.h \
saml1/core/impl/ActionTest.h \
saml1/core/impl/AdviceTest.h \
saml1/core/impl/AssertionIDReferenceTest.h \
saml1/core/impl/AssertionTest.h \
saml1/core/impl/AttributeDesignatorTest.h \
saml1/core/impl/AttributeStatementTest.h \
saml1/core/impl/AttributeTest.h \
saml1/core/impl/AudienceRestrictionConditionTest.h \
saml1/core/impl/AudienceTest.h \
saml1/core/impl/AuthenticationStatementTest.h \
saml1/binding/SAML1ArtifactTest.h \
saml1/binding/SAML1POSTTest.h \
saml1/profile/SAML1PolicyTest.h \
saml2/core/impl/Action20Test.h \
saml2/core/impl/Advice20Test.h \
saml2/core/impl/Artifact20Test.h \
saml2/core/impl/ArtifactResolve20Test.h \
saml2/core/impl/ArtifactResponse20Test.h \
saml2/core/impl/Assertion20Test.h \
saml2/core/impl/AssertionIDRef20Test.h \
saml2/core/impl/AssertionIDRequest20Test.h \
saml2/core/impl/AssertionURIRef20Test.h \
saml2/core/impl/Attribute20Test.h \
saml2/core/impl/AttributeQuery20Test.h \
saml2/core/impl/AttributeStatement20Test.h \
saml2/core/impl/Audience20Test.h \
saml2/core/impl/AudienceRestriction20Test.h \
saml2/core/impl/AuthenticatingAuthority20Test.h \
saml2/core/impl/AuthnContext20Test.h \
saml2/core/impl/AuthnContextClassRef20Test.h \
saml2/core/impl/AuthnContextDeclRef20Test.h \
saml2/core/impl/AuthnQuery20Test.h \
saml2/core/impl/AuthnRequest20Test.h \
saml2/core/impl/AuthnStatement20Test.h \
saml2/core/impl/AuthzDecisionQuery20Test.h \
saml2/core/impl/AuthzDecisionStatement20Test.h \
saml2/core/impl/Conditions20Test.h \
saml2/core/impl/Evidence20Test.h \
saml2/core/impl/GetComplete20Test.h \
saml2/core/impl/IDPEntry20Test.h \
saml2/core/impl/IDPList20Test.h \
saml2/core/impl/Issuer20Test.h \
saml2/core/impl/KeyInfoConfirmationDataType20Test.h\
saml2/core/impl/LogoutRequest20Test.h \
saml2/core/impl/LogoutResponse20Test.h \
saml2/core/impl/ManageNameIDRequest20Test.h \
saml2/core/impl/ManageNameIDResponse20Test.h \
saml2/core/impl/NameIDMappingRequest20Test.h \
saml2/core/impl/NameIDMappingResponse20Test.h \
saml2/core/impl/NameIDPolicy20Test.h \
saml2/core/impl/NameID20Test.h \
saml2/core/impl/NameIDType20Test.h \
saml2/core/impl/NewEncryptedID20Test.h \
saml2/core/impl/NewID20Test.h \
saml2/core/impl/OneTimeUse20Test.h \
saml2/core/impl/ProxyRestriction20Test.h \
saml2/core/impl/RequesterID20Test.h \
saml2/core/impl/RequestedAuthnContext20Test.h \
saml2/core/impl/Response20Test.h \
saml2/core/impl/Scoping20Test.h \
saml2/core/impl/SessionIndex20Test.h \
saml2/core/impl/Status20Test.h \
saml2/core/impl/StatusCode20Test.h \
saml2/core/impl/StatusDetail20Test.h \
saml2/core/impl/StatusMessage20Test.h \
saml2/core/impl/Subject20Test.h\
saml2/core/impl/SubjectConfirmation20Test.h\
saml2/core/impl/SubjectConfirmationData20Test.h\
saml2/core/impl/SubjectLocality20Test.h\
saml2/core/impl/Terminate20Test.h \
saml2/binding/SAML2ArtifactTest.h \
saml2/binding/SAML2POSTTest.h \
saml2/binding/SAML2RedirectTest.h \
saml2/metadata/XMLMetadataProviderTest.h \
saml2/profile/SAML2PolicyTest.h
noinst_HEADERS = \
binding.h \
internal.h \
signature/SAMLSignatureTestBase.h \
$(samltest_h)
nodist_samltest_SOURCES = $(samltest_h:.h=.cpp)
@BUILD_UNITTEST_TRUE@BUILT_SOURCES = $(nodist_samltest_SOURCES)
@BUILD_UNITTEST_TRUE@CLEANFILES = $(nodist_samltest_SOURCES)
samltest_LDADD = $(top_builddir)/saml/libsaml.la
EXTRA_DIST = samltest.vcxproj samltest.vcxproj.filters data
all: $(BUILT_SOURCES)
$(MAKE) $(AM_MAKEFLAGS) all-am
.SUFFIXES:
.SUFFIXES: .cpp .lo .o .obj
$(srcdir)/Makefile.in: $(srcdir)/Makefile.am $(am__configure_deps)
@for dep in $?; do \
case '$(am__configure_deps)' in \
*$$dep*) \
( cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh ) \
&& { if test -f $@; then exit 0; else break; fi; }; \
exit 1;; \
esac; \
done; \
echo ' cd $(top_srcdir) && $(AUTOMAKE) --foreign samltest/Makefile'; \
$(am__cd) $(top_srcdir) && \
$(AUTOMAKE) --foreign samltest/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_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES)
cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh
$(top_srcdir)/configure: $(am__configure_deps)
cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh
$(ACLOCAL_M4): $(am__aclocal_m4_deps)
cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh
$(am__aclocal_m4_deps):
install-binPROGRAMS: $(bin_PROGRAMS)
@$(NORMAL_INSTALL)
@list='$(bin_PROGRAMS)'; test -n "$(bindir)" || list=; \
if test -n "$$list"; then \
echo " $(MKDIR_P) '$(DESTDIR)$(bindir)'"; \
$(MKDIR_P) "$(DESTDIR)$(bindir)" || exit 1; \
fi; \
for p in $$list; do echo "$$p $$p"; done | \
sed 's/$(EXEEXT)$$//' | \
while read p p1; do if test -f $$p || test -f $$p1; \
then echo "$$p"; echo "$$p"; else :; fi; \
done | \
sed -e 'p;s,.*/,,;n;h' -e 's|.*|.|' \
-e 'p;x;s,.*/,,;s/$(EXEEXT)$$//;$(transform);s/$$/$(EXEEXT)/' | \
sed 'N;N;N;s,\n, ,g' | \
$(AWK) 'BEGIN { files["."] = ""; dirs["."] = 1 } \
{ d=$$3; if (dirs[d] != 1) { print "d", d; dirs[d] = 1 } \
if ($$2 == $$4) files[d] = files[d] " " $$1; \
else { print "f", $$3 "/" $$4, $$1; } } \
END { for (d in files) print "f", d, files[d] }' | \
while read type dir files; do \
if test "$$dir" = .; then dir=; else dir=/$$dir; fi; \
test -z "$$files" || { \
echo " $(INSTALL_PROGRAM_ENV) $(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=install $(INSTALL_PROGRAM) $$files '$(DESTDIR)$(bindir)$$dir'"; \
$(INSTALL_PROGRAM_ENV) $(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=install $(INSTALL_PROGRAM) $$files "$(DESTDIR)$(bindir)$$dir" || exit $$?; \
} \
; done
uninstall-binPROGRAMS:
@$(NORMAL_UNINSTALL)
@list='$(bin_PROGRAMS)'; test -n "$(bindir)" || list=; \
files=`for p in $$list; do echo "$$p"; done | \
sed -e 'h;s,^.*/,,;s/$(EXEEXT)$$//;$(transform)' \
-e 's/$$/$(EXEEXT)/' `; \
test -n "$$list" || exit 0; \
echo " ( cd '$(DESTDIR)$(bindir)' && rm -f" $$files ")"; \
cd "$(DESTDIR)$(bindir)" && rm -f $$files
clean-binPROGRAMS:
@list='$(bin_PROGRAMS)'; test -n "$$list" || exit 0; \
echo " rm -f" $$list; \
rm -f $$list || exit $$?; \
test -n "$(EXEEXT)" || exit 0; \
list=`for p in $$list; do echo "$$p"; done | sed 's/$(EXEEXT)$$//'`; \
echo " rm -f" $$list; \
rm -f $$list
samltest$(EXEEXT): $(samltest_OBJECTS) $(samltest_DEPENDENCIES) $(EXTRA_samltest_DEPENDENCIES)
@rm -f samltest$(EXEEXT)
$(samltest_LINK) $(samltest_OBJECTS) $(samltest_LDADD) $(LIBS)
mostlyclean-compile:
-rm -f *.$(OBJEXT)
distclean-compile:
-rm -f *.tab.c
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/samltest-Action20Test.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/samltest-ActionTest.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/samltest-Advice20Test.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/samltest-AdviceTest.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/samltest-Artifact20Test.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/samltest-ArtifactMapTest.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/samltest-ArtifactResolve20Test.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/samltest-ArtifactResponse20Test.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/samltest-Assertion20Test.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/samltest-AssertionIDRef20Test.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/samltest-AssertionIDReferenceTest.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/samltest-AssertionIDRequest20Test.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/samltest-AssertionTest.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/samltest-AssertionURIRef20Test.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/samltest-Attribute20Test.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/samltest-AttributeDesignatorTest.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/samltest-AttributeQuery20Test.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/samltest-AttributeStatement20Test.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/samltest-AttributeStatementTest.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/samltest-AttributeTest.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/samltest-Audience20Test.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/samltest-AudienceRestriction20Test.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/samltest-AudienceRestrictionConditionTest.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/samltest-AudienceTest.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/samltest-AuthenticatingAuthority20Test.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/samltest-AuthenticationStatementTest.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/samltest-AuthnContext20Test.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/samltest-AuthnContextClassRef20Test.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/samltest-AuthnContextDeclRef20Test.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/samltest-AuthnQuery20Test.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/samltest-AuthnRequest20Test.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/samltest-AuthnStatement20Test.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/samltest-AuthzDecisionQuery20Test.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/samltest-AuthzDecisionStatement20Test.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/samltest-Conditions20Test.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/samltest-CookieTest.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/samltest-EncryptedAssertionTest.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/samltest-Evidence20Test.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/samltest-ExplicitKeyTrustEngineTest.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/samltest-GetComplete20Test.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/samltest-IDPEntry20Test.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/samltest-IDPList20Test.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/samltest-Issuer20Test.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/samltest-KeyInfoConfirmationDataType20Test.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/samltest-LogoutRequest20Test.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/samltest-LogoutResponse20Test.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/samltest-ManageNameIDRequest20Test.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/samltest-ManageNameIDResponse20Test.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/samltest-NameID20Test.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/samltest-NameIDMappingRequest20Test.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/samltest-NameIDMappingResponse20Test.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/samltest-NameIDPolicy20Test.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/samltest-NameIDType20Test.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/samltest-NewEncryptedID20Test.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/samltest-NewID20Test.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/samltest-OneTimeUse20Test.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/samltest-ProxyRestriction20Test.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/samltest-RequestedAuthnContext20Test.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/samltest-RequesterID20Test.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/samltest-Response20Test.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/samltest-SAML1ArtifactTest.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/samltest-SAML1AssertionTest.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/samltest-SAML1POSTTest.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/samltest-SAML1PolicyTest.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/samltest-SAML1RequestTest.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/samltest-SAML1ResponseTest.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/samltest-SAML2ArtifactTest.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/samltest-SAML2AssertionTest.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/samltest-SAML2POSTTest.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/samltest-SAML2PolicyTest.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/samltest-SAML2RedirectTest.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/samltest-SAMLArtifactCreationTest.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/samltest-SAMLArtifactType0001Test.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/samltest-SAMLArtifactType0002Test.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/samltest-SAMLArtifactType0004Test.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/samltest-Scoping20Test.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/samltest-SessionIndex20Test.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/samltest-StaticPKIXTrustEngineTest.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/samltest-Status20Test.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/samltest-StatusCode20Test.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/samltest-StatusDetail20Test.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/samltest-StatusMessage20Test.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/samltest-Subject20Test.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/samltest-SubjectConfirmation20Test.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/samltest-SubjectConfirmationData20Test.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/samltest-SubjectLocality20Test.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/samltest-Terminate20Test.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/samltest-XMLMetadataProviderTest.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/samltest-samltest.Po@am__quote@
.cpp.o:
@am__fastdepCXX_TRUE@ $(CXXCOMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $<
@am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='$<' object='$@' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@ $(CXXCOMPILE) -c -o $@ $<
.cpp.obj:
@am__fastdepCXX_TRUE@ $(CXXCOMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ `$(CYGPATH_W) '$<'`
@am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='$<' object='$@' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@ $(CXXCOMPILE) -c -o $@ `$(CYGPATH_W) '$<'`
.cpp.lo:
@am__fastdepCXX_TRUE@ $(LTCXXCOMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $<
@am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Plo
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='$<' object='$@' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@ $(LTCXXCOMPILE) -c -o $@ $<
samltest-samltest.o: samltest.cpp
@am__fastdepCXX_TRUE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(samltest_CXXFLAGS) $(CXXFLAGS) -MT samltest-samltest.o -MD -MP -MF $(DEPDIR)/samltest-samltest.Tpo -c -o samltest-samltest.o `test -f 'samltest.cpp' || echo '$(srcdir)/'`samltest.cpp
@am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/samltest-samltest.Tpo $(DEPDIR)/samltest-samltest.Po
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='samltest.cpp' object='samltest-samltest.o' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(samltest_CXXFLAGS) $(CXXFLAGS) -c -o samltest-samltest.o `test -f 'samltest.cpp' || echo '$(srcdir)/'`samltest.cpp
samltest-samltest.obj: samltest.cpp
@am__fastdepCXX_TRUE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(samltest_CXXFLAGS) $(CXXFLAGS) -MT samltest-samltest.obj -MD -MP -MF $(DEPDIR)/samltest-samltest.Tpo -c -o samltest-samltest.obj `if test -f 'samltest.cpp'; then $(CYGPATH_W) 'samltest.cpp'; else $(CYGPATH_W) '$(srcdir)/samltest.cpp'; fi`
@am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/samltest-samltest.Tpo $(DEPDIR)/samltest-samltest.Po
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='samltest.cpp' object='samltest-samltest.obj' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(samltest_CXXFLAGS) $(CXXFLAGS) -c -o samltest-samltest.obj `if test -f 'samltest.cpp'; then $(CYGPATH_W) 'samltest.cpp'; else $(CYGPATH_W) '$(srcdir)/samltest.cpp'; fi`
samltest-SAMLArtifactCreationTest.o: SAMLArtifactCreationTest.cpp
@am__fastdepCXX_TRUE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(samltest_CXXFLAGS) $(CXXFLAGS) -MT samltest-SAMLArtifactCreationTest.o -MD -MP -MF $(DEPDIR)/samltest-SAMLArtifactCreationTest.Tpo -c -o samltest-SAMLArtifactCreationTest.o `test -f 'SAMLArtifactCreationTest.cpp' || echo '$(srcdir)/'`SAMLArtifactCreationTest.cpp
@am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/samltest-SAMLArtifactCreationTest.Tpo $(DEPDIR)/samltest-SAMLArtifactCreationTest.Po
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='SAMLArtifactCreationTest.cpp' object='samltest-SAMLArtifactCreationTest.o' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(samltest_CXXFLAGS) $(CXXFLAGS) -c -o samltest-SAMLArtifactCreationTest.o `test -f 'SAMLArtifactCreationTest.cpp' || echo '$(srcdir)/'`SAMLArtifactCreationTest.cpp
samltest-SAMLArtifactCreationTest.obj: SAMLArtifactCreationTest.cpp
@am__fastdepCXX_TRUE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(samltest_CXXFLAGS) $(CXXFLAGS) -MT samltest-SAMLArtifactCreationTest.obj -MD -MP -MF $(DEPDIR)/samltest-SAMLArtifactCreationTest.Tpo -c -o samltest-SAMLArtifactCreationTest.obj `if test -f 'SAMLArtifactCreationTest.cpp'; then $(CYGPATH_W) 'SAMLArtifactCreationTest.cpp'; else $(CYGPATH_W) '$(srcdir)/SAMLArtifactCreationTest.cpp'; fi`
@am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/samltest-SAMLArtifactCreationTest.Tpo $(DEPDIR)/samltest-SAMLArtifactCreationTest.Po
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='SAMLArtifactCreationTest.cpp' object='samltest-SAMLArtifactCreationTest.obj' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(samltest_CXXFLAGS) $(CXXFLAGS) -c -o samltest-SAMLArtifactCreationTest.obj `if test -f 'SAMLArtifactCreationTest.cpp'; then $(CYGPATH_W) 'SAMLArtifactCreationTest.cpp'; else $(CYGPATH_W) '$(srcdir)/SAMLArtifactCreationTest.cpp'; fi`
samltest-SAMLArtifactType0001Test.o: SAMLArtifactType0001Test.cpp
@am__fastdepCXX_TRUE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(samltest_CXXFLAGS) $(CXXFLAGS) -MT samltest-SAMLArtifactType0001Test.o -MD -MP -MF $(DEPDIR)/samltest-SAMLArtifactType0001Test.Tpo -c -o samltest-SAMLArtifactType0001Test.o `test -f 'SAMLArtifactType0001Test.cpp' || echo '$(srcdir)/'`SAMLArtifactType0001Test.cpp
@am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/samltest-SAMLArtifactType0001Test.Tpo $(DEPDIR)/samltest-SAMLArtifactType0001Test.Po
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='SAMLArtifactType0001Test.cpp' object='samltest-SAMLArtifactType0001Test.o' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(samltest_CXXFLAGS) $(CXXFLAGS) -c -o samltest-SAMLArtifactType0001Test.o `test -f 'SAMLArtifactType0001Test.cpp' || echo '$(srcdir)/'`SAMLArtifactType0001Test.cpp
samltest-SAMLArtifactType0001Test.obj: SAMLArtifactType0001Test.cpp
@am__fastdepCXX_TRUE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(samltest_CXXFLAGS) $(CXXFLAGS) -MT samltest-SAMLArtifactType0001Test.obj -MD -MP -MF $(DEPDIR)/samltest-SAMLArtifactType0001Test.Tpo -c -o samltest-SAMLArtifactType0001Test.obj `if test -f 'SAMLArtifactType0001Test.cpp'; then $(CYGPATH_W) 'SAMLArtifactType0001Test.cpp'; else $(CYGPATH_W) '$(srcdir)/SAMLArtifactType0001Test.cpp'; fi`
@am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/samltest-SAMLArtifactType0001Test.Tpo $(DEPDIR)/samltest-SAMLArtifactType0001Test.Po
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='SAMLArtifactType0001Test.cpp' object='samltest-SAMLArtifactType0001Test.obj' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(samltest_CXXFLAGS) $(CXXFLAGS) -c -o samltest-SAMLArtifactType0001Test.obj `if test -f 'SAMLArtifactType0001Test.cpp'; then $(CYGPATH_W) 'SAMLArtifactType0001Test.cpp'; else $(CYGPATH_W) '$(srcdir)/SAMLArtifactType0001Test.cpp'; fi`
samltest-SAMLArtifactType0002Test.o: SAMLArtifactType0002Test.cpp
@am__fastdepCXX_TRUE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(samltest_CXXFLAGS) $(CXXFLAGS) -MT samltest-SAMLArtifactType0002Test.o -MD -MP -MF $(DEPDIR)/samltest-SAMLArtifactType0002Test.Tpo -c -o samltest-SAMLArtifactType0002Test.o `test -f 'SAMLArtifactType0002Test.cpp' || echo '$(srcdir)/'`SAMLArtifactType0002Test.cpp
@am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/samltest-SAMLArtifactType0002Test.Tpo $(DEPDIR)/samltest-SAMLArtifactType0002Test.Po
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='SAMLArtifactType0002Test.cpp' object='samltest-SAMLArtifactType0002Test.o' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(samltest_CXXFLAGS) $(CXXFLAGS) -c -o samltest-SAMLArtifactType0002Test.o `test -f 'SAMLArtifactType0002Test.cpp' || echo '$(srcdir)/'`SAMLArtifactType0002Test.cpp
samltest-SAMLArtifactType0002Test.obj: SAMLArtifactType0002Test.cpp
@am__fastdepCXX_TRUE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(samltest_CXXFLAGS) $(CXXFLAGS) -MT samltest-SAMLArtifactType0002Test.obj -MD -MP -MF $(DEPDIR)/samltest-SAMLArtifactType0002Test.Tpo -c -o samltest-SAMLArtifactType0002Test.obj `if test -f 'SAMLArtifactType0002Test.cpp'; then $(CYGPATH_W) 'SAMLArtifactType0002Test.cpp'; else $(CYGPATH_W) '$(srcdir)/SAMLArtifactType0002Test.cpp'; fi`
@am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/samltest-SAMLArtifactType0002Test.Tpo $(DEPDIR)/samltest-SAMLArtifactType0002Test.Po
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='SAMLArtifactType0002Test.cpp' object='samltest-SAMLArtifactType0002Test.obj' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(samltest_CXXFLAGS) $(CXXFLAGS) -c -o samltest-SAMLArtifactType0002Test.obj `if test -f 'SAMLArtifactType0002Test.cpp'; then $(CYGPATH_W) 'SAMLArtifactType0002Test.cpp'; else $(CYGPATH_W) '$(srcdir)/SAMLArtifactType0002Test.cpp'; fi`
samltest-SAMLArtifactType0004Test.o: SAMLArtifactType0004Test.cpp
@am__fastdepCXX_TRUE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(samltest_CXXFLAGS) $(CXXFLAGS) -MT samltest-SAMLArtifactType0004Test.o -MD -MP -MF $(DEPDIR)/samltest-SAMLArtifactType0004Test.Tpo -c -o samltest-SAMLArtifactType0004Test.o `test -f 'SAMLArtifactType0004Test.cpp' || echo '$(srcdir)/'`SAMLArtifactType0004Test.cpp
@am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/samltest-SAMLArtifactType0004Test.Tpo $(DEPDIR)/samltest-SAMLArtifactType0004Test.Po
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='SAMLArtifactType0004Test.cpp' object='samltest-SAMLArtifactType0004Test.o' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(samltest_CXXFLAGS) $(CXXFLAGS) -c -o samltest-SAMLArtifactType0004Test.o `test -f 'SAMLArtifactType0004Test.cpp' || echo '$(srcdir)/'`SAMLArtifactType0004Test.cpp
samltest-SAMLArtifactType0004Test.obj: SAMLArtifactType0004Test.cpp
@am__fastdepCXX_TRUE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(samltest_CXXFLAGS) $(CXXFLAGS) -MT samltest-SAMLArtifactType0004Test.obj -MD -MP -MF $(DEPDIR)/samltest-SAMLArtifactType0004Test.Tpo -c -o samltest-SAMLArtifactType0004Test.obj `if test -f 'SAMLArtifactType0004Test.cpp'; then $(CYGPATH_W) 'SAMLArtifactType0004Test.cpp'; else $(CYGPATH_W) '$(srcdir)/SAMLArtifactType0004Test.cpp'; fi`
@am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/samltest-SAMLArtifactType0004Test.Tpo $(DEPDIR)/samltest-SAMLArtifactType0004Test.Po
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='SAMLArtifactType0004Test.cpp' object='samltest-SAMLArtifactType0004Test.obj' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(samltest_CXXFLAGS) $(CXXFLAGS) -c -o samltest-SAMLArtifactType0004Test.obj `if test -f 'SAMLArtifactType0004Test.cpp'; then $(CYGPATH_W) 'SAMLArtifactType0004Test.cpp'; else $(CYGPATH_W) '$(srcdir)/SAMLArtifactType0004Test.cpp'; fi`
samltest-ArtifactMapTest.o: ArtifactMapTest.cpp
@am__fastdepCXX_TRUE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(samltest_CXXFLAGS) $(CXXFLAGS) -MT samltest-ArtifactMapTest.o -MD -MP -MF $(DEPDIR)/samltest-ArtifactMapTest.Tpo -c -o samltest-ArtifactMapTest.o `test -f 'ArtifactMapTest.cpp' || echo '$(srcdir)/'`ArtifactMapTest.cpp
@am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/samltest-ArtifactMapTest.Tpo $(DEPDIR)/samltest-ArtifactMapTest.Po
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='ArtifactMapTest.cpp' object='samltest-ArtifactMapTest.o' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(samltest_CXXFLAGS) $(CXXFLAGS) -c -o samltest-ArtifactMapTest.o `test -f 'ArtifactMapTest.cpp' || echo '$(srcdir)/'`ArtifactMapTest.cpp
samltest-ArtifactMapTest.obj: ArtifactMapTest.cpp
@am__fastdepCXX_TRUE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(samltest_CXXFLAGS) $(CXXFLAGS) -MT samltest-ArtifactMapTest.obj -MD -MP -MF $(DEPDIR)/samltest-ArtifactMapTest.Tpo -c -o samltest-ArtifactMapTest.obj `if test -f 'ArtifactMapTest.cpp'; then $(CYGPATH_W) 'ArtifactMapTest.cpp'; else $(CYGPATH_W) '$(srcdir)/ArtifactMapTest.cpp'; fi`
@am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/samltest-ArtifactMapTest.Tpo $(DEPDIR)/samltest-ArtifactMapTest.Po
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='ArtifactMapTest.cpp' object='samltest-ArtifactMapTest.obj' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(samltest_CXXFLAGS) $(CXXFLAGS) -c -o samltest-ArtifactMapTest.obj `if test -f 'ArtifactMapTest.cpp'; then $(CYGPATH_W) 'ArtifactMapTest.cpp'; else $(CYGPATH_W) '$(srcdir)/ArtifactMapTest.cpp'; fi`
samltest-CookieTest.o: CookieTest.cpp
@am__fastdepCXX_TRUE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(samltest_CXXFLAGS) $(CXXFLAGS) -MT samltest-CookieTest.o -MD -MP -MF $(DEPDIR)/samltest-CookieTest.Tpo -c -o samltest-CookieTest.o `test -f 'CookieTest.cpp' || echo '$(srcdir)/'`CookieTest.cpp
@am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/samltest-CookieTest.Tpo $(DEPDIR)/samltest-CookieTest.Po
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='CookieTest.cpp' object='samltest-CookieTest.o' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(samltest_CXXFLAGS) $(CXXFLAGS) -c -o samltest-CookieTest.o `test -f 'CookieTest.cpp' || echo '$(srcdir)/'`CookieTest.cpp
samltest-CookieTest.obj: CookieTest.cpp
@am__fastdepCXX_TRUE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(samltest_CXXFLAGS) $(CXXFLAGS) -MT samltest-CookieTest.obj -MD -MP -MF $(DEPDIR)/samltest-CookieTest.Tpo -c -o samltest-CookieTest.obj `if test -f 'CookieTest.cpp'; then $(CYGPATH_W) 'CookieTest.cpp'; else $(CYGPATH_W) '$(srcdir)/CookieTest.cpp'; fi`
@am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/samltest-CookieTest.Tpo $(DEPDIR)/samltest-CookieTest.Po
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='CookieTest.cpp' object='samltest-CookieTest.obj' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(samltest_CXXFLAGS) $(CXXFLAGS) -c -o samltest-CookieTest.obj `if test -f 'CookieTest.cpp'; then $(CYGPATH_W) 'CookieTest.cpp'; else $(CYGPATH_W) '$(srcdir)/CookieTest.cpp'; fi`
samltest-EncryptedAssertionTest.o: encryption/EncryptedAssertionTest.cpp
@am__fastdepCXX_TRUE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(samltest_CXXFLAGS) $(CXXFLAGS) -MT samltest-EncryptedAssertionTest.o -MD -MP -MF $(DEPDIR)/samltest-EncryptedAssertionTest.Tpo -c -o samltest-EncryptedAssertionTest.o `test -f 'encryption/EncryptedAssertionTest.cpp' || echo '$(srcdir)/'`encryption/EncryptedAssertionTest.cpp
@am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/samltest-EncryptedAssertionTest.Tpo $(DEPDIR)/samltest-EncryptedAssertionTest.Po
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='encryption/EncryptedAssertionTest.cpp' object='samltest-EncryptedAssertionTest.o' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(samltest_CXXFLAGS) $(CXXFLAGS) -c -o samltest-EncryptedAssertionTest.o `test -f 'encryption/EncryptedAssertionTest.cpp' || echo '$(srcdir)/'`encryption/EncryptedAssertionTest.cpp
samltest-EncryptedAssertionTest.obj: encryption/EncryptedAssertionTest.cpp
@am__fastdepCXX_TRUE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(samltest_CXXFLAGS) $(CXXFLAGS) -MT samltest-EncryptedAssertionTest.obj -MD -MP -MF $(DEPDIR)/samltest-EncryptedAssertionTest.Tpo -c -o samltest-EncryptedAssertionTest.obj `if test -f 'encryption/EncryptedAssertionTest.cpp'; then $(CYGPATH_W) 'encryption/EncryptedAssertionTest.cpp'; else $(CYGPATH_W) '$(srcdir)/encryption/EncryptedAssertionTest.cpp'; fi`
@am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/samltest-EncryptedAssertionTest.Tpo $(DEPDIR)/samltest-EncryptedAssertionTest.Po
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='encryption/EncryptedAssertionTest.cpp' object='samltest-EncryptedAssertionTest.obj' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(samltest_CXXFLAGS) $(CXXFLAGS) -c -o samltest-EncryptedAssertionTest.obj `if test -f 'encryption/EncryptedAssertionTest.cpp'; then $(CYGPATH_W) 'encryption/EncryptedAssertionTest.cpp'; else $(CYGPATH_W) '$(srcdir)/encryption/EncryptedAssertionTest.cpp'; fi`
samltest-SAML1AssertionTest.o: signature/SAML1AssertionTest.cpp
@am__fastdepCXX_TRUE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(samltest_CXXFLAGS) $(CXXFLAGS) -MT samltest-SAML1AssertionTest.o -MD -MP -MF $(DEPDIR)/samltest-SAML1AssertionTest.Tpo -c -o samltest-SAML1AssertionTest.o `test -f 'signature/SAML1AssertionTest.cpp' || echo '$(srcdir)/'`signature/SAML1AssertionTest.cpp
@am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/samltest-SAML1AssertionTest.Tpo $(DEPDIR)/samltest-SAML1AssertionTest.Po
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='signature/SAML1AssertionTest.cpp' object='samltest-SAML1AssertionTest.o' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(samltest_CXXFLAGS) $(CXXFLAGS) -c -o samltest-SAML1AssertionTest.o `test -f 'signature/SAML1AssertionTest.cpp' || echo '$(srcdir)/'`signature/SAML1AssertionTest.cpp
samltest-SAML1AssertionTest.obj: signature/SAML1AssertionTest.cpp
@am__fastdepCXX_TRUE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(samltest_CXXFLAGS) $(CXXFLAGS) -MT samltest-SAML1AssertionTest.obj -MD -MP -MF $(DEPDIR)/samltest-SAML1AssertionTest.Tpo -c -o samltest-SAML1AssertionTest.obj `if test -f 'signature/SAML1AssertionTest.cpp'; then $(CYGPATH_W) 'signature/SAML1AssertionTest.cpp'; else $(CYGPATH_W) '$(srcdir)/signature/SAML1AssertionTest.cpp'; fi`
@am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/samltest-SAML1AssertionTest.Tpo $(DEPDIR)/samltest-SAML1AssertionTest.Po
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='signature/SAML1AssertionTest.cpp' object='samltest-SAML1AssertionTest.obj' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(samltest_CXXFLAGS) $(CXXFLAGS) -c -o samltest-SAML1AssertionTest.obj `if test -f 'signature/SAML1AssertionTest.cpp'; then $(CYGPATH_W) 'signature/SAML1AssertionTest.cpp'; else $(CYGPATH_W) '$(srcdir)/signature/SAML1AssertionTest.cpp'; fi`
samltest-SAML1RequestTest.o: signature/SAML1RequestTest.cpp
@am__fastdepCXX_TRUE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(samltest_CXXFLAGS) $(CXXFLAGS) -MT samltest-SAML1RequestTest.o -MD -MP -MF $(DEPDIR)/samltest-SAML1RequestTest.Tpo -c -o samltest-SAML1RequestTest.o `test -f 'signature/SAML1RequestTest.cpp' || echo '$(srcdir)/'`signature/SAML1RequestTest.cpp
@am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/samltest-SAML1RequestTest.Tpo $(DEPDIR)/samltest-SAML1RequestTest.Po
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='signature/SAML1RequestTest.cpp' object='samltest-SAML1RequestTest.o' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(samltest_CXXFLAGS) $(CXXFLAGS) -c -o samltest-SAML1RequestTest.o `test -f 'signature/SAML1RequestTest.cpp' || echo '$(srcdir)/'`signature/SAML1RequestTest.cpp
samltest-SAML1RequestTest.obj: signature/SAML1RequestTest.cpp
@am__fastdepCXX_TRUE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(samltest_CXXFLAGS) $(CXXFLAGS) -MT samltest-SAML1RequestTest.obj -MD -MP -MF $(DEPDIR)/samltest-SAML1RequestTest.Tpo -c -o samltest-SAML1RequestTest.obj `if test -f 'signature/SAML1RequestTest.cpp'; then $(CYGPATH_W) 'signature/SAML1RequestTest.cpp'; else $(CYGPATH_W) '$(srcdir)/signature/SAML1RequestTest.cpp'; fi`
@am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/samltest-SAML1RequestTest.Tpo $(DEPDIR)/samltest-SAML1RequestTest.Po
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='signature/SAML1RequestTest.cpp' object='samltest-SAML1RequestTest.obj' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(samltest_CXXFLAGS) $(CXXFLAGS) -c -o samltest-SAML1RequestTest.obj `if test -f 'signature/SAML1RequestTest.cpp'; then $(CYGPATH_W) 'signature/SAML1RequestTest.cpp'; else $(CYGPATH_W) '$(srcdir)/signature/SAML1RequestTest.cpp'; fi`
samltest-SAML1ResponseTest.o: signature/SAML1ResponseTest.cpp
@am__fastdepCXX_TRUE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(samltest_CXXFLAGS) $(CXXFLAGS) -MT samltest-SAML1ResponseTest.o -MD -MP -MF $(DEPDIR)/samltest-SAML1ResponseTest.Tpo -c -o samltest-SAML1ResponseTest.o `test -f 'signature/SAML1ResponseTest.cpp' || echo '$(srcdir)/'`signature/SAML1ResponseTest.cpp
@am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/samltest-SAML1ResponseTest.Tpo $(DEPDIR)/samltest-SAML1ResponseTest.Po
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='signature/SAML1ResponseTest.cpp' object='samltest-SAML1ResponseTest.o' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(samltest_CXXFLAGS) $(CXXFLAGS) -c -o samltest-SAML1ResponseTest.o `test -f 'signature/SAML1ResponseTest.cpp' || echo '$(srcdir)/'`signature/SAML1ResponseTest.cpp
samltest-SAML1ResponseTest.obj: signature/SAML1ResponseTest.cpp
@am__fastdepCXX_TRUE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(samltest_CXXFLAGS) $(CXXFLAGS) -MT samltest-SAML1ResponseTest.obj -MD -MP -MF $(DEPDIR)/samltest-SAML1ResponseTest.Tpo -c -o samltest-SAML1ResponseTest.obj `if test -f 'signature/SAML1ResponseTest.cpp'; then $(CYGPATH_W) 'signature/SAML1ResponseTest.cpp'; else $(CYGPATH_W) '$(srcdir)/signature/SAML1ResponseTest.cpp'; fi`
@am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/samltest-SAML1ResponseTest.Tpo $(DEPDIR)/samltest-SAML1ResponseTest.Po
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='signature/SAML1ResponseTest.cpp' object='samltest-SAML1ResponseTest.obj' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(samltest_CXXFLAGS) $(CXXFLAGS) -c -o samltest-SAML1ResponseTest.obj `if test -f 'signature/SAML1ResponseTest.cpp'; then $(CYGPATH_W) 'signature/SAML1ResponseTest.cpp'; else $(CYGPATH_W) '$(srcdir)/signature/SAML1ResponseTest.cpp'; fi`
samltest-SAML2AssertionTest.o: signature/SAML2AssertionTest.cpp
@am__fastdepCXX_TRUE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(samltest_CXXFLAGS) $(CXXFLAGS) -MT samltest-SAML2AssertionTest.o -MD -MP -MF $(DEPDIR)/samltest-SAML2AssertionTest.Tpo -c -o samltest-SAML2AssertionTest.o `test -f 'signature/SAML2AssertionTest.cpp' || echo '$(srcdir)/'`signature/SAML2AssertionTest.cpp
@am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/samltest-SAML2AssertionTest.Tpo $(DEPDIR)/samltest-SAML2AssertionTest.Po
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='signature/SAML2AssertionTest.cpp' object='samltest-SAML2AssertionTest.o' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(samltest_CXXFLAGS) $(CXXFLAGS) -c -o samltest-SAML2AssertionTest.o `test -f 'signature/SAML2AssertionTest.cpp' || echo '$(srcdir)/'`signature/SAML2AssertionTest.cpp
samltest-SAML2AssertionTest.obj: signature/SAML2AssertionTest.cpp
@am__fastdepCXX_TRUE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(samltest_CXXFLAGS) $(CXXFLAGS) -MT samltest-SAML2AssertionTest.obj -MD -MP -MF $(DEPDIR)/samltest-SAML2AssertionTest.Tpo -c -o samltest-SAML2AssertionTest.obj `if test -f 'signature/SAML2AssertionTest.cpp'; then $(CYGPATH_W) 'signature/SAML2AssertionTest.cpp'; else $(CYGPATH_W) '$(srcdir)/signature/SAML2AssertionTest.cpp'; fi`
@am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/samltest-SAML2AssertionTest.Tpo $(DEPDIR)/samltest-SAML2AssertionTest.Po
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='signature/SAML2AssertionTest.cpp' object='samltest-SAML2AssertionTest.obj' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(samltest_CXXFLAGS) $(CXXFLAGS) -c -o samltest-SAML2AssertionTest.obj `if test -f 'signature/SAML2AssertionTest.cpp'; then $(CYGPATH_W) 'signature/SAML2AssertionTest.cpp'; else $(CYGPATH_W) '$(srcdir)/signature/SAML2AssertionTest.cpp'; fi`
samltest-ExplicitKeyTrustEngineTest.o: security/ExplicitKeyTrustEngineTest.cpp
@am__fastdepCXX_TRUE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(samltest_CXXFLAGS) $(CXXFLAGS) -MT samltest-ExplicitKeyTrustEngineTest.o -MD -MP -MF $(DEPDIR)/samltest-ExplicitKeyTrustEngineTest.Tpo -c -o samltest-ExplicitKeyTrustEngineTest.o `test -f 'security/ExplicitKeyTrustEngineTest.cpp' || echo '$(srcdir)/'`security/ExplicitKeyTrustEngineTest.cpp
@am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/samltest-ExplicitKeyTrustEngineTest.Tpo $(DEPDIR)/samltest-ExplicitKeyTrustEngineTest.Po
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='security/ExplicitKeyTrustEngineTest.cpp' object='samltest-ExplicitKeyTrustEngineTest.o' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(samltest_CXXFLAGS) $(CXXFLAGS) -c -o samltest-ExplicitKeyTrustEngineTest.o `test -f 'security/ExplicitKeyTrustEngineTest.cpp' || echo '$(srcdir)/'`security/ExplicitKeyTrustEngineTest.cpp
samltest-ExplicitKeyTrustEngineTest.obj: security/ExplicitKeyTrustEngineTest.cpp
@am__fastdepCXX_TRUE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(samltest_CXXFLAGS) $(CXXFLAGS) -MT samltest-ExplicitKeyTrustEngineTest.obj -MD -MP -MF $(DEPDIR)/samltest-ExplicitKeyTrustEngineTest.Tpo -c -o samltest-ExplicitKeyTrustEngineTest.obj `if test -f 'security/ExplicitKeyTrustEngineTest.cpp'; then $(CYGPATH_W) 'security/ExplicitKeyTrustEngineTest.cpp'; else $(CYGPATH_W) '$(srcdir)/security/ExplicitKeyTrustEngineTest.cpp'; fi`
@am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/samltest-ExplicitKeyTrustEngineTest.Tpo $(DEPDIR)/samltest-ExplicitKeyTrustEngineTest.Po
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='security/ExplicitKeyTrustEngineTest.cpp' object='samltest-ExplicitKeyTrustEngineTest.obj' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(samltest_CXXFLAGS) $(CXXFLAGS) -c -o samltest-ExplicitKeyTrustEngineTest.obj `if test -f 'security/ExplicitKeyTrustEngineTest.cpp'; then $(CYGPATH_W) 'security/ExplicitKeyTrustEngineTest.cpp'; else $(CYGPATH_W) '$(srcdir)/security/ExplicitKeyTrustEngineTest.cpp'; fi`
samltest-StaticPKIXTrustEngineTest.o: security/StaticPKIXTrustEngineTest.cpp
@am__fastdepCXX_TRUE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(samltest_CXXFLAGS) $(CXXFLAGS) -MT samltest-StaticPKIXTrustEngineTest.o -MD -MP -MF $(DEPDIR)/samltest-StaticPKIXTrustEngineTest.Tpo -c -o samltest-StaticPKIXTrustEngineTest.o `test -f 'security/StaticPKIXTrustEngineTest.cpp' || echo '$(srcdir)/'`security/StaticPKIXTrustEngineTest.cpp
@am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/samltest-StaticPKIXTrustEngineTest.Tpo $(DEPDIR)/samltest-StaticPKIXTrustEngineTest.Po
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='security/StaticPKIXTrustEngineTest.cpp' object='samltest-StaticPKIXTrustEngineTest.o' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(samltest_CXXFLAGS) $(CXXFLAGS) -c -o samltest-StaticPKIXTrustEngineTest.o `test -f 'security/StaticPKIXTrustEngineTest.cpp' || echo '$(srcdir)/'`security/StaticPKIXTrustEngineTest.cpp
samltest-StaticPKIXTrustEngineTest.obj: security/StaticPKIXTrustEngineTest.cpp
@am__fastdepCXX_TRUE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(samltest_CXXFLAGS) $(CXXFLAGS) -MT samltest-StaticPKIXTrustEngineTest.obj -MD -MP -MF $(DEPDIR)/samltest-StaticPKIXTrustEngineTest.Tpo -c -o samltest-StaticPKIXTrustEngineTest.obj `if test -f 'security/StaticPKIXTrustEngineTest.cpp'; then $(CYGPATH_W) 'security/StaticPKIXTrustEngineTest.cpp'; else $(CYGPATH_W) '$(srcdir)/security/StaticPKIXTrustEngineTest.cpp'; fi`
@am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/samltest-StaticPKIXTrustEngineTest.Tpo $(DEPDIR)/samltest-StaticPKIXTrustEngineTest.Po
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='security/StaticPKIXTrustEngineTest.cpp' object='samltest-StaticPKIXTrustEngineTest.obj' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(samltest_CXXFLAGS) $(CXXFLAGS) -c -o samltest-StaticPKIXTrustEngineTest.obj `if test -f 'security/StaticPKIXTrustEngineTest.cpp'; then $(CYGPATH_W) 'security/StaticPKIXTrustEngineTest.cpp'; else $(CYGPATH_W) '$(srcdir)/security/StaticPKIXTrustEngineTest.cpp'; fi`
samltest-ActionTest.o: saml1/core/impl/ActionTest.cpp
@am__fastdepCXX_TRUE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(samltest_CXXFLAGS) $(CXXFLAGS) -MT samltest-ActionTest.o -MD -MP -MF $(DEPDIR)/samltest-ActionTest.Tpo -c -o samltest-ActionTest.o `test -f 'saml1/core/impl/ActionTest.cpp' || echo '$(srcdir)/'`saml1/core/impl/ActionTest.cpp
@am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/samltest-ActionTest.Tpo $(DEPDIR)/samltest-ActionTest.Po
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='saml1/core/impl/ActionTest.cpp' object='samltest-ActionTest.o' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(samltest_CXXFLAGS) $(CXXFLAGS) -c -o samltest-ActionTest.o `test -f 'saml1/core/impl/ActionTest.cpp' || echo '$(srcdir)/'`saml1/core/impl/ActionTest.cpp
samltest-ActionTest.obj: saml1/core/impl/ActionTest.cpp
@am__fastdepCXX_TRUE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(samltest_CXXFLAGS) $(CXXFLAGS) -MT samltest-ActionTest.obj -MD -MP -MF $(DEPDIR)/samltest-ActionTest.Tpo -c -o samltest-ActionTest.obj `if test -f 'saml1/core/impl/ActionTest.cpp'; then $(CYGPATH_W) 'saml1/core/impl/ActionTest.cpp'; else $(CYGPATH_W) '$(srcdir)/saml1/core/impl/ActionTest.cpp'; fi`
@am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/samltest-ActionTest.Tpo $(DEPDIR)/samltest-ActionTest.Po
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='saml1/core/impl/ActionTest.cpp' object='samltest-ActionTest.obj' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(samltest_CXXFLAGS) $(CXXFLAGS) -c -o samltest-ActionTest.obj `if test -f 'saml1/core/impl/ActionTest.cpp'; then $(CYGPATH_W) 'saml1/core/impl/ActionTest.cpp'; else $(CYGPATH_W) '$(srcdir)/saml1/core/impl/ActionTest.cpp'; fi`
samltest-AdviceTest.o: saml1/core/impl/AdviceTest.cpp
@am__fastdepCXX_TRUE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(samltest_CXXFLAGS) $(CXXFLAGS) -MT samltest-AdviceTest.o -MD -MP -MF $(DEPDIR)/samltest-AdviceTest.Tpo -c -o samltest-AdviceTest.o `test -f 'saml1/core/impl/AdviceTest.cpp' || echo '$(srcdir)/'`saml1/core/impl/AdviceTest.cpp
@am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/samltest-AdviceTest.Tpo $(DEPDIR)/samltest-AdviceTest.Po
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='saml1/core/impl/AdviceTest.cpp' object='samltest-AdviceTest.o' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(samltest_CXXFLAGS) $(CXXFLAGS) -c -o samltest-AdviceTest.o `test -f 'saml1/core/impl/AdviceTest.cpp' || echo '$(srcdir)/'`saml1/core/impl/AdviceTest.cpp
samltest-AdviceTest.obj: saml1/core/impl/AdviceTest.cpp
@am__fastdepCXX_TRUE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(samltest_CXXFLAGS) $(CXXFLAGS) -MT samltest-AdviceTest.obj -MD -MP -MF $(DEPDIR)/samltest-AdviceTest.Tpo -c -o samltest-AdviceTest.obj `if test -f 'saml1/core/impl/AdviceTest.cpp'; then $(CYGPATH_W) 'saml1/core/impl/AdviceTest.cpp'; else $(CYGPATH_W) '$(srcdir)/saml1/core/impl/AdviceTest.cpp'; fi`
@am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/samltest-AdviceTest.Tpo $(DEPDIR)/samltest-AdviceTest.Po
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='saml1/core/impl/AdviceTest.cpp' object='samltest-AdviceTest.obj' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(samltest_CXXFLAGS) $(CXXFLAGS) -c -o samltest-AdviceTest.obj `if test -f 'saml1/core/impl/AdviceTest.cpp'; then $(CYGPATH_W) 'saml1/core/impl/AdviceTest.cpp'; else $(CYGPATH_W) '$(srcdir)/saml1/core/impl/AdviceTest.cpp'; fi`
samltest-AssertionIDReferenceTest.o: saml1/core/impl/AssertionIDReferenceTest.cpp
@am__fastdepCXX_TRUE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(samltest_CXXFLAGS) $(CXXFLAGS) -MT samltest-AssertionIDReferenceTest.o -MD -MP -MF $(DEPDIR)/samltest-AssertionIDReferenceTest.Tpo -c -o samltest-AssertionIDReferenceTest.o `test -f 'saml1/core/impl/AssertionIDReferenceTest.cpp' || echo '$(srcdir)/'`saml1/core/impl/AssertionIDReferenceTest.cpp
@am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/samltest-AssertionIDReferenceTest.Tpo $(DEPDIR)/samltest-AssertionIDReferenceTest.Po
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='saml1/core/impl/AssertionIDReferenceTest.cpp' object='samltest-AssertionIDReferenceTest.o' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(samltest_CXXFLAGS) $(CXXFLAGS) -c -o samltest-AssertionIDReferenceTest.o `test -f 'saml1/core/impl/AssertionIDReferenceTest.cpp' || echo '$(srcdir)/'`saml1/core/impl/AssertionIDReferenceTest.cpp
samltest-AssertionIDReferenceTest.obj: saml1/core/impl/AssertionIDReferenceTest.cpp
@am__fastdepCXX_TRUE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(samltest_CXXFLAGS) $(CXXFLAGS) -MT samltest-AssertionIDReferenceTest.obj -MD -MP -MF $(DEPDIR)/samltest-AssertionIDReferenceTest.Tpo -c -o samltest-AssertionIDReferenceTest.obj `if test -f 'saml1/core/impl/AssertionIDReferenceTest.cpp'; then $(CYGPATH_W) 'saml1/core/impl/AssertionIDReferenceTest.cpp'; else $(CYGPATH_W) '$(srcdir)/saml1/core/impl/AssertionIDReferenceTest.cpp'; fi`
@am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/samltest-AssertionIDReferenceTest.Tpo $(DEPDIR)/samltest-AssertionIDReferenceTest.Po
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='saml1/core/impl/AssertionIDReferenceTest.cpp' object='samltest-AssertionIDReferenceTest.obj' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(samltest_CXXFLAGS) $(CXXFLAGS) -c -o samltest-AssertionIDReferenceTest.obj `if test -f 'saml1/core/impl/AssertionIDReferenceTest.cpp'; then $(CYGPATH_W) 'saml1/core/impl/AssertionIDReferenceTest.cpp'; else $(CYGPATH_W) '$(srcdir)/saml1/core/impl/AssertionIDReferenceTest.cpp'; fi`
samltest-AssertionTest.o: saml1/core/impl/AssertionTest.cpp
@am__fastdepCXX_TRUE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(samltest_CXXFLAGS) $(CXXFLAGS) -MT samltest-AssertionTest.o -MD -MP -MF $(DEPDIR)/samltest-AssertionTest.Tpo -c -o samltest-AssertionTest.o `test -f 'saml1/core/impl/AssertionTest.cpp' || echo '$(srcdir)/'`saml1/core/impl/AssertionTest.cpp
@am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/samltest-AssertionTest.Tpo $(DEPDIR)/samltest-AssertionTest.Po
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='saml1/core/impl/AssertionTest.cpp' object='samltest-AssertionTest.o' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(samltest_CXXFLAGS) $(CXXFLAGS) -c -o samltest-AssertionTest.o `test -f 'saml1/core/impl/AssertionTest.cpp' || echo '$(srcdir)/'`saml1/core/impl/AssertionTest.cpp
samltest-AssertionTest.obj: saml1/core/impl/AssertionTest.cpp
@am__fastdepCXX_TRUE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(samltest_CXXFLAGS) $(CXXFLAGS) -MT samltest-AssertionTest.obj -MD -MP -MF $(DEPDIR)/samltest-AssertionTest.Tpo -c -o samltest-AssertionTest.obj `if test -f 'saml1/core/impl/AssertionTest.cpp'; then $(CYGPATH_W) 'saml1/core/impl/AssertionTest.cpp'; else $(CYGPATH_W) '$(srcdir)/saml1/core/impl/AssertionTest.cpp'; fi`
@am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/samltest-AssertionTest.Tpo $(DEPDIR)/samltest-AssertionTest.Po
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='saml1/core/impl/AssertionTest.cpp' object='samltest-AssertionTest.obj' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(samltest_CXXFLAGS) $(CXXFLAGS) -c -o samltest-AssertionTest.obj `if test -f 'saml1/core/impl/AssertionTest.cpp'; then $(CYGPATH_W) 'saml1/core/impl/AssertionTest.cpp'; else $(CYGPATH_W) '$(srcdir)/saml1/core/impl/AssertionTest.cpp'; fi`
samltest-AttributeDesignatorTest.o: saml1/core/impl/AttributeDesignatorTest.cpp
@am__fastdepCXX_TRUE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(samltest_CXXFLAGS) $(CXXFLAGS) -MT samltest-AttributeDesignatorTest.o -MD -MP -MF $(DEPDIR)/samltest-AttributeDesignatorTest.Tpo -c -o samltest-AttributeDesignatorTest.o `test -f 'saml1/core/impl/AttributeDesignatorTest.cpp' || echo '$(srcdir)/'`saml1/core/impl/AttributeDesignatorTest.cpp
@am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/samltest-AttributeDesignatorTest.Tpo $(DEPDIR)/samltest-AttributeDesignatorTest.Po
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='saml1/core/impl/AttributeDesignatorTest.cpp' object='samltest-AttributeDesignatorTest.o' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(samltest_CXXFLAGS) $(CXXFLAGS) -c -o samltest-AttributeDesignatorTest.o `test -f 'saml1/core/impl/AttributeDesignatorTest.cpp' || echo '$(srcdir)/'`saml1/core/impl/AttributeDesignatorTest.cpp
samltest-AttributeDesignatorTest.obj: saml1/core/impl/AttributeDesignatorTest.cpp
@am__fastdepCXX_TRUE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(samltest_CXXFLAGS) $(CXXFLAGS) -MT samltest-AttributeDesignatorTest.obj -MD -MP -MF $(DEPDIR)/samltest-AttributeDesignatorTest.Tpo -c -o samltest-AttributeDesignatorTest.obj `if test -f 'saml1/core/impl/AttributeDesignatorTest.cpp'; then $(CYGPATH_W) 'saml1/core/impl/AttributeDesignatorTest.cpp'; else $(CYGPATH_W) '$(srcdir)/saml1/core/impl/AttributeDesignatorTest.cpp'; fi`
@am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/samltest-AttributeDesignatorTest.Tpo $(DEPDIR)/samltest-AttributeDesignatorTest.Po
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='saml1/core/impl/AttributeDesignatorTest.cpp' object='samltest-AttributeDesignatorTest.obj' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(samltest_CXXFLAGS) $(CXXFLAGS) -c -o samltest-AttributeDesignatorTest.obj `if test -f 'saml1/core/impl/AttributeDesignatorTest.cpp'; then $(CYGPATH_W) 'saml1/core/impl/AttributeDesignatorTest.cpp'; else $(CYGPATH_W) '$(srcdir)/saml1/core/impl/AttributeDesignatorTest.cpp'; fi`
samltest-AttributeStatementTest.o: saml1/core/impl/AttributeStatementTest.cpp
@am__fastdepCXX_TRUE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(samltest_CXXFLAGS) $(CXXFLAGS) -MT samltest-AttributeStatementTest.o -MD -MP -MF $(DEPDIR)/samltest-AttributeStatementTest.Tpo -c -o samltest-AttributeStatementTest.o `test -f 'saml1/core/impl/AttributeStatementTest.cpp' || echo '$(srcdir)/'`saml1/core/impl/AttributeStatementTest.cpp
@am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/samltest-AttributeStatementTest.Tpo $(DEPDIR)/samltest-AttributeStatementTest.Po
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='saml1/core/impl/AttributeStatementTest.cpp' object='samltest-AttributeStatementTest.o' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(samltest_CXXFLAGS) $(CXXFLAGS) -c -o samltest-AttributeStatementTest.o `test -f 'saml1/core/impl/AttributeStatementTest.cpp' || echo '$(srcdir)/'`saml1/core/impl/AttributeStatementTest.cpp
samltest-AttributeStatementTest.obj: saml1/core/impl/AttributeStatementTest.cpp
@am__fastdepCXX_TRUE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(samltest_CXXFLAGS) $(CXXFLAGS) -MT samltest-AttributeStatementTest.obj -MD -MP -MF $(DEPDIR)/samltest-AttributeStatementTest.Tpo -c -o samltest-AttributeStatementTest.obj `if test -f 'saml1/core/impl/AttributeStatementTest.cpp'; then $(CYGPATH_W) 'saml1/core/impl/AttributeStatementTest.cpp'; else $(CYGPATH_W) '$(srcdir)/saml1/core/impl/AttributeStatementTest.cpp'; fi`
@am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/samltest-AttributeStatementTest.Tpo $(DEPDIR)/samltest-AttributeStatementTest.Po
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='saml1/core/impl/AttributeStatementTest.cpp' object='samltest-AttributeStatementTest.obj' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(samltest_CXXFLAGS) $(CXXFLAGS) -c -o samltest-AttributeStatementTest.obj `if test -f 'saml1/core/impl/AttributeStatementTest.cpp'; then $(CYGPATH_W) 'saml1/core/impl/AttributeStatementTest.cpp'; else $(CYGPATH_W) '$(srcdir)/saml1/core/impl/AttributeStatementTest.cpp'; fi`
samltest-AttributeTest.o: saml1/core/impl/AttributeTest.cpp
@am__fastdepCXX_TRUE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(samltest_CXXFLAGS) $(CXXFLAGS) -MT samltest-AttributeTest.o -MD -MP -MF $(DEPDIR)/samltest-AttributeTest.Tpo -c -o samltest-AttributeTest.o `test -f 'saml1/core/impl/AttributeTest.cpp' || echo '$(srcdir)/'`saml1/core/impl/AttributeTest.cpp
@am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/samltest-AttributeTest.Tpo $(DEPDIR)/samltest-AttributeTest.Po
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='saml1/core/impl/AttributeTest.cpp' object='samltest-AttributeTest.o' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(samltest_CXXFLAGS) $(CXXFLAGS) -c -o samltest-AttributeTest.o `test -f 'saml1/core/impl/AttributeTest.cpp' || echo '$(srcdir)/'`saml1/core/impl/AttributeTest.cpp
samltest-AttributeTest.obj: saml1/core/impl/AttributeTest.cpp
@am__fastdepCXX_TRUE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(samltest_CXXFLAGS) $(CXXFLAGS) -MT samltest-AttributeTest.obj -MD -MP -MF $(DEPDIR)/samltest-AttributeTest.Tpo -c -o samltest-AttributeTest.obj `if test -f 'saml1/core/impl/AttributeTest.cpp'; then $(CYGPATH_W) 'saml1/core/impl/AttributeTest.cpp'; else $(CYGPATH_W) '$(srcdir)/saml1/core/impl/AttributeTest.cpp'; fi`
@am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/samltest-AttributeTest.Tpo $(DEPDIR)/samltest-AttributeTest.Po
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='saml1/core/impl/AttributeTest.cpp' object='samltest-AttributeTest.obj' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(samltest_CXXFLAGS) $(CXXFLAGS) -c -o samltest-AttributeTest.obj `if test -f 'saml1/core/impl/AttributeTest.cpp'; then $(CYGPATH_W) 'saml1/core/impl/AttributeTest.cpp'; else $(CYGPATH_W) '$(srcdir)/saml1/core/impl/AttributeTest.cpp'; fi`
samltest-AudienceRestrictionConditionTest.o: saml1/core/impl/AudienceRestrictionConditionTest.cpp
@am__fastdepCXX_TRUE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(samltest_CXXFLAGS) $(CXXFLAGS) -MT samltest-AudienceRestrictionConditionTest.o -MD -MP -MF $(DEPDIR)/samltest-AudienceRestrictionConditionTest.Tpo -c -o samltest-AudienceRestrictionConditionTest.o `test -f 'saml1/core/impl/AudienceRestrictionConditionTest.cpp' || echo '$(srcdir)/'`saml1/core/impl/AudienceRestrictionConditionTest.cpp
@am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/samltest-AudienceRestrictionConditionTest.Tpo $(DEPDIR)/samltest-AudienceRestrictionConditionTest.Po
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='saml1/core/impl/AudienceRestrictionConditionTest.cpp' object='samltest-AudienceRestrictionConditionTest.o' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(samltest_CXXFLAGS) $(CXXFLAGS) -c -o samltest-AudienceRestrictionConditionTest.o `test -f 'saml1/core/impl/AudienceRestrictionConditionTest.cpp' || echo '$(srcdir)/'`saml1/core/impl/AudienceRestrictionConditionTest.cpp
samltest-AudienceRestrictionConditionTest.obj: saml1/core/impl/AudienceRestrictionConditionTest.cpp
@am__fastdepCXX_TRUE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(samltest_CXXFLAGS) $(CXXFLAGS) -MT samltest-AudienceRestrictionConditionTest.obj -MD -MP -MF $(DEPDIR)/samltest-AudienceRestrictionConditionTest.Tpo -c -o samltest-AudienceRestrictionConditionTest.obj `if test -f 'saml1/core/impl/AudienceRestrictionConditionTest.cpp'; then $(CYGPATH_W) 'saml1/core/impl/AudienceRestrictionConditionTest.cpp'; else $(CYGPATH_W) '$(srcdir)/saml1/core/impl/AudienceRestrictionConditionTest.cpp'; fi`
@am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/samltest-AudienceRestrictionConditionTest.Tpo $(DEPDIR)/samltest-AudienceRestrictionConditionTest.Po
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='saml1/core/impl/AudienceRestrictionConditionTest.cpp' object='samltest-AudienceRestrictionConditionTest.obj' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(samltest_CXXFLAGS) $(CXXFLAGS) -c -o samltest-AudienceRestrictionConditionTest.obj `if test -f 'saml1/core/impl/AudienceRestrictionConditionTest.cpp'; then $(CYGPATH_W) 'saml1/core/impl/AudienceRestrictionConditionTest.cpp'; else $(CYGPATH_W) '$(srcdir)/saml1/core/impl/AudienceRestrictionConditionTest.cpp'; fi`
samltest-AudienceTest.o: saml1/core/impl/AudienceTest.cpp
@am__fastdepCXX_TRUE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(samltest_CXXFLAGS) $(CXXFLAGS) -MT samltest-AudienceTest.o -MD -MP -MF $(DEPDIR)/samltest-AudienceTest.Tpo -c -o samltest-AudienceTest.o `test -f 'saml1/core/impl/AudienceTest.cpp' || echo '$(srcdir)/'`saml1/core/impl/AudienceTest.cpp
@am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/samltest-AudienceTest.Tpo $(DEPDIR)/samltest-AudienceTest.Po
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='saml1/core/impl/AudienceTest.cpp' object='samltest-AudienceTest.o' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(samltest_CXXFLAGS) $(CXXFLAGS) -c -o samltest-AudienceTest.o `test -f 'saml1/core/impl/AudienceTest.cpp' || echo '$(srcdir)/'`saml1/core/impl/AudienceTest.cpp
samltest-AudienceTest.obj: saml1/core/impl/AudienceTest.cpp
@am__fastdepCXX_TRUE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(samltest_CXXFLAGS) $(CXXFLAGS) -MT samltest-AudienceTest.obj -MD -MP -MF $(DEPDIR)/samltest-AudienceTest.Tpo -c -o samltest-AudienceTest.obj `if test -f 'saml1/core/impl/AudienceTest.cpp'; then $(CYGPATH_W) 'saml1/core/impl/AudienceTest.cpp'; else $(CYGPATH_W) '$(srcdir)/saml1/core/impl/AudienceTest.cpp'; fi`
@am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/samltest-AudienceTest.Tpo $(DEPDIR)/samltest-AudienceTest.Po
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='saml1/core/impl/AudienceTest.cpp' object='samltest-AudienceTest.obj' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(samltest_CXXFLAGS) $(CXXFLAGS) -c -o samltest-AudienceTest.obj `if test -f 'saml1/core/impl/AudienceTest.cpp'; then $(CYGPATH_W) 'saml1/core/impl/AudienceTest.cpp'; else $(CYGPATH_W) '$(srcdir)/saml1/core/impl/AudienceTest.cpp'; fi`
samltest-AuthenticationStatementTest.o: saml1/core/impl/AuthenticationStatementTest.cpp
@am__fastdepCXX_TRUE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(samltest_CXXFLAGS) $(CXXFLAGS) -MT samltest-AuthenticationStatementTest.o -MD -MP -MF $(DEPDIR)/samltest-AuthenticationStatementTest.Tpo -c -o samltest-AuthenticationStatementTest.o `test -f 'saml1/core/impl/AuthenticationStatementTest.cpp' || echo '$(srcdir)/'`saml1/core/impl/AuthenticationStatementTest.cpp
@am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/samltest-AuthenticationStatementTest.Tpo $(DEPDIR)/samltest-AuthenticationStatementTest.Po
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='saml1/core/impl/AuthenticationStatementTest.cpp' object='samltest-AuthenticationStatementTest.o' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(samltest_CXXFLAGS) $(CXXFLAGS) -c -o samltest-AuthenticationStatementTest.o `test -f 'saml1/core/impl/AuthenticationStatementTest.cpp' || echo '$(srcdir)/'`saml1/core/impl/AuthenticationStatementTest.cpp
samltest-AuthenticationStatementTest.obj: saml1/core/impl/AuthenticationStatementTest.cpp
@am__fastdepCXX_TRUE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(samltest_CXXFLAGS) $(CXXFLAGS) -MT samltest-AuthenticationStatementTest.obj -MD -MP -MF $(DEPDIR)/samltest-AuthenticationStatementTest.Tpo -c -o samltest-AuthenticationStatementTest.obj `if test -f 'saml1/core/impl/AuthenticationStatementTest.cpp'; then $(CYGPATH_W) 'saml1/core/impl/AuthenticationStatementTest.cpp'; else $(CYGPATH_W) '$(srcdir)/saml1/core/impl/AuthenticationStatementTest.cpp'; fi`
@am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/samltest-AuthenticationStatementTest.Tpo $(DEPDIR)/samltest-AuthenticationStatementTest.Po
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='saml1/core/impl/AuthenticationStatementTest.cpp' object='samltest-AuthenticationStatementTest.obj' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(samltest_CXXFLAGS) $(CXXFLAGS) -c -o samltest-AuthenticationStatementTest.obj `if test -f 'saml1/core/impl/AuthenticationStatementTest.cpp'; then $(CYGPATH_W) 'saml1/core/impl/AuthenticationStatementTest.cpp'; else $(CYGPATH_W) '$(srcdir)/saml1/core/impl/AuthenticationStatementTest.cpp'; fi`
samltest-SAML1ArtifactTest.o: saml1/binding/SAML1ArtifactTest.cpp
@am__fastdepCXX_TRUE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(samltest_CXXFLAGS) $(CXXFLAGS) -MT samltest-SAML1ArtifactTest.o -MD -MP -MF $(DEPDIR)/samltest-SAML1ArtifactTest.Tpo -c -o samltest-SAML1ArtifactTest.o `test -f 'saml1/binding/SAML1ArtifactTest.cpp' || echo '$(srcdir)/'`saml1/binding/SAML1ArtifactTest.cpp
@am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/samltest-SAML1ArtifactTest.Tpo $(DEPDIR)/samltest-SAML1ArtifactTest.Po
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='saml1/binding/SAML1ArtifactTest.cpp' object='samltest-SAML1ArtifactTest.o' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(samltest_CXXFLAGS) $(CXXFLAGS) -c -o samltest-SAML1ArtifactTest.o `test -f 'saml1/binding/SAML1ArtifactTest.cpp' || echo '$(srcdir)/'`saml1/binding/SAML1ArtifactTest.cpp
samltest-SAML1ArtifactTest.obj: saml1/binding/SAML1ArtifactTest.cpp
@am__fastdepCXX_TRUE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(samltest_CXXFLAGS) $(CXXFLAGS) -MT samltest-SAML1ArtifactTest.obj -MD -MP -MF $(DEPDIR)/samltest-SAML1ArtifactTest.Tpo -c -o samltest-SAML1ArtifactTest.obj `if test -f 'saml1/binding/SAML1ArtifactTest.cpp'; then $(CYGPATH_W) 'saml1/binding/SAML1ArtifactTest.cpp'; else $(CYGPATH_W) '$(srcdir)/saml1/binding/SAML1ArtifactTest.cpp'; fi`
@am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/samltest-SAML1ArtifactTest.Tpo $(DEPDIR)/samltest-SAML1ArtifactTest.Po
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='saml1/binding/SAML1ArtifactTest.cpp' object='samltest-SAML1ArtifactTest.obj' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(samltest_CXXFLAGS) $(CXXFLAGS) -c -o samltest-SAML1ArtifactTest.obj `if test -f 'saml1/binding/SAML1ArtifactTest.cpp'; then $(CYGPATH_W) 'saml1/binding/SAML1ArtifactTest.cpp'; else $(CYGPATH_W) '$(srcdir)/saml1/binding/SAML1ArtifactTest.cpp'; fi`
samltest-SAML1POSTTest.o: saml1/binding/SAML1POSTTest.cpp
@am__fastdepCXX_TRUE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(samltest_CXXFLAGS) $(CXXFLAGS) -MT samltest-SAML1POSTTest.o -MD -MP -MF $(DEPDIR)/samltest-SAML1POSTTest.Tpo -c -o samltest-SAML1POSTTest.o `test -f 'saml1/binding/SAML1POSTTest.cpp' || echo '$(srcdir)/'`saml1/binding/SAML1POSTTest.cpp
@am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/samltest-SAML1POSTTest.Tpo $(DEPDIR)/samltest-SAML1POSTTest.Po
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='saml1/binding/SAML1POSTTest.cpp' object='samltest-SAML1POSTTest.o' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(samltest_CXXFLAGS) $(CXXFLAGS) -c -o samltest-SAML1POSTTest.o `test -f 'saml1/binding/SAML1POSTTest.cpp' || echo '$(srcdir)/'`saml1/binding/SAML1POSTTest.cpp
samltest-SAML1POSTTest.obj: saml1/binding/SAML1POSTTest.cpp
@am__fastdepCXX_TRUE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(samltest_CXXFLAGS) $(CXXFLAGS) -MT samltest-SAML1POSTTest.obj -MD -MP -MF $(DEPDIR)/samltest-SAML1POSTTest.Tpo -c -o samltest-SAML1POSTTest.obj `if test -f 'saml1/binding/SAML1POSTTest.cpp'; then $(CYGPATH_W) 'saml1/binding/SAML1POSTTest.cpp'; else $(CYGPATH_W) '$(srcdir)/saml1/binding/SAML1POSTTest.cpp'; fi`
@am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/samltest-SAML1POSTTest.Tpo $(DEPDIR)/samltest-SAML1POSTTest.Po
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='saml1/binding/SAML1POSTTest.cpp' object='samltest-SAML1POSTTest.obj' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(samltest_CXXFLAGS) $(CXXFLAGS) -c -o samltest-SAML1POSTTest.obj `if test -f 'saml1/binding/SAML1POSTTest.cpp'; then $(CYGPATH_W) 'saml1/binding/SAML1POSTTest.cpp'; else $(CYGPATH_W) '$(srcdir)/saml1/binding/SAML1POSTTest.cpp'; fi`
samltest-SAML1PolicyTest.o: saml1/profile/SAML1PolicyTest.cpp
@am__fastdepCXX_TRUE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(samltest_CXXFLAGS) $(CXXFLAGS) -MT samltest-SAML1PolicyTest.o -MD -MP -MF $(DEPDIR)/samltest-SAML1PolicyTest.Tpo -c -o samltest-SAML1PolicyTest.o `test -f 'saml1/profile/SAML1PolicyTest.cpp' || echo '$(srcdir)/'`saml1/profile/SAML1PolicyTest.cpp
@am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/samltest-SAML1PolicyTest.Tpo $(DEPDIR)/samltest-SAML1PolicyTest.Po
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='saml1/profile/SAML1PolicyTest.cpp' object='samltest-SAML1PolicyTest.o' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(samltest_CXXFLAGS) $(CXXFLAGS) -c -o samltest-SAML1PolicyTest.o `test -f 'saml1/profile/SAML1PolicyTest.cpp' || echo '$(srcdir)/'`saml1/profile/SAML1PolicyTest.cpp
samltest-SAML1PolicyTest.obj: saml1/profile/SAML1PolicyTest.cpp
@am__fastdepCXX_TRUE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(samltest_CXXFLAGS) $(CXXFLAGS) -MT samltest-SAML1PolicyTest.obj -MD -MP -MF $(DEPDIR)/samltest-SAML1PolicyTest.Tpo -c -o samltest-SAML1PolicyTest.obj `if test -f 'saml1/profile/SAML1PolicyTest.cpp'; then $(CYGPATH_W) 'saml1/profile/SAML1PolicyTest.cpp'; else $(CYGPATH_W) '$(srcdir)/saml1/profile/SAML1PolicyTest.cpp'; fi`
@am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/samltest-SAML1PolicyTest.Tpo $(DEPDIR)/samltest-SAML1PolicyTest.Po
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='saml1/profile/SAML1PolicyTest.cpp' object='samltest-SAML1PolicyTest.obj' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(samltest_CXXFLAGS) $(CXXFLAGS) -c -o samltest-SAML1PolicyTest.obj `if test -f 'saml1/profile/SAML1PolicyTest.cpp'; then $(CYGPATH_W) 'saml1/profile/SAML1PolicyTest.cpp'; else $(CYGPATH_W) '$(srcdir)/saml1/profile/SAML1PolicyTest.cpp'; fi`
samltest-Action20Test.o: saml2/core/impl/Action20Test.cpp
@am__fastdepCXX_TRUE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(samltest_CXXFLAGS) $(CXXFLAGS) -MT samltest-Action20Test.o -MD -MP -MF $(DEPDIR)/samltest-Action20Test.Tpo -c -o samltest-Action20Test.o `test -f 'saml2/core/impl/Action20Test.cpp' || echo '$(srcdir)/'`saml2/core/impl/Action20Test.cpp
@am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/samltest-Action20Test.Tpo $(DEPDIR)/samltest-Action20Test.Po
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='saml2/core/impl/Action20Test.cpp' object='samltest-Action20Test.o' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(samltest_CXXFLAGS) $(CXXFLAGS) -c -o samltest-Action20Test.o `test -f 'saml2/core/impl/Action20Test.cpp' || echo '$(srcdir)/'`saml2/core/impl/Action20Test.cpp
samltest-Action20Test.obj: saml2/core/impl/Action20Test.cpp
@am__fastdepCXX_TRUE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(samltest_CXXFLAGS) $(CXXFLAGS) -MT samltest-Action20Test.obj -MD -MP -MF $(DEPDIR)/samltest-Action20Test.Tpo -c -o samltest-Action20Test.obj `if test -f 'saml2/core/impl/Action20Test.cpp'; then $(CYGPATH_W) 'saml2/core/impl/Action20Test.cpp'; else $(CYGPATH_W) '$(srcdir)/saml2/core/impl/Action20Test.cpp'; fi`
@am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/samltest-Action20Test.Tpo $(DEPDIR)/samltest-Action20Test.Po
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='saml2/core/impl/Action20Test.cpp' object='samltest-Action20Test.obj' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(samltest_CXXFLAGS) $(CXXFLAGS) -c -o samltest-Action20Test.obj `if test -f 'saml2/core/impl/Action20Test.cpp'; then $(CYGPATH_W) 'saml2/core/impl/Action20Test.cpp'; else $(CYGPATH_W) '$(srcdir)/saml2/core/impl/Action20Test.cpp'; fi`
samltest-Advice20Test.o: saml2/core/impl/Advice20Test.cpp
@am__fastdepCXX_TRUE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(samltest_CXXFLAGS) $(CXXFLAGS) -MT samltest-Advice20Test.o -MD -MP -MF $(DEPDIR)/samltest-Advice20Test.Tpo -c -o samltest-Advice20Test.o `test -f 'saml2/core/impl/Advice20Test.cpp' || echo '$(srcdir)/'`saml2/core/impl/Advice20Test.cpp
@am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/samltest-Advice20Test.Tpo $(DEPDIR)/samltest-Advice20Test.Po
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='saml2/core/impl/Advice20Test.cpp' object='samltest-Advice20Test.o' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(samltest_CXXFLAGS) $(CXXFLAGS) -c -o samltest-Advice20Test.o `test -f 'saml2/core/impl/Advice20Test.cpp' || echo '$(srcdir)/'`saml2/core/impl/Advice20Test.cpp
samltest-Advice20Test.obj: saml2/core/impl/Advice20Test.cpp
@am__fastdepCXX_TRUE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(samltest_CXXFLAGS) $(CXXFLAGS) -MT samltest-Advice20Test.obj -MD -MP -MF $(DEPDIR)/samltest-Advice20Test.Tpo -c -o samltest-Advice20Test.obj `if test -f 'saml2/core/impl/Advice20Test.cpp'; then $(CYGPATH_W) 'saml2/core/impl/Advice20Test.cpp'; else $(CYGPATH_W) '$(srcdir)/saml2/core/impl/Advice20Test.cpp'; fi`
@am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/samltest-Advice20Test.Tpo $(DEPDIR)/samltest-Advice20Test.Po
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='saml2/core/impl/Advice20Test.cpp' object='samltest-Advice20Test.obj' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(samltest_CXXFLAGS) $(CXXFLAGS) -c -o samltest-Advice20Test.obj `if test -f 'saml2/core/impl/Advice20Test.cpp'; then $(CYGPATH_W) 'saml2/core/impl/Advice20Test.cpp'; else $(CYGPATH_W) '$(srcdir)/saml2/core/impl/Advice20Test.cpp'; fi`
samltest-Artifact20Test.o: saml2/core/impl/Artifact20Test.cpp
@am__fastdepCXX_TRUE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(samltest_CXXFLAGS) $(CXXFLAGS) -MT samltest-Artifact20Test.o -MD -MP -MF $(DEPDIR)/samltest-Artifact20Test.Tpo -c -o samltest-Artifact20Test.o `test -f 'saml2/core/impl/Artifact20Test.cpp' || echo '$(srcdir)/'`saml2/core/impl/Artifact20Test.cpp
@am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/samltest-Artifact20Test.Tpo $(DEPDIR)/samltest-Artifact20Test.Po
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='saml2/core/impl/Artifact20Test.cpp' object='samltest-Artifact20Test.o' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(samltest_CXXFLAGS) $(CXXFLAGS) -c -o samltest-Artifact20Test.o `test -f 'saml2/core/impl/Artifact20Test.cpp' || echo '$(srcdir)/'`saml2/core/impl/Artifact20Test.cpp
samltest-Artifact20Test.obj: saml2/core/impl/Artifact20Test.cpp
@am__fastdepCXX_TRUE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(samltest_CXXFLAGS) $(CXXFLAGS) -MT samltest-Artifact20Test.obj -MD -MP -MF $(DEPDIR)/samltest-Artifact20Test.Tpo -c -o samltest-Artifact20Test.obj `if test -f 'saml2/core/impl/Artifact20Test.cpp'; then $(CYGPATH_W) 'saml2/core/impl/Artifact20Test.cpp'; else $(CYGPATH_W) '$(srcdir)/saml2/core/impl/Artifact20Test.cpp'; fi`
@am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/samltest-Artifact20Test.Tpo $(DEPDIR)/samltest-Artifact20Test.Po
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='saml2/core/impl/Artifact20Test.cpp' object='samltest-Artifact20Test.obj' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(samltest_CXXFLAGS) $(CXXFLAGS) -c -o samltest-Artifact20Test.obj `if test -f 'saml2/core/impl/Artifact20Test.cpp'; then $(CYGPATH_W) 'saml2/core/impl/Artifact20Test.cpp'; else $(CYGPATH_W) '$(srcdir)/saml2/core/impl/Artifact20Test.cpp'; fi`
samltest-ArtifactResolve20Test.o: saml2/core/impl/ArtifactResolve20Test.cpp
@am__fastdepCXX_TRUE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(samltest_CXXFLAGS) $(CXXFLAGS) -MT samltest-ArtifactResolve20Test.o -MD -MP -MF $(DEPDIR)/samltest-ArtifactResolve20Test.Tpo -c -o samltest-ArtifactResolve20Test.o `test -f 'saml2/core/impl/ArtifactResolve20Test.cpp' || echo '$(srcdir)/'`saml2/core/impl/ArtifactResolve20Test.cpp
@am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/samltest-ArtifactResolve20Test.Tpo $(DEPDIR)/samltest-ArtifactResolve20Test.Po
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='saml2/core/impl/ArtifactResolve20Test.cpp' object='samltest-ArtifactResolve20Test.o' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(samltest_CXXFLAGS) $(CXXFLAGS) -c -o samltest-ArtifactResolve20Test.o `test -f 'saml2/core/impl/ArtifactResolve20Test.cpp' || echo '$(srcdir)/'`saml2/core/impl/ArtifactResolve20Test.cpp
samltest-ArtifactResolve20Test.obj: saml2/core/impl/ArtifactResolve20Test.cpp
@am__fastdepCXX_TRUE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(samltest_CXXFLAGS) $(CXXFLAGS) -MT samltest-ArtifactResolve20Test.obj -MD -MP -MF $(DEPDIR)/samltest-ArtifactResolve20Test.Tpo -c -o samltest-ArtifactResolve20Test.obj `if test -f 'saml2/core/impl/ArtifactResolve20Test.cpp'; then $(CYGPATH_W) 'saml2/core/impl/ArtifactResolve20Test.cpp'; else $(CYGPATH_W) '$(srcdir)/saml2/core/impl/ArtifactResolve20Test.cpp'; fi`
@am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/samltest-ArtifactResolve20Test.Tpo $(DEPDIR)/samltest-ArtifactResolve20Test.Po
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='saml2/core/impl/ArtifactResolve20Test.cpp' object='samltest-ArtifactResolve20Test.obj' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(samltest_CXXFLAGS) $(CXXFLAGS) -c -o samltest-ArtifactResolve20Test.obj `if test -f 'saml2/core/impl/ArtifactResolve20Test.cpp'; then $(CYGPATH_W) 'saml2/core/impl/ArtifactResolve20Test.cpp'; else $(CYGPATH_W) '$(srcdir)/saml2/core/impl/ArtifactResolve20Test.cpp'; fi`
samltest-ArtifactResponse20Test.o: saml2/core/impl/ArtifactResponse20Test.cpp
@am__fastdepCXX_TRUE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(samltest_CXXFLAGS) $(CXXFLAGS) -MT samltest-ArtifactResponse20Test.o -MD -MP -MF $(DEPDIR)/samltest-ArtifactResponse20Test.Tpo -c -o samltest-ArtifactResponse20Test.o `test -f 'saml2/core/impl/ArtifactResponse20Test.cpp' || echo '$(srcdir)/'`saml2/core/impl/ArtifactResponse20Test.cpp
@am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/samltest-ArtifactResponse20Test.Tpo $(DEPDIR)/samltest-ArtifactResponse20Test.Po
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='saml2/core/impl/ArtifactResponse20Test.cpp' object='samltest-ArtifactResponse20Test.o' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(samltest_CXXFLAGS) $(CXXFLAGS) -c -o samltest-ArtifactResponse20Test.o `test -f 'saml2/core/impl/ArtifactResponse20Test.cpp' || echo '$(srcdir)/'`saml2/core/impl/ArtifactResponse20Test.cpp
samltest-ArtifactResponse20Test.obj: saml2/core/impl/ArtifactResponse20Test.cpp
@am__fastdepCXX_TRUE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(samltest_CXXFLAGS) $(CXXFLAGS) -MT samltest-ArtifactResponse20Test.obj -MD -MP -MF $(DEPDIR)/samltest-ArtifactResponse20Test.Tpo -c -o samltest-ArtifactResponse20Test.obj `if test -f 'saml2/core/impl/ArtifactResponse20Test.cpp'; then $(CYGPATH_W) 'saml2/core/impl/ArtifactResponse20Test.cpp'; else $(CYGPATH_W) '$(srcdir)/saml2/core/impl/ArtifactResponse20Test.cpp'; fi`
@am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/samltest-ArtifactResponse20Test.Tpo $(DEPDIR)/samltest-ArtifactResponse20Test.Po
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='saml2/core/impl/ArtifactResponse20Test.cpp' object='samltest-ArtifactResponse20Test.obj' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(samltest_CXXFLAGS) $(CXXFLAGS) -c -o samltest-ArtifactResponse20Test.obj `if test -f 'saml2/core/impl/ArtifactResponse20Test.cpp'; then $(CYGPATH_W) 'saml2/core/impl/ArtifactResponse20Test.cpp'; else $(CYGPATH_W) '$(srcdir)/saml2/core/impl/ArtifactResponse20Test.cpp'; fi`
samltest-Assertion20Test.o: saml2/core/impl/Assertion20Test.cpp
@am__fastdepCXX_TRUE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(samltest_CXXFLAGS) $(CXXFLAGS) -MT samltest-Assertion20Test.o -MD -MP -MF $(DEPDIR)/samltest-Assertion20Test.Tpo -c -o samltest-Assertion20Test.o `test -f 'saml2/core/impl/Assertion20Test.cpp' || echo '$(srcdir)/'`saml2/core/impl/Assertion20Test.cpp
@am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/samltest-Assertion20Test.Tpo $(DEPDIR)/samltest-Assertion20Test.Po
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='saml2/core/impl/Assertion20Test.cpp' object='samltest-Assertion20Test.o' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(samltest_CXXFLAGS) $(CXXFLAGS) -c -o samltest-Assertion20Test.o `test -f 'saml2/core/impl/Assertion20Test.cpp' || echo '$(srcdir)/'`saml2/core/impl/Assertion20Test.cpp
samltest-Assertion20Test.obj: saml2/core/impl/Assertion20Test.cpp
@am__fastdepCXX_TRUE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(samltest_CXXFLAGS) $(CXXFLAGS) -MT samltest-Assertion20Test.obj -MD -MP -MF $(DEPDIR)/samltest-Assertion20Test.Tpo -c -o samltest-Assertion20Test.obj `if test -f 'saml2/core/impl/Assertion20Test.cpp'; then $(CYGPATH_W) 'saml2/core/impl/Assertion20Test.cpp'; else $(CYGPATH_W) '$(srcdir)/saml2/core/impl/Assertion20Test.cpp'; fi`
@am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/samltest-Assertion20Test.Tpo $(DEPDIR)/samltest-Assertion20Test.Po
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='saml2/core/impl/Assertion20Test.cpp' object='samltest-Assertion20Test.obj' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(samltest_CXXFLAGS) $(CXXFLAGS) -c -o samltest-Assertion20Test.obj `if test -f 'saml2/core/impl/Assertion20Test.cpp'; then $(CYGPATH_W) 'saml2/core/impl/Assertion20Test.cpp'; else $(CYGPATH_W) '$(srcdir)/saml2/core/impl/Assertion20Test.cpp'; fi`
samltest-AssertionIDRef20Test.o: saml2/core/impl/AssertionIDRef20Test.cpp
@am__fastdepCXX_TRUE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(samltest_CXXFLAGS) $(CXXFLAGS) -MT samltest-AssertionIDRef20Test.o -MD -MP -MF $(DEPDIR)/samltest-AssertionIDRef20Test.Tpo -c -o samltest-AssertionIDRef20Test.o `test -f 'saml2/core/impl/AssertionIDRef20Test.cpp' || echo '$(srcdir)/'`saml2/core/impl/AssertionIDRef20Test.cpp
@am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/samltest-AssertionIDRef20Test.Tpo $(DEPDIR)/samltest-AssertionIDRef20Test.Po
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='saml2/core/impl/AssertionIDRef20Test.cpp' object='samltest-AssertionIDRef20Test.o' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(samltest_CXXFLAGS) $(CXXFLAGS) -c -o samltest-AssertionIDRef20Test.o `test -f 'saml2/core/impl/AssertionIDRef20Test.cpp' || echo '$(srcdir)/'`saml2/core/impl/AssertionIDRef20Test.cpp
samltest-AssertionIDRef20Test.obj: saml2/core/impl/AssertionIDRef20Test.cpp
@am__fastdepCXX_TRUE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(samltest_CXXFLAGS) $(CXXFLAGS) -MT samltest-AssertionIDRef20Test.obj -MD -MP -MF $(DEPDIR)/samltest-AssertionIDRef20Test.Tpo -c -o samltest-AssertionIDRef20Test.obj `if test -f 'saml2/core/impl/AssertionIDRef20Test.cpp'; then $(CYGPATH_W) 'saml2/core/impl/AssertionIDRef20Test.cpp'; else $(CYGPATH_W) '$(srcdir)/saml2/core/impl/AssertionIDRef20Test.cpp'; fi`
@am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/samltest-AssertionIDRef20Test.Tpo $(DEPDIR)/samltest-AssertionIDRef20Test.Po
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='saml2/core/impl/AssertionIDRef20Test.cpp' object='samltest-AssertionIDRef20Test.obj' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(samltest_CXXFLAGS) $(CXXFLAGS) -c -o samltest-AssertionIDRef20Test.obj `if test -f 'saml2/core/impl/AssertionIDRef20Test.cpp'; then $(CYGPATH_W) 'saml2/core/impl/AssertionIDRef20Test.cpp'; else $(CYGPATH_W) '$(srcdir)/saml2/core/impl/AssertionIDRef20Test.cpp'; fi`
samltest-AssertionIDRequest20Test.o: saml2/core/impl/AssertionIDRequest20Test.cpp
@am__fastdepCXX_TRUE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(samltest_CXXFLAGS) $(CXXFLAGS) -MT samltest-AssertionIDRequest20Test.o -MD -MP -MF $(DEPDIR)/samltest-AssertionIDRequest20Test.Tpo -c -o samltest-AssertionIDRequest20Test.o `test -f 'saml2/core/impl/AssertionIDRequest20Test.cpp' || echo '$(srcdir)/'`saml2/core/impl/AssertionIDRequest20Test.cpp
@am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/samltest-AssertionIDRequest20Test.Tpo $(DEPDIR)/samltest-AssertionIDRequest20Test.Po
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='saml2/core/impl/AssertionIDRequest20Test.cpp' object='samltest-AssertionIDRequest20Test.o' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(samltest_CXXFLAGS) $(CXXFLAGS) -c -o samltest-AssertionIDRequest20Test.o `test -f 'saml2/core/impl/AssertionIDRequest20Test.cpp' || echo '$(srcdir)/'`saml2/core/impl/AssertionIDRequest20Test.cpp
samltest-AssertionIDRequest20Test.obj: saml2/core/impl/AssertionIDRequest20Test.cpp
@am__fastdepCXX_TRUE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(samltest_CXXFLAGS) $(CXXFLAGS) -MT samltest-AssertionIDRequest20Test.obj -MD -MP -MF $(DEPDIR)/samltest-AssertionIDRequest20Test.Tpo -c -o samltest-AssertionIDRequest20Test.obj `if test -f 'saml2/core/impl/AssertionIDRequest20Test.cpp'; then $(CYGPATH_W) 'saml2/core/impl/AssertionIDRequest20Test.cpp'; else $(CYGPATH_W) '$(srcdir)/saml2/core/impl/AssertionIDRequest20Test.cpp'; fi`
@am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/samltest-AssertionIDRequest20Test.Tpo $(DEPDIR)/samltest-AssertionIDRequest20Test.Po
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='saml2/core/impl/AssertionIDRequest20Test.cpp' object='samltest-AssertionIDRequest20Test.obj' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(samltest_CXXFLAGS) $(CXXFLAGS) -c -o samltest-AssertionIDRequest20Test.obj `if test -f 'saml2/core/impl/AssertionIDRequest20Test.cpp'; then $(CYGPATH_W) 'saml2/core/impl/AssertionIDRequest20Test.cpp'; else $(CYGPATH_W) '$(srcdir)/saml2/core/impl/AssertionIDRequest20Test.cpp'; fi`
samltest-AssertionURIRef20Test.o: saml2/core/impl/AssertionURIRef20Test.cpp
@am__fastdepCXX_TRUE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(samltest_CXXFLAGS) $(CXXFLAGS) -MT samltest-AssertionURIRef20Test.o -MD -MP -MF $(DEPDIR)/samltest-AssertionURIRef20Test.Tpo -c -o samltest-AssertionURIRef20Test.o `test -f 'saml2/core/impl/AssertionURIRef20Test.cpp' || echo '$(srcdir)/'`saml2/core/impl/AssertionURIRef20Test.cpp
@am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/samltest-AssertionURIRef20Test.Tpo $(DEPDIR)/samltest-AssertionURIRef20Test.Po
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='saml2/core/impl/AssertionURIRef20Test.cpp' object='samltest-AssertionURIRef20Test.o' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(samltest_CXXFLAGS) $(CXXFLAGS) -c -o samltest-AssertionURIRef20Test.o `test -f 'saml2/core/impl/AssertionURIRef20Test.cpp' || echo '$(srcdir)/'`saml2/core/impl/AssertionURIRef20Test.cpp
samltest-AssertionURIRef20Test.obj: saml2/core/impl/AssertionURIRef20Test.cpp
@am__fastdepCXX_TRUE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(samltest_CXXFLAGS) $(CXXFLAGS) -MT samltest-AssertionURIRef20Test.obj -MD -MP -MF $(DEPDIR)/samltest-AssertionURIRef20Test.Tpo -c -o samltest-AssertionURIRef20Test.obj `if test -f 'saml2/core/impl/AssertionURIRef20Test.cpp'; then $(CYGPATH_W) 'saml2/core/impl/AssertionURIRef20Test.cpp'; else $(CYGPATH_W) '$(srcdir)/saml2/core/impl/AssertionURIRef20Test.cpp'; fi`
@am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/samltest-AssertionURIRef20Test.Tpo $(DEPDIR)/samltest-AssertionURIRef20Test.Po
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='saml2/core/impl/AssertionURIRef20Test.cpp' object='samltest-AssertionURIRef20Test.obj' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(samltest_CXXFLAGS) $(CXXFLAGS) -c -o samltest-AssertionURIRef20Test.obj `if test -f 'saml2/core/impl/AssertionURIRef20Test.cpp'; then $(CYGPATH_W) 'saml2/core/impl/AssertionURIRef20Test.cpp'; else $(CYGPATH_W) '$(srcdir)/saml2/core/impl/AssertionURIRef20Test.cpp'; fi`
samltest-Attribute20Test.o: saml2/core/impl/Attribute20Test.cpp
@am__fastdepCXX_TRUE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(samltest_CXXFLAGS) $(CXXFLAGS) -MT samltest-Attribute20Test.o -MD -MP -MF $(DEPDIR)/samltest-Attribute20Test.Tpo -c -o samltest-Attribute20Test.o `test -f 'saml2/core/impl/Attribute20Test.cpp' || echo '$(srcdir)/'`saml2/core/impl/Attribute20Test.cpp
@am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/samltest-Attribute20Test.Tpo $(DEPDIR)/samltest-Attribute20Test.Po
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='saml2/core/impl/Attribute20Test.cpp' object='samltest-Attribute20Test.o' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(samltest_CXXFLAGS) $(CXXFLAGS) -c -o samltest-Attribute20Test.o `test -f 'saml2/core/impl/Attribute20Test.cpp' || echo '$(srcdir)/'`saml2/core/impl/Attribute20Test.cpp
samltest-Attribute20Test.obj: saml2/core/impl/Attribute20Test.cpp
@am__fastdepCXX_TRUE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(samltest_CXXFLAGS) $(CXXFLAGS) -MT samltest-Attribute20Test.obj -MD -MP -MF $(DEPDIR)/samltest-Attribute20Test.Tpo -c -o samltest-Attribute20Test.obj `if test -f 'saml2/core/impl/Attribute20Test.cpp'; then $(CYGPATH_W) 'saml2/core/impl/Attribute20Test.cpp'; else $(CYGPATH_W) '$(srcdir)/saml2/core/impl/Attribute20Test.cpp'; fi`
@am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/samltest-Attribute20Test.Tpo $(DEPDIR)/samltest-Attribute20Test.Po
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='saml2/core/impl/Attribute20Test.cpp' object='samltest-Attribute20Test.obj' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(samltest_CXXFLAGS) $(CXXFLAGS) -c -o samltest-Attribute20Test.obj `if test -f 'saml2/core/impl/Attribute20Test.cpp'; then $(CYGPATH_W) 'saml2/core/impl/Attribute20Test.cpp'; else $(CYGPATH_W) '$(srcdir)/saml2/core/impl/Attribute20Test.cpp'; fi`
samltest-AttributeQuery20Test.o: saml2/core/impl/AttributeQuery20Test.cpp
@am__fastdepCXX_TRUE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(samltest_CXXFLAGS) $(CXXFLAGS) -MT samltest-AttributeQuery20Test.o -MD -MP -MF $(DEPDIR)/samltest-AttributeQuery20Test.Tpo -c -o samltest-AttributeQuery20Test.o `test -f 'saml2/core/impl/AttributeQuery20Test.cpp' || echo '$(srcdir)/'`saml2/core/impl/AttributeQuery20Test.cpp
@am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/samltest-AttributeQuery20Test.Tpo $(DEPDIR)/samltest-AttributeQuery20Test.Po
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='saml2/core/impl/AttributeQuery20Test.cpp' object='samltest-AttributeQuery20Test.o' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(samltest_CXXFLAGS) $(CXXFLAGS) -c -o samltest-AttributeQuery20Test.o `test -f 'saml2/core/impl/AttributeQuery20Test.cpp' || echo '$(srcdir)/'`saml2/core/impl/AttributeQuery20Test.cpp
samltest-AttributeQuery20Test.obj: saml2/core/impl/AttributeQuery20Test.cpp
@am__fastdepCXX_TRUE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(samltest_CXXFLAGS) $(CXXFLAGS) -MT samltest-AttributeQuery20Test.obj -MD -MP -MF $(DEPDIR)/samltest-AttributeQuery20Test.Tpo -c -o samltest-AttributeQuery20Test.obj `if test -f 'saml2/core/impl/AttributeQuery20Test.cpp'; then $(CYGPATH_W) 'saml2/core/impl/AttributeQuery20Test.cpp'; else $(CYGPATH_W) '$(srcdir)/saml2/core/impl/AttributeQuery20Test.cpp'; fi`
@am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/samltest-AttributeQuery20Test.Tpo $(DEPDIR)/samltest-AttributeQuery20Test.Po
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='saml2/core/impl/AttributeQuery20Test.cpp' object='samltest-AttributeQuery20Test.obj' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(samltest_CXXFLAGS) $(CXXFLAGS) -c -o samltest-AttributeQuery20Test.obj `if test -f 'saml2/core/impl/AttributeQuery20Test.cpp'; then $(CYGPATH_W) 'saml2/core/impl/AttributeQuery20Test.cpp'; else $(CYGPATH_W) '$(srcdir)/saml2/core/impl/AttributeQuery20Test.cpp'; fi`
samltest-AttributeStatement20Test.o: saml2/core/impl/AttributeStatement20Test.cpp
@am__fastdepCXX_TRUE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(samltest_CXXFLAGS) $(CXXFLAGS) -MT samltest-AttributeStatement20Test.o -MD -MP -MF $(DEPDIR)/samltest-AttributeStatement20Test.Tpo -c -o samltest-AttributeStatement20Test.o `test -f 'saml2/core/impl/AttributeStatement20Test.cpp' || echo '$(srcdir)/'`saml2/core/impl/AttributeStatement20Test.cpp
@am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/samltest-AttributeStatement20Test.Tpo $(DEPDIR)/samltest-AttributeStatement20Test.Po
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='saml2/core/impl/AttributeStatement20Test.cpp' object='samltest-AttributeStatement20Test.o' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(samltest_CXXFLAGS) $(CXXFLAGS) -c -o samltest-AttributeStatement20Test.o `test -f 'saml2/core/impl/AttributeStatement20Test.cpp' || echo '$(srcdir)/'`saml2/core/impl/AttributeStatement20Test.cpp
samltest-AttributeStatement20Test.obj: saml2/core/impl/AttributeStatement20Test.cpp
@am__fastdepCXX_TRUE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(samltest_CXXFLAGS) $(CXXFLAGS) -MT samltest-AttributeStatement20Test.obj -MD -MP -MF $(DEPDIR)/samltest-AttributeStatement20Test.Tpo -c -o samltest-AttributeStatement20Test.obj `if test -f 'saml2/core/impl/AttributeStatement20Test.cpp'; then $(CYGPATH_W) 'saml2/core/impl/AttributeStatement20Test.cpp'; else $(CYGPATH_W) '$(srcdir)/saml2/core/impl/AttributeStatement20Test.cpp'; fi`
@am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/samltest-AttributeStatement20Test.Tpo $(DEPDIR)/samltest-AttributeStatement20Test.Po
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='saml2/core/impl/AttributeStatement20Test.cpp' object='samltest-AttributeStatement20Test.obj' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(samltest_CXXFLAGS) $(CXXFLAGS) -c -o samltest-AttributeStatement20Test.obj `if test -f 'saml2/core/impl/AttributeStatement20Test.cpp'; then $(CYGPATH_W) 'saml2/core/impl/AttributeStatement20Test.cpp'; else $(CYGPATH_W) '$(srcdir)/saml2/core/impl/AttributeStatement20Test.cpp'; fi`
samltest-Audience20Test.o: saml2/core/impl/Audience20Test.cpp
@am__fastdepCXX_TRUE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(samltest_CXXFLAGS) $(CXXFLAGS) -MT samltest-Audience20Test.o -MD -MP -MF $(DEPDIR)/samltest-Audience20Test.Tpo -c -o samltest-Audience20Test.o `test -f 'saml2/core/impl/Audience20Test.cpp' || echo '$(srcdir)/'`saml2/core/impl/Audience20Test.cpp
@am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/samltest-Audience20Test.Tpo $(DEPDIR)/samltest-Audience20Test.Po
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='saml2/core/impl/Audience20Test.cpp' object='samltest-Audience20Test.o' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(samltest_CXXFLAGS) $(CXXFLAGS) -c -o samltest-Audience20Test.o `test -f 'saml2/core/impl/Audience20Test.cpp' || echo '$(srcdir)/'`saml2/core/impl/Audience20Test.cpp
samltest-Audience20Test.obj: saml2/core/impl/Audience20Test.cpp
@am__fastdepCXX_TRUE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(samltest_CXXFLAGS) $(CXXFLAGS) -MT samltest-Audience20Test.obj -MD -MP -MF $(DEPDIR)/samltest-Audience20Test.Tpo -c -o samltest-Audience20Test.obj `if test -f 'saml2/core/impl/Audience20Test.cpp'; then $(CYGPATH_W) 'saml2/core/impl/Audience20Test.cpp'; else $(CYGPATH_W) '$(srcdir)/saml2/core/impl/Audience20Test.cpp'; fi`
@am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/samltest-Audience20Test.Tpo $(DEPDIR)/samltest-Audience20Test.Po
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='saml2/core/impl/Audience20Test.cpp' object='samltest-Audience20Test.obj' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(samltest_CXXFLAGS) $(CXXFLAGS) -c -o samltest-Audience20Test.obj `if test -f 'saml2/core/impl/Audience20Test.cpp'; then $(CYGPATH_W) 'saml2/core/impl/Audience20Test.cpp'; else $(CYGPATH_W) '$(srcdir)/saml2/core/impl/Audience20Test.cpp'; fi`
samltest-AudienceRestriction20Test.o: saml2/core/impl/AudienceRestriction20Test.cpp
@am__fastdepCXX_TRUE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(samltest_CXXFLAGS) $(CXXFLAGS) -MT samltest-AudienceRestriction20Test.o -MD -MP -MF $(DEPDIR)/samltest-AudienceRestriction20Test.Tpo -c -o samltest-AudienceRestriction20Test.o `test -f 'saml2/core/impl/AudienceRestriction20Test.cpp' || echo '$(srcdir)/'`saml2/core/impl/AudienceRestriction20Test.cpp
@am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/samltest-AudienceRestriction20Test.Tpo $(DEPDIR)/samltest-AudienceRestriction20Test.Po
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='saml2/core/impl/AudienceRestriction20Test.cpp' object='samltest-AudienceRestriction20Test.o' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(samltest_CXXFLAGS) $(CXXFLAGS) -c -o samltest-AudienceRestriction20Test.o `test -f 'saml2/core/impl/AudienceRestriction20Test.cpp' || echo '$(srcdir)/'`saml2/core/impl/AudienceRestriction20Test.cpp
samltest-AudienceRestriction20Test.obj: saml2/core/impl/AudienceRestriction20Test.cpp
@am__fastdepCXX_TRUE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(samltest_CXXFLAGS) $(CXXFLAGS) -MT samltest-AudienceRestriction20Test.obj -MD -MP -MF $(DEPDIR)/samltest-AudienceRestriction20Test.Tpo -c -o samltest-AudienceRestriction20Test.obj `if test -f 'saml2/core/impl/AudienceRestriction20Test.cpp'; then $(CYGPATH_W) 'saml2/core/impl/AudienceRestriction20Test.cpp'; else $(CYGPATH_W) '$(srcdir)/saml2/core/impl/AudienceRestriction20Test.cpp'; fi`
@am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/samltest-AudienceRestriction20Test.Tpo $(DEPDIR)/samltest-AudienceRestriction20Test.Po
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='saml2/core/impl/AudienceRestriction20Test.cpp' object='samltest-AudienceRestriction20Test.obj' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(samltest_CXXFLAGS) $(CXXFLAGS) -c -o samltest-AudienceRestriction20Test.obj `if test -f 'saml2/core/impl/AudienceRestriction20Test.cpp'; then $(CYGPATH_W) 'saml2/core/impl/AudienceRestriction20Test.cpp'; else $(CYGPATH_W) '$(srcdir)/saml2/core/impl/AudienceRestriction20Test.cpp'; fi`
samltest-AuthenticatingAuthority20Test.o: saml2/core/impl/AuthenticatingAuthority20Test.cpp
@am__fastdepCXX_TRUE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(samltest_CXXFLAGS) $(CXXFLAGS) -MT samltest-AuthenticatingAuthority20Test.o -MD -MP -MF $(DEPDIR)/samltest-AuthenticatingAuthority20Test.Tpo -c -o samltest-AuthenticatingAuthority20Test.o `test -f 'saml2/core/impl/AuthenticatingAuthority20Test.cpp' || echo '$(srcdir)/'`saml2/core/impl/AuthenticatingAuthority20Test.cpp
@am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/samltest-AuthenticatingAuthority20Test.Tpo $(DEPDIR)/samltest-AuthenticatingAuthority20Test.Po
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='saml2/core/impl/AuthenticatingAuthority20Test.cpp' object='samltest-AuthenticatingAuthority20Test.o' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(samltest_CXXFLAGS) $(CXXFLAGS) -c -o samltest-AuthenticatingAuthority20Test.o `test -f 'saml2/core/impl/AuthenticatingAuthority20Test.cpp' || echo '$(srcdir)/'`saml2/core/impl/AuthenticatingAuthority20Test.cpp
samltest-AuthenticatingAuthority20Test.obj: saml2/core/impl/AuthenticatingAuthority20Test.cpp
@am__fastdepCXX_TRUE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(samltest_CXXFLAGS) $(CXXFLAGS) -MT samltest-AuthenticatingAuthority20Test.obj -MD -MP -MF $(DEPDIR)/samltest-AuthenticatingAuthority20Test.Tpo -c -o samltest-AuthenticatingAuthority20Test.obj `if test -f 'saml2/core/impl/AuthenticatingAuthority20Test.cpp'; then $(CYGPATH_W) 'saml2/core/impl/AuthenticatingAuthority20Test.cpp'; else $(CYGPATH_W) '$(srcdir)/saml2/core/impl/AuthenticatingAuthority20Test.cpp'; fi`
@am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/samltest-AuthenticatingAuthority20Test.Tpo $(DEPDIR)/samltest-AuthenticatingAuthority20Test.Po
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='saml2/core/impl/AuthenticatingAuthority20Test.cpp' object='samltest-AuthenticatingAuthority20Test.obj' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(samltest_CXXFLAGS) $(CXXFLAGS) -c -o samltest-AuthenticatingAuthority20Test.obj `if test -f 'saml2/core/impl/AuthenticatingAuthority20Test.cpp'; then $(CYGPATH_W) 'saml2/core/impl/AuthenticatingAuthority20Test.cpp'; else $(CYGPATH_W) '$(srcdir)/saml2/core/impl/AuthenticatingAuthority20Test.cpp'; fi`
samltest-AuthnContext20Test.o: saml2/core/impl/AuthnContext20Test.cpp
@am__fastdepCXX_TRUE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(samltest_CXXFLAGS) $(CXXFLAGS) -MT samltest-AuthnContext20Test.o -MD -MP -MF $(DEPDIR)/samltest-AuthnContext20Test.Tpo -c -o samltest-AuthnContext20Test.o `test -f 'saml2/core/impl/AuthnContext20Test.cpp' || echo '$(srcdir)/'`saml2/core/impl/AuthnContext20Test.cpp
@am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/samltest-AuthnContext20Test.Tpo $(DEPDIR)/samltest-AuthnContext20Test.Po
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='saml2/core/impl/AuthnContext20Test.cpp' object='samltest-AuthnContext20Test.o' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(samltest_CXXFLAGS) $(CXXFLAGS) -c -o samltest-AuthnContext20Test.o `test -f 'saml2/core/impl/AuthnContext20Test.cpp' || echo '$(srcdir)/'`saml2/core/impl/AuthnContext20Test.cpp
samltest-AuthnContext20Test.obj: saml2/core/impl/AuthnContext20Test.cpp
@am__fastdepCXX_TRUE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(samltest_CXXFLAGS) $(CXXFLAGS) -MT samltest-AuthnContext20Test.obj -MD -MP -MF $(DEPDIR)/samltest-AuthnContext20Test.Tpo -c -o samltest-AuthnContext20Test.obj `if test -f 'saml2/core/impl/AuthnContext20Test.cpp'; then $(CYGPATH_W) 'saml2/core/impl/AuthnContext20Test.cpp'; else $(CYGPATH_W) '$(srcdir)/saml2/core/impl/AuthnContext20Test.cpp'; fi`
@am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/samltest-AuthnContext20Test.Tpo $(DEPDIR)/samltest-AuthnContext20Test.Po
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='saml2/core/impl/AuthnContext20Test.cpp' object='samltest-AuthnContext20Test.obj' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(samltest_CXXFLAGS) $(CXXFLAGS) -c -o samltest-AuthnContext20Test.obj `if test -f 'saml2/core/impl/AuthnContext20Test.cpp'; then $(CYGPATH_W) 'saml2/core/impl/AuthnContext20Test.cpp'; else $(CYGPATH_W) '$(srcdir)/saml2/core/impl/AuthnContext20Test.cpp'; fi`
samltest-AuthnContextClassRef20Test.o: saml2/core/impl/AuthnContextClassRef20Test.cpp
@am__fastdepCXX_TRUE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(samltest_CXXFLAGS) $(CXXFLAGS) -MT samltest-AuthnContextClassRef20Test.o -MD -MP -MF $(DEPDIR)/samltest-AuthnContextClassRef20Test.Tpo -c -o samltest-AuthnContextClassRef20Test.o `test -f 'saml2/core/impl/AuthnContextClassRef20Test.cpp' || echo '$(srcdir)/'`saml2/core/impl/AuthnContextClassRef20Test.cpp
@am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/samltest-AuthnContextClassRef20Test.Tpo $(DEPDIR)/samltest-AuthnContextClassRef20Test.Po
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='saml2/core/impl/AuthnContextClassRef20Test.cpp' object='samltest-AuthnContextClassRef20Test.o' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(samltest_CXXFLAGS) $(CXXFLAGS) -c -o samltest-AuthnContextClassRef20Test.o `test -f 'saml2/core/impl/AuthnContextClassRef20Test.cpp' || echo '$(srcdir)/'`saml2/core/impl/AuthnContextClassRef20Test.cpp
samltest-AuthnContextClassRef20Test.obj: saml2/core/impl/AuthnContextClassRef20Test.cpp
@am__fastdepCXX_TRUE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(samltest_CXXFLAGS) $(CXXFLAGS) -MT samltest-AuthnContextClassRef20Test.obj -MD -MP -MF $(DEPDIR)/samltest-AuthnContextClassRef20Test.Tpo -c -o samltest-AuthnContextClassRef20Test.obj `if test -f 'saml2/core/impl/AuthnContextClassRef20Test.cpp'; then $(CYGPATH_W) 'saml2/core/impl/AuthnContextClassRef20Test.cpp'; else $(CYGPATH_W) '$(srcdir)/saml2/core/impl/AuthnContextClassRef20Test.cpp'; fi`
@am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/samltest-AuthnContextClassRef20Test.Tpo $(DEPDIR)/samltest-AuthnContextClassRef20Test.Po
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='saml2/core/impl/AuthnContextClassRef20Test.cpp' object='samltest-AuthnContextClassRef20Test.obj' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(samltest_CXXFLAGS) $(CXXFLAGS) -c -o samltest-AuthnContextClassRef20Test.obj `if test -f 'saml2/core/impl/AuthnContextClassRef20Test.cpp'; then $(CYGPATH_W) 'saml2/core/impl/AuthnContextClassRef20Test.cpp'; else $(CYGPATH_W) '$(srcdir)/saml2/core/impl/AuthnContextClassRef20Test.cpp'; fi`
samltest-AuthnContextDeclRef20Test.o: saml2/core/impl/AuthnContextDeclRef20Test.cpp
@am__fastdepCXX_TRUE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(samltest_CXXFLAGS) $(CXXFLAGS) -MT samltest-AuthnContextDeclRef20Test.o -MD -MP -MF $(DEPDIR)/samltest-AuthnContextDeclRef20Test.Tpo -c -o samltest-AuthnContextDeclRef20Test.o `test -f 'saml2/core/impl/AuthnContextDeclRef20Test.cpp' || echo '$(srcdir)/'`saml2/core/impl/AuthnContextDeclRef20Test.cpp
@am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/samltest-AuthnContextDeclRef20Test.Tpo $(DEPDIR)/samltest-AuthnContextDeclRef20Test.Po
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='saml2/core/impl/AuthnContextDeclRef20Test.cpp' object='samltest-AuthnContextDeclRef20Test.o' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(samltest_CXXFLAGS) $(CXXFLAGS) -c -o samltest-AuthnContextDeclRef20Test.o `test -f 'saml2/core/impl/AuthnContextDeclRef20Test.cpp' || echo '$(srcdir)/'`saml2/core/impl/AuthnContextDeclRef20Test.cpp
samltest-AuthnContextDeclRef20Test.obj: saml2/core/impl/AuthnContextDeclRef20Test.cpp
@am__fastdepCXX_TRUE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(samltest_CXXFLAGS) $(CXXFLAGS) -MT samltest-AuthnContextDeclRef20Test.obj -MD -MP -MF $(DEPDIR)/samltest-AuthnContextDeclRef20Test.Tpo -c -o samltest-AuthnContextDeclRef20Test.obj `if test -f 'saml2/core/impl/AuthnContextDeclRef20Test.cpp'; then $(CYGPATH_W) 'saml2/core/impl/AuthnContextDeclRef20Test.cpp'; else $(CYGPATH_W) '$(srcdir)/saml2/core/impl/AuthnContextDeclRef20Test.cpp'; fi`
@am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/samltest-AuthnContextDeclRef20Test.Tpo $(DEPDIR)/samltest-AuthnContextDeclRef20Test.Po
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='saml2/core/impl/AuthnContextDeclRef20Test.cpp' object='samltest-AuthnContextDeclRef20Test.obj' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(samltest_CXXFLAGS) $(CXXFLAGS) -c -o samltest-AuthnContextDeclRef20Test.obj `if test -f 'saml2/core/impl/AuthnContextDeclRef20Test.cpp'; then $(CYGPATH_W) 'saml2/core/impl/AuthnContextDeclRef20Test.cpp'; else $(CYGPATH_W) '$(srcdir)/saml2/core/impl/AuthnContextDeclRef20Test.cpp'; fi`
samltest-AuthnQuery20Test.o: saml2/core/impl/AuthnQuery20Test.cpp
@am__fastdepCXX_TRUE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(samltest_CXXFLAGS) $(CXXFLAGS) -MT samltest-AuthnQuery20Test.o -MD -MP -MF $(DEPDIR)/samltest-AuthnQuery20Test.Tpo -c -o samltest-AuthnQuery20Test.o `test -f 'saml2/core/impl/AuthnQuery20Test.cpp' || echo '$(srcdir)/'`saml2/core/impl/AuthnQuery20Test.cpp
@am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/samltest-AuthnQuery20Test.Tpo $(DEPDIR)/samltest-AuthnQuery20Test.Po
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='saml2/core/impl/AuthnQuery20Test.cpp' object='samltest-AuthnQuery20Test.o' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(samltest_CXXFLAGS) $(CXXFLAGS) -c -o samltest-AuthnQuery20Test.o `test -f 'saml2/core/impl/AuthnQuery20Test.cpp' || echo '$(srcdir)/'`saml2/core/impl/AuthnQuery20Test.cpp
samltest-AuthnQuery20Test.obj: saml2/core/impl/AuthnQuery20Test.cpp
@am__fastdepCXX_TRUE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(samltest_CXXFLAGS) $(CXXFLAGS) -MT samltest-AuthnQuery20Test.obj -MD -MP -MF $(DEPDIR)/samltest-AuthnQuery20Test.Tpo -c -o samltest-AuthnQuery20Test.obj `if test -f 'saml2/core/impl/AuthnQuery20Test.cpp'; then $(CYGPATH_W) 'saml2/core/impl/AuthnQuery20Test.cpp'; else $(CYGPATH_W) '$(srcdir)/saml2/core/impl/AuthnQuery20Test.cpp'; fi`
@am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/samltest-AuthnQuery20Test.Tpo $(DEPDIR)/samltest-AuthnQuery20Test.Po
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='saml2/core/impl/AuthnQuery20Test.cpp' object='samltest-AuthnQuery20Test.obj' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(samltest_CXXFLAGS) $(CXXFLAGS) -c -o samltest-AuthnQuery20Test.obj `if test -f 'saml2/core/impl/AuthnQuery20Test.cpp'; then $(CYGPATH_W) 'saml2/core/impl/AuthnQuery20Test.cpp'; else $(CYGPATH_W) '$(srcdir)/saml2/core/impl/AuthnQuery20Test.cpp'; fi`
samltest-AuthnRequest20Test.o: saml2/core/impl/AuthnRequest20Test.cpp
@am__fastdepCXX_TRUE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(samltest_CXXFLAGS) $(CXXFLAGS) -MT samltest-AuthnRequest20Test.o -MD -MP -MF $(DEPDIR)/samltest-AuthnRequest20Test.Tpo -c -o samltest-AuthnRequest20Test.o `test -f 'saml2/core/impl/AuthnRequest20Test.cpp' || echo '$(srcdir)/'`saml2/core/impl/AuthnRequest20Test.cpp
@am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/samltest-AuthnRequest20Test.Tpo $(DEPDIR)/samltest-AuthnRequest20Test.Po
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='saml2/core/impl/AuthnRequest20Test.cpp' object='samltest-AuthnRequest20Test.o' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(samltest_CXXFLAGS) $(CXXFLAGS) -c -o samltest-AuthnRequest20Test.o `test -f 'saml2/core/impl/AuthnRequest20Test.cpp' || echo '$(srcdir)/'`saml2/core/impl/AuthnRequest20Test.cpp
samltest-AuthnRequest20Test.obj: saml2/core/impl/AuthnRequest20Test.cpp
@am__fastdepCXX_TRUE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(samltest_CXXFLAGS) $(CXXFLAGS) -MT samltest-AuthnRequest20Test.obj -MD -MP -MF $(DEPDIR)/samltest-AuthnRequest20Test.Tpo -c -o samltest-AuthnRequest20Test.obj `if test -f 'saml2/core/impl/AuthnRequest20Test.cpp'; then $(CYGPATH_W) 'saml2/core/impl/AuthnRequest20Test.cpp'; else $(CYGPATH_W) '$(srcdir)/saml2/core/impl/AuthnRequest20Test.cpp'; fi`
@am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/samltest-AuthnRequest20Test.Tpo $(DEPDIR)/samltest-AuthnRequest20Test.Po
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='saml2/core/impl/AuthnRequest20Test.cpp' object='samltest-AuthnRequest20Test.obj' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(samltest_CXXFLAGS) $(CXXFLAGS) -c -o samltest-AuthnRequest20Test.obj `if test -f 'saml2/core/impl/AuthnRequest20Test.cpp'; then $(CYGPATH_W) 'saml2/core/impl/AuthnRequest20Test.cpp'; else $(CYGPATH_W) '$(srcdir)/saml2/core/impl/AuthnRequest20Test.cpp'; fi`
samltest-AuthnStatement20Test.o: saml2/core/impl/AuthnStatement20Test.cpp
@am__fastdepCXX_TRUE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(samltest_CXXFLAGS) $(CXXFLAGS) -MT samltest-AuthnStatement20Test.o -MD -MP -MF $(DEPDIR)/samltest-AuthnStatement20Test.Tpo -c -o samltest-AuthnStatement20Test.o `test -f 'saml2/core/impl/AuthnStatement20Test.cpp' || echo '$(srcdir)/'`saml2/core/impl/AuthnStatement20Test.cpp
@am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/samltest-AuthnStatement20Test.Tpo $(DEPDIR)/samltest-AuthnStatement20Test.Po
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='saml2/core/impl/AuthnStatement20Test.cpp' object='samltest-AuthnStatement20Test.o' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(samltest_CXXFLAGS) $(CXXFLAGS) -c -o samltest-AuthnStatement20Test.o `test -f 'saml2/core/impl/AuthnStatement20Test.cpp' || echo '$(srcdir)/'`saml2/core/impl/AuthnStatement20Test.cpp
samltest-AuthnStatement20Test.obj: saml2/core/impl/AuthnStatement20Test.cpp
@am__fastdepCXX_TRUE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(samltest_CXXFLAGS) $(CXXFLAGS) -MT samltest-AuthnStatement20Test.obj -MD -MP -MF $(DEPDIR)/samltest-AuthnStatement20Test.Tpo -c -o samltest-AuthnStatement20Test.obj `if test -f 'saml2/core/impl/AuthnStatement20Test.cpp'; then $(CYGPATH_W) 'saml2/core/impl/AuthnStatement20Test.cpp'; else $(CYGPATH_W) '$(srcdir)/saml2/core/impl/AuthnStatement20Test.cpp'; fi`
@am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/samltest-AuthnStatement20Test.Tpo $(DEPDIR)/samltest-AuthnStatement20Test.Po
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='saml2/core/impl/AuthnStatement20Test.cpp' object='samltest-AuthnStatement20Test.obj' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(samltest_CXXFLAGS) $(CXXFLAGS) -c -o samltest-AuthnStatement20Test.obj `if test -f 'saml2/core/impl/AuthnStatement20Test.cpp'; then $(CYGPATH_W) 'saml2/core/impl/AuthnStatement20Test.cpp'; else $(CYGPATH_W) '$(srcdir)/saml2/core/impl/AuthnStatement20Test.cpp'; fi`
samltest-AuthzDecisionQuery20Test.o: saml2/core/impl/AuthzDecisionQuery20Test.cpp
@am__fastdepCXX_TRUE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(samltest_CXXFLAGS) $(CXXFLAGS) -MT samltest-AuthzDecisionQuery20Test.o -MD -MP -MF $(DEPDIR)/samltest-AuthzDecisionQuery20Test.Tpo -c -o samltest-AuthzDecisionQuery20Test.o `test -f 'saml2/core/impl/AuthzDecisionQuery20Test.cpp' || echo '$(srcdir)/'`saml2/core/impl/AuthzDecisionQuery20Test.cpp
@am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/samltest-AuthzDecisionQuery20Test.Tpo $(DEPDIR)/samltest-AuthzDecisionQuery20Test.Po
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='saml2/core/impl/AuthzDecisionQuery20Test.cpp' object='samltest-AuthzDecisionQuery20Test.o' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(samltest_CXXFLAGS) $(CXXFLAGS) -c -o samltest-AuthzDecisionQuery20Test.o `test -f 'saml2/core/impl/AuthzDecisionQuery20Test.cpp' || echo '$(srcdir)/'`saml2/core/impl/AuthzDecisionQuery20Test.cpp
samltest-AuthzDecisionQuery20Test.obj: saml2/core/impl/AuthzDecisionQuery20Test.cpp
@am__fastdepCXX_TRUE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(samltest_CXXFLAGS) $(CXXFLAGS) -MT samltest-AuthzDecisionQuery20Test.obj -MD -MP -MF $(DEPDIR)/samltest-AuthzDecisionQuery20Test.Tpo -c -o samltest-AuthzDecisionQuery20Test.obj `if test -f 'saml2/core/impl/AuthzDecisionQuery20Test.cpp'; then $(CYGPATH_W) 'saml2/core/impl/AuthzDecisionQuery20Test.cpp'; else $(CYGPATH_W) '$(srcdir)/saml2/core/impl/AuthzDecisionQuery20Test.cpp'; fi`
@am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/samltest-AuthzDecisionQuery20Test.Tpo $(DEPDIR)/samltest-AuthzDecisionQuery20Test.Po
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='saml2/core/impl/AuthzDecisionQuery20Test.cpp' object='samltest-AuthzDecisionQuery20Test.obj' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(samltest_CXXFLAGS) $(CXXFLAGS) -c -o samltest-AuthzDecisionQuery20Test.obj `if test -f 'saml2/core/impl/AuthzDecisionQuery20Test.cpp'; then $(CYGPATH_W) 'saml2/core/impl/AuthzDecisionQuery20Test.cpp'; else $(CYGPATH_W) '$(srcdir)/saml2/core/impl/AuthzDecisionQuery20Test.cpp'; fi`
samltest-AuthzDecisionStatement20Test.o: saml2/core/impl/AuthzDecisionStatement20Test.cpp
@am__fastdepCXX_TRUE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(samltest_CXXFLAGS) $(CXXFLAGS) -MT samltest-AuthzDecisionStatement20Test.o -MD -MP -MF $(DEPDIR)/samltest-AuthzDecisionStatement20Test.Tpo -c -o samltest-AuthzDecisionStatement20Test.o `test -f 'saml2/core/impl/AuthzDecisionStatement20Test.cpp' || echo '$(srcdir)/'`saml2/core/impl/AuthzDecisionStatement20Test.cpp
@am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/samltest-AuthzDecisionStatement20Test.Tpo $(DEPDIR)/samltest-AuthzDecisionStatement20Test.Po
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='saml2/core/impl/AuthzDecisionStatement20Test.cpp' object='samltest-AuthzDecisionStatement20Test.o' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(samltest_CXXFLAGS) $(CXXFLAGS) -c -o samltest-AuthzDecisionStatement20Test.o `test -f 'saml2/core/impl/AuthzDecisionStatement20Test.cpp' || echo '$(srcdir)/'`saml2/core/impl/AuthzDecisionStatement20Test.cpp
samltest-AuthzDecisionStatement20Test.obj: saml2/core/impl/AuthzDecisionStatement20Test.cpp
@am__fastdepCXX_TRUE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(samltest_CXXFLAGS) $(CXXFLAGS) -MT samltest-AuthzDecisionStatement20Test.obj -MD -MP -MF $(DEPDIR)/samltest-AuthzDecisionStatement20Test.Tpo -c -o samltest-AuthzDecisionStatement20Test.obj `if test -f 'saml2/core/impl/AuthzDecisionStatement20Test.cpp'; then $(CYGPATH_W) 'saml2/core/impl/AuthzDecisionStatement20Test.cpp'; else $(CYGPATH_W) '$(srcdir)/saml2/core/impl/AuthzDecisionStatement20Test.cpp'; fi`
@am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/samltest-AuthzDecisionStatement20Test.Tpo $(DEPDIR)/samltest-AuthzDecisionStatement20Test.Po
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='saml2/core/impl/AuthzDecisionStatement20Test.cpp' object='samltest-AuthzDecisionStatement20Test.obj' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(samltest_CXXFLAGS) $(CXXFLAGS) -c -o samltest-AuthzDecisionStatement20Test.obj `if test -f 'saml2/core/impl/AuthzDecisionStatement20Test.cpp'; then $(CYGPATH_W) 'saml2/core/impl/AuthzDecisionStatement20Test.cpp'; else $(CYGPATH_W) '$(srcdir)/saml2/core/impl/AuthzDecisionStatement20Test.cpp'; fi`
samltest-Conditions20Test.o: saml2/core/impl/Conditions20Test.cpp
@am__fastdepCXX_TRUE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(samltest_CXXFLAGS) $(CXXFLAGS) -MT samltest-Conditions20Test.o -MD -MP -MF $(DEPDIR)/samltest-Conditions20Test.Tpo -c -o samltest-Conditions20Test.o `test -f 'saml2/core/impl/Conditions20Test.cpp' || echo '$(srcdir)/'`saml2/core/impl/Conditions20Test.cpp
@am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/samltest-Conditions20Test.Tpo $(DEPDIR)/samltest-Conditions20Test.Po
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='saml2/core/impl/Conditions20Test.cpp' object='samltest-Conditions20Test.o' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(samltest_CXXFLAGS) $(CXXFLAGS) -c -o samltest-Conditions20Test.o `test -f 'saml2/core/impl/Conditions20Test.cpp' || echo '$(srcdir)/'`saml2/core/impl/Conditions20Test.cpp
samltest-Conditions20Test.obj: saml2/core/impl/Conditions20Test.cpp
@am__fastdepCXX_TRUE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(samltest_CXXFLAGS) $(CXXFLAGS) -MT samltest-Conditions20Test.obj -MD -MP -MF $(DEPDIR)/samltest-Conditions20Test.Tpo -c -o samltest-Conditions20Test.obj `if test -f 'saml2/core/impl/Conditions20Test.cpp'; then $(CYGPATH_W) 'saml2/core/impl/Conditions20Test.cpp'; else $(CYGPATH_W) '$(srcdir)/saml2/core/impl/Conditions20Test.cpp'; fi`
@am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/samltest-Conditions20Test.Tpo $(DEPDIR)/samltest-Conditions20Test.Po
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='saml2/core/impl/Conditions20Test.cpp' object='samltest-Conditions20Test.obj' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(samltest_CXXFLAGS) $(CXXFLAGS) -c -o samltest-Conditions20Test.obj `if test -f 'saml2/core/impl/Conditions20Test.cpp'; then $(CYGPATH_W) 'saml2/core/impl/Conditions20Test.cpp'; else $(CYGPATH_W) '$(srcdir)/saml2/core/impl/Conditions20Test.cpp'; fi`
samltest-Evidence20Test.o: saml2/core/impl/Evidence20Test.cpp
@am__fastdepCXX_TRUE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(samltest_CXXFLAGS) $(CXXFLAGS) -MT samltest-Evidence20Test.o -MD -MP -MF $(DEPDIR)/samltest-Evidence20Test.Tpo -c -o samltest-Evidence20Test.o `test -f 'saml2/core/impl/Evidence20Test.cpp' || echo '$(srcdir)/'`saml2/core/impl/Evidence20Test.cpp
@am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/samltest-Evidence20Test.Tpo $(DEPDIR)/samltest-Evidence20Test.Po
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='saml2/core/impl/Evidence20Test.cpp' object='samltest-Evidence20Test.o' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(samltest_CXXFLAGS) $(CXXFLAGS) -c -o samltest-Evidence20Test.o `test -f 'saml2/core/impl/Evidence20Test.cpp' || echo '$(srcdir)/'`saml2/core/impl/Evidence20Test.cpp
samltest-Evidence20Test.obj: saml2/core/impl/Evidence20Test.cpp
@am__fastdepCXX_TRUE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(samltest_CXXFLAGS) $(CXXFLAGS) -MT samltest-Evidence20Test.obj -MD -MP -MF $(DEPDIR)/samltest-Evidence20Test.Tpo -c -o samltest-Evidence20Test.obj `if test -f 'saml2/core/impl/Evidence20Test.cpp'; then $(CYGPATH_W) 'saml2/core/impl/Evidence20Test.cpp'; else $(CYGPATH_W) '$(srcdir)/saml2/core/impl/Evidence20Test.cpp'; fi`
@am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/samltest-Evidence20Test.Tpo $(DEPDIR)/samltest-Evidence20Test.Po
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='saml2/core/impl/Evidence20Test.cpp' object='samltest-Evidence20Test.obj' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(samltest_CXXFLAGS) $(CXXFLAGS) -c -o samltest-Evidence20Test.obj `if test -f 'saml2/core/impl/Evidence20Test.cpp'; then $(CYGPATH_W) 'saml2/core/impl/Evidence20Test.cpp'; else $(CYGPATH_W) '$(srcdir)/saml2/core/impl/Evidence20Test.cpp'; fi`
samltest-GetComplete20Test.o: saml2/core/impl/GetComplete20Test.cpp
@am__fastdepCXX_TRUE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(samltest_CXXFLAGS) $(CXXFLAGS) -MT samltest-GetComplete20Test.o -MD -MP -MF $(DEPDIR)/samltest-GetComplete20Test.Tpo -c -o samltest-GetComplete20Test.o `test -f 'saml2/core/impl/GetComplete20Test.cpp' || echo '$(srcdir)/'`saml2/core/impl/GetComplete20Test.cpp
@am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/samltest-GetComplete20Test.Tpo $(DEPDIR)/samltest-GetComplete20Test.Po
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='saml2/core/impl/GetComplete20Test.cpp' object='samltest-GetComplete20Test.o' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(samltest_CXXFLAGS) $(CXXFLAGS) -c -o samltest-GetComplete20Test.o `test -f 'saml2/core/impl/GetComplete20Test.cpp' || echo '$(srcdir)/'`saml2/core/impl/GetComplete20Test.cpp
samltest-GetComplete20Test.obj: saml2/core/impl/GetComplete20Test.cpp
@am__fastdepCXX_TRUE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(samltest_CXXFLAGS) $(CXXFLAGS) -MT samltest-GetComplete20Test.obj -MD -MP -MF $(DEPDIR)/samltest-GetComplete20Test.Tpo -c -o samltest-GetComplete20Test.obj `if test -f 'saml2/core/impl/GetComplete20Test.cpp'; then $(CYGPATH_W) 'saml2/core/impl/GetComplete20Test.cpp'; else $(CYGPATH_W) '$(srcdir)/saml2/core/impl/GetComplete20Test.cpp'; fi`
@am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/samltest-GetComplete20Test.Tpo $(DEPDIR)/samltest-GetComplete20Test.Po
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='saml2/core/impl/GetComplete20Test.cpp' object='samltest-GetComplete20Test.obj' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(samltest_CXXFLAGS) $(CXXFLAGS) -c -o samltest-GetComplete20Test.obj `if test -f 'saml2/core/impl/GetComplete20Test.cpp'; then $(CYGPATH_W) 'saml2/core/impl/GetComplete20Test.cpp'; else $(CYGPATH_W) '$(srcdir)/saml2/core/impl/GetComplete20Test.cpp'; fi`
samltest-IDPEntry20Test.o: saml2/core/impl/IDPEntry20Test.cpp
@am__fastdepCXX_TRUE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(samltest_CXXFLAGS) $(CXXFLAGS) -MT samltest-IDPEntry20Test.o -MD -MP -MF $(DEPDIR)/samltest-IDPEntry20Test.Tpo -c -o samltest-IDPEntry20Test.o `test -f 'saml2/core/impl/IDPEntry20Test.cpp' || echo '$(srcdir)/'`saml2/core/impl/IDPEntry20Test.cpp
@am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/samltest-IDPEntry20Test.Tpo $(DEPDIR)/samltest-IDPEntry20Test.Po
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='saml2/core/impl/IDPEntry20Test.cpp' object='samltest-IDPEntry20Test.o' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(samltest_CXXFLAGS) $(CXXFLAGS) -c -o samltest-IDPEntry20Test.o `test -f 'saml2/core/impl/IDPEntry20Test.cpp' || echo '$(srcdir)/'`saml2/core/impl/IDPEntry20Test.cpp
samltest-IDPEntry20Test.obj: saml2/core/impl/IDPEntry20Test.cpp
@am__fastdepCXX_TRUE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(samltest_CXXFLAGS) $(CXXFLAGS) -MT samltest-IDPEntry20Test.obj -MD -MP -MF $(DEPDIR)/samltest-IDPEntry20Test.Tpo -c -o samltest-IDPEntry20Test.obj `if test -f 'saml2/core/impl/IDPEntry20Test.cpp'; then $(CYGPATH_W) 'saml2/core/impl/IDPEntry20Test.cpp'; else $(CYGPATH_W) '$(srcdir)/saml2/core/impl/IDPEntry20Test.cpp'; fi`
@am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/samltest-IDPEntry20Test.Tpo $(DEPDIR)/samltest-IDPEntry20Test.Po
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='saml2/core/impl/IDPEntry20Test.cpp' object='samltest-IDPEntry20Test.obj' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(samltest_CXXFLAGS) $(CXXFLAGS) -c -o samltest-IDPEntry20Test.obj `if test -f 'saml2/core/impl/IDPEntry20Test.cpp'; then $(CYGPATH_W) 'saml2/core/impl/IDPEntry20Test.cpp'; else $(CYGPATH_W) '$(srcdir)/saml2/core/impl/IDPEntry20Test.cpp'; fi`
samltest-IDPList20Test.o: saml2/core/impl/IDPList20Test.cpp
@am__fastdepCXX_TRUE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(samltest_CXXFLAGS) $(CXXFLAGS) -MT samltest-IDPList20Test.o -MD -MP -MF $(DEPDIR)/samltest-IDPList20Test.Tpo -c -o samltest-IDPList20Test.o `test -f 'saml2/core/impl/IDPList20Test.cpp' || echo '$(srcdir)/'`saml2/core/impl/IDPList20Test.cpp
@am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/samltest-IDPList20Test.Tpo $(DEPDIR)/samltest-IDPList20Test.Po
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='saml2/core/impl/IDPList20Test.cpp' object='samltest-IDPList20Test.o' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(samltest_CXXFLAGS) $(CXXFLAGS) -c -o samltest-IDPList20Test.o `test -f 'saml2/core/impl/IDPList20Test.cpp' || echo '$(srcdir)/'`saml2/core/impl/IDPList20Test.cpp
samltest-IDPList20Test.obj: saml2/core/impl/IDPList20Test.cpp
@am__fastdepCXX_TRUE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(samltest_CXXFLAGS) $(CXXFLAGS) -MT samltest-IDPList20Test.obj -MD -MP -MF $(DEPDIR)/samltest-IDPList20Test.Tpo -c -o samltest-IDPList20Test.obj `if test -f 'saml2/core/impl/IDPList20Test.cpp'; then $(CYGPATH_W) 'saml2/core/impl/IDPList20Test.cpp'; else $(CYGPATH_W) '$(srcdir)/saml2/core/impl/IDPList20Test.cpp'; fi`
@am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/samltest-IDPList20Test.Tpo $(DEPDIR)/samltest-IDPList20Test.Po
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='saml2/core/impl/IDPList20Test.cpp' object='samltest-IDPList20Test.obj' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(samltest_CXXFLAGS) $(CXXFLAGS) -c -o samltest-IDPList20Test.obj `if test -f 'saml2/core/impl/IDPList20Test.cpp'; then $(CYGPATH_W) 'saml2/core/impl/IDPList20Test.cpp'; else $(CYGPATH_W) '$(srcdir)/saml2/core/impl/IDPList20Test.cpp'; fi`
samltest-Issuer20Test.o: saml2/core/impl/Issuer20Test.cpp
@am__fastdepCXX_TRUE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(samltest_CXXFLAGS) $(CXXFLAGS) -MT samltest-Issuer20Test.o -MD -MP -MF $(DEPDIR)/samltest-Issuer20Test.Tpo -c -o samltest-Issuer20Test.o `test -f 'saml2/core/impl/Issuer20Test.cpp' || echo '$(srcdir)/'`saml2/core/impl/Issuer20Test.cpp
@am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/samltest-Issuer20Test.Tpo $(DEPDIR)/samltest-Issuer20Test.Po
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='saml2/core/impl/Issuer20Test.cpp' object='samltest-Issuer20Test.o' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(samltest_CXXFLAGS) $(CXXFLAGS) -c -o samltest-Issuer20Test.o `test -f 'saml2/core/impl/Issuer20Test.cpp' || echo '$(srcdir)/'`saml2/core/impl/Issuer20Test.cpp
samltest-Issuer20Test.obj: saml2/core/impl/Issuer20Test.cpp
@am__fastdepCXX_TRUE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(samltest_CXXFLAGS) $(CXXFLAGS) -MT samltest-Issuer20Test.obj -MD -MP -MF $(DEPDIR)/samltest-Issuer20Test.Tpo -c -o samltest-Issuer20Test.obj `if test -f 'saml2/core/impl/Issuer20Test.cpp'; then $(CYGPATH_W) 'saml2/core/impl/Issuer20Test.cpp'; else $(CYGPATH_W) '$(srcdir)/saml2/core/impl/Issuer20Test.cpp'; fi`
@am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/samltest-Issuer20Test.Tpo $(DEPDIR)/samltest-Issuer20Test.Po
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='saml2/core/impl/Issuer20Test.cpp' object='samltest-Issuer20Test.obj' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(samltest_CXXFLAGS) $(CXXFLAGS) -c -o samltest-Issuer20Test.obj `if test -f 'saml2/core/impl/Issuer20Test.cpp'; then $(CYGPATH_W) 'saml2/core/impl/Issuer20Test.cpp'; else $(CYGPATH_W) '$(srcdir)/saml2/core/impl/Issuer20Test.cpp'; fi`
samltest-KeyInfoConfirmationDataType20Test.o: saml2/core/impl/KeyInfoConfirmationDataType20Test.cpp
@am__fastdepCXX_TRUE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(samltest_CXXFLAGS) $(CXXFLAGS) -MT samltest-KeyInfoConfirmationDataType20Test.o -MD -MP -MF $(DEPDIR)/samltest-KeyInfoConfirmationDataType20Test.Tpo -c -o samltest-KeyInfoConfirmationDataType20Test.o `test -f 'saml2/core/impl/KeyInfoConfirmationDataType20Test.cpp' || echo '$(srcdir)/'`saml2/core/impl/KeyInfoConfirmationDataType20Test.cpp
@am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/samltest-KeyInfoConfirmationDataType20Test.Tpo $(DEPDIR)/samltest-KeyInfoConfirmationDataType20Test.Po
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='saml2/core/impl/KeyInfoConfirmationDataType20Test.cpp' object='samltest-KeyInfoConfirmationDataType20Test.o' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(samltest_CXXFLAGS) $(CXXFLAGS) -c -o samltest-KeyInfoConfirmationDataType20Test.o `test -f 'saml2/core/impl/KeyInfoConfirmationDataType20Test.cpp' || echo '$(srcdir)/'`saml2/core/impl/KeyInfoConfirmationDataType20Test.cpp
samltest-KeyInfoConfirmationDataType20Test.obj: saml2/core/impl/KeyInfoConfirmationDataType20Test.cpp
@am__fastdepCXX_TRUE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(samltest_CXXFLAGS) $(CXXFLAGS) -MT samltest-KeyInfoConfirmationDataType20Test.obj -MD -MP -MF $(DEPDIR)/samltest-KeyInfoConfirmationDataType20Test.Tpo -c -o samltest-KeyInfoConfirmationDataType20Test.obj `if test -f 'saml2/core/impl/KeyInfoConfirmationDataType20Test.cpp'; then $(CYGPATH_W) 'saml2/core/impl/KeyInfoConfirmationDataType20Test.cpp'; else $(CYGPATH_W) '$(srcdir)/saml2/core/impl/KeyInfoConfirmationDataType20Test.cpp'; fi`
@am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/samltest-KeyInfoConfirmationDataType20Test.Tpo $(DEPDIR)/samltest-KeyInfoConfirmationDataType20Test.Po
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='saml2/core/impl/KeyInfoConfirmationDataType20Test.cpp' object='samltest-KeyInfoConfirmationDataType20Test.obj' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(samltest_CXXFLAGS) $(CXXFLAGS) -c -o samltest-KeyInfoConfirmationDataType20Test.obj `if test -f 'saml2/core/impl/KeyInfoConfirmationDataType20Test.cpp'; then $(CYGPATH_W) 'saml2/core/impl/KeyInfoConfirmationDataType20Test.cpp'; else $(CYGPATH_W) '$(srcdir)/saml2/core/impl/KeyInfoConfirmationDataType20Test.cpp'; fi`
samltest-LogoutRequest20Test.o: saml2/core/impl/LogoutRequest20Test.cpp
@am__fastdepCXX_TRUE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(samltest_CXXFLAGS) $(CXXFLAGS) -MT samltest-LogoutRequest20Test.o -MD -MP -MF $(DEPDIR)/samltest-LogoutRequest20Test.Tpo -c -o samltest-LogoutRequest20Test.o `test -f 'saml2/core/impl/LogoutRequest20Test.cpp' || echo '$(srcdir)/'`saml2/core/impl/LogoutRequest20Test.cpp
@am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/samltest-LogoutRequest20Test.Tpo $(DEPDIR)/samltest-LogoutRequest20Test.Po
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='saml2/core/impl/LogoutRequest20Test.cpp' object='samltest-LogoutRequest20Test.o' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(samltest_CXXFLAGS) $(CXXFLAGS) -c -o samltest-LogoutRequest20Test.o `test -f 'saml2/core/impl/LogoutRequest20Test.cpp' || echo '$(srcdir)/'`saml2/core/impl/LogoutRequest20Test.cpp
samltest-LogoutRequest20Test.obj: saml2/core/impl/LogoutRequest20Test.cpp
@am__fastdepCXX_TRUE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(samltest_CXXFLAGS) $(CXXFLAGS) -MT samltest-LogoutRequest20Test.obj -MD -MP -MF $(DEPDIR)/samltest-LogoutRequest20Test.Tpo -c -o samltest-LogoutRequest20Test.obj `if test -f 'saml2/core/impl/LogoutRequest20Test.cpp'; then $(CYGPATH_W) 'saml2/core/impl/LogoutRequest20Test.cpp'; else $(CYGPATH_W) '$(srcdir)/saml2/core/impl/LogoutRequest20Test.cpp'; fi`
@am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/samltest-LogoutRequest20Test.Tpo $(DEPDIR)/samltest-LogoutRequest20Test.Po
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='saml2/core/impl/LogoutRequest20Test.cpp' object='samltest-LogoutRequest20Test.obj' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(samltest_CXXFLAGS) $(CXXFLAGS) -c -o samltest-LogoutRequest20Test.obj `if test -f 'saml2/core/impl/LogoutRequest20Test.cpp'; then $(CYGPATH_W) 'saml2/core/impl/LogoutRequest20Test.cpp'; else $(CYGPATH_W) '$(srcdir)/saml2/core/impl/LogoutRequest20Test.cpp'; fi`
samltest-LogoutResponse20Test.o: saml2/core/impl/LogoutResponse20Test.cpp
@am__fastdepCXX_TRUE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(samltest_CXXFLAGS) $(CXXFLAGS) -MT samltest-LogoutResponse20Test.o -MD -MP -MF $(DEPDIR)/samltest-LogoutResponse20Test.Tpo -c -o samltest-LogoutResponse20Test.o `test -f 'saml2/core/impl/LogoutResponse20Test.cpp' || echo '$(srcdir)/'`saml2/core/impl/LogoutResponse20Test.cpp
@am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/samltest-LogoutResponse20Test.Tpo $(DEPDIR)/samltest-LogoutResponse20Test.Po
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='saml2/core/impl/LogoutResponse20Test.cpp' object='samltest-LogoutResponse20Test.o' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(samltest_CXXFLAGS) $(CXXFLAGS) -c -o samltest-LogoutResponse20Test.o `test -f 'saml2/core/impl/LogoutResponse20Test.cpp' || echo '$(srcdir)/'`saml2/core/impl/LogoutResponse20Test.cpp
samltest-LogoutResponse20Test.obj: saml2/core/impl/LogoutResponse20Test.cpp
@am__fastdepCXX_TRUE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(samltest_CXXFLAGS) $(CXXFLAGS) -MT samltest-LogoutResponse20Test.obj -MD -MP -MF $(DEPDIR)/samltest-LogoutResponse20Test.Tpo -c -o samltest-LogoutResponse20Test.obj `if test -f 'saml2/core/impl/LogoutResponse20Test.cpp'; then $(CYGPATH_W) 'saml2/core/impl/LogoutResponse20Test.cpp'; else $(CYGPATH_W) '$(srcdir)/saml2/core/impl/LogoutResponse20Test.cpp'; fi`
@am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/samltest-LogoutResponse20Test.Tpo $(DEPDIR)/samltest-LogoutResponse20Test.Po
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='saml2/core/impl/LogoutResponse20Test.cpp' object='samltest-LogoutResponse20Test.obj' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(samltest_CXXFLAGS) $(CXXFLAGS) -c -o samltest-LogoutResponse20Test.obj `if test -f 'saml2/core/impl/LogoutResponse20Test.cpp'; then $(CYGPATH_W) 'saml2/core/impl/LogoutResponse20Test.cpp'; else $(CYGPATH_W) '$(srcdir)/saml2/core/impl/LogoutResponse20Test.cpp'; fi`
samltest-ManageNameIDRequest20Test.o: saml2/core/impl/ManageNameIDRequest20Test.cpp
@am__fastdepCXX_TRUE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(samltest_CXXFLAGS) $(CXXFLAGS) -MT samltest-ManageNameIDRequest20Test.o -MD -MP -MF $(DEPDIR)/samltest-ManageNameIDRequest20Test.Tpo -c -o samltest-ManageNameIDRequest20Test.o `test -f 'saml2/core/impl/ManageNameIDRequest20Test.cpp' || echo '$(srcdir)/'`saml2/core/impl/ManageNameIDRequest20Test.cpp
@am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/samltest-ManageNameIDRequest20Test.Tpo $(DEPDIR)/samltest-ManageNameIDRequest20Test.Po
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='saml2/core/impl/ManageNameIDRequest20Test.cpp' object='samltest-ManageNameIDRequest20Test.o' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(samltest_CXXFLAGS) $(CXXFLAGS) -c -o samltest-ManageNameIDRequest20Test.o `test -f 'saml2/core/impl/ManageNameIDRequest20Test.cpp' || echo '$(srcdir)/'`saml2/core/impl/ManageNameIDRequest20Test.cpp
samltest-ManageNameIDRequest20Test.obj: saml2/core/impl/ManageNameIDRequest20Test.cpp
@am__fastdepCXX_TRUE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(samltest_CXXFLAGS) $(CXXFLAGS) -MT samltest-ManageNameIDRequest20Test.obj -MD -MP -MF $(DEPDIR)/samltest-ManageNameIDRequest20Test.Tpo -c -o samltest-ManageNameIDRequest20Test.obj `if test -f 'saml2/core/impl/ManageNameIDRequest20Test.cpp'; then $(CYGPATH_W) 'saml2/core/impl/ManageNameIDRequest20Test.cpp'; else $(CYGPATH_W) '$(srcdir)/saml2/core/impl/ManageNameIDRequest20Test.cpp'; fi`
@am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/samltest-ManageNameIDRequest20Test.Tpo $(DEPDIR)/samltest-ManageNameIDRequest20Test.Po
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='saml2/core/impl/ManageNameIDRequest20Test.cpp' object='samltest-ManageNameIDRequest20Test.obj' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(samltest_CXXFLAGS) $(CXXFLAGS) -c -o samltest-ManageNameIDRequest20Test.obj `if test -f 'saml2/core/impl/ManageNameIDRequest20Test.cpp'; then $(CYGPATH_W) 'saml2/core/impl/ManageNameIDRequest20Test.cpp'; else $(CYGPATH_W) '$(srcdir)/saml2/core/impl/ManageNameIDRequest20Test.cpp'; fi`
samltest-ManageNameIDResponse20Test.o: saml2/core/impl/ManageNameIDResponse20Test.cpp
@am__fastdepCXX_TRUE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(samltest_CXXFLAGS) $(CXXFLAGS) -MT samltest-ManageNameIDResponse20Test.o -MD -MP -MF $(DEPDIR)/samltest-ManageNameIDResponse20Test.Tpo -c -o samltest-ManageNameIDResponse20Test.o `test -f 'saml2/core/impl/ManageNameIDResponse20Test.cpp' || echo '$(srcdir)/'`saml2/core/impl/ManageNameIDResponse20Test.cpp
@am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/samltest-ManageNameIDResponse20Test.Tpo $(DEPDIR)/samltest-ManageNameIDResponse20Test.Po
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='saml2/core/impl/ManageNameIDResponse20Test.cpp' object='samltest-ManageNameIDResponse20Test.o' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(samltest_CXXFLAGS) $(CXXFLAGS) -c -o samltest-ManageNameIDResponse20Test.o `test -f 'saml2/core/impl/ManageNameIDResponse20Test.cpp' || echo '$(srcdir)/'`saml2/core/impl/ManageNameIDResponse20Test.cpp
samltest-ManageNameIDResponse20Test.obj: saml2/core/impl/ManageNameIDResponse20Test.cpp
@am__fastdepCXX_TRUE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(samltest_CXXFLAGS) $(CXXFLAGS) -MT samltest-ManageNameIDResponse20Test.obj -MD -MP -MF $(DEPDIR)/samltest-ManageNameIDResponse20Test.Tpo -c -o samltest-ManageNameIDResponse20Test.obj `if test -f 'saml2/core/impl/ManageNameIDResponse20Test.cpp'; then $(CYGPATH_W) 'saml2/core/impl/ManageNameIDResponse20Test.cpp'; else $(CYGPATH_W) '$(srcdir)/saml2/core/impl/ManageNameIDResponse20Test.cpp'; fi`
@am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/samltest-ManageNameIDResponse20Test.Tpo $(DEPDIR)/samltest-ManageNameIDResponse20Test.Po
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='saml2/core/impl/ManageNameIDResponse20Test.cpp' object='samltest-ManageNameIDResponse20Test.obj' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(samltest_CXXFLAGS) $(CXXFLAGS) -c -o samltest-ManageNameIDResponse20Test.obj `if test -f 'saml2/core/impl/ManageNameIDResponse20Test.cpp'; then $(CYGPATH_W) 'saml2/core/impl/ManageNameIDResponse20Test.cpp'; else $(CYGPATH_W) '$(srcdir)/saml2/core/impl/ManageNameIDResponse20Test.cpp'; fi`
samltest-NameIDMappingRequest20Test.o: saml2/core/impl/NameIDMappingRequest20Test.cpp
@am__fastdepCXX_TRUE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(samltest_CXXFLAGS) $(CXXFLAGS) -MT samltest-NameIDMappingRequest20Test.o -MD -MP -MF $(DEPDIR)/samltest-NameIDMappingRequest20Test.Tpo -c -o samltest-NameIDMappingRequest20Test.o `test -f 'saml2/core/impl/NameIDMappingRequest20Test.cpp' || echo '$(srcdir)/'`saml2/core/impl/NameIDMappingRequest20Test.cpp
@am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/samltest-NameIDMappingRequest20Test.Tpo $(DEPDIR)/samltest-NameIDMappingRequest20Test.Po
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='saml2/core/impl/NameIDMappingRequest20Test.cpp' object='samltest-NameIDMappingRequest20Test.o' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(samltest_CXXFLAGS) $(CXXFLAGS) -c -o samltest-NameIDMappingRequest20Test.o `test -f 'saml2/core/impl/NameIDMappingRequest20Test.cpp' || echo '$(srcdir)/'`saml2/core/impl/NameIDMappingRequest20Test.cpp
samltest-NameIDMappingRequest20Test.obj: saml2/core/impl/NameIDMappingRequest20Test.cpp
@am__fastdepCXX_TRUE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(samltest_CXXFLAGS) $(CXXFLAGS) -MT samltest-NameIDMappingRequest20Test.obj -MD -MP -MF $(DEPDIR)/samltest-NameIDMappingRequest20Test.Tpo -c -o samltest-NameIDMappingRequest20Test.obj `if test -f 'saml2/core/impl/NameIDMappingRequest20Test.cpp'; then $(CYGPATH_W) 'saml2/core/impl/NameIDMappingRequest20Test.cpp'; else $(CYGPATH_W) '$(srcdir)/saml2/core/impl/NameIDMappingRequest20Test.cpp'; fi`
@am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/samltest-NameIDMappingRequest20Test.Tpo $(DEPDIR)/samltest-NameIDMappingRequest20Test.Po
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='saml2/core/impl/NameIDMappingRequest20Test.cpp' object='samltest-NameIDMappingRequest20Test.obj' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(samltest_CXXFLAGS) $(CXXFLAGS) -c -o samltest-NameIDMappingRequest20Test.obj `if test -f 'saml2/core/impl/NameIDMappingRequest20Test.cpp'; then $(CYGPATH_W) 'saml2/core/impl/NameIDMappingRequest20Test.cpp'; else $(CYGPATH_W) '$(srcdir)/saml2/core/impl/NameIDMappingRequest20Test.cpp'; fi`
samltest-NameIDMappingResponse20Test.o: saml2/core/impl/NameIDMappingResponse20Test.cpp
@am__fastdepCXX_TRUE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(samltest_CXXFLAGS) $(CXXFLAGS) -MT samltest-NameIDMappingResponse20Test.o -MD -MP -MF $(DEPDIR)/samltest-NameIDMappingResponse20Test.Tpo -c -o samltest-NameIDMappingResponse20Test.o `test -f 'saml2/core/impl/NameIDMappingResponse20Test.cpp' || echo '$(srcdir)/'`saml2/core/impl/NameIDMappingResponse20Test.cpp
@am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/samltest-NameIDMappingResponse20Test.Tpo $(DEPDIR)/samltest-NameIDMappingResponse20Test.Po
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='saml2/core/impl/NameIDMappingResponse20Test.cpp' object='samltest-NameIDMappingResponse20Test.o' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(samltest_CXXFLAGS) $(CXXFLAGS) -c -o samltest-NameIDMappingResponse20Test.o `test -f 'saml2/core/impl/NameIDMappingResponse20Test.cpp' || echo '$(srcdir)/'`saml2/core/impl/NameIDMappingResponse20Test.cpp
samltest-NameIDMappingResponse20Test.obj: saml2/core/impl/NameIDMappingResponse20Test.cpp
@am__fastdepCXX_TRUE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(samltest_CXXFLAGS) $(CXXFLAGS) -MT samltest-NameIDMappingResponse20Test.obj -MD -MP -MF $(DEPDIR)/samltest-NameIDMappingResponse20Test.Tpo -c -o samltest-NameIDMappingResponse20Test.obj `if test -f 'saml2/core/impl/NameIDMappingResponse20Test.cpp'; then $(CYGPATH_W) 'saml2/core/impl/NameIDMappingResponse20Test.cpp'; else $(CYGPATH_W) '$(srcdir)/saml2/core/impl/NameIDMappingResponse20Test.cpp'; fi`
@am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/samltest-NameIDMappingResponse20Test.Tpo $(DEPDIR)/samltest-NameIDMappingResponse20Test.Po
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='saml2/core/impl/NameIDMappingResponse20Test.cpp' object='samltest-NameIDMappingResponse20Test.obj' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(samltest_CXXFLAGS) $(CXXFLAGS) -c -o samltest-NameIDMappingResponse20Test.obj `if test -f 'saml2/core/impl/NameIDMappingResponse20Test.cpp'; then $(CYGPATH_W) 'saml2/core/impl/NameIDMappingResponse20Test.cpp'; else $(CYGPATH_W) '$(srcdir)/saml2/core/impl/NameIDMappingResponse20Test.cpp'; fi`
samltest-NameIDPolicy20Test.o: saml2/core/impl/NameIDPolicy20Test.cpp
@am__fastdepCXX_TRUE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(samltest_CXXFLAGS) $(CXXFLAGS) -MT samltest-NameIDPolicy20Test.o -MD -MP -MF $(DEPDIR)/samltest-NameIDPolicy20Test.Tpo -c -o samltest-NameIDPolicy20Test.o `test -f 'saml2/core/impl/NameIDPolicy20Test.cpp' || echo '$(srcdir)/'`saml2/core/impl/NameIDPolicy20Test.cpp
@am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/samltest-NameIDPolicy20Test.Tpo $(DEPDIR)/samltest-NameIDPolicy20Test.Po
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='saml2/core/impl/NameIDPolicy20Test.cpp' object='samltest-NameIDPolicy20Test.o' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(samltest_CXXFLAGS) $(CXXFLAGS) -c -o samltest-NameIDPolicy20Test.o `test -f 'saml2/core/impl/NameIDPolicy20Test.cpp' || echo '$(srcdir)/'`saml2/core/impl/NameIDPolicy20Test.cpp
samltest-NameIDPolicy20Test.obj: saml2/core/impl/NameIDPolicy20Test.cpp
@am__fastdepCXX_TRUE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(samltest_CXXFLAGS) $(CXXFLAGS) -MT samltest-NameIDPolicy20Test.obj -MD -MP -MF $(DEPDIR)/samltest-NameIDPolicy20Test.Tpo -c -o samltest-NameIDPolicy20Test.obj `if test -f 'saml2/core/impl/NameIDPolicy20Test.cpp'; then $(CYGPATH_W) 'saml2/core/impl/NameIDPolicy20Test.cpp'; else $(CYGPATH_W) '$(srcdir)/saml2/core/impl/NameIDPolicy20Test.cpp'; fi`
@am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/samltest-NameIDPolicy20Test.Tpo $(DEPDIR)/samltest-NameIDPolicy20Test.Po
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='saml2/core/impl/NameIDPolicy20Test.cpp' object='samltest-NameIDPolicy20Test.obj' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(samltest_CXXFLAGS) $(CXXFLAGS) -c -o samltest-NameIDPolicy20Test.obj `if test -f 'saml2/core/impl/NameIDPolicy20Test.cpp'; then $(CYGPATH_W) 'saml2/core/impl/NameIDPolicy20Test.cpp'; else $(CYGPATH_W) '$(srcdir)/saml2/core/impl/NameIDPolicy20Test.cpp'; fi`
samltest-NameID20Test.o: saml2/core/impl/NameID20Test.cpp
@am__fastdepCXX_TRUE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(samltest_CXXFLAGS) $(CXXFLAGS) -MT samltest-NameID20Test.o -MD -MP -MF $(DEPDIR)/samltest-NameID20Test.Tpo -c -o samltest-NameID20Test.o `test -f 'saml2/core/impl/NameID20Test.cpp' || echo '$(srcdir)/'`saml2/core/impl/NameID20Test.cpp
@am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/samltest-NameID20Test.Tpo $(DEPDIR)/samltest-NameID20Test.Po
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='saml2/core/impl/NameID20Test.cpp' object='samltest-NameID20Test.o' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(samltest_CXXFLAGS) $(CXXFLAGS) -c -o samltest-NameID20Test.o `test -f 'saml2/core/impl/NameID20Test.cpp' || echo '$(srcdir)/'`saml2/core/impl/NameID20Test.cpp
samltest-NameID20Test.obj: saml2/core/impl/NameID20Test.cpp
@am__fastdepCXX_TRUE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(samltest_CXXFLAGS) $(CXXFLAGS) -MT samltest-NameID20Test.obj -MD -MP -MF $(DEPDIR)/samltest-NameID20Test.Tpo -c -o samltest-NameID20Test.obj `if test -f 'saml2/core/impl/NameID20Test.cpp'; then $(CYGPATH_W) 'saml2/core/impl/NameID20Test.cpp'; else $(CYGPATH_W) '$(srcdir)/saml2/core/impl/NameID20Test.cpp'; fi`
@am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/samltest-NameID20Test.Tpo $(DEPDIR)/samltest-NameID20Test.Po
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='saml2/core/impl/NameID20Test.cpp' object='samltest-NameID20Test.obj' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(samltest_CXXFLAGS) $(CXXFLAGS) -c -o samltest-NameID20Test.obj `if test -f 'saml2/core/impl/NameID20Test.cpp'; then $(CYGPATH_W) 'saml2/core/impl/NameID20Test.cpp'; else $(CYGPATH_W) '$(srcdir)/saml2/core/impl/NameID20Test.cpp'; fi`
samltest-NameIDType20Test.o: saml2/core/impl/NameIDType20Test.cpp
@am__fastdepCXX_TRUE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(samltest_CXXFLAGS) $(CXXFLAGS) -MT samltest-NameIDType20Test.o -MD -MP -MF $(DEPDIR)/samltest-NameIDType20Test.Tpo -c -o samltest-NameIDType20Test.o `test -f 'saml2/core/impl/NameIDType20Test.cpp' || echo '$(srcdir)/'`saml2/core/impl/NameIDType20Test.cpp
@am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/samltest-NameIDType20Test.Tpo $(DEPDIR)/samltest-NameIDType20Test.Po
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='saml2/core/impl/NameIDType20Test.cpp' object='samltest-NameIDType20Test.o' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(samltest_CXXFLAGS) $(CXXFLAGS) -c -o samltest-NameIDType20Test.o `test -f 'saml2/core/impl/NameIDType20Test.cpp' || echo '$(srcdir)/'`saml2/core/impl/NameIDType20Test.cpp
samltest-NameIDType20Test.obj: saml2/core/impl/NameIDType20Test.cpp
@am__fastdepCXX_TRUE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(samltest_CXXFLAGS) $(CXXFLAGS) -MT samltest-NameIDType20Test.obj -MD -MP -MF $(DEPDIR)/samltest-NameIDType20Test.Tpo -c -o samltest-NameIDType20Test.obj `if test -f 'saml2/core/impl/NameIDType20Test.cpp'; then $(CYGPATH_W) 'saml2/core/impl/NameIDType20Test.cpp'; else $(CYGPATH_W) '$(srcdir)/saml2/core/impl/NameIDType20Test.cpp'; fi`
@am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/samltest-NameIDType20Test.Tpo $(DEPDIR)/samltest-NameIDType20Test.Po
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='saml2/core/impl/NameIDType20Test.cpp' object='samltest-NameIDType20Test.obj' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(samltest_CXXFLAGS) $(CXXFLAGS) -c -o samltest-NameIDType20Test.obj `if test -f 'saml2/core/impl/NameIDType20Test.cpp'; then $(CYGPATH_W) 'saml2/core/impl/NameIDType20Test.cpp'; else $(CYGPATH_W) '$(srcdir)/saml2/core/impl/NameIDType20Test.cpp'; fi`
samltest-NewEncryptedID20Test.o: saml2/core/impl/NewEncryptedID20Test.cpp
@am__fastdepCXX_TRUE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(samltest_CXXFLAGS) $(CXXFLAGS) -MT samltest-NewEncryptedID20Test.o -MD -MP -MF $(DEPDIR)/samltest-NewEncryptedID20Test.Tpo -c -o samltest-NewEncryptedID20Test.o `test -f 'saml2/core/impl/NewEncryptedID20Test.cpp' || echo '$(srcdir)/'`saml2/core/impl/NewEncryptedID20Test.cpp
@am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/samltest-NewEncryptedID20Test.Tpo $(DEPDIR)/samltest-NewEncryptedID20Test.Po
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='saml2/core/impl/NewEncryptedID20Test.cpp' object='samltest-NewEncryptedID20Test.o' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(samltest_CXXFLAGS) $(CXXFLAGS) -c -o samltest-NewEncryptedID20Test.o `test -f 'saml2/core/impl/NewEncryptedID20Test.cpp' || echo '$(srcdir)/'`saml2/core/impl/NewEncryptedID20Test.cpp
samltest-NewEncryptedID20Test.obj: saml2/core/impl/NewEncryptedID20Test.cpp
@am__fastdepCXX_TRUE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(samltest_CXXFLAGS) $(CXXFLAGS) -MT samltest-NewEncryptedID20Test.obj -MD -MP -MF $(DEPDIR)/samltest-NewEncryptedID20Test.Tpo -c -o samltest-NewEncryptedID20Test.obj `if test -f 'saml2/core/impl/NewEncryptedID20Test.cpp'; then $(CYGPATH_W) 'saml2/core/impl/NewEncryptedID20Test.cpp'; else $(CYGPATH_W) '$(srcdir)/saml2/core/impl/NewEncryptedID20Test.cpp'; fi`
@am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/samltest-NewEncryptedID20Test.Tpo $(DEPDIR)/samltest-NewEncryptedID20Test.Po
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='saml2/core/impl/NewEncryptedID20Test.cpp' object='samltest-NewEncryptedID20Test.obj' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(samltest_CXXFLAGS) $(CXXFLAGS) -c -o samltest-NewEncryptedID20Test.obj `if test -f 'saml2/core/impl/NewEncryptedID20Test.cpp'; then $(CYGPATH_W) 'saml2/core/impl/NewEncryptedID20Test.cpp'; else $(CYGPATH_W) '$(srcdir)/saml2/core/impl/NewEncryptedID20Test.cpp'; fi`
samltest-NewID20Test.o: saml2/core/impl/NewID20Test.cpp
@am__fastdepCXX_TRUE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(samltest_CXXFLAGS) $(CXXFLAGS) -MT samltest-NewID20Test.o -MD -MP -MF $(DEPDIR)/samltest-NewID20Test.Tpo -c -o samltest-NewID20Test.o `test -f 'saml2/core/impl/NewID20Test.cpp' || echo '$(srcdir)/'`saml2/core/impl/NewID20Test.cpp
@am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/samltest-NewID20Test.Tpo $(DEPDIR)/samltest-NewID20Test.Po
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='saml2/core/impl/NewID20Test.cpp' object='samltest-NewID20Test.o' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(samltest_CXXFLAGS) $(CXXFLAGS) -c -o samltest-NewID20Test.o `test -f 'saml2/core/impl/NewID20Test.cpp' || echo '$(srcdir)/'`saml2/core/impl/NewID20Test.cpp
samltest-NewID20Test.obj: saml2/core/impl/NewID20Test.cpp
@am__fastdepCXX_TRUE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(samltest_CXXFLAGS) $(CXXFLAGS) -MT samltest-NewID20Test.obj -MD -MP -MF $(DEPDIR)/samltest-NewID20Test.Tpo -c -o samltest-NewID20Test.obj `if test -f 'saml2/core/impl/NewID20Test.cpp'; then $(CYGPATH_W) 'saml2/core/impl/NewID20Test.cpp'; else $(CYGPATH_W) '$(srcdir)/saml2/core/impl/NewID20Test.cpp'; fi`
@am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/samltest-NewID20Test.Tpo $(DEPDIR)/samltest-NewID20Test.Po
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='saml2/core/impl/NewID20Test.cpp' object='samltest-NewID20Test.obj' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(samltest_CXXFLAGS) $(CXXFLAGS) -c -o samltest-NewID20Test.obj `if test -f 'saml2/core/impl/NewID20Test.cpp'; then $(CYGPATH_W) 'saml2/core/impl/NewID20Test.cpp'; else $(CYGPATH_W) '$(srcdir)/saml2/core/impl/NewID20Test.cpp'; fi`
samltest-OneTimeUse20Test.o: saml2/core/impl/OneTimeUse20Test.cpp
@am__fastdepCXX_TRUE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(samltest_CXXFLAGS) $(CXXFLAGS) -MT samltest-OneTimeUse20Test.o -MD -MP -MF $(DEPDIR)/samltest-OneTimeUse20Test.Tpo -c -o samltest-OneTimeUse20Test.o `test -f 'saml2/core/impl/OneTimeUse20Test.cpp' || echo '$(srcdir)/'`saml2/core/impl/OneTimeUse20Test.cpp
@am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/samltest-OneTimeUse20Test.Tpo $(DEPDIR)/samltest-OneTimeUse20Test.Po
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='saml2/core/impl/OneTimeUse20Test.cpp' object='samltest-OneTimeUse20Test.o' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(samltest_CXXFLAGS) $(CXXFLAGS) -c -o samltest-OneTimeUse20Test.o `test -f 'saml2/core/impl/OneTimeUse20Test.cpp' || echo '$(srcdir)/'`saml2/core/impl/OneTimeUse20Test.cpp
samltest-OneTimeUse20Test.obj: saml2/core/impl/OneTimeUse20Test.cpp
@am__fastdepCXX_TRUE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(samltest_CXXFLAGS) $(CXXFLAGS) -MT samltest-OneTimeUse20Test.obj -MD -MP -MF $(DEPDIR)/samltest-OneTimeUse20Test.Tpo -c -o samltest-OneTimeUse20Test.obj `if test -f 'saml2/core/impl/OneTimeUse20Test.cpp'; then $(CYGPATH_W) 'saml2/core/impl/OneTimeUse20Test.cpp'; else $(CYGPATH_W) '$(srcdir)/saml2/core/impl/OneTimeUse20Test.cpp'; fi`
@am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/samltest-OneTimeUse20Test.Tpo $(DEPDIR)/samltest-OneTimeUse20Test.Po
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='saml2/core/impl/OneTimeUse20Test.cpp' object='samltest-OneTimeUse20Test.obj' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(samltest_CXXFLAGS) $(CXXFLAGS) -c -o samltest-OneTimeUse20Test.obj `if test -f 'saml2/core/impl/OneTimeUse20Test.cpp'; then $(CYGPATH_W) 'saml2/core/impl/OneTimeUse20Test.cpp'; else $(CYGPATH_W) '$(srcdir)/saml2/core/impl/OneTimeUse20Test.cpp'; fi`
samltest-ProxyRestriction20Test.o: saml2/core/impl/ProxyRestriction20Test.cpp
@am__fastdepCXX_TRUE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(samltest_CXXFLAGS) $(CXXFLAGS) -MT samltest-ProxyRestriction20Test.o -MD -MP -MF $(DEPDIR)/samltest-ProxyRestriction20Test.Tpo -c -o samltest-ProxyRestriction20Test.o `test -f 'saml2/core/impl/ProxyRestriction20Test.cpp' || echo '$(srcdir)/'`saml2/core/impl/ProxyRestriction20Test.cpp
@am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/samltest-ProxyRestriction20Test.Tpo $(DEPDIR)/samltest-ProxyRestriction20Test.Po
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='saml2/core/impl/ProxyRestriction20Test.cpp' object='samltest-ProxyRestriction20Test.o' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(samltest_CXXFLAGS) $(CXXFLAGS) -c -o samltest-ProxyRestriction20Test.o `test -f 'saml2/core/impl/ProxyRestriction20Test.cpp' || echo '$(srcdir)/'`saml2/core/impl/ProxyRestriction20Test.cpp
samltest-ProxyRestriction20Test.obj: saml2/core/impl/ProxyRestriction20Test.cpp
@am__fastdepCXX_TRUE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(samltest_CXXFLAGS) $(CXXFLAGS) -MT samltest-ProxyRestriction20Test.obj -MD -MP -MF $(DEPDIR)/samltest-ProxyRestriction20Test.Tpo -c -o samltest-ProxyRestriction20Test.obj `if test -f 'saml2/core/impl/ProxyRestriction20Test.cpp'; then $(CYGPATH_W) 'saml2/core/impl/ProxyRestriction20Test.cpp'; else $(CYGPATH_W) '$(srcdir)/saml2/core/impl/ProxyRestriction20Test.cpp'; fi`
@am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/samltest-ProxyRestriction20Test.Tpo $(DEPDIR)/samltest-ProxyRestriction20Test.Po
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='saml2/core/impl/ProxyRestriction20Test.cpp' object='samltest-ProxyRestriction20Test.obj' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(samltest_CXXFLAGS) $(CXXFLAGS) -c -o samltest-ProxyRestriction20Test.obj `if test -f 'saml2/core/impl/ProxyRestriction20Test.cpp'; then $(CYGPATH_W) 'saml2/core/impl/ProxyRestriction20Test.cpp'; else $(CYGPATH_W) '$(srcdir)/saml2/core/impl/ProxyRestriction20Test.cpp'; fi`
samltest-RequesterID20Test.o: saml2/core/impl/RequesterID20Test.cpp
@am__fastdepCXX_TRUE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(samltest_CXXFLAGS) $(CXXFLAGS) -MT samltest-RequesterID20Test.o -MD -MP -MF $(DEPDIR)/samltest-RequesterID20Test.Tpo -c -o samltest-RequesterID20Test.o `test -f 'saml2/core/impl/RequesterID20Test.cpp' || echo '$(srcdir)/'`saml2/core/impl/RequesterID20Test.cpp
@am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/samltest-RequesterID20Test.Tpo $(DEPDIR)/samltest-RequesterID20Test.Po
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='saml2/core/impl/RequesterID20Test.cpp' object='samltest-RequesterID20Test.o' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(samltest_CXXFLAGS) $(CXXFLAGS) -c -o samltest-RequesterID20Test.o `test -f 'saml2/core/impl/RequesterID20Test.cpp' || echo '$(srcdir)/'`saml2/core/impl/RequesterID20Test.cpp
samltest-RequesterID20Test.obj: saml2/core/impl/RequesterID20Test.cpp
@am__fastdepCXX_TRUE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(samltest_CXXFLAGS) $(CXXFLAGS) -MT samltest-RequesterID20Test.obj -MD -MP -MF $(DEPDIR)/samltest-RequesterID20Test.Tpo -c -o samltest-RequesterID20Test.obj `if test -f 'saml2/core/impl/RequesterID20Test.cpp'; then $(CYGPATH_W) 'saml2/core/impl/RequesterID20Test.cpp'; else $(CYGPATH_W) '$(srcdir)/saml2/core/impl/RequesterID20Test.cpp'; fi`
@am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/samltest-RequesterID20Test.Tpo $(DEPDIR)/samltest-RequesterID20Test.Po
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='saml2/core/impl/RequesterID20Test.cpp' object='samltest-RequesterID20Test.obj' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(samltest_CXXFLAGS) $(CXXFLAGS) -c -o samltest-RequesterID20Test.obj `if test -f 'saml2/core/impl/RequesterID20Test.cpp'; then $(CYGPATH_W) 'saml2/core/impl/RequesterID20Test.cpp'; else $(CYGPATH_W) '$(srcdir)/saml2/core/impl/RequesterID20Test.cpp'; fi`
samltest-RequestedAuthnContext20Test.o: saml2/core/impl/RequestedAuthnContext20Test.cpp
@am__fastdepCXX_TRUE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(samltest_CXXFLAGS) $(CXXFLAGS) -MT samltest-RequestedAuthnContext20Test.o -MD -MP -MF $(DEPDIR)/samltest-RequestedAuthnContext20Test.Tpo -c -o samltest-RequestedAuthnContext20Test.o `test -f 'saml2/core/impl/RequestedAuthnContext20Test.cpp' || echo '$(srcdir)/'`saml2/core/impl/RequestedAuthnContext20Test.cpp
@am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/samltest-RequestedAuthnContext20Test.Tpo $(DEPDIR)/samltest-RequestedAuthnContext20Test.Po
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='saml2/core/impl/RequestedAuthnContext20Test.cpp' object='samltest-RequestedAuthnContext20Test.o' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(samltest_CXXFLAGS) $(CXXFLAGS) -c -o samltest-RequestedAuthnContext20Test.o `test -f 'saml2/core/impl/RequestedAuthnContext20Test.cpp' || echo '$(srcdir)/'`saml2/core/impl/RequestedAuthnContext20Test.cpp
samltest-RequestedAuthnContext20Test.obj: saml2/core/impl/RequestedAuthnContext20Test.cpp
@am__fastdepCXX_TRUE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(samltest_CXXFLAGS) $(CXXFLAGS) -MT samltest-RequestedAuthnContext20Test.obj -MD -MP -MF $(DEPDIR)/samltest-RequestedAuthnContext20Test.Tpo -c -o samltest-RequestedAuthnContext20Test.obj `if test -f 'saml2/core/impl/RequestedAuthnContext20Test.cpp'; then $(CYGPATH_W) 'saml2/core/impl/RequestedAuthnContext20Test.cpp'; else $(CYGPATH_W) '$(srcdir)/saml2/core/impl/RequestedAuthnContext20Test.cpp'; fi`
@am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/samltest-RequestedAuthnContext20Test.Tpo $(DEPDIR)/samltest-RequestedAuthnContext20Test.Po
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='saml2/core/impl/RequestedAuthnContext20Test.cpp' object='samltest-RequestedAuthnContext20Test.obj' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(samltest_CXXFLAGS) $(CXXFLAGS) -c -o samltest-RequestedAuthnContext20Test.obj `if test -f 'saml2/core/impl/RequestedAuthnContext20Test.cpp'; then $(CYGPATH_W) 'saml2/core/impl/RequestedAuthnContext20Test.cpp'; else $(CYGPATH_W) '$(srcdir)/saml2/core/impl/RequestedAuthnContext20Test.cpp'; fi`
samltest-Response20Test.o: saml2/core/impl/Response20Test.cpp
@am__fastdepCXX_TRUE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(samltest_CXXFLAGS) $(CXXFLAGS) -MT samltest-Response20Test.o -MD -MP -MF $(DEPDIR)/samltest-Response20Test.Tpo -c -o samltest-Response20Test.o `test -f 'saml2/core/impl/Response20Test.cpp' || echo '$(srcdir)/'`saml2/core/impl/Response20Test.cpp
@am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/samltest-Response20Test.Tpo $(DEPDIR)/samltest-Response20Test.Po
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='saml2/core/impl/Response20Test.cpp' object='samltest-Response20Test.o' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(samltest_CXXFLAGS) $(CXXFLAGS) -c -o samltest-Response20Test.o `test -f 'saml2/core/impl/Response20Test.cpp' || echo '$(srcdir)/'`saml2/core/impl/Response20Test.cpp
samltest-Response20Test.obj: saml2/core/impl/Response20Test.cpp
@am__fastdepCXX_TRUE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(samltest_CXXFLAGS) $(CXXFLAGS) -MT samltest-Response20Test.obj -MD -MP -MF $(DEPDIR)/samltest-Response20Test.Tpo -c -o samltest-Response20Test.obj `if test -f 'saml2/core/impl/Response20Test.cpp'; then $(CYGPATH_W) 'saml2/core/impl/Response20Test.cpp'; else $(CYGPATH_W) '$(srcdir)/saml2/core/impl/Response20Test.cpp'; fi`
@am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/samltest-Response20Test.Tpo $(DEPDIR)/samltest-Response20Test.Po
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='saml2/core/impl/Response20Test.cpp' object='samltest-Response20Test.obj' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(samltest_CXXFLAGS) $(CXXFLAGS) -c -o samltest-Response20Test.obj `if test -f 'saml2/core/impl/Response20Test.cpp'; then $(CYGPATH_W) 'saml2/core/impl/Response20Test.cpp'; else $(CYGPATH_W) '$(srcdir)/saml2/core/impl/Response20Test.cpp'; fi`
samltest-Scoping20Test.o: saml2/core/impl/Scoping20Test.cpp
@am__fastdepCXX_TRUE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(samltest_CXXFLAGS) $(CXXFLAGS) -MT samltest-Scoping20Test.o -MD -MP -MF $(DEPDIR)/samltest-Scoping20Test.Tpo -c -o samltest-Scoping20Test.o `test -f 'saml2/core/impl/Scoping20Test.cpp' || echo '$(srcdir)/'`saml2/core/impl/Scoping20Test.cpp
@am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/samltest-Scoping20Test.Tpo $(DEPDIR)/samltest-Scoping20Test.Po
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='saml2/core/impl/Scoping20Test.cpp' object='samltest-Scoping20Test.o' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(samltest_CXXFLAGS) $(CXXFLAGS) -c -o samltest-Scoping20Test.o `test -f 'saml2/core/impl/Scoping20Test.cpp' || echo '$(srcdir)/'`saml2/core/impl/Scoping20Test.cpp
samltest-Scoping20Test.obj: saml2/core/impl/Scoping20Test.cpp
@am__fastdepCXX_TRUE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(samltest_CXXFLAGS) $(CXXFLAGS) -MT samltest-Scoping20Test.obj -MD -MP -MF $(DEPDIR)/samltest-Scoping20Test.Tpo -c -o samltest-Scoping20Test.obj `if test -f 'saml2/core/impl/Scoping20Test.cpp'; then $(CYGPATH_W) 'saml2/core/impl/Scoping20Test.cpp'; else $(CYGPATH_W) '$(srcdir)/saml2/core/impl/Scoping20Test.cpp'; fi`
@am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/samltest-Scoping20Test.Tpo $(DEPDIR)/samltest-Scoping20Test.Po
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='saml2/core/impl/Scoping20Test.cpp' object='samltest-Scoping20Test.obj' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(samltest_CXXFLAGS) $(CXXFLAGS) -c -o samltest-Scoping20Test.obj `if test -f 'saml2/core/impl/Scoping20Test.cpp'; then $(CYGPATH_W) 'saml2/core/impl/Scoping20Test.cpp'; else $(CYGPATH_W) '$(srcdir)/saml2/core/impl/Scoping20Test.cpp'; fi`
samltest-SessionIndex20Test.o: saml2/core/impl/SessionIndex20Test.cpp
@am__fastdepCXX_TRUE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(samltest_CXXFLAGS) $(CXXFLAGS) -MT samltest-SessionIndex20Test.o -MD -MP -MF $(DEPDIR)/samltest-SessionIndex20Test.Tpo -c -o samltest-SessionIndex20Test.o `test -f 'saml2/core/impl/SessionIndex20Test.cpp' || echo '$(srcdir)/'`saml2/core/impl/SessionIndex20Test.cpp
@am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/samltest-SessionIndex20Test.Tpo $(DEPDIR)/samltest-SessionIndex20Test.Po
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='saml2/core/impl/SessionIndex20Test.cpp' object='samltest-SessionIndex20Test.o' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(samltest_CXXFLAGS) $(CXXFLAGS) -c -o samltest-SessionIndex20Test.o `test -f 'saml2/core/impl/SessionIndex20Test.cpp' || echo '$(srcdir)/'`saml2/core/impl/SessionIndex20Test.cpp
samltest-SessionIndex20Test.obj: saml2/core/impl/SessionIndex20Test.cpp
@am__fastdepCXX_TRUE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(samltest_CXXFLAGS) $(CXXFLAGS) -MT samltest-SessionIndex20Test.obj -MD -MP -MF $(DEPDIR)/samltest-SessionIndex20Test.Tpo -c -o samltest-SessionIndex20Test.obj `if test -f 'saml2/core/impl/SessionIndex20Test.cpp'; then $(CYGPATH_W) 'saml2/core/impl/SessionIndex20Test.cpp'; else $(CYGPATH_W) '$(srcdir)/saml2/core/impl/SessionIndex20Test.cpp'; fi`
@am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/samltest-SessionIndex20Test.Tpo $(DEPDIR)/samltest-SessionIndex20Test.Po
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='saml2/core/impl/SessionIndex20Test.cpp' object='samltest-SessionIndex20Test.obj' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(samltest_CXXFLAGS) $(CXXFLAGS) -c -o samltest-SessionIndex20Test.obj `if test -f 'saml2/core/impl/SessionIndex20Test.cpp'; then $(CYGPATH_W) 'saml2/core/impl/SessionIndex20Test.cpp'; else $(CYGPATH_W) '$(srcdir)/saml2/core/impl/SessionIndex20Test.cpp'; fi`
samltest-Status20Test.o: saml2/core/impl/Status20Test.cpp
@am__fastdepCXX_TRUE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(samltest_CXXFLAGS) $(CXXFLAGS) -MT samltest-Status20Test.o -MD -MP -MF $(DEPDIR)/samltest-Status20Test.Tpo -c -o samltest-Status20Test.o `test -f 'saml2/core/impl/Status20Test.cpp' || echo '$(srcdir)/'`saml2/core/impl/Status20Test.cpp
@am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/samltest-Status20Test.Tpo $(DEPDIR)/samltest-Status20Test.Po
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='saml2/core/impl/Status20Test.cpp' object='samltest-Status20Test.o' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(samltest_CXXFLAGS) $(CXXFLAGS) -c -o samltest-Status20Test.o `test -f 'saml2/core/impl/Status20Test.cpp' || echo '$(srcdir)/'`saml2/core/impl/Status20Test.cpp
samltest-Status20Test.obj: saml2/core/impl/Status20Test.cpp
@am__fastdepCXX_TRUE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(samltest_CXXFLAGS) $(CXXFLAGS) -MT samltest-Status20Test.obj -MD -MP -MF $(DEPDIR)/samltest-Status20Test.Tpo -c -o samltest-Status20Test.obj `if test -f 'saml2/core/impl/Status20Test.cpp'; then $(CYGPATH_W) 'saml2/core/impl/Status20Test.cpp'; else $(CYGPATH_W) '$(srcdir)/saml2/core/impl/Status20Test.cpp'; fi`
@am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/samltest-Status20Test.Tpo $(DEPDIR)/samltest-Status20Test.Po
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='saml2/core/impl/Status20Test.cpp' object='samltest-Status20Test.obj' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(samltest_CXXFLAGS) $(CXXFLAGS) -c -o samltest-Status20Test.obj `if test -f 'saml2/core/impl/Status20Test.cpp'; then $(CYGPATH_W) 'saml2/core/impl/Status20Test.cpp'; else $(CYGPATH_W) '$(srcdir)/saml2/core/impl/Status20Test.cpp'; fi`
samltest-StatusCode20Test.o: saml2/core/impl/StatusCode20Test.cpp
@am__fastdepCXX_TRUE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(samltest_CXXFLAGS) $(CXXFLAGS) -MT samltest-StatusCode20Test.o -MD -MP -MF $(DEPDIR)/samltest-StatusCode20Test.Tpo -c -o samltest-StatusCode20Test.o `test -f 'saml2/core/impl/StatusCode20Test.cpp' || echo '$(srcdir)/'`saml2/core/impl/StatusCode20Test.cpp
@am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/samltest-StatusCode20Test.Tpo $(DEPDIR)/samltest-StatusCode20Test.Po
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='saml2/core/impl/StatusCode20Test.cpp' object='samltest-StatusCode20Test.o' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(samltest_CXXFLAGS) $(CXXFLAGS) -c -o samltest-StatusCode20Test.o `test -f 'saml2/core/impl/StatusCode20Test.cpp' || echo '$(srcdir)/'`saml2/core/impl/StatusCode20Test.cpp
samltest-StatusCode20Test.obj: saml2/core/impl/StatusCode20Test.cpp
@am__fastdepCXX_TRUE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(samltest_CXXFLAGS) $(CXXFLAGS) -MT samltest-StatusCode20Test.obj -MD -MP -MF $(DEPDIR)/samltest-StatusCode20Test.Tpo -c -o samltest-StatusCode20Test.obj `if test -f 'saml2/core/impl/StatusCode20Test.cpp'; then $(CYGPATH_W) 'saml2/core/impl/StatusCode20Test.cpp'; else $(CYGPATH_W) '$(srcdir)/saml2/core/impl/StatusCode20Test.cpp'; fi`
@am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/samltest-StatusCode20Test.Tpo $(DEPDIR)/samltest-StatusCode20Test.Po
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='saml2/core/impl/StatusCode20Test.cpp' object='samltest-StatusCode20Test.obj' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(samltest_CXXFLAGS) $(CXXFLAGS) -c -o samltest-StatusCode20Test.obj `if test -f 'saml2/core/impl/StatusCode20Test.cpp'; then $(CYGPATH_W) 'saml2/core/impl/StatusCode20Test.cpp'; else $(CYGPATH_W) '$(srcdir)/saml2/core/impl/StatusCode20Test.cpp'; fi`
samltest-StatusDetail20Test.o: saml2/core/impl/StatusDetail20Test.cpp
@am__fastdepCXX_TRUE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(samltest_CXXFLAGS) $(CXXFLAGS) -MT samltest-StatusDetail20Test.o -MD -MP -MF $(DEPDIR)/samltest-StatusDetail20Test.Tpo -c -o samltest-StatusDetail20Test.o `test -f 'saml2/core/impl/StatusDetail20Test.cpp' || echo '$(srcdir)/'`saml2/core/impl/StatusDetail20Test.cpp
@am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/samltest-StatusDetail20Test.Tpo $(DEPDIR)/samltest-StatusDetail20Test.Po
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='saml2/core/impl/StatusDetail20Test.cpp' object='samltest-StatusDetail20Test.o' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(samltest_CXXFLAGS) $(CXXFLAGS) -c -o samltest-StatusDetail20Test.o `test -f 'saml2/core/impl/StatusDetail20Test.cpp' || echo '$(srcdir)/'`saml2/core/impl/StatusDetail20Test.cpp
samltest-StatusDetail20Test.obj: saml2/core/impl/StatusDetail20Test.cpp
@am__fastdepCXX_TRUE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(samltest_CXXFLAGS) $(CXXFLAGS) -MT samltest-StatusDetail20Test.obj -MD -MP -MF $(DEPDIR)/samltest-StatusDetail20Test.Tpo -c -o samltest-StatusDetail20Test.obj `if test -f 'saml2/core/impl/StatusDetail20Test.cpp'; then $(CYGPATH_W) 'saml2/core/impl/StatusDetail20Test.cpp'; else $(CYGPATH_W) '$(srcdir)/saml2/core/impl/StatusDetail20Test.cpp'; fi`
@am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/samltest-StatusDetail20Test.Tpo $(DEPDIR)/samltest-StatusDetail20Test.Po
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='saml2/core/impl/StatusDetail20Test.cpp' object='samltest-StatusDetail20Test.obj' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(samltest_CXXFLAGS) $(CXXFLAGS) -c -o samltest-StatusDetail20Test.obj `if test -f 'saml2/core/impl/StatusDetail20Test.cpp'; then $(CYGPATH_W) 'saml2/core/impl/StatusDetail20Test.cpp'; else $(CYGPATH_W) '$(srcdir)/saml2/core/impl/StatusDetail20Test.cpp'; fi`
samltest-StatusMessage20Test.o: saml2/core/impl/StatusMessage20Test.cpp
@am__fastdepCXX_TRUE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(samltest_CXXFLAGS) $(CXXFLAGS) -MT samltest-StatusMessage20Test.o -MD -MP -MF $(DEPDIR)/samltest-StatusMessage20Test.Tpo -c -o samltest-StatusMessage20Test.o `test -f 'saml2/core/impl/StatusMessage20Test.cpp' || echo '$(srcdir)/'`saml2/core/impl/StatusMessage20Test.cpp
@am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/samltest-StatusMessage20Test.Tpo $(DEPDIR)/samltest-StatusMessage20Test.Po
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='saml2/core/impl/StatusMessage20Test.cpp' object='samltest-StatusMessage20Test.o' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(samltest_CXXFLAGS) $(CXXFLAGS) -c -o samltest-StatusMessage20Test.o `test -f 'saml2/core/impl/StatusMessage20Test.cpp' || echo '$(srcdir)/'`saml2/core/impl/StatusMessage20Test.cpp
samltest-StatusMessage20Test.obj: saml2/core/impl/StatusMessage20Test.cpp
@am__fastdepCXX_TRUE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(samltest_CXXFLAGS) $(CXXFLAGS) -MT samltest-StatusMessage20Test.obj -MD -MP -MF $(DEPDIR)/samltest-StatusMessage20Test.Tpo -c -o samltest-StatusMessage20Test.obj `if test -f 'saml2/core/impl/StatusMessage20Test.cpp'; then $(CYGPATH_W) 'saml2/core/impl/StatusMessage20Test.cpp'; else $(CYGPATH_W) '$(srcdir)/saml2/core/impl/StatusMessage20Test.cpp'; fi`
@am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/samltest-StatusMessage20Test.Tpo $(DEPDIR)/samltest-StatusMessage20Test.Po
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='saml2/core/impl/StatusMessage20Test.cpp' object='samltest-StatusMessage20Test.obj' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(samltest_CXXFLAGS) $(CXXFLAGS) -c -o samltest-StatusMessage20Test.obj `if test -f 'saml2/core/impl/StatusMessage20Test.cpp'; then $(CYGPATH_W) 'saml2/core/impl/StatusMessage20Test.cpp'; else $(CYGPATH_W) '$(srcdir)/saml2/core/impl/StatusMessage20Test.cpp'; fi`
samltest-Subject20Test.o: saml2/core/impl/Subject20Test.cpp
@am__fastdepCXX_TRUE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(samltest_CXXFLAGS) $(CXXFLAGS) -MT samltest-Subject20Test.o -MD -MP -MF $(DEPDIR)/samltest-Subject20Test.Tpo -c -o samltest-Subject20Test.o `test -f 'saml2/core/impl/Subject20Test.cpp' || echo '$(srcdir)/'`saml2/core/impl/Subject20Test.cpp
@am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/samltest-Subject20Test.Tpo $(DEPDIR)/samltest-Subject20Test.Po
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='saml2/core/impl/Subject20Test.cpp' object='samltest-Subject20Test.o' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(samltest_CXXFLAGS) $(CXXFLAGS) -c -o samltest-Subject20Test.o `test -f 'saml2/core/impl/Subject20Test.cpp' || echo '$(srcdir)/'`saml2/core/impl/Subject20Test.cpp
samltest-Subject20Test.obj: saml2/core/impl/Subject20Test.cpp
@am__fastdepCXX_TRUE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(samltest_CXXFLAGS) $(CXXFLAGS) -MT samltest-Subject20Test.obj -MD -MP -MF $(DEPDIR)/samltest-Subject20Test.Tpo -c -o samltest-Subject20Test.obj `if test -f 'saml2/core/impl/Subject20Test.cpp'; then $(CYGPATH_W) 'saml2/core/impl/Subject20Test.cpp'; else $(CYGPATH_W) '$(srcdir)/saml2/core/impl/Subject20Test.cpp'; fi`
@am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/samltest-Subject20Test.Tpo $(DEPDIR)/samltest-Subject20Test.Po
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='saml2/core/impl/Subject20Test.cpp' object='samltest-Subject20Test.obj' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(samltest_CXXFLAGS) $(CXXFLAGS) -c -o samltest-Subject20Test.obj `if test -f 'saml2/core/impl/Subject20Test.cpp'; then $(CYGPATH_W) 'saml2/core/impl/Subject20Test.cpp'; else $(CYGPATH_W) '$(srcdir)/saml2/core/impl/Subject20Test.cpp'; fi`
samltest-SubjectConfirmation20Test.o: saml2/core/impl/SubjectConfirmation20Test.cpp
@am__fastdepCXX_TRUE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(samltest_CXXFLAGS) $(CXXFLAGS) -MT samltest-SubjectConfirmation20Test.o -MD -MP -MF $(DEPDIR)/samltest-SubjectConfirmation20Test.Tpo -c -o samltest-SubjectConfirmation20Test.o `test -f 'saml2/core/impl/SubjectConfirmation20Test.cpp' || echo '$(srcdir)/'`saml2/core/impl/SubjectConfirmation20Test.cpp
@am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/samltest-SubjectConfirmation20Test.Tpo $(DEPDIR)/samltest-SubjectConfirmation20Test.Po
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='saml2/core/impl/SubjectConfirmation20Test.cpp' object='samltest-SubjectConfirmation20Test.o' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(samltest_CXXFLAGS) $(CXXFLAGS) -c -o samltest-SubjectConfirmation20Test.o `test -f 'saml2/core/impl/SubjectConfirmation20Test.cpp' || echo '$(srcdir)/'`saml2/core/impl/SubjectConfirmation20Test.cpp
samltest-SubjectConfirmation20Test.obj: saml2/core/impl/SubjectConfirmation20Test.cpp
@am__fastdepCXX_TRUE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(samltest_CXXFLAGS) $(CXXFLAGS) -MT samltest-SubjectConfirmation20Test.obj -MD -MP -MF $(DEPDIR)/samltest-SubjectConfirmation20Test.Tpo -c -o samltest-SubjectConfirmation20Test.obj `if test -f 'saml2/core/impl/SubjectConfirmation20Test.cpp'; then $(CYGPATH_W) 'saml2/core/impl/SubjectConfirmation20Test.cpp'; else $(CYGPATH_W) '$(srcdir)/saml2/core/impl/SubjectConfirmation20Test.cpp'; fi`
@am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/samltest-SubjectConfirmation20Test.Tpo $(DEPDIR)/samltest-SubjectConfirmation20Test.Po
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='saml2/core/impl/SubjectConfirmation20Test.cpp' object='samltest-SubjectConfirmation20Test.obj' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(samltest_CXXFLAGS) $(CXXFLAGS) -c -o samltest-SubjectConfirmation20Test.obj `if test -f 'saml2/core/impl/SubjectConfirmation20Test.cpp'; then $(CYGPATH_W) 'saml2/core/impl/SubjectConfirmation20Test.cpp'; else $(CYGPATH_W) '$(srcdir)/saml2/core/impl/SubjectConfirmation20Test.cpp'; fi`
samltest-SubjectConfirmationData20Test.o: saml2/core/impl/SubjectConfirmationData20Test.cpp
@am__fastdepCXX_TRUE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(samltest_CXXFLAGS) $(CXXFLAGS) -MT samltest-SubjectConfirmationData20Test.o -MD -MP -MF $(DEPDIR)/samltest-SubjectConfirmationData20Test.Tpo -c -o samltest-SubjectConfirmationData20Test.o `test -f 'saml2/core/impl/SubjectConfirmationData20Test.cpp' || echo '$(srcdir)/'`saml2/core/impl/SubjectConfirmationData20Test.cpp
@am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/samltest-SubjectConfirmationData20Test.Tpo $(DEPDIR)/samltest-SubjectConfirmationData20Test.Po
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='saml2/core/impl/SubjectConfirmationData20Test.cpp' object='samltest-SubjectConfirmationData20Test.o' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(samltest_CXXFLAGS) $(CXXFLAGS) -c -o samltest-SubjectConfirmationData20Test.o `test -f 'saml2/core/impl/SubjectConfirmationData20Test.cpp' || echo '$(srcdir)/'`saml2/core/impl/SubjectConfirmationData20Test.cpp
samltest-SubjectConfirmationData20Test.obj: saml2/core/impl/SubjectConfirmationData20Test.cpp
@am__fastdepCXX_TRUE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(samltest_CXXFLAGS) $(CXXFLAGS) -MT samltest-SubjectConfirmationData20Test.obj -MD -MP -MF $(DEPDIR)/samltest-SubjectConfirmationData20Test.Tpo -c -o samltest-SubjectConfirmationData20Test.obj `if test -f 'saml2/core/impl/SubjectConfirmationData20Test.cpp'; then $(CYGPATH_W) 'saml2/core/impl/SubjectConfirmationData20Test.cpp'; else $(CYGPATH_W) '$(srcdir)/saml2/core/impl/SubjectConfirmationData20Test.cpp'; fi`
@am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/samltest-SubjectConfirmationData20Test.Tpo $(DEPDIR)/samltest-SubjectConfirmationData20Test.Po
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='saml2/core/impl/SubjectConfirmationData20Test.cpp' object='samltest-SubjectConfirmationData20Test.obj' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(samltest_CXXFLAGS) $(CXXFLAGS) -c -o samltest-SubjectConfirmationData20Test.obj `if test -f 'saml2/core/impl/SubjectConfirmationData20Test.cpp'; then $(CYGPATH_W) 'saml2/core/impl/SubjectConfirmationData20Test.cpp'; else $(CYGPATH_W) '$(srcdir)/saml2/core/impl/SubjectConfirmationData20Test.cpp'; fi`
samltest-SubjectLocality20Test.o: saml2/core/impl/SubjectLocality20Test.cpp
@am__fastdepCXX_TRUE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(samltest_CXXFLAGS) $(CXXFLAGS) -MT samltest-SubjectLocality20Test.o -MD -MP -MF $(DEPDIR)/samltest-SubjectLocality20Test.Tpo -c -o samltest-SubjectLocality20Test.o `test -f 'saml2/core/impl/SubjectLocality20Test.cpp' || echo '$(srcdir)/'`saml2/core/impl/SubjectLocality20Test.cpp
@am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/samltest-SubjectLocality20Test.Tpo $(DEPDIR)/samltest-SubjectLocality20Test.Po
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='saml2/core/impl/SubjectLocality20Test.cpp' object='samltest-SubjectLocality20Test.o' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(samltest_CXXFLAGS) $(CXXFLAGS) -c -o samltest-SubjectLocality20Test.o `test -f 'saml2/core/impl/SubjectLocality20Test.cpp' || echo '$(srcdir)/'`saml2/core/impl/SubjectLocality20Test.cpp
samltest-SubjectLocality20Test.obj: saml2/core/impl/SubjectLocality20Test.cpp
@am__fastdepCXX_TRUE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(samltest_CXXFLAGS) $(CXXFLAGS) -MT samltest-SubjectLocality20Test.obj -MD -MP -MF $(DEPDIR)/samltest-SubjectLocality20Test.Tpo -c -o samltest-SubjectLocality20Test.obj `if test -f 'saml2/core/impl/SubjectLocality20Test.cpp'; then $(CYGPATH_W) 'saml2/core/impl/SubjectLocality20Test.cpp'; else $(CYGPATH_W) '$(srcdir)/saml2/core/impl/SubjectLocality20Test.cpp'; fi`
@am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/samltest-SubjectLocality20Test.Tpo $(DEPDIR)/samltest-SubjectLocality20Test.Po
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='saml2/core/impl/SubjectLocality20Test.cpp' object='samltest-SubjectLocality20Test.obj' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(samltest_CXXFLAGS) $(CXXFLAGS) -c -o samltest-SubjectLocality20Test.obj `if test -f 'saml2/core/impl/SubjectLocality20Test.cpp'; then $(CYGPATH_W) 'saml2/core/impl/SubjectLocality20Test.cpp'; else $(CYGPATH_W) '$(srcdir)/saml2/core/impl/SubjectLocality20Test.cpp'; fi`
samltest-Terminate20Test.o: saml2/core/impl/Terminate20Test.cpp
@am__fastdepCXX_TRUE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(samltest_CXXFLAGS) $(CXXFLAGS) -MT samltest-Terminate20Test.o -MD -MP -MF $(DEPDIR)/samltest-Terminate20Test.Tpo -c -o samltest-Terminate20Test.o `test -f 'saml2/core/impl/Terminate20Test.cpp' || echo '$(srcdir)/'`saml2/core/impl/Terminate20Test.cpp
@am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/samltest-Terminate20Test.Tpo $(DEPDIR)/samltest-Terminate20Test.Po
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='saml2/core/impl/Terminate20Test.cpp' object='samltest-Terminate20Test.o' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(samltest_CXXFLAGS) $(CXXFLAGS) -c -o samltest-Terminate20Test.o `test -f 'saml2/core/impl/Terminate20Test.cpp' || echo '$(srcdir)/'`saml2/core/impl/Terminate20Test.cpp
samltest-Terminate20Test.obj: saml2/core/impl/Terminate20Test.cpp
@am__fastdepCXX_TRUE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(samltest_CXXFLAGS) $(CXXFLAGS) -MT samltest-Terminate20Test.obj -MD -MP -MF $(DEPDIR)/samltest-Terminate20Test.Tpo -c -o samltest-Terminate20Test.obj `if test -f 'saml2/core/impl/Terminate20Test.cpp'; then $(CYGPATH_W) 'saml2/core/impl/Terminate20Test.cpp'; else $(CYGPATH_W) '$(srcdir)/saml2/core/impl/Terminate20Test.cpp'; fi`
@am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/samltest-Terminate20Test.Tpo $(DEPDIR)/samltest-Terminate20Test.Po
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='saml2/core/impl/Terminate20Test.cpp' object='samltest-Terminate20Test.obj' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(samltest_CXXFLAGS) $(CXXFLAGS) -c -o samltest-Terminate20Test.obj `if test -f 'saml2/core/impl/Terminate20Test.cpp'; then $(CYGPATH_W) 'saml2/core/impl/Terminate20Test.cpp'; else $(CYGPATH_W) '$(srcdir)/saml2/core/impl/Terminate20Test.cpp'; fi`
samltest-SAML2ArtifactTest.o: saml2/binding/SAML2ArtifactTest.cpp
@am__fastdepCXX_TRUE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(samltest_CXXFLAGS) $(CXXFLAGS) -MT samltest-SAML2ArtifactTest.o -MD -MP -MF $(DEPDIR)/samltest-SAML2ArtifactTest.Tpo -c -o samltest-SAML2ArtifactTest.o `test -f 'saml2/binding/SAML2ArtifactTest.cpp' || echo '$(srcdir)/'`saml2/binding/SAML2ArtifactTest.cpp
@am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/samltest-SAML2ArtifactTest.Tpo $(DEPDIR)/samltest-SAML2ArtifactTest.Po
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='saml2/binding/SAML2ArtifactTest.cpp' object='samltest-SAML2ArtifactTest.o' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(samltest_CXXFLAGS) $(CXXFLAGS) -c -o samltest-SAML2ArtifactTest.o `test -f 'saml2/binding/SAML2ArtifactTest.cpp' || echo '$(srcdir)/'`saml2/binding/SAML2ArtifactTest.cpp
samltest-SAML2ArtifactTest.obj: saml2/binding/SAML2ArtifactTest.cpp
@am__fastdepCXX_TRUE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(samltest_CXXFLAGS) $(CXXFLAGS) -MT samltest-SAML2ArtifactTest.obj -MD -MP -MF $(DEPDIR)/samltest-SAML2ArtifactTest.Tpo -c -o samltest-SAML2ArtifactTest.obj `if test -f 'saml2/binding/SAML2ArtifactTest.cpp'; then $(CYGPATH_W) 'saml2/binding/SAML2ArtifactTest.cpp'; else $(CYGPATH_W) '$(srcdir)/saml2/binding/SAML2ArtifactTest.cpp'; fi`
@am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/samltest-SAML2ArtifactTest.Tpo $(DEPDIR)/samltest-SAML2ArtifactTest.Po
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='saml2/binding/SAML2ArtifactTest.cpp' object='samltest-SAML2ArtifactTest.obj' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(samltest_CXXFLAGS) $(CXXFLAGS) -c -o samltest-SAML2ArtifactTest.obj `if test -f 'saml2/binding/SAML2ArtifactTest.cpp'; then $(CYGPATH_W) 'saml2/binding/SAML2ArtifactTest.cpp'; else $(CYGPATH_W) '$(srcdir)/saml2/binding/SAML2ArtifactTest.cpp'; fi`
samltest-SAML2POSTTest.o: saml2/binding/SAML2POSTTest.cpp
@am__fastdepCXX_TRUE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(samltest_CXXFLAGS) $(CXXFLAGS) -MT samltest-SAML2POSTTest.o -MD -MP -MF $(DEPDIR)/samltest-SAML2POSTTest.Tpo -c -o samltest-SAML2POSTTest.o `test -f 'saml2/binding/SAML2POSTTest.cpp' || echo '$(srcdir)/'`saml2/binding/SAML2POSTTest.cpp
@am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/samltest-SAML2POSTTest.Tpo $(DEPDIR)/samltest-SAML2POSTTest.Po
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='saml2/binding/SAML2POSTTest.cpp' object='samltest-SAML2POSTTest.o' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(samltest_CXXFLAGS) $(CXXFLAGS) -c -o samltest-SAML2POSTTest.o `test -f 'saml2/binding/SAML2POSTTest.cpp' || echo '$(srcdir)/'`saml2/binding/SAML2POSTTest.cpp
samltest-SAML2POSTTest.obj: saml2/binding/SAML2POSTTest.cpp
@am__fastdepCXX_TRUE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(samltest_CXXFLAGS) $(CXXFLAGS) -MT samltest-SAML2POSTTest.obj -MD -MP -MF $(DEPDIR)/samltest-SAML2POSTTest.Tpo -c -o samltest-SAML2POSTTest.obj `if test -f 'saml2/binding/SAML2POSTTest.cpp'; then $(CYGPATH_W) 'saml2/binding/SAML2POSTTest.cpp'; else $(CYGPATH_W) '$(srcdir)/saml2/binding/SAML2POSTTest.cpp'; fi`
@am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/samltest-SAML2POSTTest.Tpo $(DEPDIR)/samltest-SAML2POSTTest.Po
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='saml2/binding/SAML2POSTTest.cpp' object='samltest-SAML2POSTTest.obj' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(samltest_CXXFLAGS) $(CXXFLAGS) -c -o samltest-SAML2POSTTest.obj `if test -f 'saml2/binding/SAML2POSTTest.cpp'; then $(CYGPATH_W) 'saml2/binding/SAML2POSTTest.cpp'; else $(CYGPATH_W) '$(srcdir)/saml2/binding/SAML2POSTTest.cpp'; fi`
samltest-SAML2RedirectTest.o: saml2/binding/SAML2RedirectTest.cpp
@am__fastdepCXX_TRUE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(samltest_CXXFLAGS) $(CXXFLAGS) -MT samltest-SAML2RedirectTest.o -MD -MP -MF $(DEPDIR)/samltest-SAML2RedirectTest.Tpo -c -o samltest-SAML2RedirectTest.o `test -f 'saml2/binding/SAML2RedirectTest.cpp' || echo '$(srcdir)/'`saml2/binding/SAML2RedirectTest.cpp
@am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/samltest-SAML2RedirectTest.Tpo $(DEPDIR)/samltest-SAML2RedirectTest.Po
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='saml2/binding/SAML2RedirectTest.cpp' object='samltest-SAML2RedirectTest.o' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(samltest_CXXFLAGS) $(CXXFLAGS) -c -o samltest-SAML2RedirectTest.o `test -f 'saml2/binding/SAML2RedirectTest.cpp' || echo '$(srcdir)/'`saml2/binding/SAML2RedirectTest.cpp
samltest-SAML2RedirectTest.obj: saml2/binding/SAML2RedirectTest.cpp
@am__fastdepCXX_TRUE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(samltest_CXXFLAGS) $(CXXFLAGS) -MT samltest-SAML2RedirectTest.obj -MD -MP -MF $(DEPDIR)/samltest-SAML2RedirectTest.Tpo -c -o samltest-SAML2RedirectTest.obj `if test -f 'saml2/binding/SAML2RedirectTest.cpp'; then $(CYGPATH_W) 'saml2/binding/SAML2RedirectTest.cpp'; else $(CYGPATH_W) '$(srcdir)/saml2/binding/SAML2RedirectTest.cpp'; fi`
@am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/samltest-SAML2RedirectTest.Tpo $(DEPDIR)/samltest-SAML2RedirectTest.Po
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='saml2/binding/SAML2RedirectTest.cpp' object='samltest-SAML2RedirectTest.obj' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(samltest_CXXFLAGS) $(CXXFLAGS) -c -o samltest-SAML2RedirectTest.obj `if test -f 'saml2/binding/SAML2RedirectTest.cpp'; then $(CYGPATH_W) 'saml2/binding/SAML2RedirectTest.cpp'; else $(CYGPATH_W) '$(srcdir)/saml2/binding/SAML2RedirectTest.cpp'; fi`
samltest-XMLMetadataProviderTest.o: saml2/metadata/XMLMetadataProviderTest.cpp
@am__fastdepCXX_TRUE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(samltest_CXXFLAGS) $(CXXFLAGS) -MT samltest-XMLMetadataProviderTest.o -MD -MP -MF $(DEPDIR)/samltest-XMLMetadataProviderTest.Tpo -c -o samltest-XMLMetadataProviderTest.o `test -f 'saml2/metadata/XMLMetadataProviderTest.cpp' || echo '$(srcdir)/'`saml2/metadata/XMLMetadataProviderTest.cpp
@am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/samltest-XMLMetadataProviderTest.Tpo $(DEPDIR)/samltest-XMLMetadataProviderTest.Po
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='saml2/metadata/XMLMetadataProviderTest.cpp' object='samltest-XMLMetadataProviderTest.o' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(samltest_CXXFLAGS) $(CXXFLAGS) -c -o samltest-XMLMetadataProviderTest.o `test -f 'saml2/metadata/XMLMetadataProviderTest.cpp' || echo '$(srcdir)/'`saml2/metadata/XMLMetadataProviderTest.cpp
samltest-XMLMetadataProviderTest.obj: saml2/metadata/XMLMetadataProviderTest.cpp
@am__fastdepCXX_TRUE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(samltest_CXXFLAGS) $(CXXFLAGS) -MT samltest-XMLMetadataProviderTest.obj -MD -MP -MF $(DEPDIR)/samltest-XMLMetadataProviderTest.Tpo -c -o samltest-XMLMetadataProviderTest.obj `if test -f 'saml2/metadata/XMLMetadataProviderTest.cpp'; then $(CYGPATH_W) 'saml2/metadata/XMLMetadataProviderTest.cpp'; else $(CYGPATH_W) '$(srcdir)/saml2/metadata/XMLMetadataProviderTest.cpp'; fi`
@am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/samltest-XMLMetadataProviderTest.Tpo $(DEPDIR)/samltest-XMLMetadataProviderTest.Po
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='saml2/metadata/XMLMetadataProviderTest.cpp' object='samltest-XMLMetadataProviderTest.obj' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(samltest_CXXFLAGS) $(CXXFLAGS) -c -o samltest-XMLMetadataProviderTest.obj `if test -f 'saml2/metadata/XMLMetadataProviderTest.cpp'; then $(CYGPATH_W) 'saml2/metadata/XMLMetadataProviderTest.cpp'; else $(CYGPATH_W) '$(srcdir)/saml2/metadata/XMLMetadataProviderTest.cpp'; fi`
samltest-SAML2PolicyTest.o: saml2/profile/SAML2PolicyTest.cpp
@am__fastdepCXX_TRUE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(samltest_CXXFLAGS) $(CXXFLAGS) -MT samltest-SAML2PolicyTest.o -MD -MP -MF $(DEPDIR)/samltest-SAML2PolicyTest.Tpo -c -o samltest-SAML2PolicyTest.o `test -f 'saml2/profile/SAML2PolicyTest.cpp' || echo '$(srcdir)/'`saml2/profile/SAML2PolicyTest.cpp
@am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/samltest-SAML2PolicyTest.Tpo $(DEPDIR)/samltest-SAML2PolicyTest.Po
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='saml2/profile/SAML2PolicyTest.cpp' object='samltest-SAML2PolicyTest.o' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(samltest_CXXFLAGS) $(CXXFLAGS) -c -o samltest-SAML2PolicyTest.o `test -f 'saml2/profile/SAML2PolicyTest.cpp' || echo '$(srcdir)/'`saml2/profile/SAML2PolicyTest.cpp
samltest-SAML2PolicyTest.obj: saml2/profile/SAML2PolicyTest.cpp
@am__fastdepCXX_TRUE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(samltest_CXXFLAGS) $(CXXFLAGS) -MT samltest-SAML2PolicyTest.obj -MD -MP -MF $(DEPDIR)/samltest-SAML2PolicyTest.Tpo -c -o samltest-SAML2PolicyTest.obj `if test -f 'saml2/profile/SAML2PolicyTest.cpp'; then $(CYGPATH_W) 'saml2/profile/SAML2PolicyTest.cpp'; else $(CYGPATH_W) '$(srcdir)/saml2/profile/SAML2PolicyTest.cpp'; fi`
@am__fastdepCXX_TRUE@ $(am__mv) $(DEPDIR)/samltest-SAML2PolicyTest.Tpo $(DEPDIR)/samltest-SAML2PolicyTest.Po
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ source='saml2/profile/SAML2PolicyTest.cpp' object='samltest-SAML2PolicyTest.obj' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@ $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(samltest_CXXFLAGS) $(CXXFLAGS) -c -o samltest-SAML2PolicyTest.obj `if test -f 'saml2/profile/SAML2PolicyTest.cpp'; then $(CYGPATH_W) 'saml2/profile/SAML2PolicyTest.cpp'; else $(CYGPATH_W) '$(srcdir)/saml2/profile/SAML2PolicyTest.cpp'; fi`
mostlyclean-libtool:
-rm -f *.lo
clean-libtool:
-rm -rf .libs _libs
ID: $(HEADERS) $(SOURCES) $(LISP) $(TAGS_FILES)
list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \
unique=`for i in $$list; do \
if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \
done | \
$(AWK) '{ files[$$0] = 1; nonempty = 1; } \
END { if (nonempty) { for (i in files) print i; }; }'`; \
mkid -fID $$unique
tags: TAGS
TAGS: $(HEADERS) $(SOURCES) $(TAGS_DEPENDENCIES) \
$(TAGS_FILES) $(LISP)
set x; \
here=`pwd`; \
list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \
unique=`for i in $$list; do \
if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \
done | \
$(AWK) '{ files[$$0] = 1; nonempty = 1; } \
END { if (nonempty) { for (i in files) print i; }; }'`; \
shift; \
if test -z "$(ETAGS_ARGS)$$*$$unique"; then :; else \
test -n "$$unique" || unique=$$empty_fix; \
if test $$# -gt 0; then \
$(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \
"$$@" $$unique; \
else \
$(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \
$$unique; \
fi; \
fi
ctags: CTAGS
CTAGS: $(HEADERS) $(SOURCES) $(TAGS_DEPENDENCIES) \
$(TAGS_FILES) $(LISP)
list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \
unique=`for i in $$list; do \
if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \
done | \
$(AWK) '{ files[$$0] = 1; nonempty = 1; } \
END { if (nonempty) { for (i in files) print i; }; }'`; \
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: $(HEADERS) $(SOURCES) $(LISP)
list='$(SOURCES) $(HEADERS) $(LISP)'; \
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
check: $(BUILT_SOURCES)
$(MAKE) $(AM_MAKEFLAGS) check-am
all-am: Makefile $(PROGRAMS) $(HEADERS)
installdirs:
for dir in "$(DESTDIR)$(bindir)"; do \
test -z "$$dir" || $(MKDIR_P) "$$dir"; \
done
install: $(BUILT_SOURCES)
$(MAKE) $(AM_MAKEFLAGS) install-am
install-exec: install-exec-am
install-data: install-data-am
uninstall: uninstall-am
install-am: all-am
@$(MAKE) $(AM_MAKEFLAGS) install-exec-am install-data-am
installcheck: installcheck-am
install-strip:
if test -z '$(STRIP)'; then \
$(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \
install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \
install; \
else \
$(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \
install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \
"INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'" install; \
fi
mostlyclean-generic:
clean-generic:
-test -z "$(CLEANFILES)" || rm -f $(CLEANFILES)
distclean-generic:
-test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES)
-test . = "$(srcdir)" || test -z "$(CONFIG_CLEAN_VPATH_FILES)" || rm -f $(CONFIG_CLEAN_VPATH_FILES)
maintainer-clean-generic:
@echo "This command is intended for maintainers to use"
@echo "it deletes files that may require special tools to rebuild."
-test -z "$(BUILT_SOURCES)" || rm -f $(BUILT_SOURCES)
clean: clean-am
clean-am: clean-binPROGRAMS clean-generic clean-libtool mostlyclean-am
distclean: distclean-am
-rm -rf ./$(DEPDIR)
-rm -f Makefile
distclean-am: clean-am distclean-compile distclean-generic \
distclean-tags
dvi: dvi-am
dvi-am:
html: html-am
html-am:
info: info-am
info-am:
install-data-am:
install-dvi: install-dvi-am
install-dvi-am:
install-exec-am: install-binPROGRAMS
install-html: install-html-am
install-html-am:
install-info: install-info-am
install-info-am:
install-man:
install-pdf: install-pdf-am
install-pdf-am:
install-ps: install-ps-am
install-ps-am:
installcheck-am:
maintainer-clean: maintainer-clean-am
-rm -rf ./$(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-binPROGRAMS
.MAKE: all check install install-am install-strip
.PHONY: CTAGS GTAGS all all-am check check-am clean clean-binPROGRAMS \
clean-generic clean-libtool cscopelist ctags distclean \
distclean-compile distclean-generic distclean-libtool \
distclean-tags distdir dvi dvi-am html html-am info info-am \
install install-am install-binPROGRAMS install-data \
install-data-am install-dvi install-dvi-am install-exec \
install-exec-am install-html install-html-am install-info \
install-info-am install-man install-pdf install-pdf-am \
install-ps install-ps-am install-strip installcheck \
installcheck-am installdirs maintainer-clean \
maintainer-clean-generic mostlyclean mostlyclean-compile \
mostlyclean-generic mostlyclean-libtool pdf pdf-am ps ps-am \
tags uninstall uninstall-am uninstall-binPROGRAMS
do-cxxtestgen:
if test "$(CPPFILE)" = "samltest.cpp"; then \
$(CXXTEST) --error-printer --have-eh --have-std --abort-on-fail -o $(CPPFILE) $(HFILE); \
else \
$(CXXTEST) --part --have-eh --have-std --abort-on-fail -o $(CPPFILE) $(HFILE); \
fi;
$(nodist_samltest_SOURCES): %.cpp: %.h
$(MAKE) do-cxxtestgen HFILE=$< CPPFILE=$@
# 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:
|