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
|
# Makefile.in generated by automake 1.11.1 from Makefile.am.
# @configure_input@
# Copyright (C) 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002,
# 2003, 2004, 2005, 2006, 2007, 2008, 2009 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@
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@
bin_PROGRAMS = nih-dbus-tool$(EXEEXT)
TESTS = test_main$(EXEEXT) test_symbol$(EXEEXT) test_indent$(EXEEXT) \
test_type$(EXEEXT) test_marshal$(EXEEXT) \
test_demarshal$(EXEEXT) test_node$(EXEEXT) \
test_interface$(EXEEXT) test_method$(EXEEXT) \
test_signal$(EXEEXT) test_property$(EXEEXT) \
test_argument$(EXEEXT) test_annotation$(EXEEXT) \
test_parse$(EXEEXT) test_output$(EXEEXT) \
test_com.netsplit.Nih.Test_object$(EXEEXT) \
test_com.netsplit.Nih.Test_proxy$(EXEEXT)
check_PROGRAMS = $(am__EXEEXT_1) marshal_factory$(EXEEXT) \
demarshal_factory$(EXEEXT) interface_factory$(EXEEXT) \
method_factory$(EXEEXT) signal_factory$(EXEEXT) \
property_factory$(EXEEXT)
subdir = nih-dbus-tool
DIST_COMMON = $(dist_man_MANS) $(srcdir)/Makefile.am \
$(srcdir)/Makefile.in
ACLOCAL_M4 = $(top_srcdir)/aclocal.m4
am__aclocal_m4_deps = $(top_srcdir)/m4/codeset.m4 \
$(top_srcdir)/m4/gettext.m4 $(top_srcdir)/m4/glibc2.m4 \
$(top_srcdir)/m4/glibc21.m4 $(top_srcdir)/m4/iconv.m4 \
$(top_srcdir)/m4/intdiv0.m4 $(top_srcdir)/m4/intl.m4 \
$(top_srcdir)/m4/intlmacosx.m4 $(top_srcdir)/m4/intmax.m4 \
$(top_srcdir)/m4/inttypes-pri.m4 \
$(top_srcdir)/m4/inttypes_h.m4 $(top_srcdir)/m4/lcmessage.m4 \
$(top_srcdir)/m4/lib-ld.m4 $(top_srcdir)/m4/lib-link.m4 \
$(top_srcdir)/m4/lib-prefix.m4 $(top_srcdir)/m4/libnih.m4 \
$(top_srcdir)/m4/libtool.m4 $(top_srcdir)/m4/lock.m4 \
$(top_srcdir)/m4/longlong.m4 $(top_srcdir)/m4/ltoptions.m4 \
$(top_srcdir)/m4/ltsugar.m4 $(top_srcdir)/m4/ltversion.m4 \
$(top_srcdir)/m4/lt~obsolete.m4 $(top_srcdir)/m4/nls.m4 \
$(top_srcdir)/m4/pkg.m4 $(top_srcdir)/m4/po.m4 \
$(top_srcdir)/m4/printf-posix.m4 $(top_srcdir)/m4/progtest.m4 \
$(top_srcdir)/m4/size_max.m4 $(top_srcdir)/m4/stdint_h.m4 \
$(top_srcdir)/m4/uintmax_t.m4 $(top_srcdir)/m4/visibility.m4 \
$(top_srcdir)/m4/wchar_t.m4 $(top_srcdir)/m4/wint_t.m4 \
$(top_srcdir)/m4/xsize.m4 $(top_srcdir)/configure.ac
am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \
$(ACLOCAL_M4)
mkinstalldirs = $(install_sh) -d
CONFIG_HEADER = $(top_builddir)/config.h
CONFIG_CLEAN_FILES =
CONFIG_CLEAN_VPATH_FILES =
am__installdirs = "$(DESTDIR)$(bindir)" "$(DESTDIR)$(man1dir)"
am__EXEEXT_1 = test_main$(EXEEXT) test_symbol$(EXEEXT) \
test_indent$(EXEEXT) test_type$(EXEEXT) test_marshal$(EXEEXT) \
test_demarshal$(EXEEXT) test_node$(EXEEXT) \
test_interface$(EXEEXT) test_method$(EXEEXT) \
test_signal$(EXEEXT) test_property$(EXEEXT) \
test_argument$(EXEEXT) test_annotation$(EXEEXT) \
test_parse$(EXEEXT) test_output$(EXEEXT) \
test_com.netsplit.Nih.Test_object$(EXEEXT) \
test_com.netsplit.Nih.Test_proxy$(EXEEXT)
PROGRAMS = $(bin_PROGRAMS)
am_demarshal_factory_OBJECTS = demarshal_factory.$(OBJEXT)
demarshal_factory_OBJECTS = $(am_demarshal_factory_OBJECTS)
am__DEPENDENCIES_1 =
demarshal_factory_DEPENDENCIES = demarshal.o type.o indent.o symbol.o \
../nih/libnih.la $(am__DEPENDENCIES_1)
AM_V_lt = $(am__v_lt_$(V))
am__v_lt_ = $(am__v_lt_$(AM_DEFAULT_VERBOSITY))
am__v_lt_0 = --silent
demarshal_factory_LINK = $(LIBTOOL) $(AM_V_lt) --tag=CC \
$(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=link $(CCLD) \
$(AM_CFLAGS) $(CFLAGS) $(demarshal_factory_LDFLAGS) $(LDFLAGS) \
-o $@
am_interface_factory_OBJECTS = interface_factory.$(OBJEXT)
interface_factory_OBJECTS = $(am_interface_factory_OBJECTS)
interface_factory_DEPENDENCIES = demarshal.o marshal.o type.o indent.o \
parse.o annotation.o argument.o property.o signal.o method.o \
interface.o node.o symbol.o ../nih/libnih.la \
$(am__DEPENDENCIES_1) $(am__DEPENDENCIES_1)
interface_factory_LINK = $(LIBTOOL) $(AM_V_lt) --tag=CC \
$(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=link $(CCLD) \
$(AM_CFLAGS) $(CFLAGS) $(interface_factory_LDFLAGS) $(LDFLAGS) \
-o $@
am_marshal_factory_OBJECTS = marshal_factory.$(OBJEXT)
marshal_factory_OBJECTS = $(am_marshal_factory_OBJECTS)
marshal_factory_DEPENDENCIES = marshal.o type.o indent.o symbol.o \
../nih/libnih.la $(am__DEPENDENCIES_1)
marshal_factory_LINK = $(LIBTOOL) $(AM_V_lt) --tag=CC \
$(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=link $(CCLD) \
$(AM_CFLAGS) $(CFLAGS) $(marshal_factory_LDFLAGS) $(LDFLAGS) \
-o $@
am_method_factory_OBJECTS = method_factory.$(OBJEXT)
method_factory_OBJECTS = $(am_method_factory_OBJECTS)
method_factory_DEPENDENCIES = demarshal.o marshal.o type.o indent.o \
parse.o annotation.o argument.o property.o signal.o method.o \
interface.o node.o symbol.o ../nih/libnih.la \
$(am__DEPENDENCIES_1) $(am__DEPENDENCIES_1)
method_factory_LINK = $(LIBTOOL) $(AM_V_lt) --tag=CC \
$(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=link $(CCLD) \
$(AM_CFLAGS) $(CFLAGS) $(method_factory_LDFLAGS) $(LDFLAGS) -o \
$@
am_nih_dbus_tool_OBJECTS = main.$(OBJEXT) symbol.$(OBJEXT) \
indent.$(OBJEXT) type.$(OBJEXT) marshal.$(OBJEXT) \
demarshal.$(OBJEXT) node.$(OBJEXT) interface.$(OBJEXT) \
method.$(OBJEXT) signal.$(OBJEXT) property.$(OBJEXT) \
argument.$(OBJEXT) annotation.$(OBJEXT) parse.$(OBJEXT) \
output.$(OBJEXT)
nih_dbus_tool_OBJECTS = $(am_nih_dbus_tool_OBJECTS)
nih_dbus_tool_DEPENDENCIES = ../nih/libnih.la $(am__DEPENDENCIES_1) \
$(am__DEPENDENCIES_1) $(am__DEPENDENCIES_1)
am_property_factory_OBJECTS = property_factory.$(OBJEXT)
property_factory_OBJECTS = $(am_property_factory_OBJECTS)
property_factory_DEPENDENCIES = demarshal.o marshal.o type.o indent.o \
parse.o annotation.o argument.o property.o signal.o method.o \
interface.o node.o symbol.o ../nih/libnih.la \
$(am__DEPENDENCIES_1) $(am__DEPENDENCIES_1)
property_factory_LINK = $(LIBTOOL) $(AM_V_lt) --tag=CC \
$(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=link $(CCLD) \
$(AM_CFLAGS) $(CFLAGS) $(property_factory_LDFLAGS) $(LDFLAGS) \
-o $@
am_signal_factory_OBJECTS = signal_factory.$(OBJEXT)
signal_factory_OBJECTS = $(am_signal_factory_OBJECTS)
signal_factory_DEPENDENCIES = demarshal.o marshal.o type.o indent.o \
parse.o annotation.o argument.o property.o signal.o method.o \
interface.o node.o symbol.o ../nih/libnih.la \
$(am__DEPENDENCIES_1) $(am__DEPENDENCIES_1)
signal_factory_LINK = $(LIBTOOL) $(AM_V_lt) --tag=CC \
$(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=link $(CCLD) \
$(AM_CFLAGS) $(CFLAGS) $(signal_factory_LDFLAGS) $(LDFLAGS) -o \
$@
am_test_annotation_OBJECTS = test_annotation.$(OBJEXT)
test_annotation_OBJECTS = $(am_test_annotation_OBJECTS)
test_annotation_DEPENDENCIES = demarshal.o marshal.o type.o indent.o \
parse.o annotation.o argument.o property.o signal.o method.o \
interface.o node.o symbol.o ../nih/libnih.la \
$(am__DEPENDENCIES_1) $(am__DEPENDENCIES_1)
test_annotation_LINK = $(LIBTOOL) $(AM_V_lt) --tag=CC \
$(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=link $(CCLD) \
$(AM_CFLAGS) $(CFLAGS) $(test_annotation_LDFLAGS) $(LDFLAGS) \
-o $@
am_test_argument_OBJECTS = test_argument.$(OBJEXT)
test_argument_OBJECTS = $(am_test_argument_OBJECTS)
test_argument_DEPENDENCIES = demarshal.o marshal.o type.o indent.o \
parse.o annotation.o argument.o property.o signal.o method.o \
interface.o node.o symbol.o ../nih/libnih.la \
$(am__DEPENDENCIES_1) $(am__DEPENDENCIES_1)
test_argument_LINK = $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) \
$(LIBTOOLFLAGS) --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) \
$(test_argument_LDFLAGS) $(LDFLAGS) -o $@
am_test_com_netsplit_Nih_Test_object_OBJECTS = \
test_com.netsplit.Nih.Test_object.$(OBJEXT) \
com.netsplit.Nih.Test_impl.$(OBJEXT)
am__objects_1 = com.netsplit.Nih.Test_object.$(OBJEXT)
nodist_test_com_netsplit_Nih_Test_object_OBJECTS = $(am__objects_1)
test_com_netsplit_Nih_Test_object_OBJECTS = \
$(am_test_com_netsplit_Nih_Test_object_OBJECTS) \
$(nodist_test_com_netsplit_Nih_Test_object_OBJECTS)
test_com_netsplit_Nih_Test_object_DEPENDENCIES = \
../nih-dbus/libnih-dbus.la ../nih/libnih.la \
$(am__DEPENDENCIES_1)
test_com_netsplit_Nih_Test_object_LINK = $(LIBTOOL) $(AM_V_lt) \
--tag=CC $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=link \
$(CCLD) $(AM_CFLAGS) $(CFLAGS) \
$(test_com_netsplit_Nih_Test_object_LDFLAGS) $(LDFLAGS) -o $@
am_test_com_netsplit_Nih_Test_proxy_OBJECTS = \
test_com.netsplit.Nih.Test_proxy.$(OBJEXT) \
com.netsplit.Nih.Test_impl.$(OBJEXT)
am__objects_2 = com.netsplit.Nih.Test_proxy.$(OBJEXT)
nodist_test_com_netsplit_Nih_Test_proxy_OBJECTS = $(am__objects_1) \
$(am__objects_2)
test_com_netsplit_Nih_Test_proxy_OBJECTS = \
$(am_test_com_netsplit_Nih_Test_proxy_OBJECTS) \
$(nodist_test_com_netsplit_Nih_Test_proxy_OBJECTS)
test_com_netsplit_Nih_Test_proxy_DEPENDENCIES = \
../nih-dbus/libnih-dbus.la ../nih/libnih.la \
$(am__DEPENDENCIES_1)
test_com_netsplit_Nih_Test_proxy_LINK = $(LIBTOOL) $(AM_V_lt) --tag=CC \
$(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=link $(CCLD) \
$(AM_CFLAGS) $(CFLAGS) \
$(test_com_netsplit_Nih_Test_proxy_LDFLAGS) $(LDFLAGS) -o $@
am_test_demarshal_OBJECTS = test_demarshal.$(OBJEXT)
nodist_test_demarshal_OBJECTS = demarshal_code.$(OBJEXT)
test_demarshal_OBJECTS = $(am_test_demarshal_OBJECTS) \
$(nodist_test_demarshal_OBJECTS)
test_demarshal_DEPENDENCIES = demarshal.o type.o indent.o symbol.o \
../nih/libnih.la $(am__DEPENDENCIES_1)
test_demarshal_LINK = $(LIBTOOL) $(AM_V_lt) --tag=CC \
$(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=link $(CCLD) \
$(AM_CFLAGS) $(CFLAGS) $(test_demarshal_LDFLAGS) $(LDFLAGS) -o \
$@
am_test_indent_OBJECTS = test_indent.$(OBJEXT)
test_indent_OBJECTS = $(am_test_indent_OBJECTS)
test_indent_DEPENDENCIES = indent.o ../nih/libnih.la
test_indent_LINK = $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) \
$(LIBTOOLFLAGS) --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) \
$(test_indent_LDFLAGS) $(LDFLAGS) -o $@
am_test_interface_OBJECTS = test_interface.$(OBJEXT)
nodist_test_interface_OBJECTS = interface_code.$(OBJEXT)
test_interface_OBJECTS = $(am_test_interface_OBJECTS) \
$(nodist_test_interface_OBJECTS)
test_interface_DEPENDENCIES = demarshal.o marshal.o type.o indent.o \
parse.o annotation.o argument.o property.o signal.o method.o \
interface.o node.o symbol.o ../nih-dbus/libnih-dbus.la \
../nih/libnih.la $(am__DEPENDENCIES_1) $(am__DEPENDENCIES_1)
test_interface_LINK = $(LIBTOOL) $(AM_V_lt) --tag=CC \
$(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=link $(CCLD) \
$(AM_CFLAGS) $(CFLAGS) $(test_interface_LDFLAGS) $(LDFLAGS) -o \
$@
am_test_main_OBJECTS = test_main-test_main.$(OBJEXT) \
test_main-main.$(OBJEXT)
test_main_OBJECTS = $(am_test_main_OBJECTS)
test_main_DEPENDENCIES = ../nih/libnih.la
test_main_LINK = $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) \
$(LIBTOOLFLAGS) --mode=link $(CCLD) $(test_main_CFLAGS) \
$(CFLAGS) $(test_main_LDFLAGS) $(LDFLAGS) -o $@
am_test_marshal_OBJECTS = test_marshal.$(OBJEXT)
nodist_test_marshal_OBJECTS = marshal_code.$(OBJEXT)
test_marshal_OBJECTS = $(am_test_marshal_OBJECTS) \
$(nodist_test_marshal_OBJECTS)
test_marshal_DEPENDENCIES = marshal.o type.o indent.o symbol.o \
../nih/libnih.la $(am__DEPENDENCIES_1)
test_marshal_LINK = $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) \
$(LIBTOOLFLAGS) --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) \
$(test_marshal_LDFLAGS) $(LDFLAGS) -o $@
am_test_method_OBJECTS = test_method.$(OBJEXT)
nodist_test_method_OBJECTS = method_code.$(OBJEXT)
test_method_OBJECTS = $(am_test_method_OBJECTS) \
$(nodist_test_method_OBJECTS)
test_method_DEPENDENCIES = demarshal.o marshal.o type.o indent.o \
parse.o annotation.o argument.o property.o signal.o method.o \
interface.o node.o symbol.o ../nih-dbus/libnih-dbus.la \
../nih/libnih.la $(am__DEPENDENCIES_1) $(am__DEPENDENCIES_1)
test_method_LINK = $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) \
$(LIBTOOLFLAGS) --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) \
$(test_method_LDFLAGS) $(LDFLAGS) -o $@
am_test_node_OBJECTS = test_node.$(OBJEXT)
test_node_OBJECTS = $(am_test_node_OBJECTS)
test_node_DEPENDENCIES = demarshal.o marshal.o type.o indent.o parse.o \
annotation.o argument.o property.o signal.o method.o \
interface.o node.o symbol.o ../nih/libnih.la \
$(am__DEPENDENCIES_1) $(am__DEPENDENCIES_1)
test_node_LINK = $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) \
$(LIBTOOLFLAGS) --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) \
$(test_node_LDFLAGS) $(LDFLAGS) -o $@
am_test_output_OBJECTS = test_output.$(OBJEXT)
test_output_OBJECTS = $(am_test_output_OBJECTS)
test_output_DEPENDENCIES = demarshal.o marshal.o type.o indent.o \
output.o parse.o annotation.o argument.o property.o signal.o \
method.o interface.o node.o symbol.o ../nih/libnih.la \
$(am__DEPENDENCIES_1) $(am__DEPENDENCIES_1)
test_output_LINK = $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) \
$(LIBTOOLFLAGS) --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) \
$(test_output_LDFLAGS) $(LDFLAGS) -o $@
am_test_parse_OBJECTS = test_parse.$(OBJEXT)
test_parse_OBJECTS = $(am_test_parse_OBJECTS)
test_parse_DEPENDENCIES = demarshal.o marshal.o type.o indent.o \
parse.o annotation.o argument.o property.o signal.o method.o \
interface.o node.o symbol.o ../nih/libnih.la \
$(am__DEPENDENCIES_1) $(am__DEPENDENCIES_1)
test_parse_LINK = $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) \
$(LIBTOOLFLAGS) --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) \
$(test_parse_LDFLAGS) $(LDFLAGS) -o $@
am_test_property_OBJECTS = test_property.$(OBJEXT)
nodist_test_property_OBJECTS = property_code.$(OBJEXT)
test_property_OBJECTS = $(am_test_property_OBJECTS) \
$(nodist_test_property_OBJECTS)
test_property_DEPENDENCIES = demarshal.o marshal.o type.o indent.o \
parse.o annotation.o argument.o property.o signal.o method.o \
interface.o node.o symbol.o ../nih-dbus/libnih-dbus.la \
../nih/libnih.la $(am__DEPENDENCIES_1) $(am__DEPENDENCIES_1)
test_property_LINK = $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) \
$(LIBTOOLFLAGS) --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) \
$(test_property_LDFLAGS) $(LDFLAGS) -o $@
am_test_signal_OBJECTS = test_signal.$(OBJEXT)
nodist_test_signal_OBJECTS = signal_code.$(OBJEXT)
test_signal_OBJECTS = $(am_test_signal_OBJECTS) \
$(nodist_test_signal_OBJECTS)
test_signal_DEPENDENCIES = demarshal.o marshal.o type.o indent.o \
parse.o annotation.o argument.o property.o signal.o method.o \
interface.o node.o symbol.o ../nih-dbus/libnih-dbus.la \
../nih/libnih.la $(am__DEPENDENCIES_1) $(am__DEPENDENCIES_1)
test_signal_LINK = $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) \
$(LIBTOOLFLAGS) --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) \
$(test_signal_LDFLAGS) $(LDFLAGS) -o $@
am_test_symbol_OBJECTS = test_symbol.$(OBJEXT)
test_symbol_OBJECTS = $(am_test_symbol_OBJECTS)
test_symbol_DEPENDENCIES = symbol.o ../nih/libnih.la
test_symbol_LINK = $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) \
$(LIBTOOLFLAGS) --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) \
$(test_symbol_LDFLAGS) $(LDFLAGS) -o $@
am_test_type_OBJECTS = test_type.$(OBJEXT)
test_type_OBJECTS = $(am_test_type_OBJECTS)
test_type_DEPENDENCIES = type.o indent.o symbol.o ../nih/libnih.la \
$(am__DEPENDENCIES_1)
test_type_LINK = $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) \
$(LIBTOOLFLAGS) --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) \
$(test_type_LDFLAGS) $(LDFLAGS) -o $@
DEFAULT_INCLUDES =
depcomp = $(SHELL) $(top_srcdir)/depcomp
am__depfiles_maybe = depfiles
am__mv = mv -f
COMPILE = $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) \
$(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS)
LTCOMPILE = $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) \
$(LIBTOOLFLAGS) --mode=compile $(CC) $(DEFS) \
$(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) \
$(AM_CFLAGS) $(CFLAGS)
AM_V_CC = $(am__v_CC_$(V))
am__v_CC_ = $(am__v_CC_$(AM_DEFAULT_VERBOSITY))
am__v_CC_0 = @echo " CC " $@;
AM_V_at = $(am__v_at_$(V))
am__v_at_ = $(am__v_at_$(AM_DEFAULT_VERBOSITY))
am__v_at_0 = @
CCLD = $(CC)
LINK = $(LIBTOOL) $(AM_V_lt) --tag=CC $(AM_LIBTOOLFLAGS) \
$(LIBTOOLFLAGS) --mode=link $(CCLD) $(AM_CFLAGS) $(CFLAGS) \
$(AM_LDFLAGS) $(LDFLAGS) -o $@
AM_V_CCLD = $(am__v_CCLD_$(V))
am__v_CCLD_ = $(am__v_CCLD_$(AM_DEFAULT_VERBOSITY))
am__v_CCLD_0 = @echo " CCLD " $@;
AM_V_GEN = $(am__v_GEN_$(V))
am__v_GEN_ = $(am__v_GEN_$(AM_DEFAULT_VERBOSITY))
am__v_GEN_0 = @echo " GEN " $@;
SOURCES = $(demarshal_factory_SOURCES) $(interface_factory_SOURCES) \
$(marshal_factory_SOURCES) $(method_factory_SOURCES) \
$(nih_dbus_tool_SOURCES) $(property_factory_SOURCES) \
$(signal_factory_SOURCES) $(test_annotation_SOURCES) \
$(test_argument_SOURCES) \
$(test_com_netsplit_Nih_Test_object_SOURCES) \
$(nodist_test_com_netsplit_Nih_Test_object_SOURCES) \
$(test_com_netsplit_Nih_Test_proxy_SOURCES) \
$(nodist_test_com_netsplit_Nih_Test_proxy_SOURCES) \
$(test_demarshal_SOURCES) $(nodist_test_demarshal_SOURCES) \
$(test_indent_SOURCES) $(test_interface_SOURCES) \
$(nodist_test_interface_SOURCES) $(test_main_SOURCES) \
$(test_marshal_SOURCES) $(nodist_test_marshal_SOURCES) \
$(test_method_SOURCES) $(nodist_test_method_SOURCES) \
$(test_node_SOURCES) $(test_output_SOURCES) \
$(test_parse_SOURCES) $(test_property_SOURCES) \
$(nodist_test_property_SOURCES) $(test_signal_SOURCES) \
$(nodist_test_signal_SOURCES) $(test_symbol_SOURCES) \
$(test_type_SOURCES)
DIST_SOURCES = $(demarshal_factory_SOURCES) \
$(interface_factory_SOURCES) $(marshal_factory_SOURCES) \
$(method_factory_SOURCES) $(nih_dbus_tool_SOURCES) \
$(property_factory_SOURCES) $(signal_factory_SOURCES) \
$(test_annotation_SOURCES) $(test_argument_SOURCES) \
$(test_com_netsplit_Nih_Test_object_SOURCES) \
$(test_com_netsplit_Nih_Test_proxy_SOURCES) \
$(test_demarshal_SOURCES) $(test_indent_SOURCES) \
$(test_interface_SOURCES) $(test_main_SOURCES) \
$(test_marshal_SOURCES) $(test_method_SOURCES) \
$(test_node_SOURCES) $(test_output_SOURCES) \
$(test_parse_SOURCES) $(test_property_SOURCES) \
$(test_signal_SOURCES) $(test_symbol_SOURCES) \
$(test_type_SOURCES)
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'
man1dir = $(mandir)/man1
NROFF = nroff
MANS = $(dist_man_MANS)
ETAGS = etags
CTAGS = ctags
# If stdout is a non-dumb tty, use colors. If test -t is not supported,
# then this fails; a conservative approach. Of course do not redirect
# stdout here, just stderr.
am__tty_colors = \
red=; grn=; lgn=; blu=; std=; \
test "X$(AM_COLOR_TESTS)" != Xno \
&& test "X$$TERM" != Xdumb \
&& { test "X$(AM_COLOR_TESTS)" = Xalways || test -t 1 2>/dev/null; } \
&& { \
red='[0;31m'; \
grn='[0;32m'; \
lgn='[1;32m'; \
blu='[1;34m'; \
std='[m'; \
}
DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST)
ACLOCAL = @ACLOCAL@
ALLOCA = @ALLOCA@
AMTAR = @AMTAR@
AM_DEFAULT_VERBOSITY = @AM_DEFAULT_VERBOSITY@
AR = @AR@
AUTOCONF = @AUTOCONF@
AUTOHEADER = @AUTOHEADER@
AUTOMAKE = @AUTOMAKE@
AWK = @AWK@
BUILD_INCLUDED_LIBINTL = @BUILD_INCLUDED_LIBINTL@
CATOBJEXT = @CATOBJEXT@
CC = @CC@
CCDEPMODE = @CCDEPMODE@
CFLAGS = @CFLAGS@
CFLAG_VISIBILITY = @CFLAG_VISIBILITY@
CPP = @CPP@
CPPFLAGS = @CPPFLAGS@
CYGPATH_W = @CYGPATH_W@
DATADIRNAME = @DATADIRNAME@
DBUS_CFLAGS = @DBUS_CFLAGS@
DBUS_LIBS = @DBUS_LIBS@
DEFS = @DEFS@
DEPDIR = @DEPDIR@
DSYMUTIL = @DSYMUTIL@
DUMPBIN = @DUMPBIN@
ECHO_C = @ECHO_C@
ECHO_N = @ECHO_N@
ECHO_T = @ECHO_T@
EGREP = @EGREP@
EXEEXT = @EXEEXT@
EXPAT_LIBS = @EXPAT_LIBS@
FGREP = @FGREP@
GENCAT = @GENCAT@
GETTEXT_MACRO_VERSION = @GETTEXT_MACRO_VERSION@
GLIBC2 = @GLIBC2@
GLIBC21 = @GLIBC21@
GMSGFMT = @GMSGFMT@
GMSGFMT_015 = @GMSGFMT_015@
GREP = @GREP@
HAVE_ASPRINTF = @HAVE_ASPRINTF@
HAVE_POSIX_PRINTF = @HAVE_POSIX_PRINTF@
HAVE_SNPRINTF = @HAVE_SNPRINTF@
HAVE_VISIBILITY = @HAVE_VISIBILITY@
HAVE_WPRINTF = @HAVE_WPRINTF@
INSTALL = @INSTALL@
INSTALL_DATA = @INSTALL_DATA@
INSTALL_PROGRAM = @INSTALL_PROGRAM@
INSTALL_SCRIPT = @INSTALL_SCRIPT@
INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@
INSTOBJEXT = @INSTOBJEXT@
INTLBISON = @INTLBISON@
INTLLIBS = @INTLLIBS@
INTLOBJS = @INTLOBJS@
INTL_LIBTOOL_SUFFIX_PREFIX = @INTL_LIBTOOL_SUFFIX_PREFIX@
INTL_MACOSX_LIBS = @INTL_MACOSX_LIBS@
LD = @LD@
LDFLAGS = @LDFLAGS@
LIBICONV = @LIBICONV@
LIBINTL = @LIBINTL@
LIBMULTITHREAD = @LIBMULTITHREAD@
LIBOBJS = @LIBOBJS@
LIBPTH = @LIBPTH@
LIBPTH_PREFIX = @LIBPTH_PREFIX@
LIBS = @LIBS@
LIBTHREAD = @LIBTHREAD@
LIBTOOL = @LIBTOOL@
LIPO = @LIPO@
LN_S = @LN_S@
LTLIBC = @LTLIBC@
LTLIBICONV = @LTLIBICONV@
LTLIBINTL = @LTLIBINTL@
LTLIBMULTITHREAD = @LTLIBMULTITHREAD@
LTLIBOBJS = @LTLIBOBJS@
LTLIBPTH = @LTLIBPTH@
LTLIBTHREAD = @LTLIBTHREAD@
MAINT = @MAINT@
MAKEINFO = @MAKEINFO@
MKDIR_P = @MKDIR_P@
MSGFMT = @MSGFMT@
MSGFMT_015 = @MSGFMT_015@
MSGMERGE = @MSGMERGE@
NIH_DBUS_TOOL = @NIH_DBUS_TOOL@
NM = @NM@
NMEDIT = @NMEDIT@
OBJDUMP = @OBJDUMP@
OBJEXT = @OBJEXT@
OTOOL = @OTOOL@
OTOOL64 = @OTOOL64@
PACKAGE = @PACKAGE@
PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@
PACKAGE_COPYRIGHT = @PACKAGE_COPYRIGHT@
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@
POSUB = @POSUB@
PRI_MACROS_BROKEN = @PRI_MACROS_BROKEN@
RANLIB = @RANLIB@
SED = @SED@
SET_MAKE = @SET_MAKE@
SHELL = @SHELL@
STRIP = @STRIP@
USE_INCLUDED_LIBINTL = @USE_INCLUDED_LIBINTL@
USE_NLS = @USE_NLS@
VERSION = @VERSION@
VERSION_SCRIPT_ARG = @VERSION_SCRIPT_ARG@
WINDRES = @WINDRES@
WOE32 = @WOE32@
WOE32DLL = @WOE32DLL@
XGETTEXT = @XGETTEXT@
XGETTEXT_015 = @XGETTEXT_015@
XGETTEXT_EXTRA_OPTIONS = @XGETTEXT_EXTRA_OPTIONS@
abs_builddir = @abs_builddir@
abs_srcdir = @abs_srcdir@
abs_top_builddir = @abs_top_builddir@
abs_top_srcdir = @abs_top_srcdir@
ac_ct_CC = @ac_ct_CC@
ac_ct_DUMPBIN = @ac_ct_DUMPBIN@
am__include = @am__include@
am__leading_dot = @am__leading_dot@
am__quote = @am__quote@
am__tar = @am__tar@
am__untar = @am__untar@
bindir = @bindir@
build = @build@
build_alias = @build_alias@
build_cpu = @build_cpu@
build_os = @build_os@
build_vendor = @build_vendor@
builddir = @builddir@
datadir = @datadir@
datarootdir = @datarootdir@
docdir = @docdir@
dvidir = @dvidir@
exec_prefix = @exec_prefix@
host = @host@
host_alias = @host_alias@
host_cpu = @host_cpu@
host_os = @host_os@
host_vendor = @host_vendor@
htmldir = @htmldir@
includedir = @includedir@
infodir = @infodir@
install_sh = @install_sh@
libdir = @libdir@
libexecdir = @libexecdir@
localedir = @localedir@
localstatedir = @localstatedir@
lt_ECHO = @lt_ECHO@
mandir = @mandir@
mkdir_p = @mkdir_p@
oldincludedir = @oldincludedir@
pdfdir = @pdfdir@
prefix = @prefix@
program_transform_name = @program_transform_name@
psdir = @psdir@
sbindir = @sbindir@
sharedstatedir = @sharedstatedir@
srcdir = @srcdir@
sysconfdir = @sysconfdir@
target_alias = @target_alias@
top_build_prefix = @top_build_prefix@
top_builddir = @top_builddir@
top_srcdir = @top_srcdir@
AM_CFLAGS = \
$(DBUS_CFLAGS)
AM_CPPFLAGS = \
-DLOCALEDIR="\"$(localedir)\"" \
-I$(top_builddir) -I$(top_srcdir) -iquote$(builddir) -iquote$(srcdir) \
-I$(top_srcdir)/intl
dist_man_MANS = \
man/nih-dbus-tool.1
nih_dbus_tool_SOURCES = \
main.c \
symbol.c symbol.h \
indent.c indent.h \
type.c type.h \
marshal.c marshal.h \
demarshal.c demarshal.h \
node.c node.h \
interface.c interface.h \
method.c method.h \
signal.c signal.h \
property.c property.h \
argument.c argument.h \
annotation.c annotation.h \
parse.c parse.h \
output.c output.h \
errors.h
nih_dbus_tool_LDADD = \
../nih/libnih.la \
$(LTLIBINTL) \
$(EXPAT_LIBS) \
$(DBUS_LIBS)
test_main_SOURCES = tests/test_main.c main.c
test_main_CFLAGS = $(AM_CFLAGS) -DTEST
test_main_LDFLAGS = -static
test_main_LDADD = ../nih/libnih.la
test_symbol_SOURCES = tests/test_symbol.c
test_symbol_LDFLAGS = -static
test_symbol_LDADD = \
symbol.o \
../nih/libnih.la
test_indent_SOURCES = tests/test_indent.c
test_indent_LDFLAGS = -static
test_indent_LDADD = \
indent.o \
../nih/libnih.la
test_type_SOURCES = tests/test_type.c
test_type_LDFLAGS = -static
test_type_LDADD = \
type.o indent.o symbol.o \
../nih/libnih.la \
$(DBUS_LIBS)
test_marshal_SOURCES = \
tests/test_marshal.c tests/marshal_code.h
nodist_test_marshal_SOURCES = \
tests/marshal_code.c
test_marshal_LDFLAGS = -static
test_marshal_LDADD = \
marshal.o type.o indent.o symbol.o \
../nih/libnih.la \
$(DBUS_LIBS)
test_demarshal_SOURCES = \
tests/test_demarshal.c tests/demarshal_code.h
nodist_test_demarshal_SOURCES = \
tests/demarshal_code.c
test_demarshal_LDFLAGS = -static
test_demarshal_LDADD = \
demarshal.o type.o indent.o symbol.o \
../nih/libnih.la \
$(DBUS_LIBS)
test_node_SOURCES = tests/test_node.c
test_node_LDFLAGS = -static
test_node_LDADD = \
demarshal.o marshal.o type.o indent.o \
parse.o annotation.o argument.o property.o signal.o method.o \
interface.o node.o symbol.o \
../nih/libnih.la \
$(EXPAT_LIBS) \
$(DBUS_LIBS)
test_interface_SOURCES = \
tests/test_interface.c tests/interface_code.h
nodist_test_interface_SOURCES = \
tests/interface_code.c
test_interface_LDFLAGS = -static
test_interface_LDADD = \
demarshal.o marshal.o type.o indent.o \
parse.o annotation.o argument.o property.o signal.o method.o \
interface.o node.o symbol.o \
../nih-dbus/libnih-dbus.la \
../nih/libnih.la \
$(EXPAT_LIBS) \
$(DBUS_LIBS)
test_method_SOURCES = \
tests/test_method.c tests/method_code.h
nodist_test_method_SOURCES = \
tests/method_code.c
test_method_LDFLAGS = -static
test_method_LDADD = \
demarshal.o marshal.o type.o indent.o \
parse.o annotation.o argument.o property.o signal.o method.o \
interface.o node.o symbol.o \
../nih-dbus/libnih-dbus.la \
../nih/libnih.la \
$(EXPAT_LIBS) \
$(DBUS_LIBS)
test_signal_SOURCES = \
tests/test_signal.c tests/signal_code.h
nodist_test_signal_SOURCES = \
tests/signal_code.c
test_signal_LDFLAGS = -static
test_signal_LDADD = \
demarshal.o marshal.o type.o indent.o \
parse.o annotation.o argument.o property.o signal.o method.o \
interface.o node.o symbol.o \
../nih-dbus/libnih-dbus.la \
../nih/libnih.la \
$(EXPAT_LIBS) \
$(DBUS_LIBS)
test_property_SOURCES = \
tests/test_property.c tests/property_code.h
nodist_test_property_SOURCES = \
tests/property_code.c
test_property_LDFLAGS = -static
test_property_LDADD = \
demarshal.o marshal.o type.o indent.o \
parse.o annotation.o argument.o property.o signal.o method.o \
interface.o node.o symbol.o \
../nih-dbus/libnih-dbus.la \
../nih/libnih.la \
$(EXPAT_LIBS) \
$(DBUS_LIBS)
test_argument_SOURCES = tests/test_argument.c
test_argument_LDFLAGS = -static
test_argument_LDADD = \
demarshal.o marshal.o type.o indent.o \
parse.o annotation.o argument.o property.o signal.o method.o \
interface.o node.o symbol.o \
../nih/libnih.la \
$(EXPAT_LIBS) \
$(DBUS_LIBS)
test_annotation_SOURCES = tests/test_annotation.c
test_annotation_LDFLAGS = -static
test_annotation_LDADD = \
demarshal.o marshal.o type.o indent.o \
parse.o annotation.o argument.o property.o signal.o method.o \
interface.o node.o symbol.o \
../nih/libnih.la \
$(EXPAT_LIBS) \
$(DBUS_LIBS)
test_parse_SOURCES = tests/test_parse.c
test_parse_LDFLAGS = -static
test_parse_LDADD = \
demarshal.o marshal.o type.o indent.o \
parse.o annotation.o argument.o property.o signal.o method.o \
interface.o node.o symbol.o \
../nih/libnih.la \
$(EXPAT_LIBS) \
$(DBUS_LIBS)
test_output_SOURCES = tests/test_output.c
test_output_LDFLAGS = -static
test_output_LDADD = \
demarshal.o marshal.o type.o indent.o \
output.o parse.o annotation.o argument.o property.o signal.o method.o \
interface.o node.o symbol.o \
../nih/libnih.la \
$(EXPAT_LIBS) \
$(DBUS_LIBS)
test_com_netsplit_Nih_Test_object_SOURCES = \
tests/test_com.netsplit.Nih.Test_object.c \
tests/com.netsplit.Nih.Test_impl.c tests/com.netsplit.Nih.Test_impl.h
nodist_test_com_netsplit_Nih_Test_object_SOURCES = \
$(com_netsplit_Nih_Test_object_OUTPUTS)
test_com_netsplit_Nih_Test_object_LDFLAGS = -static
test_com_netsplit_Nih_Test_object_LDADD = ../nih-dbus/libnih-dbus.la ../nih/libnih.la $(DBUS_LIBS)
test_com_netsplit_Nih_Test_proxy_SOURCES = \
tests/test_com.netsplit.Nih.Test_proxy.c \
tests/com.netsplit.Nih.Test_impl.c tests/com.netsplit.Nih.Test_impl.h
nodist_test_com_netsplit_Nih_Test_proxy_SOURCES = \
$(com_netsplit_Nih_Test_object_OUTPUTS) \
$(com_netsplit_Nih_Test_proxy_OUTPUTS)
test_com_netsplit_Nih_Test_proxy_LDFLAGS = -static
test_com_netsplit_Nih_Test_proxy_LDADD = ../nih-dbus/libnih-dbus.la ../nih/libnih.la $(DBUS_LIBS)
com_netsplit_Nih_Test_object_OUTPUTS = \
tests/com.netsplit.Nih.Test_object.c \
tests/com.netsplit.Nih.Test_object.h
com_netsplit_Nih_Test_object_XML = \
tests/com.netsplit.Nih.Test.xml
com_netsplit_Nih_Test_proxy_OUTPUTS = \
tests/com.netsplit.Nih.Test_proxy.c \
tests/com.netsplit.Nih.Test_proxy.h
com_netsplit_Nih_Test_proxy_XML = \
tests/com.netsplit.Nih.Test.xml
# These have to be built sources because we can't compile test_*.o without
# the header file existing first.
BUILT_SOURCES = \
$(com_netsplit_Nih_Test_object_OUTPUTS) \
$(com_netsplit_Nih_Test_proxy_OUTPUTS)
EXTRA_DIST = $(com_netsplit_Nih_Test_object_XML) \
$(com_netsplit_Nih_Test_proxy_XML) \
tests/expected/test_interface_proxy_get_all_function_standard.c \
tests/expected/test_interface_proxy_get_all_notify_function_standard.c \
tests/expected/test_interface_proxy_get_all_notify_function_structure.c \
tests/expected/test_interface_proxy_get_all_sync_function_standard.c \
tests/expected/test_interface_proxy_get_all_sync_function_structure.c \
tests/expected/test_method_object_function_standard.c \
tests/expected/test_method_object_function_no_input.c \
tests/expected/test_method_object_function_no_output.c \
tests/expected/test_method_object_function_structure_input.c \
tests/expected/test_method_object_function_structure_output.c \
tests/expected/test_method_object_function_no_args.c \
tests/expected/test_method_object_function_async.c \
tests/expected/test_method_object_function_deprecated.c \
tests/expected/test_method_reply_function_standard.c \
tests/expected/test_method_reply_function_no_args.c \
tests/expected/test_method_reply_function_structure.c \
tests/expected/test_method_reply_function_array.c \
tests/expected/test_method_reply_function_deprecated.c \
tests/expected/test_method_proxy_function_standard.c \
tests/expected/test_method_proxy_function_no_args.c \
tests/expected/test_method_proxy_function_structure.c \
tests/expected/test_method_proxy_function_array.c \
tests/expected/test_method_proxy_function_deprecated.c \
tests/expected/test_method_proxy_notify_function_standard.c \
tests/expected/test_method_proxy_notify_function_no_args.c \
tests/expected/test_method_proxy_notify_function_structure.c \
tests/expected/test_method_proxy_notify_function_array.c \
tests/expected/test_method_proxy_sync_function_standard.c \
tests/expected/test_method_proxy_sync_function_no_input.c \
tests/expected/test_method_proxy_sync_function_no_output.c \
tests/expected/test_method_proxy_sync_function_no_args.c \
tests/expected/test_method_proxy_sync_function_structure_input.c \
tests/expected/test_method_proxy_sync_function_structure_output.c \
tests/expected/test_method_proxy_sync_function_array_input.c \
tests/expected/test_method_proxy_sync_function_deprecated.c \
tests/expected/test_signal_object_function_standard.c \
tests/expected/test_signal_object_function_no_args.c \
tests/expected/test_signal_object_function_structure.c \
tests/expected/test_signal_object_function_array.c \
tests/expected/test_signal_object_function_deprecated.c \
tests/expected/test_signal_proxy_function_standard.c \
tests/expected/test_signal_proxy_function_no_args.c \
tests/expected/test_signal_proxy_function_structure.c \
tests/expected/test_signal_proxy_function_deprecated.c \
tests/expected/test_property_object_get_function_standard.c \
tests/expected/test_property_object_get_function_structure.c \
tests/expected/test_property_object_get_function_deprecated.c \
tests/expected/test_property_object_set_function_standard.c \
tests/expected/test_property_object_set_function_structure.c \
tests/expected/test_property_object_set_function_deprecated.c \
tests/expected/test_property_proxy_get_function_standard.c \
tests/expected/test_property_proxy_get_function_deprecated.c \
tests/expected/test_property_proxy_get_notify_function_standard.c \
tests/expected/test_property_proxy_get_notify_function_structure.c \
tests/expected/test_property_proxy_get_notify_function_deprecated.c \
tests/expected/test_property_proxy_set_function_standard.c \
tests/expected/test_property_proxy_set_function_structure.c \
tests/expected/test_property_proxy_set_function_array.c \
tests/expected/test_property_proxy_set_function_deprecated.c \
tests/expected/test_property_proxy_set_notify_function_standard.c \
tests/expected/test_property_proxy_set_notify_function_deprecated.c \
tests/expected/test_property_proxy_get_sync_function_standard.c \
tests/expected/test_property_proxy_get_sync_function_structure.c \
tests/expected/test_property_proxy_get_sync_function_deprecated.c \
tests/expected/test_property_proxy_set_sync_function_standard.c \
tests/expected/test_property_proxy_set_sync_function_structure.c \
tests/expected/test_property_proxy_set_sync_function_array.c \
tests/expected/test_property_proxy_set_sync_function_deprecated.c \
tests/expected/test_node_interfaces_array_object.c \
tests/expected/test_node_interfaces_array_proxy.c \
tests/expected/test_node_interfaces_array_none.c \
tests/expected/test_node_object_functions_standard.c \
tests/expected/test_node_object_functions_no_methods.c \
tests/expected/test_node_object_functions_no_signals.c \
tests/expected/test_node_object_functions_no_properties.c \
tests/expected/test_node_object_functions_only_properties.c \
tests/expected/test_node_object_functions_structure.c \
tests/expected/test_node_proxy_functions_standard.c \
tests/expected/test_node_proxy_functions_no_methods.c \
tests/expected/test_node_proxy_functions_no_signals.c \
tests/expected/test_node_proxy_functions_no_properties.c \
tests/expected/test_node_proxy_functions_only_properties.c \
tests/expected/test_node_proxy_functions_structure.c \
tests/expected/test_output_proxy_standard.c \
tests/expected/test_output_proxy_standard.h \
tests/expected/test_output_proxy_no_interfaces.c \
tests/expected/test_output_proxy_no_interfaces.h \
tests/expected/test_output_object_standard.c \
tests/expected/test_output_object_standard.h \
tests/expected/test_output_object_no_interfaces.c \
tests/expected/test_output_object_no_interfaces.h
marshal_factory_SOURCES = tests/marshal_factory.c
marshal_factory_LDFLAGS = -static
marshal_factory_LDADD = \
marshal.o type.o indent.o symbol.o \
../nih/libnih.la \
$(DBUS_LIBS)
demarshal_factory_SOURCES = tests/demarshal_factory.c
demarshal_factory_LDFLAGS = -static
demarshal_factory_LDADD = \
demarshal.o type.o indent.o symbol.o \
../nih/libnih.la \
$(DBUS_LIBS)
interface_factory_SOURCES = tests/interface_factory.c
interface_factory_LDFLAGS = -static
interface_factory_LDADD = \
demarshal.o marshal.o type.o indent.o \
parse.o annotation.o argument.o property.o signal.o method.o \
interface.o node.o symbol.o \
../nih/libnih.la \
$(EXPAT_LIBS) \
$(DBUS_LIBS)
method_factory_SOURCES = tests/method_factory.c
method_factory_LDFLAGS = -static
method_factory_LDADD = \
demarshal.o marshal.o type.o indent.o \
parse.o annotation.o argument.o property.o signal.o method.o \
interface.o node.o symbol.o \
../nih/libnih.la \
$(EXPAT_LIBS) \
$(DBUS_LIBS)
signal_factory_SOURCES = tests/signal_factory.c
signal_factory_LDFLAGS = -static
signal_factory_LDADD = \
demarshal.o marshal.o type.o indent.o \
parse.o annotation.o argument.o property.o signal.o method.o \
interface.o node.o symbol.o \
../nih/libnih.la \
$(EXPAT_LIBS) \
$(DBUS_LIBS)
property_factory_SOURCES = tests/property_factory.c
property_factory_LDFLAGS = -static
property_factory_LDADD = \
demarshal.o marshal.o type.o indent.o \
parse.o annotation.o argument.o property.o signal.o method.o \
interface.o node.o symbol.o \
../nih/libnih.la \
$(EXPAT_LIBS) \
$(DBUS_LIBS)
CLEANFILES = \
$(com_netsplit_Nih_Test_object_OUTPUTS) \
$(com_netsplit_Nih_Test_proxy_OUTPUTS) \
$(nodist_test_marshal_SOURCES) \
$(nodist_test_demarshal_SOURCES) \
$(nodist_test_interface_SOURCES) \
$(nodist_test_method_SOURCES) \
$(nodist_test_signal_SOURCES) \
$(nodist_test_property_SOURCES)
all: $(BUILT_SOURCES)
$(MAKE) $(AM_MAKEFLAGS) all-am
.SUFFIXES:
.SUFFIXES: .c .lo .o .obj
$(srcdir)/Makefile.in: @MAINTAINER_MODE_TRUE@ $(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) --gnu nih-dbus-tool/Makefile'; \
$(am__cd) $(top_srcdir) && \
$(AUTOMAKE) --gnu nih-dbus-tool/Makefile
.PRECIOUS: Makefile
Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status
@case '$?' in \
*config.status*) \
cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh;; \
*) \
echo ' cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe)'; \
cd $(top_builddir) && $(SHELL) ./config.status $(subdir)/$@ $(am__depfiles_maybe);; \
esac;
$(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES)
cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh
$(top_srcdir)/configure: @MAINTAINER_MODE_TRUE@ $(am__configure_deps)
cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh
$(ACLOCAL_M4): @MAINTAINER_MODE_TRUE@ $(am__aclocal_m4_deps)
cd $(top_builddir) && $(MAKE) $(AM_MAKEFLAGS) am--refresh
$(am__aclocal_m4_deps):
install-binPROGRAMS: $(bin_PROGRAMS)
@$(NORMAL_INSTALL)
test -z "$(bindir)" || $(MKDIR_P) "$(DESTDIR)$(bindir)"
@list='$(bin_PROGRAMS)'; test -n "$(bindir)" || list=; \
for p in $$list; do echo "$$p $$p"; done | \
sed 's/$(EXEEXT)$$//' | \
while read p p1; do if test -f $$p || test -f $$p1; \
then echo "$$p"; echo "$$p"; else :; fi; \
done | \
sed -e 'p;s,.*/,,;n;h' -e 's|.*|.|' \
-e 'p;x;s,.*/,,;s/$(EXEEXT)$$//;$(transform);s/$$/$(EXEEXT)/' | \
sed 'N;N;N;s,\n, ,g' | \
$(AWK) 'BEGIN { files["."] = ""; dirs["."] = 1 } \
{ d=$$3; if (dirs[d] != 1) { print "d", d; dirs[d] = 1 } \
if ($$2 == $$4) files[d] = files[d] " " $$1; \
else { print "f", $$3 "/" $$4, $$1; } } \
END { for (d in files) print "f", d, files[d] }' | \
while read type dir files; do \
if test "$$dir" = .; then dir=; else dir=/$$dir; fi; \
test -z "$$files" || { \
echo " $(INSTALL_PROGRAM_ENV) $(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=install $(INSTALL_PROGRAM) $$files '$(DESTDIR)$(bindir)$$dir'"; \
$(INSTALL_PROGRAM_ENV) $(LIBTOOL) $(AM_LIBTOOLFLAGS) $(LIBTOOLFLAGS) --mode=install $(INSTALL_PROGRAM) $$files "$(DESTDIR)$(bindir)$$dir" || exit $$?; \
} \
; done
uninstall-binPROGRAMS:
@$(NORMAL_UNINSTALL)
@list='$(bin_PROGRAMS)'; test -n "$(bindir)" || list=; \
files=`for p in $$list; do echo "$$p"; done | \
sed -e 'h;s,^.*/,,;s/$(EXEEXT)$$//;$(transform)' \
-e 's/$$/$(EXEEXT)/' `; \
test -n "$$list" || exit 0; \
echo " ( cd '$(DESTDIR)$(bindir)' && rm -f" $$files ")"; \
cd "$(DESTDIR)$(bindir)" && rm -f $$files
clean-binPROGRAMS:
@list='$(bin_PROGRAMS)'; test -n "$$list" || exit 0; \
echo " rm -f" $$list; \
rm -f $$list || exit $$?; \
test -n "$(EXEEXT)" || exit 0; \
list=`for p in $$list; do echo "$$p"; done | sed 's/$(EXEEXT)$$//'`; \
echo " rm -f" $$list; \
rm -f $$list
clean-checkPROGRAMS:
@list='$(check_PROGRAMS)'; test -n "$$list" || exit 0; \
echo " rm -f" $$list; \
rm -f $$list || exit $$?; \
test -n "$(EXEEXT)" || exit 0; \
list=`for p in $$list; do echo "$$p"; done | sed 's/$(EXEEXT)$$//'`; \
echo " rm -f" $$list; \
rm -f $$list
demarshal_factory$(EXEEXT): $(demarshal_factory_OBJECTS) $(demarshal_factory_DEPENDENCIES)
@rm -f demarshal_factory$(EXEEXT)
$(AM_V_CCLD)$(demarshal_factory_LINK) $(demarshal_factory_OBJECTS) $(demarshal_factory_LDADD) $(LIBS)
interface_factory$(EXEEXT): $(interface_factory_OBJECTS) $(interface_factory_DEPENDENCIES)
@rm -f interface_factory$(EXEEXT)
$(AM_V_CCLD)$(interface_factory_LINK) $(interface_factory_OBJECTS) $(interface_factory_LDADD) $(LIBS)
marshal_factory$(EXEEXT): $(marshal_factory_OBJECTS) $(marshal_factory_DEPENDENCIES)
@rm -f marshal_factory$(EXEEXT)
$(AM_V_CCLD)$(marshal_factory_LINK) $(marshal_factory_OBJECTS) $(marshal_factory_LDADD) $(LIBS)
method_factory$(EXEEXT): $(method_factory_OBJECTS) $(method_factory_DEPENDENCIES)
@rm -f method_factory$(EXEEXT)
$(AM_V_CCLD)$(method_factory_LINK) $(method_factory_OBJECTS) $(method_factory_LDADD) $(LIBS)
nih-dbus-tool$(EXEEXT): $(nih_dbus_tool_OBJECTS) $(nih_dbus_tool_DEPENDENCIES)
@rm -f nih-dbus-tool$(EXEEXT)
$(AM_V_CCLD)$(LINK) $(nih_dbus_tool_OBJECTS) $(nih_dbus_tool_LDADD) $(LIBS)
property_factory$(EXEEXT): $(property_factory_OBJECTS) $(property_factory_DEPENDENCIES)
@rm -f property_factory$(EXEEXT)
$(AM_V_CCLD)$(property_factory_LINK) $(property_factory_OBJECTS) $(property_factory_LDADD) $(LIBS)
signal_factory$(EXEEXT): $(signal_factory_OBJECTS) $(signal_factory_DEPENDENCIES)
@rm -f signal_factory$(EXEEXT)
$(AM_V_CCLD)$(signal_factory_LINK) $(signal_factory_OBJECTS) $(signal_factory_LDADD) $(LIBS)
test_annotation$(EXEEXT): $(test_annotation_OBJECTS) $(test_annotation_DEPENDENCIES)
@rm -f test_annotation$(EXEEXT)
$(AM_V_CCLD)$(test_annotation_LINK) $(test_annotation_OBJECTS) $(test_annotation_LDADD) $(LIBS)
test_argument$(EXEEXT): $(test_argument_OBJECTS) $(test_argument_DEPENDENCIES)
@rm -f test_argument$(EXEEXT)
$(AM_V_CCLD)$(test_argument_LINK) $(test_argument_OBJECTS) $(test_argument_LDADD) $(LIBS)
test_com.netsplit.Nih.Test_object$(EXEEXT): $(test_com_netsplit_Nih_Test_object_OBJECTS) $(test_com_netsplit_Nih_Test_object_DEPENDENCIES)
@rm -f test_com.netsplit.Nih.Test_object$(EXEEXT)
$(AM_V_CCLD)$(test_com_netsplit_Nih_Test_object_LINK) $(test_com_netsplit_Nih_Test_object_OBJECTS) $(test_com_netsplit_Nih_Test_object_LDADD) $(LIBS)
test_com.netsplit.Nih.Test_proxy$(EXEEXT): $(test_com_netsplit_Nih_Test_proxy_OBJECTS) $(test_com_netsplit_Nih_Test_proxy_DEPENDENCIES)
@rm -f test_com.netsplit.Nih.Test_proxy$(EXEEXT)
$(AM_V_CCLD)$(test_com_netsplit_Nih_Test_proxy_LINK) $(test_com_netsplit_Nih_Test_proxy_OBJECTS) $(test_com_netsplit_Nih_Test_proxy_LDADD) $(LIBS)
test_demarshal$(EXEEXT): $(test_demarshal_OBJECTS) $(test_demarshal_DEPENDENCIES)
@rm -f test_demarshal$(EXEEXT)
$(AM_V_CCLD)$(test_demarshal_LINK) $(test_demarshal_OBJECTS) $(test_demarshal_LDADD) $(LIBS)
test_indent$(EXEEXT): $(test_indent_OBJECTS) $(test_indent_DEPENDENCIES)
@rm -f test_indent$(EXEEXT)
$(AM_V_CCLD)$(test_indent_LINK) $(test_indent_OBJECTS) $(test_indent_LDADD) $(LIBS)
test_interface$(EXEEXT): $(test_interface_OBJECTS) $(test_interface_DEPENDENCIES)
@rm -f test_interface$(EXEEXT)
$(AM_V_CCLD)$(test_interface_LINK) $(test_interface_OBJECTS) $(test_interface_LDADD) $(LIBS)
test_main$(EXEEXT): $(test_main_OBJECTS) $(test_main_DEPENDENCIES)
@rm -f test_main$(EXEEXT)
$(AM_V_CCLD)$(test_main_LINK) $(test_main_OBJECTS) $(test_main_LDADD) $(LIBS)
test_marshal$(EXEEXT): $(test_marshal_OBJECTS) $(test_marshal_DEPENDENCIES)
@rm -f test_marshal$(EXEEXT)
$(AM_V_CCLD)$(test_marshal_LINK) $(test_marshal_OBJECTS) $(test_marshal_LDADD) $(LIBS)
test_method$(EXEEXT): $(test_method_OBJECTS) $(test_method_DEPENDENCIES)
@rm -f test_method$(EXEEXT)
$(AM_V_CCLD)$(test_method_LINK) $(test_method_OBJECTS) $(test_method_LDADD) $(LIBS)
test_node$(EXEEXT): $(test_node_OBJECTS) $(test_node_DEPENDENCIES)
@rm -f test_node$(EXEEXT)
$(AM_V_CCLD)$(test_node_LINK) $(test_node_OBJECTS) $(test_node_LDADD) $(LIBS)
test_output$(EXEEXT): $(test_output_OBJECTS) $(test_output_DEPENDENCIES)
@rm -f test_output$(EXEEXT)
$(AM_V_CCLD)$(test_output_LINK) $(test_output_OBJECTS) $(test_output_LDADD) $(LIBS)
test_parse$(EXEEXT): $(test_parse_OBJECTS) $(test_parse_DEPENDENCIES)
@rm -f test_parse$(EXEEXT)
$(AM_V_CCLD)$(test_parse_LINK) $(test_parse_OBJECTS) $(test_parse_LDADD) $(LIBS)
test_property$(EXEEXT): $(test_property_OBJECTS) $(test_property_DEPENDENCIES)
@rm -f test_property$(EXEEXT)
$(AM_V_CCLD)$(test_property_LINK) $(test_property_OBJECTS) $(test_property_LDADD) $(LIBS)
test_signal$(EXEEXT): $(test_signal_OBJECTS) $(test_signal_DEPENDENCIES)
@rm -f test_signal$(EXEEXT)
$(AM_V_CCLD)$(test_signal_LINK) $(test_signal_OBJECTS) $(test_signal_LDADD) $(LIBS)
test_symbol$(EXEEXT): $(test_symbol_OBJECTS) $(test_symbol_DEPENDENCIES)
@rm -f test_symbol$(EXEEXT)
$(AM_V_CCLD)$(test_symbol_LINK) $(test_symbol_OBJECTS) $(test_symbol_LDADD) $(LIBS)
test_type$(EXEEXT): $(test_type_OBJECTS) $(test_type_DEPENDENCIES)
@rm -f test_type$(EXEEXT)
$(AM_V_CCLD)$(test_type_LINK) $(test_type_OBJECTS) $(test_type_LDADD) $(LIBS)
mostlyclean-compile:
-rm -f *.$(OBJEXT)
distclean-compile:
-rm -f *.tab.c
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/annotation.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/argument.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/com.netsplit.Nih.Test_impl.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/com.netsplit.Nih.Test_object.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/com.netsplit.Nih.Test_proxy.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/demarshal.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/demarshal_code.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/demarshal_factory.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/indent.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/interface.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/interface_code.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/interface_factory.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/main.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/marshal.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/marshal_code.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/marshal_factory.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/method.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/method_code.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/method_factory.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/node.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/output.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/parse.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/property.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/property_code.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/property_factory.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/signal.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/signal_code.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/signal_factory.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/symbol.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/test_annotation.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/test_argument.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/test_com.netsplit.Nih.Test_object.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/test_com.netsplit.Nih.Test_proxy.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/test_demarshal.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/test_indent.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/test_interface.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/test_main-main.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/test_main-test_main.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/test_marshal.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/test_method.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/test_node.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/test_output.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/test_parse.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/test_property.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/test_signal.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/test_symbol.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/test_type.Po@am__quote@
@AMDEP_TRUE@@am__include@ @am__quote@./$(DEPDIR)/type.Po@am__quote@
.c.o:
@am__fastdepCC_TRUE@ $(AM_V_CC)$(COMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $<
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po
@am__fastdepCC_FALSE@ $(AM_V_CC) @AM_BACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='$<' object='$@' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(COMPILE) -c $<
.c.obj:
@am__fastdepCC_TRUE@ $(AM_V_CC)$(COMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ `$(CYGPATH_W) '$<'`
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Po
@am__fastdepCC_FALSE@ $(AM_V_CC) @AM_BACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='$<' object='$@' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(COMPILE) -c `$(CYGPATH_W) '$<'`
.c.lo:
@am__fastdepCC_TRUE@ $(AM_V_CC)$(LTCOMPILE) -MT $@ -MD -MP -MF $(DEPDIR)/$*.Tpo -c -o $@ $<
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/$*.Tpo $(DEPDIR)/$*.Plo
@am__fastdepCC_FALSE@ $(AM_V_CC) @AM_BACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='$<' object='$@' libtool=yes @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(LTCOMPILE) -c -o $@ $<
demarshal_factory.o: tests/demarshal_factory.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT demarshal_factory.o -MD -MP -MF $(DEPDIR)/demarshal_factory.Tpo -c -o demarshal_factory.o `test -f 'tests/demarshal_factory.c' || echo '$(srcdir)/'`tests/demarshal_factory.c
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/demarshal_factory.Tpo $(DEPDIR)/demarshal_factory.Po
@am__fastdepCC_FALSE@ $(AM_V_CC) @AM_BACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='tests/demarshal_factory.c' object='demarshal_factory.o' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o demarshal_factory.o `test -f 'tests/demarshal_factory.c' || echo '$(srcdir)/'`tests/demarshal_factory.c
demarshal_factory.obj: tests/demarshal_factory.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT demarshal_factory.obj -MD -MP -MF $(DEPDIR)/demarshal_factory.Tpo -c -o demarshal_factory.obj `if test -f 'tests/demarshal_factory.c'; then $(CYGPATH_W) 'tests/demarshal_factory.c'; else $(CYGPATH_W) '$(srcdir)/tests/demarshal_factory.c'; fi`
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/demarshal_factory.Tpo $(DEPDIR)/demarshal_factory.Po
@am__fastdepCC_FALSE@ $(AM_V_CC) @AM_BACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='tests/demarshal_factory.c' object='demarshal_factory.obj' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o demarshal_factory.obj `if test -f 'tests/demarshal_factory.c'; then $(CYGPATH_W) 'tests/demarshal_factory.c'; else $(CYGPATH_W) '$(srcdir)/tests/demarshal_factory.c'; fi`
interface_factory.o: tests/interface_factory.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT interface_factory.o -MD -MP -MF $(DEPDIR)/interface_factory.Tpo -c -o interface_factory.o `test -f 'tests/interface_factory.c' || echo '$(srcdir)/'`tests/interface_factory.c
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/interface_factory.Tpo $(DEPDIR)/interface_factory.Po
@am__fastdepCC_FALSE@ $(AM_V_CC) @AM_BACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='tests/interface_factory.c' object='interface_factory.o' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o interface_factory.o `test -f 'tests/interface_factory.c' || echo '$(srcdir)/'`tests/interface_factory.c
interface_factory.obj: tests/interface_factory.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT interface_factory.obj -MD -MP -MF $(DEPDIR)/interface_factory.Tpo -c -o interface_factory.obj `if test -f 'tests/interface_factory.c'; then $(CYGPATH_W) 'tests/interface_factory.c'; else $(CYGPATH_W) '$(srcdir)/tests/interface_factory.c'; fi`
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/interface_factory.Tpo $(DEPDIR)/interface_factory.Po
@am__fastdepCC_FALSE@ $(AM_V_CC) @AM_BACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='tests/interface_factory.c' object='interface_factory.obj' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o interface_factory.obj `if test -f 'tests/interface_factory.c'; then $(CYGPATH_W) 'tests/interface_factory.c'; else $(CYGPATH_W) '$(srcdir)/tests/interface_factory.c'; fi`
marshal_factory.o: tests/marshal_factory.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT marshal_factory.o -MD -MP -MF $(DEPDIR)/marshal_factory.Tpo -c -o marshal_factory.o `test -f 'tests/marshal_factory.c' || echo '$(srcdir)/'`tests/marshal_factory.c
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/marshal_factory.Tpo $(DEPDIR)/marshal_factory.Po
@am__fastdepCC_FALSE@ $(AM_V_CC) @AM_BACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='tests/marshal_factory.c' object='marshal_factory.o' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o marshal_factory.o `test -f 'tests/marshal_factory.c' || echo '$(srcdir)/'`tests/marshal_factory.c
marshal_factory.obj: tests/marshal_factory.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT marshal_factory.obj -MD -MP -MF $(DEPDIR)/marshal_factory.Tpo -c -o marshal_factory.obj `if test -f 'tests/marshal_factory.c'; then $(CYGPATH_W) 'tests/marshal_factory.c'; else $(CYGPATH_W) '$(srcdir)/tests/marshal_factory.c'; fi`
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/marshal_factory.Tpo $(DEPDIR)/marshal_factory.Po
@am__fastdepCC_FALSE@ $(AM_V_CC) @AM_BACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='tests/marshal_factory.c' object='marshal_factory.obj' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o marshal_factory.obj `if test -f 'tests/marshal_factory.c'; then $(CYGPATH_W) 'tests/marshal_factory.c'; else $(CYGPATH_W) '$(srcdir)/tests/marshal_factory.c'; fi`
method_factory.o: tests/method_factory.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT method_factory.o -MD -MP -MF $(DEPDIR)/method_factory.Tpo -c -o method_factory.o `test -f 'tests/method_factory.c' || echo '$(srcdir)/'`tests/method_factory.c
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/method_factory.Tpo $(DEPDIR)/method_factory.Po
@am__fastdepCC_FALSE@ $(AM_V_CC) @AM_BACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='tests/method_factory.c' object='method_factory.o' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o method_factory.o `test -f 'tests/method_factory.c' || echo '$(srcdir)/'`tests/method_factory.c
method_factory.obj: tests/method_factory.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT method_factory.obj -MD -MP -MF $(DEPDIR)/method_factory.Tpo -c -o method_factory.obj `if test -f 'tests/method_factory.c'; then $(CYGPATH_W) 'tests/method_factory.c'; else $(CYGPATH_W) '$(srcdir)/tests/method_factory.c'; fi`
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/method_factory.Tpo $(DEPDIR)/method_factory.Po
@am__fastdepCC_FALSE@ $(AM_V_CC) @AM_BACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='tests/method_factory.c' object='method_factory.obj' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o method_factory.obj `if test -f 'tests/method_factory.c'; then $(CYGPATH_W) 'tests/method_factory.c'; else $(CYGPATH_W) '$(srcdir)/tests/method_factory.c'; fi`
property_factory.o: tests/property_factory.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT property_factory.o -MD -MP -MF $(DEPDIR)/property_factory.Tpo -c -o property_factory.o `test -f 'tests/property_factory.c' || echo '$(srcdir)/'`tests/property_factory.c
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/property_factory.Tpo $(DEPDIR)/property_factory.Po
@am__fastdepCC_FALSE@ $(AM_V_CC) @AM_BACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='tests/property_factory.c' object='property_factory.o' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o property_factory.o `test -f 'tests/property_factory.c' || echo '$(srcdir)/'`tests/property_factory.c
property_factory.obj: tests/property_factory.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT property_factory.obj -MD -MP -MF $(DEPDIR)/property_factory.Tpo -c -o property_factory.obj `if test -f 'tests/property_factory.c'; then $(CYGPATH_W) 'tests/property_factory.c'; else $(CYGPATH_W) '$(srcdir)/tests/property_factory.c'; fi`
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/property_factory.Tpo $(DEPDIR)/property_factory.Po
@am__fastdepCC_FALSE@ $(AM_V_CC) @AM_BACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='tests/property_factory.c' object='property_factory.obj' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o property_factory.obj `if test -f 'tests/property_factory.c'; then $(CYGPATH_W) 'tests/property_factory.c'; else $(CYGPATH_W) '$(srcdir)/tests/property_factory.c'; fi`
signal_factory.o: tests/signal_factory.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT signal_factory.o -MD -MP -MF $(DEPDIR)/signal_factory.Tpo -c -o signal_factory.o `test -f 'tests/signal_factory.c' || echo '$(srcdir)/'`tests/signal_factory.c
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/signal_factory.Tpo $(DEPDIR)/signal_factory.Po
@am__fastdepCC_FALSE@ $(AM_V_CC) @AM_BACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='tests/signal_factory.c' object='signal_factory.o' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o signal_factory.o `test -f 'tests/signal_factory.c' || echo '$(srcdir)/'`tests/signal_factory.c
signal_factory.obj: tests/signal_factory.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT signal_factory.obj -MD -MP -MF $(DEPDIR)/signal_factory.Tpo -c -o signal_factory.obj `if test -f 'tests/signal_factory.c'; then $(CYGPATH_W) 'tests/signal_factory.c'; else $(CYGPATH_W) '$(srcdir)/tests/signal_factory.c'; fi`
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/signal_factory.Tpo $(DEPDIR)/signal_factory.Po
@am__fastdepCC_FALSE@ $(AM_V_CC) @AM_BACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='tests/signal_factory.c' object='signal_factory.obj' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o signal_factory.obj `if test -f 'tests/signal_factory.c'; then $(CYGPATH_W) 'tests/signal_factory.c'; else $(CYGPATH_W) '$(srcdir)/tests/signal_factory.c'; fi`
test_annotation.o: tests/test_annotation.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_annotation.o -MD -MP -MF $(DEPDIR)/test_annotation.Tpo -c -o test_annotation.o `test -f 'tests/test_annotation.c' || echo '$(srcdir)/'`tests/test_annotation.c
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/test_annotation.Tpo $(DEPDIR)/test_annotation.Po
@am__fastdepCC_FALSE@ $(AM_V_CC) @AM_BACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='tests/test_annotation.c' object='test_annotation.o' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o test_annotation.o `test -f 'tests/test_annotation.c' || echo '$(srcdir)/'`tests/test_annotation.c
test_annotation.obj: tests/test_annotation.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_annotation.obj -MD -MP -MF $(DEPDIR)/test_annotation.Tpo -c -o test_annotation.obj `if test -f 'tests/test_annotation.c'; then $(CYGPATH_W) 'tests/test_annotation.c'; else $(CYGPATH_W) '$(srcdir)/tests/test_annotation.c'; fi`
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/test_annotation.Tpo $(DEPDIR)/test_annotation.Po
@am__fastdepCC_FALSE@ $(AM_V_CC) @AM_BACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='tests/test_annotation.c' object='test_annotation.obj' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o test_annotation.obj `if test -f 'tests/test_annotation.c'; then $(CYGPATH_W) 'tests/test_annotation.c'; else $(CYGPATH_W) '$(srcdir)/tests/test_annotation.c'; fi`
test_argument.o: tests/test_argument.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_argument.o -MD -MP -MF $(DEPDIR)/test_argument.Tpo -c -o test_argument.o `test -f 'tests/test_argument.c' || echo '$(srcdir)/'`tests/test_argument.c
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/test_argument.Tpo $(DEPDIR)/test_argument.Po
@am__fastdepCC_FALSE@ $(AM_V_CC) @AM_BACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='tests/test_argument.c' object='test_argument.o' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o test_argument.o `test -f 'tests/test_argument.c' || echo '$(srcdir)/'`tests/test_argument.c
test_argument.obj: tests/test_argument.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_argument.obj -MD -MP -MF $(DEPDIR)/test_argument.Tpo -c -o test_argument.obj `if test -f 'tests/test_argument.c'; then $(CYGPATH_W) 'tests/test_argument.c'; else $(CYGPATH_W) '$(srcdir)/tests/test_argument.c'; fi`
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/test_argument.Tpo $(DEPDIR)/test_argument.Po
@am__fastdepCC_FALSE@ $(AM_V_CC) @AM_BACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='tests/test_argument.c' object='test_argument.obj' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o test_argument.obj `if test -f 'tests/test_argument.c'; then $(CYGPATH_W) 'tests/test_argument.c'; else $(CYGPATH_W) '$(srcdir)/tests/test_argument.c'; fi`
test_com.netsplit.Nih.Test_object.o: tests/test_com.netsplit.Nih.Test_object.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_com.netsplit.Nih.Test_object.o -MD -MP -MF $(DEPDIR)/test_com.netsplit.Nih.Test_object.Tpo -c -o test_com.netsplit.Nih.Test_object.o `test -f 'tests/test_com.netsplit.Nih.Test_object.c' || echo '$(srcdir)/'`tests/test_com.netsplit.Nih.Test_object.c
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/test_com.netsplit.Nih.Test_object.Tpo $(DEPDIR)/test_com.netsplit.Nih.Test_object.Po
@am__fastdepCC_FALSE@ $(AM_V_CC) @AM_BACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='tests/test_com.netsplit.Nih.Test_object.c' object='test_com.netsplit.Nih.Test_object.o' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o test_com.netsplit.Nih.Test_object.o `test -f 'tests/test_com.netsplit.Nih.Test_object.c' || echo '$(srcdir)/'`tests/test_com.netsplit.Nih.Test_object.c
test_com.netsplit.Nih.Test_object.obj: tests/test_com.netsplit.Nih.Test_object.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_com.netsplit.Nih.Test_object.obj -MD -MP -MF $(DEPDIR)/test_com.netsplit.Nih.Test_object.Tpo -c -o test_com.netsplit.Nih.Test_object.obj `if test -f 'tests/test_com.netsplit.Nih.Test_object.c'; then $(CYGPATH_W) 'tests/test_com.netsplit.Nih.Test_object.c'; else $(CYGPATH_W) '$(srcdir)/tests/test_com.netsplit.Nih.Test_object.c'; fi`
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/test_com.netsplit.Nih.Test_object.Tpo $(DEPDIR)/test_com.netsplit.Nih.Test_object.Po
@am__fastdepCC_FALSE@ $(AM_V_CC) @AM_BACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='tests/test_com.netsplit.Nih.Test_object.c' object='test_com.netsplit.Nih.Test_object.obj' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o test_com.netsplit.Nih.Test_object.obj `if test -f 'tests/test_com.netsplit.Nih.Test_object.c'; then $(CYGPATH_W) 'tests/test_com.netsplit.Nih.Test_object.c'; else $(CYGPATH_W) '$(srcdir)/tests/test_com.netsplit.Nih.Test_object.c'; fi`
com.netsplit.Nih.Test_impl.o: tests/com.netsplit.Nih.Test_impl.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT com.netsplit.Nih.Test_impl.o -MD -MP -MF $(DEPDIR)/com.netsplit.Nih.Test_impl.Tpo -c -o com.netsplit.Nih.Test_impl.o `test -f 'tests/com.netsplit.Nih.Test_impl.c' || echo '$(srcdir)/'`tests/com.netsplit.Nih.Test_impl.c
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/com.netsplit.Nih.Test_impl.Tpo $(DEPDIR)/com.netsplit.Nih.Test_impl.Po
@am__fastdepCC_FALSE@ $(AM_V_CC) @AM_BACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='tests/com.netsplit.Nih.Test_impl.c' object='com.netsplit.Nih.Test_impl.o' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o com.netsplit.Nih.Test_impl.o `test -f 'tests/com.netsplit.Nih.Test_impl.c' || echo '$(srcdir)/'`tests/com.netsplit.Nih.Test_impl.c
com.netsplit.Nih.Test_impl.obj: tests/com.netsplit.Nih.Test_impl.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT com.netsplit.Nih.Test_impl.obj -MD -MP -MF $(DEPDIR)/com.netsplit.Nih.Test_impl.Tpo -c -o com.netsplit.Nih.Test_impl.obj `if test -f 'tests/com.netsplit.Nih.Test_impl.c'; then $(CYGPATH_W) 'tests/com.netsplit.Nih.Test_impl.c'; else $(CYGPATH_W) '$(srcdir)/tests/com.netsplit.Nih.Test_impl.c'; fi`
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/com.netsplit.Nih.Test_impl.Tpo $(DEPDIR)/com.netsplit.Nih.Test_impl.Po
@am__fastdepCC_FALSE@ $(AM_V_CC) @AM_BACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='tests/com.netsplit.Nih.Test_impl.c' object='com.netsplit.Nih.Test_impl.obj' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o com.netsplit.Nih.Test_impl.obj `if test -f 'tests/com.netsplit.Nih.Test_impl.c'; then $(CYGPATH_W) 'tests/com.netsplit.Nih.Test_impl.c'; else $(CYGPATH_W) '$(srcdir)/tests/com.netsplit.Nih.Test_impl.c'; fi`
com.netsplit.Nih.Test_object.o: tests/com.netsplit.Nih.Test_object.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT com.netsplit.Nih.Test_object.o -MD -MP -MF $(DEPDIR)/com.netsplit.Nih.Test_object.Tpo -c -o com.netsplit.Nih.Test_object.o `test -f 'tests/com.netsplit.Nih.Test_object.c' || echo '$(srcdir)/'`tests/com.netsplit.Nih.Test_object.c
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/com.netsplit.Nih.Test_object.Tpo $(DEPDIR)/com.netsplit.Nih.Test_object.Po
@am__fastdepCC_FALSE@ $(AM_V_CC) @AM_BACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='tests/com.netsplit.Nih.Test_object.c' object='com.netsplit.Nih.Test_object.o' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o com.netsplit.Nih.Test_object.o `test -f 'tests/com.netsplit.Nih.Test_object.c' || echo '$(srcdir)/'`tests/com.netsplit.Nih.Test_object.c
com.netsplit.Nih.Test_object.obj: tests/com.netsplit.Nih.Test_object.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT com.netsplit.Nih.Test_object.obj -MD -MP -MF $(DEPDIR)/com.netsplit.Nih.Test_object.Tpo -c -o com.netsplit.Nih.Test_object.obj `if test -f 'tests/com.netsplit.Nih.Test_object.c'; then $(CYGPATH_W) 'tests/com.netsplit.Nih.Test_object.c'; else $(CYGPATH_W) '$(srcdir)/tests/com.netsplit.Nih.Test_object.c'; fi`
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/com.netsplit.Nih.Test_object.Tpo $(DEPDIR)/com.netsplit.Nih.Test_object.Po
@am__fastdepCC_FALSE@ $(AM_V_CC) @AM_BACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='tests/com.netsplit.Nih.Test_object.c' object='com.netsplit.Nih.Test_object.obj' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o com.netsplit.Nih.Test_object.obj `if test -f 'tests/com.netsplit.Nih.Test_object.c'; then $(CYGPATH_W) 'tests/com.netsplit.Nih.Test_object.c'; else $(CYGPATH_W) '$(srcdir)/tests/com.netsplit.Nih.Test_object.c'; fi`
test_com.netsplit.Nih.Test_proxy.o: tests/test_com.netsplit.Nih.Test_proxy.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_com.netsplit.Nih.Test_proxy.o -MD -MP -MF $(DEPDIR)/test_com.netsplit.Nih.Test_proxy.Tpo -c -o test_com.netsplit.Nih.Test_proxy.o `test -f 'tests/test_com.netsplit.Nih.Test_proxy.c' || echo '$(srcdir)/'`tests/test_com.netsplit.Nih.Test_proxy.c
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/test_com.netsplit.Nih.Test_proxy.Tpo $(DEPDIR)/test_com.netsplit.Nih.Test_proxy.Po
@am__fastdepCC_FALSE@ $(AM_V_CC) @AM_BACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='tests/test_com.netsplit.Nih.Test_proxy.c' object='test_com.netsplit.Nih.Test_proxy.o' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o test_com.netsplit.Nih.Test_proxy.o `test -f 'tests/test_com.netsplit.Nih.Test_proxy.c' || echo '$(srcdir)/'`tests/test_com.netsplit.Nih.Test_proxy.c
test_com.netsplit.Nih.Test_proxy.obj: tests/test_com.netsplit.Nih.Test_proxy.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_com.netsplit.Nih.Test_proxy.obj -MD -MP -MF $(DEPDIR)/test_com.netsplit.Nih.Test_proxy.Tpo -c -o test_com.netsplit.Nih.Test_proxy.obj `if test -f 'tests/test_com.netsplit.Nih.Test_proxy.c'; then $(CYGPATH_W) 'tests/test_com.netsplit.Nih.Test_proxy.c'; else $(CYGPATH_W) '$(srcdir)/tests/test_com.netsplit.Nih.Test_proxy.c'; fi`
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/test_com.netsplit.Nih.Test_proxy.Tpo $(DEPDIR)/test_com.netsplit.Nih.Test_proxy.Po
@am__fastdepCC_FALSE@ $(AM_V_CC) @AM_BACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='tests/test_com.netsplit.Nih.Test_proxy.c' object='test_com.netsplit.Nih.Test_proxy.obj' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o test_com.netsplit.Nih.Test_proxy.obj `if test -f 'tests/test_com.netsplit.Nih.Test_proxy.c'; then $(CYGPATH_W) 'tests/test_com.netsplit.Nih.Test_proxy.c'; else $(CYGPATH_W) '$(srcdir)/tests/test_com.netsplit.Nih.Test_proxy.c'; fi`
com.netsplit.Nih.Test_proxy.o: tests/com.netsplit.Nih.Test_proxy.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT com.netsplit.Nih.Test_proxy.o -MD -MP -MF $(DEPDIR)/com.netsplit.Nih.Test_proxy.Tpo -c -o com.netsplit.Nih.Test_proxy.o `test -f 'tests/com.netsplit.Nih.Test_proxy.c' || echo '$(srcdir)/'`tests/com.netsplit.Nih.Test_proxy.c
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/com.netsplit.Nih.Test_proxy.Tpo $(DEPDIR)/com.netsplit.Nih.Test_proxy.Po
@am__fastdepCC_FALSE@ $(AM_V_CC) @AM_BACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='tests/com.netsplit.Nih.Test_proxy.c' object='com.netsplit.Nih.Test_proxy.o' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o com.netsplit.Nih.Test_proxy.o `test -f 'tests/com.netsplit.Nih.Test_proxy.c' || echo '$(srcdir)/'`tests/com.netsplit.Nih.Test_proxy.c
com.netsplit.Nih.Test_proxy.obj: tests/com.netsplit.Nih.Test_proxy.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT com.netsplit.Nih.Test_proxy.obj -MD -MP -MF $(DEPDIR)/com.netsplit.Nih.Test_proxy.Tpo -c -o com.netsplit.Nih.Test_proxy.obj `if test -f 'tests/com.netsplit.Nih.Test_proxy.c'; then $(CYGPATH_W) 'tests/com.netsplit.Nih.Test_proxy.c'; else $(CYGPATH_W) '$(srcdir)/tests/com.netsplit.Nih.Test_proxy.c'; fi`
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/com.netsplit.Nih.Test_proxy.Tpo $(DEPDIR)/com.netsplit.Nih.Test_proxy.Po
@am__fastdepCC_FALSE@ $(AM_V_CC) @AM_BACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='tests/com.netsplit.Nih.Test_proxy.c' object='com.netsplit.Nih.Test_proxy.obj' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o com.netsplit.Nih.Test_proxy.obj `if test -f 'tests/com.netsplit.Nih.Test_proxy.c'; then $(CYGPATH_W) 'tests/com.netsplit.Nih.Test_proxy.c'; else $(CYGPATH_W) '$(srcdir)/tests/com.netsplit.Nih.Test_proxy.c'; fi`
test_demarshal.o: tests/test_demarshal.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_demarshal.o -MD -MP -MF $(DEPDIR)/test_demarshal.Tpo -c -o test_demarshal.o `test -f 'tests/test_demarshal.c' || echo '$(srcdir)/'`tests/test_demarshal.c
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/test_demarshal.Tpo $(DEPDIR)/test_demarshal.Po
@am__fastdepCC_FALSE@ $(AM_V_CC) @AM_BACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='tests/test_demarshal.c' object='test_demarshal.o' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o test_demarshal.o `test -f 'tests/test_demarshal.c' || echo '$(srcdir)/'`tests/test_demarshal.c
test_demarshal.obj: tests/test_demarshal.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_demarshal.obj -MD -MP -MF $(DEPDIR)/test_demarshal.Tpo -c -o test_demarshal.obj `if test -f 'tests/test_demarshal.c'; then $(CYGPATH_W) 'tests/test_demarshal.c'; else $(CYGPATH_W) '$(srcdir)/tests/test_demarshal.c'; fi`
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/test_demarshal.Tpo $(DEPDIR)/test_demarshal.Po
@am__fastdepCC_FALSE@ $(AM_V_CC) @AM_BACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='tests/test_demarshal.c' object='test_demarshal.obj' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o test_demarshal.obj `if test -f 'tests/test_demarshal.c'; then $(CYGPATH_W) 'tests/test_demarshal.c'; else $(CYGPATH_W) '$(srcdir)/tests/test_demarshal.c'; fi`
demarshal_code.o: tests/demarshal_code.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT demarshal_code.o -MD -MP -MF $(DEPDIR)/demarshal_code.Tpo -c -o demarshal_code.o `test -f 'tests/demarshal_code.c' || echo '$(srcdir)/'`tests/demarshal_code.c
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/demarshal_code.Tpo $(DEPDIR)/demarshal_code.Po
@am__fastdepCC_FALSE@ $(AM_V_CC) @AM_BACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='tests/demarshal_code.c' object='demarshal_code.o' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o demarshal_code.o `test -f 'tests/demarshal_code.c' || echo '$(srcdir)/'`tests/demarshal_code.c
demarshal_code.obj: tests/demarshal_code.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT demarshal_code.obj -MD -MP -MF $(DEPDIR)/demarshal_code.Tpo -c -o demarshal_code.obj `if test -f 'tests/demarshal_code.c'; then $(CYGPATH_W) 'tests/demarshal_code.c'; else $(CYGPATH_W) '$(srcdir)/tests/demarshal_code.c'; fi`
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/demarshal_code.Tpo $(DEPDIR)/demarshal_code.Po
@am__fastdepCC_FALSE@ $(AM_V_CC) @AM_BACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='tests/demarshal_code.c' object='demarshal_code.obj' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o demarshal_code.obj `if test -f 'tests/demarshal_code.c'; then $(CYGPATH_W) 'tests/demarshal_code.c'; else $(CYGPATH_W) '$(srcdir)/tests/demarshal_code.c'; fi`
test_indent.o: tests/test_indent.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_indent.o -MD -MP -MF $(DEPDIR)/test_indent.Tpo -c -o test_indent.o `test -f 'tests/test_indent.c' || echo '$(srcdir)/'`tests/test_indent.c
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/test_indent.Tpo $(DEPDIR)/test_indent.Po
@am__fastdepCC_FALSE@ $(AM_V_CC) @AM_BACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='tests/test_indent.c' object='test_indent.o' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o test_indent.o `test -f 'tests/test_indent.c' || echo '$(srcdir)/'`tests/test_indent.c
test_indent.obj: tests/test_indent.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_indent.obj -MD -MP -MF $(DEPDIR)/test_indent.Tpo -c -o test_indent.obj `if test -f 'tests/test_indent.c'; then $(CYGPATH_W) 'tests/test_indent.c'; else $(CYGPATH_W) '$(srcdir)/tests/test_indent.c'; fi`
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/test_indent.Tpo $(DEPDIR)/test_indent.Po
@am__fastdepCC_FALSE@ $(AM_V_CC) @AM_BACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='tests/test_indent.c' object='test_indent.obj' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o test_indent.obj `if test -f 'tests/test_indent.c'; then $(CYGPATH_W) 'tests/test_indent.c'; else $(CYGPATH_W) '$(srcdir)/tests/test_indent.c'; fi`
test_interface.o: tests/test_interface.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_interface.o -MD -MP -MF $(DEPDIR)/test_interface.Tpo -c -o test_interface.o `test -f 'tests/test_interface.c' || echo '$(srcdir)/'`tests/test_interface.c
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/test_interface.Tpo $(DEPDIR)/test_interface.Po
@am__fastdepCC_FALSE@ $(AM_V_CC) @AM_BACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='tests/test_interface.c' object='test_interface.o' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o test_interface.o `test -f 'tests/test_interface.c' || echo '$(srcdir)/'`tests/test_interface.c
test_interface.obj: tests/test_interface.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_interface.obj -MD -MP -MF $(DEPDIR)/test_interface.Tpo -c -o test_interface.obj `if test -f 'tests/test_interface.c'; then $(CYGPATH_W) 'tests/test_interface.c'; else $(CYGPATH_W) '$(srcdir)/tests/test_interface.c'; fi`
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/test_interface.Tpo $(DEPDIR)/test_interface.Po
@am__fastdepCC_FALSE@ $(AM_V_CC) @AM_BACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='tests/test_interface.c' object='test_interface.obj' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o test_interface.obj `if test -f 'tests/test_interface.c'; then $(CYGPATH_W) 'tests/test_interface.c'; else $(CYGPATH_W) '$(srcdir)/tests/test_interface.c'; fi`
interface_code.o: tests/interface_code.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT interface_code.o -MD -MP -MF $(DEPDIR)/interface_code.Tpo -c -o interface_code.o `test -f 'tests/interface_code.c' || echo '$(srcdir)/'`tests/interface_code.c
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/interface_code.Tpo $(DEPDIR)/interface_code.Po
@am__fastdepCC_FALSE@ $(AM_V_CC) @AM_BACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='tests/interface_code.c' object='interface_code.o' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o interface_code.o `test -f 'tests/interface_code.c' || echo '$(srcdir)/'`tests/interface_code.c
interface_code.obj: tests/interface_code.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT interface_code.obj -MD -MP -MF $(DEPDIR)/interface_code.Tpo -c -o interface_code.obj `if test -f 'tests/interface_code.c'; then $(CYGPATH_W) 'tests/interface_code.c'; else $(CYGPATH_W) '$(srcdir)/tests/interface_code.c'; fi`
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/interface_code.Tpo $(DEPDIR)/interface_code.Po
@am__fastdepCC_FALSE@ $(AM_V_CC) @AM_BACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='tests/interface_code.c' object='interface_code.obj' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o interface_code.obj `if test -f 'tests/interface_code.c'; then $(CYGPATH_W) 'tests/interface_code.c'; else $(CYGPATH_W) '$(srcdir)/tests/interface_code.c'; fi`
test_main-test_main.o: tests/test_main.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_main_CFLAGS) $(CFLAGS) -MT test_main-test_main.o -MD -MP -MF $(DEPDIR)/test_main-test_main.Tpo -c -o test_main-test_main.o `test -f 'tests/test_main.c' || echo '$(srcdir)/'`tests/test_main.c
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/test_main-test_main.Tpo $(DEPDIR)/test_main-test_main.Po
@am__fastdepCC_FALSE@ $(AM_V_CC) @AM_BACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='tests/test_main.c' object='test_main-test_main.o' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_main_CFLAGS) $(CFLAGS) -c -o test_main-test_main.o `test -f 'tests/test_main.c' || echo '$(srcdir)/'`tests/test_main.c
test_main-test_main.obj: tests/test_main.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_main_CFLAGS) $(CFLAGS) -MT test_main-test_main.obj -MD -MP -MF $(DEPDIR)/test_main-test_main.Tpo -c -o test_main-test_main.obj `if test -f 'tests/test_main.c'; then $(CYGPATH_W) 'tests/test_main.c'; else $(CYGPATH_W) '$(srcdir)/tests/test_main.c'; fi`
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/test_main-test_main.Tpo $(DEPDIR)/test_main-test_main.Po
@am__fastdepCC_FALSE@ $(AM_V_CC) @AM_BACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='tests/test_main.c' object='test_main-test_main.obj' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_main_CFLAGS) $(CFLAGS) -c -o test_main-test_main.obj `if test -f 'tests/test_main.c'; then $(CYGPATH_W) 'tests/test_main.c'; else $(CYGPATH_W) '$(srcdir)/tests/test_main.c'; fi`
test_main-main.o: main.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_main_CFLAGS) $(CFLAGS) -MT test_main-main.o -MD -MP -MF $(DEPDIR)/test_main-main.Tpo -c -o test_main-main.o `test -f 'main.c' || echo '$(srcdir)/'`main.c
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/test_main-main.Tpo $(DEPDIR)/test_main-main.Po
@am__fastdepCC_FALSE@ $(AM_V_CC) @AM_BACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='main.c' object='test_main-main.o' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_main_CFLAGS) $(CFLAGS) -c -o test_main-main.o `test -f 'main.c' || echo '$(srcdir)/'`main.c
test_main-main.obj: main.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_main_CFLAGS) $(CFLAGS) -MT test_main-main.obj -MD -MP -MF $(DEPDIR)/test_main-main.Tpo -c -o test_main-main.obj `if test -f 'main.c'; then $(CYGPATH_W) 'main.c'; else $(CYGPATH_W) '$(srcdir)/main.c'; fi`
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/test_main-main.Tpo $(DEPDIR)/test_main-main.Po
@am__fastdepCC_FALSE@ $(AM_V_CC) @AM_BACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='main.c' object='test_main-main.obj' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(test_main_CFLAGS) $(CFLAGS) -c -o test_main-main.obj `if test -f 'main.c'; then $(CYGPATH_W) 'main.c'; else $(CYGPATH_W) '$(srcdir)/main.c'; fi`
test_marshal.o: tests/test_marshal.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_marshal.o -MD -MP -MF $(DEPDIR)/test_marshal.Tpo -c -o test_marshal.o `test -f 'tests/test_marshal.c' || echo '$(srcdir)/'`tests/test_marshal.c
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/test_marshal.Tpo $(DEPDIR)/test_marshal.Po
@am__fastdepCC_FALSE@ $(AM_V_CC) @AM_BACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='tests/test_marshal.c' object='test_marshal.o' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o test_marshal.o `test -f 'tests/test_marshal.c' || echo '$(srcdir)/'`tests/test_marshal.c
test_marshal.obj: tests/test_marshal.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_marshal.obj -MD -MP -MF $(DEPDIR)/test_marshal.Tpo -c -o test_marshal.obj `if test -f 'tests/test_marshal.c'; then $(CYGPATH_W) 'tests/test_marshal.c'; else $(CYGPATH_W) '$(srcdir)/tests/test_marshal.c'; fi`
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/test_marshal.Tpo $(DEPDIR)/test_marshal.Po
@am__fastdepCC_FALSE@ $(AM_V_CC) @AM_BACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='tests/test_marshal.c' object='test_marshal.obj' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o test_marshal.obj `if test -f 'tests/test_marshal.c'; then $(CYGPATH_W) 'tests/test_marshal.c'; else $(CYGPATH_W) '$(srcdir)/tests/test_marshal.c'; fi`
marshal_code.o: tests/marshal_code.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT marshal_code.o -MD -MP -MF $(DEPDIR)/marshal_code.Tpo -c -o marshal_code.o `test -f 'tests/marshal_code.c' || echo '$(srcdir)/'`tests/marshal_code.c
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/marshal_code.Tpo $(DEPDIR)/marshal_code.Po
@am__fastdepCC_FALSE@ $(AM_V_CC) @AM_BACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='tests/marshal_code.c' object='marshal_code.o' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o marshal_code.o `test -f 'tests/marshal_code.c' || echo '$(srcdir)/'`tests/marshal_code.c
marshal_code.obj: tests/marshal_code.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT marshal_code.obj -MD -MP -MF $(DEPDIR)/marshal_code.Tpo -c -o marshal_code.obj `if test -f 'tests/marshal_code.c'; then $(CYGPATH_W) 'tests/marshal_code.c'; else $(CYGPATH_W) '$(srcdir)/tests/marshal_code.c'; fi`
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/marshal_code.Tpo $(DEPDIR)/marshal_code.Po
@am__fastdepCC_FALSE@ $(AM_V_CC) @AM_BACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='tests/marshal_code.c' object='marshal_code.obj' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o marshal_code.obj `if test -f 'tests/marshal_code.c'; then $(CYGPATH_W) 'tests/marshal_code.c'; else $(CYGPATH_W) '$(srcdir)/tests/marshal_code.c'; fi`
test_method.o: tests/test_method.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_method.o -MD -MP -MF $(DEPDIR)/test_method.Tpo -c -o test_method.o `test -f 'tests/test_method.c' || echo '$(srcdir)/'`tests/test_method.c
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/test_method.Tpo $(DEPDIR)/test_method.Po
@am__fastdepCC_FALSE@ $(AM_V_CC) @AM_BACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='tests/test_method.c' object='test_method.o' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o test_method.o `test -f 'tests/test_method.c' || echo '$(srcdir)/'`tests/test_method.c
test_method.obj: tests/test_method.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_method.obj -MD -MP -MF $(DEPDIR)/test_method.Tpo -c -o test_method.obj `if test -f 'tests/test_method.c'; then $(CYGPATH_W) 'tests/test_method.c'; else $(CYGPATH_W) '$(srcdir)/tests/test_method.c'; fi`
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/test_method.Tpo $(DEPDIR)/test_method.Po
@am__fastdepCC_FALSE@ $(AM_V_CC) @AM_BACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='tests/test_method.c' object='test_method.obj' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o test_method.obj `if test -f 'tests/test_method.c'; then $(CYGPATH_W) 'tests/test_method.c'; else $(CYGPATH_W) '$(srcdir)/tests/test_method.c'; fi`
method_code.o: tests/method_code.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT method_code.o -MD -MP -MF $(DEPDIR)/method_code.Tpo -c -o method_code.o `test -f 'tests/method_code.c' || echo '$(srcdir)/'`tests/method_code.c
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/method_code.Tpo $(DEPDIR)/method_code.Po
@am__fastdepCC_FALSE@ $(AM_V_CC) @AM_BACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='tests/method_code.c' object='method_code.o' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o method_code.o `test -f 'tests/method_code.c' || echo '$(srcdir)/'`tests/method_code.c
method_code.obj: tests/method_code.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT method_code.obj -MD -MP -MF $(DEPDIR)/method_code.Tpo -c -o method_code.obj `if test -f 'tests/method_code.c'; then $(CYGPATH_W) 'tests/method_code.c'; else $(CYGPATH_W) '$(srcdir)/tests/method_code.c'; fi`
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/method_code.Tpo $(DEPDIR)/method_code.Po
@am__fastdepCC_FALSE@ $(AM_V_CC) @AM_BACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='tests/method_code.c' object='method_code.obj' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o method_code.obj `if test -f 'tests/method_code.c'; then $(CYGPATH_W) 'tests/method_code.c'; else $(CYGPATH_W) '$(srcdir)/tests/method_code.c'; fi`
test_node.o: tests/test_node.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_node.o -MD -MP -MF $(DEPDIR)/test_node.Tpo -c -o test_node.o `test -f 'tests/test_node.c' || echo '$(srcdir)/'`tests/test_node.c
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/test_node.Tpo $(DEPDIR)/test_node.Po
@am__fastdepCC_FALSE@ $(AM_V_CC) @AM_BACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='tests/test_node.c' object='test_node.o' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o test_node.o `test -f 'tests/test_node.c' || echo '$(srcdir)/'`tests/test_node.c
test_node.obj: tests/test_node.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_node.obj -MD -MP -MF $(DEPDIR)/test_node.Tpo -c -o test_node.obj `if test -f 'tests/test_node.c'; then $(CYGPATH_W) 'tests/test_node.c'; else $(CYGPATH_W) '$(srcdir)/tests/test_node.c'; fi`
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/test_node.Tpo $(DEPDIR)/test_node.Po
@am__fastdepCC_FALSE@ $(AM_V_CC) @AM_BACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='tests/test_node.c' object='test_node.obj' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o test_node.obj `if test -f 'tests/test_node.c'; then $(CYGPATH_W) 'tests/test_node.c'; else $(CYGPATH_W) '$(srcdir)/tests/test_node.c'; fi`
test_output.o: tests/test_output.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_output.o -MD -MP -MF $(DEPDIR)/test_output.Tpo -c -o test_output.o `test -f 'tests/test_output.c' || echo '$(srcdir)/'`tests/test_output.c
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/test_output.Tpo $(DEPDIR)/test_output.Po
@am__fastdepCC_FALSE@ $(AM_V_CC) @AM_BACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='tests/test_output.c' object='test_output.o' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o test_output.o `test -f 'tests/test_output.c' || echo '$(srcdir)/'`tests/test_output.c
test_output.obj: tests/test_output.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_output.obj -MD -MP -MF $(DEPDIR)/test_output.Tpo -c -o test_output.obj `if test -f 'tests/test_output.c'; then $(CYGPATH_W) 'tests/test_output.c'; else $(CYGPATH_W) '$(srcdir)/tests/test_output.c'; fi`
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/test_output.Tpo $(DEPDIR)/test_output.Po
@am__fastdepCC_FALSE@ $(AM_V_CC) @AM_BACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='tests/test_output.c' object='test_output.obj' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o test_output.obj `if test -f 'tests/test_output.c'; then $(CYGPATH_W) 'tests/test_output.c'; else $(CYGPATH_W) '$(srcdir)/tests/test_output.c'; fi`
test_parse.o: tests/test_parse.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_parse.o -MD -MP -MF $(DEPDIR)/test_parse.Tpo -c -o test_parse.o `test -f 'tests/test_parse.c' || echo '$(srcdir)/'`tests/test_parse.c
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/test_parse.Tpo $(DEPDIR)/test_parse.Po
@am__fastdepCC_FALSE@ $(AM_V_CC) @AM_BACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='tests/test_parse.c' object='test_parse.o' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o test_parse.o `test -f 'tests/test_parse.c' || echo '$(srcdir)/'`tests/test_parse.c
test_parse.obj: tests/test_parse.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_parse.obj -MD -MP -MF $(DEPDIR)/test_parse.Tpo -c -o test_parse.obj `if test -f 'tests/test_parse.c'; then $(CYGPATH_W) 'tests/test_parse.c'; else $(CYGPATH_W) '$(srcdir)/tests/test_parse.c'; fi`
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/test_parse.Tpo $(DEPDIR)/test_parse.Po
@am__fastdepCC_FALSE@ $(AM_V_CC) @AM_BACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='tests/test_parse.c' object='test_parse.obj' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o test_parse.obj `if test -f 'tests/test_parse.c'; then $(CYGPATH_W) 'tests/test_parse.c'; else $(CYGPATH_W) '$(srcdir)/tests/test_parse.c'; fi`
test_property.o: tests/test_property.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_property.o -MD -MP -MF $(DEPDIR)/test_property.Tpo -c -o test_property.o `test -f 'tests/test_property.c' || echo '$(srcdir)/'`tests/test_property.c
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/test_property.Tpo $(DEPDIR)/test_property.Po
@am__fastdepCC_FALSE@ $(AM_V_CC) @AM_BACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='tests/test_property.c' object='test_property.o' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o test_property.o `test -f 'tests/test_property.c' || echo '$(srcdir)/'`tests/test_property.c
test_property.obj: tests/test_property.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_property.obj -MD -MP -MF $(DEPDIR)/test_property.Tpo -c -o test_property.obj `if test -f 'tests/test_property.c'; then $(CYGPATH_W) 'tests/test_property.c'; else $(CYGPATH_W) '$(srcdir)/tests/test_property.c'; fi`
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/test_property.Tpo $(DEPDIR)/test_property.Po
@am__fastdepCC_FALSE@ $(AM_V_CC) @AM_BACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='tests/test_property.c' object='test_property.obj' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o test_property.obj `if test -f 'tests/test_property.c'; then $(CYGPATH_W) 'tests/test_property.c'; else $(CYGPATH_W) '$(srcdir)/tests/test_property.c'; fi`
property_code.o: tests/property_code.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT property_code.o -MD -MP -MF $(DEPDIR)/property_code.Tpo -c -o property_code.o `test -f 'tests/property_code.c' || echo '$(srcdir)/'`tests/property_code.c
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/property_code.Tpo $(DEPDIR)/property_code.Po
@am__fastdepCC_FALSE@ $(AM_V_CC) @AM_BACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='tests/property_code.c' object='property_code.o' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o property_code.o `test -f 'tests/property_code.c' || echo '$(srcdir)/'`tests/property_code.c
property_code.obj: tests/property_code.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT property_code.obj -MD -MP -MF $(DEPDIR)/property_code.Tpo -c -o property_code.obj `if test -f 'tests/property_code.c'; then $(CYGPATH_W) 'tests/property_code.c'; else $(CYGPATH_W) '$(srcdir)/tests/property_code.c'; fi`
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/property_code.Tpo $(DEPDIR)/property_code.Po
@am__fastdepCC_FALSE@ $(AM_V_CC) @AM_BACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='tests/property_code.c' object='property_code.obj' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o property_code.obj `if test -f 'tests/property_code.c'; then $(CYGPATH_W) 'tests/property_code.c'; else $(CYGPATH_W) '$(srcdir)/tests/property_code.c'; fi`
test_signal.o: tests/test_signal.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_signal.o -MD -MP -MF $(DEPDIR)/test_signal.Tpo -c -o test_signal.o `test -f 'tests/test_signal.c' || echo '$(srcdir)/'`tests/test_signal.c
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/test_signal.Tpo $(DEPDIR)/test_signal.Po
@am__fastdepCC_FALSE@ $(AM_V_CC) @AM_BACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='tests/test_signal.c' object='test_signal.o' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o test_signal.o `test -f 'tests/test_signal.c' || echo '$(srcdir)/'`tests/test_signal.c
test_signal.obj: tests/test_signal.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_signal.obj -MD -MP -MF $(DEPDIR)/test_signal.Tpo -c -o test_signal.obj `if test -f 'tests/test_signal.c'; then $(CYGPATH_W) 'tests/test_signal.c'; else $(CYGPATH_W) '$(srcdir)/tests/test_signal.c'; fi`
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/test_signal.Tpo $(DEPDIR)/test_signal.Po
@am__fastdepCC_FALSE@ $(AM_V_CC) @AM_BACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='tests/test_signal.c' object='test_signal.obj' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o test_signal.obj `if test -f 'tests/test_signal.c'; then $(CYGPATH_W) 'tests/test_signal.c'; else $(CYGPATH_W) '$(srcdir)/tests/test_signal.c'; fi`
signal_code.o: tests/signal_code.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT signal_code.o -MD -MP -MF $(DEPDIR)/signal_code.Tpo -c -o signal_code.o `test -f 'tests/signal_code.c' || echo '$(srcdir)/'`tests/signal_code.c
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/signal_code.Tpo $(DEPDIR)/signal_code.Po
@am__fastdepCC_FALSE@ $(AM_V_CC) @AM_BACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='tests/signal_code.c' object='signal_code.o' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o signal_code.o `test -f 'tests/signal_code.c' || echo '$(srcdir)/'`tests/signal_code.c
signal_code.obj: tests/signal_code.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT signal_code.obj -MD -MP -MF $(DEPDIR)/signal_code.Tpo -c -o signal_code.obj `if test -f 'tests/signal_code.c'; then $(CYGPATH_W) 'tests/signal_code.c'; else $(CYGPATH_W) '$(srcdir)/tests/signal_code.c'; fi`
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/signal_code.Tpo $(DEPDIR)/signal_code.Po
@am__fastdepCC_FALSE@ $(AM_V_CC) @AM_BACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='tests/signal_code.c' object='signal_code.obj' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o signal_code.obj `if test -f 'tests/signal_code.c'; then $(CYGPATH_W) 'tests/signal_code.c'; else $(CYGPATH_W) '$(srcdir)/tests/signal_code.c'; fi`
test_symbol.o: tests/test_symbol.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_symbol.o -MD -MP -MF $(DEPDIR)/test_symbol.Tpo -c -o test_symbol.o `test -f 'tests/test_symbol.c' || echo '$(srcdir)/'`tests/test_symbol.c
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/test_symbol.Tpo $(DEPDIR)/test_symbol.Po
@am__fastdepCC_FALSE@ $(AM_V_CC) @AM_BACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='tests/test_symbol.c' object='test_symbol.o' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o test_symbol.o `test -f 'tests/test_symbol.c' || echo '$(srcdir)/'`tests/test_symbol.c
test_symbol.obj: tests/test_symbol.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_symbol.obj -MD -MP -MF $(DEPDIR)/test_symbol.Tpo -c -o test_symbol.obj `if test -f 'tests/test_symbol.c'; then $(CYGPATH_W) 'tests/test_symbol.c'; else $(CYGPATH_W) '$(srcdir)/tests/test_symbol.c'; fi`
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/test_symbol.Tpo $(DEPDIR)/test_symbol.Po
@am__fastdepCC_FALSE@ $(AM_V_CC) @AM_BACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='tests/test_symbol.c' object='test_symbol.obj' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o test_symbol.obj `if test -f 'tests/test_symbol.c'; then $(CYGPATH_W) 'tests/test_symbol.c'; else $(CYGPATH_W) '$(srcdir)/tests/test_symbol.c'; fi`
test_type.o: tests/test_type.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_type.o -MD -MP -MF $(DEPDIR)/test_type.Tpo -c -o test_type.o `test -f 'tests/test_type.c' || echo '$(srcdir)/'`tests/test_type.c
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/test_type.Tpo $(DEPDIR)/test_type.Po
@am__fastdepCC_FALSE@ $(AM_V_CC) @AM_BACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='tests/test_type.c' object='test_type.o' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o test_type.o `test -f 'tests/test_type.c' || echo '$(srcdir)/'`tests/test_type.c
test_type.obj: tests/test_type.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -MT test_type.obj -MD -MP -MF $(DEPDIR)/test_type.Tpo -c -o test_type.obj `if test -f 'tests/test_type.c'; then $(CYGPATH_W) 'tests/test_type.c'; else $(CYGPATH_W) '$(srcdir)/tests/test_type.c'; fi`
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) $(DEPDIR)/test_type.Tpo $(DEPDIR)/test_type.Po
@am__fastdepCC_FALSE@ $(AM_V_CC) @AM_BACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ source='tests/test_type.c' object='test_type.obj' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS) -c -o test_type.obj `if test -f 'tests/test_type.c'; then $(CYGPATH_W) 'tests/test_type.c'; else $(CYGPATH_W) '$(srcdir)/tests/test_type.c'; fi`
mostlyclean-libtool:
-rm -f *.lo
clean-libtool:
-rm -rf .libs _libs
install-man1: $(dist_man_MANS)
@$(NORMAL_INSTALL)
test -z "$(man1dir)" || $(MKDIR_P) "$(DESTDIR)$(man1dir)"
@list=''; test -n "$(man1dir)" || exit 0; \
{ for i in $$list; do echo "$$i"; done; \
l2='$(dist_man_MANS)'; for i in $$l2; do echo "$$i"; done | \
sed -n '/\.1[a-z]*$$/p'; \
} | while read p; do \
if test -f $$p; then d=; else d="$(srcdir)/"; fi; \
echo "$$d$$p"; echo "$$p"; \
done | \
sed -e 'n;s,.*/,,;p;h;s,.*\.,,;s,^[^1][0-9a-z]*$$,1,;x' \
-e 's,\.[0-9a-z]*$$,,;$(transform);G;s,\n,.,' | \
sed 'N;N;s,\n, ,g' | { \
list=; while read file base inst; do \
if test "$$base" = "$$inst"; then list="$$list $$file"; else \
echo " $(INSTALL_DATA) '$$file' '$(DESTDIR)$(man1dir)/$$inst'"; \
$(INSTALL_DATA) "$$file" "$(DESTDIR)$(man1dir)/$$inst" || exit $$?; \
fi; \
done; \
for i in $$list; do echo "$$i"; done | $(am__base_list) | \
while read files; do \
test -z "$$files" || { \
echo " $(INSTALL_DATA) $$files '$(DESTDIR)$(man1dir)'"; \
$(INSTALL_DATA) $$files "$(DESTDIR)$(man1dir)" || exit $$?; }; \
done; }
uninstall-man1:
@$(NORMAL_UNINSTALL)
@list=''; test -n "$(man1dir)" || exit 0; \
files=`{ for i in $$list; do echo "$$i"; done; \
l2='$(dist_man_MANS)'; for i in $$l2; do echo "$$i"; done | \
sed -n '/\.1[a-z]*$$/p'; \
} | sed -e 's,.*/,,;h;s,.*\.,,;s,^[^1][0-9a-z]*$$,1,;x' \
-e 's,\.[0-9a-z]*$$,,;$(transform);G;s,\n,.,'`; \
test -z "$$files" || { \
echo " ( cd '$(DESTDIR)$(man1dir)' && rm -f" $$files ")"; \
cd "$(DESTDIR)$(man1dir)" && rm -f $$files; }
ID: $(HEADERS) $(SOURCES) $(LISP) $(TAGS_FILES)
list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \
unique=`for i in $$list; do \
if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \
done | \
$(AWK) '{ files[$$0] = 1; nonempty = 1; } \
END { if (nonempty) { for (i in files) print i; }; }'`; \
mkid -fID $$unique
tags: TAGS
TAGS: $(HEADERS) $(SOURCES) $(TAGS_DEPENDENCIES) \
$(TAGS_FILES) $(LISP)
set x; \
here=`pwd`; \
list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \
unique=`for i in $$list; do \
if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \
done | \
$(AWK) '{ files[$$0] = 1; nonempty = 1; } \
END { if (nonempty) { for (i in files) print i; }; }'`; \
shift; \
if test -z "$(ETAGS_ARGS)$$*$$unique"; then :; else \
test -n "$$unique" || unique=$$empty_fix; \
if test $$# -gt 0; then \
$(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \
"$$@" $$unique; \
else \
$(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \
$$unique; \
fi; \
fi
ctags: CTAGS
CTAGS: $(HEADERS) $(SOURCES) $(TAGS_DEPENDENCIES) \
$(TAGS_FILES) $(LISP)
list='$(SOURCES) $(HEADERS) $(LISP) $(TAGS_FILES)'; \
unique=`for i in $$list; do \
if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \
done | \
$(AWK) '{ files[$$0] = 1; nonempty = 1; } \
END { if (nonempty) { for (i in files) print i; }; }'`; \
test -z "$(CTAGS_ARGS)$$unique" \
|| $(CTAGS) $(CTAGSFLAGS) $(AM_CTAGSFLAGS) $(CTAGS_ARGS) \
$$unique
GTAGS:
here=`$(am__cd) $(top_builddir) && pwd` \
&& $(am__cd) $(top_srcdir) \
&& gtags -i $(GTAGS_ARGS) "$$here"
distclean-tags:
-rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags
check-TESTS: $(TESTS)
@failed=0; all=0; xfail=0; xpass=0; skip=0; \
srcdir=$(srcdir); export srcdir; \
list=' $(TESTS) '; \
$(am__tty_colors); \
if test -n "$$list"; then \
for tst in $$list; do \
if test -f ./$$tst; then dir=./; \
elif test -f $$tst; then dir=; \
else dir="$(srcdir)/"; fi; \
if $(TESTS_ENVIRONMENT) $${dir}$$tst; then \
all=`expr $$all + 1`; \
case " $(XFAIL_TESTS) " in \
*[\ \ ]$$tst[\ \ ]*) \
xpass=`expr $$xpass + 1`; \
failed=`expr $$failed + 1`; \
col=$$red; res=XPASS; \
;; \
*) \
col=$$grn; res=PASS; \
;; \
esac; \
elif test $$? -ne 77; then \
all=`expr $$all + 1`; \
case " $(XFAIL_TESTS) " in \
*[\ \ ]$$tst[\ \ ]*) \
xfail=`expr $$xfail + 1`; \
col=$$lgn; res=XFAIL; \
;; \
*) \
failed=`expr $$failed + 1`; \
col=$$red; res=FAIL; \
;; \
esac; \
else \
skip=`expr $$skip + 1`; \
col=$$blu; res=SKIP; \
fi; \
echo "$${col}$$res$${std}: $$tst"; \
done; \
if test "$$all" -eq 1; then \
tests="test"; \
All=""; \
else \
tests="tests"; \
All="All "; \
fi; \
if test "$$failed" -eq 0; then \
if test "$$xfail" -eq 0; then \
banner="$$All$$all $$tests passed"; \
else \
if test "$$xfail" -eq 1; then failures=failure; else failures=failures; fi; \
banner="$$All$$all $$tests behaved as expected ($$xfail expected $$failures)"; \
fi; \
else \
if test "$$xpass" -eq 0; then \
banner="$$failed of $$all $$tests failed"; \
else \
if test "$$xpass" -eq 1; then passes=pass; else passes=passes; fi; \
banner="$$failed of $$all $$tests did not behave as expected ($$xpass unexpected $$passes)"; \
fi; \
fi; \
dashes="$$banner"; \
skipped=""; \
if test "$$skip" -ne 0; then \
if test "$$skip" -eq 1; then \
skipped="($$skip test was not run)"; \
else \
skipped="($$skip tests were not run)"; \
fi; \
test `echo "$$skipped" | wc -c` -le `echo "$$banner" | wc -c` || \
dashes="$$skipped"; \
fi; \
report=""; \
if test "$$failed" -ne 0 && test -n "$(PACKAGE_BUGREPORT)"; then \
report="Please report to $(PACKAGE_BUGREPORT)"; \
test `echo "$$report" | wc -c` -le `echo "$$banner" | wc -c` || \
dashes="$$report"; \
fi; \
dashes=`echo "$$dashes" | sed s/./=/g`; \
if test "$$failed" -eq 0; then \
echo "$$grn$$dashes"; \
else \
echo "$$red$$dashes"; \
fi; \
echo "$$banner"; \
test -z "$$skipped" || echo "$$skipped"; \
test -z "$$report" || echo "$$report"; \
echo "$$dashes$$std"; \
test "$$failed" -eq 0; \
else :; fi
distdir: $(DISTFILES)
@list='$(MANS)'; if test -n "$$list"; then \
list=`for p in $$list; do \
if test -f $$p; then d=; else d="$(srcdir)/"; fi; \
if test -f "$$d$$p"; then echo "$$d$$p"; else :; fi; done`; \
if test -n "$$list" && \
grep 'ab help2man is required to generate this page' $$list >/dev/null; then \
echo "error: found man pages containing the \`missing help2man' replacement text:" >&2; \
grep -l 'ab help2man is required to generate this page' $$list | sed 's/^/ /' >&2; \
echo " to fix them, install help2man, remove and regenerate the man pages;" >&2; \
echo " typically \`make maintainer-clean' will remove them" >&2; \
exit 1; \
else :; fi; \
else :; fi
@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: $(BUILT_SOURCES)
$(MAKE) $(AM_MAKEFLAGS) check-am
all-am: Makefile $(PROGRAMS) $(MANS)
installdirs:
for dir in "$(DESTDIR)$(bindir)" "$(DESTDIR)$(man1dir)"; do \
test -z "$$dir" || $(MKDIR_P) "$$dir"; \
done
install: $(BUILT_SOURCES)
$(MAKE) $(AM_MAKEFLAGS) install-am
install-exec: install-exec-am
install-data: install-data-am
uninstall: uninstall-am
install-am: all-am
@$(MAKE) $(AM_MAKEFLAGS) install-exec-am install-data-am
installcheck: installcheck-am
install-strip:
$(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \
install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \
`test -z '$(STRIP)' || \
echo "INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'"` install
mostlyclean-generic:
clean-generic:
-test -z "$(CLEANFILES)" || rm -f $(CLEANFILES)
distclean-generic:
-test -z "$(CONFIG_CLEAN_FILES)" || rm -f $(CONFIG_CLEAN_FILES)
-test . = "$(srcdir)" || test -z "$(CONFIG_CLEAN_VPATH_FILES)" || rm -f $(CONFIG_CLEAN_VPATH_FILES)
maintainer-clean-generic:
@echo "This command is intended for maintainers to use"
@echo "it deletes files that may require special tools to rebuild."
-test -z "$(BUILT_SOURCES)" || rm -f $(BUILT_SOURCES)
clean: clean-am
clean-am: clean-binPROGRAMS clean-checkPROGRAMS clean-generic \
clean-libtool clean-local mostlyclean-am
distclean: distclean-am
-rm -rf ./$(DEPDIR)
-rm -f Makefile
distclean-am: clean-am distclean-compile distclean-generic \
distclean-tags
dvi: dvi-am
dvi-am:
html: html-am
html-am:
info: info-am
info-am:
install-data-am: install-man
install-dvi: install-dvi-am
install-dvi-am:
install-exec-am: install-binPROGRAMS
install-html: install-html-am
install-html-am:
install-info: install-info-am
install-info-am:
install-man: install-man1
install-pdf: install-pdf-am
install-pdf-am:
install-ps: install-ps-am
install-ps-am:
installcheck-am:
maintainer-clean: maintainer-clean-am
-rm -rf ./$(DEPDIR)
-rm -f Makefile
maintainer-clean-am: distclean-am maintainer-clean-generic \
maintainer-clean-local
mostlyclean: mostlyclean-am
mostlyclean-am: mostlyclean-compile mostlyclean-generic \
mostlyclean-libtool
pdf: pdf-am
pdf-am:
ps: ps-am
ps-am:
uninstall-am: uninstall-binPROGRAMS uninstall-man
uninstall-man: uninstall-man1
.MAKE: all check check-am install install-am install-strip
.PHONY: CTAGS GTAGS all all-am check check-TESTS check-am clean \
clean-binPROGRAMS clean-checkPROGRAMS clean-generic \
clean-libtool clean-local ctags distclean distclean-compile \
distclean-generic distclean-libtool distclean-tags distdir dvi \
dvi-am html html-am info info-am install install-am \
install-binPROGRAMS install-data install-data-am install-dvi \
install-dvi-am install-exec install-exec-am install-html \
install-html-am install-info install-info-am install-man \
install-man1 install-pdf install-pdf-am install-ps \
install-ps-am install-strip installcheck installcheck-am \
installdirs maintainer-clean maintainer-clean-generic \
maintainer-clean-local mostlyclean mostlyclean-compile \
mostlyclean-generic mostlyclean-libtool pdf pdf-am ps ps-am \
tags uninstall uninstall-am uninstall-binPROGRAMS \
uninstall-man uninstall-man1
$(com_netsplit_Nih_Test_object_OUTPUTS): $(com_netsplit_Nih_Test_object_XML) $(builddir)/nih-dbus-tool
$(AM_V_GEN)$(MKDIR_P) `echo "$@" | \
sed '/\//!d;s,/[^/]*$$,,' | \
sort -u` && \
$(NIH_DBUS_TOOL) --mode=object --prefix=my --output=$@ $<
$(com_netsplit_Nih_Test_proxy_OUTPUTS): $(com_netsplit_Nih_Test_proxy_XML) $(builddir)/nih-dbus-tool
$(AM_V_GEN)$(MKDIR_P) `echo "$@" | \
sed '/\//!d;s,/[^/]*$$,,' | \
sort -u` && \
$(NIH_DBUS_TOOL) --mode=proxy --prefix=proxy --output=$@ $<
tests/marshal_code.c: $(builddir)/marshal_factory
$(AM_V_GEN)$(builddir)/marshal_factory > $@
tests/demarshal_code.c: $(builddir)/demarshal_factory
$(AM_V_GEN)$(builddir)/demarshal_factory > $@
tests/interface_code.c: $(builddir)/interface_factory
$(AM_V_GEN)$(builddir)/interface_factory > $@
tests/method_code.c: $(builddir)/method_factory
$(AM_V_GEN)$(builddir)/method_factory > $@
tests/signal_code.c: $(builddir)/signal_factory
$(AM_V_GEN)$(builddir)/signal_factory > $@
tests/property_code.c: $(builddir)/property_factory
$(AM_V_GEN)$(builddir)/property_factory > $@
.PHONY: tests
tests: $(BUILT_SOURCES) $(check_PROGRAMS)
clean-local:
rm -f *.gcno *.gcda
maintainer-clean-local:
rm -f *.gcov
# 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:
|