1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 1468 1469 1470 1471 1472 1473 1474 1475 1476 1477 1478 1479 1480 1481 1482 1483 1484 1485 1486 1487 1488 1489 1490 1491 1492 1493 1494 1495 1496 1497 1498 1499 1500 1501 1502 1503 1504 1505 1506 1507 1508 1509 1510 1511 1512 1513 1514 1515 1516 1517 1518 1519 1520 1521 1522 1523 1524 1525 1526 1527 1528 1529 1530 1531 1532 1533 1534 1535 1536 1537 1538 1539 1540 1541 1542 1543 1544 1545 1546 1547 1548 1549 1550 1551 1552 1553 1554 1555 1556 1557 1558 1559 1560 1561 1562 1563 1564 1565 1566 1567 1568 1569 1570 1571 1572 1573 1574 1575 1576 1577 1578 1579 1580 1581 1582 1583 1584 1585 1586 1587 1588 1589 1590 1591 1592 1593 1594 1595 1596 1597 1598 1599 1600 1601 1602 1603 1604 1605 1606 1607 1608 1609 1610 1611 1612 1613 1614 1615 1616 1617 1618 1619 1620 1621 1622 1623 1624 1625 1626 1627 1628 1629 1630 1631 1632 1633 1634 1635 1636 1637 1638 1639 1640 1641 1642 1643 1644 1645 1646 1647 1648 1649 1650 1651 1652 1653 1654 1655 1656 1657 1658 1659 1660 1661 1662 1663 1664 1665 1666 1667 1668 1669 1670 1671 1672 1673 1674 1675 1676 1677 1678 1679 1680 1681 1682 1683 1684 1685 1686 1687 1688 1689 1690 1691 1692 1693 1694 1695 1696 1697 1698 1699 1700 1701 1702 1703 1704 1705 1706 1707 1708 1709 1710 1711 1712 1713 1714 1715 1716 1717 1718 1719 1720 1721 1722 1723 1724 1725 1726 1727 1728 1729 1730 1731 1732 1733 1734 1735 1736 1737 1738 1739 1740 1741 1742 1743 1744 1745 1746 1747 1748 1749 1750 1751 1752 1753 1754 1755 1756 1757 1758 1759 1760 1761 1762 1763 1764 1765 1766 1767 1768 1769 1770 1771 1772 1773 1774 1775 1776 1777 1778 1779 1780 1781 1782 1783 1784 1785 1786 1787 1788 1789 1790 1791 1792 1793 1794 1795 1796 1797 1798 1799 1800 1801 1802 1803 1804 1805 1806 1807 1808 1809 1810 1811 1812 1813 1814 1815 1816 1817 1818 1819 1820 1821 1822 1823 1824 1825 1826 1827 1828 1829 1830 1831 1832 1833 1834 1835 1836 1837 1838 1839 1840 1841 1842 1843 1844 1845 1846 1847 1848 1849 1850 1851 1852 1853 1854 1855 1856 1857 1858 1859 1860 1861 1862 1863 1864 1865 1866 1867 1868 1869 1870 1871 1872 1873 1874 1875 1876 1877 1878 1879 1880 1881 1882 1883 1884 1885 1886 1887 1888 1889 1890 1891 1892 1893 1894 1895 1896 1897 1898 1899 1900 1901 1902 1903 1904 1905 1906 1907 1908 1909 1910 1911 1912 1913 1914 1915 1916 1917 1918 1919 1920 1921 1922 1923 1924 1925 1926 1927 1928 1929 1930 1931 1932 1933 1934 1935 1936 1937 1938 1939 1940 1941 1942 1943 1944 1945 1946 1947 1948 1949 1950 1951 1952 1953 1954 1955 1956 1957 1958 1959 1960 1961 1962 1963 1964 1965 1966 1967 1968 1969 1970 1971 1972 1973 1974 1975 1976 1977 1978 1979 1980 1981 1982 1983 1984 1985 1986 1987 1988 1989 1990 1991 1992 1993 1994 1995 1996 1997 1998 1999 2000 2001 2002 2003 2004 2005 2006 2007 2008 2009 2010 2011 2012 2013 2014 2015 2016 2017 2018 2019 2020 2021 2022 2023 2024 2025 2026 2027 2028 2029 2030 2031 2032 2033 2034 2035 2036 2037 2038 2039 2040 2041 2042 2043 2044 2045 2046 2047 2048 2049 2050 2051 2052 2053 2054 2055 2056 2057 2058 2059 2060 2061 2062 2063 2064 2065 2066 2067 2068 2069 2070 2071 2072 2073 2074 2075 2076 2077 2078 2079 2080 2081 2082 2083 2084 2085 2086 2087 2088 2089 2090 2091 2092 2093 2094 2095 2096 2097 2098 2099 2100 2101 2102 2103 2104 2105 2106 2107 2108 2109 2110 2111 2112 2113 2114 2115 2116 2117 2118 2119 2120 2121 2122 2123 2124 2125 2126 2127 2128 2129 2130 2131 2132 2133 2134 2135 2136 2137 2138 2139 2140 2141 2142 2143 2144 2145 2146 2147 2148 2149 2150 2151 2152 2153 2154 2155 2156 2157 2158 2159 2160 2161 2162 2163 2164 2165 2166 2167 2168 2169 2170 2171 2172 2173 2174 2175 2176 2177 2178 2179 2180 2181 2182 2183 2184 2185 2186 2187 2188 2189 2190 2191 2192 2193 2194 2195 2196 2197 2198 2199 2200 2201 2202 2203 2204 2205 2206 2207 2208 2209 2210 2211 2212 2213 2214 2215 2216 2217 2218 2219 2220 2221 2222 2223 2224 2225 2226 2227 2228 2229 2230 2231 2232 2233 2234 2235 2236 2237 2238 2239 2240 2241 2242 2243 2244 2245 2246 2247 2248 2249 2250 2251 2252 2253 2254 2255 2256 2257 2258 2259 2260 2261 2262 2263 2264 2265 2266 2267 2268 2269 2270 2271 2272 2273 2274 2275 2276 2277 2278 2279 2280 2281 2282 2283 2284 2285 2286 2287 2288 2289 2290 2291 2292 2293 2294 2295 2296 2297 2298 2299 2300 2301 2302 2303 2304 2305 2306 2307 2308 2309 2310 2311 2312 2313 2314 2315 2316 2317 2318 2319 2320 2321 2322 2323 2324 2325 2326 2327 2328 2329 2330 2331 2332 2333 2334 2335 2336 2337 2338 2339 2340 2341 2342 2343 2344 2345 2346 2347 2348 2349 2350 2351 2352 2353 2354 2355 2356 2357 2358 2359 2360 2361 2362 2363 2364 2365 2366 2367 2368 2369 2370 2371 2372 2373 2374 2375 2376 2377 2378 2379 2380 2381 2382 2383 2384 2385 2386 2387 2388 2389 2390 2391 2392 2393 2394 2395 2396 2397 2398 2399 2400 2401 2402 2403 2404 2405 2406 2407 2408 2409 2410 2411 2412 2413 2414 2415 2416 2417 2418 2419 2420 2421 2422 2423 2424 2425 2426 2427 2428 2429 2430 2431 2432 2433 2434 2435 2436 2437 2438 2439 2440 2441 2442 2443 2444 2445 2446 2447 2448 2449 2450 2451 2452 2453 2454 2455 2456 2457 2458 2459 2460 2461 2462 2463 2464 2465 2466 2467 2468 2469 2470 2471 2472 2473 2474 2475 2476 2477 2478 2479 2480 2481 2482 2483 2484 2485 2486 2487 2488 2489 2490 2491 2492 2493 2494 2495 2496 2497 2498 2499 2500 2501 2502 2503 2504 2505 2506 2507 2508 2509 2510 2511 2512 2513 2514 2515 2516 2517 2518 2519 2520 2521 2522 2523 2524 2525 2526 2527 2528 2529 2530 2531 2532 2533 2534 2535 2536 2537 2538 2539 2540 2541 2542 2543 2544 2545 2546 2547 2548 2549 2550 2551 2552 2553 2554 2555 2556 2557 2558 2559 2560 2561 2562 2563 2564 2565 2566 2567 2568 2569 2570 2571 2572 2573 2574 2575 2576 2577 2578 2579 2580 2581 2582 2583 2584 2585 2586 2587 2588 2589 2590 2591 2592 2593 2594 2595 2596 2597 2598 2599 2600 2601 2602 2603 2604 2605 2606 2607 2608 2609 2610 2611 2612 2613 2614 2615 2616 2617 2618 2619 2620 2621 2622 2623 2624 2625 2626 2627 2628 2629 2630 2631 2632 2633 2634 2635 2636 2637 2638 2639 2640 2641 2642 2643 2644 2645 2646 2647 2648 2649 2650 2651 2652 2653 2654 2655 2656 2657 2658 2659 2660 2661 2662 2663 2664 2665 2666 2667 2668 2669 2670 2671 2672 2673 2674 2675 2676 2677 2678 2679 2680 2681 2682 2683 2684 2685 2686 2687 2688 2689 2690 2691 2692 2693 2694 2695 2696 2697 2698 2699 2700 2701 2702 2703 2704 2705 2706 2707 2708 2709 2710 2711 2712 2713 2714 2715 2716 2717 2718 2719 2720 2721 2722 2723 2724 2725 2726 2727 2728 2729 2730 2731 2732 2733 2734 2735 2736 2737 2738 2739 2740 2741 2742 2743 2744 2745 2746 2747 2748 2749 2750 2751 2752 2753 2754 2755 2756 2757 2758 2759 2760 2761 2762 2763 2764 2765 2766 2767 2768 2769 2770 2771 2772 2773 2774 2775 2776 2777 2778 2779 2780 2781 2782 2783 2784 2785 2786 2787 2788 2789 2790 2791 2792 2793 2794 2795 2796 2797 2798 2799 2800 2801 2802 2803 2804 2805 2806 2807 2808 2809 2810 2811 2812 2813 2814 2815 2816 2817 2818 2819 2820 2821 2822 2823 2824 2825 2826 2827 2828 2829 2830 2831 2832 2833 2834 2835 2836 2837 2838 2839 2840 2841 2842 2843 2844 2845 2846 2847 2848 2849 2850 2851 2852 2853 2854 2855 2856 2857 2858 2859 2860 2861 2862 2863 2864 2865 2866 2867 2868 2869 2870 2871 2872 2873 2874 2875 2876 2877 2878 2879 2880 2881 2882 2883 2884 2885 2886 2887 2888 2889 2890 2891 2892 2893 2894 2895 2896 2897 2898 2899 2900 2901 2902 2903 2904 2905 2906 2907 2908 2909 2910 2911 2912 2913 2914 2915 2916 2917 2918 2919 2920 2921 2922 2923 2924 2925 2926 2927 2928 2929 2930 2931 2932 2933 2934 2935 2936 2937 2938 2939 2940 2941 2942 2943 2944 2945 2946 2947 2948 2949 2950 2951 2952 2953 2954 2955 2956 2957 2958 2959 2960 2961 2962 2963 2964 2965 2966 2967 2968 2969 2970 2971 2972 2973 2974 2975 2976 2977 2978 2979 2980 2981 2982 2983 2984 2985 2986 2987 2988 2989 2990 2991 2992 2993 2994 2995 2996 2997 2998 2999 3000 3001 3002 3003 3004 3005 3006 3007 3008 3009 3010 3011 3012 3013 3014 3015 3016 3017 3018 3019 3020 3021 3022 3023 3024 3025 3026 3027 3028 3029 3030 3031 3032 3033 3034 3035 3036 3037 3038 3039 3040 3041 3042 3043 3044 3045 3046 3047 3048 3049 3050 3051 3052 3053 3054 3055 3056 3057 3058 3059 3060 3061 3062 3063 3064 3065 3066 3067 3068 3069 3070 3071 3072 3073 3074 3075 3076 3077 3078 3079 3080 3081 3082 3083 3084 3085 3086 3087 3088 3089 3090 3091 3092 3093 3094 3095 3096 3097 3098 3099 3100 3101 3102 3103 3104 3105 3106 3107 3108 3109 3110 3111 3112 3113 3114 3115 3116 3117 3118 3119 3120 3121 3122 3123 3124 3125 3126 3127 3128 3129 3130 3131 3132 3133 3134 3135 3136 3137 3138 3139 3140 3141 3142 3143 3144 3145 3146 3147 3148 3149 3150 3151 3152 3153 3154 3155 3156 3157 3158 3159 3160 3161 3162 3163 3164 3165 3166 3167 3168 3169 3170 3171 3172 3173 3174 3175 3176 3177 3178 3179 3180 3181 3182 3183 3184 3185 3186 3187 3188 3189 3190 3191 3192 3193 3194 3195 3196 3197 3198 3199 3200 3201 3202 3203 3204 3205 3206 3207 3208 3209 3210 3211 3212 3213 3214 3215 3216 3217 3218 3219 3220 3221 3222 3223 3224
|
# Makefile.in generated by automake 1.17 from Makefile.am.
# @configure_input@
# Copyright (C) 1994-2024 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__is_gnu_make = { \
if test -z '$(MAKELEVEL)'; then \
false; \
elif test -n '$(MAKE_HOST)'; then \
true; \
elif test -n '$(MAKE_VERSION)' && test -n '$(CURDIR)'; then \
true; \
else \
false; \
fi; \
}
am__make_running_with_option = \
case $${target_option-} in \
?) ;; \
*) echo "am__make_running_with_option: internal error: invalid" \
"target option '$${target_option-}' specified" >&2; \
exit 1;; \
esac; \
has_opt=no; \
sane_makeflags=$$MAKEFLAGS; \
if $(am__is_gnu_make); then \
sane_makeflags=$$MFLAGS; \
else \
case $$MAKEFLAGS in \
*\\[\ \ ]*) \
bs=\\; \
sane_makeflags=`printf '%s\n' "$$MAKEFLAGS" \
| sed "s/$$bs$$bs[$$bs $$bs ]*//g"`;; \
esac; \
fi; \
skip_next=no; \
strip_trailopt () \
{ \
flg=`printf '%s\n' "$$flg" | sed "s/$$1.*$$//"`; \
}; \
for flg in $$sane_makeflags; do \
test $$skip_next = yes && { skip_next=no; continue; }; \
case $$flg in \
*=*|--*) continue;; \
-*I) strip_trailopt 'I'; skip_next=yes;; \
-*I?*) strip_trailopt 'I';; \
-*O) strip_trailopt 'O'; skip_next=yes;; \
-*O?*) strip_trailopt 'O';; \
-*l) strip_trailopt 'l'; skip_next=yes;; \
-*l?*) strip_trailopt 'l';; \
-[dEDm]) skip_next=yes;; \
-[JT]) skip_next=yes;; \
esac; \
case $$flg in \
*$$target_option*) has_opt=yes; break;; \
esac; \
done; \
test $$has_opt = yes
am__make_dryrun = (target_option=n; $(am__make_running_with_option))
am__make_keepgoing = (target_option=k; $(am__make_running_with_option))
am__rm_f = rm -f $(am__rm_f_notfound)
am__rm_rf = rm -rf $(am__rm_f_notfound)
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@
TESTS = samltest$(EXEEXT)
check_PROGRAMS = samltest$(EXEEXT)
subdir = samltest
ACLOCAL_M4 = $(top_srcdir)/aclocal.m4
am__aclocal_m4_deps = $(top_srcdir)/m4/acinclude.m4 \
$(top_srcdir)/m4/ax_pkg_check_modules.m4 \
$(top_srcdir)/m4/ax_pthread.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)
DIST_COMMON = $(srcdir)/Makefile.am $(noinst_HEADERS) \
$(am__DIST_COMMON)
mkinstalldirs = $(install_sh) -d
CONFIG_HEADER = $(top_builddir)/config.h
CONFIG_CLEAN_FILES =
CONFIG_CLEAN_VPATH_FILES =
am__dirstamp = $(am__leading_dot)dirstamp
am__objects_1 = samltest-SAMLArtifactCreationTest.$(OBJEXT) \
samltest-SAMLArtifactType0001Test.$(OBJEXT) \
samltest-SAMLArtifactType0002Test.$(OBJEXT) \
samltest-SAMLArtifactType0004Test.$(OBJEXT) \
samltest-ArtifactMapTest.$(OBJEXT) \
samltest-CookieTest.$(OBJEXT) \
encryption/samltest-EncryptedAssertionTest.$(OBJEXT) \
signature/samltest-SAML1AssertionTest.$(OBJEXT) \
signature/samltest-SAML1RequestTest.$(OBJEXT) \
signature/samltest-SAML1ResponseTest.$(OBJEXT) \
signature/samltest-SAML2AssertionTest.$(OBJEXT) \
security/samltest-ExplicitKeyTrustEngineTest.$(OBJEXT) \
security/samltest-StaticPKIXTrustEngineTest.$(OBJEXT) \
saml1/core/impl/samltest-ActionTest.$(OBJEXT) \
saml1/core/impl/samltest-AdviceTest.$(OBJEXT) \
saml1/core/impl/samltest-AssertionIDReferenceTest.$(OBJEXT) \
saml1/core/impl/samltest-AssertionTest.$(OBJEXT) \
saml1/core/impl/samltest-AttributeDesignatorTest.$(OBJEXT) \
saml1/core/impl/samltest-AttributeStatementTest.$(OBJEXT) \
saml1/core/impl/samltest-AttributeTest.$(OBJEXT) \
saml1/core/impl/samltest-AudienceRestrictionConditionTest.$(OBJEXT) \
saml1/core/impl/samltest-AudienceTest.$(OBJEXT) \
saml1/core/impl/samltest-AuthenticationStatementTest.$(OBJEXT) \
saml1/binding/samltest-SAML1ArtifactTest.$(OBJEXT) \
saml1/binding/samltest-SAML1POSTTest.$(OBJEXT) \
saml1/profile/samltest-SAML1PolicyTest.$(OBJEXT) \
saml2/core/impl/samltest-Action20Test.$(OBJEXT) \
saml2/core/impl/samltest-Advice20Test.$(OBJEXT) \
saml2/core/impl/samltest-Artifact20Test.$(OBJEXT) \
saml2/core/impl/samltest-ArtifactResolve20Test.$(OBJEXT) \
saml2/core/impl/samltest-ArtifactResponse20Test.$(OBJEXT) \
saml2/core/impl/samltest-Assertion20Test.$(OBJEXT) \
saml2/core/impl/samltest-AssertionIDRef20Test.$(OBJEXT) \
saml2/core/impl/samltest-AssertionIDRequest20Test.$(OBJEXT) \
saml2/core/impl/samltest-AssertionURIRef20Test.$(OBJEXT) \
saml2/core/impl/samltest-Attribute20Test.$(OBJEXT) \
saml2/core/impl/samltest-AttributeQuery20Test.$(OBJEXT) \
saml2/core/impl/samltest-AttributeStatement20Test.$(OBJEXT) \
saml2/core/impl/samltest-Audience20Test.$(OBJEXT) \
saml2/core/impl/samltest-AudienceRestriction20Test.$(OBJEXT) \
saml2/core/impl/samltest-AuthenticatingAuthority20Test.$(OBJEXT) \
saml2/core/impl/samltest-AuthnContext20Test.$(OBJEXT) \
saml2/core/impl/samltest-AuthnContextClassRef20Test.$(OBJEXT) \
saml2/core/impl/samltest-AuthnContextDeclRef20Test.$(OBJEXT) \
saml2/core/impl/samltest-AuthnQuery20Test.$(OBJEXT) \
saml2/core/impl/samltest-AuthnRequest20Test.$(OBJEXT) \
saml2/core/impl/samltest-AuthnStatement20Test.$(OBJEXT) \
saml2/core/impl/samltest-AuthzDecisionQuery20Test.$(OBJEXT) \
saml2/core/impl/samltest-AuthzDecisionStatement20Test.$(OBJEXT) \
saml2/core/impl/samltest-Conditions20Test.$(OBJEXT) \
saml2/core/impl/samltest-Evidence20Test.$(OBJEXT) \
saml2/core/impl/samltest-GetComplete20Test.$(OBJEXT) \
saml2/core/impl/samltest-IDPEntry20Test.$(OBJEXT) \
saml2/core/impl/samltest-IDPList20Test.$(OBJEXT) \
saml2/core/impl/samltest-Issuer20Test.$(OBJEXT) \
saml2/core/impl/samltest-KeyInfoConfirmationDataType20Test.$(OBJEXT) \
saml2/core/impl/samltest-LogoutRequest20Test.$(OBJEXT) \
saml2/core/impl/samltest-LogoutResponse20Test.$(OBJEXT) \
saml2/core/impl/samltest-ManageNameIDRequest20Test.$(OBJEXT) \
saml2/core/impl/samltest-ManageNameIDResponse20Test.$(OBJEXT) \
saml2/core/impl/samltest-NameIDMappingRequest20Test.$(OBJEXT) \
saml2/core/impl/samltest-NameIDMappingResponse20Test.$(OBJEXT) \
saml2/core/impl/samltest-NameIDPolicy20Test.$(OBJEXT) \
saml2/core/impl/samltest-NameID20Test.$(OBJEXT) \
saml2/core/impl/samltest-NameIDType20Test.$(OBJEXT) \
saml2/core/impl/samltest-NewEncryptedID20Test.$(OBJEXT) \
saml2/core/impl/samltest-NewID20Test.$(OBJEXT) \
saml2/core/impl/samltest-OneTimeUse20Test.$(OBJEXT) \
saml2/core/impl/samltest-ProxyRestriction20Test.$(OBJEXT) \
saml2/core/impl/samltest-RequesterID20Test.$(OBJEXT) \
saml2/core/impl/samltest-RequestedAuthnContext20Test.$(OBJEXT) \
saml2/core/impl/samltest-Response20Test.$(OBJEXT) \
saml2/core/impl/samltest-Scoping20Test.$(OBJEXT) \
saml2/core/impl/samltest-SessionIndex20Test.$(OBJEXT) \
saml2/core/impl/samltest-Status20Test.$(OBJEXT) \
saml2/core/impl/samltest-StatusCode20Test.$(OBJEXT) \
saml2/core/impl/samltest-StatusDetail20Test.$(OBJEXT) \
saml2/core/impl/samltest-StatusMessage20Test.$(OBJEXT) \
saml2/core/impl/samltest-Subject20Test.$(OBJEXT) \
saml2/core/impl/samltest-SubjectConfirmation20Test.$(OBJEXT) \
saml2/core/impl/samltest-SubjectConfirmationData20Test.$(OBJEXT) \
saml2/core/impl/samltest-SubjectLocality20Test.$(OBJEXT) \
saml2/core/impl/samltest-Terminate20Test.$(OBJEXT) \
saml2/binding/samltest-SAML2ArtifactTest.$(OBJEXT) \
saml2/binding/samltest-SAML2POSTTest.$(OBJEXT) \
saml2/binding/samltest-SAML2RedirectTest.$(OBJEXT) \
saml2/metadata/samltest-XMLMetadataProviderTest.$(OBJEXT) \
saml2/profile/samltest-SAML2PolicyTest.$(OBJEXT)
nodist_samltest_OBJECTS = $(am__objects_1) samltest-samltest.$(OBJEXT)
samltest_OBJECTS = $(nodist_samltest_OBJECTS)
am__DEPENDENCIES_1 =
samltest_DEPENDENCIES = $(top_builddir)/saml/libsaml.la \
$(am__DEPENDENCIES_1) $(am__DEPENDENCIES_1) \
$(am__DEPENDENCIES_1)
AM_V_lt = $(am__v_lt_@AM_V@)
am__v_lt_ = $(am__v_lt_@AM_DEFAULT_V@)
am__v_lt_0 = --silent
am__v_lt_1 =
samltest_LINK = $(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) \
$(LIBTOOLFLAGS) --mode=link $(CXXLD) $(samltest_CXXFLAGS) \
$(CXXFLAGS) $(AM_LDFLAGS) $(LDFLAGS) -o $@
AM_V_P = $(am__v_P_@AM_V@)
am__v_P_ = $(am__v_P_@AM_DEFAULT_V@)
am__v_P_0 = false
am__v_P_1 = :
AM_V_GEN = $(am__v_GEN_@AM_V@)
am__v_GEN_ = $(am__v_GEN_@AM_DEFAULT_V@)
am__v_GEN_0 = @echo " GEN " $@;
am__v_GEN_1 =
AM_V_at = $(am__v_at_@AM_V@)
am__v_at_ = $(am__v_at_@AM_DEFAULT_V@)
am__v_at_0 = @
am__v_at_1 =
DEFAULT_INCLUDES = -I.@am__isrc@ -I$(top_builddir)
depcomp = $(SHELL) $(top_srcdir)/build-aux/depcomp
am__maybe_remake_depfiles = depfiles
am__depfiles_remade = ./$(DEPDIR)/samltest-ArtifactMapTest.Po \
./$(DEPDIR)/samltest-CookieTest.Po \
./$(DEPDIR)/samltest-SAMLArtifactCreationTest.Po \
./$(DEPDIR)/samltest-SAMLArtifactType0001Test.Po \
./$(DEPDIR)/samltest-SAMLArtifactType0002Test.Po \
./$(DEPDIR)/samltest-SAMLArtifactType0004Test.Po \
./$(DEPDIR)/samltest-samltest.Po \
encryption/$(DEPDIR)/samltest-EncryptedAssertionTest.Po \
saml1/binding/$(DEPDIR)/samltest-SAML1ArtifactTest.Po \
saml1/binding/$(DEPDIR)/samltest-SAML1POSTTest.Po \
saml1/core/impl/$(DEPDIR)/samltest-ActionTest.Po \
saml1/core/impl/$(DEPDIR)/samltest-AdviceTest.Po \
saml1/core/impl/$(DEPDIR)/samltest-AssertionIDReferenceTest.Po \
saml1/core/impl/$(DEPDIR)/samltest-AssertionTest.Po \
saml1/core/impl/$(DEPDIR)/samltest-AttributeDesignatorTest.Po \
saml1/core/impl/$(DEPDIR)/samltest-AttributeStatementTest.Po \
saml1/core/impl/$(DEPDIR)/samltest-AttributeTest.Po \
saml1/core/impl/$(DEPDIR)/samltest-AudienceRestrictionConditionTest.Po \
saml1/core/impl/$(DEPDIR)/samltest-AudienceTest.Po \
saml1/core/impl/$(DEPDIR)/samltest-AuthenticationStatementTest.Po \
saml1/profile/$(DEPDIR)/samltest-SAML1PolicyTest.Po \
saml2/binding/$(DEPDIR)/samltest-SAML2ArtifactTest.Po \
saml2/binding/$(DEPDIR)/samltest-SAML2POSTTest.Po \
saml2/binding/$(DEPDIR)/samltest-SAML2RedirectTest.Po \
saml2/core/impl/$(DEPDIR)/samltest-Action20Test.Po \
saml2/core/impl/$(DEPDIR)/samltest-Advice20Test.Po \
saml2/core/impl/$(DEPDIR)/samltest-Artifact20Test.Po \
saml2/core/impl/$(DEPDIR)/samltest-ArtifactResolve20Test.Po \
saml2/core/impl/$(DEPDIR)/samltest-ArtifactResponse20Test.Po \
saml2/core/impl/$(DEPDIR)/samltest-Assertion20Test.Po \
saml2/core/impl/$(DEPDIR)/samltest-AssertionIDRef20Test.Po \
saml2/core/impl/$(DEPDIR)/samltest-AssertionIDRequest20Test.Po \
saml2/core/impl/$(DEPDIR)/samltest-AssertionURIRef20Test.Po \
saml2/core/impl/$(DEPDIR)/samltest-Attribute20Test.Po \
saml2/core/impl/$(DEPDIR)/samltest-AttributeQuery20Test.Po \
saml2/core/impl/$(DEPDIR)/samltest-AttributeStatement20Test.Po \
saml2/core/impl/$(DEPDIR)/samltest-Audience20Test.Po \
saml2/core/impl/$(DEPDIR)/samltest-AudienceRestriction20Test.Po \
saml2/core/impl/$(DEPDIR)/samltest-AuthenticatingAuthority20Test.Po \
saml2/core/impl/$(DEPDIR)/samltest-AuthnContext20Test.Po \
saml2/core/impl/$(DEPDIR)/samltest-AuthnContextClassRef20Test.Po \
saml2/core/impl/$(DEPDIR)/samltest-AuthnContextDeclRef20Test.Po \
saml2/core/impl/$(DEPDIR)/samltest-AuthnQuery20Test.Po \
saml2/core/impl/$(DEPDIR)/samltest-AuthnRequest20Test.Po \
saml2/core/impl/$(DEPDIR)/samltest-AuthnStatement20Test.Po \
saml2/core/impl/$(DEPDIR)/samltest-AuthzDecisionQuery20Test.Po \
saml2/core/impl/$(DEPDIR)/samltest-AuthzDecisionStatement20Test.Po \
saml2/core/impl/$(DEPDIR)/samltest-Conditions20Test.Po \
saml2/core/impl/$(DEPDIR)/samltest-Evidence20Test.Po \
saml2/core/impl/$(DEPDIR)/samltest-GetComplete20Test.Po \
saml2/core/impl/$(DEPDIR)/samltest-IDPEntry20Test.Po \
saml2/core/impl/$(DEPDIR)/samltest-IDPList20Test.Po \
saml2/core/impl/$(DEPDIR)/samltest-Issuer20Test.Po \
saml2/core/impl/$(DEPDIR)/samltest-KeyInfoConfirmationDataType20Test.Po \
saml2/core/impl/$(DEPDIR)/samltest-LogoutRequest20Test.Po \
saml2/core/impl/$(DEPDIR)/samltest-LogoutResponse20Test.Po \
saml2/core/impl/$(DEPDIR)/samltest-ManageNameIDRequest20Test.Po \
saml2/core/impl/$(DEPDIR)/samltest-ManageNameIDResponse20Test.Po \
saml2/core/impl/$(DEPDIR)/samltest-NameID20Test.Po \
saml2/core/impl/$(DEPDIR)/samltest-NameIDMappingRequest20Test.Po \
saml2/core/impl/$(DEPDIR)/samltest-NameIDMappingResponse20Test.Po \
saml2/core/impl/$(DEPDIR)/samltest-NameIDPolicy20Test.Po \
saml2/core/impl/$(DEPDIR)/samltest-NameIDType20Test.Po \
saml2/core/impl/$(DEPDIR)/samltest-NewEncryptedID20Test.Po \
saml2/core/impl/$(DEPDIR)/samltest-NewID20Test.Po \
saml2/core/impl/$(DEPDIR)/samltest-OneTimeUse20Test.Po \
saml2/core/impl/$(DEPDIR)/samltest-ProxyRestriction20Test.Po \
saml2/core/impl/$(DEPDIR)/samltest-RequestedAuthnContext20Test.Po \
saml2/core/impl/$(DEPDIR)/samltest-RequesterID20Test.Po \
saml2/core/impl/$(DEPDIR)/samltest-Response20Test.Po \
saml2/core/impl/$(DEPDIR)/samltest-Scoping20Test.Po \
saml2/core/impl/$(DEPDIR)/samltest-SessionIndex20Test.Po \
saml2/core/impl/$(DEPDIR)/samltest-Status20Test.Po \
saml2/core/impl/$(DEPDIR)/samltest-StatusCode20Test.Po \
saml2/core/impl/$(DEPDIR)/samltest-StatusDetail20Test.Po \
saml2/core/impl/$(DEPDIR)/samltest-StatusMessage20Test.Po \
saml2/core/impl/$(DEPDIR)/samltest-Subject20Test.Po \
saml2/core/impl/$(DEPDIR)/samltest-SubjectConfirmation20Test.Po \
saml2/core/impl/$(DEPDIR)/samltest-SubjectConfirmationData20Test.Po \
saml2/core/impl/$(DEPDIR)/samltest-SubjectLocality20Test.Po \
saml2/core/impl/$(DEPDIR)/samltest-Terminate20Test.Po \
saml2/metadata/$(DEPDIR)/samltest-XMLMetadataProviderTest.Po \
saml2/profile/$(DEPDIR)/samltest-SAML2PolicyTest.Po \
security/$(DEPDIR)/samltest-ExplicitKeyTrustEngineTest.Po \
security/$(DEPDIR)/samltest-StaticPKIXTrustEngineTest.Po \
signature/$(DEPDIR)/samltest-SAML1AssertionTest.Po \
signature/$(DEPDIR)/samltest-SAML1RequestTest.Po \
signature/$(DEPDIR)/samltest-SAML1ResponseTest.Po \
signature/$(DEPDIR)/samltest-SAML2AssertionTest.Po
am__mv = mv -f
CXXCOMPILE = $(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) \
$(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CXXFLAGS) $(CXXFLAGS)
LTCXXCOMPILE = $(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) \
$(LIBTOOLFLAGS) --mode=compile $(CXX) $(DEFS) \
$(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) \
$(AM_CXXFLAGS) $(CXXFLAGS)
AM_V_CXX = $(am__v_CXX_@AM_V@)
am__v_CXX_ = $(am__v_CXX_@AM_DEFAULT_V@)
am__v_CXX_0 = @echo " CXX " $@;
am__v_CXX_1 =
CXXLD = $(CXX)
CXXLINK = $(LIBTOOL) $(AM_V_lt) --tag=CXX $(AM_LIBTOOLFLAGS) \
$(LIBTOOLFLAGS) --mode=link $(CXXLD) $(AM_CXXFLAGS) \
$(CXXFLAGS) $(AM_LDFLAGS) $(LDFLAGS) -o $@
AM_V_CXXLD = $(am__v_CXXLD_@AM_V@)
am__v_CXXLD_ = $(am__v_CXXLD_@AM_DEFAULT_V@)
am__v_CXXLD_0 = @echo " CXXLD " $@;
am__v_CXXLD_1 =
SOURCES = $(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)
am__tagged_files = $(HEADERS) $(SOURCES) $(TAGS_FILES) $(LISP)
# Read a list of newline-separated strings from the standard input,
# and print each of them once, without duplicates. Input order is
# *not* preserved.
am__uniquify_input = $(AWK) '\
BEGIN { nonempty = 0; } \
{ items[$$0] = 1; nonempty = 1; } \
END { if (nonempty) { for (i in items) print i; }; } \
'
# Make sure the list of sources is unique. This is necessary because,
# e.g., the same source file might be shared among _SOURCES variables
# for different programs/libraries.
am__define_uniq_tagged_files = \
list='$(am__tagged_files)'; \
unique=`for i in $$list; do \
if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \
done | $(am__uniquify_input)`
am__tty_colors_dummy = \
mgn= red= grn= lgn= blu= brg= std=; \
am__color_tests=no
am__tty_colors = { \
$(am__tty_colors_dummy); \
if test "X$(AM_COLOR_TESTS)" = Xno; then \
am__color_tests=no; \
elif test "X$(AM_COLOR_TESTS)" = Xalways; then \
am__color_tests=yes; \
elif test "X$$TERM" != Xdumb && { test -t 1; } 2>/dev/null; then \
am__color_tests=yes; \
fi; \
if test $$am__color_tests = yes; then \
red='[0;31m'; \
grn='[0;32m'; \
lgn='[1;32m'; \
blu='[1;34m'; \
mgn='[0;35m'; \
brg='[1m'; \
std='[m'; \
fi; \
}
am__vpath_adj_setup = srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`;
am__vpath_adj = case $$p in \
$(srcdir)/*) f=`echo "$$p" | sed "s|^$$srcdirstrip/||"`;; \
*) f=$$p;; \
esac;
am__strip_dir = f=`echo $$p | sed -e 's|^.*/||'`;
am__install_max = 40
am__nobase_strip_setup = \
srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*|]/\\\\&/g'`
am__nobase_strip = \
for p in $$list; do echo "$$p"; done | sed -e "s|$$srcdirstrip/||"
am__nobase_list = $(am__nobase_strip_setup); \
for p in $$list; do echo "$$p $$p"; done | \
sed "s| $$srcdirstrip/| |;"' / .*\//!s/ .*/ ./; s,\( .*\)/[^/]*$$,\1,' | \
$(AWK) 'BEGIN { files["."] = "" } { files[$$2] = files[$$2] " " $$1; \
if (++n[$$2] == $(am__install_max)) \
{ print $$2, files[$$2]; n[$$2] = 0; files[$$2] = "" } } \
END { for (dir in files) print dir, files[dir] }'
am__base_list = \
sed '$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;s/\n/ /g' | \
sed '$$!N;$$!N;$$!N;$$!N;s/\n/ /g'
am__uninstall_files_from_dir = { \
{ test ! -d "$$dir" && test ! -f "$$dir" && test ! -r "$$dir"; } \
|| { echo " ( cd '$$dir' && rm -f" $$files ")"; \
$(am__cd) "$$dir" && echo $$files | $(am__xargs_n) 40 $(am__rm_f); }; \
}
am__recheck_rx = ^[ ]*:recheck:[ ]*
am__global_test_result_rx = ^[ ]*:global-test-result:[ ]*
am__copy_in_global_log_rx = ^[ ]*:copy-in-global-log:[ ]*
# A command that, given a newline-separated list of test names on the
# standard input, print the name of the tests that are to be re-run
# upon "make recheck".
am__list_recheck_tests = $(AWK) '{ \
recheck = 1; \
while ((rc = (getline line < ($$0 ".trs"))) != 0) \
{ \
if (rc < 0) \
{ \
if ((getline line2 < ($$0 ".log")) < 0) \
recheck = 0; \
break; \
} \
else if (line ~ /$(am__recheck_rx)[nN][Oo]/) \
{ \
recheck = 0; \
break; \
} \
else if (line ~ /$(am__recheck_rx)[yY][eE][sS]/) \
{ \
break; \
} \
}; \
if (recheck) \
print $$0; \
close ($$0 ".trs"); \
close ($$0 ".log"); \
}'
# A command that, given a newline-separated list of test names on the
# standard input, create the global log from their .trs and .log files.
am__create_global_log = $(AWK) ' \
function fatal(msg) \
{ \
print "fatal: making $@: " msg | "cat >&2"; \
exit 1; \
} \
function rst_section(header) \
{ \
print header; \
len = length(header); \
for (i = 1; i <= len; i = i + 1) \
printf "="; \
printf "\n\n"; \
} \
{ \
copy_in_global_log = 1; \
global_test_result = "RUN"; \
while ((rc = (getline line < ($$0 ".trs"))) != 0) \
{ \
if (rc < 0) \
fatal("failed to read from " $$0 ".trs"); \
if (line ~ /$(am__global_test_result_rx)/) \
{ \
sub("$(am__global_test_result_rx)", "", line); \
sub("[ ]*$$", "", line); \
global_test_result = line; \
} \
else if (line ~ /$(am__copy_in_global_log_rx)[nN][oO]/) \
copy_in_global_log = 0; \
}; \
if (copy_in_global_log) \
{ \
rst_section(global_test_result ": " $$0); \
while ((rc = (getline line < ($$0 ".log"))) != 0) \
{ \
if (rc < 0) \
fatal("failed to read from " $$0 ".log"); \
print line; \
}; \
printf "\n"; \
}; \
close ($$0 ".trs"); \
close ($$0 ".log"); \
}'
# Restructured Text title.
am__rst_title = { sed 's/.*/ & /;h;s/./=/g;p;x;s/ *$$//;p;g' && echo; }
# Solaris 10 'make', and several other traditional 'make' implementations,
# pass "-e" to $(SHELL), and POSIX 2008 even requires this. Work around it
# by disabling -e (using the XSI extension "set +e") if it's set.
am__sh_e_setup = case $$- in *e*) set +e;; esac
# Default flags passed to test drivers.
am__common_driver_flags = \
--color-tests "$$am__color_tests" \
$$am__collect_skipped_logs \
--enable-hard-errors "$$am__enable_hard_errors" \
--expect-failure "$$am__expect_failure"
# To be inserted before the command running the test. Creates the
# directory for the log if needed. Stores in $dir the directory
# containing $f, in $tst the test, in $log the log. Executes the
# developer- defined test setup AM_TESTS_ENVIRONMENT (if any), and
# passes TESTS_ENVIRONMENT. Set up options for the wrapper that
# will run the test scripts (or their associated LOG_COMPILER, if
# thy have one).
am__check_pre = \
$(am__sh_e_setup); \
$(am__vpath_adj_setup) $(am__vpath_adj) \
$(am__tty_colors); \
srcdir=$(srcdir); export srcdir; \
case "$@" in \
*/*) am__odir=`echo "./$@" | sed 's|/[^/]*$$||'`;; \
*) am__odir=.;; \
esac; \
test "x$$am__odir" = x"." || test -d "$$am__odir" \
|| $(MKDIR_P) "$$am__odir" || exit $$?; \
if test -f "./$$f"; then dir=./; \
elif test -f "$$f"; then dir=; \
else dir="$(srcdir)/"; fi; \
tst=$$dir$$f; log='$@'; \
if test -n '$(IGNORE_SKIPPED_LOGS)'; then \
am__collect_skipped_logs='--collect-skipped-logs no'; \
else \
am__collect_skipped_logs=''; \
fi; \
if test -n '$(DISABLE_HARD_ERRORS)'; then \
am__enable_hard_errors=no; \
else \
am__enable_hard_errors=yes; \
fi; \
case " $(XFAIL_TESTS) " in \
*[\ \ ]$$f[\ \ ]* | *[\ \ ]$$dir$$f[\ \ ]*) \
am__expect_failure=yes;; \
*) \
am__expect_failure=no;; \
esac; \
$(AM_TESTS_ENVIRONMENT) $(TESTS_ENVIRONMENT)
# A shell command to get the names of the tests scripts with any registered
# extension removed (i.e., equivalently, the names of the test logs, with
# the '.log' extension removed). The result is saved in the shell variable
# '$bases'. This honors runtime overriding of TESTS and TEST_LOGS. Sadly,
# we cannot use something simpler, involving e.g., "$(TEST_LOGS:.log=)",
# since that might cause problem with VPATH rewrites for suffix-less tests.
# See also 'test-harness-vpath-rewrite.sh' and 'test-trs-basic.sh'.
am__set_TESTS_bases = \
bases='$(TEST_LOGS)'; \
bases=`for i in $$bases; do echo $$i; done | sed 's/\.log$$//'`; \
bases=`echo $$bases`
AM_TESTSUITE_SUMMARY_HEADER = ' for $(PACKAGE_STRING)'
RECHECK_LOGS = $(TEST_LOGS)
AM_RECURSIVE_TARGETS = check recheck
TEST_SUITE_LOG = test-suite.log
TEST_EXTENSIONS = @EXEEXT@ .test
LOG_DRIVER = $(SHELL) $(top_srcdir)/build-aux/test-driver
LOG_COMPILE = $(LOG_COMPILER) $(AM_LOG_FLAGS) $(LOG_FLAGS)
am__set_b = \
case '$@' in \
*/*) \
case '$*' in \
*/*) b='$*';; \
*) b=`echo '$@' | sed 's/\.log$$//'`; \
esac;; \
*) \
b='$*';; \
esac
am__test_logs1 = $(TESTS:=.log)
am__test_logs2 = $(am__test_logs1:@EXEEXT@.log=.log)
TEST_LOGS = $(am__test_logs2:.test.log=.log)
TEST_LOG_DRIVER = $(SHELL) $(top_srcdir)/build-aux/test-driver
TEST_LOG_COMPILE = $(TEST_LOG_COMPILER) $(AM_TEST_LOG_FLAGS) \
$(TEST_LOG_FLAGS)
am__DIST_COMMON = $(srcdir)/Makefile.in \
$(top_srcdir)/build-aux/depcomp \
$(top_srcdir)/build-aux/test-driver
DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST)
ACLOCAL = @ACLOCAL@
AMTAR = @AMTAR@
AM_CFLAGS = @AM_CFLAGS@
AM_CXXFLAGS = @AM_CXXFLAGS@
AM_DEFAULT_VERBOSITY = @AM_DEFAULT_VERBOSITY@
AR = @AR@
AUTOCONF = @AUTOCONF@
AUTOHEADER = @AUTOHEADER@
AUTOMAKE = @AUTOMAKE@
AWK = @AWK@
AX_PACKAGE_REQUIRES = @AX_PACKAGE_REQUIRES@
AX_PACKAGE_REQUIRES_PRIVATE = @AX_PACKAGE_REQUIRES_PRIVATE@
BOOST_CPPFLAGS = @BOOST_CPPFLAGS@
BOOST_ROOT = @BOOST_ROOT@
CC = @CC@
CCDEPMODE = @CCDEPMODE@
CFLAGS = @CFLAGS@
CPP = @CPP@
CPPFLAGS = @CPPFLAGS@
CSCOPE = @CSCOPE@
CTAGS = @CTAGS@
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@
ETAGS = @ETAGS@
EXEEXT = @EXEEXT@
FGREP = @FGREP@
FILECMD = @FILECMD@
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@
LTLIBOBJS = @LTLIBOBJS@
LT_SYS_LIBRARY_PATH = @LT_SYS_LIBRARY_PATH@
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@
PKG_CONFIG_LIBDIR = @PKG_CONFIG_LIBDIR@
PKG_CONFIG_PATH = @PKG_CONFIG_PATH@
PTHREAD_CC = @PTHREAD_CC@
PTHREAD_CFLAGS = @PTHREAD_CFLAGS@
PTHREAD_CXX = @PTHREAD_CXX@
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@
am__include = @am__include@
am__leading_dot = @am__leading_dot@
am__quote = @am__quote@
am__rm_f_notfound = @am__rm_f_notfound@
am__tar = @am__tar@
am__untar = @am__untar@
am__xargs_n = @am__xargs_n@
ax_pthread_config = @ax_pthread_config@
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@
log4cpp_CFLAGS = @log4cpp_CFLAGS@
log4cpp_LIBS = @log4cpp_LIBS@
log4shib_CFLAGS = @log4shib_CFLAGS@
log4shib_LIBS = @log4shib_LIBS@
mandir = @mandir@
mkdir_p = @mkdir_p@
oldincludedir = @oldincludedir@
pdfdir = @pdfdir@
pkgconfigdir = @pkgconfigdir@
pkgxmldir = @pkgxmldir@
prefix = @prefix@
program_transform_name = @program_transform_name@
psdir = @psdir@
runstatedir = @runstatedir@
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@
xerces_CFLAGS = @xerces_CFLAGS@
xerces_LIBS = @xerces_LIBS@
xmlsec_CFLAGS = @xmlsec_CFLAGS@
xmlsec_LIBS = @xmlsec_LIBS@
xmltooling_CFLAGS = @xmltooling_CFLAGS@
xmltooling_LIBS = @xmltooling_LIBS@
AUTOMAKE_OPTIONS = foreign subdir-objects
AM_TESTS_ENVIRONMENT = export SAMLTEST_DATA=$(srcdir)/data;
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 \
$(samltest_h)
nodist_samltest_SOURCES = $(samltest_h:.h=.cpp) samltest.cpp
CLEANFILES = $(nodist_samltest_SOURCES)
samltest_CXXFLAGS = \
$(AM_CXXFLAGS) \
$(CXXTESTFLAGS) \
$(xerces_CFLAGS) \
$(xmlsec_CFLAGS) \
$(xmltooling_CFLAGS)
samltest_LDADD = $(top_builddir)/saml/libsaml.la \
$(xerces_LIBS) \
$(xmlsec_LIBS) \
$(xmltooling_LIBS)
EXTRA_DIST = data/FilesystemCredentialResolver.xml \
data/*.pem \
data/binding \
data/saml1 \
data/saml2/binding \
data/saml2/core \
data/saml2/profile \
data/saml2/metadata/*.xml \
data/security \
data/signature
all: all-am
.SUFFIXES:
.SUFFIXES: .cpp .lo .log .o .obj .test .test$(EXEEXT) .trs
$(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
Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status
@case '$?' in \
*config.status*) \
cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \
*) \
echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__maybe_remake_depfiles)'; \
cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__maybe_remake_depfiles);; \
esac;
$(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):
clean-checkPROGRAMS:
$(am__rm_f) $(check_PROGRAMS)
test -z "$(EXEEXT)" || $(am__rm_f) $(check_PROGRAMS:$(EXEEXT)=)
encryption/$(am__dirstamp):
@$(MKDIR_P) encryption
@: >>encryption/$(am__dirstamp)
encryption/$(DEPDIR)/$(am__dirstamp):
@$(MKDIR_P) encryption/$(DEPDIR)
@: >>encryption/$(DEPDIR)/$(am__dirstamp)
encryption/samltest-EncryptedAssertionTest.$(OBJEXT): \
encryption/$(am__dirstamp) \
encryption/$(DEPDIR)/$(am__dirstamp)
signature/$(am__dirstamp):
@$(MKDIR_P) signature
@: >>signature/$(am__dirstamp)
signature/$(DEPDIR)/$(am__dirstamp):
@$(MKDIR_P) signature/$(DEPDIR)
@: >>signature/$(DEPDIR)/$(am__dirstamp)
signature/samltest-SAML1AssertionTest.$(OBJEXT): \
signature/$(am__dirstamp) signature/$(DEPDIR)/$(am__dirstamp)
signature/samltest-SAML1RequestTest.$(OBJEXT): \
signature/$(am__dirstamp) signature/$(DEPDIR)/$(am__dirstamp)
signature/samltest-SAML1ResponseTest.$(OBJEXT): \
signature/$(am__dirstamp) signature/$(DEPDIR)/$(am__dirstamp)
signature/samltest-SAML2AssertionTest.$(OBJEXT): \
signature/$(am__dirstamp) signature/$(DEPDIR)/$(am__dirstamp)
security/$(am__dirstamp):
@$(MKDIR_P) security
@: >>security/$(am__dirstamp)
security/$(DEPDIR)/$(am__dirstamp):
@$(MKDIR_P) security/$(DEPDIR)
@: >>security/$(DEPDIR)/$(am__dirstamp)
security/samltest-ExplicitKeyTrustEngineTest.$(OBJEXT): \
security/$(am__dirstamp) security/$(DEPDIR)/$(am__dirstamp)
security/samltest-StaticPKIXTrustEngineTest.$(OBJEXT): \
security/$(am__dirstamp) security/$(DEPDIR)/$(am__dirstamp)
saml1/core/impl/$(am__dirstamp):
@$(MKDIR_P) saml1/core/impl
@: >>saml1/core/impl/$(am__dirstamp)
saml1/core/impl/$(DEPDIR)/$(am__dirstamp):
@$(MKDIR_P) saml1/core/impl/$(DEPDIR)
@: >>saml1/core/impl/$(DEPDIR)/$(am__dirstamp)
saml1/core/impl/samltest-ActionTest.$(OBJEXT): \
saml1/core/impl/$(am__dirstamp) \
saml1/core/impl/$(DEPDIR)/$(am__dirstamp)
saml1/core/impl/samltest-AdviceTest.$(OBJEXT): \
saml1/core/impl/$(am__dirstamp) \
saml1/core/impl/$(DEPDIR)/$(am__dirstamp)
saml1/core/impl/samltest-AssertionIDReferenceTest.$(OBJEXT): \
saml1/core/impl/$(am__dirstamp) \
saml1/core/impl/$(DEPDIR)/$(am__dirstamp)
saml1/core/impl/samltest-AssertionTest.$(OBJEXT): \
saml1/core/impl/$(am__dirstamp) \
saml1/core/impl/$(DEPDIR)/$(am__dirstamp)
saml1/core/impl/samltest-AttributeDesignatorTest.$(OBJEXT): \
saml1/core/impl/$(am__dirstamp) \
saml1/core/impl/$(DEPDIR)/$(am__dirstamp)
saml1/core/impl/samltest-AttributeStatementTest.$(OBJEXT): \
saml1/core/impl/$(am__dirstamp) \
saml1/core/impl/$(DEPDIR)/$(am__dirstamp)
saml1/core/impl/samltest-AttributeTest.$(OBJEXT): \
saml1/core/impl/$(am__dirstamp) \
saml1/core/impl/$(DEPDIR)/$(am__dirstamp)
saml1/core/impl/samltest-AudienceRestrictionConditionTest.$(OBJEXT): \
saml1/core/impl/$(am__dirstamp) \
saml1/core/impl/$(DEPDIR)/$(am__dirstamp)
saml1/core/impl/samltest-AudienceTest.$(OBJEXT): \
saml1/core/impl/$(am__dirstamp) \
saml1/core/impl/$(DEPDIR)/$(am__dirstamp)
saml1/core/impl/samltest-AuthenticationStatementTest.$(OBJEXT): \
saml1/core/impl/$(am__dirstamp) \
saml1/core/impl/$(DEPDIR)/$(am__dirstamp)
saml1/binding/$(am__dirstamp):
@$(MKDIR_P) saml1/binding
@: >>saml1/binding/$(am__dirstamp)
saml1/binding/$(DEPDIR)/$(am__dirstamp):
@$(MKDIR_P) saml1/binding/$(DEPDIR)
@: >>saml1/binding/$(DEPDIR)/$(am__dirstamp)
saml1/binding/samltest-SAML1ArtifactTest.$(OBJEXT): \
saml1/binding/$(am__dirstamp) \
saml1/binding/$(DEPDIR)/$(am__dirstamp)
saml1/binding/samltest-SAML1POSTTest.$(OBJEXT): \
saml1/binding/$(am__dirstamp) \
saml1/binding/$(DEPDIR)/$(am__dirstamp)
saml1/profile/$(am__dirstamp):
@$(MKDIR_P) saml1/profile
@: >>saml1/profile/$(am__dirstamp)
saml1/profile/$(DEPDIR)/$(am__dirstamp):
@$(MKDIR_P) saml1/profile/$(DEPDIR)
@: >>saml1/profile/$(DEPDIR)/$(am__dirstamp)
saml1/profile/samltest-SAML1PolicyTest.$(OBJEXT): \
saml1/profile/$(am__dirstamp) \
saml1/profile/$(DEPDIR)/$(am__dirstamp)
saml2/core/impl/$(am__dirstamp):
@$(MKDIR_P) saml2/core/impl
@: >>saml2/core/impl/$(am__dirstamp)
saml2/core/impl/$(DEPDIR)/$(am__dirstamp):
@$(MKDIR_P) saml2/core/impl/$(DEPDIR)
@: >>saml2/core/impl/$(DEPDIR)/$(am__dirstamp)
saml2/core/impl/samltest-Action20Test.$(OBJEXT): \
saml2/core/impl/$(am__dirstamp) \
saml2/core/impl/$(DEPDIR)/$(am__dirstamp)
saml2/core/impl/samltest-Advice20Test.$(OBJEXT): \
saml2/core/impl/$(am__dirstamp) \
saml2/core/impl/$(DEPDIR)/$(am__dirstamp)
saml2/core/impl/samltest-Artifact20Test.$(OBJEXT): \
saml2/core/impl/$(am__dirstamp) \
saml2/core/impl/$(DEPDIR)/$(am__dirstamp)
saml2/core/impl/samltest-ArtifactResolve20Test.$(OBJEXT): \
saml2/core/impl/$(am__dirstamp) \
saml2/core/impl/$(DEPDIR)/$(am__dirstamp)
saml2/core/impl/samltest-ArtifactResponse20Test.$(OBJEXT): \
saml2/core/impl/$(am__dirstamp) \
saml2/core/impl/$(DEPDIR)/$(am__dirstamp)
saml2/core/impl/samltest-Assertion20Test.$(OBJEXT): \
saml2/core/impl/$(am__dirstamp) \
saml2/core/impl/$(DEPDIR)/$(am__dirstamp)
saml2/core/impl/samltest-AssertionIDRef20Test.$(OBJEXT): \
saml2/core/impl/$(am__dirstamp) \
saml2/core/impl/$(DEPDIR)/$(am__dirstamp)
saml2/core/impl/samltest-AssertionIDRequest20Test.$(OBJEXT): \
saml2/core/impl/$(am__dirstamp) \
saml2/core/impl/$(DEPDIR)/$(am__dirstamp)
saml2/core/impl/samltest-AssertionURIRef20Test.$(OBJEXT): \
saml2/core/impl/$(am__dirstamp) \
saml2/core/impl/$(DEPDIR)/$(am__dirstamp)
saml2/core/impl/samltest-Attribute20Test.$(OBJEXT): \
saml2/core/impl/$(am__dirstamp) \
saml2/core/impl/$(DEPDIR)/$(am__dirstamp)
saml2/core/impl/samltest-AttributeQuery20Test.$(OBJEXT): \
saml2/core/impl/$(am__dirstamp) \
saml2/core/impl/$(DEPDIR)/$(am__dirstamp)
saml2/core/impl/samltest-AttributeStatement20Test.$(OBJEXT): \
saml2/core/impl/$(am__dirstamp) \
saml2/core/impl/$(DEPDIR)/$(am__dirstamp)
saml2/core/impl/samltest-Audience20Test.$(OBJEXT): \
saml2/core/impl/$(am__dirstamp) \
saml2/core/impl/$(DEPDIR)/$(am__dirstamp)
saml2/core/impl/samltest-AudienceRestriction20Test.$(OBJEXT): \
saml2/core/impl/$(am__dirstamp) \
saml2/core/impl/$(DEPDIR)/$(am__dirstamp)
saml2/core/impl/samltest-AuthenticatingAuthority20Test.$(OBJEXT): \
saml2/core/impl/$(am__dirstamp) \
saml2/core/impl/$(DEPDIR)/$(am__dirstamp)
saml2/core/impl/samltest-AuthnContext20Test.$(OBJEXT): \
saml2/core/impl/$(am__dirstamp) \
saml2/core/impl/$(DEPDIR)/$(am__dirstamp)
saml2/core/impl/samltest-AuthnContextClassRef20Test.$(OBJEXT): \
saml2/core/impl/$(am__dirstamp) \
saml2/core/impl/$(DEPDIR)/$(am__dirstamp)
saml2/core/impl/samltest-AuthnContextDeclRef20Test.$(OBJEXT): \
saml2/core/impl/$(am__dirstamp) \
saml2/core/impl/$(DEPDIR)/$(am__dirstamp)
saml2/core/impl/samltest-AuthnQuery20Test.$(OBJEXT): \
saml2/core/impl/$(am__dirstamp) \
saml2/core/impl/$(DEPDIR)/$(am__dirstamp)
saml2/core/impl/samltest-AuthnRequest20Test.$(OBJEXT): \
saml2/core/impl/$(am__dirstamp) \
saml2/core/impl/$(DEPDIR)/$(am__dirstamp)
saml2/core/impl/samltest-AuthnStatement20Test.$(OBJEXT): \
saml2/core/impl/$(am__dirstamp) \
saml2/core/impl/$(DEPDIR)/$(am__dirstamp)
saml2/core/impl/samltest-AuthzDecisionQuery20Test.$(OBJEXT): \
saml2/core/impl/$(am__dirstamp) \
saml2/core/impl/$(DEPDIR)/$(am__dirstamp)
saml2/core/impl/samltest-AuthzDecisionStatement20Test.$(OBJEXT): \
saml2/core/impl/$(am__dirstamp) \
saml2/core/impl/$(DEPDIR)/$(am__dirstamp)
saml2/core/impl/samltest-Conditions20Test.$(OBJEXT): \
saml2/core/impl/$(am__dirstamp) \
saml2/core/impl/$(DEPDIR)/$(am__dirstamp)
saml2/core/impl/samltest-Evidence20Test.$(OBJEXT): \
saml2/core/impl/$(am__dirstamp) \
saml2/core/impl/$(DEPDIR)/$(am__dirstamp)
saml2/core/impl/samltest-GetComplete20Test.$(OBJEXT): \
saml2/core/impl/$(am__dirstamp) \
saml2/core/impl/$(DEPDIR)/$(am__dirstamp)
saml2/core/impl/samltest-IDPEntry20Test.$(OBJEXT): \
saml2/core/impl/$(am__dirstamp) \
saml2/core/impl/$(DEPDIR)/$(am__dirstamp)
saml2/core/impl/samltest-IDPList20Test.$(OBJEXT): \
saml2/core/impl/$(am__dirstamp) \
saml2/core/impl/$(DEPDIR)/$(am__dirstamp)
saml2/core/impl/samltest-Issuer20Test.$(OBJEXT): \
saml2/core/impl/$(am__dirstamp) \
saml2/core/impl/$(DEPDIR)/$(am__dirstamp)
saml2/core/impl/samltest-KeyInfoConfirmationDataType20Test.$(OBJEXT): \
saml2/core/impl/$(am__dirstamp) \
saml2/core/impl/$(DEPDIR)/$(am__dirstamp)
saml2/core/impl/samltest-LogoutRequest20Test.$(OBJEXT): \
saml2/core/impl/$(am__dirstamp) \
saml2/core/impl/$(DEPDIR)/$(am__dirstamp)
saml2/core/impl/samltest-LogoutResponse20Test.$(OBJEXT): \
saml2/core/impl/$(am__dirstamp) \
saml2/core/impl/$(DEPDIR)/$(am__dirstamp)
saml2/core/impl/samltest-ManageNameIDRequest20Test.$(OBJEXT): \
saml2/core/impl/$(am__dirstamp) \
saml2/core/impl/$(DEPDIR)/$(am__dirstamp)
saml2/core/impl/samltest-ManageNameIDResponse20Test.$(OBJEXT): \
saml2/core/impl/$(am__dirstamp) \
saml2/core/impl/$(DEPDIR)/$(am__dirstamp)
saml2/core/impl/samltest-NameIDMappingRequest20Test.$(OBJEXT): \
saml2/core/impl/$(am__dirstamp) \
saml2/core/impl/$(DEPDIR)/$(am__dirstamp)
saml2/core/impl/samltest-NameIDMappingResponse20Test.$(OBJEXT): \
saml2/core/impl/$(am__dirstamp) \
saml2/core/impl/$(DEPDIR)/$(am__dirstamp)
saml2/core/impl/samltest-NameIDPolicy20Test.$(OBJEXT): \
saml2/core/impl/$(am__dirstamp) \
saml2/core/impl/$(DEPDIR)/$(am__dirstamp)
saml2/core/impl/samltest-NameID20Test.$(OBJEXT): \
saml2/core/impl/$(am__dirstamp) \
saml2/core/impl/$(DEPDIR)/$(am__dirstamp)
saml2/core/impl/samltest-NameIDType20Test.$(OBJEXT): \
saml2/core/impl/$(am__dirstamp) \
saml2/core/impl/$(DEPDIR)/$(am__dirstamp)
saml2/core/impl/samltest-NewEncryptedID20Test.$(OBJEXT): \
saml2/core/impl/$(am__dirstamp) \
saml2/core/impl/$(DEPDIR)/$(am__dirstamp)
saml2/core/impl/samltest-NewID20Test.$(OBJEXT): \
saml2/core/impl/$(am__dirstamp) \
saml2/core/impl/$(DEPDIR)/$(am__dirstamp)
saml2/core/impl/samltest-OneTimeUse20Test.$(OBJEXT): \
saml2/core/impl/$(am__dirstamp) \
saml2/core/impl/$(DEPDIR)/$(am__dirstamp)
saml2/core/impl/samltest-ProxyRestriction20Test.$(OBJEXT): \
saml2/core/impl/$(am__dirstamp) \
saml2/core/impl/$(DEPDIR)/$(am__dirstamp)
saml2/core/impl/samltest-RequesterID20Test.$(OBJEXT): \
saml2/core/impl/$(am__dirstamp) \
saml2/core/impl/$(DEPDIR)/$(am__dirstamp)
saml2/core/impl/samltest-RequestedAuthnContext20Test.$(OBJEXT): \
saml2/core/impl/$(am__dirstamp) \
saml2/core/impl/$(DEPDIR)/$(am__dirstamp)
saml2/core/impl/samltest-Response20Test.$(OBJEXT): \
saml2/core/impl/$(am__dirstamp) \
saml2/core/impl/$(DEPDIR)/$(am__dirstamp)
saml2/core/impl/samltest-Scoping20Test.$(OBJEXT): \
saml2/core/impl/$(am__dirstamp) \
saml2/core/impl/$(DEPDIR)/$(am__dirstamp)
saml2/core/impl/samltest-SessionIndex20Test.$(OBJEXT): \
saml2/core/impl/$(am__dirstamp) \
saml2/core/impl/$(DEPDIR)/$(am__dirstamp)
saml2/core/impl/samltest-Status20Test.$(OBJEXT): \
saml2/core/impl/$(am__dirstamp) \
saml2/core/impl/$(DEPDIR)/$(am__dirstamp)
saml2/core/impl/samltest-StatusCode20Test.$(OBJEXT): \
saml2/core/impl/$(am__dirstamp) \
saml2/core/impl/$(DEPDIR)/$(am__dirstamp)
saml2/core/impl/samltest-StatusDetail20Test.$(OBJEXT): \
saml2/core/impl/$(am__dirstamp) \
saml2/core/impl/$(DEPDIR)/$(am__dirstamp)
saml2/core/impl/samltest-StatusMessage20Test.$(OBJEXT): \
saml2/core/impl/$(am__dirstamp) \
saml2/core/impl/$(DEPDIR)/$(am__dirstamp)
saml2/core/impl/samltest-Subject20Test.$(OBJEXT): \
saml2/core/impl/$(am__dirstamp) \
saml2/core/impl/$(DEPDIR)/$(am__dirstamp)
saml2/core/impl/samltest-SubjectConfirmation20Test.$(OBJEXT): \
saml2/core/impl/$(am__dirstamp) \
saml2/core/impl/$(DEPDIR)/$(am__dirstamp)
saml2/core/impl/samltest-SubjectConfirmationData20Test.$(OBJEXT): \
saml2/core/impl/$(am__dirstamp) \
saml2/core/impl/$(DEPDIR)/$(am__dirstamp)
saml2/core/impl/samltest-SubjectLocality20Test.$(OBJEXT): \
saml2/core/impl/$(am__dirstamp) \
saml2/core/impl/$(DEPDIR)/$(am__dirstamp)
saml2/core/impl/samltest-Terminate20Test.$(OBJEXT): \
saml2/core/impl/$(am__dirstamp) \
saml2/core/impl/$(DEPDIR)/$(am__dirstamp)
saml2/binding/$(am__dirstamp):
@$(MKDIR_P) saml2/binding
@: >>saml2/binding/$(am__dirstamp)
saml2/binding/$(DEPDIR)/$(am__dirstamp):
@$(MKDIR_P) saml2/binding/$(DEPDIR)
@: >>saml2/binding/$(DEPDIR)/$(am__dirstamp)
saml2/binding/samltest-SAML2ArtifactTest.$(OBJEXT): \
saml2/binding/$(am__dirstamp) \
saml2/binding/$(DEPDIR)/$(am__dirstamp)
saml2/binding/samltest-SAML2POSTTest.$(OBJEXT): \
saml2/binding/$(am__dirstamp) \
saml2/binding/$(DEPDIR)/$(am__dirstamp)
saml2/binding/samltest-SAML2RedirectTest.$(OBJEXT): \
saml2/binding/$(am__dirstamp) \
saml2/binding/$(DEPDIR)/$(am__dirstamp)
saml2/metadata/$(am__dirstamp):
@$(MKDIR_P) saml2/metadata
@: >>saml2/metadata/$(am__dirstamp)
saml2/metadata/$(DEPDIR)/$(am__dirstamp):
@$(MKDIR_P) saml2/metadata/$(DEPDIR)
@: >>saml2/metadata/$(DEPDIR)/$(am__dirstamp)
saml2/metadata/samltest-XMLMetadataProviderTest.$(OBJEXT): \
saml2/metadata/$(am__dirstamp) \
saml2/metadata/$(DEPDIR)/$(am__dirstamp)
saml2/profile/$(am__dirstamp):
@$(MKDIR_P) saml2/profile
@: >>saml2/profile/$(am__dirstamp)
saml2/profile/$(DEPDIR)/$(am__dirstamp):
@$(MKDIR_P) saml2/profile/$(DEPDIR)
@: >>saml2/profile/$(DEPDIR)/$(am__dirstamp)
saml2/profile/samltest-SAML2PolicyTest.$(OBJEXT): \
saml2/profile/$(am__dirstamp) \
saml2/profile/$(DEPDIR)/$(am__dirstamp)
samltest$(EXEEXT): $(samltest_OBJECTS) $(samltest_DEPENDENCIES) $(EXTRA_samltest_DEPENDENCIES)
@rm -f samltest$(EXEEXT)
$(AM_V_CXXLD)$(samltest_LINK) $(samltest_OBJECTS) $(samltest_LDADD) $(LIBS)
mostlyclean-compile:
-rm -f *.$(OBJEXT)
-rm -f encryption/*.$(OBJEXT)
-rm -f saml1/binding/*.$(OBJEXT)
-rm -f saml1/core/impl/*.$(OBJEXT)
-rm -f saml1/profile/*.$(OBJEXT)
-rm -f saml2/binding/*.$(OBJEXT)
-rm -f saml2/core/impl/*.$(OBJEXT)
-rm -f saml2/metadata/*.$(OBJEXT)
-rm -f saml2/profile/*.$(OBJEXT)
-rm -f security/*.$(OBJEXT)
-rm -f signature/*.$(OBJEXT)
distclean-compile:
-rm -f *.tab.c
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/samltest-ArtifactMapTest.Po@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/samltest-CookieTest.Po@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/samltest-SAMLArtifactCreationTest.Po@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/samltest-SAMLArtifactType0001Test.Po@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/samltest-SAMLArtifactType0002Test.Po@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/samltest-SAMLArtifactType0004Test.Po@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/samltest-samltest.Po@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@encryption/$(DEPDIR)/samltest-EncryptedAssertionTest.Po@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@saml1/binding/$(DEPDIR)/samltest-SAML1ArtifactTest.Po@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@saml1/binding/$(DEPDIR)/samltest-SAML1POSTTest.Po@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@saml1/core/impl/$(DEPDIR)/samltest-ActionTest.Po@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@saml1/core/impl/$(DEPDIR)/samltest-AdviceTest.Po@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@saml1/core/impl/$(DEPDIR)/samltest-AssertionIDReferenceTest.Po@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@saml1/core/impl/$(DEPDIR)/samltest-AssertionTest.Po@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@saml1/core/impl/$(DEPDIR)/samltest-AttributeDesignatorTest.Po@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@saml1/core/impl/$(DEPDIR)/samltest-AttributeStatementTest.Po@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@saml1/core/impl/$(DEPDIR)/samltest-AttributeTest.Po@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@saml1/core/impl/$(DEPDIR)/samltest-AudienceRestrictionConditionTest.Po@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@saml1/core/impl/$(DEPDIR)/samltest-AudienceTest.Po@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@saml1/core/impl/$(DEPDIR)/samltest-AuthenticationStatementTest.Po@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@saml1/profile/$(DEPDIR)/samltest-SAML1PolicyTest.Po@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@saml2/binding/$(DEPDIR)/samltest-SAML2ArtifactTest.Po@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@saml2/binding/$(DEPDIR)/samltest-SAML2POSTTest.Po@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@saml2/binding/$(DEPDIR)/samltest-SAML2RedirectTest.Po@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@saml2/core/impl/$(DEPDIR)/samltest-Action20Test.Po@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@saml2/core/impl/$(DEPDIR)/samltest-Advice20Test.Po@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@saml2/core/impl/$(DEPDIR)/samltest-Artifact20Test.Po@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@saml2/core/impl/$(DEPDIR)/samltest-ArtifactResolve20Test.Po@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@saml2/core/impl/$(DEPDIR)/samltest-ArtifactResponse20Test.Po@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@saml2/core/impl/$(DEPDIR)/samltest-Assertion20Test.Po@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@saml2/core/impl/$(DEPDIR)/samltest-AssertionIDRef20Test.Po@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@saml2/core/impl/$(DEPDIR)/samltest-AssertionIDRequest20Test.Po@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@saml2/core/impl/$(DEPDIR)/samltest-AssertionURIRef20Test.Po@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@saml2/core/impl/$(DEPDIR)/samltest-Attribute20Test.Po@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@saml2/core/impl/$(DEPDIR)/samltest-AttributeQuery20Test.Po@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@saml2/core/impl/$(DEPDIR)/samltest-AttributeStatement20Test.Po@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@saml2/core/impl/$(DEPDIR)/samltest-Audience20Test.Po@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@saml2/core/impl/$(DEPDIR)/samltest-AudienceRestriction20Test.Po@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@saml2/core/impl/$(DEPDIR)/samltest-AuthenticatingAuthority20Test.Po@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@saml2/core/impl/$(DEPDIR)/samltest-AuthnContext20Test.Po@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@saml2/core/impl/$(DEPDIR)/samltest-AuthnContextClassRef20Test.Po@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@saml2/core/impl/$(DEPDIR)/samltest-AuthnContextDeclRef20Test.Po@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@saml2/core/impl/$(DEPDIR)/samltest-AuthnQuery20Test.Po@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@saml2/core/impl/$(DEPDIR)/samltest-AuthnRequest20Test.Po@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@saml2/core/impl/$(DEPDIR)/samltest-AuthnStatement20Test.Po@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@saml2/core/impl/$(DEPDIR)/samltest-AuthzDecisionQuery20Test.Po@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@saml2/core/impl/$(DEPDIR)/samltest-AuthzDecisionStatement20Test.Po@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@saml2/core/impl/$(DEPDIR)/samltest-Conditions20Test.Po@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@saml2/core/impl/$(DEPDIR)/samltest-Evidence20Test.Po@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@saml2/core/impl/$(DEPDIR)/samltest-GetComplete20Test.Po@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@saml2/core/impl/$(DEPDIR)/samltest-IDPEntry20Test.Po@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@saml2/core/impl/$(DEPDIR)/samltest-IDPList20Test.Po@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@saml2/core/impl/$(DEPDIR)/samltest-Issuer20Test.Po@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@saml2/core/impl/$(DEPDIR)/samltest-KeyInfoConfirmationDataType20Test.Po@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@saml2/core/impl/$(DEPDIR)/samltest-LogoutRequest20Test.Po@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@saml2/core/impl/$(DEPDIR)/samltest-LogoutResponse20Test.Po@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@saml2/core/impl/$(DEPDIR)/samltest-ManageNameIDRequest20Test.Po@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@saml2/core/impl/$(DEPDIR)/samltest-ManageNameIDResponse20Test.Po@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@saml2/core/impl/$(DEPDIR)/samltest-NameID20Test.Po@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@saml2/core/impl/$(DEPDIR)/samltest-NameIDMappingRequest20Test.Po@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@saml2/core/impl/$(DEPDIR)/samltest-NameIDMappingResponse20Test.Po@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@saml2/core/impl/$(DEPDIR)/samltest-NameIDPolicy20Test.Po@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@saml2/core/impl/$(DEPDIR)/samltest-NameIDType20Test.Po@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@saml2/core/impl/$(DEPDIR)/samltest-NewEncryptedID20Test.Po@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@saml2/core/impl/$(DEPDIR)/samltest-NewID20Test.Po@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@saml2/core/impl/$(DEPDIR)/samltest-OneTimeUse20Test.Po@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@saml2/core/impl/$(DEPDIR)/samltest-ProxyRestriction20Test.Po@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@saml2/core/impl/$(DEPDIR)/samltest-RequestedAuthnContext20Test.Po@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@saml2/core/impl/$(DEPDIR)/samltest-RequesterID20Test.Po@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@saml2/core/impl/$(DEPDIR)/samltest-Response20Test.Po@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@saml2/core/impl/$(DEPDIR)/samltest-Scoping20Test.Po@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@saml2/core/impl/$(DEPDIR)/samltest-SessionIndex20Test.Po@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@saml2/core/impl/$(DEPDIR)/samltest-Status20Test.Po@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@saml2/core/impl/$(DEPDIR)/samltest-StatusCode20Test.Po@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@saml2/core/impl/$(DEPDIR)/samltest-StatusDetail20Test.Po@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@saml2/core/impl/$(DEPDIR)/samltest-StatusMessage20Test.Po@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@saml2/core/impl/$(DEPDIR)/samltest-Subject20Test.Po@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@saml2/core/impl/$(DEPDIR)/samltest-SubjectConfirmation20Test.Po@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@saml2/core/impl/$(DEPDIR)/samltest-SubjectConfirmationData20Test.Po@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@saml2/core/impl/$(DEPDIR)/samltest-SubjectLocality20Test.Po@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@saml2/core/impl/$(DEPDIR)/samltest-Terminate20Test.Po@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@saml2/metadata/$(DEPDIR)/samltest-XMLMetadataProviderTest.Po@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@saml2/profile/$(DEPDIR)/samltest-SAML2PolicyTest.Po@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@security/$(DEPDIR)/samltest-ExplicitKeyTrustEngineTest.Po@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@security/$(DEPDIR)/samltest-StaticPKIXTrustEngineTest.Po@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@signature/$(DEPDIR)/samltest-SAML1AssertionTest.Po@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@signature/$(DEPDIR)/samltest-SAML1RequestTest.Po@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@signature/$(DEPDIR)/samltest-SAML1ResponseTest.Po@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@signature/$(DEPDIR)/samltest-SAML2AssertionTest.Po@am__quote@ # am--include-marker
$(am__depfiles_remade):
@$(MKDIR_P) $(@D)
@: >>$@
am--depfiles: $(am__depfiles_remade)
.cpp.o:
@am__fastdepCXX_TRUE@ $(AM_V_CXX)depbase=`echo $@ | sed 's|[^/]*$$|$(DEPDIR)/&|;s|\.o$$||'`;\
@am__fastdepCXX_TRUE@ $(CXXCOMPILE) -MT $@ -MD -MP -MF $$depbase.Tpo -c -o $@ $< &&\
@am__fastdepCXX_TRUE@ $(am__mv) $$depbase.Tpo $$depbase.Po
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='$<' object='$@' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXXCOMPILE) -c -o $@ $<
.cpp.obj:
@am__fastdepCXX_TRUE@ $(AM_V_CXX)depbase=`echo $@ | sed 's|[^/]*$$|$(DEPDIR)/&|;s|\.obj$$||'`;\
@am__fastdepCXX_TRUE@ $(CXXCOMPILE) -MT $@ -MD -MP -MF $$depbase.Tpo -c -o $@ `$(CYGPATH_W) '$<'` &&\
@am__fastdepCXX_TRUE@ $(am__mv) $$depbase.Tpo $$depbase.Po
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='$<' object='$@' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXXCOMPILE) -c -o $@ `$(CYGPATH_W) '$<'`
.cpp.lo:
@am__fastdepCXX_TRUE@ $(AM_V_CXX)depbase=`echo $@ | sed 's|[^/]*$$|$(DEPDIR)/&|;s|\.lo$$||'`;\
@am__fastdepCXX_TRUE@ $(LTCXXCOMPILE) -MT $@ -MD -MP -MF $$depbase.Tpo -c -o $@ $< &&\
@am__fastdepCXX_TRUE@ $(am__mv) $$depbase.Tpo $$depbase.Plo
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='$<' object='$@' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(LTCXXCOMPILE) -c -o $@ $<
samltest-SAMLArtifactCreationTest.o: SAMLArtifactCreationTest.cpp
@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(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_V_at)$(am__mv) $(DEPDIR)/samltest-SAMLArtifactCreationTest.Tpo $(DEPDIR)/samltest-SAMLArtifactCreationTest.Po
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='SAMLArtifactCreationTest.cpp' object='samltest-SAMLArtifactCreationTest.o' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(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@ $(AM_V_CXX)$(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_V_at)$(am__mv) $(DEPDIR)/samltest-SAMLArtifactCreationTest.Tpo $(DEPDIR)/samltest-SAMLArtifactCreationTest.Po
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='SAMLArtifactCreationTest.cpp' object='samltest-SAMLArtifactCreationTest.obj' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(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@ $(AM_V_CXX)$(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_V_at)$(am__mv) $(DEPDIR)/samltest-SAMLArtifactType0001Test.Tpo $(DEPDIR)/samltest-SAMLArtifactType0001Test.Po
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='SAMLArtifactType0001Test.cpp' object='samltest-SAMLArtifactType0001Test.o' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(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@ $(AM_V_CXX)$(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_V_at)$(am__mv) $(DEPDIR)/samltest-SAMLArtifactType0001Test.Tpo $(DEPDIR)/samltest-SAMLArtifactType0001Test.Po
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='SAMLArtifactType0001Test.cpp' object='samltest-SAMLArtifactType0001Test.obj' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(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@ $(AM_V_CXX)$(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_V_at)$(am__mv) $(DEPDIR)/samltest-SAMLArtifactType0002Test.Tpo $(DEPDIR)/samltest-SAMLArtifactType0002Test.Po
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='SAMLArtifactType0002Test.cpp' object='samltest-SAMLArtifactType0002Test.o' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(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@ $(AM_V_CXX)$(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_V_at)$(am__mv) $(DEPDIR)/samltest-SAMLArtifactType0002Test.Tpo $(DEPDIR)/samltest-SAMLArtifactType0002Test.Po
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='SAMLArtifactType0002Test.cpp' object='samltest-SAMLArtifactType0002Test.obj' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(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@ $(AM_V_CXX)$(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_V_at)$(am__mv) $(DEPDIR)/samltest-SAMLArtifactType0004Test.Tpo $(DEPDIR)/samltest-SAMLArtifactType0004Test.Po
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='SAMLArtifactType0004Test.cpp' object='samltest-SAMLArtifactType0004Test.o' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(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@ $(AM_V_CXX)$(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_V_at)$(am__mv) $(DEPDIR)/samltest-SAMLArtifactType0004Test.Tpo $(DEPDIR)/samltest-SAMLArtifactType0004Test.Po
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='SAMLArtifactType0004Test.cpp' object='samltest-SAMLArtifactType0004Test.obj' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(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@ $(AM_V_CXX)$(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_V_at)$(am__mv) $(DEPDIR)/samltest-ArtifactMapTest.Tpo $(DEPDIR)/samltest-ArtifactMapTest.Po
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='ArtifactMapTest.cpp' object='samltest-ArtifactMapTest.o' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(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@ $(AM_V_CXX)$(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_V_at)$(am__mv) $(DEPDIR)/samltest-ArtifactMapTest.Tpo $(DEPDIR)/samltest-ArtifactMapTest.Po
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='ArtifactMapTest.cpp' object='samltest-ArtifactMapTest.obj' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(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@ $(AM_V_CXX)$(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_V_at)$(am__mv) $(DEPDIR)/samltest-CookieTest.Tpo $(DEPDIR)/samltest-CookieTest.Po
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='CookieTest.cpp' object='samltest-CookieTest.o' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(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@ $(AM_V_CXX)$(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_V_at)$(am__mv) $(DEPDIR)/samltest-CookieTest.Tpo $(DEPDIR)/samltest-CookieTest.Po
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='CookieTest.cpp' object='samltest-CookieTest.obj' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(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`
encryption/samltest-EncryptedAssertionTest.o: encryption/EncryptedAssertionTest.cpp
@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(samltest_CXXFLAGS) $(CXXFLAGS) -MT encryption/samltest-EncryptedAssertionTest.o -MD -MP -MF encryption/$(DEPDIR)/samltest-EncryptedAssertionTest.Tpo -c -o encryption/samltest-EncryptedAssertionTest.o `test -f 'encryption/EncryptedAssertionTest.cpp' || echo '$(srcdir)/'`encryption/EncryptedAssertionTest.cpp
@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) encryption/$(DEPDIR)/samltest-EncryptedAssertionTest.Tpo encryption/$(DEPDIR)/samltest-EncryptedAssertionTest.Po
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='encryption/EncryptedAssertionTest.cpp' object='encryption/samltest-EncryptedAssertionTest.o' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(samltest_CXXFLAGS) $(CXXFLAGS) -c -o encryption/samltest-EncryptedAssertionTest.o `test -f 'encryption/EncryptedAssertionTest.cpp' || echo '$(srcdir)/'`encryption/EncryptedAssertionTest.cpp
encryption/samltest-EncryptedAssertionTest.obj: encryption/EncryptedAssertionTest.cpp
@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(samltest_CXXFLAGS) $(CXXFLAGS) -MT encryption/samltest-EncryptedAssertionTest.obj -MD -MP -MF encryption/$(DEPDIR)/samltest-EncryptedAssertionTest.Tpo -c -o encryption/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_V_at)$(am__mv) encryption/$(DEPDIR)/samltest-EncryptedAssertionTest.Tpo encryption/$(DEPDIR)/samltest-EncryptedAssertionTest.Po
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='encryption/EncryptedAssertionTest.cpp' object='encryption/samltest-EncryptedAssertionTest.obj' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(samltest_CXXFLAGS) $(CXXFLAGS) -c -o encryption/samltest-EncryptedAssertionTest.obj `if test -f 'encryption/EncryptedAssertionTest.cpp'; then $(CYGPATH_W) 'encryption/EncryptedAssertionTest.cpp'; else $(CYGPATH_W) '$(srcdir)/encryption/EncryptedAssertionTest.cpp'; fi`
signature/samltest-SAML1AssertionTest.o: signature/SAML1AssertionTest.cpp
@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(samltest_CXXFLAGS) $(CXXFLAGS) -MT signature/samltest-SAML1AssertionTest.o -MD -MP -MF signature/$(DEPDIR)/samltest-SAML1AssertionTest.Tpo -c -o signature/samltest-SAML1AssertionTest.o `test -f 'signature/SAML1AssertionTest.cpp' || echo '$(srcdir)/'`signature/SAML1AssertionTest.cpp
@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) signature/$(DEPDIR)/samltest-SAML1AssertionTest.Tpo signature/$(DEPDIR)/samltest-SAML1AssertionTest.Po
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='signature/SAML1AssertionTest.cpp' object='signature/samltest-SAML1AssertionTest.o' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(samltest_CXXFLAGS) $(CXXFLAGS) -c -o signature/samltest-SAML1AssertionTest.o `test -f 'signature/SAML1AssertionTest.cpp' || echo '$(srcdir)/'`signature/SAML1AssertionTest.cpp
signature/samltest-SAML1AssertionTest.obj: signature/SAML1AssertionTest.cpp
@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(samltest_CXXFLAGS) $(CXXFLAGS) -MT signature/samltest-SAML1AssertionTest.obj -MD -MP -MF signature/$(DEPDIR)/samltest-SAML1AssertionTest.Tpo -c -o signature/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_V_at)$(am__mv) signature/$(DEPDIR)/samltest-SAML1AssertionTest.Tpo signature/$(DEPDIR)/samltest-SAML1AssertionTest.Po
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='signature/SAML1AssertionTest.cpp' object='signature/samltest-SAML1AssertionTest.obj' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(samltest_CXXFLAGS) $(CXXFLAGS) -c -o signature/samltest-SAML1AssertionTest.obj `if test -f 'signature/SAML1AssertionTest.cpp'; then $(CYGPATH_W) 'signature/SAML1AssertionTest.cpp'; else $(CYGPATH_W) '$(srcdir)/signature/SAML1AssertionTest.cpp'; fi`
signature/samltest-SAML1RequestTest.o: signature/SAML1RequestTest.cpp
@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(samltest_CXXFLAGS) $(CXXFLAGS) -MT signature/samltest-SAML1RequestTest.o -MD -MP -MF signature/$(DEPDIR)/samltest-SAML1RequestTest.Tpo -c -o signature/samltest-SAML1RequestTest.o `test -f 'signature/SAML1RequestTest.cpp' || echo '$(srcdir)/'`signature/SAML1RequestTest.cpp
@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) signature/$(DEPDIR)/samltest-SAML1RequestTest.Tpo signature/$(DEPDIR)/samltest-SAML1RequestTest.Po
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='signature/SAML1RequestTest.cpp' object='signature/samltest-SAML1RequestTest.o' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(samltest_CXXFLAGS) $(CXXFLAGS) -c -o signature/samltest-SAML1RequestTest.o `test -f 'signature/SAML1RequestTest.cpp' || echo '$(srcdir)/'`signature/SAML1RequestTest.cpp
signature/samltest-SAML1RequestTest.obj: signature/SAML1RequestTest.cpp
@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(samltest_CXXFLAGS) $(CXXFLAGS) -MT signature/samltest-SAML1RequestTest.obj -MD -MP -MF signature/$(DEPDIR)/samltest-SAML1RequestTest.Tpo -c -o signature/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_V_at)$(am__mv) signature/$(DEPDIR)/samltest-SAML1RequestTest.Tpo signature/$(DEPDIR)/samltest-SAML1RequestTest.Po
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='signature/SAML1RequestTest.cpp' object='signature/samltest-SAML1RequestTest.obj' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(samltest_CXXFLAGS) $(CXXFLAGS) -c -o signature/samltest-SAML1RequestTest.obj `if test -f 'signature/SAML1RequestTest.cpp'; then $(CYGPATH_W) 'signature/SAML1RequestTest.cpp'; else $(CYGPATH_W) '$(srcdir)/signature/SAML1RequestTest.cpp'; fi`
signature/samltest-SAML1ResponseTest.o: signature/SAML1ResponseTest.cpp
@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(samltest_CXXFLAGS) $(CXXFLAGS) -MT signature/samltest-SAML1ResponseTest.o -MD -MP -MF signature/$(DEPDIR)/samltest-SAML1ResponseTest.Tpo -c -o signature/samltest-SAML1ResponseTest.o `test -f 'signature/SAML1ResponseTest.cpp' || echo '$(srcdir)/'`signature/SAML1ResponseTest.cpp
@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) signature/$(DEPDIR)/samltest-SAML1ResponseTest.Tpo signature/$(DEPDIR)/samltest-SAML1ResponseTest.Po
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='signature/SAML1ResponseTest.cpp' object='signature/samltest-SAML1ResponseTest.o' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(samltest_CXXFLAGS) $(CXXFLAGS) -c -o signature/samltest-SAML1ResponseTest.o `test -f 'signature/SAML1ResponseTest.cpp' || echo '$(srcdir)/'`signature/SAML1ResponseTest.cpp
signature/samltest-SAML1ResponseTest.obj: signature/SAML1ResponseTest.cpp
@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(samltest_CXXFLAGS) $(CXXFLAGS) -MT signature/samltest-SAML1ResponseTest.obj -MD -MP -MF signature/$(DEPDIR)/samltest-SAML1ResponseTest.Tpo -c -o signature/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_V_at)$(am__mv) signature/$(DEPDIR)/samltest-SAML1ResponseTest.Tpo signature/$(DEPDIR)/samltest-SAML1ResponseTest.Po
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='signature/SAML1ResponseTest.cpp' object='signature/samltest-SAML1ResponseTest.obj' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(samltest_CXXFLAGS) $(CXXFLAGS) -c -o signature/samltest-SAML1ResponseTest.obj `if test -f 'signature/SAML1ResponseTest.cpp'; then $(CYGPATH_W) 'signature/SAML1ResponseTest.cpp'; else $(CYGPATH_W) '$(srcdir)/signature/SAML1ResponseTest.cpp'; fi`
signature/samltest-SAML2AssertionTest.o: signature/SAML2AssertionTest.cpp
@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(samltest_CXXFLAGS) $(CXXFLAGS) -MT signature/samltest-SAML2AssertionTest.o -MD -MP -MF signature/$(DEPDIR)/samltest-SAML2AssertionTest.Tpo -c -o signature/samltest-SAML2AssertionTest.o `test -f 'signature/SAML2AssertionTest.cpp' || echo '$(srcdir)/'`signature/SAML2AssertionTest.cpp
@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) signature/$(DEPDIR)/samltest-SAML2AssertionTest.Tpo signature/$(DEPDIR)/samltest-SAML2AssertionTest.Po
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='signature/SAML2AssertionTest.cpp' object='signature/samltest-SAML2AssertionTest.o' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(samltest_CXXFLAGS) $(CXXFLAGS) -c -o signature/samltest-SAML2AssertionTest.o `test -f 'signature/SAML2AssertionTest.cpp' || echo '$(srcdir)/'`signature/SAML2AssertionTest.cpp
signature/samltest-SAML2AssertionTest.obj: signature/SAML2AssertionTest.cpp
@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(samltest_CXXFLAGS) $(CXXFLAGS) -MT signature/samltest-SAML2AssertionTest.obj -MD -MP -MF signature/$(DEPDIR)/samltest-SAML2AssertionTest.Tpo -c -o signature/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_V_at)$(am__mv) signature/$(DEPDIR)/samltest-SAML2AssertionTest.Tpo signature/$(DEPDIR)/samltest-SAML2AssertionTest.Po
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='signature/SAML2AssertionTest.cpp' object='signature/samltest-SAML2AssertionTest.obj' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(samltest_CXXFLAGS) $(CXXFLAGS) -c -o signature/samltest-SAML2AssertionTest.obj `if test -f 'signature/SAML2AssertionTest.cpp'; then $(CYGPATH_W) 'signature/SAML2AssertionTest.cpp'; else $(CYGPATH_W) '$(srcdir)/signature/SAML2AssertionTest.cpp'; fi`
security/samltest-ExplicitKeyTrustEngineTest.o: security/ExplicitKeyTrustEngineTest.cpp
@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(samltest_CXXFLAGS) $(CXXFLAGS) -MT security/samltest-ExplicitKeyTrustEngineTest.o -MD -MP -MF security/$(DEPDIR)/samltest-ExplicitKeyTrustEngineTest.Tpo -c -o security/samltest-ExplicitKeyTrustEngineTest.o `test -f 'security/ExplicitKeyTrustEngineTest.cpp' || echo '$(srcdir)/'`security/ExplicitKeyTrustEngineTest.cpp
@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) security/$(DEPDIR)/samltest-ExplicitKeyTrustEngineTest.Tpo security/$(DEPDIR)/samltest-ExplicitKeyTrustEngineTest.Po
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='security/ExplicitKeyTrustEngineTest.cpp' object='security/samltest-ExplicitKeyTrustEngineTest.o' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(samltest_CXXFLAGS) $(CXXFLAGS) -c -o security/samltest-ExplicitKeyTrustEngineTest.o `test -f 'security/ExplicitKeyTrustEngineTest.cpp' || echo '$(srcdir)/'`security/ExplicitKeyTrustEngineTest.cpp
security/samltest-ExplicitKeyTrustEngineTest.obj: security/ExplicitKeyTrustEngineTest.cpp
@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(samltest_CXXFLAGS) $(CXXFLAGS) -MT security/samltest-ExplicitKeyTrustEngineTest.obj -MD -MP -MF security/$(DEPDIR)/samltest-ExplicitKeyTrustEngineTest.Tpo -c -o security/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_V_at)$(am__mv) security/$(DEPDIR)/samltest-ExplicitKeyTrustEngineTest.Tpo security/$(DEPDIR)/samltest-ExplicitKeyTrustEngineTest.Po
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='security/ExplicitKeyTrustEngineTest.cpp' object='security/samltest-ExplicitKeyTrustEngineTest.obj' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(samltest_CXXFLAGS) $(CXXFLAGS) -c -o security/samltest-ExplicitKeyTrustEngineTest.obj `if test -f 'security/ExplicitKeyTrustEngineTest.cpp'; then $(CYGPATH_W) 'security/ExplicitKeyTrustEngineTest.cpp'; else $(CYGPATH_W) '$(srcdir)/security/ExplicitKeyTrustEngineTest.cpp'; fi`
security/samltest-StaticPKIXTrustEngineTest.o: security/StaticPKIXTrustEngineTest.cpp
@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(samltest_CXXFLAGS) $(CXXFLAGS) -MT security/samltest-StaticPKIXTrustEngineTest.o -MD -MP -MF security/$(DEPDIR)/samltest-StaticPKIXTrustEngineTest.Tpo -c -o security/samltest-StaticPKIXTrustEngineTest.o `test -f 'security/StaticPKIXTrustEngineTest.cpp' || echo '$(srcdir)/'`security/StaticPKIXTrustEngineTest.cpp
@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) security/$(DEPDIR)/samltest-StaticPKIXTrustEngineTest.Tpo security/$(DEPDIR)/samltest-StaticPKIXTrustEngineTest.Po
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='security/StaticPKIXTrustEngineTest.cpp' object='security/samltest-StaticPKIXTrustEngineTest.o' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(samltest_CXXFLAGS) $(CXXFLAGS) -c -o security/samltest-StaticPKIXTrustEngineTest.o `test -f 'security/StaticPKIXTrustEngineTest.cpp' || echo '$(srcdir)/'`security/StaticPKIXTrustEngineTest.cpp
security/samltest-StaticPKIXTrustEngineTest.obj: security/StaticPKIXTrustEngineTest.cpp
@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(samltest_CXXFLAGS) $(CXXFLAGS) -MT security/samltest-StaticPKIXTrustEngineTest.obj -MD -MP -MF security/$(DEPDIR)/samltest-StaticPKIXTrustEngineTest.Tpo -c -o security/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_V_at)$(am__mv) security/$(DEPDIR)/samltest-StaticPKIXTrustEngineTest.Tpo security/$(DEPDIR)/samltest-StaticPKIXTrustEngineTest.Po
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='security/StaticPKIXTrustEngineTest.cpp' object='security/samltest-StaticPKIXTrustEngineTest.obj' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(samltest_CXXFLAGS) $(CXXFLAGS) -c -o security/samltest-StaticPKIXTrustEngineTest.obj `if test -f 'security/StaticPKIXTrustEngineTest.cpp'; then $(CYGPATH_W) 'security/StaticPKIXTrustEngineTest.cpp'; else $(CYGPATH_W) '$(srcdir)/security/StaticPKIXTrustEngineTest.cpp'; fi`
saml1/core/impl/samltest-ActionTest.o: saml1/core/impl/ActionTest.cpp
@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(samltest_CXXFLAGS) $(CXXFLAGS) -MT saml1/core/impl/samltest-ActionTest.o -MD -MP -MF saml1/core/impl/$(DEPDIR)/samltest-ActionTest.Tpo -c -o saml1/core/impl/samltest-ActionTest.o `test -f 'saml1/core/impl/ActionTest.cpp' || echo '$(srcdir)/'`saml1/core/impl/ActionTest.cpp
@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) saml1/core/impl/$(DEPDIR)/samltest-ActionTest.Tpo saml1/core/impl/$(DEPDIR)/samltest-ActionTest.Po
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='saml1/core/impl/ActionTest.cpp' object='saml1/core/impl/samltest-ActionTest.o' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(samltest_CXXFLAGS) $(CXXFLAGS) -c -o saml1/core/impl/samltest-ActionTest.o `test -f 'saml1/core/impl/ActionTest.cpp' || echo '$(srcdir)/'`saml1/core/impl/ActionTest.cpp
saml1/core/impl/samltest-ActionTest.obj: saml1/core/impl/ActionTest.cpp
@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(samltest_CXXFLAGS) $(CXXFLAGS) -MT saml1/core/impl/samltest-ActionTest.obj -MD -MP -MF saml1/core/impl/$(DEPDIR)/samltest-ActionTest.Tpo -c -o saml1/core/impl/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_V_at)$(am__mv) saml1/core/impl/$(DEPDIR)/samltest-ActionTest.Tpo saml1/core/impl/$(DEPDIR)/samltest-ActionTest.Po
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='saml1/core/impl/ActionTest.cpp' object='saml1/core/impl/samltest-ActionTest.obj' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(samltest_CXXFLAGS) $(CXXFLAGS) -c -o saml1/core/impl/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`
saml1/core/impl/samltest-AdviceTest.o: saml1/core/impl/AdviceTest.cpp
@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(samltest_CXXFLAGS) $(CXXFLAGS) -MT saml1/core/impl/samltest-AdviceTest.o -MD -MP -MF saml1/core/impl/$(DEPDIR)/samltest-AdviceTest.Tpo -c -o saml1/core/impl/samltest-AdviceTest.o `test -f 'saml1/core/impl/AdviceTest.cpp' || echo '$(srcdir)/'`saml1/core/impl/AdviceTest.cpp
@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) saml1/core/impl/$(DEPDIR)/samltest-AdviceTest.Tpo saml1/core/impl/$(DEPDIR)/samltest-AdviceTest.Po
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='saml1/core/impl/AdviceTest.cpp' object='saml1/core/impl/samltest-AdviceTest.o' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(samltest_CXXFLAGS) $(CXXFLAGS) -c -o saml1/core/impl/samltest-AdviceTest.o `test -f 'saml1/core/impl/AdviceTest.cpp' || echo '$(srcdir)/'`saml1/core/impl/AdviceTest.cpp
saml1/core/impl/samltest-AdviceTest.obj: saml1/core/impl/AdviceTest.cpp
@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(samltest_CXXFLAGS) $(CXXFLAGS) -MT saml1/core/impl/samltest-AdviceTest.obj -MD -MP -MF saml1/core/impl/$(DEPDIR)/samltest-AdviceTest.Tpo -c -o saml1/core/impl/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_V_at)$(am__mv) saml1/core/impl/$(DEPDIR)/samltest-AdviceTest.Tpo saml1/core/impl/$(DEPDIR)/samltest-AdviceTest.Po
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='saml1/core/impl/AdviceTest.cpp' object='saml1/core/impl/samltest-AdviceTest.obj' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(samltest_CXXFLAGS) $(CXXFLAGS) -c -o saml1/core/impl/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`
saml1/core/impl/samltest-AssertionIDReferenceTest.o: saml1/core/impl/AssertionIDReferenceTest.cpp
@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(samltest_CXXFLAGS) $(CXXFLAGS) -MT saml1/core/impl/samltest-AssertionIDReferenceTest.o -MD -MP -MF saml1/core/impl/$(DEPDIR)/samltest-AssertionIDReferenceTest.Tpo -c -o saml1/core/impl/samltest-AssertionIDReferenceTest.o `test -f 'saml1/core/impl/AssertionIDReferenceTest.cpp' || echo '$(srcdir)/'`saml1/core/impl/AssertionIDReferenceTest.cpp
@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) saml1/core/impl/$(DEPDIR)/samltest-AssertionIDReferenceTest.Tpo saml1/core/impl/$(DEPDIR)/samltest-AssertionIDReferenceTest.Po
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='saml1/core/impl/AssertionIDReferenceTest.cpp' object='saml1/core/impl/samltest-AssertionIDReferenceTest.o' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(samltest_CXXFLAGS) $(CXXFLAGS) -c -o saml1/core/impl/samltest-AssertionIDReferenceTest.o `test -f 'saml1/core/impl/AssertionIDReferenceTest.cpp' || echo '$(srcdir)/'`saml1/core/impl/AssertionIDReferenceTest.cpp
saml1/core/impl/samltest-AssertionIDReferenceTest.obj: saml1/core/impl/AssertionIDReferenceTest.cpp
@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(samltest_CXXFLAGS) $(CXXFLAGS) -MT saml1/core/impl/samltest-AssertionIDReferenceTest.obj -MD -MP -MF saml1/core/impl/$(DEPDIR)/samltest-AssertionIDReferenceTest.Tpo -c -o saml1/core/impl/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_V_at)$(am__mv) saml1/core/impl/$(DEPDIR)/samltest-AssertionIDReferenceTest.Tpo saml1/core/impl/$(DEPDIR)/samltest-AssertionIDReferenceTest.Po
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='saml1/core/impl/AssertionIDReferenceTest.cpp' object='saml1/core/impl/samltest-AssertionIDReferenceTest.obj' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(samltest_CXXFLAGS) $(CXXFLAGS) -c -o saml1/core/impl/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`
saml1/core/impl/samltest-AssertionTest.o: saml1/core/impl/AssertionTest.cpp
@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(samltest_CXXFLAGS) $(CXXFLAGS) -MT saml1/core/impl/samltest-AssertionTest.o -MD -MP -MF saml1/core/impl/$(DEPDIR)/samltest-AssertionTest.Tpo -c -o saml1/core/impl/samltest-AssertionTest.o `test -f 'saml1/core/impl/AssertionTest.cpp' || echo '$(srcdir)/'`saml1/core/impl/AssertionTest.cpp
@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) saml1/core/impl/$(DEPDIR)/samltest-AssertionTest.Tpo saml1/core/impl/$(DEPDIR)/samltest-AssertionTest.Po
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='saml1/core/impl/AssertionTest.cpp' object='saml1/core/impl/samltest-AssertionTest.o' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(samltest_CXXFLAGS) $(CXXFLAGS) -c -o saml1/core/impl/samltest-AssertionTest.o `test -f 'saml1/core/impl/AssertionTest.cpp' || echo '$(srcdir)/'`saml1/core/impl/AssertionTest.cpp
saml1/core/impl/samltest-AssertionTest.obj: saml1/core/impl/AssertionTest.cpp
@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(samltest_CXXFLAGS) $(CXXFLAGS) -MT saml1/core/impl/samltest-AssertionTest.obj -MD -MP -MF saml1/core/impl/$(DEPDIR)/samltest-AssertionTest.Tpo -c -o saml1/core/impl/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_V_at)$(am__mv) saml1/core/impl/$(DEPDIR)/samltest-AssertionTest.Tpo saml1/core/impl/$(DEPDIR)/samltest-AssertionTest.Po
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='saml1/core/impl/AssertionTest.cpp' object='saml1/core/impl/samltest-AssertionTest.obj' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(samltest_CXXFLAGS) $(CXXFLAGS) -c -o saml1/core/impl/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`
saml1/core/impl/samltest-AttributeDesignatorTest.o: saml1/core/impl/AttributeDesignatorTest.cpp
@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(samltest_CXXFLAGS) $(CXXFLAGS) -MT saml1/core/impl/samltest-AttributeDesignatorTest.o -MD -MP -MF saml1/core/impl/$(DEPDIR)/samltest-AttributeDesignatorTest.Tpo -c -o saml1/core/impl/samltest-AttributeDesignatorTest.o `test -f 'saml1/core/impl/AttributeDesignatorTest.cpp' || echo '$(srcdir)/'`saml1/core/impl/AttributeDesignatorTest.cpp
@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) saml1/core/impl/$(DEPDIR)/samltest-AttributeDesignatorTest.Tpo saml1/core/impl/$(DEPDIR)/samltest-AttributeDesignatorTest.Po
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='saml1/core/impl/AttributeDesignatorTest.cpp' object='saml1/core/impl/samltest-AttributeDesignatorTest.o' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(samltest_CXXFLAGS) $(CXXFLAGS) -c -o saml1/core/impl/samltest-AttributeDesignatorTest.o `test -f 'saml1/core/impl/AttributeDesignatorTest.cpp' || echo '$(srcdir)/'`saml1/core/impl/AttributeDesignatorTest.cpp
saml1/core/impl/samltest-AttributeDesignatorTest.obj: saml1/core/impl/AttributeDesignatorTest.cpp
@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(samltest_CXXFLAGS) $(CXXFLAGS) -MT saml1/core/impl/samltest-AttributeDesignatorTest.obj -MD -MP -MF saml1/core/impl/$(DEPDIR)/samltest-AttributeDesignatorTest.Tpo -c -o saml1/core/impl/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_V_at)$(am__mv) saml1/core/impl/$(DEPDIR)/samltest-AttributeDesignatorTest.Tpo saml1/core/impl/$(DEPDIR)/samltest-AttributeDesignatorTest.Po
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='saml1/core/impl/AttributeDesignatorTest.cpp' object='saml1/core/impl/samltest-AttributeDesignatorTest.obj' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(samltest_CXXFLAGS) $(CXXFLAGS) -c -o saml1/core/impl/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`
saml1/core/impl/samltest-AttributeStatementTest.o: saml1/core/impl/AttributeStatementTest.cpp
@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(samltest_CXXFLAGS) $(CXXFLAGS) -MT saml1/core/impl/samltest-AttributeStatementTest.o -MD -MP -MF saml1/core/impl/$(DEPDIR)/samltest-AttributeStatementTest.Tpo -c -o saml1/core/impl/samltest-AttributeStatementTest.o `test -f 'saml1/core/impl/AttributeStatementTest.cpp' || echo '$(srcdir)/'`saml1/core/impl/AttributeStatementTest.cpp
@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) saml1/core/impl/$(DEPDIR)/samltest-AttributeStatementTest.Tpo saml1/core/impl/$(DEPDIR)/samltest-AttributeStatementTest.Po
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='saml1/core/impl/AttributeStatementTest.cpp' object='saml1/core/impl/samltest-AttributeStatementTest.o' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(samltest_CXXFLAGS) $(CXXFLAGS) -c -o saml1/core/impl/samltest-AttributeStatementTest.o `test -f 'saml1/core/impl/AttributeStatementTest.cpp' || echo '$(srcdir)/'`saml1/core/impl/AttributeStatementTest.cpp
saml1/core/impl/samltest-AttributeStatementTest.obj: saml1/core/impl/AttributeStatementTest.cpp
@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(samltest_CXXFLAGS) $(CXXFLAGS) -MT saml1/core/impl/samltest-AttributeStatementTest.obj -MD -MP -MF saml1/core/impl/$(DEPDIR)/samltest-AttributeStatementTest.Tpo -c -o saml1/core/impl/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_V_at)$(am__mv) saml1/core/impl/$(DEPDIR)/samltest-AttributeStatementTest.Tpo saml1/core/impl/$(DEPDIR)/samltest-AttributeStatementTest.Po
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='saml1/core/impl/AttributeStatementTest.cpp' object='saml1/core/impl/samltest-AttributeStatementTest.obj' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(samltest_CXXFLAGS) $(CXXFLAGS) -c -o saml1/core/impl/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`
saml1/core/impl/samltest-AttributeTest.o: saml1/core/impl/AttributeTest.cpp
@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(samltest_CXXFLAGS) $(CXXFLAGS) -MT saml1/core/impl/samltest-AttributeTest.o -MD -MP -MF saml1/core/impl/$(DEPDIR)/samltest-AttributeTest.Tpo -c -o saml1/core/impl/samltest-AttributeTest.o `test -f 'saml1/core/impl/AttributeTest.cpp' || echo '$(srcdir)/'`saml1/core/impl/AttributeTest.cpp
@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) saml1/core/impl/$(DEPDIR)/samltest-AttributeTest.Tpo saml1/core/impl/$(DEPDIR)/samltest-AttributeTest.Po
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='saml1/core/impl/AttributeTest.cpp' object='saml1/core/impl/samltest-AttributeTest.o' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(samltest_CXXFLAGS) $(CXXFLAGS) -c -o saml1/core/impl/samltest-AttributeTest.o `test -f 'saml1/core/impl/AttributeTest.cpp' || echo '$(srcdir)/'`saml1/core/impl/AttributeTest.cpp
saml1/core/impl/samltest-AttributeTest.obj: saml1/core/impl/AttributeTest.cpp
@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(samltest_CXXFLAGS) $(CXXFLAGS) -MT saml1/core/impl/samltest-AttributeTest.obj -MD -MP -MF saml1/core/impl/$(DEPDIR)/samltest-AttributeTest.Tpo -c -o saml1/core/impl/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_V_at)$(am__mv) saml1/core/impl/$(DEPDIR)/samltest-AttributeTest.Tpo saml1/core/impl/$(DEPDIR)/samltest-AttributeTest.Po
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='saml1/core/impl/AttributeTest.cpp' object='saml1/core/impl/samltest-AttributeTest.obj' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(samltest_CXXFLAGS) $(CXXFLAGS) -c -o saml1/core/impl/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`
saml1/core/impl/samltest-AudienceRestrictionConditionTest.o: saml1/core/impl/AudienceRestrictionConditionTest.cpp
@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(samltest_CXXFLAGS) $(CXXFLAGS) -MT saml1/core/impl/samltest-AudienceRestrictionConditionTest.o -MD -MP -MF saml1/core/impl/$(DEPDIR)/samltest-AudienceRestrictionConditionTest.Tpo -c -o saml1/core/impl/samltest-AudienceRestrictionConditionTest.o `test -f 'saml1/core/impl/AudienceRestrictionConditionTest.cpp' || echo '$(srcdir)/'`saml1/core/impl/AudienceRestrictionConditionTest.cpp
@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) saml1/core/impl/$(DEPDIR)/samltest-AudienceRestrictionConditionTest.Tpo saml1/core/impl/$(DEPDIR)/samltest-AudienceRestrictionConditionTest.Po
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='saml1/core/impl/AudienceRestrictionConditionTest.cpp' object='saml1/core/impl/samltest-AudienceRestrictionConditionTest.o' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(samltest_CXXFLAGS) $(CXXFLAGS) -c -o saml1/core/impl/samltest-AudienceRestrictionConditionTest.o `test -f 'saml1/core/impl/AudienceRestrictionConditionTest.cpp' || echo '$(srcdir)/'`saml1/core/impl/AudienceRestrictionConditionTest.cpp
saml1/core/impl/samltest-AudienceRestrictionConditionTest.obj: saml1/core/impl/AudienceRestrictionConditionTest.cpp
@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(samltest_CXXFLAGS) $(CXXFLAGS) -MT saml1/core/impl/samltest-AudienceRestrictionConditionTest.obj -MD -MP -MF saml1/core/impl/$(DEPDIR)/samltest-AudienceRestrictionConditionTest.Tpo -c -o saml1/core/impl/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_V_at)$(am__mv) saml1/core/impl/$(DEPDIR)/samltest-AudienceRestrictionConditionTest.Tpo saml1/core/impl/$(DEPDIR)/samltest-AudienceRestrictionConditionTest.Po
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='saml1/core/impl/AudienceRestrictionConditionTest.cpp' object='saml1/core/impl/samltest-AudienceRestrictionConditionTest.obj' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(samltest_CXXFLAGS) $(CXXFLAGS) -c -o saml1/core/impl/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`
saml1/core/impl/samltest-AudienceTest.o: saml1/core/impl/AudienceTest.cpp
@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(samltest_CXXFLAGS) $(CXXFLAGS) -MT saml1/core/impl/samltest-AudienceTest.o -MD -MP -MF saml1/core/impl/$(DEPDIR)/samltest-AudienceTest.Tpo -c -o saml1/core/impl/samltest-AudienceTest.o `test -f 'saml1/core/impl/AudienceTest.cpp' || echo '$(srcdir)/'`saml1/core/impl/AudienceTest.cpp
@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) saml1/core/impl/$(DEPDIR)/samltest-AudienceTest.Tpo saml1/core/impl/$(DEPDIR)/samltest-AudienceTest.Po
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='saml1/core/impl/AudienceTest.cpp' object='saml1/core/impl/samltest-AudienceTest.o' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(samltest_CXXFLAGS) $(CXXFLAGS) -c -o saml1/core/impl/samltest-AudienceTest.o `test -f 'saml1/core/impl/AudienceTest.cpp' || echo '$(srcdir)/'`saml1/core/impl/AudienceTest.cpp
saml1/core/impl/samltest-AudienceTest.obj: saml1/core/impl/AudienceTest.cpp
@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(samltest_CXXFLAGS) $(CXXFLAGS) -MT saml1/core/impl/samltest-AudienceTest.obj -MD -MP -MF saml1/core/impl/$(DEPDIR)/samltest-AudienceTest.Tpo -c -o saml1/core/impl/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_V_at)$(am__mv) saml1/core/impl/$(DEPDIR)/samltest-AudienceTest.Tpo saml1/core/impl/$(DEPDIR)/samltest-AudienceTest.Po
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='saml1/core/impl/AudienceTest.cpp' object='saml1/core/impl/samltest-AudienceTest.obj' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(samltest_CXXFLAGS) $(CXXFLAGS) -c -o saml1/core/impl/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`
saml1/core/impl/samltest-AuthenticationStatementTest.o: saml1/core/impl/AuthenticationStatementTest.cpp
@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(samltest_CXXFLAGS) $(CXXFLAGS) -MT saml1/core/impl/samltest-AuthenticationStatementTest.o -MD -MP -MF saml1/core/impl/$(DEPDIR)/samltest-AuthenticationStatementTest.Tpo -c -o saml1/core/impl/samltest-AuthenticationStatementTest.o `test -f 'saml1/core/impl/AuthenticationStatementTest.cpp' || echo '$(srcdir)/'`saml1/core/impl/AuthenticationStatementTest.cpp
@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) saml1/core/impl/$(DEPDIR)/samltest-AuthenticationStatementTest.Tpo saml1/core/impl/$(DEPDIR)/samltest-AuthenticationStatementTest.Po
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='saml1/core/impl/AuthenticationStatementTest.cpp' object='saml1/core/impl/samltest-AuthenticationStatementTest.o' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(samltest_CXXFLAGS) $(CXXFLAGS) -c -o saml1/core/impl/samltest-AuthenticationStatementTest.o `test -f 'saml1/core/impl/AuthenticationStatementTest.cpp' || echo '$(srcdir)/'`saml1/core/impl/AuthenticationStatementTest.cpp
saml1/core/impl/samltest-AuthenticationStatementTest.obj: saml1/core/impl/AuthenticationStatementTest.cpp
@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(samltest_CXXFLAGS) $(CXXFLAGS) -MT saml1/core/impl/samltest-AuthenticationStatementTest.obj -MD -MP -MF saml1/core/impl/$(DEPDIR)/samltest-AuthenticationStatementTest.Tpo -c -o saml1/core/impl/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_V_at)$(am__mv) saml1/core/impl/$(DEPDIR)/samltest-AuthenticationStatementTest.Tpo saml1/core/impl/$(DEPDIR)/samltest-AuthenticationStatementTest.Po
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='saml1/core/impl/AuthenticationStatementTest.cpp' object='saml1/core/impl/samltest-AuthenticationStatementTest.obj' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(samltest_CXXFLAGS) $(CXXFLAGS) -c -o saml1/core/impl/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`
saml1/binding/samltest-SAML1ArtifactTest.o: saml1/binding/SAML1ArtifactTest.cpp
@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(samltest_CXXFLAGS) $(CXXFLAGS) -MT saml1/binding/samltest-SAML1ArtifactTest.o -MD -MP -MF saml1/binding/$(DEPDIR)/samltest-SAML1ArtifactTest.Tpo -c -o saml1/binding/samltest-SAML1ArtifactTest.o `test -f 'saml1/binding/SAML1ArtifactTest.cpp' || echo '$(srcdir)/'`saml1/binding/SAML1ArtifactTest.cpp
@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) saml1/binding/$(DEPDIR)/samltest-SAML1ArtifactTest.Tpo saml1/binding/$(DEPDIR)/samltest-SAML1ArtifactTest.Po
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='saml1/binding/SAML1ArtifactTest.cpp' object='saml1/binding/samltest-SAML1ArtifactTest.o' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(samltest_CXXFLAGS) $(CXXFLAGS) -c -o saml1/binding/samltest-SAML1ArtifactTest.o `test -f 'saml1/binding/SAML1ArtifactTest.cpp' || echo '$(srcdir)/'`saml1/binding/SAML1ArtifactTest.cpp
saml1/binding/samltest-SAML1ArtifactTest.obj: saml1/binding/SAML1ArtifactTest.cpp
@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(samltest_CXXFLAGS) $(CXXFLAGS) -MT saml1/binding/samltest-SAML1ArtifactTest.obj -MD -MP -MF saml1/binding/$(DEPDIR)/samltest-SAML1ArtifactTest.Tpo -c -o saml1/binding/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_V_at)$(am__mv) saml1/binding/$(DEPDIR)/samltest-SAML1ArtifactTest.Tpo saml1/binding/$(DEPDIR)/samltest-SAML1ArtifactTest.Po
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='saml1/binding/SAML1ArtifactTest.cpp' object='saml1/binding/samltest-SAML1ArtifactTest.obj' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(samltest_CXXFLAGS) $(CXXFLAGS) -c -o saml1/binding/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`
saml1/binding/samltest-SAML1POSTTest.o: saml1/binding/SAML1POSTTest.cpp
@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(samltest_CXXFLAGS) $(CXXFLAGS) -MT saml1/binding/samltest-SAML1POSTTest.o -MD -MP -MF saml1/binding/$(DEPDIR)/samltest-SAML1POSTTest.Tpo -c -o saml1/binding/samltest-SAML1POSTTest.o `test -f 'saml1/binding/SAML1POSTTest.cpp' || echo '$(srcdir)/'`saml1/binding/SAML1POSTTest.cpp
@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) saml1/binding/$(DEPDIR)/samltest-SAML1POSTTest.Tpo saml1/binding/$(DEPDIR)/samltest-SAML1POSTTest.Po
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='saml1/binding/SAML1POSTTest.cpp' object='saml1/binding/samltest-SAML1POSTTest.o' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(samltest_CXXFLAGS) $(CXXFLAGS) -c -o saml1/binding/samltest-SAML1POSTTest.o `test -f 'saml1/binding/SAML1POSTTest.cpp' || echo '$(srcdir)/'`saml1/binding/SAML1POSTTest.cpp
saml1/binding/samltest-SAML1POSTTest.obj: saml1/binding/SAML1POSTTest.cpp
@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(samltest_CXXFLAGS) $(CXXFLAGS) -MT saml1/binding/samltest-SAML1POSTTest.obj -MD -MP -MF saml1/binding/$(DEPDIR)/samltest-SAML1POSTTest.Tpo -c -o saml1/binding/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_V_at)$(am__mv) saml1/binding/$(DEPDIR)/samltest-SAML1POSTTest.Tpo saml1/binding/$(DEPDIR)/samltest-SAML1POSTTest.Po
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='saml1/binding/SAML1POSTTest.cpp' object='saml1/binding/samltest-SAML1POSTTest.obj' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(samltest_CXXFLAGS) $(CXXFLAGS) -c -o saml1/binding/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`
saml1/profile/samltest-SAML1PolicyTest.o: saml1/profile/SAML1PolicyTest.cpp
@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(samltest_CXXFLAGS) $(CXXFLAGS) -MT saml1/profile/samltest-SAML1PolicyTest.o -MD -MP -MF saml1/profile/$(DEPDIR)/samltest-SAML1PolicyTest.Tpo -c -o saml1/profile/samltest-SAML1PolicyTest.o `test -f 'saml1/profile/SAML1PolicyTest.cpp' || echo '$(srcdir)/'`saml1/profile/SAML1PolicyTest.cpp
@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) saml1/profile/$(DEPDIR)/samltest-SAML1PolicyTest.Tpo saml1/profile/$(DEPDIR)/samltest-SAML1PolicyTest.Po
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='saml1/profile/SAML1PolicyTest.cpp' object='saml1/profile/samltest-SAML1PolicyTest.o' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(samltest_CXXFLAGS) $(CXXFLAGS) -c -o saml1/profile/samltest-SAML1PolicyTest.o `test -f 'saml1/profile/SAML1PolicyTest.cpp' || echo '$(srcdir)/'`saml1/profile/SAML1PolicyTest.cpp
saml1/profile/samltest-SAML1PolicyTest.obj: saml1/profile/SAML1PolicyTest.cpp
@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(samltest_CXXFLAGS) $(CXXFLAGS) -MT saml1/profile/samltest-SAML1PolicyTest.obj -MD -MP -MF saml1/profile/$(DEPDIR)/samltest-SAML1PolicyTest.Tpo -c -o saml1/profile/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_V_at)$(am__mv) saml1/profile/$(DEPDIR)/samltest-SAML1PolicyTest.Tpo saml1/profile/$(DEPDIR)/samltest-SAML1PolicyTest.Po
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='saml1/profile/SAML1PolicyTest.cpp' object='saml1/profile/samltest-SAML1PolicyTest.obj' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(samltest_CXXFLAGS) $(CXXFLAGS) -c -o saml1/profile/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`
saml2/core/impl/samltest-Action20Test.o: saml2/core/impl/Action20Test.cpp
@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(samltest_CXXFLAGS) $(CXXFLAGS) -MT saml2/core/impl/samltest-Action20Test.o -MD -MP -MF saml2/core/impl/$(DEPDIR)/samltest-Action20Test.Tpo -c -o saml2/core/impl/samltest-Action20Test.o `test -f 'saml2/core/impl/Action20Test.cpp' || echo '$(srcdir)/'`saml2/core/impl/Action20Test.cpp
@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) saml2/core/impl/$(DEPDIR)/samltest-Action20Test.Tpo saml2/core/impl/$(DEPDIR)/samltest-Action20Test.Po
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='saml2/core/impl/Action20Test.cpp' object='saml2/core/impl/samltest-Action20Test.o' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(samltest_CXXFLAGS) $(CXXFLAGS) -c -o saml2/core/impl/samltest-Action20Test.o `test -f 'saml2/core/impl/Action20Test.cpp' || echo '$(srcdir)/'`saml2/core/impl/Action20Test.cpp
saml2/core/impl/samltest-Action20Test.obj: saml2/core/impl/Action20Test.cpp
@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(samltest_CXXFLAGS) $(CXXFLAGS) -MT saml2/core/impl/samltest-Action20Test.obj -MD -MP -MF saml2/core/impl/$(DEPDIR)/samltest-Action20Test.Tpo -c -o saml2/core/impl/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_V_at)$(am__mv) saml2/core/impl/$(DEPDIR)/samltest-Action20Test.Tpo saml2/core/impl/$(DEPDIR)/samltest-Action20Test.Po
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='saml2/core/impl/Action20Test.cpp' object='saml2/core/impl/samltest-Action20Test.obj' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(samltest_CXXFLAGS) $(CXXFLAGS) -c -o saml2/core/impl/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`
saml2/core/impl/samltest-Advice20Test.o: saml2/core/impl/Advice20Test.cpp
@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(samltest_CXXFLAGS) $(CXXFLAGS) -MT saml2/core/impl/samltest-Advice20Test.o -MD -MP -MF saml2/core/impl/$(DEPDIR)/samltest-Advice20Test.Tpo -c -o saml2/core/impl/samltest-Advice20Test.o `test -f 'saml2/core/impl/Advice20Test.cpp' || echo '$(srcdir)/'`saml2/core/impl/Advice20Test.cpp
@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) saml2/core/impl/$(DEPDIR)/samltest-Advice20Test.Tpo saml2/core/impl/$(DEPDIR)/samltest-Advice20Test.Po
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='saml2/core/impl/Advice20Test.cpp' object='saml2/core/impl/samltest-Advice20Test.o' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(samltest_CXXFLAGS) $(CXXFLAGS) -c -o saml2/core/impl/samltest-Advice20Test.o `test -f 'saml2/core/impl/Advice20Test.cpp' || echo '$(srcdir)/'`saml2/core/impl/Advice20Test.cpp
saml2/core/impl/samltest-Advice20Test.obj: saml2/core/impl/Advice20Test.cpp
@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(samltest_CXXFLAGS) $(CXXFLAGS) -MT saml2/core/impl/samltest-Advice20Test.obj -MD -MP -MF saml2/core/impl/$(DEPDIR)/samltest-Advice20Test.Tpo -c -o saml2/core/impl/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_V_at)$(am__mv) saml2/core/impl/$(DEPDIR)/samltest-Advice20Test.Tpo saml2/core/impl/$(DEPDIR)/samltest-Advice20Test.Po
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='saml2/core/impl/Advice20Test.cpp' object='saml2/core/impl/samltest-Advice20Test.obj' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(samltest_CXXFLAGS) $(CXXFLAGS) -c -o saml2/core/impl/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`
saml2/core/impl/samltest-Artifact20Test.o: saml2/core/impl/Artifact20Test.cpp
@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(samltest_CXXFLAGS) $(CXXFLAGS) -MT saml2/core/impl/samltest-Artifact20Test.o -MD -MP -MF saml2/core/impl/$(DEPDIR)/samltest-Artifact20Test.Tpo -c -o saml2/core/impl/samltest-Artifact20Test.o `test -f 'saml2/core/impl/Artifact20Test.cpp' || echo '$(srcdir)/'`saml2/core/impl/Artifact20Test.cpp
@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) saml2/core/impl/$(DEPDIR)/samltest-Artifact20Test.Tpo saml2/core/impl/$(DEPDIR)/samltest-Artifact20Test.Po
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='saml2/core/impl/Artifact20Test.cpp' object='saml2/core/impl/samltest-Artifact20Test.o' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(samltest_CXXFLAGS) $(CXXFLAGS) -c -o saml2/core/impl/samltest-Artifact20Test.o `test -f 'saml2/core/impl/Artifact20Test.cpp' || echo '$(srcdir)/'`saml2/core/impl/Artifact20Test.cpp
saml2/core/impl/samltest-Artifact20Test.obj: saml2/core/impl/Artifact20Test.cpp
@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(samltest_CXXFLAGS) $(CXXFLAGS) -MT saml2/core/impl/samltest-Artifact20Test.obj -MD -MP -MF saml2/core/impl/$(DEPDIR)/samltest-Artifact20Test.Tpo -c -o saml2/core/impl/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_V_at)$(am__mv) saml2/core/impl/$(DEPDIR)/samltest-Artifact20Test.Tpo saml2/core/impl/$(DEPDIR)/samltest-Artifact20Test.Po
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='saml2/core/impl/Artifact20Test.cpp' object='saml2/core/impl/samltest-Artifact20Test.obj' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(samltest_CXXFLAGS) $(CXXFLAGS) -c -o saml2/core/impl/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`
saml2/core/impl/samltest-ArtifactResolve20Test.o: saml2/core/impl/ArtifactResolve20Test.cpp
@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(samltest_CXXFLAGS) $(CXXFLAGS) -MT saml2/core/impl/samltest-ArtifactResolve20Test.o -MD -MP -MF saml2/core/impl/$(DEPDIR)/samltest-ArtifactResolve20Test.Tpo -c -o saml2/core/impl/samltest-ArtifactResolve20Test.o `test -f 'saml2/core/impl/ArtifactResolve20Test.cpp' || echo '$(srcdir)/'`saml2/core/impl/ArtifactResolve20Test.cpp
@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) saml2/core/impl/$(DEPDIR)/samltest-ArtifactResolve20Test.Tpo saml2/core/impl/$(DEPDIR)/samltest-ArtifactResolve20Test.Po
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='saml2/core/impl/ArtifactResolve20Test.cpp' object='saml2/core/impl/samltest-ArtifactResolve20Test.o' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(samltest_CXXFLAGS) $(CXXFLAGS) -c -o saml2/core/impl/samltest-ArtifactResolve20Test.o `test -f 'saml2/core/impl/ArtifactResolve20Test.cpp' || echo '$(srcdir)/'`saml2/core/impl/ArtifactResolve20Test.cpp
saml2/core/impl/samltest-ArtifactResolve20Test.obj: saml2/core/impl/ArtifactResolve20Test.cpp
@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(samltest_CXXFLAGS) $(CXXFLAGS) -MT saml2/core/impl/samltest-ArtifactResolve20Test.obj -MD -MP -MF saml2/core/impl/$(DEPDIR)/samltest-ArtifactResolve20Test.Tpo -c -o saml2/core/impl/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_V_at)$(am__mv) saml2/core/impl/$(DEPDIR)/samltest-ArtifactResolve20Test.Tpo saml2/core/impl/$(DEPDIR)/samltest-ArtifactResolve20Test.Po
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='saml2/core/impl/ArtifactResolve20Test.cpp' object='saml2/core/impl/samltest-ArtifactResolve20Test.obj' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(samltest_CXXFLAGS) $(CXXFLAGS) -c -o saml2/core/impl/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`
saml2/core/impl/samltest-ArtifactResponse20Test.o: saml2/core/impl/ArtifactResponse20Test.cpp
@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(samltest_CXXFLAGS) $(CXXFLAGS) -MT saml2/core/impl/samltest-ArtifactResponse20Test.o -MD -MP -MF saml2/core/impl/$(DEPDIR)/samltest-ArtifactResponse20Test.Tpo -c -o saml2/core/impl/samltest-ArtifactResponse20Test.o `test -f 'saml2/core/impl/ArtifactResponse20Test.cpp' || echo '$(srcdir)/'`saml2/core/impl/ArtifactResponse20Test.cpp
@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) saml2/core/impl/$(DEPDIR)/samltest-ArtifactResponse20Test.Tpo saml2/core/impl/$(DEPDIR)/samltest-ArtifactResponse20Test.Po
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='saml2/core/impl/ArtifactResponse20Test.cpp' object='saml2/core/impl/samltest-ArtifactResponse20Test.o' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(samltest_CXXFLAGS) $(CXXFLAGS) -c -o saml2/core/impl/samltest-ArtifactResponse20Test.o `test -f 'saml2/core/impl/ArtifactResponse20Test.cpp' || echo '$(srcdir)/'`saml2/core/impl/ArtifactResponse20Test.cpp
saml2/core/impl/samltest-ArtifactResponse20Test.obj: saml2/core/impl/ArtifactResponse20Test.cpp
@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(samltest_CXXFLAGS) $(CXXFLAGS) -MT saml2/core/impl/samltest-ArtifactResponse20Test.obj -MD -MP -MF saml2/core/impl/$(DEPDIR)/samltest-ArtifactResponse20Test.Tpo -c -o saml2/core/impl/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_V_at)$(am__mv) saml2/core/impl/$(DEPDIR)/samltest-ArtifactResponse20Test.Tpo saml2/core/impl/$(DEPDIR)/samltest-ArtifactResponse20Test.Po
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='saml2/core/impl/ArtifactResponse20Test.cpp' object='saml2/core/impl/samltest-ArtifactResponse20Test.obj' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(samltest_CXXFLAGS) $(CXXFLAGS) -c -o saml2/core/impl/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`
saml2/core/impl/samltest-Assertion20Test.o: saml2/core/impl/Assertion20Test.cpp
@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(samltest_CXXFLAGS) $(CXXFLAGS) -MT saml2/core/impl/samltest-Assertion20Test.o -MD -MP -MF saml2/core/impl/$(DEPDIR)/samltest-Assertion20Test.Tpo -c -o saml2/core/impl/samltest-Assertion20Test.o `test -f 'saml2/core/impl/Assertion20Test.cpp' || echo '$(srcdir)/'`saml2/core/impl/Assertion20Test.cpp
@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) saml2/core/impl/$(DEPDIR)/samltest-Assertion20Test.Tpo saml2/core/impl/$(DEPDIR)/samltest-Assertion20Test.Po
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='saml2/core/impl/Assertion20Test.cpp' object='saml2/core/impl/samltest-Assertion20Test.o' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(samltest_CXXFLAGS) $(CXXFLAGS) -c -o saml2/core/impl/samltest-Assertion20Test.o `test -f 'saml2/core/impl/Assertion20Test.cpp' || echo '$(srcdir)/'`saml2/core/impl/Assertion20Test.cpp
saml2/core/impl/samltest-Assertion20Test.obj: saml2/core/impl/Assertion20Test.cpp
@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(samltest_CXXFLAGS) $(CXXFLAGS) -MT saml2/core/impl/samltest-Assertion20Test.obj -MD -MP -MF saml2/core/impl/$(DEPDIR)/samltest-Assertion20Test.Tpo -c -o saml2/core/impl/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_V_at)$(am__mv) saml2/core/impl/$(DEPDIR)/samltest-Assertion20Test.Tpo saml2/core/impl/$(DEPDIR)/samltest-Assertion20Test.Po
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='saml2/core/impl/Assertion20Test.cpp' object='saml2/core/impl/samltest-Assertion20Test.obj' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(samltest_CXXFLAGS) $(CXXFLAGS) -c -o saml2/core/impl/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`
saml2/core/impl/samltest-AssertionIDRef20Test.o: saml2/core/impl/AssertionIDRef20Test.cpp
@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(samltest_CXXFLAGS) $(CXXFLAGS) -MT saml2/core/impl/samltest-AssertionIDRef20Test.o -MD -MP -MF saml2/core/impl/$(DEPDIR)/samltest-AssertionIDRef20Test.Tpo -c -o saml2/core/impl/samltest-AssertionIDRef20Test.o `test -f 'saml2/core/impl/AssertionIDRef20Test.cpp' || echo '$(srcdir)/'`saml2/core/impl/AssertionIDRef20Test.cpp
@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) saml2/core/impl/$(DEPDIR)/samltest-AssertionIDRef20Test.Tpo saml2/core/impl/$(DEPDIR)/samltest-AssertionIDRef20Test.Po
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='saml2/core/impl/AssertionIDRef20Test.cpp' object='saml2/core/impl/samltest-AssertionIDRef20Test.o' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(samltest_CXXFLAGS) $(CXXFLAGS) -c -o saml2/core/impl/samltest-AssertionIDRef20Test.o `test -f 'saml2/core/impl/AssertionIDRef20Test.cpp' || echo '$(srcdir)/'`saml2/core/impl/AssertionIDRef20Test.cpp
saml2/core/impl/samltest-AssertionIDRef20Test.obj: saml2/core/impl/AssertionIDRef20Test.cpp
@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(samltest_CXXFLAGS) $(CXXFLAGS) -MT saml2/core/impl/samltest-AssertionIDRef20Test.obj -MD -MP -MF saml2/core/impl/$(DEPDIR)/samltest-AssertionIDRef20Test.Tpo -c -o saml2/core/impl/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_V_at)$(am__mv) saml2/core/impl/$(DEPDIR)/samltest-AssertionIDRef20Test.Tpo saml2/core/impl/$(DEPDIR)/samltest-AssertionIDRef20Test.Po
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='saml2/core/impl/AssertionIDRef20Test.cpp' object='saml2/core/impl/samltest-AssertionIDRef20Test.obj' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(samltest_CXXFLAGS) $(CXXFLAGS) -c -o saml2/core/impl/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`
saml2/core/impl/samltest-AssertionIDRequest20Test.o: saml2/core/impl/AssertionIDRequest20Test.cpp
@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(samltest_CXXFLAGS) $(CXXFLAGS) -MT saml2/core/impl/samltest-AssertionIDRequest20Test.o -MD -MP -MF saml2/core/impl/$(DEPDIR)/samltest-AssertionIDRequest20Test.Tpo -c -o saml2/core/impl/samltest-AssertionIDRequest20Test.o `test -f 'saml2/core/impl/AssertionIDRequest20Test.cpp' || echo '$(srcdir)/'`saml2/core/impl/AssertionIDRequest20Test.cpp
@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) saml2/core/impl/$(DEPDIR)/samltest-AssertionIDRequest20Test.Tpo saml2/core/impl/$(DEPDIR)/samltest-AssertionIDRequest20Test.Po
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='saml2/core/impl/AssertionIDRequest20Test.cpp' object='saml2/core/impl/samltest-AssertionIDRequest20Test.o' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(samltest_CXXFLAGS) $(CXXFLAGS) -c -o saml2/core/impl/samltest-AssertionIDRequest20Test.o `test -f 'saml2/core/impl/AssertionIDRequest20Test.cpp' || echo '$(srcdir)/'`saml2/core/impl/AssertionIDRequest20Test.cpp
saml2/core/impl/samltest-AssertionIDRequest20Test.obj: saml2/core/impl/AssertionIDRequest20Test.cpp
@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(samltest_CXXFLAGS) $(CXXFLAGS) -MT saml2/core/impl/samltest-AssertionIDRequest20Test.obj -MD -MP -MF saml2/core/impl/$(DEPDIR)/samltest-AssertionIDRequest20Test.Tpo -c -o saml2/core/impl/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_V_at)$(am__mv) saml2/core/impl/$(DEPDIR)/samltest-AssertionIDRequest20Test.Tpo saml2/core/impl/$(DEPDIR)/samltest-AssertionIDRequest20Test.Po
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='saml2/core/impl/AssertionIDRequest20Test.cpp' object='saml2/core/impl/samltest-AssertionIDRequest20Test.obj' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(samltest_CXXFLAGS) $(CXXFLAGS) -c -o saml2/core/impl/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`
saml2/core/impl/samltest-AssertionURIRef20Test.o: saml2/core/impl/AssertionURIRef20Test.cpp
@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(samltest_CXXFLAGS) $(CXXFLAGS) -MT saml2/core/impl/samltest-AssertionURIRef20Test.o -MD -MP -MF saml2/core/impl/$(DEPDIR)/samltest-AssertionURIRef20Test.Tpo -c -o saml2/core/impl/samltest-AssertionURIRef20Test.o `test -f 'saml2/core/impl/AssertionURIRef20Test.cpp' || echo '$(srcdir)/'`saml2/core/impl/AssertionURIRef20Test.cpp
@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) saml2/core/impl/$(DEPDIR)/samltest-AssertionURIRef20Test.Tpo saml2/core/impl/$(DEPDIR)/samltest-AssertionURIRef20Test.Po
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='saml2/core/impl/AssertionURIRef20Test.cpp' object='saml2/core/impl/samltest-AssertionURIRef20Test.o' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(samltest_CXXFLAGS) $(CXXFLAGS) -c -o saml2/core/impl/samltest-AssertionURIRef20Test.o `test -f 'saml2/core/impl/AssertionURIRef20Test.cpp' || echo '$(srcdir)/'`saml2/core/impl/AssertionURIRef20Test.cpp
saml2/core/impl/samltest-AssertionURIRef20Test.obj: saml2/core/impl/AssertionURIRef20Test.cpp
@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(samltest_CXXFLAGS) $(CXXFLAGS) -MT saml2/core/impl/samltest-AssertionURIRef20Test.obj -MD -MP -MF saml2/core/impl/$(DEPDIR)/samltest-AssertionURIRef20Test.Tpo -c -o saml2/core/impl/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_V_at)$(am__mv) saml2/core/impl/$(DEPDIR)/samltest-AssertionURIRef20Test.Tpo saml2/core/impl/$(DEPDIR)/samltest-AssertionURIRef20Test.Po
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='saml2/core/impl/AssertionURIRef20Test.cpp' object='saml2/core/impl/samltest-AssertionURIRef20Test.obj' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(samltest_CXXFLAGS) $(CXXFLAGS) -c -o saml2/core/impl/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`
saml2/core/impl/samltest-Attribute20Test.o: saml2/core/impl/Attribute20Test.cpp
@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(samltest_CXXFLAGS) $(CXXFLAGS) -MT saml2/core/impl/samltest-Attribute20Test.o -MD -MP -MF saml2/core/impl/$(DEPDIR)/samltest-Attribute20Test.Tpo -c -o saml2/core/impl/samltest-Attribute20Test.o `test -f 'saml2/core/impl/Attribute20Test.cpp' || echo '$(srcdir)/'`saml2/core/impl/Attribute20Test.cpp
@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) saml2/core/impl/$(DEPDIR)/samltest-Attribute20Test.Tpo saml2/core/impl/$(DEPDIR)/samltest-Attribute20Test.Po
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='saml2/core/impl/Attribute20Test.cpp' object='saml2/core/impl/samltest-Attribute20Test.o' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(samltest_CXXFLAGS) $(CXXFLAGS) -c -o saml2/core/impl/samltest-Attribute20Test.o `test -f 'saml2/core/impl/Attribute20Test.cpp' || echo '$(srcdir)/'`saml2/core/impl/Attribute20Test.cpp
saml2/core/impl/samltest-Attribute20Test.obj: saml2/core/impl/Attribute20Test.cpp
@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(samltest_CXXFLAGS) $(CXXFLAGS) -MT saml2/core/impl/samltest-Attribute20Test.obj -MD -MP -MF saml2/core/impl/$(DEPDIR)/samltest-Attribute20Test.Tpo -c -o saml2/core/impl/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_V_at)$(am__mv) saml2/core/impl/$(DEPDIR)/samltest-Attribute20Test.Tpo saml2/core/impl/$(DEPDIR)/samltest-Attribute20Test.Po
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='saml2/core/impl/Attribute20Test.cpp' object='saml2/core/impl/samltest-Attribute20Test.obj' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(samltest_CXXFLAGS) $(CXXFLAGS) -c -o saml2/core/impl/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`
saml2/core/impl/samltest-AttributeQuery20Test.o: saml2/core/impl/AttributeQuery20Test.cpp
@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(samltest_CXXFLAGS) $(CXXFLAGS) -MT saml2/core/impl/samltest-AttributeQuery20Test.o -MD -MP -MF saml2/core/impl/$(DEPDIR)/samltest-AttributeQuery20Test.Tpo -c -o saml2/core/impl/samltest-AttributeQuery20Test.o `test -f 'saml2/core/impl/AttributeQuery20Test.cpp' || echo '$(srcdir)/'`saml2/core/impl/AttributeQuery20Test.cpp
@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) saml2/core/impl/$(DEPDIR)/samltest-AttributeQuery20Test.Tpo saml2/core/impl/$(DEPDIR)/samltest-AttributeQuery20Test.Po
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='saml2/core/impl/AttributeQuery20Test.cpp' object='saml2/core/impl/samltest-AttributeQuery20Test.o' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(samltest_CXXFLAGS) $(CXXFLAGS) -c -o saml2/core/impl/samltest-AttributeQuery20Test.o `test -f 'saml2/core/impl/AttributeQuery20Test.cpp' || echo '$(srcdir)/'`saml2/core/impl/AttributeQuery20Test.cpp
saml2/core/impl/samltest-AttributeQuery20Test.obj: saml2/core/impl/AttributeQuery20Test.cpp
@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(samltest_CXXFLAGS) $(CXXFLAGS) -MT saml2/core/impl/samltest-AttributeQuery20Test.obj -MD -MP -MF saml2/core/impl/$(DEPDIR)/samltest-AttributeQuery20Test.Tpo -c -o saml2/core/impl/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_V_at)$(am__mv) saml2/core/impl/$(DEPDIR)/samltest-AttributeQuery20Test.Tpo saml2/core/impl/$(DEPDIR)/samltest-AttributeQuery20Test.Po
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='saml2/core/impl/AttributeQuery20Test.cpp' object='saml2/core/impl/samltest-AttributeQuery20Test.obj' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(samltest_CXXFLAGS) $(CXXFLAGS) -c -o saml2/core/impl/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`
saml2/core/impl/samltest-AttributeStatement20Test.o: saml2/core/impl/AttributeStatement20Test.cpp
@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(samltest_CXXFLAGS) $(CXXFLAGS) -MT saml2/core/impl/samltest-AttributeStatement20Test.o -MD -MP -MF saml2/core/impl/$(DEPDIR)/samltest-AttributeStatement20Test.Tpo -c -o saml2/core/impl/samltest-AttributeStatement20Test.o `test -f 'saml2/core/impl/AttributeStatement20Test.cpp' || echo '$(srcdir)/'`saml2/core/impl/AttributeStatement20Test.cpp
@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) saml2/core/impl/$(DEPDIR)/samltest-AttributeStatement20Test.Tpo saml2/core/impl/$(DEPDIR)/samltest-AttributeStatement20Test.Po
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='saml2/core/impl/AttributeStatement20Test.cpp' object='saml2/core/impl/samltest-AttributeStatement20Test.o' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(samltest_CXXFLAGS) $(CXXFLAGS) -c -o saml2/core/impl/samltest-AttributeStatement20Test.o `test -f 'saml2/core/impl/AttributeStatement20Test.cpp' || echo '$(srcdir)/'`saml2/core/impl/AttributeStatement20Test.cpp
saml2/core/impl/samltest-AttributeStatement20Test.obj: saml2/core/impl/AttributeStatement20Test.cpp
@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(samltest_CXXFLAGS) $(CXXFLAGS) -MT saml2/core/impl/samltest-AttributeStatement20Test.obj -MD -MP -MF saml2/core/impl/$(DEPDIR)/samltest-AttributeStatement20Test.Tpo -c -o saml2/core/impl/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_V_at)$(am__mv) saml2/core/impl/$(DEPDIR)/samltest-AttributeStatement20Test.Tpo saml2/core/impl/$(DEPDIR)/samltest-AttributeStatement20Test.Po
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='saml2/core/impl/AttributeStatement20Test.cpp' object='saml2/core/impl/samltest-AttributeStatement20Test.obj' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(samltest_CXXFLAGS) $(CXXFLAGS) -c -o saml2/core/impl/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`
saml2/core/impl/samltest-Audience20Test.o: saml2/core/impl/Audience20Test.cpp
@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(samltest_CXXFLAGS) $(CXXFLAGS) -MT saml2/core/impl/samltest-Audience20Test.o -MD -MP -MF saml2/core/impl/$(DEPDIR)/samltest-Audience20Test.Tpo -c -o saml2/core/impl/samltest-Audience20Test.o `test -f 'saml2/core/impl/Audience20Test.cpp' || echo '$(srcdir)/'`saml2/core/impl/Audience20Test.cpp
@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) saml2/core/impl/$(DEPDIR)/samltest-Audience20Test.Tpo saml2/core/impl/$(DEPDIR)/samltest-Audience20Test.Po
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='saml2/core/impl/Audience20Test.cpp' object='saml2/core/impl/samltest-Audience20Test.o' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(samltest_CXXFLAGS) $(CXXFLAGS) -c -o saml2/core/impl/samltest-Audience20Test.o `test -f 'saml2/core/impl/Audience20Test.cpp' || echo '$(srcdir)/'`saml2/core/impl/Audience20Test.cpp
saml2/core/impl/samltest-Audience20Test.obj: saml2/core/impl/Audience20Test.cpp
@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(samltest_CXXFLAGS) $(CXXFLAGS) -MT saml2/core/impl/samltest-Audience20Test.obj -MD -MP -MF saml2/core/impl/$(DEPDIR)/samltest-Audience20Test.Tpo -c -o saml2/core/impl/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_V_at)$(am__mv) saml2/core/impl/$(DEPDIR)/samltest-Audience20Test.Tpo saml2/core/impl/$(DEPDIR)/samltest-Audience20Test.Po
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='saml2/core/impl/Audience20Test.cpp' object='saml2/core/impl/samltest-Audience20Test.obj' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(samltest_CXXFLAGS) $(CXXFLAGS) -c -o saml2/core/impl/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`
saml2/core/impl/samltest-AudienceRestriction20Test.o: saml2/core/impl/AudienceRestriction20Test.cpp
@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(samltest_CXXFLAGS) $(CXXFLAGS) -MT saml2/core/impl/samltest-AudienceRestriction20Test.o -MD -MP -MF saml2/core/impl/$(DEPDIR)/samltest-AudienceRestriction20Test.Tpo -c -o saml2/core/impl/samltest-AudienceRestriction20Test.o `test -f 'saml2/core/impl/AudienceRestriction20Test.cpp' || echo '$(srcdir)/'`saml2/core/impl/AudienceRestriction20Test.cpp
@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) saml2/core/impl/$(DEPDIR)/samltest-AudienceRestriction20Test.Tpo saml2/core/impl/$(DEPDIR)/samltest-AudienceRestriction20Test.Po
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='saml2/core/impl/AudienceRestriction20Test.cpp' object='saml2/core/impl/samltest-AudienceRestriction20Test.o' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(samltest_CXXFLAGS) $(CXXFLAGS) -c -o saml2/core/impl/samltest-AudienceRestriction20Test.o `test -f 'saml2/core/impl/AudienceRestriction20Test.cpp' || echo '$(srcdir)/'`saml2/core/impl/AudienceRestriction20Test.cpp
saml2/core/impl/samltest-AudienceRestriction20Test.obj: saml2/core/impl/AudienceRestriction20Test.cpp
@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(samltest_CXXFLAGS) $(CXXFLAGS) -MT saml2/core/impl/samltest-AudienceRestriction20Test.obj -MD -MP -MF saml2/core/impl/$(DEPDIR)/samltest-AudienceRestriction20Test.Tpo -c -o saml2/core/impl/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_V_at)$(am__mv) saml2/core/impl/$(DEPDIR)/samltest-AudienceRestriction20Test.Tpo saml2/core/impl/$(DEPDIR)/samltest-AudienceRestriction20Test.Po
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='saml2/core/impl/AudienceRestriction20Test.cpp' object='saml2/core/impl/samltest-AudienceRestriction20Test.obj' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(samltest_CXXFLAGS) $(CXXFLAGS) -c -o saml2/core/impl/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`
saml2/core/impl/samltest-AuthenticatingAuthority20Test.o: saml2/core/impl/AuthenticatingAuthority20Test.cpp
@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(samltest_CXXFLAGS) $(CXXFLAGS) -MT saml2/core/impl/samltest-AuthenticatingAuthority20Test.o -MD -MP -MF saml2/core/impl/$(DEPDIR)/samltest-AuthenticatingAuthority20Test.Tpo -c -o saml2/core/impl/samltest-AuthenticatingAuthority20Test.o `test -f 'saml2/core/impl/AuthenticatingAuthority20Test.cpp' || echo '$(srcdir)/'`saml2/core/impl/AuthenticatingAuthority20Test.cpp
@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) saml2/core/impl/$(DEPDIR)/samltest-AuthenticatingAuthority20Test.Tpo saml2/core/impl/$(DEPDIR)/samltest-AuthenticatingAuthority20Test.Po
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='saml2/core/impl/AuthenticatingAuthority20Test.cpp' object='saml2/core/impl/samltest-AuthenticatingAuthority20Test.o' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(samltest_CXXFLAGS) $(CXXFLAGS) -c -o saml2/core/impl/samltest-AuthenticatingAuthority20Test.o `test -f 'saml2/core/impl/AuthenticatingAuthority20Test.cpp' || echo '$(srcdir)/'`saml2/core/impl/AuthenticatingAuthority20Test.cpp
saml2/core/impl/samltest-AuthenticatingAuthority20Test.obj: saml2/core/impl/AuthenticatingAuthority20Test.cpp
@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(samltest_CXXFLAGS) $(CXXFLAGS) -MT saml2/core/impl/samltest-AuthenticatingAuthority20Test.obj -MD -MP -MF saml2/core/impl/$(DEPDIR)/samltest-AuthenticatingAuthority20Test.Tpo -c -o saml2/core/impl/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_V_at)$(am__mv) saml2/core/impl/$(DEPDIR)/samltest-AuthenticatingAuthority20Test.Tpo saml2/core/impl/$(DEPDIR)/samltest-AuthenticatingAuthority20Test.Po
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='saml2/core/impl/AuthenticatingAuthority20Test.cpp' object='saml2/core/impl/samltest-AuthenticatingAuthority20Test.obj' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(samltest_CXXFLAGS) $(CXXFLAGS) -c -o saml2/core/impl/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`
saml2/core/impl/samltest-AuthnContext20Test.o: saml2/core/impl/AuthnContext20Test.cpp
@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(samltest_CXXFLAGS) $(CXXFLAGS) -MT saml2/core/impl/samltest-AuthnContext20Test.o -MD -MP -MF saml2/core/impl/$(DEPDIR)/samltest-AuthnContext20Test.Tpo -c -o saml2/core/impl/samltest-AuthnContext20Test.o `test -f 'saml2/core/impl/AuthnContext20Test.cpp' || echo '$(srcdir)/'`saml2/core/impl/AuthnContext20Test.cpp
@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) saml2/core/impl/$(DEPDIR)/samltest-AuthnContext20Test.Tpo saml2/core/impl/$(DEPDIR)/samltest-AuthnContext20Test.Po
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='saml2/core/impl/AuthnContext20Test.cpp' object='saml2/core/impl/samltest-AuthnContext20Test.o' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(samltest_CXXFLAGS) $(CXXFLAGS) -c -o saml2/core/impl/samltest-AuthnContext20Test.o `test -f 'saml2/core/impl/AuthnContext20Test.cpp' || echo '$(srcdir)/'`saml2/core/impl/AuthnContext20Test.cpp
saml2/core/impl/samltest-AuthnContext20Test.obj: saml2/core/impl/AuthnContext20Test.cpp
@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(samltest_CXXFLAGS) $(CXXFLAGS) -MT saml2/core/impl/samltest-AuthnContext20Test.obj -MD -MP -MF saml2/core/impl/$(DEPDIR)/samltest-AuthnContext20Test.Tpo -c -o saml2/core/impl/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_V_at)$(am__mv) saml2/core/impl/$(DEPDIR)/samltest-AuthnContext20Test.Tpo saml2/core/impl/$(DEPDIR)/samltest-AuthnContext20Test.Po
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='saml2/core/impl/AuthnContext20Test.cpp' object='saml2/core/impl/samltest-AuthnContext20Test.obj' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(samltest_CXXFLAGS) $(CXXFLAGS) -c -o saml2/core/impl/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`
saml2/core/impl/samltest-AuthnContextClassRef20Test.o: saml2/core/impl/AuthnContextClassRef20Test.cpp
@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(samltest_CXXFLAGS) $(CXXFLAGS) -MT saml2/core/impl/samltest-AuthnContextClassRef20Test.o -MD -MP -MF saml2/core/impl/$(DEPDIR)/samltest-AuthnContextClassRef20Test.Tpo -c -o saml2/core/impl/samltest-AuthnContextClassRef20Test.o `test -f 'saml2/core/impl/AuthnContextClassRef20Test.cpp' || echo '$(srcdir)/'`saml2/core/impl/AuthnContextClassRef20Test.cpp
@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) saml2/core/impl/$(DEPDIR)/samltest-AuthnContextClassRef20Test.Tpo saml2/core/impl/$(DEPDIR)/samltest-AuthnContextClassRef20Test.Po
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='saml2/core/impl/AuthnContextClassRef20Test.cpp' object='saml2/core/impl/samltest-AuthnContextClassRef20Test.o' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(samltest_CXXFLAGS) $(CXXFLAGS) -c -o saml2/core/impl/samltest-AuthnContextClassRef20Test.o `test -f 'saml2/core/impl/AuthnContextClassRef20Test.cpp' || echo '$(srcdir)/'`saml2/core/impl/AuthnContextClassRef20Test.cpp
saml2/core/impl/samltest-AuthnContextClassRef20Test.obj: saml2/core/impl/AuthnContextClassRef20Test.cpp
@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(samltest_CXXFLAGS) $(CXXFLAGS) -MT saml2/core/impl/samltest-AuthnContextClassRef20Test.obj -MD -MP -MF saml2/core/impl/$(DEPDIR)/samltest-AuthnContextClassRef20Test.Tpo -c -o saml2/core/impl/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_V_at)$(am__mv) saml2/core/impl/$(DEPDIR)/samltest-AuthnContextClassRef20Test.Tpo saml2/core/impl/$(DEPDIR)/samltest-AuthnContextClassRef20Test.Po
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='saml2/core/impl/AuthnContextClassRef20Test.cpp' object='saml2/core/impl/samltest-AuthnContextClassRef20Test.obj' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(samltest_CXXFLAGS) $(CXXFLAGS) -c -o saml2/core/impl/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`
saml2/core/impl/samltest-AuthnContextDeclRef20Test.o: saml2/core/impl/AuthnContextDeclRef20Test.cpp
@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(samltest_CXXFLAGS) $(CXXFLAGS) -MT saml2/core/impl/samltest-AuthnContextDeclRef20Test.o -MD -MP -MF saml2/core/impl/$(DEPDIR)/samltest-AuthnContextDeclRef20Test.Tpo -c -o saml2/core/impl/samltest-AuthnContextDeclRef20Test.o `test -f 'saml2/core/impl/AuthnContextDeclRef20Test.cpp' || echo '$(srcdir)/'`saml2/core/impl/AuthnContextDeclRef20Test.cpp
@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) saml2/core/impl/$(DEPDIR)/samltest-AuthnContextDeclRef20Test.Tpo saml2/core/impl/$(DEPDIR)/samltest-AuthnContextDeclRef20Test.Po
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='saml2/core/impl/AuthnContextDeclRef20Test.cpp' object='saml2/core/impl/samltest-AuthnContextDeclRef20Test.o' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(samltest_CXXFLAGS) $(CXXFLAGS) -c -o saml2/core/impl/samltest-AuthnContextDeclRef20Test.o `test -f 'saml2/core/impl/AuthnContextDeclRef20Test.cpp' || echo '$(srcdir)/'`saml2/core/impl/AuthnContextDeclRef20Test.cpp
saml2/core/impl/samltest-AuthnContextDeclRef20Test.obj: saml2/core/impl/AuthnContextDeclRef20Test.cpp
@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(samltest_CXXFLAGS) $(CXXFLAGS) -MT saml2/core/impl/samltest-AuthnContextDeclRef20Test.obj -MD -MP -MF saml2/core/impl/$(DEPDIR)/samltest-AuthnContextDeclRef20Test.Tpo -c -o saml2/core/impl/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_V_at)$(am__mv) saml2/core/impl/$(DEPDIR)/samltest-AuthnContextDeclRef20Test.Tpo saml2/core/impl/$(DEPDIR)/samltest-AuthnContextDeclRef20Test.Po
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='saml2/core/impl/AuthnContextDeclRef20Test.cpp' object='saml2/core/impl/samltest-AuthnContextDeclRef20Test.obj' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(samltest_CXXFLAGS) $(CXXFLAGS) -c -o saml2/core/impl/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`
saml2/core/impl/samltest-AuthnQuery20Test.o: saml2/core/impl/AuthnQuery20Test.cpp
@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(samltest_CXXFLAGS) $(CXXFLAGS) -MT saml2/core/impl/samltest-AuthnQuery20Test.o -MD -MP -MF saml2/core/impl/$(DEPDIR)/samltest-AuthnQuery20Test.Tpo -c -o saml2/core/impl/samltest-AuthnQuery20Test.o `test -f 'saml2/core/impl/AuthnQuery20Test.cpp' || echo '$(srcdir)/'`saml2/core/impl/AuthnQuery20Test.cpp
@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) saml2/core/impl/$(DEPDIR)/samltest-AuthnQuery20Test.Tpo saml2/core/impl/$(DEPDIR)/samltest-AuthnQuery20Test.Po
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='saml2/core/impl/AuthnQuery20Test.cpp' object='saml2/core/impl/samltest-AuthnQuery20Test.o' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(samltest_CXXFLAGS) $(CXXFLAGS) -c -o saml2/core/impl/samltest-AuthnQuery20Test.o `test -f 'saml2/core/impl/AuthnQuery20Test.cpp' || echo '$(srcdir)/'`saml2/core/impl/AuthnQuery20Test.cpp
saml2/core/impl/samltest-AuthnQuery20Test.obj: saml2/core/impl/AuthnQuery20Test.cpp
@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(samltest_CXXFLAGS) $(CXXFLAGS) -MT saml2/core/impl/samltest-AuthnQuery20Test.obj -MD -MP -MF saml2/core/impl/$(DEPDIR)/samltest-AuthnQuery20Test.Tpo -c -o saml2/core/impl/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_V_at)$(am__mv) saml2/core/impl/$(DEPDIR)/samltest-AuthnQuery20Test.Tpo saml2/core/impl/$(DEPDIR)/samltest-AuthnQuery20Test.Po
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='saml2/core/impl/AuthnQuery20Test.cpp' object='saml2/core/impl/samltest-AuthnQuery20Test.obj' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(samltest_CXXFLAGS) $(CXXFLAGS) -c -o saml2/core/impl/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`
saml2/core/impl/samltest-AuthnRequest20Test.o: saml2/core/impl/AuthnRequest20Test.cpp
@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(samltest_CXXFLAGS) $(CXXFLAGS) -MT saml2/core/impl/samltest-AuthnRequest20Test.o -MD -MP -MF saml2/core/impl/$(DEPDIR)/samltest-AuthnRequest20Test.Tpo -c -o saml2/core/impl/samltest-AuthnRequest20Test.o `test -f 'saml2/core/impl/AuthnRequest20Test.cpp' || echo '$(srcdir)/'`saml2/core/impl/AuthnRequest20Test.cpp
@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) saml2/core/impl/$(DEPDIR)/samltest-AuthnRequest20Test.Tpo saml2/core/impl/$(DEPDIR)/samltest-AuthnRequest20Test.Po
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='saml2/core/impl/AuthnRequest20Test.cpp' object='saml2/core/impl/samltest-AuthnRequest20Test.o' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(samltest_CXXFLAGS) $(CXXFLAGS) -c -o saml2/core/impl/samltest-AuthnRequest20Test.o `test -f 'saml2/core/impl/AuthnRequest20Test.cpp' || echo '$(srcdir)/'`saml2/core/impl/AuthnRequest20Test.cpp
saml2/core/impl/samltest-AuthnRequest20Test.obj: saml2/core/impl/AuthnRequest20Test.cpp
@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(samltest_CXXFLAGS) $(CXXFLAGS) -MT saml2/core/impl/samltest-AuthnRequest20Test.obj -MD -MP -MF saml2/core/impl/$(DEPDIR)/samltest-AuthnRequest20Test.Tpo -c -o saml2/core/impl/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_V_at)$(am__mv) saml2/core/impl/$(DEPDIR)/samltest-AuthnRequest20Test.Tpo saml2/core/impl/$(DEPDIR)/samltest-AuthnRequest20Test.Po
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='saml2/core/impl/AuthnRequest20Test.cpp' object='saml2/core/impl/samltest-AuthnRequest20Test.obj' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(samltest_CXXFLAGS) $(CXXFLAGS) -c -o saml2/core/impl/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`
saml2/core/impl/samltest-AuthnStatement20Test.o: saml2/core/impl/AuthnStatement20Test.cpp
@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(samltest_CXXFLAGS) $(CXXFLAGS) -MT saml2/core/impl/samltest-AuthnStatement20Test.o -MD -MP -MF saml2/core/impl/$(DEPDIR)/samltest-AuthnStatement20Test.Tpo -c -o saml2/core/impl/samltest-AuthnStatement20Test.o `test -f 'saml2/core/impl/AuthnStatement20Test.cpp' || echo '$(srcdir)/'`saml2/core/impl/AuthnStatement20Test.cpp
@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) saml2/core/impl/$(DEPDIR)/samltest-AuthnStatement20Test.Tpo saml2/core/impl/$(DEPDIR)/samltest-AuthnStatement20Test.Po
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='saml2/core/impl/AuthnStatement20Test.cpp' object='saml2/core/impl/samltest-AuthnStatement20Test.o' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(samltest_CXXFLAGS) $(CXXFLAGS) -c -o saml2/core/impl/samltest-AuthnStatement20Test.o `test -f 'saml2/core/impl/AuthnStatement20Test.cpp' || echo '$(srcdir)/'`saml2/core/impl/AuthnStatement20Test.cpp
saml2/core/impl/samltest-AuthnStatement20Test.obj: saml2/core/impl/AuthnStatement20Test.cpp
@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(samltest_CXXFLAGS) $(CXXFLAGS) -MT saml2/core/impl/samltest-AuthnStatement20Test.obj -MD -MP -MF saml2/core/impl/$(DEPDIR)/samltest-AuthnStatement20Test.Tpo -c -o saml2/core/impl/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_V_at)$(am__mv) saml2/core/impl/$(DEPDIR)/samltest-AuthnStatement20Test.Tpo saml2/core/impl/$(DEPDIR)/samltest-AuthnStatement20Test.Po
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='saml2/core/impl/AuthnStatement20Test.cpp' object='saml2/core/impl/samltest-AuthnStatement20Test.obj' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(samltest_CXXFLAGS) $(CXXFLAGS) -c -o saml2/core/impl/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`
saml2/core/impl/samltest-AuthzDecisionQuery20Test.o: saml2/core/impl/AuthzDecisionQuery20Test.cpp
@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(samltest_CXXFLAGS) $(CXXFLAGS) -MT saml2/core/impl/samltest-AuthzDecisionQuery20Test.o -MD -MP -MF saml2/core/impl/$(DEPDIR)/samltest-AuthzDecisionQuery20Test.Tpo -c -o saml2/core/impl/samltest-AuthzDecisionQuery20Test.o `test -f 'saml2/core/impl/AuthzDecisionQuery20Test.cpp' || echo '$(srcdir)/'`saml2/core/impl/AuthzDecisionQuery20Test.cpp
@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) saml2/core/impl/$(DEPDIR)/samltest-AuthzDecisionQuery20Test.Tpo saml2/core/impl/$(DEPDIR)/samltest-AuthzDecisionQuery20Test.Po
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='saml2/core/impl/AuthzDecisionQuery20Test.cpp' object='saml2/core/impl/samltest-AuthzDecisionQuery20Test.o' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(samltest_CXXFLAGS) $(CXXFLAGS) -c -o saml2/core/impl/samltest-AuthzDecisionQuery20Test.o `test -f 'saml2/core/impl/AuthzDecisionQuery20Test.cpp' || echo '$(srcdir)/'`saml2/core/impl/AuthzDecisionQuery20Test.cpp
saml2/core/impl/samltest-AuthzDecisionQuery20Test.obj: saml2/core/impl/AuthzDecisionQuery20Test.cpp
@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(samltest_CXXFLAGS) $(CXXFLAGS) -MT saml2/core/impl/samltest-AuthzDecisionQuery20Test.obj -MD -MP -MF saml2/core/impl/$(DEPDIR)/samltest-AuthzDecisionQuery20Test.Tpo -c -o saml2/core/impl/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_V_at)$(am__mv) saml2/core/impl/$(DEPDIR)/samltest-AuthzDecisionQuery20Test.Tpo saml2/core/impl/$(DEPDIR)/samltest-AuthzDecisionQuery20Test.Po
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='saml2/core/impl/AuthzDecisionQuery20Test.cpp' object='saml2/core/impl/samltest-AuthzDecisionQuery20Test.obj' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(samltest_CXXFLAGS) $(CXXFLAGS) -c -o saml2/core/impl/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`
saml2/core/impl/samltest-AuthzDecisionStatement20Test.o: saml2/core/impl/AuthzDecisionStatement20Test.cpp
@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(samltest_CXXFLAGS) $(CXXFLAGS) -MT saml2/core/impl/samltest-AuthzDecisionStatement20Test.o -MD -MP -MF saml2/core/impl/$(DEPDIR)/samltest-AuthzDecisionStatement20Test.Tpo -c -o saml2/core/impl/samltest-AuthzDecisionStatement20Test.o `test -f 'saml2/core/impl/AuthzDecisionStatement20Test.cpp' || echo '$(srcdir)/'`saml2/core/impl/AuthzDecisionStatement20Test.cpp
@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) saml2/core/impl/$(DEPDIR)/samltest-AuthzDecisionStatement20Test.Tpo saml2/core/impl/$(DEPDIR)/samltest-AuthzDecisionStatement20Test.Po
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='saml2/core/impl/AuthzDecisionStatement20Test.cpp' object='saml2/core/impl/samltest-AuthzDecisionStatement20Test.o' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(samltest_CXXFLAGS) $(CXXFLAGS) -c -o saml2/core/impl/samltest-AuthzDecisionStatement20Test.o `test -f 'saml2/core/impl/AuthzDecisionStatement20Test.cpp' || echo '$(srcdir)/'`saml2/core/impl/AuthzDecisionStatement20Test.cpp
saml2/core/impl/samltest-AuthzDecisionStatement20Test.obj: saml2/core/impl/AuthzDecisionStatement20Test.cpp
@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(samltest_CXXFLAGS) $(CXXFLAGS) -MT saml2/core/impl/samltest-AuthzDecisionStatement20Test.obj -MD -MP -MF saml2/core/impl/$(DEPDIR)/samltest-AuthzDecisionStatement20Test.Tpo -c -o saml2/core/impl/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_V_at)$(am__mv) saml2/core/impl/$(DEPDIR)/samltest-AuthzDecisionStatement20Test.Tpo saml2/core/impl/$(DEPDIR)/samltest-AuthzDecisionStatement20Test.Po
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='saml2/core/impl/AuthzDecisionStatement20Test.cpp' object='saml2/core/impl/samltest-AuthzDecisionStatement20Test.obj' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(samltest_CXXFLAGS) $(CXXFLAGS) -c -o saml2/core/impl/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`
saml2/core/impl/samltest-Conditions20Test.o: saml2/core/impl/Conditions20Test.cpp
@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(samltest_CXXFLAGS) $(CXXFLAGS) -MT saml2/core/impl/samltest-Conditions20Test.o -MD -MP -MF saml2/core/impl/$(DEPDIR)/samltest-Conditions20Test.Tpo -c -o saml2/core/impl/samltest-Conditions20Test.o `test -f 'saml2/core/impl/Conditions20Test.cpp' || echo '$(srcdir)/'`saml2/core/impl/Conditions20Test.cpp
@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) saml2/core/impl/$(DEPDIR)/samltest-Conditions20Test.Tpo saml2/core/impl/$(DEPDIR)/samltest-Conditions20Test.Po
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='saml2/core/impl/Conditions20Test.cpp' object='saml2/core/impl/samltest-Conditions20Test.o' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(samltest_CXXFLAGS) $(CXXFLAGS) -c -o saml2/core/impl/samltest-Conditions20Test.o `test -f 'saml2/core/impl/Conditions20Test.cpp' || echo '$(srcdir)/'`saml2/core/impl/Conditions20Test.cpp
saml2/core/impl/samltest-Conditions20Test.obj: saml2/core/impl/Conditions20Test.cpp
@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(samltest_CXXFLAGS) $(CXXFLAGS) -MT saml2/core/impl/samltest-Conditions20Test.obj -MD -MP -MF saml2/core/impl/$(DEPDIR)/samltest-Conditions20Test.Tpo -c -o saml2/core/impl/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_V_at)$(am__mv) saml2/core/impl/$(DEPDIR)/samltest-Conditions20Test.Tpo saml2/core/impl/$(DEPDIR)/samltest-Conditions20Test.Po
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='saml2/core/impl/Conditions20Test.cpp' object='saml2/core/impl/samltest-Conditions20Test.obj' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(samltest_CXXFLAGS) $(CXXFLAGS) -c -o saml2/core/impl/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`
saml2/core/impl/samltest-Evidence20Test.o: saml2/core/impl/Evidence20Test.cpp
@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(samltest_CXXFLAGS) $(CXXFLAGS) -MT saml2/core/impl/samltest-Evidence20Test.o -MD -MP -MF saml2/core/impl/$(DEPDIR)/samltest-Evidence20Test.Tpo -c -o saml2/core/impl/samltest-Evidence20Test.o `test -f 'saml2/core/impl/Evidence20Test.cpp' || echo '$(srcdir)/'`saml2/core/impl/Evidence20Test.cpp
@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) saml2/core/impl/$(DEPDIR)/samltest-Evidence20Test.Tpo saml2/core/impl/$(DEPDIR)/samltest-Evidence20Test.Po
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='saml2/core/impl/Evidence20Test.cpp' object='saml2/core/impl/samltest-Evidence20Test.o' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(samltest_CXXFLAGS) $(CXXFLAGS) -c -o saml2/core/impl/samltest-Evidence20Test.o `test -f 'saml2/core/impl/Evidence20Test.cpp' || echo '$(srcdir)/'`saml2/core/impl/Evidence20Test.cpp
saml2/core/impl/samltest-Evidence20Test.obj: saml2/core/impl/Evidence20Test.cpp
@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(samltest_CXXFLAGS) $(CXXFLAGS) -MT saml2/core/impl/samltest-Evidence20Test.obj -MD -MP -MF saml2/core/impl/$(DEPDIR)/samltest-Evidence20Test.Tpo -c -o saml2/core/impl/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_V_at)$(am__mv) saml2/core/impl/$(DEPDIR)/samltest-Evidence20Test.Tpo saml2/core/impl/$(DEPDIR)/samltest-Evidence20Test.Po
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='saml2/core/impl/Evidence20Test.cpp' object='saml2/core/impl/samltest-Evidence20Test.obj' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(samltest_CXXFLAGS) $(CXXFLAGS) -c -o saml2/core/impl/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`
saml2/core/impl/samltest-GetComplete20Test.o: saml2/core/impl/GetComplete20Test.cpp
@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(samltest_CXXFLAGS) $(CXXFLAGS) -MT saml2/core/impl/samltest-GetComplete20Test.o -MD -MP -MF saml2/core/impl/$(DEPDIR)/samltest-GetComplete20Test.Tpo -c -o saml2/core/impl/samltest-GetComplete20Test.o `test -f 'saml2/core/impl/GetComplete20Test.cpp' || echo '$(srcdir)/'`saml2/core/impl/GetComplete20Test.cpp
@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) saml2/core/impl/$(DEPDIR)/samltest-GetComplete20Test.Tpo saml2/core/impl/$(DEPDIR)/samltest-GetComplete20Test.Po
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='saml2/core/impl/GetComplete20Test.cpp' object='saml2/core/impl/samltest-GetComplete20Test.o' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(samltest_CXXFLAGS) $(CXXFLAGS) -c -o saml2/core/impl/samltest-GetComplete20Test.o `test -f 'saml2/core/impl/GetComplete20Test.cpp' || echo '$(srcdir)/'`saml2/core/impl/GetComplete20Test.cpp
saml2/core/impl/samltest-GetComplete20Test.obj: saml2/core/impl/GetComplete20Test.cpp
@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(samltest_CXXFLAGS) $(CXXFLAGS) -MT saml2/core/impl/samltest-GetComplete20Test.obj -MD -MP -MF saml2/core/impl/$(DEPDIR)/samltest-GetComplete20Test.Tpo -c -o saml2/core/impl/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_V_at)$(am__mv) saml2/core/impl/$(DEPDIR)/samltest-GetComplete20Test.Tpo saml2/core/impl/$(DEPDIR)/samltest-GetComplete20Test.Po
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='saml2/core/impl/GetComplete20Test.cpp' object='saml2/core/impl/samltest-GetComplete20Test.obj' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(samltest_CXXFLAGS) $(CXXFLAGS) -c -o saml2/core/impl/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`
saml2/core/impl/samltest-IDPEntry20Test.o: saml2/core/impl/IDPEntry20Test.cpp
@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(samltest_CXXFLAGS) $(CXXFLAGS) -MT saml2/core/impl/samltest-IDPEntry20Test.o -MD -MP -MF saml2/core/impl/$(DEPDIR)/samltest-IDPEntry20Test.Tpo -c -o saml2/core/impl/samltest-IDPEntry20Test.o `test -f 'saml2/core/impl/IDPEntry20Test.cpp' || echo '$(srcdir)/'`saml2/core/impl/IDPEntry20Test.cpp
@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) saml2/core/impl/$(DEPDIR)/samltest-IDPEntry20Test.Tpo saml2/core/impl/$(DEPDIR)/samltest-IDPEntry20Test.Po
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='saml2/core/impl/IDPEntry20Test.cpp' object='saml2/core/impl/samltest-IDPEntry20Test.o' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(samltest_CXXFLAGS) $(CXXFLAGS) -c -o saml2/core/impl/samltest-IDPEntry20Test.o `test -f 'saml2/core/impl/IDPEntry20Test.cpp' || echo '$(srcdir)/'`saml2/core/impl/IDPEntry20Test.cpp
saml2/core/impl/samltest-IDPEntry20Test.obj: saml2/core/impl/IDPEntry20Test.cpp
@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(samltest_CXXFLAGS) $(CXXFLAGS) -MT saml2/core/impl/samltest-IDPEntry20Test.obj -MD -MP -MF saml2/core/impl/$(DEPDIR)/samltest-IDPEntry20Test.Tpo -c -o saml2/core/impl/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_V_at)$(am__mv) saml2/core/impl/$(DEPDIR)/samltest-IDPEntry20Test.Tpo saml2/core/impl/$(DEPDIR)/samltest-IDPEntry20Test.Po
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='saml2/core/impl/IDPEntry20Test.cpp' object='saml2/core/impl/samltest-IDPEntry20Test.obj' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(samltest_CXXFLAGS) $(CXXFLAGS) -c -o saml2/core/impl/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`
saml2/core/impl/samltest-IDPList20Test.o: saml2/core/impl/IDPList20Test.cpp
@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(samltest_CXXFLAGS) $(CXXFLAGS) -MT saml2/core/impl/samltest-IDPList20Test.o -MD -MP -MF saml2/core/impl/$(DEPDIR)/samltest-IDPList20Test.Tpo -c -o saml2/core/impl/samltest-IDPList20Test.o `test -f 'saml2/core/impl/IDPList20Test.cpp' || echo '$(srcdir)/'`saml2/core/impl/IDPList20Test.cpp
@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) saml2/core/impl/$(DEPDIR)/samltest-IDPList20Test.Tpo saml2/core/impl/$(DEPDIR)/samltest-IDPList20Test.Po
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='saml2/core/impl/IDPList20Test.cpp' object='saml2/core/impl/samltest-IDPList20Test.o' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(samltest_CXXFLAGS) $(CXXFLAGS) -c -o saml2/core/impl/samltest-IDPList20Test.o `test -f 'saml2/core/impl/IDPList20Test.cpp' || echo '$(srcdir)/'`saml2/core/impl/IDPList20Test.cpp
saml2/core/impl/samltest-IDPList20Test.obj: saml2/core/impl/IDPList20Test.cpp
@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(samltest_CXXFLAGS) $(CXXFLAGS) -MT saml2/core/impl/samltest-IDPList20Test.obj -MD -MP -MF saml2/core/impl/$(DEPDIR)/samltest-IDPList20Test.Tpo -c -o saml2/core/impl/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_V_at)$(am__mv) saml2/core/impl/$(DEPDIR)/samltest-IDPList20Test.Tpo saml2/core/impl/$(DEPDIR)/samltest-IDPList20Test.Po
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='saml2/core/impl/IDPList20Test.cpp' object='saml2/core/impl/samltest-IDPList20Test.obj' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(samltest_CXXFLAGS) $(CXXFLAGS) -c -o saml2/core/impl/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`
saml2/core/impl/samltest-Issuer20Test.o: saml2/core/impl/Issuer20Test.cpp
@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(samltest_CXXFLAGS) $(CXXFLAGS) -MT saml2/core/impl/samltest-Issuer20Test.o -MD -MP -MF saml2/core/impl/$(DEPDIR)/samltest-Issuer20Test.Tpo -c -o saml2/core/impl/samltest-Issuer20Test.o `test -f 'saml2/core/impl/Issuer20Test.cpp' || echo '$(srcdir)/'`saml2/core/impl/Issuer20Test.cpp
@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) saml2/core/impl/$(DEPDIR)/samltest-Issuer20Test.Tpo saml2/core/impl/$(DEPDIR)/samltest-Issuer20Test.Po
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='saml2/core/impl/Issuer20Test.cpp' object='saml2/core/impl/samltest-Issuer20Test.o' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(samltest_CXXFLAGS) $(CXXFLAGS) -c -o saml2/core/impl/samltest-Issuer20Test.o `test -f 'saml2/core/impl/Issuer20Test.cpp' || echo '$(srcdir)/'`saml2/core/impl/Issuer20Test.cpp
saml2/core/impl/samltest-Issuer20Test.obj: saml2/core/impl/Issuer20Test.cpp
@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(samltest_CXXFLAGS) $(CXXFLAGS) -MT saml2/core/impl/samltest-Issuer20Test.obj -MD -MP -MF saml2/core/impl/$(DEPDIR)/samltest-Issuer20Test.Tpo -c -o saml2/core/impl/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_V_at)$(am__mv) saml2/core/impl/$(DEPDIR)/samltest-Issuer20Test.Tpo saml2/core/impl/$(DEPDIR)/samltest-Issuer20Test.Po
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='saml2/core/impl/Issuer20Test.cpp' object='saml2/core/impl/samltest-Issuer20Test.obj' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(samltest_CXXFLAGS) $(CXXFLAGS) -c -o saml2/core/impl/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`
saml2/core/impl/samltest-KeyInfoConfirmationDataType20Test.o: saml2/core/impl/KeyInfoConfirmationDataType20Test.cpp
@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(samltest_CXXFLAGS) $(CXXFLAGS) -MT saml2/core/impl/samltest-KeyInfoConfirmationDataType20Test.o -MD -MP -MF saml2/core/impl/$(DEPDIR)/samltest-KeyInfoConfirmationDataType20Test.Tpo -c -o saml2/core/impl/samltest-KeyInfoConfirmationDataType20Test.o `test -f 'saml2/core/impl/KeyInfoConfirmationDataType20Test.cpp' || echo '$(srcdir)/'`saml2/core/impl/KeyInfoConfirmationDataType20Test.cpp
@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) saml2/core/impl/$(DEPDIR)/samltest-KeyInfoConfirmationDataType20Test.Tpo saml2/core/impl/$(DEPDIR)/samltest-KeyInfoConfirmationDataType20Test.Po
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='saml2/core/impl/KeyInfoConfirmationDataType20Test.cpp' object='saml2/core/impl/samltest-KeyInfoConfirmationDataType20Test.o' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(samltest_CXXFLAGS) $(CXXFLAGS) -c -o saml2/core/impl/samltest-KeyInfoConfirmationDataType20Test.o `test -f 'saml2/core/impl/KeyInfoConfirmationDataType20Test.cpp' || echo '$(srcdir)/'`saml2/core/impl/KeyInfoConfirmationDataType20Test.cpp
saml2/core/impl/samltest-KeyInfoConfirmationDataType20Test.obj: saml2/core/impl/KeyInfoConfirmationDataType20Test.cpp
@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(samltest_CXXFLAGS) $(CXXFLAGS) -MT saml2/core/impl/samltest-KeyInfoConfirmationDataType20Test.obj -MD -MP -MF saml2/core/impl/$(DEPDIR)/samltest-KeyInfoConfirmationDataType20Test.Tpo -c -o saml2/core/impl/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_V_at)$(am__mv) saml2/core/impl/$(DEPDIR)/samltest-KeyInfoConfirmationDataType20Test.Tpo saml2/core/impl/$(DEPDIR)/samltest-KeyInfoConfirmationDataType20Test.Po
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='saml2/core/impl/KeyInfoConfirmationDataType20Test.cpp' object='saml2/core/impl/samltest-KeyInfoConfirmationDataType20Test.obj' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(samltest_CXXFLAGS) $(CXXFLAGS) -c -o saml2/core/impl/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`
saml2/core/impl/samltest-LogoutRequest20Test.o: saml2/core/impl/LogoutRequest20Test.cpp
@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(samltest_CXXFLAGS) $(CXXFLAGS) -MT saml2/core/impl/samltest-LogoutRequest20Test.o -MD -MP -MF saml2/core/impl/$(DEPDIR)/samltest-LogoutRequest20Test.Tpo -c -o saml2/core/impl/samltest-LogoutRequest20Test.o `test -f 'saml2/core/impl/LogoutRequest20Test.cpp' || echo '$(srcdir)/'`saml2/core/impl/LogoutRequest20Test.cpp
@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) saml2/core/impl/$(DEPDIR)/samltest-LogoutRequest20Test.Tpo saml2/core/impl/$(DEPDIR)/samltest-LogoutRequest20Test.Po
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='saml2/core/impl/LogoutRequest20Test.cpp' object='saml2/core/impl/samltest-LogoutRequest20Test.o' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(samltest_CXXFLAGS) $(CXXFLAGS) -c -o saml2/core/impl/samltest-LogoutRequest20Test.o `test -f 'saml2/core/impl/LogoutRequest20Test.cpp' || echo '$(srcdir)/'`saml2/core/impl/LogoutRequest20Test.cpp
saml2/core/impl/samltest-LogoutRequest20Test.obj: saml2/core/impl/LogoutRequest20Test.cpp
@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(samltest_CXXFLAGS) $(CXXFLAGS) -MT saml2/core/impl/samltest-LogoutRequest20Test.obj -MD -MP -MF saml2/core/impl/$(DEPDIR)/samltest-LogoutRequest20Test.Tpo -c -o saml2/core/impl/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_V_at)$(am__mv) saml2/core/impl/$(DEPDIR)/samltest-LogoutRequest20Test.Tpo saml2/core/impl/$(DEPDIR)/samltest-LogoutRequest20Test.Po
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='saml2/core/impl/LogoutRequest20Test.cpp' object='saml2/core/impl/samltest-LogoutRequest20Test.obj' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(samltest_CXXFLAGS) $(CXXFLAGS) -c -o saml2/core/impl/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`
saml2/core/impl/samltest-LogoutResponse20Test.o: saml2/core/impl/LogoutResponse20Test.cpp
@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(samltest_CXXFLAGS) $(CXXFLAGS) -MT saml2/core/impl/samltest-LogoutResponse20Test.o -MD -MP -MF saml2/core/impl/$(DEPDIR)/samltest-LogoutResponse20Test.Tpo -c -o saml2/core/impl/samltest-LogoutResponse20Test.o `test -f 'saml2/core/impl/LogoutResponse20Test.cpp' || echo '$(srcdir)/'`saml2/core/impl/LogoutResponse20Test.cpp
@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) saml2/core/impl/$(DEPDIR)/samltest-LogoutResponse20Test.Tpo saml2/core/impl/$(DEPDIR)/samltest-LogoutResponse20Test.Po
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='saml2/core/impl/LogoutResponse20Test.cpp' object='saml2/core/impl/samltest-LogoutResponse20Test.o' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(samltest_CXXFLAGS) $(CXXFLAGS) -c -o saml2/core/impl/samltest-LogoutResponse20Test.o `test -f 'saml2/core/impl/LogoutResponse20Test.cpp' || echo '$(srcdir)/'`saml2/core/impl/LogoutResponse20Test.cpp
saml2/core/impl/samltest-LogoutResponse20Test.obj: saml2/core/impl/LogoutResponse20Test.cpp
@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(samltest_CXXFLAGS) $(CXXFLAGS) -MT saml2/core/impl/samltest-LogoutResponse20Test.obj -MD -MP -MF saml2/core/impl/$(DEPDIR)/samltest-LogoutResponse20Test.Tpo -c -o saml2/core/impl/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_V_at)$(am__mv) saml2/core/impl/$(DEPDIR)/samltest-LogoutResponse20Test.Tpo saml2/core/impl/$(DEPDIR)/samltest-LogoutResponse20Test.Po
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='saml2/core/impl/LogoutResponse20Test.cpp' object='saml2/core/impl/samltest-LogoutResponse20Test.obj' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(samltest_CXXFLAGS) $(CXXFLAGS) -c -o saml2/core/impl/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`
saml2/core/impl/samltest-ManageNameIDRequest20Test.o: saml2/core/impl/ManageNameIDRequest20Test.cpp
@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(samltest_CXXFLAGS) $(CXXFLAGS) -MT saml2/core/impl/samltest-ManageNameIDRequest20Test.o -MD -MP -MF saml2/core/impl/$(DEPDIR)/samltest-ManageNameIDRequest20Test.Tpo -c -o saml2/core/impl/samltest-ManageNameIDRequest20Test.o `test -f 'saml2/core/impl/ManageNameIDRequest20Test.cpp' || echo '$(srcdir)/'`saml2/core/impl/ManageNameIDRequest20Test.cpp
@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) saml2/core/impl/$(DEPDIR)/samltest-ManageNameIDRequest20Test.Tpo saml2/core/impl/$(DEPDIR)/samltest-ManageNameIDRequest20Test.Po
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='saml2/core/impl/ManageNameIDRequest20Test.cpp' object='saml2/core/impl/samltest-ManageNameIDRequest20Test.o' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(samltest_CXXFLAGS) $(CXXFLAGS) -c -o saml2/core/impl/samltest-ManageNameIDRequest20Test.o `test -f 'saml2/core/impl/ManageNameIDRequest20Test.cpp' || echo '$(srcdir)/'`saml2/core/impl/ManageNameIDRequest20Test.cpp
saml2/core/impl/samltest-ManageNameIDRequest20Test.obj: saml2/core/impl/ManageNameIDRequest20Test.cpp
@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(samltest_CXXFLAGS) $(CXXFLAGS) -MT saml2/core/impl/samltest-ManageNameIDRequest20Test.obj -MD -MP -MF saml2/core/impl/$(DEPDIR)/samltest-ManageNameIDRequest20Test.Tpo -c -o saml2/core/impl/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_V_at)$(am__mv) saml2/core/impl/$(DEPDIR)/samltest-ManageNameIDRequest20Test.Tpo saml2/core/impl/$(DEPDIR)/samltest-ManageNameIDRequest20Test.Po
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='saml2/core/impl/ManageNameIDRequest20Test.cpp' object='saml2/core/impl/samltest-ManageNameIDRequest20Test.obj' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(samltest_CXXFLAGS) $(CXXFLAGS) -c -o saml2/core/impl/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`
saml2/core/impl/samltest-ManageNameIDResponse20Test.o: saml2/core/impl/ManageNameIDResponse20Test.cpp
@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(samltest_CXXFLAGS) $(CXXFLAGS) -MT saml2/core/impl/samltest-ManageNameIDResponse20Test.o -MD -MP -MF saml2/core/impl/$(DEPDIR)/samltest-ManageNameIDResponse20Test.Tpo -c -o saml2/core/impl/samltest-ManageNameIDResponse20Test.o `test -f 'saml2/core/impl/ManageNameIDResponse20Test.cpp' || echo '$(srcdir)/'`saml2/core/impl/ManageNameIDResponse20Test.cpp
@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) saml2/core/impl/$(DEPDIR)/samltest-ManageNameIDResponse20Test.Tpo saml2/core/impl/$(DEPDIR)/samltest-ManageNameIDResponse20Test.Po
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='saml2/core/impl/ManageNameIDResponse20Test.cpp' object='saml2/core/impl/samltest-ManageNameIDResponse20Test.o' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(samltest_CXXFLAGS) $(CXXFLAGS) -c -o saml2/core/impl/samltest-ManageNameIDResponse20Test.o `test -f 'saml2/core/impl/ManageNameIDResponse20Test.cpp' || echo '$(srcdir)/'`saml2/core/impl/ManageNameIDResponse20Test.cpp
saml2/core/impl/samltest-ManageNameIDResponse20Test.obj: saml2/core/impl/ManageNameIDResponse20Test.cpp
@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(samltest_CXXFLAGS) $(CXXFLAGS) -MT saml2/core/impl/samltest-ManageNameIDResponse20Test.obj -MD -MP -MF saml2/core/impl/$(DEPDIR)/samltest-ManageNameIDResponse20Test.Tpo -c -o saml2/core/impl/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_V_at)$(am__mv) saml2/core/impl/$(DEPDIR)/samltest-ManageNameIDResponse20Test.Tpo saml2/core/impl/$(DEPDIR)/samltest-ManageNameIDResponse20Test.Po
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='saml2/core/impl/ManageNameIDResponse20Test.cpp' object='saml2/core/impl/samltest-ManageNameIDResponse20Test.obj' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(samltest_CXXFLAGS) $(CXXFLAGS) -c -o saml2/core/impl/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`
saml2/core/impl/samltest-NameIDMappingRequest20Test.o: saml2/core/impl/NameIDMappingRequest20Test.cpp
@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(samltest_CXXFLAGS) $(CXXFLAGS) -MT saml2/core/impl/samltest-NameIDMappingRequest20Test.o -MD -MP -MF saml2/core/impl/$(DEPDIR)/samltest-NameIDMappingRequest20Test.Tpo -c -o saml2/core/impl/samltest-NameIDMappingRequest20Test.o `test -f 'saml2/core/impl/NameIDMappingRequest20Test.cpp' || echo '$(srcdir)/'`saml2/core/impl/NameIDMappingRequest20Test.cpp
@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) saml2/core/impl/$(DEPDIR)/samltest-NameIDMappingRequest20Test.Tpo saml2/core/impl/$(DEPDIR)/samltest-NameIDMappingRequest20Test.Po
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='saml2/core/impl/NameIDMappingRequest20Test.cpp' object='saml2/core/impl/samltest-NameIDMappingRequest20Test.o' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(samltest_CXXFLAGS) $(CXXFLAGS) -c -o saml2/core/impl/samltest-NameIDMappingRequest20Test.o `test -f 'saml2/core/impl/NameIDMappingRequest20Test.cpp' || echo '$(srcdir)/'`saml2/core/impl/NameIDMappingRequest20Test.cpp
saml2/core/impl/samltest-NameIDMappingRequest20Test.obj: saml2/core/impl/NameIDMappingRequest20Test.cpp
@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(samltest_CXXFLAGS) $(CXXFLAGS) -MT saml2/core/impl/samltest-NameIDMappingRequest20Test.obj -MD -MP -MF saml2/core/impl/$(DEPDIR)/samltest-NameIDMappingRequest20Test.Tpo -c -o saml2/core/impl/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_V_at)$(am__mv) saml2/core/impl/$(DEPDIR)/samltest-NameIDMappingRequest20Test.Tpo saml2/core/impl/$(DEPDIR)/samltest-NameIDMappingRequest20Test.Po
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='saml2/core/impl/NameIDMappingRequest20Test.cpp' object='saml2/core/impl/samltest-NameIDMappingRequest20Test.obj' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(samltest_CXXFLAGS) $(CXXFLAGS) -c -o saml2/core/impl/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`
saml2/core/impl/samltest-NameIDMappingResponse20Test.o: saml2/core/impl/NameIDMappingResponse20Test.cpp
@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(samltest_CXXFLAGS) $(CXXFLAGS) -MT saml2/core/impl/samltest-NameIDMappingResponse20Test.o -MD -MP -MF saml2/core/impl/$(DEPDIR)/samltest-NameIDMappingResponse20Test.Tpo -c -o saml2/core/impl/samltest-NameIDMappingResponse20Test.o `test -f 'saml2/core/impl/NameIDMappingResponse20Test.cpp' || echo '$(srcdir)/'`saml2/core/impl/NameIDMappingResponse20Test.cpp
@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) saml2/core/impl/$(DEPDIR)/samltest-NameIDMappingResponse20Test.Tpo saml2/core/impl/$(DEPDIR)/samltest-NameIDMappingResponse20Test.Po
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='saml2/core/impl/NameIDMappingResponse20Test.cpp' object='saml2/core/impl/samltest-NameIDMappingResponse20Test.o' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(samltest_CXXFLAGS) $(CXXFLAGS) -c -o saml2/core/impl/samltest-NameIDMappingResponse20Test.o `test -f 'saml2/core/impl/NameIDMappingResponse20Test.cpp' || echo '$(srcdir)/'`saml2/core/impl/NameIDMappingResponse20Test.cpp
saml2/core/impl/samltest-NameIDMappingResponse20Test.obj: saml2/core/impl/NameIDMappingResponse20Test.cpp
@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(samltest_CXXFLAGS) $(CXXFLAGS) -MT saml2/core/impl/samltest-NameIDMappingResponse20Test.obj -MD -MP -MF saml2/core/impl/$(DEPDIR)/samltest-NameIDMappingResponse20Test.Tpo -c -o saml2/core/impl/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_V_at)$(am__mv) saml2/core/impl/$(DEPDIR)/samltest-NameIDMappingResponse20Test.Tpo saml2/core/impl/$(DEPDIR)/samltest-NameIDMappingResponse20Test.Po
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='saml2/core/impl/NameIDMappingResponse20Test.cpp' object='saml2/core/impl/samltest-NameIDMappingResponse20Test.obj' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(samltest_CXXFLAGS) $(CXXFLAGS) -c -o saml2/core/impl/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`
saml2/core/impl/samltest-NameIDPolicy20Test.o: saml2/core/impl/NameIDPolicy20Test.cpp
@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(samltest_CXXFLAGS) $(CXXFLAGS) -MT saml2/core/impl/samltest-NameIDPolicy20Test.o -MD -MP -MF saml2/core/impl/$(DEPDIR)/samltest-NameIDPolicy20Test.Tpo -c -o saml2/core/impl/samltest-NameIDPolicy20Test.o `test -f 'saml2/core/impl/NameIDPolicy20Test.cpp' || echo '$(srcdir)/'`saml2/core/impl/NameIDPolicy20Test.cpp
@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) saml2/core/impl/$(DEPDIR)/samltest-NameIDPolicy20Test.Tpo saml2/core/impl/$(DEPDIR)/samltest-NameIDPolicy20Test.Po
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='saml2/core/impl/NameIDPolicy20Test.cpp' object='saml2/core/impl/samltest-NameIDPolicy20Test.o' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(samltest_CXXFLAGS) $(CXXFLAGS) -c -o saml2/core/impl/samltest-NameIDPolicy20Test.o `test -f 'saml2/core/impl/NameIDPolicy20Test.cpp' || echo '$(srcdir)/'`saml2/core/impl/NameIDPolicy20Test.cpp
saml2/core/impl/samltest-NameIDPolicy20Test.obj: saml2/core/impl/NameIDPolicy20Test.cpp
@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(samltest_CXXFLAGS) $(CXXFLAGS) -MT saml2/core/impl/samltest-NameIDPolicy20Test.obj -MD -MP -MF saml2/core/impl/$(DEPDIR)/samltest-NameIDPolicy20Test.Tpo -c -o saml2/core/impl/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_V_at)$(am__mv) saml2/core/impl/$(DEPDIR)/samltest-NameIDPolicy20Test.Tpo saml2/core/impl/$(DEPDIR)/samltest-NameIDPolicy20Test.Po
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='saml2/core/impl/NameIDPolicy20Test.cpp' object='saml2/core/impl/samltest-NameIDPolicy20Test.obj' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(samltest_CXXFLAGS) $(CXXFLAGS) -c -o saml2/core/impl/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`
saml2/core/impl/samltest-NameID20Test.o: saml2/core/impl/NameID20Test.cpp
@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(samltest_CXXFLAGS) $(CXXFLAGS) -MT saml2/core/impl/samltest-NameID20Test.o -MD -MP -MF saml2/core/impl/$(DEPDIR)/samltest-NameID20Test.Tpo -c -o saml2/core/impl/samltest-NameID20Test.o `test -f 'saml2/core/impl/NameID20Test.cpp' || echo '$(srcdir)/'`saml2/core/impl/NameID20Test.cpp
@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) saml2/core/impl/$(DEPDIR)/samltest-NameID20Test.Tpo saml2/core/impl/$(DEPDIR)/samltest-NameID20Test.Po
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='saml2/core/impl/NameID20Test.cpp' object='saml2/core/impl/samltest-NameID20Test.o' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(samltest_CXXFLAGS) $(CXXFLAGS) -c -o saml2/core/impl/samltest-NameID20Test.o `test -f 'saml2/core/impl/NameID20Test.cpp' || echo '$(srcdir)/'`saml2/core/impl/NameID20Test.cpp
saml2/core/impl/samltest-NameID20Test.obj: saml2/core/impl/NameID20Test.cpp
@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(samltest_CXXFLAGS) $(CXXFLAGS) -MT saml2/core/impl/samltest-NameID20Test.obj -MD -MP -MF saml2/core/impl/$(DEPDIR)/samltest-NameID20Test.Tpo -c -o saml2/core/impl/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_V_at)$(am__mv) saml2/core/impl/$(DEPDIR)/samltest-NameID20Test.Tpo saml2/core/impl/$(DEPDIR)/samltest-NameID20Test.Po
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='saml2/core/impl/NameID20Test.cpp' object='saml2/core/impl/samltest-NameID20Test.obj' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(samltest_CXXFLAGS) $(CXXFLAGS) -c -o saml2/core/impl/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`
saml2/core/impl/samltest-NameIDType20Test.o: saml2/core/impl/NameIDType20Test.cpp
@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(samltest_CXXFLAGS) $(CXXFLAGS) -MT saml2/core/impl/samltest-NameIDType20Test.o -MD -MP -MF saml2/core/impl/$(DEPDIR)/samltest-NameIDType20Test.Tpo -c -o saml2/core/impl/samltest-NameIDType20Test.o `test -f 'saml2/core/impl/NameIDType20Test.cpp' || echo '$(srcdir)/'`saml2/core/impl/NameIDType20Test.cpp
@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) saml2/core/impl/$(DEPDIR)/samltest-NameIDType20Test.Tpo saml2/core/impl/$(DEPDIR)/samltest-NameIDType20Test.Po
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='saml2/core/impl/NameIDType20Test.cpp' object='saml2/core/impl/samltest-NameIDType20Test.o' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(samltest_CXXFLAGS) $(CXXFLAGS) -c -o saml2/core/impl/samltest-NameIDType20Test.o `test -f 'saml2/core/impl/NameIDType20Test.cpp' || echo '$(srcdir)/'`saml2/core/impl/NameIDType20Test.cpp
saml2/core/impl/samltest-NameIDType20Test.obj: saml2/core/impl/NameIDType20Test.cpp
@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(samltest_CXXFLAGS) $(CXXFLAGS) -MT saml2/core/impl/samltest-NameIDType20Test.obj -MD -MP -MF saml2/core/impl/$(DEPDIR)/samltest-NameIDType20Test.Tpo -c -o saml2/core/impl/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_V_at)$(am__mv) saml2/core/impl/$(DEPDIR)/samltest-NameIDType20Test.Tpo saml2/core/impl/$(DEPDIR)/samltest-NameIDType20Test.Po
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='saml2/core/impl/NameIDType20Test.cpp' object='saml2/core/impl/samltest-NameIDType20Test.obj' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(samltest_CXXFLAGS) $(CXXFLAGS) -c -o saml2/core/impl/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`
saml2/core/impl/samltest-NewEncryptedID20Test.o: saml2/core/impl/NewEncryptedID20Test.cpp
@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(samltest_CXXFLAGS) $(CXXFLAGS) -MT saml2/core/impl/samltest-NewEncryptedID20Test.o -MD -MP -MF saml2/core/impl/$(DEPDIR)/samltest-NewEncryptedID20Test.Tpo -c -o saml2/core/impl/samltest-NewEncryptedID20Test.o `test -f 'saml2/core/impl/NewEncryptedID20Test.cpp' || echo '$(srcdir)/'`saml2/core/impl/NewEncryptedID20Test.cpp
@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) saml2/core/impl/$(DEPDIR)/samltest-NewEncryptedID20Test.Tpo saml2/core/impl/$(DEPDIR)/samltest-NewEncryptedID20Test.Po
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='saml2/core/impl/NewEncryptedID20Test.cpp' object='saml2/core/impl/samltest-NewEncryptedID20Test.o' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(samltest_CXXFLAGS) $(CXXFLAGS) -c -o saml2/core/impl/samltest-NewEncryptedID20Test.o `test -f 'saml2/core/impl/NewEncryptedID20Test.cpp' || echo '$(srcdir)/'`saml2/core/impl/NewEncryptedID20Test.cpp
saml2/core/impl/samltest-NewEncryptedID20Test.obj: saml2/core/impl/NewEncryptedID20Test.cpp
@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(samltest_CXXFLAGS) $(CXXFLAGS) -MT saml2/core/impl/samltest-NewEncryptedID20Test.obj -MD -MP -MF saml2/core/impl/$(DEPDIR)/samltest-NewEncryptedID20Test.Tpo -c -o saml2/core/impl/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_V_at)$(am__mv) saml2/core/impl/$(DEPDIR)/samltest-NewEncryptedID20Test.Tpo saml2/core/impl/$(DEPDIR)/samltest-NewEncryptedID20Test.Po
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='saml2/core/impl/NewEncryptedID20Test.cpp' object='saml2/core/impl/samltest-NewEncryptedID20Test.obj' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(samltest_CXXFLAGS) $(CXXFLAGS) -c -o saml2/core/impl/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`
saml2/core/impl/samltest-NewID20Test.o: saml2/core/impl/NewID20Test.cpp
@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(samltest_CXXFLAGS) $(CXXFLAGS) -MT saml2/core/impl/samltest-NewID20Test.o -MD -MP -MF saml2/core/impl/$(DEPDIR)/samltest-NewID20Test.Tpo -c -o saml2/core/impl/samltest-NewID20Test.o `test -f 'saml2/core/impl/NewID20Test.cpp' || echo '$(srcdir)/'`saml2/core/impl/NewID20Test.cpp
@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) saml2/core/impl/$(DEPDIR)/samltest-NewID20Test.Tpo saml2/core/impl/$(DEPDIR)/samltest-NewID20Test.Po
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='saml2/core/impl/NewID20Test.cpp' object='saml2/core/impl/samltest-NewID20Test.o' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(samltest_CXXFLAGS) $(CXXFLAGS) -c -o saml2/core/impl/samltest-NewID20Test.o `test -f 'saml2/core/impl/NewID20Test.cpp' || echo '$(srcdir)/'`saml2/core/impl/NewID20Test.cpp
saml2/core/impl/samltest-NewID20Test.obj: saml2/core/impl/NewID20Test.cpp
@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(samltest_CXXFLAGS) $(CXXFLAGS) -MT saml2/core/impl/samltest-NewID20Test.obj -MD -MP -MF saml2/core/impl/$(DEPDIR)/samltest-NewID20Test.Tpo -c -o saml2/core/impl/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_V_at)$(am__mv) saml2/core/impl/$(DEPDIR)/samltest-NewID20Test.Tpo saml2/core/impl/$(DEPDIR)/samltest-NewID20Test.Po
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='saml2/core/impl/NewID20Test.cpp' object='saml2/core/impl/samltest-NewID20Test.obj' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(samltest_CXXFLAGS) $(CXXFLAGS) -c -o saml2/core/impl/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`
saml2/core/impl/samltest-OneTimeUse20Test.o: saml2/core/impl/OneTimeUse20Test.cpp
@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(samltest_CXXFLAGS) $(CXXFLAGS) -MT saml2/core/impl/samltest-OneTimeUse20Test.o -MD -MP -MF saml2/core/impl/$(DEPDIR)/samltest-OneTimeUse20Test.Tpo -c -o saml2/core/impl/samltest-OneTimeUse20Test.o `test -f 'saml2/core/impl/OneTimeUse20Test.cpp' || echo '$(srcdir)/'`saml2/core/impl/OneTimeUse20Test.cpp
@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) saml2/core/impl/$(DEPDIR)/samltest-OneTimeUse20Test.Tpo saml2/core/impl/$(DEPDIR)/samltest-OneTimeUse20Test.Po
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='saml2/core/impl/OneTimeUse20Test.cpp' object='saml2/core/impl/samltest-OneTimeUse20Test.o' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(samltest_CXXFLAGS) $(CXXFLAGS) -c -o saml2/core/impl/samltest-OneTimeUse20Test.o `test -f 'saml2/core/impl/OneTimeUse20Test.cpp' || echo '$(srcdir)/'`saml2/core/impl/OneTimeUse20Test.cpp
saml2/core/impl/samltest-OneTimeUse20Test.obj: saml2/core/impl/OneTimeUse20Test.cpp
@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(samltest_CXXFLAGS) $(CXXFLAGS) -MT saml2/core/impl/samltest-OneTimeUse20Test.obj -MD -MP -MF saml2/core/impl/$(DEPDIR)/samltest-OneTimeUse20Test.Tpo -c -o saml2/core/impl/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_V_at)$(am__mv) saml2/core/impl/$(DEPDIR)/samltest-OneTimeUse20Test.Tpo saml2/core/impl/$(DEPDIR)/samltest-OneTimeUse20Test.Po
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='saml2/core/impl/OneTimeUse20Test.cpp' object='saml2/core/impl/samltest-OneTimeUse20Test.obj' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(samltest_CXXFLAGS) $(CXXFLAGS) -c -o saml2/core/impl/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`
saml2/core/impl/samltest-ProxyRestriction20Test.o: saml2/core/impl/ProxyRestriction20Test.cpp
@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(samltest_CXXFLAGS) $(CXXFLAGS) -MT saml2/core/impl/samltest-ProxyRestriction20Test.o -MD -MP -MF saml2/core/impl/$(DEPDIR)/samltest-ProxyRestriction20Test.Tpo -c -o saml2/core/impl/samltest-ProxyRestriction20Test.o `test -f 'saml2/core/impl/ProxyRestriction20Test.cpp' || echo '$(srcdir)/'`saml2/core/impl/ProxyRestriction20Test.cpp
@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) saml2/core/impl/$(DEPDIR)/samltest-ProxyRestriction20Test.Tpo saml2/core/impl/$(DEPDIR)/samltest-ProxyRestriction20Test.Po
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='saml2/core/impl/ProxyRestriction20Test.cpp' object='saml2/core/impl/samltest-ProxyRestriction20Test.o' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(samltest_CXXFLAGS) $(CXXFLAGS) -c -o saml2/core/impl/samltest-ProxyRestriction20Test.o `test -f 'saml2/core/impl/ProxyRestriction20Test.cpp' || echo '$(srcdir)/'`saml2/core/impl/ProxyRestriction20Test.cpp
saml2/core/impl/samltest-ProxyRestriction20Test.obj: saml2/core/impl/ProxyRestriction20Test.cpp
@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(samltest_CXXFLAGS) $(CXXFLAGS) -MT saml2/core/impl/samltest-ProxyRestriction20Test.obj -MD -MP -MF saml2/core/impl/$(DEPDIR)/samltest-ProxyRestriction20Test.Tpo -c -o saml2/core/impl/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_V_at)$(am__mv) saml2/core/impl/$(DEPDIR)/samltest-ProxyRestriction20Test.Tpo saml2/core/impl/$(DEPDIR)/samltest-ProxyRestriction20Test.Po
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='saml2/core/impl/ProxyRestriction20Test.cpp' object='saml2/core/impl/samltest-ProxyRestriction20Test.obj' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(samltest_CXXFLAGS) $(CXXFLAGS) -c -o saml2/core/impl/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`
saml2/core/impl/samltest-RequesterID20Test.o: saml2/core/impl/RequesterID20Test.cpp
@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(samltest_CXXFLAGS) $(CXXFLAGS) -MT saml2/core/impl/samltest-RequesterID20Test.o -MD -MP -MF saml2/core/impl/$(DEPDIR)/samltest-RequesterID20Test.Tpo -c -o saml2/core/impl/samltest-RequesterID20Test.o `test -f 'saml2/core/impl/RequesterID20Test.cpp' || echo '$(srcdir)/'`saml2/core/impl/RequesterID20Test.cpp
@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) saml2/core/impl/$(DEPDIR)/samltest-RequesterID20Test.Tpo saml2/core/impl/$(DEPDIR)/samltest-RequesterID20Test.Po
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='saml2/core/impl/RequesterID20Test.cpp' object='saml2/core/impl/samltest-RequesterID20Test.o' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(samltest_CXXFLAGS) $(CXXFLAGS) -c -o saml2/core/impl/samltest-RequesterID20Test.o `test -f 'saml2/core/impl/RequesterID20Test.cpp' || echo '$(srcdir)/'`saml2/core/impl/RequesterID20Test.cpp
saml2/core/impl/samltest-RequesterID20Test.obj: saml2/core/impl/RequesterID20Test.cpp
@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(samltest_CXXFLAGS) $(CXXFLAGS) -MT saml2/core/impl/samltest-RequesterID20Test.obj -MD -MP -MF saml2/core/impl/$(DEPDIR)/samltest-RequesterID20Test.Tpo -c -o saml2/core/impl/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_V_at)$(am__mv) saml2/core/impl/$(DEPDIR)/samltest-RequesterID20Test.Tpo saml2/core/impl/$(DEPDIR)/samltest-RequesterID20Test.Po
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='saml2/core/impl/RequesterID20Test.cpp' object='saml2/core/impl/samltest-RequesterID20Test.obj' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(samltest_CXXFLAGS) $(CXXFLAGS) -c -o saml2/core/impl/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`
saml2/core/impl/samltest-RequestedAuthnContext20Test.o: saml2/core/impl/RequestedAuthnContext20Test.cpp
@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(samltest_CXXFLAGS) $(CXXFLAGS) -MT saml2/core/impl/samltest-RequestedAuthnContext20Test.o -MD -MP -MF saml2/core/impl/$(DEPDIR)/samltest-RequestedAuthnContext20Test.Tpo -c -o saml2/core/impl/samltest-RequestedAuthnContext20Test.o `test -f 'saml2/core/impl/RequestedAuthnContext20Test.cpp' || echo '$(srcdir)/'`saml2/core/impl/RequestedAuthnContext20Test.cpp
@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) saml2/core/impl/$(DEPDIR)/samltest-RequestedAuthnContext20Test.Tpo saml2/core/impl/$(DEPDIR)/samltest-RequestedAuthnContext20Test.Po
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='saml2/core/impl/RequestedAuthnContext20Test.cpp' object='saml2/core/impl/samltest-RequestedAuthnContext20Test.o' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(samltest_CXXFLAGS) $(CXXFLAGS) -c -o saml2/core/impl/samltest-RequestedAuthnContext20Test.o `test -f 'saml2/core/impl/RequestedAuthnContext20Test.cpp' || echo '$(srcdir)/'`saml2/core/impl/RequestedAuthnContext20Test.cpp
saml2/core/impl/samltest-RequestedAuthnContext20Test.obj: saml2/core/impl/RequestedAuthnContext20Test.cpp
@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(samltest_CXXFLAGS) $(CXXFLAGS) -MT saml2/core/impl/samltest-RequestedAuthnContext20Test.obj -MD -MP -MF saml2/core/impl/$(DEPDIR)/samltest-RequestedAuthnContext20Test.Tpo -c -o saml2/core/impl/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_V_at)$(am__mv) saml2/core/impl/$(DEPDIR)/samltest-RequestedAuthnContext20Test.Tpo saml2/core/impl/$(DEPDIR)/samltest-RequestedAuthnContext20Test.Po
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='saml2/core/impl/RequestedAuthnContext20Test.cpp' object='saml2/core/impl/samltest-RequestedAuthnContext20Test.obj' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(samltest_CXXFLAGS) $(CXXFLAGS) -c -o saml2/core/impl/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`
saml2/core/impl/samltest-Response20Test.o: saml2/core/impl/Response20Test.cpp
@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(samltest_CXXFLAGS) $(CXXFLAGS) -MT saml2/core/impl/samltest-Response20Test.o -MD -MP -MF saml2/core/impl/$(DEPDIR)/samltest-Response20Test.Tpo -c -o saml2/core/impl/samltest-Response20Test.o `test -f 'saml2/core/impl/Response20Test.cpp' || echo '$(srcdir)/'`saml2/core/impl/Response20Test.cpp
@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) saml2/core/impl/$(DEPDIR)/samltest-Response20Test.Tpo saml2/core/impl/$(DEPDIR)/samltest-Response20Test.Po
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='saml2/core/impl/Response20Test.cpp' object='saml2/core/impl/samltest-Response20Test.o' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(samltest_CXXFLAGS) $(CXXFLAGS) -c -o saml2/core/impl/samltest-Response20Test.o `test -f 'saml2/core/impl/Response20Test.cpp' || echo '$(srcdir)/'`saml2/core/impl/Response20Test.cpp
saml2/core/impl/samltest-Response20Test.obj: saml2/core/impl/Response20Test.cpp
@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(samltest_CXXFLAGS) $(CXXFLAGS) -MT saml2/core/impl/samltest-Response20Test.obj -MD -MP -MF saml2/core/impl/$(DEPDIR)/samltest-Response20Test.Tpo -c -o saml2/core/impl/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_V_at)$(am__mv) saml2/core/impl/$(DEPDIR)/samltest-Response20Test.Tpo saml2/core/impl/$(DEPDIR)/samltest-Response20Test.Po
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='saml2/core/impl/Response20Test.cpp' object='saml2/core/impl/samltest-Response20Test.obj' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(samltest_CXXFLAGS) $(CXXFLAGS) -c -o saml2/core/impl/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`
saml2/core/impl/samltest-Scoping20Test.o: saml2/core/impl/Scoping20Test.cpp
@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(samltest_CXXFLAGS) $(CXXFLAGS) -MT saml2/core/impl/samltest-Scoping20Test.o -MD -MP -MF saml2/core/impl/$(DEPDIR)/samltest-Scoping20Test.Tpo -c -o saml2/core/impl/samltest-Scoping20Test.o `test -f 'saml2/core/impl/Scoping20Test.cpp' || echo '$(srcdir)/'`saml2/core/impl/Scoping20Test.cpp
@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) saml2/core/impl/$(DEPDIR)/samltest-Scoping20Test.Tpo saml2/core/impl/$(DEPDIR)/samltest-Scoping20Test.Po
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='saml2/core/impl/Scoping20Test.cpp' object='saml2/core/impl/samltest-Scoping20Test.o' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(samltest_CXXFLAGS) $(CXXFLAGS) -c -o saml2/core/impl/samltest-Scoping20Test.o `test -f 'saml2/core/impl/Scoping20Test.cpp' || echo '$(srcdir)/'`saml2/core/impl/Scoping20Test.cpp
saml2/core/impl/samltest-Scoping20Test.obj: saml2/core/impl/Scoping20Test.cpp
@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(samltest_CXXFLAGS) $(CXXFLAGS) -MT saml2/core/impl/samltest-Scoping20Test.obj -MD -MP -MF saml2/core/impl/$(DEPDIR)/samltest-Scoping20Test.Tpo -c -o saml2/core/impl/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_V_at)$(am__mv) saml2/core/impl/$(DEPDIR)/samltest-Scoping20Test.Tpo saml2/core/impl/$(DEPDIR)/samltest-Scoping20Test.Po
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='saml2/core/impl/Scoping20Test.cpp' object='saml2/core/impl/samltest-Scoping20Test.obj' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(samltest_CXXFLAGS) $(CXXFLAGS) -c -o saml2/core/impl/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`
saml2/core/impl/samltest-SessionIndex20Test.o: saml2/core/impl/SessionIndex20Test.cpp
@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(samltest_CXXFLAGS) $(CXXFLAGS) -MT saml2/core/impl/samltest-SessionIndex20Test.o -MD -MP -MF saml2/core/impl/$(DEPDIR)/samltest-SessionIndex20Test.Tpo -c -o saml2/core/impl/samltest-SessionIndex20Test.o `test -f 'saml2/core/impl/SessionIndex20Test.cpp' || echo '$(srcdir)/'`saml2/core/impl/SessionIndex20Test.cpp
@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) saml2/core/impl/$(DEPDIR)/samltest-SessionIndex20Test.Tpo saml2/core/impl/$(DEPDIR)/samltest-SessionIndex20Test.Po
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='saml2/core/impl/SessionIndex20Test.cpp' object='saml2/core/impl/samltest-SessionIndex20Test.o' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(samltest_CXXFLAGS) $(CXXFLAGS) -c -o saml2/core/impl/samltest-SessionIndex20Test.o `test -f 'saml2/core/impl/SessionIndex20Test.cpp' || echo '$(srcdir)/'`saml2/core/impl/SessionIndex20Test.cpp
saml2/core/impl/samltest-SessionIndex20Test.obj: saml2/core/impl/SessionIndex20Test.cpp
@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(samltest_CXXFLAGS) $(CXXFLAGS) -MT saml2/core/impl/samltest-SessionIndex20Test.obj -MD -MP -MF saml2/core/impl/$(DEPDIR)/samltest-SessionIndex20Test.Tpo -c -o saml2/core/impl/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_V_at)$(am__mv) saml2/core/impl/$(DEPDIR)/samltest-SessionIndex20Test.Tpo saml2/core/impl/$(DEPDIR)/samltest-SessionIndex20Test.Po
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='saml2/core/impl/SessionIndex20Test.cpp' object='saml2/core/impl/samltest-SessionIndex20Test.obj' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(samltest_CXXFLAGS) $(CXXFLAGS) -c -o saml2/core/impl/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`
saml2/core/impl/samltest-Status20Test.o: saml2/core/impl/Status20Test.cpp
@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(samltest_CXXFLAGS) $(CXXFLAGS) -MT saml2/core/impl/samltest-Status20Test.o -MD -MP -MF saml2/core/impl/$(DEPDIR)/samltest-Status20Test.Tpo -c -o saml2/core/impl/samltest-Status20Test.o `test -f 'saml2/core/impl/Status20Test.cpp' || echo '$(srcdir)/'`saml2/core/impl/Status20Test.cpp
@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) saml2/core/impl/$(DEPDIR)/samltest-Status20Test.Tpo saml2/core/impl/$(DEPDIR)/samltest-Status20Test.Po
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='saml2/core/impl/Status20Test.cpp' object='saml2/core/impl/samltest-Status20Test.o' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(samltest_CXXFLAGS) $(CXXFLAGS) -c -o saml2/core/impl/samltest-Status20Test.o `test -f 'saml2/core/impl/Status20Test.cpp' || echo '$(srcdir)/'`saml2/core/impl/Status20Test.cpp
saml2/core/impl/samltest-Status20Test.obj: saml2/core/impl/Status20Test.cpp
@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(samltest_CXXFLAGS) $(CXXFLAGS) -MT saml2/core/impl/samltest-Status20Test.obj -MD -MP -MF saml2/core/impl/$(DEPDIR)/samltest-Status20Test.Tpo -c -o saml2/core/impl/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_V_at)$(am__mv) saml2/core/impl/$(DEPDIR)/samltest-Status20Test.Tpo saml2/core/impl/$(DEPDIR)/samltest-Status20Test.Po
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='saml2/core/impl/Status20Test.cpp' object='saml2/core/impl/samltest-Status20Test.obj' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(samltest_CXXFLAGS) $(CXXFLAGS) -c -o saml2/core/impl/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`
saml2/core/impl/samltest-StatusCode20Test.o: saml2/core/impl/StatusCode20Test.cpp
@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(samltest_CXXFLAGS) $(CXXFLAGS) -MT saml2/core/impl/samltest-StatusCode20Test.o -MD -MP -MF saml2/core/impl/$(DEPDIR)/samltest-StatusCode20Test.Tpo -c -o saml2/core/impl/samltest-StatusCode20Test.o `test -f 'saml2/core/impl/StatusCode20Test.cpp' || echo '$(srcdir)/'`saml2/core/impl/StatusCode20Test.cpp
@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) saml2/core/impl/$(DEPDIR)/samltest-StatusCode20Test.Tpo saml2/core/impl/$(DEPDIR)/samltest-StatusCode20Test.Po
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='saml2/core/impl/StatusCode20Test.cpp' object='saml2/core/impl/samltest-StatusCode20Test.o' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(samltest_CXXFLAGS) $(CXXFLAGS) -c -o saml2/core/impl/samltest-StatusCode20Test.o `test -f 'saml2/core/impl/StatusCode20Test.cpp' || echo '$(srcdir)/'`saml2/core/impl/StatusCode20Test.cpp
saml2/core/impl/samltest-StatusCode20Test.obj: saml2/core/impl/StatusCode20Test.cpp
@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(samltest_CXXFLAGS) $(CXXFLAGS) -MT saml2/core/impl/samltest-StatusCode20Test.obj -MD -MP -MF saml2/core/impl/$(DEPDIR)/samltest-StatusCode20Test.Tpo -c -o saml2/core/impl/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_V_at)$(am__mv) saml2/core/impl/$(DEPDIR)/samltest-StatusCode20Test.Tpo saml2/core/impl/$(DEPDIR)/samltest-StatusCode20Test.Po
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='saml2/core/impl/StatusCode20Test.cpp' object='saml2/core/impl/samltest-StatusCode20Test.obj' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(samltest_CXXFLAGS) $(CXXFLAGS) -c -o saml2/core/impl/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`
saml2/core/impl/samltest-StatusDetail20Test.o: saml2/core/impl/StatusDetail20Test.cpp
@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(samltest_CXXFLAGS) $(CXXFLAGS) -MT saml2/core/impl/samltest-StatusDetail20Test.o -MD -MP -MF saml2/core/impl/$(DEPDIR)/samltest-StatusDetail20Test.Tpo -c -o saml2/core/impl/samltest-StatusDetail20Test.o `test -f 'saml2/core/impl/StatusDetail20Test.cpp' || echo '$(srcdir)/'`saml2/core/impl/StatusDetail20Test.cpp
@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) saml2/core/impl/$(DEPDIR)/samltest-StatusDetail20Test.Tpo saml2/core/impl/$(DEPDIR)/samltest-StatusDetail20Test.Po
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='saml2/core/impl/StatusDetail20Test.cpp' object='saml2/core/impl/samltest-StatusDetail20Test.o' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(samltest_CXXFLAGS) $(CXXFLAGS) -c -o saml2/core/impl/samltest-StatusDetail20Test.o `test -f 'saml2/core/impl/StatusDetail20Test.cpp' || echo '$(srcdir)/'`saml2/core/impl/StatusDetail20Test.cpp
saml2/core/impl/samltest-StatusDetail20Test.obj: saml2/core/impl/StatusDetail20Test.cpp
@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(samltest_CXXFLAGS) $(CXXFLAGS) -MT saml2/core/impl/samltest-StatusDetail20Test.obj -MD -MP -MF saml2/core/impl/$(DEPDIR)/samltest-StatusDetail20Test.Tpo -c -o saml2/core/impl/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_V_at)$(am__mv) saml2/core/impl/$(DEPDIR)/samltest-StatusDetail20Test.Tpo saml2/core/impl/$(DEPDIR)/samltest-StatusDetail20Test.Po
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='saml2/core/impl/StatusDetail20Test.cpp' object='saml2/core/impl/samltest-StatusDetail20Test.obj' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(samltest_CXXFLAGS) $(CXXFLAGS) -c -o saml2/core/impl/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`
saml2/core/impl/samltest-StatusMessage20Test.o: saml2/core/impl/StatusMessage20Test.cpp
@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(samltest_CXXFLAGS) $(CXXFLAGS) -MT saml2/core/impl/samltest-StatusMessage20Test.o -MD -MP -MF saml2/core/impl/$(DEPDIR)/samltest-StatusMessage20Test.Tpo -c -o saml2/core/impl/samltest-StatusMessage20Test.o `test -f 'saml2/core/impl/StatusMessage20Test.cpp' || echo '$(srcdir)/'`saml2/core/impl/StatusMessage20Test.cpp
@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) saml2/core/impl/$(DEPDIR)/samltest-StatusMessage20Test.Tpo saml2/core/impl/$(DEPDIR)/samltest-StatusMessage20Test.Po
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='saml2/core/impl/StatusMessage20Test.cpp' object='saml2/core/impl/samltest-StatusMessage20Test.o' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(samltest_CXXFLAGS) $(CXXFLAGS) -c -o saml2/core/impl/samltest-StatusMessage20Test.o `test -f 'saml2/core/impl/StatusMessage20Test.cpp' || echo '$(srcdir)/'`saml2/core/impl/StatusMessage20Test.cpp
saml2/core/impl/samltest-StatusMessage20Test.obj: saml2/core/impl/StatusMessage20Test.cpp
@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(samltest_CXXFLAGS) $(CXXFLAGS) -MT saml2/core/impl/samltest-StatusMessage20Test.obj -MD -MP -MF saml2/core/impl/$(DEPDIR)/samltest-StatusMessage20Test.Tpo -c -o saml2/core/impl/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_V_at)$(am__mv) saml2/core/impl/$(DEPDIR)/samltest-StatusMessage20Test.Tpo saml2/core/impl/$(DEPDIR)/samltest-StatusMessage20Test.Po
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='saml2/core/impl/StatusMessage20Test.cpp' object='saml2/core/impl/samltest-StatusMessage20Test.obj' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(samltest_CXXFLAGS) $(CXXFLAGS) -c -o saml2/core/impl/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`
saml2/core/impl/samltest-Subject20Test.o: saml2/core/impl/Subject20Test.cpp
@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(samltest_CXXFLAGS) $(CXXFLAGS) -MT saml2/core/impl/samltest-Subject20Test.o -MD -MP -MF saml2/core/impl/$(DEPDIR)/samltest-Subject20Test.Tpo -c -o saml2/core/impl/samltest-Subject20Test.o `test -f 'saml2/core/impl/Subject20Test.cpp' || echo '$(srcdir)/'`saml2/core/impl/Subject20Test.cpp
@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) saml2/core/impl/$(DEPDIR)/samltest-Subject20Test.Tpo saml2/core/impl/$(DEPDIR)/samltest-Subject20Test.Po
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='saml2/core/impl/Subject20Test.cpp' object='saml2/core/impl/samltest-Subject20Test.o' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(samltest_CXXFLAGS) $(CXXFLAGS) -c -o saml2/core/impl/samltest-Subject20Test.o `test -f 'saml2/core/impl/Subject20Test.cpp' || echo '$(srcdir)/'`saml2/core/impl/Subject20Test.cpp
saml2/core/impl/samltest-Subject20Test.obj: saml2/core/impl/Subject20Test.cpp
@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(samltest_CXXFLAGS) $(CXXFLAGS) -MT saml2/core/impl/samltest-Subject20Test.obj -MD -MP -MF saml2/core/impl/$(DEPDIR)/samltest-Subject20Test.Tpo -c -o saml2/core/impl/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_V_at)$(am__mv) saml2/core/impl/$(DEPDIR)/samltest-Subject20Test.Tpo saml2/core/impl/$(DEPDIR)/samltest-Subject20Test.Po
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='saml2/core/impl/Subject20Test.cpp' object='saml2/core/impl/samltest-Subject20Test.obj' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(samltest_CXXFLAGS) $(CXXFLAGS) -c -o saml2/core/impl/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`
saml2/core/impl/samltest-SubjectConfirmation20Test.o: saml2/core/impl/SubjectConfirmation20Test.cpp
@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(samltest_CXXFLAGS) $(CXXFLAGS) -MT saml2/core/impl/samltest-SubjectConfirmation20Test.o -MD -MP -MF saml2/core/impl/$(DEPDIR)/samltest-SubjectConfirmation20Test.Tpo -c -o saml2/core/impl/samltest-SubjectConfirmation20Test.o `test -f 'saml2/core/impl/SubjectConfirmation20Test.cpp' || echo '$(srcdir)/'`saml2/core/impl/SubjectConfirmation20Test.cpp
@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) saml2/core/impl/$(DEPDIR)/samltest-SubjectConfirmation20Test.Tpo saml2/core/impl/$(DEPDIR)/samltest-SubjectConfirmation20Test.Po
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='saml2/core/impl/SubjectConfirmation20Test.cpp' object='saml2/core/impl/samltest-SubjectConfirmation20Test.o' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(samltest_CXXFLAGS) $(CXXFLAGS) -c -o saml2/core/impl/samltest-SubjectConfirmation20Test.o `test -f 'saml2/core/impl/SubjectConfirmation20Test.cpp' || echo '$(srcdir)/'`saml2/core/impl/SubjectConfirmation20Test.cpp
saml2/core/impl/samltest-SubjectConfirmation20Test.obj: saml2/core/impl/SubjectConfirmation20Test.cpp
@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(samltest_CXXFLAGS) $(CXXFLAGS) -MT saml2/core/impl/samltest-SubjectConfirmation20Test.obj -MD -MP -MF saml2/core/impl/$(DEPDIR)/samltest-SubjectConfirmation20Test.Tpo -c -o saml2/core/impl/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_V_at)$(am__mv) saml2/core/impl/$(DEPDIR)/samltest-SubjectConfirmation20Test.Tpo saml2/core/impl/$(DEPDIR)/samltest-SubjectConfirmation20Test.Po
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='saml2/core/impl/SubjectConfirmation20Test.cpp' object='saml2/core/impl/samltest-SubjectConfirmation20Test.obj' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(samltest_CXXFLAGS) $(CXXFLAGS) -c -o saml2/core/impl/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`
saml2/core/impl/samltest-SubjectConfirmationData20Test.o: saml2/core/impl/SubjectConfirmationData20Test.cpp
@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(samltest_CXXFLAGS) $(CXXFLAGS) -MT saml2/core/impl/samltest-SubjectConfirmationData20Test.o -MD -MP -MF saml2/core/impl/$(DEPDIR)/samltest-SubjectConfirmationData20Test.Tpo -c -o saml2/core/impl/samltest-SubjectConfirmationData20Test.o `test -f 'saml2/core/impl/SubjectConfirmationData20Test.cpp' || echo '$(srcdir)/'`saml2/core/impl/SubjectConfirmationData20Test.cpp
@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) saml2/core/impl/$(DEPDIR)/samltest-SubjectConfirmationData20Test.Tpo saml2/core/impl/$(DEPDIR)/samltest-SubjectConfirmationData20Test.Po
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='saml2/core/impl/SubjectConfirmationData20Test.cpp' object='saml2/core/impl/samltest-SubjectConfirmationData20Test.o' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(samltest_CXXFLAGS) $(CXXFLAGS) -c -o saml2/core/impl/samltest-SubjectConfirmationData20Test.o `test -f 'saml2/core/impl/SubjectConfirmationData20Test.cpp' || echo '$(srcdir)/'`saml2/core/impl/SubjectConfirmationData20Test.cpp
saml2/core/impl/samltest-SubjectConfirmationData20Test.obj: saml2/core/impl/SubjectConfirmationData20Test.cpp
@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(samltest_CXXFLAGS) $(CXXFLAGS) -MT saml2/core/impl/samltest-SubjectConfirmationData20Test.obj -MD -MP -MF saml2/core/impl/$(DEPDIR)/samltest-SubjectConfirmationData20Test.Tpo -c -o saml2/core/impl/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_V_at)$(am__mv) saml2/core/impl/$(DEPDIR)/samltest-SubjectConfirmationData20Test.Tpo saml2/core/impl/$(DEPDIR)/samltest-SubjectConfirmationData20Test.Po
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='saml2/core/impl/SubjectConfirmationData20Test.cpp' object='saml2/core/impl/samltest-SubjectConfirmationData20Test.obj' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(samltest_CXXFLAGS) $(CXXFLAGS) -c -o saml2/core/impl/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`
saml2/core/impl/samltest-SubjectLocality20Test.o: saml2/core/impl/SubjectLocality20Test.cpp
@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(samltest_CXXFLAGS) $(CXXFLAGS) -MT saml2/core/impl/samltest-SubjectLocality20Test.o -MD -MP -MF saml2/core/impl/$(DEPDIR)/samltest-SubjectLocality20Test.Tpo -c -o saml2/core/impl/samltest-SubjectLocality20Test.o `test -f 'saml2/core/impl/SubjectLocality20Test.cpp' || echo '$(srcdir)/'`saml2/core/impl/SubjectLocality20Test.cpp
@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) saml2/core/impl/$(DEPDIR)/samltest-SubjectLocality20Test.Tpo saml2/core/impl/$(DEPDIR)/samltest-SubjectLocality20Test.Po
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='saml2/core/impl/SubjectLocality20Test.cpp' object='saml2/core/impl/samltest-SubjectLocality20Test.o' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(samltest_CXXFLAGS) $(CXXFLAGS) -c -o saml2/core/impl/samltest-SubjectLocality20Test.o `test -f 'saml2/core/impl/SubjectLocality20Test.cpp' || echo '$(srcdir)/'`saml2/core/impl/SubjectLocality20Test.cpp
saml2/core/impl/samltest-SubjectLocality20Test.obj: saml2/core/impl/SubjectLocality20Test.cpp
@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(samltest_CXXFLAGS) $(CXXFLAGS) -MT saml2/core/impl/samltest-SubjectLocality20Test.obj -MD -MP -MF saml2/core/impl/$(DEPDIR)/samltest-SubjectLocality20Test.Tpo -c -o saml2/core/impl/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_V_at)$(am__mv) saml2/core/impl/$(DEPDIR)/samltest-SubjectLocality20Test.Tpo saml2/core/impl/$(DEPDIR)/samltest-SubjectLocality20Test.Po
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='saml2/core/impl/SubjectLocality20Test.cpp' object='saml2/core/impl/samltest-SubjectLocality20Test.obj' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(samltest_CXXFLAGS) $(CXXFLAGS) -c -o saml2/core/impl/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`
saml2/core/impl/samltest-Terminate20Test.o: saml2/core/impl/Terminate20Test.cpp
@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(samltest_CXXFLAGS) $(CXXFLAGS) -MT saml2/core/impl/samltest-Terminate20Test.o -MD -MP -MF saml2/core/impl/$(DEPDIR)/samltest-Terminate20Test.Tpo -c -o saml2/core/impl/samltest-Terminate20Test.o `test -f 'saml2/core/impl/Terminate20Test.cpp' || echo '$(srcdir)/'`saml2/core/impl/Terminate20Test.cpp
@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) saml2/core/impl/$(DEPDIR)/samltest-Terminate20Test.Tpo saml2/core/impl/$(DEPDIR)/samltest-Terminate20Test.Po
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='saml2/core/impl/Terminate20Test.cpp' object='saml2/core/impl/samltest-Terminate20Test.o' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(samltest_CXXFLAGS) $(CXXFLAGS) -c -o saml2/core/impl/samltest-Terminate20Test.o `test -f 'saml2/core/impl/Terminate20Test.cpp' || echo '$(srcdir)/'`saml2/core/impl/Terminate20Test.cpp
saml2/core/impl/samltest-Terminate20Test.obj: saml2/core/impl/Terminate20Test.cpp
@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(samltest_CXXFLAGS) $(CXXFLAGS) -MT saml2/core/impl/samltest-Terminate20Test.obj -MD -MP -MF saml2/core/impl/$(DEPDIR)/samltest-Terminate20Test.Tpo -c -o saml2/core/impl/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_V_at)$(am__mv) saml2/core/impl/$(DEPDIR)/samltest-Terminate20Test.Tpo saml2/core/impl/$(DEPDIR)/samltest-Terminate20Test.Po
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='saml2/core/impl/Terminate20Test.cpp' object='saml2/core/impl/samltest-Terminate20Test.obj' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(samltest_CXXFLAGS) $(CXXFLAGS) -c -o saml2/core/impl/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`
saml2/binding/samltest-SAML2ArtifactTest.o: saml2/binding/SAML2ArtifactTest.cpp
@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(samltest_CXXFLAGS) $(CXXFLAGS) -MT saml2/binding/samltest-SAML2ArtifactTest.o -MD -MP -MF saml2/binding/$(DEPDIR)/samltest-SAML2ArtifactTest.Tpo -c -o saml2/binding/samltest-SAML2ArtifactTest.o `test -f 'saml2/binding/SAML2ArtifactTest.cpp' || echo '$(srcdir)/'`saml2/binding/SAML2ArtifactTest.cpp
@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) saml2/binding/$(DEPDIR)/samltest-SAML2ArtifactTest.Tpo saml2/binding/$(DEPDIR)/samltest-SAML2ArtifactTest.Po
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='saml2/binding/SAML2ArtifactTest.cpp' object='saml2/binding/samltest-SAML2ArtifactTest.o' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(samltest_CXXFLAGS) $(CXXFLAGS) -c -o saml2/binding/samltest-SAML2ArtifactTest.o `test -f 'saml2/binding/SAML2ArtifactTest.cpp' || echo '$(srcdir)/'`saml2/binding/SAML2ArtifactTest.cpp
saml2/binding/samltest-SAML2ArtifactTest.obj: saml2/binding/SAML2ArtifactTest.cpp
@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(samltest_CXXFLAGS) $(CXXFLAGS) -MT saml2/binding/samltest-SAML2ArtifactTest.obj -MD -MP -MF saml2/binding/$(DEPDIR)/samltest-SAML2ArtifactTest.Tpo -c -o saml2/binding/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_V_at)$(am__mv) saml2/binding/$(DEPDIR)/samltest-SAML2ArtifactTest.Tpo saml2/binding/$(DEPDIR)/samltest-SAML2ArtifactTest.Po
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='saml2/binding/SAML2ArtifactTest.cpp' object='saml2/binding/samltest-SAML2ArtifactTest.obj' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(samltest_CXXFLAGS) $(CXXFLAGS) -c -o saml2/binding/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`
saml2/binding/samltest-SAML2POSTTest.o: saml2/binding/SAML2POSTTest.cpp
@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(samltest_CXXFLAGS) $(CXXFLAGS) -MT saml2/binding/samltest-SAML2POSTTest.o -MD -MP -MF saml2/binding/$(DEPDIR)/samltest-SAML2POSTTest.Tpo -c -o saml2/binding/samltest-SAML2POSTTest.o `test -f 'saml2/binding/SAML2POSTTest.cpp' || echo '$(srcdir)/'`saml2/binding/SAML2POSTTest.cpp
@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) saml2/binding/$(DEPDIR)/samltest-SAML2POSTTest.Tpo saml2/binding/$(DEPDIR)/samltest-SAML2POSTTest.Po
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='saml2/binding/SAML2POSTTest.cpp' object='saml2/binding/samltest-SAML2POSTTest.o' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(samltest_CXXFLAGS) $(CXXFLAGS) -c -o saml2/binding/samltest-SAML2POSTTest.o `test -f 'saml2/binding/SAML2POSTTest.cpp' || echo '$(srcdir)/'`saml2/binding/SAML2POSTTest.cpp
saml2/binding/samltest-SAML2POSTTest.obj: saml2/binding/SAML2POSTTest.cpp
@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(samltest_CXXFLAGS) $(CXXFLAGS) -MT saml2/binding/samltest-SAML2POSTTest.obj -MD -MP -MF saml2/binding/$(DEPDIR)/samltest-SAML2POSTTest.Tpo -c -o saml2/binding/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_V_at)$(am__mv) saml2/binding/$(DEPDIR)/samltest-SAML2POSTTest.Tpo saml2/binding/$(DEPDIR)/samltest-SAML2POSTTest.Po
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='saml2/binding/SAML2POSTTest.cpp' object='saml2/binding/samltest-SAML2POSTTest.obj' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(samltest_CXXFLAGS) $(CXXFLAGS) -c -o saml2/binding/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`
saml2/binding/samltest-SAML2RedirectTest.o: saml2/binding/SAML2RedirectTest.cpp
@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(samltest_CXXFLAGS) $(CXXFLAGS) -MT saml2/binding/samltest-SAML2RedirectTest.o -MD -MP -MF saml2/binding/$(DEPDIR)/samltest-SAML2RedirectTest.Tpo -c -o saml2/binding/samltest-SAML2RedirectTest.o `test -f 'saml2/binding/SAML2RedirectTest.cpp' || echo '$(srcdir)/'`saml2/binding/SAML2RedirectTest.cpp
@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) saml2/binding/$(DEPDIR)/samltest-SAML2RedirectTest.Tpo saml2/binding/$(DEPDIR)/samltest-SAML2RedirectTest.Po
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='saml2/binding/SAML2RedirectTest.cpp' object='saml2/binding/samltest-SAML2RedirectTest.o' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(samltest_CXXFLAGS) $(CXXFLAGS) -c -o saml2/binding/samltest-SAML2RedirectTest.o `test -f 'saml2/binding/SAML2RedirectTest.cpp' || echo '$(srcdir)/'`saml2/binding/SAML2RedirectTest.cpp
saml2/binding/samltest-SAML2RedirectTest.obj: saml2/binding/SAML2RedirectTest.cpp
@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(samltest_CXXFLAGS) $(CXXFLAGS) -MT saml2/binding/samltest-SAML2RedirectTest.obj -MD -MP -MF saml2/binding/$(DEPDIR)/samltest-SAML2RedirectTest.Tpo -c -o saml2/binding/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_V_at)$(am__mv) saml2/binding/$(DEPDIR)/samltest-SAML2RedirectTest.Tpo saml2/binding/$(DEPDIR)/samltest-SAML2RedirectTest.Po
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='saml2/binding/SAML2RedirectTest.cpp' object='saml2/binding/samltest-SAML2RedirectTest.obj' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(samltest_CXXFLAGS) $(CXXFLAGS) -c -o saml2/binding/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`
saml2/metadata/samltest-XMLMetadataProviderTest.o: saml2/metadata/XMLMetadataProviderTest.cpp
@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(samltest_CXXFLAGS) $(CXXFLAGS) -MT saml2/metadata/samltest-XMLMetadataProviderTest.o -MD -MP -MF saml2/metadata/$(DEPDIR)/samltest-XMLMetadataProviderTest.Tpo -c -o saml2/metadata/samltest-XMLMetadataProviderTest.o `test -f 'saml2/metadata/XMLMetadataProviderTest.cpp' || echo '$(srcdir)/'`saml2/metadata/XMLMetadataProviderTest.cpp
@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) saml2/metadata/$(DEPDIR)/samltest-XMLMetadataProviderTest.Tpo saml2/metadata/$(DEPDIR)/samltest-XMLMetadataProviderTest.Po
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='saml2/metadata/XMLMetadataProviderTest.cpp' object='saml2/metadata/samltest-XMLMetadataProviderTest.o' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(samltest_CXXFLAGS) $(CXXFLAGS) -c -o saml2/metadata/samltest-XMLMetadataProviderTest.o `test -f 'saml2/metadata/XMLMetadataProviderTest.cpp' || echo '$(srcdir)/'`saml2/metadata/XMLMetadataProviderTest.cpp
saml2/metadata/samltest-XMLMetadataProviderTest.obj: saml2/metadata/XMLMetadataProviderTest.cpp
@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(samltest_CXXFLAGS) $(CXXFLAGS) -MT saml2/metadata/samltest-XMLMetadataProviderTest.obj -MD -MP -MF saml2/metadata/$(DEPDIR)/samltest-XMLMetadataProviderTest.Tpo -c -o saml2/metadata/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_V_at)$(am__mv) saml2/metadata/$(DEPDIR)/samltest-XMLMetadataProviderTest.Tpo saml2/metadata/$(DEPDIR)/samltest-XMLMetadataProviderTest.Po
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='saml2/metadata/XMLMetadataProviderTest.cpp' object='saml2/metadata/samltest-XMLMetadataProviderTest.obj' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(samltest_CXXFLAGS) $(CXXFLAGS) -c -o saml2/metadata/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`
saml2/profile/samltest-SAML2PolicyTest.o: saml2/profile/SAML2PolicyTest.cpp
@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(samltest_CXXFLAGS) $(CXXFLAGS) -MT saml2/profile/samltest-SAML2PolicyTest.o -MD -MP -MF saml2/profile/$(DEPDIR)/samltest-SAML2PolicyTest.Tpo -c -o saml2/profile/samltest-SAML2PolicyTest.o `test -f 'saml2/profile/SAML2PolicyTest.cpp' || echo '$(srcdir)/'`saml2/profile/SAML2PolicyTest.cpp
@am__fastdepCXX_TRUE@ $(AM_V_at)$(am__mv) saml2/profile/$(DEPDIR)/samltest-SAML2PolicyTest.Tpo saml2/profile/$(DEPDIR)/samltest-SAML2PolicyTest.Po
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='saml2/profile/SAML2PolicyTest.cpp' object='saml2/profile/samltest-SAML2PolicyTest.o' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(samltest_CXXFLAGS) $(CXXFLAGS) -c -o saml2/profile/samltest-SAML2PolicyTest.o `test -f 'saml2/profile/SAML2PolicyTest.cpp' || echo '$(srcdir)/'`saml2/profile/SAML2PolicyTest.cpp
saml2/profile/samltest-SAML2PolicyTest.obj: saml2/profile/SAML2PolicyTest.cpp
@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(samltest_CXXFLAGS) $(CXXFLAGS) -MT saml2/profile/samltest-SAML2PolicyTest.obj -MD -MP -MF saml2/profile/$(DEPDIR)/samltest-SAML2PolicyTest.Tpo -c -o saml2/profile/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_V_at)$(am__mv) saml2/profile/$(DEPDIR)/samltest-SAML2PolicyTest.Tpo saml2/profile/$(DEPDIR)/samltest-SAML2PolicyTest.Po
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='saml2/profile/SAML2PolicyTest.cpp' object='saml2/profile/samltest-SAML2PolicyTest.obj' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(CXX) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(samltest_CXXFLAGS) $(CXXFLAGS) -c -o saml2/profile/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`
samltest-samltest.o: samltest.cpp
@am__fastdepCXX_TRUE@ $(AM_V_CXX)$(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_V_at)$(am__mv) $(DEPDIR)/samltest-samltest.Tpo $(DEPDIR)/samltest-samltest.Po
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='samltest.cpp' object='samltest-samltest.o' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(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@ $(AM_V_CXX)$(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_V_at)$(am__mv) $(DEPDIR)/samltest-samltest.Tpo $(DEPDIR)/samltest-samltest.Po
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ $(AM_V_CXX)source='samltest.cpp' object='samltest-samltest.obj' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCXX_FALSE@ DEPDIR=$(DEPDIR) $(CXXDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCXX_FALSE@ $(AM_V_CXX@am__nodep@)$(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`
mostlyclean-libtool:
-rm -f *.lo
clean-libtool:
-rm -rf .libs _libs
ID: $(am__tagged_files)
$(am__define_uniq_tagged_files); mkid -fID $$unique
tags: tags-am
TAGS: tags
tags-am: $(TAGS_DEPENDENCIES) $(am__tagged_files)
set x; \
here=`pwd`; \
$(am__define_uniq_tagged_files); \
shift; \
if test -z "$(ETAGS_ARGS)$$*$$unique"; then :; else \
test -n "$$unique" || unique=$$empty_fix; \
if test $$# -gt 0; then \
$(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \
"$$@" $$unique; \
else \
$(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \
$$unique; \
fi; \
fi
ctags: ctags-am
CTAGS: ctags
ctags-am: $(TAGS_DEPENDENCIES) $(am__tagged_files)
$(am__define_uniq_tagged_files); \
test -z "$(CTAGS_ARGS)$$unique" \
|| $(CTAGS) $(CTAGSFLAGS) $(AM_CTAGSFLAGS) $(CTAGS_ARGS) \
$$unique
GTAGS:
here=`$(am__cd) $(top_builddir) && pwd` \
&& $(am__cd) $(top_srcdir) \
&& gtags -i $(GTAGS_ARGS) "$$here"
cscopelist: cscopelist-am
cscopelist-am: $(am__tagged_files)
list='$(am__tagged_files)'; \
case "$(srcdir)" in \
[\\/]* | ?:[\\/]*) sdir="$(srcdir)" ;; \
*) sdir=$(subdir)/$(srcdir) ;; \
esac; \
for i in $$list; do \
if test -f "$$i"; then \
echo "$(subdir)/$$i"; \
else \
echo "$$sdir/$$i"; \
fi; \
done >> $(top_builddir)/cscope.files
distclean-tags:
-rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags
# Recover from deleted '.trs' file; this should ensure that
# "rm -f foo.log; make foo.trs" re-run 'foo.test', and re-create
# both 'foo.log' and 'foo.trs'. Break the recipe in two subshells
# to avoid problems with "make -n".
.log.trs:
rm -f $< $@
$(MAKE) $(AM_MAKEFLAGS) $<
# Leading 'am--fnord' is there to ensure the list of targets does not
# expand to empty, as could happen e.g. with make check TESTS=''.
am--fnord $(TEST_LOGS) $(TEST_LOGS:.log=.trs): $(am__force_recheck)
am--force-recheck:
@:
$(TEST_SUITE_LOG): $(TEST_LOGS)
@$(am__set_TESTS_bases); \
am__f_ok () { test -f "$$1" && test -r "$$1"; }; \
redo_bases=`for i in $$bases; do \
am__f_ok $$i.trs && am__f_ok $$i.log || echo $$i; \
done`; \
if test -n "$$redo_bases"; then \
redo_logs=`for i in $$redo_bases; do echo $$i.log; done`; \
redo_results=`for i in $$redo_bases; do echo $$i.trs; done`; \
if $(am__make_dryrun); then :; else \
rm -f $$redo_logs && rm -f $$redo_results || exit 1; \
fi; \
fi; \
if test -n "$$am__remaking_logs"; then \
echo "fatal: making $(TEST_SUITE_LOG): possible infinite" \
"recursion detected" >&2; \
elif test -n "$$redo_logs"; then \
am__remaking_logs=yes $(MAKE) $(AM_MAKEFLAGS) $$redo_logs; \
fi; \
if $(am__make_dryrun); then :; else \
st=0; \
errmsg="fatal: making $(TEST_SUITE_LOG): failed to create"; \
for i in $$redo_bases; do \
test -f $$i.trs && test -r $$i.trs \
|| { echo "$$errmsg $$i.trs" >&2; st=1; }; \
test -f $$i.log && test -r $$i.log \
|| { echo "$$errmsg $$i.log" >&2; st=1; }; \
done; \
test $$st -eq 0 || exit 1; \
fi
@$(am__sh_e_setup); $(am__tty_colors); $(am__set_TESTS_bases); \
ws='[ ]'; \
results=`for b in $$bases; do echo $$b.trs; done`; \
test -n "$$results" || results=/dev/null; \
all=` grep "^$$ws*:test-result:" $$results | wc -l`; \
pass=` grep "^$$ws*:test-result:$$ws*PASS" $$results | wc -l`; \
fail=` grep "^$$ws*:test-result:$$ws*FAIL" $$results | wc -l`; \
skip=` grep "^$$ws*:test-result:$$ws*SKIP" $$results | wc -l`; \
xfail=`grep "^$$ws*:test-result:$$ws*XFAIL" $$results | wc -l`; \
xpass=`grep "^$$ws*:test-result:$$ws*XPASS" $$results | wc -l`; \
error=`grep "^$$ws*:test-result:$$ws*ERROR" $$results | wc -l`; \
if test `expr $$fail + $$xpass + $$error` -eq 0; then \
success=true; \
else \
success=false; \
fi; \
br='==================='; br=$$br$$br$$br$$br; \
result_count () \
{ \
if test x"$$1" = x"--maybe-color"; then \
maybe_colorize=yes; \
elif test x"$$1" = x"--no-color"; then \
maybe_colorize=no; \
else \
echo "$@: invalid 'result_count' usage" >&2; exit 4; \
fi; \
shift; \
desc=$$1 count=$$2; \
if test $$maybe_colorize = yes && test $$count -gt 0; then \
color_start=$$3 color_end=$$std; \
else \
color_start= color_end=; \
fi; \
echo "$${color_start}# $$desc $$count$${color_end}"; \
}; \
create_testsuite_report () \
{ \
result_count $$1 "TOTAL:" $$all "$$brg"; \
result_count $$1 "PASS: " $$pass "$$grn"; \
result_count $$1 "SKIP: " $$skip "$$blu"; \
result_count $$1 "XFAIL:" $$xfail "$$lgn"; \
result_count $$1 "FAIL: " $$fail "$$red"; \
result_count $$1 "XPASS:" $$xpass "$$red"; \
result_count $$1 "ERROR:" $$error "$$mgn"; \
}; \
output_system_information () \
{ \
echo; \
{ uname -a | $(AWK) '{ \
printf "System information (uname -a):"; \
for (i = 1; i < NF; ++i) \
{ \
if (i != 2) \
printf " %s", $$i; \
} \
printf "\n"; \
}'; } 2>&1; \
if test -r /etc/os-release; then \
echo "Distribution information (/etc/os-release):"; \
sed 8q /etc/os-release; \
elif test -r /etc/issue; then \
echo "Distribution information (/etc/issue):"; \
cat /etc/issue; \
fi; \
}; \
please_report () \
{ \
echo "Some test(s) failed. Please report this to $(PACKAGE_BUGREPORT),"; \
echo "together with the test-suite.log file (gzipped) and your system"; \
echo "information. Thanks."; \
}; \
{ \
echo "$(PACKAGE_STRING): $(subdir)/$(TEST_SUITE_LOG)" | \
$(am__rst_title); \
create_testsuite_report --no-color; \
output_system_information; \
echo; \
echo ".. contents:: :depth: 2"; \
echo; \
for b in $$bases; do echo $$b; done \
| $(am__create_global_log); \
} >$(TEST_SUITE_LOG).tmp || exit 1; \
mv $(TEST_SUITE_LOG).tmp $(TEST_SUITE_LOG); \
if $$success; then \
col="$$grn"; \
else \
col="$$red"; \
test x"$$VERBOSE" = x || cat $(TEST_SUITE_LOG); \
fi; \
echo "$${col}$$br$${std}"; \
echo "$${col}Testsuite summary"$(AM_TESTSUITE_SUMMARY_HEADER)"$${std}"; \
echo "$${col}$$br$${std}"; \
create_testsuite_report --maybe-color; \
echo "$$col$$br$$std"; \
if $$success; then :; else \
echo "$${col}See $(subdir)/$(TEST_SUITE_LOG) for debugging.$${std}";\
if test -n "$(PACKAGE_BUGREPORT)"; then \
please_report | sed -e "s/^/$${col}/" -e s/'$$'/"$${std}"/; \
fi; \
echo "$$col$$br$$std"; \
fi; \
$$success || exit 1
check-TESTS: $(check_PROGRAMS)
@$(am__rm_f) $(RECHECK_LOGS)
@$(am__rm_f) $(RECHECK_LOGS:.log=.trs)
@$(am__rm_f) $(TEST_SUITE_LOG)
@set +e; $(am__set_TESTS_bases); \
log_list=`for i in $$bases; do echo $$i.log; done`; \
log_list=`echo $$log_list`; \
$(MAKE) $(AM_MAKEFLAGS) $(TEST_SUITE_LOG) TEST_LOGS="$$log_list"; \
exit $$?;
recheck: all $(check_PROGRAMS)
@$(am__rm_f) $(TEST_SUITE_LOG)
@set +e; $(am__set_TESTS_bases); \
bases=`for i in $$bases; do echo $$i; done \
| $(am__list_recheck_tests)` || exit 1; \
log_list=`for i in $$bases; do echo $$i.log; done`; \
log_list=`echo $$log_list`; \
$(MAKE) $(AM_MAKEFLAGS) $(TEST_SUITE_LOG) \
am__force_recheck=am--force-recheck \
TEST_LOGS="$$log_list"; \
exit $$?
samltest.log: samltest$(EXEEXT)
@p='samltest$(EXEEXT)'; \
b='samltest'; \
$(am__check_pre) $(LOG_DRIVER) --test-name "$$f" \
--log-file $$b.log --trs-file $$b.trs \
$(am__common_driver_flags) $(AM_LOG_DRIVER_FLAGS) $(LOG_DRIVER_FLAGS) -- $(LOG_COMPILE) \
"$$tst" $(AM_TESTS_FD_REDIRECT)
.test.log:
@p='$<'; \
$(am__set_b); \
$(am__check_pre) $(TEST_LOG_DRIVER) --test-name "$$f" \
--log-file $$b.log --trs-file $$b.trs \
$(am__common_driver_flags) $(AM_TEST_LOG_DRIVER_FLAGS) $(TEST_LOG_DRIVER_FLAGS) -- $(TEST_LOG_COMPILE) \
"$$tst" $(AM_TESTS_FD_REDIRECT)
@am__EXEEXT_TRUE@.test$(EXEEXT).log:
@am__EXEEXT_TRUE@ @p='$<'; \
@am__EXEEXT_TRUE@ $(am__set_b); \
@am__EXEEXT_TRUE@ $(am__check_pre) $(TEST_LOG_DRIVER) --test-name "$$f" \
@am__EXEEXT_TRUE@ --log-file $$b.log --trs-file $$b.trs \
@am__EXEEXT_TRUE@ $(am__common_driver_flags) $(AM_TEST_LOG_DRIVER_FLAGS) $(TEST_LOG_DRIVER_FLAGS) -- $(TEST_LOG_COMPILE) \
@am__EXEEXT_TRUE@ "$$tst" $(AM_TESTS_FD_REDIRECT)
distdir: $(BUILT_SOURCES)
$(MAKE) $(AM_MAKEFLAGS) distdir-am
distdir-am: $(DISTFILES)
@srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \
topsrcdirstrip=`echo "$(top_srcdir)" | sed 's/[].[^$$\\*]/\\\\&/g'`; \
list='$(DISTFILES)'; \
dist_files=`for file in $$list; do echo $$file; done | \
sed -e "s|^$$srcdirstrip/||;t" \
-e "s|^$$topsrcdirstrip/|$(top_builddir)/|;t"`; \
case $$dist_files in \
*/*) $(MKDIR_P) `echo "$$dist_files" | \
sed '/\//!d;s|^|$(distdir)/|;s,/[^/]*$$,,' | \
sort -u` ;; \
esac; \
for file in $$dist_files; do \
if test -f $$file || test -d $$file; then d=.; else d=$(srcdir); fi; \
if test -d $$d/$$file; then \
dir=`echo "/$$file" | sed -e 's,/[^/]*$$,,'`; \
if test -d "$(distdir)/$$file"; then \
find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \
fi; \
if test -d $(srcdir)/$$file && test $$d != $(srcdir); then \
cp -fpR $(srcdir)/$$file "$(distdir)$$dir" || exit 1; \
find "$(distdir)/$$file" -type d ! -perm -700 -exec chmod u+rwx {} \;; \
fi; \
cp -fpR $$d/$$file "$(distdir)$$dir" || exit 1; \
else \
test -f "$(distdir)/$$file" \
|| cp -p $$d/$$file "$(distdir)/$$file" \
|| exit 1; \
fi; \
done
check-am: all-am
$(MAKE) $(AM_MAKEFLAGS) $(check_PROGRAMS)
$(MAKE) $(AM_MAKEFLAGS) check-TESTS
check: check-am
all-am: Makefile $(HEADERS)
installdirs:
install: install-am
install-exec: install-exec-am
install-data: install-data-am
uninstall: uninstall-am
install-am: all-am
@$(MAKE) $(AM_MAKEFLAGS) install-exec-am install-data-am
installcheck: installcheck-am
install-strip:
if test -z '$(STRIP)'; then \
$(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \
install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \
install; \
else \
$(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \
install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \
"INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'" install; \
fi
mostlyclean-generic:
-$(am__rm_f) $(TEST_LOGS)
-$(am__rm_f) $(TEST_LOGS:.log=.trs)
-$(am__rm_f) $(TEST_SUITE_LOG)
clean-generic:
-$(am__rm_f) $(CLEANFILES)
distclean-generic:
-$(am__rm_f) $(CONFIG_CLEAN_FILES)
-test . = "$(srcdir)" || $(am__rm_f) $(CONFIG_CLEAN_VPATH_FILES)
-$(am__rm_f) encryption/$(DEPDIR)/$(am__dirstamp)
-$(am__rm_f) encryption/$(am__dirstamp)
-$(am__rm_f) saml1/binding/$(DEPDIR)/$(am__dirstamp)
-$(am__rm_f) saml1/binding/$(am__dirstamp)
-$(am__rm_f) saml1/core/impl/$(DEPDIR)/$(am__dirstamp)
-$(am__rm_f) saml1/core/impl/$(am__dirstamp)
-$(am__rm_f) saml1/profile/$(DEPDIR)/$(am__dirstamp)
-$(am__rm_f) saml1/profile/$(am__dirstamp)
-$(am__rm_f) saml2/binding/$(DEPDIR)/$(am__dirstamp)
-$(am__rm_f) saml2/binding/$(am__dirstamp)
-$(am__rm_f) saml2/core/impl/$(DEPDIR)/$(am__dirstamp)
-$(am__rm_f) saml2/core/impl/$(am__dirstamp)
-$(am__rm_f) saml2/metadata/$(DEPDIR)/$(am__dirstamp)
-$(am__rm_f) saml2/metadata/$(am__dirstamp)
-$(am__rm_f) saml2/profile/$(DEPDIR)/$(am__dirstamp)
-$(am__rm_f) saml2/profile/$(am__dirstamp)
-$(am__rm_f) security/$(DEPDIR)/$(am__dirstamp)
-$(am__rm_f) security/$(am__dirstamp)
-$(am__rm_f) signature/$(DEPDIR)/$(am__dirstamp)
-$(am__rm_f) signature/$(am__dirstamp)
maintainer-clean-generic:
@echo "This command is intended for maintainers to use"
@echo "it deletes files that may require special tools to rebuild."
clean: clean-am
clean-am: clean-checkPROGRAMS clean-generic clean-libtool \
mostlyclean-am
distclean: distclean-am
-rm -f ./$(DEPDIR)/samltest-ArtifactMapTest.Po
-rm -f ./$(DEPDIR)/samltest-CookieTest.Po
-rm -f ./$(DEPDIR)/samltest-SAMLArtifactCreationTest.Po
-rm -f ./$(DEPDIR)/samltest-SAMLArtifactType0001Test.Po
-rm -f ./$(DEPDIR)/samltest-SAMLArtifactType0002Test.Po
-rm -f ./$(DEPDIR)/samltest-SAMLArtifactType0004Test.Po
-rm -f ./$(DEPDIR)/samltest-samltest.Po
-rm -f encryption/$(DEPDIR)/samltest-EncryptedAssertionTest.Po
-rm -f saml1/binding/$(DEPDIR)/samltest-SAML1ArtifactTest.Po
-rm -f saml1/binding/$(DEPDIR)/samltest-SAML1POSTTest.Po
-rm -f saml1/core/impl/$(DEPDIR)/samltest-ActionTest.Po
-rm -f saml1/core/impl/$(DEPDIR)/samltest-AdviceTest.Po
-rm -f saml1/core/impl/$(DEPDIR)/samltest-AssertionIDReferenceTest.Po
-rm -f saml1/core/impl/$(DEPDIR)/samltest-AssertionTest.Po
-rm -f saml1/core/impl/$(DEPDIR)/samltest-AttributeDesignatorTest.Po
-rm -f saml1/core/impl/$(DEPDIR)/samltest-AttributeStatementTest.Po
-rm -f saml1/core/impl/$(DEPDIR)/samltest-AttributeTest.Po
-rm -f saml1/core/impl/$(DEPDIR)/samltest-AudienceRestrictionConditionTest.Po
-rm -f saml1/core/impl/$(DEPDIR)/samltest-AudienceTest.Po
-rm -f saml1/core/impl/$(DEPDIR)/samltest-AuthenticationStatementTest.Po
-rm -f saml1/profile/$(DEPDIR)/samltest-SAML1PolicyTest.Po
-rm -f saml2/binding/$(DEPDIR)/samltest-SAML2ArtifactTest.Po
-rm -f saml2/binding/$(DEPDIR)/samltest-SAML2POSTTest.Po
-rm -f saml2/binding/$(DEPDIR)/samltest-SAML2RedirectTest.Po
-rm -f saml2/core/impl/$(DEPDIR)/samltest-Action20Test.Po
-rm -f saml2/core/impl/$(DEPDIR)/samltest-Advice20Test.Po
-rm -f saml2/core/impl/$(DEPDIR)/samltest-Artifact20Test.Po
-rm -f saml2/core/impl/$(DEPDIR)/samltest-ArtifactResolve20Test.Po
-rm -f saml2/core/impl/$(DEPDIR)/samltest-ArtifactResponse20Test.Po
-rm -f saml2/core/impl/$(DEPDIR)/samltest-Assertion20Test.Po
-rm -f saml2/core/impl/$(DEPDIR)/samltest-AssertionIDRef20Test.Po
-rm -f saml2/core/impl/$(DEPDIR)/samltest-AssertionIDRequest20Test.Po
-rm -f saml2/core/impl/$(DEPDIR)/samltest-AssertionURIRef20Test.Po
-rm -f saml2/core/impl/$(DEPDIR)/samltest-Attribute20Test.Po
-rm -f saml2/core/impl/$(DEPDIR)/samltest-AttributeQuery20Test.Po
-rm -f saml2/core/impl/$(DEPDIR)/samltest-AttributeStatement20Test.Po
-rm -f saml2/core/impl/$(DEPDIR)/samltest-Audience20Test.Po
-rm -f saml2/core/impl/$(DEPDIR)/samltest-AudienceRestriction20Test.Po
-rm -f saml2/core/impl/$(DEPDIR)/samltest-AuthenticatingAuthority20Test.Po
-rm -f saml2/core/impl/$(DEPDIR)/samltest-AuthnContext20Test.Po
-rm -f saml2/core/impl/$(DEPDIR)/samltest-AuthnContextClassRef20Test.Po
-rm -f saml2/core/impl/$(DEPDIR)/samltest-AuthnContextDeclRef20Test.Po
-rm -f saml2/core/impl/$(DEPDIR)/samltest-AuthnQuery20Test.Po
-rm -f saml2/core/impl/$(DEPDIR)/samltest-AuthnRequest20Test.Po
-rm -f saml2/core/impl/$(DEPDIR)/samltest-AuthnStatement20Test.Po
-rm -f saml2/core/impl/$(DEPDIR)/samltest-AuthzDecisionQuery20Test.Po
-rm -f saml2/core/impl/$(DEPDIR)/samltest-AuthzDecisionStatement20Test.Po
-rm -f saml2/core/impl/$(DEPDIR)/samltest-Conditions20Test.Po
-rm -f saml2/core/impl/$(DEPDIR)/samltest-Evidence20Test.Po
-rm -f saml2/core/impl/$(DEPDIR)/samltest-GetComplete20Test.Po
-rm -f saml2/core/impl/$(DEPDIR)/samltest-IDPEntry20Test.Po
-rm -f saml2/core/impl/$(DEPDIR)/samltest-IDPList20Test.Po
-rm -f saml2/core/impl/$(DEPDIR)/samltest-Issuer20Test.Po
-rm -f saml2/core/impl/$(DEPDIR)/samltest-KeyInfoConfirmationDataType20Test.Po
-rm -f saml2/core/impl/$(DEPDIR)/samltest-LogoutRequest20Test.Po
-rm -f saml2/core/impl/$(DEPDIR)/samltest-LogoutResponse20Test.Po
-rm -f saml2/core/impl/$(DEPDIR)/samltest-ManageNameIDRequest20Test.Po
-rm -f saml2/core/impl/$(DEPDIR)/samltest-ManageNameIDResponse20Test.Po
-rm -f saml2/core/impl/$(DEPDIR)/samltest-NameID20Test.Po
-rm -f saml2/core/impl/$(DEPDIR)/samltest-NameIDMappingRequest20Test.Po
-rm -f saml2/core/impl/$(DEPDIR)/samltest-NameIDMappingResponse20Test.Po
-rm -f saml2/core/impl/$(DEPDIR)/samltest-NameIDPolicy20Test.Po
-rm -f saml2/core/impl/$(DEPDIR)/samltest-NameIDType20Test.Po
-rm -f saml2/core/impl/$(DEPDIR)/samltest-NewEncryptedID20Test.Po
-rm -f saml2/core/impl/$(DEPDIR)/samltest-NewID20Test.Po
-rm -f saml2/core/impl/$(DEPDIR)/samltest-OneTimeUse20Test.Po
-rm -f saml2/core/impl/$(DEPDIR)/samltest-ProxyRestriction20Test.Po
-rm -f saml2/core/impl/$(DEPDIR)/samltest-RequestedAuthnContext20Test.Po
-rm -f saml2/core/impl/$(DEPDIR)/samltest-RequesterID20Test.Po
-rm -f saml2/core/impl/$(DEPDIR)/samltest-Response20Test.Po
-rm -f saml2/core/impl/$(DEPDIR)/samltest-Scoping20Test.Po
-rm -f saml2/core/impl/$(DEPDIR)/samltest-SessionIndex20Test.Po
-rm -f saml2/core/impl/$(DEPDIR)/samltest-Status20Test.Po
-rm -f saml2/core/impl/$(DEPDIR)/samltest-StatusCode20Test.Po
-rm -f saml2/core/impl/$(DEPDIR)/samltest-StatusDetail20Test.Po
-rm -f saml2/core/impl/$(DEPDIR)/samltest-StatusMessage20Test.Po
-rm -f saml2/core/impl/$(DEPDIR)/samltest-Subject20Test.Po
-rm -f saml2/core/impl/$(DEPDIR)/samltest-SubjectConfirmation20Test.Po
-rm -f saml2/core/impl/$(DEPDIR)/samltest-SubjectConfirmationData20Test.Po
-rm -f saml2/core/impl/$(DEPDIR)/samltest-SubjectLocality20Test.Po
-rm -f saml2/core/impl/$(DEPDIR)/samltest-Terminate20Test.Po
-rm -f saml2/metadata/$(DEPDIR)/samltest-XMLMetadataProviderTest.Po
-rm -f saml2/profile/$(DEPDIR)/samltest-SAML2PolicyTest.Po
-rm -f security/$(DEPDIR)/samltest-ExplicitKeyTrustEngineTest.Po
-rm -f security/$(DEPDIR)/samltest-StaticPKIXTrustEngineTest.Po
-rm -f signature/$(DEPDIR)/samltest-SAML1AssertionTest.Po
-rm -f signature/$(DEPDIR)/samltest-SAML1RequestTest.Po
-rm -f signature/$(DEPDIR)/samltest-SAML1ResponseTest.Po
-rm -f signature/$(DEPDIR)/samltest-SAML2AssertionTest.Po
-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-html: install-html-am
install-html-am:
install-info: install-info-am
install-info-am:
install-man:
install-pdf: install-pdf-am
install-pdf-am:
install-ps: install-ps-am
install-ps-am:
installcheck-am:
maintainer-clean: maintainer-clean-am
-rm -f ./$(DEPDIR)/samltest-ArtifactMapTest.Po
-rm -f ./$(DEPDIR)/samltest-CookieTest.Po
-rm -f ./$(DEPDIR)/samltest-SAMLArtifactCreationTest.Po
-rm -f ./$(DEPDIR)/samltest-SAMLArtifactType0001Test.Po
-rm -f ./$(DEPDIR)/samltest-SAMLArtifactType0002Test.Po
-rm -f ./$(DEPDIR)/samltest-SAMLArtifactType0004Test.Po
-rm -f ./$(DEPDIR)/samltest-samltest.Po
-rm -f encryption/$(DEPDIR)/samltest-EncryptedAssertionTest.Po
-rm -f saml1/binding/$(DEPDIR)/samltest-SAML1ArtifactTest.Po
-rm -f saml1/binding/$(DEPDIR)/samltest-SAML1POSTTest.Po
-rm -f saml1/core/impl/$(DEPDIR)/samltest-ActionTest.Po
-rm -f saml1/core/impl/$(DEPDIR)/samltest-AdviceTest.Po
-rm -f saml1/core/impl/$(DEPDIR)/samltest-AssertionIDReferenceTest.Po
-rm -f saml1/core/impl/$(DEPDIR)/samltest-AssertionTest.Po
-rm -f saml1/core/impl/$(DEPDIR)/samltest-AttributeDesignatorTest.Po
-rm -f saml1/core/impl/$(DEPDIR)/samltest-AttributeStatementTest.Po
-rm -f saml1/core/impl/$(DEPDIR)/samltest-AttributeTest.Po
-rm -f saml1/core/impl/$(DEPDIR)/samltest-AudienceRestrictionConditionTest.Po
-rm -f saml1/core/impl/$(DEPDIR)/samltest-AudienceTest.Po
-rm -f saml1/core/impl/$(DEPDIR)/samltest-AuthenticationStatementTest.Po
-rm -f saml1/profile/$(DEPDIR)/samltest-SAML1PolicyTest.Po
-rm -f saml2/binding/$(DEPDIR)/samltest-SAML2ArtifactTest.Po
-rm -f saml2/binding/$(DEPDIR)/samltest-SAML2POSTTest.Po
-rm -f saml2/binding/$(DEPDIR)/samltest-SAML2RedirectTest.Po
-rm -f saml2/core/impl/$(DEPDIR)/samltest-Action20Test.Po
-rm -f saml2/core/impl/$(DEPDIR)/samltest-Advice20Test.Po
-rm -f saml2/core/impl/$(DEPDIR)/samltest-Artifact20Test.Po
-rm -f saml2/core/impl/$(DEPDIR)/samltest-ArtifactResolve20Test.Po
-rm -f saml2/core/impl/$(DEPDIR)/samltest-ArtifactResponse20Test.Po
-rm -f saml2/core/impl/$(DEPDIR)/samltest-Assertion20Test.Po
-rm -f saml2/core/impl/$(DEPDIR)/samltest-AssertionIDRef20Test.Po
-rm -f saml2/core/impl/$(DEPDIR)/samltest-AssertionIDRequest20Test.Po
-rm -f saml2/core/impl/$(DEPDIR)/samltest-AssertionURIRef20Test.Po
-rm -f saml2/core/impl/$(DEPDIR)/samltest-Attribute20Test.Po
-rm -f saml2/core/impl/$(DEPDIR)/samltest-AttributeQuery20Test.Po
-rm -f saml2/core/impl/$(DEPDIR)/samltest-AttributeStatement20Test.Po
-rm -f saml2/core/impl/$(DEPDIR)/samltest-Audience20Test.Po
-rm -f saml2/core/impl/$(DEPDIR)/samltest-AudienceRestriction20Test.Po
-rm -f saml2/core/impl/$(DEPDIR)/samltest-AuthenticatingAuthority20Test.Po
-rm -f saml2/core/impl/$(DEPDIR)/samltest-AuthnContext20Test.Po
-rm -f saml2/core/impl/$(DEPDIR)/samltest-AuthnContextClassRef20Test.Po
-rm -f saml2/core/impl/$(DEPDIR)/samltest-AuthnContextDeclRef20Test.Po
-rm -f saml2/core/impl/$(DEPDIR)/samltest-AuthnQuery20Test.Po
-rm -f saml2/core/impl/$(DEPDIR)/samltest-AuthnRequest20Test.Po
-rm -f saml2/core/impl/$(DEPDIR)/samltest-AuthnStatement20Test.Po
-rm -f saml2/core/impl/$(DEPDIR)/samltest-AuthzDecisionQuery20Test.Po
-rm -f saml2/core/impl/$(DEPDIR)/samltest-AuthzDecisionStatement20Test.Po
-rm -f saml2/core/impl/$(DEPDIR)/samltest-Conditions20Test.Po
-rm -f saml2/core/impl/$(DEPDIR)/samltest-Evidence20Test.Po
-rm -f saml2/core/impl/$(DEPDIR)/samltest-GetComplete20Test.Po
-rm -f saml2/core/impl/$(DEPDIR)/samltest-IDPEntry20Test.Po
-rm -f saml2/core/impl/$(DEPDIR)/samltest-IDPList20Test.Po
-rm -f saml2/core/impl/$(DEPDIR)/samltest-Issuer20Test.Po
-rm -f saml2/core/impl/$(DEPDIR)/samltest-KeyInfoConfirmationDataType20Test.Po
-rm -f saml2/core/impl/$(DEPDIR)/samltest-LogoutRequest20Test.Po
-rm -f saml2/core/impl/$(DEPDIR)/samltest-LogoutResponse20Test.Po
-rm -f saml2/core/impl/$(DEPDIR)/samltest-ManageNameIDRequest20Test.Po
-rm -f saml2/core/impl/$(DEPDIR)/samltest-ManageNameIDResponse20Test.Po
-rm -f saml2/core/impl/$(DEPDIR)/samltest-NameID20Test.Po
-rm -f saml2/core/impl/$(DEPDIR)/samltest-NameIDMappingRequest20Test.Po
-rm -f saml2/core/impl/$(DEPDIR)/samltest-NameIDMappingResponse20Test.Po
-rm -f saml2/core/impl/$(DEPDIR)/samltest-NameIDPolicy20Test.Po
-rm -f saml2/core/impl/$(DEPDIR)/samltest-NameIDType20Test.Po
-rm -f saml2/core/impl/$(DEPDIR)/samltest-NewEncryptedID20Test.Po
-rm -f saml2/core/impl/$(DEPDIR)/samltest-NewID20Test.Po
-rm -f saml2/core/impl/$(DEPDIR)/samltest-OneTimeUse20Test.Po
-rm -f saml2/core/impl/$(DEPDIR)/samltest-ProxyRestriction20Test.Po
-rm -f saml2/core/impl/$(DEPDIR)/samltest-RequestedAuthnContext20Test.Po
-rm -f saml2/core/impl/$(DEPDIR)/samltest-RequesterID20Test.Po
-rm -f saml2/core/impl/$(DEPDIR)/samltest-Response20Test.Po
-rm -f saml2/core/impl/$(DEPDIR)/samltest-Scoping20Test.Po
-rm -f saml2/core/impl/$(DEPDIR)/samltest-SessionIndex20Test.Po
-rm -f saml2/core/impl/$(DEPDIR)/samltest-Status20Test.Po
-rm -f saml2/core/impl/$(DEPDIR)/samltest-StatusCode20Test.Po
-rm -f saml2/core/impl/$(DEPDIR)/samltest-StatusDetail20Test.Po
-rm -f saml2/core/impl/$(DEPDIR)/samltest-StatusMessage20Test.Po
-rm -f saml2/core/impl/$(DEPDIR)/samltest-Subject20Test.Po
-rm -f saml2/core/impl/$(DEPDIR)/samltest-SubjectConfirmation20Test.Po
-rm -f saml2/core/impl/$(DEPDIR)/samltest-SubjectConfirmationData20Test.Po
-rm -f saml2/core/impl/$(DEPDIR)/samltest-SubjectLocality20Test.Po
-rm -f saml2/core/impl/$(DEPDIR)/samltest-Terminate20Test.Po
-rm -f saml2/metadata/$(DEPDIR)/samltest-XMLMetadataProviderTest.Po
-rm -f saml2/profile/$(DEPDIR)/samltest-SAML2PolicyTest.Po
-rm -f security/$(DEPDIR)/samltest-ExplicitKeyTrustEngineTest.Po
-rm -f security/$(DEPDIR)/samltest-StaticPKIXTrustEngineTest.Po
-rm -f signature/$(DEPDIR)/samltest-SAML1AssertionTest.Po
-rm -f signature/$(DEPDIR)/samltest-SAML1RequestTest.Po
-rm -f signature/$(DEPDIR)/samltest-SAML1ResponseTest.Po
-rm -f signature/$(DEPDIR)/samltest-SAML2AssertionTest.Po
-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:
.MAKE: check-am install-am install-strip
.PHONY: CTAGS GTAGS TAGS all all-am am--depfiles check check-TESTS \
check-am clean clean-checkPROGRAMS clean-generic clean-libtool \
cscopelist-am ctags ctags-am distclean distclean-compile \
distclean-generic distclean-libtool distclean-tags distdir dvi \
dvi-am html html-am info info-am install install-am \
install-data install-data-am install-dvi install-dvi-am \
install-exec install-exec-am install-html install-html-am \
install-info install-info-am install-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 \
recheck tags tags-am uninstall uninstall-am
.PRECIOUS: Makefile
samltest.cpp: samltest.h
$(CXXTEST) --have-eh --have-std --abort-on-fail --error-printer -o $@ $<
$(samltest_h:.h=.cpp): %.cpp: %.h
$(CXXTEST) --have-eh --have-std --abort-on-fail --part -o $@ $<
# 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:
# Tell GNU make to disable its built-in pattern rules.
%:: %,v
%:: RCS/%,v
%:: RCS/%
%:: s.%
%:: SCCS/s.%
|