1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 1468 1469 1470 1471 1472 1473 1474 1475 1476 1477 1478 1479 1480 1481 1482 1483 1484 1485 1486 1487 1488 1489 1490 1491 1492 1493 1494 1495 1496 1497 1498 1499 1500 1501 1502 1503 1504 1505 1506 1507 1508 1509 1510 1511 1512 1513 1514 1515 1516 1517 1518 1519 1520 1521 1522 1523 1524 1525 1526 1527 1528 1529 1530 1531 1532 1533 1534 1535 1536 1537 1538 1539 1540 1541 1542 1543 1544 1545 1546 1547 1548 1549 1550 1551 1552 1553 1554 1555 1556 1557 1558 1559 1560 1561 1562 1563 1564 1565 1566 1567 1568 1569 1570 1571 1572 1573 1574 1575 1576 1577 1578 1579 1580 1581 1582 1583 1584 1585 1586 1587 1588 1589 1590 1591 1592 1593 1594 1595 1596 1597 1598 1599 1600 1601 1602 1603 1604 1605 1606 1607 1608 1609 1610 1611 1612 1613 1614 1615 1616 1617 1618 1619 1620 1621 1622 1623 1624 1625 1626 1627 1628 1629 1630 1631 1632 1633 1634 1635 1636 1637 1638 1639 1640 1641 1642 1643 1644 1645 1646 1647 1648 1649 1650 1651 1652 1653 1654 1655 1656 1657 1658 1659 1660 1661 1662 1663 1664 1665 1666 1667 1668 1669 1670 1671 1672 1673 1674 1675 1676 1677 1678 1679 1680 1681 1682 1683 1684 1685 1686 1687 1688 1689 1690 1691 1692 1693 1694 1695 1696 1697 1698 1699 1700 1701 1702 1703 1704 1705 1706 1707 1708 1709 1710 1711 1712 1713 1714 1715 1716 1717 1718 1719 1720 1721 1722 1723 1724 1725 1726 1727 1728 1729 1730 1731 1732 1733 1734 1735 1736 1737 1738 1739 1740 1741 1742 1743 1744 1745 1746 1747 1748 1749 1750 1751 1752 1753 1754 1755 1756 1757 1758 1759 1760 1761 1762 1763 1764 1765 1766 1767 1768 1769 1770 1771 1772 1773 1774 1775 1776 1777 1778 1779 1780 1781 1782 1783 1784 1785 1786 1787 1788 1789 1790 1791 1792 1793 1794 1795 1796 1797 1798 1799 1800 1801 1802 1803 1804 1805 1806 1807 1808 1809 1810 1811 1812 1813 1814 1815 1816 1817 1818 1819 1820 1821 1822 1823 1824 1825 1826 1827 1828 1829 1830 1831 1832 1833 1834 1835 1836 1837 1838 1839 1840 1841 1842 1843 1844 1845 1846 1847 1848 1849 1850 1851 1852 1853 1854 1855 1856 1857 1858 1859 1860 1861 1862 1863 1864 1865 1866 1867 1868 1869 1870 1871 1872 1873 1874 1875 1876 1877 1878 1879 1880 1881 1882 1883 1884 1885 1886 1887 1888 1889 1890 1891 1892 1893 1894 1895 1896 1897 1898 1899 1900 1901 1902 1903 1904 1905 1906 1907 1908 1909 1910 1911 1912 1913 1914 1915 1916 1917 1918 1919 1920 1921 1922 1923 1924 1925 1926 1927 1928 1929 1930 1931 1932 1933 1934 1935 1936 1937 1938 1939 1940 1941 1942 1943 1944 1945 1946 1947 1948 1949 1950 1951 1952 1953 1954 1955 1956 1957 1958 1959 1960 1961 1962 1963 1964 1965 1966 1967 1968 1969 1970 1971 1972 1973 1974 1975 1976 1977 1978 1979 1980 1981 1982 1983 1984 1985 1986 1987 1988 1989 1990 1991 1992 1993 1994 1995 1996 1997 1998 1999 2000 2001 2002 2003 2004 2005 2006 2007 2008 2009 2010 2011 2012 2013 2014 2015 2016 2017 2018 2019 2020 2021 2022 2023 2024 2025 2026 2027 2028 2029 2030 2031 2032 2033 2034 2035 2036 2037 2038 2039 2040 2041 2042 2043 2044 2045 2046 2047 2048 2049 2050 2051 2052 2053 2054 2055 2056 2057 2058 2059 2060 2061 2062 2063 2064 2065 2066 2067 2068 2069 2070 2071 2072 2073 2074 2075 2076 2077 2078 2079 2080 2081 2082 2083 2084 2085 2086 2087 2088 2089 2090 2091 2092 2093 2094 2095 2096 2097 2098 2099 2100 2101 2102 2103 2104 2105 2106 2107 2108 2109 2110 2111 2112 2113 2114 2115 2116 2117 2118 2119 2120 2121 2122 2123 2124 2125 2126 2127 2128 2129 2130 2131 2132 2133 2134 2135 2136 2137 2138 2139 2140 2141 2142 2143 2144 2145 2146 2147 2148 2149 2150 2151 2152 2153 2154 2155 2156 2157 2158 2159 2160 2161 2162 2163 2164 2165 2166 2167 2168 2169 2170 2171 2172 2173 2174 2175 2176 2177 2178 2179 2180 2181 2182 2183 2184 2185 2186 2187 2188 2189 2190 2191 2192 2193 2194 2195 2196 2197 2198 2199 2200 2201 2202 2203 2204 2205 2206 2207 2208 2209 2210 2211 2212 2213 2214 2215 2216 2217 2218 2219 2220 2221 2222 2223 2224 2225 2226 2227 2228 2229 2230 2231 2232 2233 2234 2235 2236 2237 2238 2239 2240 2241 2242 2243 2244 2245 2246 2247 2248 2249 2250 2251 2252 2253 2254 2255 2256 2257 2258 2259 2260 2261 2262 2263 2264 2265 2266 2267 2268 2269 2270 2271 2272 2273 2274 2275 2276 2277 2278 2279 2280 2281 2282 2283 2284 2285 2286 2287 2288 2289 2290 2291 2292 2293 2294 2295 2296 2297 2298 2299 2300 2301 2302 2303 2304 2305 2306 2307 2308 2309 2310 2311 2312 2313 2314 2315 2316 2317 2318 2319 2320 2321 2322 2323 2324 2325 2326 2327 2328 2329 2330 2331 2332 2333 2334 2335 2336 2337 2338 2339 2340 2341 2342 2343 2344 2345
|
# Makefile.in generated by automake 1.17 from Makefile.am.
# @configure_input@
# Copyright (C) 1994-2024 Free Software Foundation, Inc.
# This Makefile.in is free software; the Free Software Foundation
# gives unlimited permission to copy and/or distribute it,
# with or without modifications, as long as this notice is preserved.
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY, to the extent permitted by law; without
# even the implied warranty of MERCHANTABILITY or FITNESS FOR A
# PARTICULAR PURPOSE.
@SET_MAKE@
#
# AIDE (Advanced Intrusion Detection Environment)
#
# This program is free software; you can redistribute it and/or
# modify it under the terms of the GNU General Public License as
# published by the Free Software Foundation; either version 2 of the
# License, or (at your option) any later version.
#
# This program is distributed in the hope that it will be useful, but
# WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
# General Public License for more details.
#
# You should have received a copy of the GNU General Public License along
# with this program; if not, write to the Free Software Foundation, Inc.,
# 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
#
VPATH = @srcdir@
am__is_gnu_make = { \
if test -z '$(MAKELEVEL)'; then \
false; \
elif test -n '$(MAKE_HOST)'; then \
true; \
elif test -n '$(MAKE_VERSION)' && test -n '$(CURDIR)'; then \
true; \
else \
false; \
fi; \
}
am__make_running_with_option = \
case $${target_option-} in \
?) ;; \
*) echo "am__make_running_with_option: internal error: invalid" \
"target option '$${target_option-}' specified" >&2; \
exit 1;; \
esac; \
has_opt=no; \
sane_makeflags=$$MAKEFLAGS; \
if $(am__is_gnu_make); then \
sane_makeflags=$$MFLAGS; \
else \
case $$MAKEFLAGS in \
*\\[\ \ ]*) \
bs=\\; \
sane_makeflags=`printf '%s\n' "$$MAKEFLAGS" \
| sed "s/$$bs$$bs[$$bs $$bs ]*//g"`;; \
esac; \
fi; \
skip_next=no; \
strip_trailopt () \
{ \
flg=`printf '%s\n' "$$flg" | sed "s/$$1.*$$//"`; \
}; \
for flg in $$sane_makeflags; do \
test $$skip_next = yes && { skip_next=no; continue; }; \
case $$flg in \
*=*|--*) continue;; \
-*I) strip_trailopt 'I'; skip_next=yes;; \
-*I?*) strip_trailopt 'I';; \
-*O) strip_trailopt 'O'; skip_next=yes;; \
-*O?*) strip_trailopt 'O';; \
-*l) strip_trailopt 'l'; skip_next=yes;; \
-*l?*) strip_trailopt 'l';; \
-[dEDm]) skip_next=yes;; \
-[JT]) skip_next=yes;; \
esac; \
case $$flg in \
*$$target_option*) has_opt=yes; break;; \
esac; \
done; \
test $$has_opt = yes
am__make_dryrun = (target_option=n; $(am__make_running_with_option))
am__make_keepgoing = (target_option=k; $(am__make_running_with_option))
am__rm_f = rm -f $(am__rm_f_notfound)
am__rm_rf = rm -rf $(am__rm_f_notfound)
pkgdatadir = $(datadir)/@PACKAGE@
pkgincludedir = $(includedir)/@PACKAGE@
pkglibdir = $(libdir)/@PACKAGE@
pkglibexecdir = $(libexecdir)/@PACKAGE@
am__cd = CDPATH="$${ZSH_VERSION+.}$(PATH_SEPARATOR)" && cd
install_sh_DATA = $(install_sh) -c -m 644
install_sh_PROGRAM = $(install_sh) -c
install_sh_SCRIPT = $(install_sh) -c
INSTALL_HEADER = $(INSTALL_DATA)
transform = $(program_transform_name)
NORMAL_INSTALL = :
PRE_INSTALL = :
POST_INSTALL = :
NORMAL_UNINSTALL = :
PRE_UNINSTALL = :
POST_UNINSTALL = :
build_triplet = @build@
host_triplet = @host@
target_triplet = @target@
bin_PROGRAMS = aide$(EXEEXT)
@HAVE_E2FSATTRS_TRUE@am__append_1 = include/e2fsattrs.h src/e2fsattrs.c
@HAVE_CURL_TRUE@am__append_2 = include/fopen.h src/fopen.c
@HAVE_CHECK_TRUE@TESTS = check_aide$(EXEEXT)
@HAVE_CHECK_TRUE@check_PROGRAMS = check_aide$(EXEEXT)
subdir = .
ACLOCAL_M4 = $(top_srcdir)/aclocal.m4
am__aclocal_m4_deps = $(top_srcdir)/acinclude.m4 \
$(top_srcdir)/version.m4 $(top_srcdir)/configure.ac
am__configure_deps = $(am__aclocal_m4_deps) $(CONFIGURE_DEPENDENCIES) \
$(ACLOCAL_M4)
DIST_COMMON = $(srcdir)/Makefile.am $(top_srcdir)/configure \
$(am__configure_deps) $(am__DIST_COMMON)
am__CONFIG_DISTCLEAN_FILES = config.status config.cache config.log \
configure.lineno config.status.lineno
mkinstalldirs = $(install_sh) -d
CONFIG_HEADER = $(top_builddir)/include/config.h
CONFIG_CLEAN_FILES =
CONFIG_CLEAN_VPATH_FILES =
am__installdirs = "$(DESTDIR)$(bindir)" "$(DESTDIR)$(man1dir)" \
"$(DESTDIR)$(man5dir)"
PROGRAMS = $(bin_PROGRAMS)
am__aide_SOURCES_DIST = src/aide.c include/aide.h include/base64.h \
src/base64.c include/be.h src/be.c include/commandconf.h \
src/commandconf.c include/attributes.h src/attributes.c \
include/file.h src/file.c include/report.h src/report.c \
include/report_plain.h src/report_plain.c \
include/report_json.h src/report_json.c include/conf_ast.h \
src/conf_ast.c include/conf_eval.h src/conf_eval.c \
include/conf_lex.h src/conf_lex.l src/conf_yacc.h \
src/conf_yacc.y include/db.h src/db.c include/db_line.h \
include/db_config.h include/db_disk.h src/db_disk.c \
include/db_file.h src/db_file.c include/db_list.h \
src/db_list.c include/do_md.h src/do_md.c include/errorcodes.h \
include/gen_list.h src/gen_list.c src/getopt1.c \
include/getopt.h src/getopt.c include/hashsum.h src/hashsum.c \
include/rx_rule.h src/rx_rule.c include/list.h src/list.c \
include/log.h src/log.c include/locale-aide.h include/md.h \
src/md.c include/queue.h src/queue.c include/seltree_struct.h \
include/progress.h src/progress.c include/seltree.h \
src/seltree.c include/symboltable.h src/symboltable.c \
include/tree.h src/tree.c include/url.h src/url.c \
include/util.h src/util.c include/e2fsattrs.h src/e2fsattrs.c \
include/fopen.h src/fopen.c
am__dirstamp = $(am__leading_dot)dirstamp
@HAVE_E2FSATTRS_TRUE@am__objects_1 = src/aide-e2fsattrs.$(OBJEXT)
@HAVE_CURL_TRUE@am__objects_2 = src/aide-fopen.$(OBJEXT)
am_aide_OBJECTS = src/aide-aide.$(OBJEXT) src/aide-base64.$(OBJEXT) \
src/aide-be.$(OBJEXT) src/aide-commandconf.$(OBJEXT) \
src/aide-attributes.$(OBJEXT) src/aide-file.$(OBJEXT) \
src/aide-report.$(OBJEXT) src/aide-report_plain.$(OBJEXT) \
src/aide-report_json.$(OBJEXT) src/aide-conf_ast.$(OBJEXT) \
src/aide-conf_eval.$(OBJEXT) src/aide-conf_lex.$(OBJEXT) \
src/aide-conf_yacc.$(OBJEXT) src/aide-db.$(OBJEXT) \
src/aide-db_disk.$(OBJEXT) src/aide-db_file.$(OBJEXT) \
src/aide-db_list.$(OBJEXT) src/aide-do_md.$(OBJEXT) \
src/aide-gen_list.$(OBJEXT) src/aide-getopt1.$(OBJEXT) \
src/aide-getopt.$(OBJEXT) src/aide-hashsum.$(OBJEXT) \
src/aide-rx_rule.$(OBJEXT) src/aide-list.$(OBJEXT) \
src/aide-log.$(OBJEXT) src/aide-md.$(OBJEXT) \
src/aide-queue.$(OBJEXT) src/aide-progress.$(OBJEXT) \
src/aide-seltree.$(OBJEXT) src/aide-symboltable.$(OBJEXT) \
src/aide-tree.$(OBJEXT) src/aide-url.$(OBJEXT) \
src/aide-util.$(OBJEXT) $(am__objects_1) $(am__objects_2)
aide_OBJECTS = $(am_aide_OBJECTS)
am__DEPENDENCIES_1 =
aide_DEPENDENCIES = $(am__DEPENDENCIES_1) $(am__DEPENDENCIES_1) \
$(am__DEPENDENCIES_1) $(am__DEPENDENCIES_1) \
$(am__DEPENDENCIES_1) $(am__DEPENDENCIES_1) \
$(am__DEPENDENCIES_1) $(am__DEPENDENCIES_1) \
$(am__DEPENDENCIES_1) $(am__DEPENDENCIES_1) \
$(am__DEPENDENCIES_1) $(am__DEPENDENCIES_1)
aide_LINK = $(CCLD) $(aide_CFLAGS) $(CFLAGS) $(AM_LDFLAGS) $(LDFLAGS) \
-o $@
am__check_aide_SOURCES_DIST = tests/check_aide.c tests/check_aide.h \
tests/check_attributes.c src/attributes.c tests/check_base64.c \
src/base64.c tests/check_hashsum.c src/hashsum.c \
tests/check_seltree.c src/seltree.c tests/check_progress.c \
src/md.c src/file.c src/log.c src/util.c src/list.c src/tree.c \
src/rx_rule.c
@HAVE_CHECK_TRUE@am_check_aide_OBJECTS = \
@HAVE_CHECK_TRUE@ tests/check_aide-check_aide.$(OBJEXT) \
@HAVE_CHECK_TRUE@ tests/check_aide-check_attributes.$(OBJEXT) \
@HAVE_CHECK_TRUE@ src/check_aide-attributes.$(OBJEXT) \
@HAVE_CHECK_TRUE@ tests/check_aide-check_base64.$(OBJEXT) \
@HAVE_CHECK_TRUE@ src/check_aide-base64.$(OBJEXT) \
@HAVE_CHECK_TRUE@ tests/check_aide-check_hashsum.$(OBJEXT) \
@HAVE_CHECK_TRUE@ src/check_aide-hashsum.$(OBJEXT) \
@HAVE_CHECK_TRUE@ tests/check_aide-check_seltree.$(OBJEXT) \
@HAVE_CHECK_TRUE@ src/check_aide-seltree.$(OBJEXT) \
@HAVE_CHECK_TRUE@ tests/check_aide-check_progress.$(OBJEXT) \
@HAVE_CHECK_TRUE@ src/check_aide-md.$(OBJEXT) \
@HAVE_CHECK_TRUE@ src/check_aide-file.$(OBJEXT) \
@HAVE_CHECK_TRUE@ src/check_aide-log.$(OBJEXT) \
@HAVE_CHECK_TRUE@ src/check_aide-util.$(OBJEXT) \
@HAVE_CHECK_TRUE@ src/check_aide-list.$(OBJEXT) \
@HAVE_CHECK_TRUE@ src/check_aide-tree.$(OBJEXT) \
@HAVE_CHECK_TRUE@ src/check_aide-rx_rule.$(OBJEXT)
check_aide_OBJECTS = $(am_check_aide_OBJECTS)
@HAVE_CHECK_TRUE@check_aide_DEPENDENCIES = $(am__DEPENDENCIES_1) \
@HAVE_CHECK_TRUE@ $(am__DEPENDENCIES_1) $(am__DEPENDENCIES_1) \
@HAVE_CHECK_TRUE@ $(am__DEPENDENCIES_1)
check_aide_LINK = $(CCLD) $(check_aide_CFLAGS) $(CFLAGS) $(AM_LDFLAGS) \
$(LDFLAGS) -o $@
AM_V_P = $(am__v_P_@AM_V@)
am__v_P_ = $(am__v_P_@AM_DEFAULT_V@)
am__v_P_0 = false
am__v_P_1 = :
AM_V_GEN = $(am__v_GEN_@AM_V@)
am__v_GEN_ = $(am__v_GEN_@AM_DEFAULT_V@)
am__v_GEN_0 = @echo " GEN " $@;
am__v_GEN_1 =
AM_V_at = $(am__v_at_@AM_V@)
am__v_at_ = $(am__v_at_@AM_DEFAULT_V@)
am__v_at_0 = @
am__v_at_1 =
DEFAULT_INCLUDES = -I.@am__isrc@ -I$(top_builddir)/include
depcomp = $(SHELL) $(top_srcdir)/depcomp
am__maybe_remake_depfiles = depfiles
am__depfiles_remade = src/$(DEPDIR)/aide-aide.Po \
src/$(DEPDIR)/aide-attributes.Po src/$(DEPDIR)/aide-base64.Po \
src/$(DEPDIR)/aide-be.Po src/$(DEPDIR)/aide-commandconf.Po \
src/$(DEPDIR)/aide-conf_ast.Po src/$(DEPDIR)/aide-conf_eval.Po \
src/$(DEPDIR)/aide-conf_lex.Po src/$(DEPDIR)/aide-conf_yacc.Po \
src/$(DEPDIR)/aide-db.Po src/$(DEPDIR)/aide-db_disk.Po \
src/$(DEPDIR)/aide-db_file.Po src/$(DEPDIR)/aide-db_list.Po \
src/$(DEPDIR)/aide-do_md.Po src/$(DEPDIR)/aide-e2fsattrs.Po \
src/$(DEPDIR)/aide-file.Po src/$(DEPDIR)/aide-fopen.Po \
src/$(DEPDIR)/aide-gen_list.Po src/$(DEPDIR)/aide-getopt.Po \
src/$(DEPDIR)/aide-getopt1.Po src/$(DEPDIR)/aide-hashsum.Po \
src/$(DEPDIR)/aide-list.Po src/$(DEPDIR)/aide-log.Po \
src/$(DEPDIR)/aide-md.Po src/$(DEPDIR)/aide-progress.Po \
src/$(DEPDIR)/aide-queue.Po src/$(DEPDIR)/aide-report.Po \
src/$(DEPDIR)/aide-report_json.Po \
src/$(DEPDIR)/aide-report_plain.Po \
src/$(DEPDIR)/aide-rx_rule.Po src/$(DEPDIR)/aide-seltree.Po \
src/$(DEPDIR)/aide-symboltable.Po src/$(DEPDIR)/aide-tree.Po \
src/$(DEPDIR)/aide-url.Po src/$(DEPDIR)/aide-util.Po \
src/$(DEPDIR)/check_aide-attributes.Po \
src/$(DEPDIR)/check_aide-base64.Po \
src/$(DEPDIR)/check_aide-file.Po \
src/$(DEPDIR)/check_aide-hashsum.Po \
src/$(DEPDIR)/check_aide-list.Po \
src/$(DEPDIR)/check_aide-log.Po src/$(DEPDIR)/check_aide-md.Po \
src/$(DEPDIR)/check_aide-rx_rule.Po \
src/$(DEPDIR)/check_aide-seltree.Po \
src/$(DEPDIR)/check_aide-tree.Po \
src/$(DEPDIR)/check_aide-util.Po \
tests/$(DEPDIR)/check_aide-check_aide.Po \
tests/$(DEPDIR)/check_aide-check_attributes.Po \
tests/$(DEPDIR)/check_aide-check_base64.Po \
tests/$(DEPDIR)/check_aide-check_hashsum.Po \
tests/$(DEPDIR)/check_aide-check_progress.Po \
tests/$(DEPDIR)/check_aide-check_seltree.Po
am__mv = mv -f
AM_V_lt = $(am__v_lt_@AM_V@)
am__v_lt_ = $(am__v_lt_@AM_DEFAULT_V@)
am__v_lt_0 = --silent
am__v_lt_1 =
COMPILE = $(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) \
$(CPPFLAGS) $(AM_CFLAGS) $(CFLAGS)
AM_V_CC = $(am__v_CC_@AM_V@)
am__v_CC_ = $(am__v_CC_@AM_DEFAULT_V@)
am__v_CC_0 = @echo " CC " $@;
am__v_CC_1 =
CCLD = $(CC)
LINK = $(CCLD) $(AM_CFLAGS) $(CFLAGS) $(AM_LDFLAGS) $(LDFLAGS) -o $@
AM_V_CCLD = $(am__v_CCLD_@AM_V@)
am__v_CCLD_ = $(am__v_CCLD_@AM_DEFAULT_V@)
am__v_CCLD_0 = @echo " CCLD " $@;
am__v_CCLD_1 =
LEXCOMPILE = $(LEX) $(AM_LFLAGS) $(LFLAGS)
AM_V_LEX = $(am__v_LEX_@AM_V@)
am__v_LEX_ = $(am__v_LEX_@AM_DEFAULT_V@)
am__v_LEX_0 = @echo " LEX " $@;
am__v_LEX_1 =
YLWRAP = $(top_srcdir)/ylwrap
am__yacc_c2h = sed -e s/cc$$/hh/ -e s/cpp$$/hpp/ -e s/cxx$$/hxx/ \
-e s/c++$$/h++/ -e s/c$$/h/
YACCCOMPILE = $(YACC) $(AM_YFLAGS) $(YFLAGS)
AM_V_YACC = $(am__v_YACC_@AM_V@)
am__v_YACC_ = $(am__v_YACC_@AM_DEFAULT_V@)
am__v_YACC_0 = @echo " YACC " $@;
am__v_YACC_1 =
SOURCES = $(aide_SOURCES) $(check_aide_SOURCES)
DIST_SOURCES = $(am__aide_SOURCES_DIST) $(am__check_aide_SOURCES_DIST)
am__can_run_installinfo = \
case $$AM_UPDATE_INFO_DIR in \
n|no|NO) false;; \
*) (install-info --version) >/dev/null 2>&1;; \
esac
am__vpath_adj_setup = srcdirstrip=`echo "$(srcdir)" | sed 's|.|.|g'`;
am__vpath_adj = case $$p in \
$(srcdir)/*) f=`echo "$$p" | sed "s|^$$srcdirstrip/||"`;; \
*) f=$$p;; \
esac;
am__strip_dir = f=`echo $$p | sed -e 's|^.*/||'`;
am__install_max = 40
am__nobase_strip_setup = \
srcdirstrip=`echo "$(srcdir)" | sed 's/[].[^$$\\*|]/\\\\&/g'`
am__nobase_strip = \
for p in $$list; do echo "$$p"; done | sed -e "s|$$srcdirstrip/||"
am__nobase_list = $(am__nobase_strip_setup); \
for p in $$list; do echo "$$p $$p"; done | \
sed "s| $$srcdirstrip/| |;"' / .*\//!s/ .*/ ./; s,\( .*\)/[^/]*$$,\1,' | \
$(AWK) 'BEGIN { files["."] = "" } { files[$$2] = files[$$2] " " $$1; \
if (++n[$$2] == $(am__install_max)) \
{ print $$2, files[$$2]; n[$$2] = 0; files[$$2] = "" } } \
END { for (dir in files) print dir, files[dir] }'
am__base_list = \
sed '$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;$$!N;s/\n/ /g' | \
sed '$$!N;$$!N;$$!N;$$!N;s/\n/ /g'
am__uninstall_files_from_dir = { \
{ test ! -d "$$dir" && test ! -f "$$dir" && test ! -r "$$dir"; } \
|| { echo " ( cd '$$dir' && rm -f" $$files ")"; \
$(am__cd) "$$dir" && echo $$files | $(am__xargs_n) 40 $(am__rm_f); }; \
}
man1dir = $(mandir)/man1
man5dir = $(mandir)/man5
NROFF = nroff
MANS = $(man_MANS)
am__tagged_files = $(HEADERS) $(SOURCES) $(TAGS_FILES) $(LISP)
# Read a list of newline-separated strings from the standard input,
# and print each of them once, without duplicates. Input order is
# *not* preserved.
am__uniquify_input = $(AWK) '\
BEGIN { nonempty = 0; } \
{ items[$$0] = 1; nonempty = 1; } \
END { if (nonempty) { for (i in items) print i; }; } \
'
# Make sure the list of sources is unique. This is necessary because,
# e.g., the same source file might be shared among _SOURCES variables
# for different programs/libraries.
am__define_uniq_tagged_files = \
list='$(am__tagged_files)'; \
unique=`for i in $$list; do \
if test -f "$$i"; then echo $$i; else echo $(srcdir)/$$i; fi; \
done | $(am__uniquify_input)`
AM_RECURSIVE_TARGETS = cscope
am__tty_colors_dummy = \
mgn= red= grn= lgn= blu= brg= std=; \
am__color_tests=no
am__tty_colors = { \
$(am__tty_colors_dummy); \
if test "X$(AM_COLOR_TESTS)" = Xno; then \
am__color_tests=no; \
elif test "X$(AM_COLOR_TESTS)" = Xalways; then \
am__color_tests=yes; \
elif test "X$$TERM" != Xdumb && { test -t 1; } 2>/dev/null; then \
am__color_tests=yes; \
fi; \
if test $$am__color_tests = yes; then \
red='[0;31m'; \
grn='[0;32m'; \
lgn='[1;32m'; \
blu='[1;34m'; \
mgn='[0;35m'; \
brg='[1m'; \
std='[m'; \
fi; \
}
am__DIST_COMMON = $(srcdir)/Makefile.in \
$(top_srcdir)/include/config.h.in AUTHORS COPYING ChangeLog \
INSTALL NEWS README compile config.guess config.sub depcomp \
install-sh missing src/conf_lex.c src/conf_yacc.c \
src/conf_yacc.h ylwrap
DISTFILES = $(DIST_COMMON) $(DIST_SOURCES) $(TEXINFOS) $(EXTRA_DIST)
distdir = $(PACKAGE)-$(VERSION)
top_distdir = $(distdir)
am__remove_distdir = \
if test -d "$(distdir)"; then \
find "$(distdir)" -type d ! -perm -700 -exec chmod u+rwx {} ';' \
; rm -rf "$(distdir)" \
|| { sleep 5 && rm -rf "$(distdir)"; }; \
else :; fi
am__post_remove_distdir = $(am__remove_distdir)
DIST_ARCHIVES = $(distdir).tar.gz
GZIP_ENV = -9
DIST_TARGETS = dist-gzip
# Exists only to be overridden by the user if desired.
AM_DISTCHECK_DVI_TARGET = dvi
distuninstallcheck_listfiles = find . -type f -print
am__distuninstallcheck_listfiles = $(distuninstallcheck_listfiles) \
| sed 's|^\./|$(prefix)/|' | grep -v '$(infodir)/dir$$'
distcleancheck_listfiles = \
find . \( -type f -a \! \
\( -name .nfs* -o -name .smb* -o -name .__afs* \) \) -print
ACLOCAL = @ACLOCAL@
AIDE_DEFS = @AIDE_DEFS@
AMTAR = @AMTAR@
AM_DEFAULT_VERBOSITY = @AM_DEFAULT_VERBOSITY@
AUDIT_CFLAGS = @AUDIT_CFLAGS@
AUDIT_LIBS = @AUDIT_LIBS@
AUTOCONF = @AUTOCONF@
AUTOHEADER = @AUTOHEADER@
AUTOMAKE = @AUTOMAKE@
AWK = @AWK@
CAPABILITIES_CFLAGS = @CAPABILITIES_CFLAGS@
CAPABILITIES_LIBS = @CAPABILITIES_LIBS@
CC = @CC@
CCDEPMODE = @CCDEPMODE@
CFLAGS = @CFLAGS@
CHECK_CFLAGS = @CHECK_CFLAGS@
CHECK_LIBS = @CHECK_LIBS@
CPP = @CPP@
CPPFLAGS = @CPPFLAGS@
CSCOPE = @CSCOPE@
CTAGS = @CTAGS@
CURL_CFLAGS = @CURL_CFLAGS@
CURL_LIBS = @CURL_LIBS@
CYGPATH_W = @CYGPATH_W@
DEFS = @DEFS@
DEPDIR = @DEPDIR@
E2FSATTRS_CFLAGS = @E2FSATTRS_CFLAGS@
E2FSATTRS_LIBS = @E2FSATTRS_LIBS@
ECHO_C = @ECHO_C@
ECHO_N = @ECHO_N@
ECHO_T = @ECHO_T@
ETAGS = @ETAGS@
EXEEXT = @EXEEXT@
GCRYPT_CFLAGS = @GCRYPT_CFLAGS@
GCRYPT_LIBS = @GCRYPT_LIBS@
INSTALL = @INSTALL@
INSTALL_DATA = @INSTALL_DATA@
INSTALL_PROGRAM = @INSTALL_PROGRAM@
INSTALL_SCRIPT = @INSTALL_SCRIPT@
INSTALL_STRIP_PROGRAM = @INSTALL_STRIP_PROGRAM@
LD = @LD@
LDFLAGS = @LDFLAGS@
LEX = @LEX@
LEXLIB = @LEXLIB@
LEX_OUTPUT_ROOT = lex.yy
LIBOBJS = @LIBOBJS@
LIBS = @LIBS@
LTLIBOBJS = @LTLIBOBJS@
MAKEINFO = @MAKEINFO@
MKDIR_P = @MKDIR_P@
NETTLE_CFLAGS = @NETTLE_CFLAGS@
NETTLE_LIBS = @NETTLE_LIBS@
OBJEXT = @OBJEXT@
PACKAGE = @PACKAGE@
PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@
PACKAGE_NAME = @PACKAGE_NAME@
PACKAGE_STRING = @PACKAGE_STRING@
PACKAGE_TARNAME = @PACKAGE_TARNAME@
PACKAGE_URL = @PACKAGE_URL@
PACKAGE_VERSION = @PACKAGE_VERSION@
PATH_SEPARATOR = @PATH_SEPARATOR@
PCRE2_CFLAGS = @PCRE2_CFLAGS@
PCRE2_LIBS = @PCRE2_LIBS@
PKG_CONFIG = @PKG_CONFIG@
PKG_CONFIG_LIBDIR = @PKG_CONFIG_LIBDIR@
PKG_CONFIG_PATH = @PKG_CONFIG_PATH@
POSIX_ACL_CFLAGS = @POSIX_ACL_CFLAGS@
POSIX_ACL_LIBS = @POSIX_ACL_LIBS@
PTHREAD_CC = @PTHREAD_CC@
PTHREAD_CFLAGS = @PTHREAD_CFLAGS@
PTHREAD_CXX = @PTHREAD_CXX@
PTHREAD_LIBS = @PTHREAD_LIBS@
RANLIB = @RANLIB@
SED = @SED@
SELINUX_CFLAGS = @SELINUX_CFLAGS@
SELINUX_LIBS = @SELINUX_LIBS@
SET_MAKE = @SET_MAKE@
SHELL = @SHELL@
STRIP = @STRIP@
VERSION = @VERSION@
XATTR_CFLAGS = @XATTR_CFLAGS@
XATTR_LIBS = @XATTR_LIBS@
YACC = @YACC@
YFLAGS = @YFLAGS@
ZLIB_CFLAGS = @ZLIB_CFLAGS@
ZLIB_LIBS = @ZLIB_LIBS@
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@
am__include = @am__include@
am__leading_dot = @am__leading_dot@
am__quote = @am__quote@
am__rm_f_notfound = @am__rm_f_notfound@
am__tar = @am__tar@
am__untar = @am__untar@
am__xargs_n = @am__xargs_n@
ax_pthread_config = @ax_pthread_config@
bindir = @bindir@
build = @build@
build_alias = @build_alias@
build_cpu = @build_cpu@
build_os = @build_os@
build_vendor = @build_vendor@
builddir = @builddir@
datadir = @datadir@
datarootdir = @datarootdir@
docdir = @docdir@
dvidir = @dvidir@
exec_prefix = @exec_prefix@
host = @host@
host_alias = @host_alias@
host_cpu = @host_cpu@
host_os = @host_os@
host_vendor = @host_vendor@
htmldir = @htmldir@
includedir = @includedir@
infodir = @infodir@
install_sh = @install_sh@
libdir = @libdir@
libexecdir = @libexecdir@
localedir = @localedir@
localstatedir = @localstatedir@
mandir = @mandir@
mkdir_p = @mkdir_p@
oldincludedir = @oldincludedir@
pdfdir = @pdfdir@
prefix = @prefix@
program_transform_name = @program_transform_name@
psdir = @psdir@
runstatedir = @runstatedir@
sbindir = @sbindir@
sharedstatedir = @sharedstatedir@
srcdir = @srcdir@
sysconfdir = @sysconfdir@
target = @target@
target_alias = @target_alias@
target_cpu = @target_cpu@
target_os = @target_os@
target_vendor = @target_vendor@
top_build_prefix = @top_build_prefix@
top_builddir = @top_builddir@
top_srcdir = @top_srcdir@
BUILT_SOURCES = src/conf_yacc.h
AM_YFLAGS = -d
aide_SOURCES = src/aide.c include/aide.h include/base64.h src/base64.c \
include/be.h src/be.c include/commandconf.h src/commandconf.c \
include/attributes.h src/attributes.c include/file.h \
src/file.c include/report.h src/report.c \
include/report_plain.h src/report_plain.c \
include/report_json.h src/report_json.c include/conf_ast.h \
src/conf_ast.c include/conf_eval.h src/conf_eval.c \
include/conf_lex.h src/conf_lex.l src/conf_yacc.h \
src/conf_yacc.y include/db.h src/db.c include/db_line.h \
include/db_config.h include/db_disk.h src/db_disk.c \
include/db_file.h src/db_file.c include/db_list.h \
src/db_list.c include/do_md.h src/do_md.c include/errorcodes.h \
include/gen_list.h src/gen_list.c src/getopt1.c \
include/getopt.h src/getopt.c include/hashsum.h src/hashsum.c \
include/rx_rule.h src/rx_rule.c include/list.h src/list.c \
include/log.h src/log.c include/locale-aide.h include/md.h \
src/md.c include/queue.h src/queue.c include/seltree_struct.h \
include/progress.h src/progress.c include/seltree.h \
src/seltree.c include/symboltable.h src/symboltable.c \
include/tree.h src/tree.c include/url.h src/url.c \
include/util.h src/util.c $(am__append_1) $(am__append_2)
aide_CFLAGS = @AIDE_DEFS@ -I$(top_srcdir)/include -W -Wall -g \
${AUDIT_CFLAGS} \
${CAPABILITIES_CFLAGS} \
${CURL_CFLAGS} \
${E2FSATTRS_CFLAGS} \
${ELF_CFLAGS} \
${GCRYPT_CFLAGS} \
${NETTLE_CFLAGS} \
${PCRE2_CFLAGS} \
${POSIX_ACL_CFLAGS} \
${PTHREAD_CFLAGS} \
${SELINUX_CFLAGS} \
${XATTR_CFLAGS} \
${ZLIB_CFLAGS}
aide_LDADD = -lm \
${AUDIT_LIBS} \
${CAPABILITIES_LIBS} \
${CURL_LIBS} \
${E2FSATTRS_LIBS} \
${ELF_LIBS} \
${GCRYPT_LIBS} \
${NETTLE_LIBS} \
${PCRE2_LIBS} \
${POSIX_ACL_LIBS} \
${PTHREAD_LIBS} \
${SELINUX_LIBS} \
${XATTR_LIBS} \
${ZLIB_LIBS}
@HAVE_CHECK_TRUE@check_aide_SOURCES = tests/check_aide.c tests/check_aide.h \
@HAVE_CHECK_TRUE@ tests/check_attributes.c src/attributes.c \
@HAVE_CHECK_TRUE@ tests/check_base64.c src/base64.c \
@HAVE_CHECK_TRUE@ tests/check_hashsum.c src/hashsum.c \
@HAVE_CHECK_TRUE@ tests/check_seltree.c src/seltree.c \
@HAVE_CHECK_TRUE@ tests/check_progress.c \
@HAVE_CHECK_TRUE@ src/md.c src/file.c src/log.c src/util.c src/list.c src/tree.c src/rx_rule.c
@HAVE_CHECK_TRUE@check_aide_CFLAGS = -I$(top_srcdir)/include \
@HAVE_CHECK_TRUE@ $(CHECK_CFLAGS) \
@HAVE_CHECK_TRUE@ ${GCRYPT_CFLAGS} \
@HAVE_CHECK_TRUE@ ${NETTLE_CFLAGS} \
@HAVE_CHECK_TRUE@ ${PCRE2_CFLAGS}
@HAVE_CHECK_TRUE@check_aide_LDADD = -lm \
@HAVE_CHECK_TRUE@ $(CHECK_LIBS) \
@HAVE_CHECK_TRUE@ ${GCRYPT_LIBS} \
@HAVE_CHECK_TRUE@ ${NETTLE_LIBS} \
@HAVE_CHECK_TRUE@ ${PCRE2_LIBS}
CLEANFILES = src/conf_yacc.h src/conf_yacc.c src/conf_lex.c
man_MANS = doc/aide.1 doc/aide.conf.5
EXTRA_DIST = $(man_MANS) SECURITY.md
all: $(BUILT_SOURCES)
$(MAKE) $(AM_MAKEFLAGS) all-am
.SUFFIXES:
.SUFFIXES: .c .l .o .obj .y
am--refresh: Makefile
@:
$(srcdir)/Makefile.in: $(srcdir)/Makefile.am $(am__configure_deps)
@for dep in $?; do \
case '$(am__configure_deps)' in \
*$$dep*) \
echo ' cd $(srcdir) && $(AUTOMAKE) --gnu'; \
$(am__cd) $(srcdir) && $(AUTOMAKE) --gnu \
&& exit 0; \
exit 1;; \
esac; \
done; \
echo ' cd $(top_srcdir) && $(AUTOMAKE) --gnu Makefile'; \
$(am__cd) $(top_srcdir) && \
$(AUTOMAKE) --gnu Makefile
Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status
@case '$?' in \
*config.status*) \
echo ' $(SHELL) ./config.status'; \
$(SHELL) ./config.status;; \
*) \
echo ' cd $(top_builddir) && $(SHELL) ./config.status $@ $(am__maybe_remake_depfiles)'; \
cd $(top_builddir) && $(SHELL) ./config.status $@ $(am__maybe_remake_depfiles);; \
esac;
$(top_builddir)/config.status: $(top_srcdir)/configure $(CONFIG_STATUS_DEPENDENCIES)
$(SHELL) ./config.status --recheck
$(top_srcdir)/configure: $(am__configure_deps)
$(am__cd) $(srcdir) && $(AUTOCONF)
$(ACLOCAL_M4): $(am__aclocal_m4_deps)
$(am__cd) $(srcdir) && $(ACLOCAL) $(ACLOCAL_AMFLAGS)
$(am__aclocal_m4_deps):
include/config.h: include/stamp-h1
@test -f $@ || rm -f include/stamp-h1
@test -f $@ || $(MAKE) $(AM_MAKEFLAGS) include/stamp-h1
include/stamp-h1: $(top_srcdir)/include/config.h.in $(top_builddir)/config.status
$(AM_V_at)rm -f include/stamp-h1
$(AM_V_GEN)cd $(top_builddir) && $(SHELL) ./config.status include/config.h
$(top_srcdir)/include/config.h.in: $(am__configure_deps)
$(AM_V_GEN)($(am__cd) $(top_srcdir) && $(AUTOHEADER))
$(AM_V_at)rm -f include/stamp-h1
$(AM_V_at)touch $@
distclean-hdr:
-rm -f include/config.h include/stamp-h1
install-binPROGRAMS: $(bin_PROGRAMS)
@$(NORMAL_INSTALL)
@list='$(bin_PROGRAMS)'; test -n "$(bindir)" || list=; \
if test -n "$$list"; then \
echo " $(MKDIR_P) '$(DESTDIR)$(bindir)'"; \
$(MKDIR_P) "$(DESTDIR)$(bindir)" || exit 1; \
fi; \
for p in $$list; do echo "$$p $$p"; done | \
sed 's/$(EXEEXT)$$//' | \
while read p p1; do if test -f $$p \
; 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) $(INSTALL_PROGRAM) $$files '$(DESTDIR)$(bindir)$$dir'"; \
$(INSTALL_PROGRAM_ENV) $(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)" && $(am__rm_f) $$files
clean-binPROGRAMS:
-$(am__rm_f) $(bin_PROGRAMS)
clean-checkPROGRAMS:
-$(am__rm_f) $(check_PROGRAMS)
src/$(am__dirstamp):
@$(MKDIR_P) src
@: >>src/$(am__dirstamp)
src/$(DEPDIR)/$(am__dirstamp):
@$(MKDIR_P) src/$(DEPDIR)
@: >>src/$(DEPDIR)/$(am__dirstamp)
src/aide-aide.$(OBJEXT): src/$(am__dirstamp) \
src/$(DEPDIR)/$(am__dirstamp)
src/aide-base64.$(OBJEXT): src/$(am__dirstamp) \
src/$(DEPDIR)/$(am__dirstamp)
src/aide-be.$(OBJEXT): src/$(am__dirstamp) \
src/$(DEPDIR)/$(am__dirstamp)
src/aide-commandconf.$(OBJEXT): src/$(am__dirstamp) \
src/$(DEPDIR)/$(am__dirstamp)
src/aide-attributes.$(OBJEXT): src/$(am__dirstamp) \
src/$(DEPDIR)/$(am__dirstamp)
src/aide-file.$(OBJEXT): src/$(am__dirstamp) \
src/$(DEPDIR)/$(am__dirstamp)
src/aide-report.$(OBJEXT): src/$(am__dirstamp) \
src/$(DEPDIR)/$(am__dirstamp)
src/aide-report_plain.$(OBJEXT): src/$(am__dirstamp) \
src/$(DEPDIR)/$(am__dirstamp)
src/aide-report_json.$(OBJEXT): src/$(am__dirstamp) \
src/$(DEPDIR)/$(am__dirstamp)
src/aide-conf_ast.$(OBJEXT): src/$(am__dirstamp) \
src/$(DEPDIR)/$(am__dirstamp)
src/aide-conf_eval.$(OBJEXT): src/$(am__dirstamp) \
src/$(DEPDIR)/$(am__dirstamp)
src/aide-conf_lex.$(OBJEXT): src/$(am__dirstamp) \
src/$(DEPDIR)/$(am__dirstamp)
src/conf_yacc.h: src/conf_yacc.c
@if test ! -f $@; then rm -f src/conf_yacc.c; else :; fi
@if test ! -f $@; then $(MAKE) $(AM_MAKEFLAGS) src/conf_yacc.c; else :; fi
src/aide-conf_yacc.$(OBJEXT): src/$(am__dirstamp) \
src/$(DEPDIR)/$(am__dirstamp)
src/aide-db.$(OBJEXT): src/$(am__dirstamp) \
src/$(DEPDIR)/$(am__dirstamp)
src/aide-db_disk.$(OBJEXT): src/$(am__dirstamp) \
src/$(DEPDIR)/$(am__dirstamp)
src/aide-db_file.$(OBJEXT): src/$(am__dirstamp) \
src/$(DEPDIR)/$(am__dirstamp)
src/aide-db_list.$(OBJEXT): src/$(am__dirstamp) \
src/$(DEPDIR)/$(am__dirstamp)
src/aide-do_md.$(OBJEXT): src/$(am__dirstamp) \
src/$(DEPDIR)/$(am__dirstamp)
src/aide-gen_list.$(OBJEXT): src/$(am__dirstamp) \
src/$(DEPDIR)/$(am__dirstamp)
src/aide-getopt1.$(OBJEXT): src/$(am__dirstamp) \
src/$(DEPDIR)/$(am__dirstamp)
src/aide-getopt.$(OBJEXT): src/$(am__dirstamp) \
src/$(DEPDIR)/$(am__dirstamp)
src/aide-hashsum.$(OBJEXT): src/$(am__dirstamp) \
src/$(DEPDIR)/$(am__dirstamp)
src/aide-rx_rule.$(OBJEXT): src/$(am__dirstamp) \
src/$(DEPDIR)/$(am__dirstamp)
src/aide-list.$(OBJEXT): src/$(am__dirstamp) \
src/$(DEPDIR)/$(am__dirstamp)
src/aide-log.$(OBJEXT): src/$(am__dirstamp) \
src/$(DEPDIR)/$(am__dirstamp)
src/aide-md.$(OBJEXT): src/$(am__dirstamp) \
src/$(DEPDIR)/$(am__dirstamp)
src/aide-queue.$(OBJEXT): src/$(am__dirstamp) \
src/$(DEPDIR)/$(am__dirstamp)
src/aide-progress.$(OBJEXT): src/$(am__dirstamp) \
src/$(DEPDIR)/$(am__dirstamp)
src/aide-seltree.$(OBJEXT): src/$(am__dirstamp) \
src/$(DEPDIR)/$(am__dirstamp)
src/aide-symboltable.$(OBJEXT): src/$(am__dirstamp) \
src/$(DEPDIR)/$(am__dirstamp)
src/aide-tree.$(OBJEXT): src/$(am__dirstamp) \
src/$(DEPDIR)/$(am__dirstamp)
src/aide-url.$(OBJEXT): src/$(am__dirstamp) \
src/$(DEPDIR)/$(am__dirstamp)
src/aide-util.$(OBJEXT): src/$(am__dirstamp) \
src/$(DEPDIR)/$(am__dirstamp)
src/aide-e2fsattrs.$(OBJEXT): src/$(am__dirstamp) \
src/$(DEPDIR)/$(am__dirstamp)
src/aide-fopen.$(OBJEXT): src/$(am__dirstamp) \
src/$(DEPDIR)/$(am__dirstamp)
aide$(EXEEXT): $(aide_OBJECTS) $(aide_DEPENDENCIES) $(EXTRA_aide_DEPENDENCIES)
@rm -f aide$(EXEEXT)
$(AM_V_CCLD)$(aide_LINK) $(aide_OBJECTS) $(aide_LDADD) $(LIBS)
tests/$(am__dirstamp):
@$(MKDIR_P) tests
@: >>tests/$(am__dirstamp)
tests/$(DEPDIR)/$(am__dirstamp):
@$(MKDIR_P) tests/$(DEPDIR)
@: >>tests/$(DEPDIR)/$(am__dirstamp)
tests/check_aide-check_aide.$(OBJEXT): tests/$(am__dirstamp) \
tests/$(DEPDIR)/$(am__dirstamp)
tests/check_aide-check_attributes.$(OBJEXT): tests/$(am__dirstamp) \
tests/$(DEPDIR)/$(am__dirstamp)
src/check_aide-attributes.$(OBJEXT): src/$(am__dirstamp) \
src/$(DEPDIR)/$(am__dirstamp)
tests/check_aide-check_base64.$(OBJEXT): tests/$(am__dirstamp) \
tests/$(DEPDIR)/$(am__dirstamp)
src/check_aide-base64.$(OBJEXT): src/$(am__dirstamp) \
src/$(DEPDIR)/$(am__dirstamp)
tests/check_aide-check_hashsum.$(OBJEXT): tests/$(am__dirstamp) \
tests/$(DEPDIR)/$(am__dirstamp)
src/check_aide-hashsum.$(OBJEXT): src/$(am__dirstamp) \
src/$(DEPDIR)/$(am__dirstamp)
tests/check_aide-check_seltree.$(OBJEXT): tests/$(am__dirstamp) \
tests/$(DEPDIR)/$(am__dirstamp)
src/check_aide-seltree.$(OBJEXT): src/$(am__dirstamp) \
src/$(DEPDIR)/$(am__dirstamp)
tests/check_aide-check_progress.$(OBJEXT): tests/$(am__dirstamp) \
tests/$(DEPDIR)/$(am__dirstamp)
src/check_aide-md.$(OBJEXT): src/$(am__dirstamp) \
src/$(DEPDIR)/$(am__dirstamp)
src/check_aide-file.$(OBJEXT): src/$(am__dirstamp) \
src/$(DEPDIR)/$(am__dirstamp)
src/check_aide-log.$(OBJEXT): src/$(am__dirstamp) \
src/$(DEPDIR)/$(am__dirstamp)
src/check_aide-util.$(OBJEXT): src/$(am__dirstamp) \
src/$(DEPDIR)/$(am__dirstamp)
src/check_aide-list.$(OBJEXT): src/$(am__dirstamp) \
src/$(DEPDIR)/$(am__dirstamp)
src/check_aide-tree.$(OBJEXT): src/$(am__dirstamp) \
src/$(DEPDIR)/$(am__dirstamp)
src/check_aide-rx_rule.$(OBJEXT): src/$(am__dirstamp) \
src/$(DEPDIR)/$(am__dirstamp)
check_aide$(EXEEXT): $(check_aide_OBJECTS) $(check_aide_DEPENDENCIES) $(EXTRA_check_aide_DEPENDENCIES)
@rm -f check_aide$(EXEEXT)
$(AM_V_CCLD)$(check_aide_LINK) $(check_aide_OBJECTS) $(check_aide_LDADD) $(LIBS)
mostlyclean-compile:
-rm -f *.$(OBJEXT)
-rm -f src/*.$(OBJEXT)
-rm -f tests/*.$(OBJEXT)
distclean-compile:
-rm -f *.tab.c
@AMDEP_TRUE@@am__include@ @am__quote@src/$(DEPDIR)/aide-aide.Po@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@src/$(DEPDIR)/aide-attributes.Po@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@src/$(DEPDIR)/aide-base64.Po@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@src/$(DEPDIR)/aide-be.Po@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@src/$(DEPDIR)/aide-commandconf.Po@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@src/$(DEPDIR)/aide-conf_ast.Po@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@src/$(DEPDIR)/aide-conf_eval.Po@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@src/$(DEPDIR)/aide-conf_lex.Po@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@src/$(DEPDIR)/aide-conf_yacc.Po@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@src/$(DEPDIR)/aide-db.Po@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@src/$(DEPDIR)/aide-db_disk.Po@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@src/$(DEPDIR)/aide-db_file.Po@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@src/$(DEPDIR)/aide-db_list.Po@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@src/$(DEPDIR)/aide-do_md.Po@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@src/$(DEPDIR)/aide-e2fsattrs.Po@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@src/$(DEPDIR)/aide-file.Po@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@src/$(DEPDIR)/aide-fopen.Po@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@src/$(DEPDIR)/aide-gen_list.Po@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@src/$(DEPDIR)/aide-getopt.Po@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@src/$(DEPDIR)/aide-getopt1.Po@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@src/$(DEPDIR)/aide-hashsum.Po@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@src/$(DEPDIR)/aide-list.Po@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@src/$(DEPDIR)/aide-log.Po@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@src/$(DEPDIR)/aide-md.Po@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@src/$(DEPDIR)/aide-progress.Po@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@src/$(DEPDIR)/aide-queue.Po@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@src/$(DEPDIR)/aide-report.Po@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@src/$(DEPDIR)/aide-report_json.Po@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@src/$(DEPDIR)/aide-report_plain.Po@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@src/$(DEPDIR)/aide-rx_rule.Po@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@src/$(DEPDIR)/aide-seltree.Po@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@src/$(DEPDIR)/aide-symboltable.Po@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@src/$(DEPDIR)/aide-tree.Po@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@src/$(DEPDIR)/aide-url.Po@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@src/$(DEPDIR)/aide-util.Po@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@src/$(DEPDIR)/check_aide-attributes.Po@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@src/$(DEPDIR)/check_aide-base64.Po@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@src/$(DEPDIR)/check_aide-file.Po@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@src/$(DEPDIR)/check_aide-hashsum.Po@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@src/$(DEPDIR)/check_aide-list.Po@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@src/$(DEPDIR)/check_aide-log.Po@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@src/$(DEPDIR)/check_aide-md.Po@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@src/$(DEPDIR)/check_aide-rx_rule.Po@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@src/$(DEPDIR)/check_aide-seltree.Po@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@src/$(DEPDIR)/check_aide-tree.Po@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@src/$(DEPDIR)/check_aide-util.Po@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@tests/$(DEPDIR)/check_aide-check_aide.Po@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@tests/$(DEPDIR)/check_aide-check_attributes.Po@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@tests/$(DEPDIR)/check_aide-check_base64.Po@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@tests/$(DEPDIR)/check_aide-check_hashsum.Po@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@tests/$(DEPDIR)/check_aide-check_progress.Po@am__quote@ # am--include-marker
@AMDEP_TRUE@@am__include@ @am__quote@tests/$(DEPDIR)/check_aide-check_seltree.Po@am__quote@ # am--include-marker
$(am__depfiles_remade):
@$(MKDIR_P) $(@D)
@: >>$@
am--depfiles: $(am__depfiles_remade)
.c.o:
@am__fastdepCC_TRUE@ $(AM_V_CC)depbase=`echo $@ | sed 's|[^/]*$$|$(DEPDIR)/&|;s|\.o$$||'`;\
@am__fastdepCC_TRUE@ $(COMPILE) -MT $@ -MD -MP -MF $$depbase.Tpo -c -o $@ $< &&\
@am__fastdepCC_TRUE@ $(am__mv) $$depbase.Tpo $$depbase.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='$<' object='$@' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(COMPILE) -c -o $@ $<
.c.obj:
@am__fastdepCC_TRUE@ $(AM_V_CC)depbase=`echo $@ | sed 's|[^/]*$$|$(DEPDIR)/&|;s|\.obj$$||'`;\
@am__fastdepCC_TRUE@ $(COMPILE) -MT $@ -MD -MP -MF $$depbase.Tpo -c -o $@ `$(CYGPATH_W) '$<'` &&\
@am__fastdepCC_TRUE@ $(am__mv) $$depbase.Tpo $$depbase.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='$<' object='$@' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(COMPILE) -c -o $@ `$(CYGPATH_W) '$<'`
src/aide-aide.o: src/aide.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(aide_CFLAGS) $(CFLAGS) -MT src/aide-aide.o -MD -MP -MF src/$(DEPDIR)/aide-aide.Tpo -c -o src/aide-aide.o `test -f 'src/aide.c' || echo '$(srcdir)/'`src/aide.c
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) src/$(DEPDIR)/aide-aide.Tpo src/$(DEPDIR)/aide-aide.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='src/aide.c' object='src/aide-aide.o' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(aide_CFLAGS) $(CFLAGS) -c -o src/aide-aide.o `test -f 'src/aide.c' || echo '$(srcdir)/'`src/aide.c
src/aide-aide.obj: src/aide.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(aide_CFLAGS) $(CFLAGS) -MT src/aide-aide.obj -MD -MP -MF src/$(DEPDIR)/aide-aide.Tpo -c -o src/aide-aide.obj `if test -f 'src/aide.c'; then $(CYGPATH_W) 'src/aide.c'; else $(CYGPATH_W) '$(srcdir)/src/aide.c'; fi`
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) src/$(DEPDIR)/aide-aide.Tpo src/$(DEPDIR)/aide-aide.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='src/aide.c' object='src/aide-aide.obj' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(aide_CFLAGS) $(CFLAGS) -c -o src/aide-aide.obj `if test -f 'src/aide.c'; then $(CYGPATH_W) 'src/aide.c'; else $(CYGPATH_W) '$(srcdir)/src/aide.c'; fi`
src/aide-base64.o: src/base64.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(aide_CFLAGS) $(CFLAGS) -MT src/aide-base64.o -MD -MP -MF src/$(DEPDIR)/aide-base64.Tpo -c -o src/aide-base64.o `test -f 'src/base64.c' || echo '$(srcdir)/'`src/base64.c
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) src/$(DEPDIR)/aide-base64.Tpo src/$(DEPDIR)/aide-base64.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='src/base64.c' object='src/aide-base64.o' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(aide_CFLAGS) $(CFLAGS) -c -o src/aide-base64.o `test -f 'src/base64.c' || echo '$(srcdir)/'`src/base64.c
src/aide-base64.obj: src/base64.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(aide_CFLAGS) $(CFLAGS) -MT src/aide-base64.obj -MD -MP -MF src/$(DEPDIR)/aide-base64.Tpo -c -o src/aide-base64.obj `if test -f 'src/base64.c'; then $(CYGPATH_W) 'src/base64.c'; else $(CYGPATH_W) '$(srcdir)/src/base64.c'; fi`
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) src/$(DEPDIR)/aide-base64.Tpo src/$(DEPDIR)/aide-base64.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='src/base64.c' object='src/aide-base64.obj' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(aide_CFLAGS) $(CFLAGS) -c -o src/aide-base64.obj `if test -f 'src/base64.c'; then $(CYGPATH_W) 'src/base64.c'; else $(CYGPATH_W) '$(srcdir)/src/base64.c'; fi`
src/aide-be.o: src/be.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(aide_CFLAGS) $(CFLAGS) -MT src/aide-be.o -MD -MP -MF src/$(DEPDIR)/aide-be.Tpo -c -o src/aide-be.o `test -f 'src/be.c' || echo '$(srcdir)/'`src/be.c
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) src/$(DEPDIR)/aide-be.Tpo src/$(DEPDIR)/aide-be.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='src/be.c' object='src/aide-be.o' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(aide_CFLAGS) $(CFLAGS) -c -o src/aide-be.o `test -f 'src/be.c' || echo '$(srcdir)/'`src/be.c
src/aide-be.obj: src/be.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(aide_CFLAGS) $(CFLAGS) -MT src/aide-be.obj -MD -MP -MF src/$(DEPDIR)/aide-be.Tpo -c -o src/aide-be.obj `if test -f 'src/be.c'; then $(CYGPATH_W) 'src/be.c'; else $(CYGPATH_W) '$(srcdir)/src/be.c'; fi`
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) src/$(DEPDIR)/aide-be.Tpo src/$(DEPDIR)/aide-be.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='src/be.c' object='src/aide-be.obj' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(aide_CFLAGS) $(CFLAGS) -c -o src/aide-be.obj `if test -f 'src/be.c'; then $(CYGPATH_W) 'src/be.c'; else $(CYGPATH_W) '$(srcdir)/src/be.c'; fi`
src/aide-commandconf.o: src/commandconf.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(aide_CFLAGS) $(CFLAGS) -MT src/aide-commandconf.o -MD -MP -MF src/$(DEPDIR)/aide-commandconf.Tpo -c -o src/aide-commandconf.o `test -f 'src/commandconf.c' || echo '$(srcdir)/'`src/commandconf.c
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) src/$(DEPDIR)/aide-commandconf.Tpo src/$(DEPDIR)/aide-commandconf.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='src/commandconf.c' object='src/aide-commandconf.o' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(aide_CFLAGS) $(CFLAGS) -c -o src/aide-commandconf.o `test -f 'src/commandconf.c' || echo '$(srcdir)/'`src/commandconf.c
src/aide-commandconf.obj: src/commandconf.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(aide_CFLAGS) $(CFLAGS) -MT src/aide-commandconf.obj -MD -MP -MF src/$(DEPDIR)/aide-commandconf.Tpo -c -o src/aide-commandconf.obj `if test -f 'src/commandconf.c'; then $(CYGPATH_W) 'src/commandconf.c'; else $(CYGPATH_W) '$(srcdir)/src/commandconf.c'; fi`
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) src/$(DEPDIR)/aide-commandconf.Tpo src/$(DEPDIR)/aide-commandconf.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='src/commandconf.c' object='src/aide-commandconf.obj' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(aide_CFLAGS) $(CFLAGS) -c -o src/aide-commandconf.obj `if test -f 'src/commandconf.c'; then $(CYGPATH_W) 'src/commandconf.c'; else $(CYGPATH_W) '$(srcdir)/src/commandconf.c'; fi`
src/aide-attributes.o: src/attributes.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(aide_CFLAGS) $(CFLAGS) -MT src/aide-attributes.o -MD -MP -MF src/$(DEPDIR)/aide-attributes.Tpo -c -o src/aide-attributes.o `test -f 'src/attributes.c' || echo '$(srcdir)/'`src/attributes.c
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) src/$(DEPDIR)/aide-attributes.Tpo src/$(DEPDIR)/aide-attributes.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='src/attributes.c' object='src/aide-attributes.o' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(aide_CFLAGS) $(CFLAGS) -c -o src/aide-attributes.o `test -f 'src/attributes.c' || echo '$(srcdir)/'`src/attributes.c
src/aide-attributes.obj: src/attributes.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(aide_CFLAGS) $(CFLAGS) -MT src/aide-attributes.obj -MD -MP -MF src/$(DEPDIR)/aide-attributes.Tpo -c -o src/aide-attributes.obj `if test -f 'src/attributes.c'; then $(CYGPATH_W) 'src/attributes.c'; else $(CYGPATH_W) '$(srcdir)/src/attributes.c'; fi`
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) src/$(DEPDIR)/aide-attributes.Tpo src/$(DEPDIR)/aide-attributes.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='src/attributes.c' object='src/aide-attributes.obj' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(aide_CFLAGS) $(CFLAGS) -c -o src/aide-attributes.obj `if test -f 'src/attributes.c'; then $(CYGPATH_W) 'src/attributes.c'; else $(CYGPATH_W) '$(srcdir)/src/attributes.c'; fi`
src/aide-file.o: src/file.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(aide_CFLAGS) $(CFLAGS) -MT src/aide-file.o -MD -MP -MF src/$(DEPDIR)/aide-file.Tpo -c -o src/aide-file.o `test -f 'src/file.c' || echo '$(srcdir)/'`src/file.c
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) src/$(DEPDIR)/aide-file.Tpo src/$(DEPDIR)/aide-file.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='src/file.c' object='src/aide-file.o' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(aide_CFLAGS) $(CFLAGS) -c -o src/aide-file.o `test -f 'src/file.c' || echo '$(srcdir)/'`src/file.c
src/aide-file.obj: src/file.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(aide_CFLAGS) $(CFLAGS) -MT src/aide-file.obj -MD -MP -MF src/$(DEPDIR)/aide-file.Tpo -c -o src/aide-file.obj `if test -f 'src/file.c'; then $(CYGPATH_W) 'src/file.c'; else $(CYGPATH_W) '$(srcdir)/src/file.c'; fi`
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) src/$(DEPDIR)/aide-file.Tpo src/$(DEPDIR)/aide-file.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='src/file.c' object='src/aide-file.obj' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(aide_CFLAGS) $(CFLAGS) -c -o src/aide-file.obj `if test -f 'src/file.c'; then $(CYGPATH_W) 'src/file.c'; else $(CYGPATH_W) '$(srcdir)/src/file.c'; fi`
src/aide-report.o: src/report.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(aide_CFLAGS) $(CFLAGS) -MT src/aide-report.o -MD -MP -MF src/$(DEPDIR)/aide-report.Tpo -c -o src/aide-report.o `test -f 'src/report.c' || echo '$(srcdir)/'`src/report.c
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) src/$(DEPDIR)/aide-report.Tpo src/$(DEPDIR)/aide-report.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='src/report.c' object='src/aide-report.o' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(aide_CFLAGS) $(CFLAGS) -c -o src/aide-report.o `test -f 'src/report.c' || echo '$(srcdir)/'`src/report.c
src/aide-report.obj: src/report.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(aide_CFLAGS) $(CFLAGS) -MT src/aide-report.obj -MD -MP -MF src/$(DEPDIR)/aide-report.Tpo -c -o src/aide-report.obj `if test -f 'src/report.c'; then $(CYGPATH_W) 'src/report.c'; else $(CYGPATH_W) '$(srcdir)/src/report.c'; fi`
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) src/$(DEPDIR)/aide-report.Tpo src/$(DEPDIR)/aide-report.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='src/report.c' object='src/aide-report.obj' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(aide_CFLAGS) $(CFLAGS) -c -o src/aide-report.obj `if test -f 'src/report.c'; then $(CYGPATH_W) 'src/report.c'; else $(CYGPATH_W) '$(srcdir)/src/report.c'; fi`
src/aide-report_plain.o: src/report_plain.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(aide_CFLAGS) $(CFLAGS) -MT src/aide-report_plain.o -MD -MP -MF src/$(DEPDIR)/aide-report_plain.Tpo -c -o src/aide-report_plain.o `test -f 'src/report_plain.c' || echo '$(srcdir)/'`src/report_plain.c
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) src/$(DEPDIR)/aide-report_plain.Tpo src/$(DEPDIR)/aide-report_plain.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='src/report_plain.c' object='src/aide-report_plain.o' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(aide_CFLAGS) $(CFLAGS) -c -o src/aide-report_plain.o `test -f 'src/report_plain.c' || echo '$(srcdir)/'`src/report_plain.c
src/aide-report_plain.obj: src/report_plain.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(aide_CFLAGS) $(CFLAGS) -MT src/aide-report_plain.obj -MD -MP -MF src/$(DEPDIR)/aide-report_plain.Tpo -c -o src/aide-report_plain.obj `if test -f 'src/report_plain.c'; then $(CYGPATH_W) 'src/report_plain.c'; else $(CYGPATH_W) '$(srcdir)/src/report_plain.c'; fi`
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) src/$(DEPDIR)/aide-report_plain.Tpo src/$(DEPDIR)/aide-report_plain.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='src/report_plain.c' object='src/aide-report_plain.obj' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(aide_CFLAGS) $(CFLAGS) -c -o src/aide-report_plain.obj `if test -f 'src/report_plain.c'; then $(CYGPATH_W) 'src/report_plain.c'; else $(CYGPATH_W) '$(srcdir)/src/report_plain.c'; fi`
src/aide-report_json.o: src/report_json.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(aide_CFLAGS) $(CFLAGS) -MT src/aide-report_json.o -MD -MP -MF src/$(DEPDIR)/aide-report_json.Tpo -c -o src/aide-report_json.o `test -f 'src/report_json.c' || echo '$(srcdir)/'`src/report_json.c
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) src/$(DEPDIR)/aide-report_json.Tpo src/$(DEPDIR)/aide-report_json.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='src/report_json.c' object='src/aide-report_json.o' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(aide_CFLAGS) $(CFLAGS) -c -o src/aide-report_json.o `test -f 'src/report_json.c' || echo '$(srcdir)/'`src/report_json.c
src/aide-report_json.obj: src/report_json.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(aide_CFLAGS) $(CFLAGS) -MT src/aide-report_json.obj -MD -MP -MF src/$(DEPDIR)/aide-report_json.Tpo -c -o src/aide-report_json.obj `if test -f 'src/report_json.c'; then $(CYGPATH_W) 'src/report_json.c'; else $(CYGPATH_W) '$(srcdir)/src/report_json.c'; fi`
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) src/$(DEPDIR)/aide-report_json.Tpo src/$(DEPDIR)/aide-report_json.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='src/report_json.c' object='src/aide-report_json.obj' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(aide_CFLAGS) $(CFLAGS) -c -o src/aide-report_json.obj `if test -f 'src/report_json.c'; then $(CYGPATH_W) 'src/report_json.c'; else $(CYGPATH_W) '$(srcdir)/src/report_json.c'; fi`
src/aide-conf_ast.o: src/conf_ast.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(aide_CFLAGS) $(CFLAGS) -MT src/aide-conf_ast.o -MD -MP -MF src/$(DEPDIR)/aide-conf_ast.Tpo -c -o src/aide-conf_ast.o `test -f 'src/conf_ast.c' || echo '$(srcdir)/'`src/conf_ast.c
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) src/$(DEPDIR)/aide-conf_ast.Tpo src/$(DEPDIR)/aide-conf_ast.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='src/conf_ast.c' object='src/aide-conf_ast.o' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(aide_CFLAGS) $(CFLAGS) -c -o src/aide-conf_ast.o `test -f 'src/conf_ast.c' || echo '$(srcdir)/'`src/conf_ast.c
src/aide-conf_ast.obj: src/conf_ast.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(aide_CFLAGS) $(CFLAGS) -MT src/aide-conf_ast.obj -MD -MP -MF src/$(DEPDIR)/aide-conf_ast.Tpo -c -o src/aide-conf_ast.obj `if test -f 'src/conf_ast.c'; then $(CYGPATH_W) 'src/conf_ast.c'; else $(CYGPATH_W) '$(srcdir)/src/conf_ast.c'; fi`
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) src/$(DEPDIR)/aide-conf_ast.Tpo src/$(DEPDIR)/aide-conf_ast.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='src/conf_ast.c' object='src/aide-conf_ast.obj' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(aide_CFLAGS) $(CFLAGS) -c -o src/aide-conf_ast.obj `if test -f 'src/conf_ast.c'; then $(CYGPATH_W) 'src/conf_ast.c'; else $(CYGPATH_W) '$(srcdir)/src/conf_ast.c'; fi`
src/aide-conf_eval.o: src/conf_eval.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(aide_CFLAGS) $(CFLAGS) -MT src/aide-conf_eval.o -MD -MP -MF src/$(DEPDIR)/aide-conf_eval.Tpo -c -o src/aide-conf_eval.o `test -f 'src/conf_eval.c' || echo '$(srcdir)/'`src/conf_eval.c
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) src/$(DEPDIR)/aide-conf_eval.Tpo src/$(DEPDIR)/aide-conf_eval.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='src/conf_eval.c' object='src/aide-conf_eval.o' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(aide_CFLAGS) $(CFLAGS) -c -o src/aide-conf_eval.o `test -f 'src/conf_eval.c' || echo '$(srcdir)/'`src/conf_eval.c
src/aide-conf_eval.obj: src/conf_eval.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(aide_CFLAGS) $(CFLAGS) -MT src/aide-conf_eval.obj -MD -MP -MF src/$(DEPDIR)/aide-conf_eval.Tpo -c -o src/aide-conf_eval.obj `if test -f 'src/conf_eval.c'; then $(CYGPATH_W) 'src/conf_eval.c'; else $(CYGPATH_W) '$(srcdir)/src/conf_eval.c'; fi`
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) src/$(DEPDIR)/aide-conf_eval.Tpo src/$(DEPDIR)/aide-conf_eval.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='src/conf_eval.c' object='src/aide-conf_eval.obj' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(aide_CFLAGS) $(CFLAGS) -c -o src/aide-conf_eval.obj `if test -f 'src/conf_eval.c'; then $(CYGPATH_W) 'src/conf_eval.c'; else $(CYGPATH_W) '$(srcdir)/src/conf_eval.c'; fi`
src/aide-conf_lex.o: src/conf_lex.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(aide_CFLAGS) $(CFLAGS) -MT src/aide-conf_lex.o -MD -MP -MF src/$(DEPDIR)/aide-conf_lex.Tpo -c -o src/aide-conf_lex.o `test -f 'src/conf_lex.c' || echo '$(srcdir)/'`src/conf_lex.c
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) src/$(DEPDIR)/aide-conf_lex.Tpo src/$(DEPDIR)/aide-conf_lex.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='src/conf_lex.c' object='src/aide-conf_lex.o' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(aide_CFLAGS) $(CFLAGS) -c -o src/aide-conf_lex.o `test -f 'src/conf_lex.c' || echo '$(srcdir)/'`src/conf_lex.c
src/aide-conf_lex.obj: src/conf_lex.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(aide_CFLAGS) $(CFLAGS) -MT src/aide-conf_lex.obj -MD -MP -MF src/$(DEPDIR)/aide-conf_lex.Tpo -c -o src/aide-conf_lex.obj `if test -f 'src/conf_lex.c'; then $(CYGPATH_W) 'src/conf_lex.c'; else $(CYGPATH_W) '$(srcdir)/src/conf_lex.c'; fi`
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) src/$(DEPDIR)/aide-conf_lex.Tpo src/$(DEPDIR)/aide-conf_lex.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='src/conf_lex.c' object='src/aide-conf_lex.obj' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(aide_CFLAGS) $(CFLAGS) -c -o src/aide-conf_lex.obj `if test -f 'src/conf_lex.c'; then $(CYGPATH_W) 'src/conf_lex.c'; else $(CYGPATH_W) '$(srcdir)/src/conf_lex.c'; fi`
src/aide-conf_yacc.o: src/conf_yacc.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(aide_CFLAGS) $(CFLAGS) -MT src/aide-conf_yacc.o -MD -MP -MF src/$(DEPDIR)/aide-conf_yacc.Tpo -c -o src/aide-conf_yacc.o `test -f 'src/conf_yacc.c' || echo '$(srcdir)/'`src/conf_yacc.c
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) src/$(DEPDIR)/aide-conf_yacc.Tpo src/$(DEPDIR)/aide-conf_yacc.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='src/conf_yacc.c' object='src/aide-conf_yacc.o' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(aide_CFLAGS) $(CFLAGS) -c -o src/aide-conf_yacc.o `test -f 'src/conf_yacc.c' || echo '$(srcdir)/'`src/conf_yacc.c
src/aide-conf_yacc.obj: src/conf_yacc.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(aide_CFLAGS) $(CFLAGS) -MT src/aide-conf_yacc.obj -MD -MP -MF src/$(DEPDIR)/aide-conf_yacc.Tpo -c -o src/aide-conf_yacc.obj `if test -f 'src/conf_yacc.c'; then $(CYGPATH_W) 'src/conf_yacc.c'; else $(CYGPATH_W) '$(srcdir)/src/conf_yacc.c'; fi`
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) src/$(DEPDIR)/aide-conf_yacc.Tpo src/$(DEPDIR)/aide-conf_yacc.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='src/conf_yacc.c' object='src/aide-conf_yacc.obj' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(aide_CFLAGS) $(CFLAGS) -c -o src/aide-conf_yacc.obj `if test -f 'src/conf_yacc.c'; then $(CYGPATH_W) 'src/conf_yacc.c'; else $(CYGPATH_W) '$(srcdir)/src/conf_yacc.c'; fi`
src/aide-db.o: src/db.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(aide_CFLAGS) $(CFLAGS) -MT src/aide-db.o -MD -MP -MF src/$(DEPDIR)/aide-db.Tpo -c -o src/aide-db.o `test -f 'src/db.c' || echo '$(srcdir)/'`src/db.c
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) src/$(DEPDIR)/aide-db.Tpo src/$(DEPDIR)/aide-db.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='src/db.c' object='src/aide-db.o' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(aide_CFLAGS) $(CFLAGS) -c -o src/aide-db.o `test -f 'src/db.c' || echo '$(srcdir)/'`src/db.c
src/aide-db.obj: src/db.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(aide_CFLAGS) $(CFLAGS) -MT src/aide-db.obj -MD -MP -MF src/$(DEPDIR)/aide-db.Tpo -c -o src/aide-db.obj `if test -f 'src/db.c'; then $(CYGPATH_W) 'src/db.c'; else $(CYGPATH_W) '$(srcdir)/src/db.c'; fi`
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) src/$(DEPDIR)/aide-db.Tpo src/$(DEPDIR)/aide-db.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='src/db.c' object='src/aide-db.obj' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(aide_CFLAGS) $(CFLAGS) -c -o src/aide-db.obj `if test -f 'src/db.c'; then $(CYGPATH_W) 'src/db.c'; else $(CYGPATH_W) '$(srcdir)/src/db.c'; fi`
src/aide-db_disk.o: src/db_disk.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(aide_CFLAGS) $(CFLAGS) -MT src/aide-db_disk.o -MD -MP -MF src/$(DEPDIR)/aide-db_disk.Tpo -c -o src/aide-db_disk.o `test -f 'src/db_disk.c' || echo '$(srcdir)/'`src/db_disk.c
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) src/$(DEPDIR)/aide-db_disk.Tpo src/$(DEPDIR)/aide-db_disk.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='src/db_disk.c' object='src/aide-db_disk.o' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(aide_CFLAGS) $(CFLAGS) -c -o src/aide-db_disk.o `test -f 'src/db_disk.c' || echo '$(srcdir)/'`src/db_disk.c
src/aide-db_disk.obj: src/db_disk.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(aide_CFLAGS) $(CFLAGS) -MT src/aide-db_disk.obj -MD -MP -MF src/$(DEPDIR)/aide-db_disk.Tpo -c -o src/aide-db_disk.obj `if test -f 'src/db_disk.c'; then $(CYGPATH_W) 'src/db_disk.c'; else $(CYGPATH_W) '$(srcdir)/src/db_disk.c'; fi`
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) src/$(DEPDIR)/aide-db_disk.Tpo src/$(DEPDIR)/aide-db_disk.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='src/db_disk.c' object='src/aide-db_disk.obj' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(aide_CFLAGS) $(CFLAGS) -c -o src/aide-db_disk.obj `if test -f 'src/db_disk.c'; then $(CYGPATH_W) 'src/db_disk.c'; else $(CYGPATH_W) '$(srcdir)/src/db_disk.c'; fi`
src/aide-db_file.o: src/db_file.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(aide_CFLAGS) $(CFLAGS) -MT src/aide-db_file.o -MD -MP -MF src/$(DEPDIR)/aide-db_file.Tpo -c -o src/aide-db_file.o `test -f 'src/db_file.c' || echo '$(srcdir)/'`src/db_file.c
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) src/$(DEPDIR)/aide-db_file.Tpo src/$(DEPDIR)/aide-db_file.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='src/db_file.c' object='src/aide-db_file.o' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(aide_CFLAGS) $(CFLAGS) -c -o src/aide-db_file.o `test -f 'src/db_file.c' || echo '$(srcdir)/'`src/db_file.c
src/aide-db_file.obj: src/db_file.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(aide_CFLAGS) $(CFLAGS) -MT src/aide-db_file.obj -MD -MP -MF src/$(DEPDIR)/aide-db_file.Tpo -c -o src/aide-db_file.obj `if test -f 'src/db_file.c'; then $(CYGPATH_W) 'src/db_file.c'; else $(CYGPATH_W) '$(srcdir)/src/db_file.c'; fi`
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) src/$(DEPDIR)/aide-db_file.Tpo src/$(DEPDIR)/aide-db_file.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='src/db_file.c' object='src/aide-db_file.obj' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(aide_CFLAGS) $(CFLAGS) -c -o src/aide-db_file.obj `if test -f 'src/db_file.c'; then $(CYGPATH_W) 'src/db_file.c'; else $(CYGPATH_W) '$(srcdir)/src/db_file.c'; fi`
src/aide-db_list.o: src/db_list.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(aide_CFLAGS) $(CFLAGS) -MT src/aide-db_list.o -MD -MP -MF src/$(DEPDIR)/aide-db_list.Tpo -c -o src/aide-db_list.o `test -f 'src/db_list.c' || echo '$(srcdir)/'`src/db_list.c
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) src/$(DEPDIR)/aide-db_list.Tpo src/$(DEPDIR)/aide-db_list.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='src/db_list.c' object='src/aide-db_list.o' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(aide_CFLAGS) $(CFLAGS) -c -o src/aide-db_list.o `test -f 'src/db_list.c' || echo '$(srcdir)/'`src/db_list.c
src/aide-db_list.obj: src/db_list.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(aide_CFLAGS) $(CFLAGS) -MT src/aide-db_list.obj -MD -MP -MF src/$(DEPDIR)/aide-db_list.Tpo -c -o src/aide-db_list.obj `if test -f 'src/db_list.c'; then $(CYGPATH_W) 'src/db_list.c'; else $(CYGPATH_W) '$(srcdir)/src/db_list.c'; fi`
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) src/$(DEPDIR)/aide-db_list.Tpo src/$(DEPDIR)/aide-db_list.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='src/db_list.c' object='src/aide-db_list.obj' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(aide_CFLAGS) $(CFLAGS) -c -o src/aide-db_list.obj `if test -f 'src/db_list.c'; then $(CYGPATH_W) 'src/db_list.c'; else $(CYGPATH_W) '$(srcdir)/src/db_list.c'; fi`
src/aide-do_md.o: src/do_md.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(aide_CFLAGS) $(CFLAGS) -MT src/aide-do_md.o -MD -MP -MF src/$(DEPDIR)/aide-do_md.Tpo -c -o src/aide-do_md.o `test -f 'src/do_md.c' || echo '$(srcdir)/'`src/do_md.c
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) src/$(DEPDIR)/aide-do_md.Tpo src/$(DEPDIR)/aide-do_md.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='src/do_md.c' object='src/aide-do_md.o' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(aide_CFLAGS) $(CFLAGS) -c -o src/aide-do_md.o `test -f 'src/do_md.c' || echo '$(srcdir)/'`src/do_md.c
src/aide-do_md.obj: src/do_md.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(aide_CFLAGS) $(CFLAGS) -MT src/aide-do_md.obj -MD -MP -MF src/$(DEPDIR)/aide-do_md.Tpo -c -o src/aide-do_md.obj `if test -f 'src/do_md.c'; then $(CYGPATH_W) 'src/do_md.c'; else $(CYGPATH_W) '$(srcdir)/src/do_md.c'; fi`
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) src/$(DEPDIR)/aide-do_md.Tpo src/$(DEPDIR)/aide-do_md.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='src/do_md.c' object='src/aide-do_md.obj' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(aide_CFLAGS) $(CFLAGS) -c -o src/aide-do_md.obj `if test -f 'src/do_md.c'; then $(CYGPATH_W) 'src/do_md.c'; else $(CYGPATH_W) '$(srcdir)/src/do_md.c'; fi`
src/aide-gen_list.o: src/gen_list.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(aide_CFLAGS) $(CFLAGS) -MT src/aide-gen_list.o -MD -MP -MF src/$(DEPDIR)/aide-gen_list.Tpo -c -o src/aide-gen_list.o `test -f 'src/gen_list.c' || echo '$(srcdir)/'`src/gen_list.c
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) src/$(DEPDIR)/aide-gen_list.Tpo src/$(DEPDIR)/aide-gen_list.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='src/gen_list.c' object='src/aide-gen_list.o' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(aide_CFLAGS) $(CFLAGS) -c -o src/aide-gen_list.o `test -f 'src/gen_list.c' || echo '$(srcdir)/'`src/gen_list.c
src/aide-gen_list.obj: src/gen_list.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(aide_CFLAGS) $(CFLAGS) -MT src/aide-gen_list.obj -MD -MP -MF src/$(DEPDIR)/aide-gen_list.Tpo -c -o src/aide-gen_list.obj `if test -f 'src/gen_list.c'; then $(CYGPATH_W) 'src/gen_list.c'; else $(CYGPATH_W) '$(srcdir)/src/gen_list.c'; fi`
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) src/$(DEPDIR)/aide-gen_list.Tpo src/$(DEPDIR)/aide-gen_list.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='src/gen_list.c' object='src/aide-gen_list.obj' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(aide_CFLAGS) $(CFLAGS) -c -o src/aide-gen_list.obj `if test -f 'src/gen_list.c'; then $(CYGPATH_W) 'src/gen_list.c'; else $(CYGPATH_W) '$(srcdir)/src/gen_list.c'; fi`
src/aide-getopt1.o: src/getopt1.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(aide_CFLAGS) $(CFLAGS) -MT src/aide-getopt1.o -MD -MP -MF src/$(DEPDIR)/aide-getopt1.Tpo -c -o src/aide-getopt1.o `test -f 'src/getopt1.c' || echo '$(srcdir)/'`src/getopt1.c
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) src/$(DEPDIR)/aide-getopt1.Tpo src/$(DEPDIR)/aide-getopt1.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='src/getopt1.c' object='src/aide-getopt1.o' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(aide_CFLAGS) $(CFLAGS) -c -o src/aide-getopt1.o `test -f 'src/getopt1.c' || echo '$(srcdir)/'`src/getopt1.c
src/aide-getopt1.obj: src/getopt1.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(aide_CFLAGS) $(CFLAGS) -MT src/aide-getopt1.obj -MD -MP -MF src/$(DEPDIR)/aide-getopt1.Tpo -c -o src/aide-getopt1.obj `if test -f 'src/getopt1.c'; then $(CYGPATH_W) 'src/getopt1.c'; else $(CYGPATH_W) '$(srcdir)/src/getopt1.c'; fi`
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) src/$(DEPDIR)/aide-getopt1.Tpo src/$(DEPDIR)/aide-getopt1.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='src/getopt1.c' object='src/aide-getopt1.obj' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(aide_CFLAGS) $(CFLAGS) -c -o src/aide-getopt1.obj `if test -f 'src/getopt1.c'; then $(CYGPATH_W) 'src/getopt1.c'; else $(CYGPATH_W) '$(srcdir)/src/getopt1.c'; fi`
src/aide-getopt.o: src/getopt.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(aide_CFLAGS) $(CFLAGS) -MT src/aide-getopt.o -MD -MP -MF src/$(DEPDIR)/aide-getopt.Tpo -c -o src/aide-getopt.o `test -f 'src/getopt.c' || echo '$(srcdir)/'`src/getopt.c
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) src/$(DEPDIR)/aide-getopt.Tpo src/$(DEPDIR)/aide-getopt.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='src/getopt.c' object='src/aide-getopt.o' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(aide_CFLAGS) $(CFLAGS) -c -o src/aide-getopt.o `test -f 'src/getopt.c' || echo '$(srcdir)/'`src/getopt.c
src/aide-getopt.obj: src/getopt.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(aide_CFLAGS) $(CFLAGS) -MT src/aide-getopt.obj -MD -MP -MF src/$(DEPDIR)/aide-getopt.Tpo -c -o src/aide-getopt.obj `if test -f 'src/getopt.c'; then $(CYGPATH_W) 'src/getopt.c'; else $(CYGPATH_W) '$(srcdir)/src/getopt.c'; fi`
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) src/$(DEPDIR)/aide-getopt.Tpo src/$(DEPDIR)/aide-getopt.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='src/getopt.c' object='src/aide-getopt.obj' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(aide_CFLAGS) $(CFLAGS) -c -o src/aide-getopt.obj `if test -f 'src/getopt.c'; then $(CYGPATH_W) 'src/getopt.c'; else $(CYGPATH_W) '$(srcdir)/src/getopt.c'; fi`
src/aide-hashsum.o: src/hashsum.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(aide_CFLAGS) $(CFLAGS) -MT src/aide-hashsum.o -MD -MP -MF src/$(DEPDIR)/aide-hashsum.Tpo -c -o src/aide-hashsum.o `test -f 'src/hashsum.c' || echo '$(srcdir)/'`src/hashsum.c
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) src/$(DEPDIR)/aide-hashsum.Tpo src/$(DEPDIR)/aide-hashsum.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='src/hashsum.c' object='src/aide-hashsum.o' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(aide_CFLAGS) $(CFLAGS) -c -o src/aide-hashsum.o `test -f 'src/hashsum.c' || echo '$(srcdir)/'`src/hashsum.c
src/aide-hashsum.obj: src/hashsum.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(aide_CFLAGS) $(CFLAGS) -MT src/aide-hashsum.obj -MD -MP -MF src/$(DEPDIR)/aide-hashsum.Tpo -c -o src/aide-hashsum.obj `if test -f 'src/hashsum.c'; then $(CYGPATH_W) 'src/hashsum.c'; else $(CYGPATH_W) '$(srcdir)/src/hashsum.c'; fi`
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) src/$(DEPDIR)/aide-hashsum.Tpo src/$(DEPDIR)/aide-hashsum.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='src/hashsum.c' object='src/aide-hashsum.obj' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(aide_CFLAGS) $(CFLAGS) -c -o src/aide-hashsum.obj `if test -f 'src/hashsum.c'; then $(CYGPATH_W) 'src/hashsum.c'; else $(CYGPATH_W) '$(srcdir)/src/hashsum.c'; fi`
src/aide-rx_rule.o: src/rx_rule.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(aide_CFLAGS) $(CFLAGS) -MT src/aide-rx_rule.o -MD -MP -MF src/$(DEPDIR)/aide-rx_rule.Tpo -c -o src/aide-rx_rule.o `test -f 'src/rx_rule.c' || echo '$(srcdir)/'`src/rx_rule.c
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) src/$(DEPDIR)/aide-rx_rule.Tpo src/$(DEPDIR)/aide-rx_rule.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='src/rx_rule.c' object='src/aide-rx_rule.o' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(aide_CFLAGS) $(CFLAGS) -c -o src/aide-rx_rule.o `test -f 'src/rx_rule.c' || echo '$(srcdir)/'`src/rx_rule.c
src/aide-rx_rule.obj: src/rx_rule.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(aide_CFLAGS) $(CFLAGS) -MT src/aide-rx_rule.obj -MD -MP -MF src/$(DEPDIR)/aide-rx_rule.Tpo -c -o src/aide-rx_rule.obj `if test -f 'src/rx_rule.c'; then $(CYGPATH_W) 'src/rx_rule.c'; else $(CYGPATH_W) '$(srcdir)/src/rx_rule.c'; fi`
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) src/$(DEPDIR)/aide-rx_rule.Tpo src/$(DEPDIR)/aide-rx_rule.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='src/rx_rule.c' object='src/aide-rx_rule.obj' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(aide_CFLAGS) $(CFLAGS) -c -o src/aide-rx_rule.obj `if test -f 'src/rx_rule.c'; then $(CYGPATH_W) 'src/rx_rule.c'; else $(CYGPATH_W) '$(srcdir)/src/rx_rule.c'; fi`
src/aide-list.o: src/list.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(aide_CFLAGS) $(CFLAGS) -MT src/aide-list.o -MD -MP -MF src/$(DEPDIR)/aide-list.Tpo -c -o src/aide-list.o `test -f 'src/list.c' || echo '$(srcdir)/'`src/list.c
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) src/$(DEPDIR)/aide-list.Tpo src/$(DEPDIR)/aide-list.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='src/list.c' object='src/aide-list.o' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(aide_CFLAGS) $(CFLAGS) -c -o src/aide-list.o `test -f 'src/list.c' || echo '$(srcdir)/'`src/list.c
src/aide-list.obj: src/list.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(aide_CFLAGS) $(CFLAGS) -MT src/aide-list.obj -MD -MP -MF src/$(DEPDIR)/aide-list.Tpo -c -o src/aide-list.obj `if test -f 'src/list.c'; then $(CYGPATH_W) 'src/list.c'; else $(CYGPATH_W) '$(srcdir)/src/list.c'; fi`
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) src/$(DEPDIR)/aide-list.Tpo src/$(DEPDIR)/aide-list.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='src/list.c' object='src/aide-list.obj' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(aide_CFLAGS) $(CFLAGS) -c -o src/aide-list.obj `if test -f 'src/list.c'; then $(CYGPATH_W) 'src/list.c'; else $(CYGPATH_W) '$(srcdir)/src/list.c'; fi`
src/aide-log.o: src/log.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(aide_CFLAGS) $(CFLAGS) -MT src/aide-log.o -MD -MP -MF src/$(DEPDIR)/aide-log.Tpo -c -o src/aide-log.o `test -f 'src/log.c' || echo '$(srcdir)/'`src/log.c
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) src/$(DEPDIR)/aide-log.Tpo src/$(DEPDIR)/aide-log.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='src/log.c' object='src/aide-log.o' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(aide_CFLAGS) $(CFLAGS) -c -o src/aide-log.o `test -f 'src/log.c' || echo '$(srcdir)/'`src/log.c
src/aide-log.obj: src/log.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(aide_CFLAGS) $(CFLAGS) -MT src/aide-log.obj -MD -MP -MF src/$(DEPDIR)/aide-log.Tpo -c -o src/aide-log.obj `if test -f 'src/log.c'; then $(CYGPATH_W) 'src/log.c'; else $(CYGPATH_W) '$(srcdir)/src/log.c'; fi`
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) src/$(DEPDIR)/aide-log.Tpo src/$(DEPDIR)/aide-log.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='src/log.c' object='src/aide-log.obj' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(aide_CFLAGS) $(CFLAGS) -c -o src/aide-log.obj `if test -f 'src/log.c'; then $(CYGPATH_W) 'src/log.c'; else $(CYGPATH_W) '$(srcdir)/src/log.c'; fi`
src/aide-md.o: src/md.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(aide_CFLAGS) $(CFLAGS) -MT src/aide-md.o -MD -MP -MF src/$(DEPDIR)/aide-md.Tpo -c -o src/aide-md.o `test -f 'src/md.c' || echo '$(srcdir)/'`src/md.c
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) src/$(DEPDIR)/aide-md.Tpo src/$(DEPDIR)/aide-md.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='src/md.c' object='src/aide-md.o' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(aide_CFLAGS) $(CFLAGS) -c -o src/aide-md.o `test -f 'src/md.c' || echo '$(srcdir)/'`src/md.c
src/aide-md.obj: src/md.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(aide_CFLAGS) $(CFLAGS) -MT src/aide-md.obj -MD -MP -MF src/$(DEPDIR)/aide-md.Tpo -c -o src/aide-md.obj `if test -f 'src/md.c'; then $(CYGPATH_W) 'src/md.c'; else $(CYGPATH_W) '$(srcdir)/src/md.c'; fi`
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) src/$(DEPDIR)/aide-md.Tpo src/$(DEPDIR)/aide-md.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='src/md.c' object='src/aide-md.obj' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(aide_CFLAGS) $(CFLAGS) -c -o src/aide-md.obj `if test -f 'src/md.c'; then $(CYGPATH_W) 'src/md.c'; else $(CYGPATH_W) '$(srcdir)/src/md.c'; fi`
src/aide-queue.o: src/queue.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(aide_CFLAGS) $(CFLAGS) -MT src/aide-queue.o -MD -MP -MF src/$(DEPDIR)/aide-queue.Tpo -c -o src/aide-queue.o `test -f 'src/queue.c' || echo '$(srcdir)/'`src/queue.c
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) src/$(DEPDIR)/aide-queue.Tpo src/$(DEPDIR)/aide-queue.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='src/queue.c' object='src/aide-queue.o' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(aide_CFLAGS) $(CFLAGS) -c -o src/aide-queue.o `test -f 'src/queue.c' || echo '$(srcdir)/'`src/queue.c
src/aide-queue.obj: src/queue.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(aide_CFLAGS) $(CFLAGS) -MT src/aide-queue.obj -MD -MP -MF src/$(DEPDIR)/aide-queue.Tpo -c -o src/aide-queue.obj `if test -f 'src/queue.c'; then $(CYGPATH_W) 'src/queue.c'; else $(CYGPATH_W) '$(srcdir)/src/queue.c'; fi`
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) src/$(DEPDIR)/aide-queue.Tpo src/$(DEPDIR)/aide-queue.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='src/queue.c' object='src/aide-queue.obj' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(aide_CFLAGS) $(CFLAGS) -c -o src/aide-queue.obj `if test -f 'src/queue.c'; then $(CYGPATH_W) 'src/queue.c'; else $(CYGPATH_W) '$(srcdir)/src/queue.c'; fi`
src/aide-progress.o: src/progress.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(aide_CFLAGS) $(CFLAGS) -MT src/aide-progress.o -MD -MP -MF src/$(DEPDIR)/aide-progress.Tpo -c -o src/aide-progress.o `test -f 'src/progress.c' || echo '$(srcdir)/'`src/progress.c
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) src/$(DEPDIR)/aide-progress.Tpo src/$(DEPDIR)/aide-progress.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='src/progress.c' object='src/aide-progress.o' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(aide_CFLAGS) $(CFLAGS) -c -o src/aide-progress.o `test -f 'src/progress.c' || echo '$(srcdir)/'`src/progress.c
src/aide-progress.obj: src/progress.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(aide_CFLAGS) $(CFLAGS) -MT src/aide-progress.obj -MD -MP -MF src/$(DEPDIR)/aide-progress.Tpo -c -o src/aide-progress.obj `if test -f 'src/progress.c'; then $(CYGPATH_W) 'src/progress.c'; else $(CYGPATH_W) '$(srcdir)/src/progress.c'; fi`
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) src/$(DEPDIR)/aide-progress.Tpo src/$(DEPDIR)/aide-progress.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='src/progress.c' object='src/aide-progress.obj' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(aide_CFLAGS) $(CFLAGS) -c -o src/aide-progress.obj `if test -f 'src/progress.c'; then $(CYGPATH_W) 'src/progress.c'; else $(CYGPATH_W) '$(srcdir)/src/progress.c'; fi`
src/aide-seltree.o: src/seltree.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(aide_CFLAGS) $(CFLAGS) -MT src/aide-seltree.o -MD -MP -MF src/$(DEPDIR)/aide-seltree.Tpo -c -o src/aide-seltree.o `test -f 'src/seltree.c' || echo '$(srcdir)/'`src/seltree.c
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) src/$(DEPDIR)/aide-seltree.Tpo src/$(DEPDIR)/aide-seltree.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='src/seltree.c' object='src/aide-seltree.o' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(aide_CFLAGS) $(CFLAGS) -c -o src/aide-seltree.o `test -f 'src/seltree.c' || echo '$(srcdir)/'`src/seltree.c
src/aide-seltree.obj: src/seltree.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(aide_CFLAGS) $(CFLAGS) -MT src/aide-seltree.obj -MD -MP -MF src/$(DEPDIR)/aide-seltree.Tpo -c -o src/aide-seltree.obj `if test -f 'src/seltree.c'; then $(CYGPATH_W) 'src/seltree.c'; else $(CYGPATH_W) '$(srcdir)/src/seltree.c'; fi`
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) src/$(DEPDIR)/aide-seltree.Tpo src/$(DEPDIR)/aide-seltree.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='src/seltree.c' object='src/aide-seltree.obj' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(aide_CFLAGS) $(CFLAGS) -c -o src/aide-seltree.obj `if test -f 'src/seltree.c'; then $(CYGPATH_W) 'src/seltree.c'; else $(CYGPATH_W) '$(srcdir)/src/seltree.c'; fi`
src/aide-symboltable.o: src/symboltable.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(aide_CFLAGS) $(CFLAGS) -MT src/aide-symboltable.o -MD -MP -MF src/$(DEPDIR)/aide-symboltable.Tpo -c -o src/aide-symboltable.o `test -f 'src/symboltable.c' || echo '$(srcdir)/'`src/symboltable.c
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) src/$(DEPDIR)/aide-symboltable.Tpo src/$(DEPDIR)/aide-symboltable.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='src/symboltable.c' object='src/aide-symboltable.o' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(aide_CFLAGS) $(CFLAGS) -c -o src/aide-symboltable.o `test -f 'src/symboltable.c' || echo '$(srcdir)/'`src/symboltable.c
src/aide-symboltable.obj: src/symboltable.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(aide_CFLAGS) $(CFLAGS) -MT src/aide-symboltable.obj -MD -MP -MF src/$(DEPDIR)/aide-symboltable.Tpo -c -o src/aide-symboltable.obj `if test -f 'src/symboltable.c'; then $(CYGPATH_W) 'src/symboltable.c'; else $(CYGPATH_W) '$(srcdir)/src/symboltable.c'; fi`
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) src/$(DEPDIR)/aide-symboltable.Tpo src/$(DEPDIR)/aide-symboltable.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='src/symboltable.c' object='src/aide-symboltable.obj' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(aide_CFLAGS) $(CFLAGS) -c -o src/aide-symboltable.obj `if test -f 'src/symboltable.c'; then $(CYGPATH_W) 'src/symboltable.c'; else $(CYGPATH_W) '$(srcdir)/src/symboltable.c'; fi`
src/aide-tree.o: src/tree.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(aide_CFLAGS) $(CFLAGS) -MT src/aide-tree.o -MD -MP -MF src/$(DEPDIR)/aide-tree.Tpo -c -o src/aide-tree.o `test -f 'src/tree.c' || echo '$(srcdir)/'`src/tree.c
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) src/$(DEPDIR)/aide-tree.Tpo src/$(DEPDIR)/aide-tree.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='src/tree.c' object='src/aide-tree.o' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(aide_CFLAGS) $(CFLAGS) -c -o src/aide-tree.o `test -f 'src/tree.c' || echo '$(srcdir)/'`src/tree.c
src/aide-tree.obj: src/tree.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(aide_CFLAGS) $(CFLAGS) -MT src/aide-tree.obj -MD -MP -MF src/$(DEPDIR)/aide-tree.Tpo -c -o src/aide-tree.obj `if test -f 'src/tree.c'; then $(CYGPATH_W) 'src/tree.c'; else $(CYGPATH_W) '$(srcdir)/src/tree.c'; fi`
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) src/$(DEPDIR)/aide-tree.Tpo src/$(DEPDIR)/aide-tree.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='src/tree.c' object='src/aide-tree.obj' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(aide_CFLAGS) $(CFLAGS) -c -o src/aide-tree.obj `if test -f 'src/tree.c'; then $(CYGPATH_W) 'src/tree.c'; else $(CYGPATH_W) '$(srcdir)/src/tree.c'; fi`
src/aide-url.o: src/url.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(aide_CFLAGS) $(CFLAGS) -MT src/aide-url.o -MD -MP -MF src/$(DEPDIR)/aide-url.Tpo -c -o src/aide-url.o `test -f 'src/url.c' || echo '$(srcdir)/'`src/url.c
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) src/$(DEPDIR)/aide-url.Tpo src/$(DEPDIR)/aide-url.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='src/url.c' object='src/aide-url.o' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(aide_CFLAGS) $(CFLAGS) -c -o src/aide-url.o `test -f 'src/url.c' || echo '$(srcdir)/'`src/url.c
src/aide-url.obj: src/url.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(aide_CFLAGS) $(CFLAGS) -MT src/aide-url.obj -MD -MP -MF src/$(DEPDIR)/aide-url.Tpo -c -o src/aide-url.obj `if test -f 'src/url.c'; then $(CYGPATH_W) 'src/url.c'; else $(CYGPATH_W) '$(srcdir)/src/url.c'; fi`
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) src/$(DEPDIR)/aide-url.Tpo src/$(DEPDIR)/aide-url.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='src/url.c' object='src/aide-url.obj' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(aide_CFLAGS) $(CFLAGS) -c -o src/aide-url.obj `if test -f 'src/url.c'; then $(CYGPATH_W) 'src/url.c'; else $(CYGPATH_W) '$(srcdir)/src/url.c'; fi`
src/aide-util.o: src/util.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(aide_CFLAGS) $(CFLAGS) -MT src/aide-util.o -MD -MP -MF src/$(DEPDIR)/aide-util.Tpo -c -o src/aide-util.o `test -f 'src/util.c' || echo '$(srcdir)/'`src/util.c
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) src/$(DEPDIR)/aide-util.Tpo src/$(DEPDIR)/aide-util.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='src/util.c' object='src/aide-util.o' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(aide_CFLAGS) $(CFLAGS) -c -o src/aide-util.o `test -f 'src/util.c' || echo '$(srcdir)/'`src/util.c
src/aide-util.obj: src/util.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(aide_CFLAGS) $(CFLAGS) -MT src/aide-util.obj -MD -MP -MF src/$(DEPDIR)/aide-util.Tpo -c -o src/aide-util.obj `if test -f 'src/util.c'; then $(CYGPATH_W) 'src/util.c'; else $(CYGPATH_W) '$(srcdir)/src/util.c'; fi`
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) src/$(DEPDIR)/aide-util.Tpo src/$(DEPDIR)/aide-util.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='src/util.c' object='src/aide-util.obj' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(aide_CFLAGS) $(CFLAGS) -c -o src/aide-util.obj `if test -f 'src/util.c'; then $(CYGPATH_W) 'src/util.c'; else $(CYGPATH_W) '$(srcdir)/src/util.c'; fi`
src/aide-e2fsattrs.o: src/e2fsattrs.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(aide_CFLAGS) $(CFLAGS) -MT src/aide-e2fsattrs.o -MD -MP -MF src/$(DEPDIR)/aide-e2fsattrs.Tpo -c -o src/aide-e2fsattrs.o `test -f 'src/e2fsattrs.c' || echo '$(srcdir)/'`src/e2fsattrs.c
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) src/$(DEPDIR)/aide-e2fsattrs.Tpo src/$(DEPDIR)/aide-e2fsattrs.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='src/e2fsattrs.c' object='src/aide-e2fsattrs.o' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(aide_CFLAGS) $(CFLAGS) -c -o src/aide-e2fsattrs.o `test -f 'src/e2fsattrs.c' || echo '$(srcdir)/'`src/e2fsattrs.c
src/aide-e2fsattrs.obj: src/e2fsattrs.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(aide_CFLAGS) $(CFLAGS) -MT src/aide-e2fsattrs.obj -MD -MP -MF src/$(DEPDIR)/aide-e2fsattrs.Tpo -c -o src/aide-e2fsattrs.obj `if test -f 'src/e2fsattrs.c'; then $(CYGPATH_W) 'src/e2fsattrs.c'; else $(CYGPATH_W) '$(srcdir)/src/e2fsattrs.c'; fi`
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) src/$(DEPDIR)/aide-e2fsattrs.Tpo src/$(DEPDIR)/aide-e2fsattrs.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='src/e2fsattrs.c' object='src/aide-e2fsattrs.obj' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(aide_CFLAGS) $(CFLAGS) -c -o src/aide-e2fsattrs.obj `if test -f 'src/e2fsattrs.c'; then $(CYGPATH_W) 'src/e2fsattrs.c'; else $(CYGPATH_W) '$(srcdir)/src/e2fsattrs.c'; fi`
src/aide-fopen.o: src/fopen.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(aide_CFLAGS) $(CFLAGS) -MT src/aide-fopen.o -MD -MP -MF src/$(DEPDIR)/aide-fopen.Tpo -c -o src/aide-fopen.o `test -f 'src/fopen.c' || echo '$(srcdir)/'`src/fopen.c
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) src/$(DEPDIR)/aide-fopen.Tpo src/$(DEPDIR)/aide-fopen.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='src/fopen.c' object='src/aide-fopen.o' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(aide_CFLAGS) $(CFLAGS) -c -o src/aide-fopen.o `test -f 'src/fopen.c' || echo '$(srcdir)/'`src/fopen.c
src/aide-fopen.obj: src/fopen.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(aide_CFLAGS) $(CFLAGS) -MT src/aide-fopen.obj -MD -MP -MF src/$(DEPDIR)/aide-fopen.Tpo -c -o src/aide-fopen.obj `if test -f 'src/fopen.c'; then $(CYGPATH_W) 'src/fopen.c'; else $(CYGPATH_W) '$(srcdir)/src/fopen.c'; fi`
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) src/$(DEPDIR)/aide-fopen.Tpo src/$(DEPDIR)/aide-fopen.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='src/fopen.c' object='src/aide-fopen.obj' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(aide_CFLAGS) $(CFLAGS) -c -o src/aide-fopen.obj `if test -f 'src/fopen.c'; then $(CYGPATH_W) 'src/fopen.c'; else $(CYGPATH_W) '$(srcdir)/src/fopen.c'; fi`
tests/check_aide-check_aide.o: tests/check_aide.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(check_aide_CFLAGS) $(CFLAGS) -MT tests/check_aide-check_aide.o -MD -MP -MF tests/$(DEPDIR)/check_aide-check_aide.Tpo -c -o tests/check_aide-check_aide.o `test -f 'tests/check_aide.c' || echo '$(srcdir)/'`tests/check_aide.c
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) tests/$(DEPDIR)/check_aide-check_aide.Tpo tests/$(DEPDIR)/check_aide-check_aide.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='tests/check_aide.c' object='tests/check_aide-check_aide.o' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(check_aide_CFLAGS) $(CFLAGS) -c -o tests/check_aide-check_aide.o `test -f 'tests/check_aide.c' || echo '$(srcdir)/'`tests/check_aide.c
tests/check_aide-check_aide.obj: tests/check_aide.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(check_aide_CFLAGS) $(CFLAGS) -MT tests/check_aide-check_aide.obj -MD -MP -MF tests/$(DEPDIR)/check_aide-check_aide.Tpo -c -o tests/check_aide-check_aide.obj `if test -f 'tests/check_aide.c'; then $(CYGPATH_W) 'tests/check_aide.c'; else $(CYGPATH_W) '$(srcdir)/tests/check_aide.c'; fi`
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) tests/$(DEPDIR)/check_aide-check_aide.Tpo tests/$(DEPDIR)/check_aide-check_aide.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='tests/check_aide.c' object='tests/check_aide-check_aide.obj' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(check_aide_CFLAGS) $(CFLAGS) -c -o tests/check_aide-check_aide.obj `if test -f 'tests/check_aide.c'; then $(CYGPATH_W) 'tests/check_aide.c'; else $(CYGPATH_W) '$(srcdir)/tests/check_aide.c'; fi`
tests/check_aide-check_attributes.o: tests/check_attributes.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(check_aide_CFLAGS) $(CFLAGS) -MT tests/check_aide-check_attributes.o -MD -MP -MF tests/$(DEPDIR)/check_aide-check_attributes.Tpo -c -o tests/check_aide-check_attributes.o `test -f 'tests/check_attributes.c' || echo '$(srcdir)/'`tests/check_attributes.c
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) tests/$(DEPDIR)/check_aide-check_attributes.Tpo tests/$(DEPDIR)/check_aide-check_attributes.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='tests/check_attributes.c' object='tests/check_aide-check_attributes.o' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(check_aide_CFLAGS) $(CFLAGS) -c -o tests/check_aide-check_attributes.o `test -f 'tests/check_attributes.c' || echo '$(srcdir)/'`tests/check_attributes.c
tests/check_aide-check_attributes.obj: tests/check_attributes.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(check_aide_CFLAGS) $(CFLAGS) -MT tests/check_aide-check_attributes.obj -MD -MP -MF tests/$(DEPDIR)/check_aide-check_attributes.Tpo -c -o tests/check_aide-check_attributes.obj `if test -f 'tests/check_attributes.c'; then $(CYGPATH_W) 'tests/check_attributes.c'; else $(CYGPATH_W) '$(srcdir)/tests/check_attributes.c'; fi`
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) tests/$(DEPDIR)/check_aide-check_attributes.Tpo tests/$(DEPDIR)/check_aide-check_attributes.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='tests/check_attributes.c' object='tests/check_aide-check_attributes.obj' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(check_aide_CFLAGS) $(CFLAGS) -c -o tests/check_aide-check_attributes.obj `if test -f 'tests/check_attributes.c'; then $(CYGPATH_W) 'tests/check_attributes.c'; else $(CYGPATH_W) '$(srcdir)/tests/check_attributes.c'; fi`
src/check_aide-attributes.o: src/attributes.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(check_aide_CFLAGS) $(CFLAGS) -MT src/check_aide-attributes.o -MD -MP -MF src/$(DEPDIR)/check_aide-attributes.Tpo -c -o src/check_aide-attributes.o `test -f 'src/attributes.c' || echo '$(srcdir)/'`src/attributes.c
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) src/$(DEPDIR)/check_aide-attributes.Tpo src/$(DEPDIR)/check_aide-attributes.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='src/attributes.c' object='src/check_aide-attributes.o' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(check_aide_CFLAGS) $(CFLAGS) -c -o src/check_aide-attributes.o `test -f 'src/attributes.c' || echo '$(srcdir)/'`src/attributes.c
src/check_aide-attributes.obj: src/attributes.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(check_aide_CFLAGS) $(CFLAGS) -MT src/check_aide-attributes.obj -MD -MP -MF src/$(DEPDIR)/check_aide-attributes.Tpo -c -o src/check_aide-attributes.obj `if test -f 'src/attributes.c'; then $(CYGPATH_W) 'src/attributes.c'; else $(CYGPATH_W) '$(srcdir)/src/attributes.c'; fi`
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) src/$(DEPDIR)/check_aide-attributes.Tpo src/$(DEPDIR)/check_aide-attributes.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='src/attributes.c' object='src/check_aide-attributes.obj' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(check_aide_CFLAGS) $(CFLAGS) -c -o src/check_aide-attributes.obj `if test -f 'src/attributes.c'; then $(CYGPATH_W) 'src/attributes.c'; else $(CYGPATH_W) '$(srcdir)/src/attributes.c'; fi`
tests/check_aide-check_base64.o: tests/check_base64.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(check_aide_CFLAGS) $(CFLAGS) -MT tests/check_aide-check_base64.o -MD -MP -MF tests/$(DEPDIR)/check_aide-check_base64.Tpo -c -o tests/check_aide-check_base64.o `test -f 'tests/check_base64.c' || echo '$(srcdir)/'`tests/check_base64.c
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) tests/$(DEPDIR)/check_aide-check_base64.Tpo tests/$(DEPDIR)/check_aide-check_base64.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='tests/check_base64.c' object='tests/check_aide-check_base64.o' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(check_aide_CFLAGS) $(CFLAGS) -c -o tests/check_aide-check_base64.o `test -f 'tests/check_base64.c' || echo '$(srcdir)/'`tests/check_base64.c
tests/check_aide-check_base64.obj: tests/check_base64.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(check_aide_CFLAGS) $(CFLAGS) -MT tests/check_aide-check_base64.obj -MD -MP -MF tests/$(DEPDIR)/check_aide-check_base64.Tpo -c -o tests/check_aide-check_base64.obj `if test -f 'tests/check_base64.c'; then $(CYGPATH_W) 'tests/check_base64.c'; else $(CYGPATH_W) '$(srcdir)/tests/check_base64.c'; fi`
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) tests/$(DEPDIR)/check_aide-check_base64.Tpo tests/$(DEPDIR)/check_aide-check_base64.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='tests/check_base64.c' object='tests/check_aide-check_base64.obj' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(check_aide_CFLAGS) $(CFLAGS) -c -o tests/check_aide-check_base64.obj `if test -f 'tests/check_base64.c'; then $(CYGPATH_W) 'tests/check_base64.c'; else $(CYGPATH_W) '$(srcdir)/tests/check_base64.c'; fi`
src/check_aide-base64.o: src/base64.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(check_aide_CFLAGS) $(CFLAGS) -MT src/check_aide-base64.o -MD -MP -MF src/$(DEPDIR)/check_aide-base64.Tpo -c -o src/check_aide-base64.o `test -f 'src/base64.c' || echo '$(srcdir)/'`src/base64.c
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) src/$(DEPDIR)/check_aide-base64.Tpo src/$(DEPDIR)/check_aide-base64.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='src/base64.c' object='src/check_aide-base64.o' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(check_aide_CFLAGS) $(CFLAGS) -c -o src/check_aide-base64.o `test -f 'src/base64.c' || echo '$(srcdir)/'`src/base64.c
src/check_aide-base64.obj: src/base64.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(check_aide_CFLAGS) $(CFLAGS) -MT src/check_aide-base64.obj -MD -MP -MF src/$(DEPDIR)/check_aide-base64.Tpo -c -o src/check_aide-base64.obj `if test -f 'src/base64.c'; then $(CYGPATH_W) 'src/base64.c'; else $(CYGPATH_W) '$(srcdir)/src/base64.c'; fi`
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) src/$(DEPDIR)/check_aide-base64.Tpo src/$(DEPDIR)/check_aide-base64.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='src/base64.c' object='src/check_aide-base64.obj' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(check_aide_CFLAGS) $(CFLAGS) -c -o src/check_aide-base64.obj `if test -f 'src/base64.c'; then $(CYGPATH_W) 'src/base64.c'; else $(CYGPATH_W) '$(srcdir)/src/base64.c'; fi`
tests/check_aide-check_hashsum.o: tests/check_hashsum.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(check_aide_CFLAGS) $(CFLAGS) -MT tests/check_aide-check_hashsum.o -MD -MP -MF tests/$(DEPDIR)/check_aide-check_hashsum.Tpo -c -o tests/check_aide-check_hashsum.o `test -f 'tests/check_hashsum.c' || echo '$(srcdir)/'`tests/check_hashsum.c
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) tests/$(DEPDIR)/check_aide-check_hashsum.Tpo tests/$(DEPDIR)/check_aide-check_hashsum.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='tests/check_hashsum.c' object='tests/check_aide-check_hashsum.o' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(check_aide_CFLAGS) $(CFLAGS) -c -o tests/check_aide-check_hashsum.o `test -f 'tests/check_hashsum.c' || echo '$(srcdir)/'`tests/check_hashsum.c
tests/check_aide-check_hashsum.obj: tests/check_hashsum.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(check_aide_CFLAGS) $(CFLAGS) -MT tests/check_aide-check_hashsum.obj -MD -MP -MF tests/$(DEPDIR)/check_aide-check_hashsum.Tpo -c -o tests/check_aide-check_hashsum.obj `if test -f 'tests/check_hashsum.c'; then $(CYGPATH_W) 'tests/check_hashsum.c'; else $(CYGPATH_W) '$(srcdir)/tests/check_hashsum.c'; fi`
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) tests/$(DEPDIR)/check_aide-check_hashsum.Tpo tests/$(DEPDIR)/check_aide-check_hashsum.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='tests/check_hashsum.c' object='tests/check_aide-check_hashsum.obj' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(check_aide_CFLAGS) $(CFLAGS) -c -o tests/check_aide-check_hashsum.obj `if test -f 'tests/check_hashsum.c'; then $(CYGPATH_W) 'tests/check_hashsum.c'; else $(CYGPATH_W) '$(srcdir)/tests/check_hashsum.c'; fi`
src/check_aide-hashsum.o: src/hashsum.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(check_aide_CFLAGS) $(CFLAGS) -MT src/check_aide-hashsum.o -MD -MP -MF src/$(DEPDIR)/check_aide-hashsum.Tpo -c -o src/check_aide-hashsum.o `test -f 'src/hashsum.c' || echo '$(srcdir)/'`src/hashsum.c
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) src/$(DEPDIR)/check_aide-hashsum.Tpo src/$(DEPDIR)/check_aide-hashsum.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='src/hashsum.c' object='src/check_aide-hashsum.o' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(check_aide_CFLAGS) $(CFLAGS) -c -o src/check_aide-hashsum.o `test -f 'src/hashsum.c' || echo '$(srcdir)/'`src/hashsum.c
src/check_aide-hashsum.obj: src/hashsum.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(check_aide_CFLAGS) $(CFLAGS) -MT src/check_aide-hashsum.obj -MD -MP -MF src/$(DEPDIR)/check_aide-hashsum.Tpo -c -o src/check_aide-hashsum.obj `if test -f 'src/hashsum.c'; then $(CYGPATH_W) 'src/hashsum.c'; else $(CYGPATH_W) '$(srcdir)/src/hashsum.c'; fi`
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) src/$(DEPDIR)/check_aide-hashsum.Tpo src/$(DEPDIR)/check_aide-hashsum.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='src/hashsum.c' object='src/check_aide-hashsum.obj' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(check_aide_CFLAGS) $(CFLAGS) -c -o src/check_aide-hashsum.obj `if test -f 'src/hashsum.c'; then $(CYGPATH_W) 'src/hashsum.c'; else $(CYGPATH_W) '$(srcdir)/src/hashsum.c'; fi`
tests/check_aide-check_seltree.o: tests/check_seltree.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(check_aide_CFLAGS) $(CFLAGS) -MT tests/check_aide-check_seltree.o -MD -MP -MF tests/$(DEPDIR)/check_aide-check_seltree.Tpo -c -o tests/check_aide-check_seltree.o `test -f 'tests/check_seltree.c' || echo '$(srcdir)/'`tests/check_seltree.c
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) tests/$(DEPDIR)/check_aide-check_seltree.Tpo tests/$(DEPDIR)/check_aide-check_seltree.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='tests/check_seltree.c' object='tests/check_aide-check_seltree.o' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(check_aide_CFLAGS) $(CFLAGS) -c -o tests/check_aide-check_seltree.o `test -f 'tests/check_seltree.c' || echo '$(srcdir)/'`tests/check_seltree.c
tests/check_aide-check_seltree.obj: tests/check_seltree.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(check_aide_CFLAGS) $(CFLAGS) -MT tests/check_aide-check_seltree.obj -MD -MP -MF tests/$(DEPDIR)/check_aide-check_seltree.Tpo -c -o tests/check_aide-check_seltree.obj `if test -f 'tests/check_seltree.c'; then $(CYGPATH_W) 'tests/check_seltree.c'; else $(CYGPATH_W) '$(srcdir)/tests/check_seltree.c'; fi`
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) tests/$(DEPDIR)/check_aide-check_seltree.Tpo tests/$(DEPDIR)/check_aide-check_seltree.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='tests/check_seltree.c' object='tests/check_aide-check_seltree.obj' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(check_aide_CFLAGS) $(CFLAGS) -c -o tests/check_aide-check_seltree.obj `if test -f 'tests/check_seltree.c'; then $(CYGPATH_W) 'tests/check_seltree.c'; else $(CYGPATH_W) '$(srcdir)/tests/check_seltree.c'; fi`
src/check_aide-seltree.o: src/seltree.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(check_aide_CFLAGS) $(CFLAGS) -MT src/check_aide-seltree.o -MD -MP -MF src/$(DEPDIR)/check_aide-seltree.Tpo -c -o src/check_aide-seltree.o `test -f 'src/seltree.c' || echo '$(srcdir)/'`src/seltree.c
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) src/$(DEPDIR)/check_aide-seltree.Tpo src/$(DEPDIR)/check_aide-seltree.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='src/seltree.c' object='src/check_aide-seltree.o' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(check_aide_CFLAGS) $(CFLAGS) -c -o src/check_aide-seltree.o `test -f 'src/seltree.c' || echo '$(srcdir)/'`src/seltree.c
src/check_aide-seltree.obj: src/seltree.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(check_aide_CFLAGS) $(CFLAGS) -MT src/check_aide-seltree.obj -MD -MP -MF src/$(DEPDIR)/check_aide-seltree.Tpo -c -o src/check_aide-seltree.obj `if test -f 'src/seltree.c'; then $(CYGPATH_W) 'src/seltree.c'; else $(CYGPATH_W) '$(srcdir)/src/seltree.c'; fi`
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) src/$(DEPDIR)/check_aide-seltree.Tpo src/$(DEPDIR)/check_aide-seltree.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='src/seltree.c' object='src/check_aide-seltree.obj' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(check_aide_CFLAGS) $(CFLAGS) -c -o src/check_aide-seltree.obj `if test -f 'src/seltree.c'; then $(CYGPATH_W) 'src/seltree.c'; else $(CYGPATH_W) '$(srcdir)/src/seltree.c'; fi`
tests/check_aide-check_progress.o: tests/check_progress.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(check_aide_CFLAGS) $(CFLAGS) -MT tests/check_aide-check_progress.o -MD -MP -MF tests/$(DEPDIR)/check_aide-check_progress.Tpo -c -o tests/check_aide-check_progress.o `test -f 'tests/check_progress.c' || echo '$(srcdir)/'`tests/check_progress.c
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) tests/$(DEPDIR)/check_aide-check_progress.Tpo tests/$(DEPDIR)/check_aide-check_progress.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='tests/check_progress.c' object='tests/check_aide-check_progress.o' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(check_aide_CFLAGS) $(CFLAGS) -c -o tests/check_aide-check_progress.o `test -f 'tests/check_progress.c' || echo '$(srcdir)/'`tests/check_progress.c
tests/check_aide-check_progress.obj: tests/check_progress.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(check_aide_CFLAGS) $(CFLAGS) -MT tests/check_aide-check_progress.obj -MD -MP -MF tests/$(DEPDIR)/check_aide-check_progress.Tpo -c -o tests/check_aide-check_progress.obj `if test -f 'tests/check_progress.c'; then $(CYGPATH_W) 'tests/check_progress.c'; else $(CYGPATH_W) '$(srcdir)/tests/check_progress.c'; fi`
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) tests/$(DEPDIR)/check_aide-check_progress.Tpo tests/$(DEPDIR)/check_aide-check_progress.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='tests/check_progress.c' object='tests/check_aide-check_progress.obj' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(check_aide_CFLAGS) $(CFLAGS) -c -o tests/check_aide-check_progress.obj `if test -f 'tests/check_progress.c'; then $(CYGPATH_W) 'tests/check_progress.c'; else $(CYGPATH_W) '$(srcdir)/tests/check_progress.c'; fi`
src/check_aide-md.o: src/md.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(check_aide_CFLAGS) $(CFLAGS) -MT src/check_aide-md.o -MD -MP -MF src/$(DEPDIR)/check_aide-md.Tpo -c -o src/check_aide-md.o `test -f 'src/md.c' || echo '$(srcdir)/'`src/md.c
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) src/$(DEPDIR)/check_aide-md.Tpo src/$(DEPDIR)/check_aide-md.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='src/md.c' object='src/check_aide-md.o' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(check_aide_CFLAGS) $(CFLAGS) -c -o src/check_aide-md.o `test -f 'src/md.c' || echo '$(srcdir)/'`src/md.c
src/check_aide-md.obj: src/md.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(check_aide_CFLAGS) $(CFLAGS) -MT src/check_aide-md.obj -MD -MP -MF src/$(DEPDIR)/check_aide-md.Tpo -c -o src/check_aide-md.obj `if test -f 'src/md.c'; then $(CYGPATH_W) 'src/md.c'; else $(CYGPATH_W) '$(srcdir)/src/md.c'; fi`
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) src/$(DEPDIR)/check_aide-md.Tpo src/$(DEPDIR)/check_aide-md.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='src/md.c' object='src/check_aide-md.obj' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(check_aide_CFLAGS) $(CFLAGS) -c -o src/check_aide-md.obj `if test -f 'src/md.c'; then $(CYGPATH_W) 'src/md.c'; else $(CYGPATH_W) '$(srcdir)/src/md.c'; fi`
src/check_aide-file.o: src/file.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(check_aide_CFLAGS) $(CFLAGS) -MT src/check_aide-file.o -MD -MP -MF src/$(DEPDIR)/check_aide-file.Tpo -c -o src/check_aide-file.o `test -f 'src/file.c' || echo '$(srcdir)/'`src/file.c
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) src/$(DEPDIR)/check_aide-file.Tpo src/$(DEPDIR)/check_aide-file.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='src/file.c' object='src/check_aide-file.o' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(check_aide_CFLAGS) $(CFLAGS) -c -o src/check_aide-file.o `test -f 'src/file.c' || echo '$(srcdir)/'`src/file.c
src/check_aide-file.obj: src/file.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(check_aide_CFLAGS) $(CFLAGS) -MT src/check_aide-file.obj -MD -MP -MF src/$(DEPDIR)/check_aide-file.Tpo -c -o src/check_aide-file.obj `if test -f 'src/file.c'; then $(CYGPATH_W) 'src/file.c'; else $(CYGPATH_W) '$(srcdir)/src/file.c'; fi`
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) src/$(DEPDIR)/check_aide-file.Tpo src/$(DEPDIR)/check_aide-file.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='src/file.c' object='src/check_aide-file.obj' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(check_aide_CFLAGS) $(CFLAGS) -c -o src/check_aide-file.obj `if test -f 'src/file.c'; then $(CYGPATH_W) 'src/file.c'; else $(CYGPATH_W) '$(srcdir)/src/file.c'; fi`
src/check_aide-log.o: src/log.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(check_aide_CFLAGS) $(CFLAGS) -MT src/check_aide-log.o -MD -MP -MF src/$(DEPDIR)/check_aide-log.Tpo -c -o src/check_aide-log.o `test -f 'src/log.c' || echo '$(srcdir)/'`src/log.c
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) src/$(DEPDIR)/check_aide-log.Tpo src/$(DEPDIR)/check_aide-log.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='src/log.c' object='src/check_aide-log.o' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(check_aide_CFLAGS) $(CFLAGS) -c -o src/check_aide-log.o `test -f 'src/log.c' || echo '$(srcdir)/'`src/log.c
src/check_aide-log.obj: src/log.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(check_aide_CFLAGS) $(CFLAGS) -MT src/check_aide-log.obj -MD -MP -MF src/$(DEPDIR)/check_aide-log.Tpo -c -o src/check_aide-log.obj `if test -f 'src/log.c'; then $(CYGPATH_W) 'src/log.c'; else $(CYGPATH_W) '$(srcdir)/src/log.c'; fi`
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) src/$(DEPDIR)/check_aide-log.Tpo src/$(DEPDIR)/check_aide-log.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='src/log.c' object='src/check_aide-log.obj' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(check_aide_CFLAGS) $(CFLAGS) -c -o src/check_aide-log.obj `if test -f 'src/log.c'; then $(CYGPATH_W) 'src/log.c'; else $(CYGPATH_W) '$(srcdir)/src/log.c'; fi`
src/check_aide-util.o: src/util.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(check_aide_CFLAGS) $(CFLAGS) -MT src/check_aide-util.o -MD -MP -MF src/$(DEPDIR)/check_aide-util.Tpo -c -o src/check_aide-util.o `test -f 'src/util.c' || echo '$(srcdir)/'`src/util.c
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) src/$(DEPDIR)/check_aide-util.Tpo src/$(DEPDIR)/check_aide-util.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='src/util.c' object='src/check_aide-util.o' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(check_aide_CFLAGS) $(CFLAGS) -c -o src/check_aide-util.o `test -f 'src/util.c' || echo '$(srcdir)/'`src/util.c
src/check_aide-util.obj: src/util.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(check_aide_CFLAGS) $(CFLAGS) -MT src/check_aide-util.obj -MD -MP -MF src/$(DEPDIR)/check_aide-util.Tpo -c -o src/check_aide-util.obj `if test -f 'src/util.c'; then $(CYGPATH_W) 'src/util.c'; else $(CYGPATH_W) '$(srcdir)/src/util.c'; fi`
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) src/$(DEPDIR)/check_aide-util.Tpo src/$(DEPDIR)/check_aide-util.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='src/util.c' object='src/check_aide-util.obj' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(check_aide_CFLAGS) $(CFLAGS) -c -o src/check_aide-util.obj `if test -f 'src/util.c'; then $(CYGPATH_W) 'src/util.c'; else $(CYGPATH_W) '$(srcdir)/src/util.c'; fi`
src/check_aide-list.o: src/list.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(check_aide_CFLAGS) $(CFLAGS) -MT src/check_aide-list.o -MD -MP -MF src/$(DEPDIR)/check_aide-list.Tpo -c -o src/check_aide-list.o `test -f 'src/list.c' || echo '$(srcdir)/'`src/list.c
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) src/$(DEPDIR)/check_aide-list.Tpo src/$(DEPDIR)/check_aide-list.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='src/list.c' object='src/check_aide-list.o' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(check_aide_CFLAGS) $(CFLAGS) -c -o src/check_aide-list.o `test -f 'src/list.c' || echo '$(srcdir)/'`src/list.c
src/check_aide-list.obj: src/list.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(check_aide_CFLAGS) $(CFLAGS) -MT src/check_aide-list.obj -MD -MP -MF src/$(DEPDIR)/check_aide-list.Tpo -c -o src/check_aide-list.obj `if test -f 'src/list.c'; then $(CYGPATH_W) 'src/list.c'; else $(CYGPATH_W) '$(srcdir)/src/list.c'; fi`
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) src/$(DEPDIR)/check_aide-list.Tpo src/$(DEPDIR)/check_aide-list.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='src/list.c' object='src/check_aide-list.obj' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(check_aide_CFLAGS) $(CFLAGS) -c -o src/check_aide-list.obj `if test -f 'src/list.c'; then $(CYGPATH_W) 'src/list.c'; else $(CYGPATH_W) '$(srcdir)/src/list.c'; fi`
src/check_aide-tree.o: src/tree.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(check_aide_CFLAGS) $(CFLAGS) -MT src/check_aide-tree.o -MD -MP -MF src/$(DEPDIR)/check_aide-tree.Tpo -c -o src/check_aide-tree.o `test -f 'src/tree.c' || echo '$(srcdir)/'`src/tree.c
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) src/$(DEPDIR)/check_aide-tree.Tpo src/$(DEPDIR)/check_aide-tree.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='src/tree.c' object='src/check_aide-tree.o' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(check_aide_CFLAGS) $(CFLAGS) -c -o src/check_aide-tree.o `test -f 'src/tree.c' || echo '$(srcdir)/'`src/tree.c
src/check_aide-tree.obj: src/tree.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(check_aide_CFLAGS) $(CFLAGS) -MT src/check_aide-tree.obj -MD -MP -MF src/$(DEPDIR)/check_aide-tree.Tpo -c -o src/check_aide-tree.obj `if test -f 'src/tree.c'; then $(CYGPATH_W) 'src/tree.c'; else $(CYGPATH_W) '$(srcdir)/src/tree.c'; fi`
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) src/$(DEPDIR)/check_aide-tree.Tpo src/$(DEPDIR)/check_aide-tree.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='src/tree.c' object='src/check_aide-tree.obj' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(check_aide_CFLAGS) $(CFLAGS) -c -o src/check_aide-tree.obj `if test -f 'src/tree.c'; then $(CYGPATH_W) 'src/tree.c'; else $(CYGPATH_W) '$(srcdir)/src/tree.c'; fi`
src/check_aide-rx_rule.o: src/rx_rule.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(check_aide_CFLAGS) $(CFLAGS) -MT src/check_aide-rx_rule.o -MD -MP -MF src/$(DEPDIR)/check_aide-rx_rule.Tpo -c -o src/check_aide-rx_rule.o `test -f 'src/rx_rule.c' || echo '$(srcdir)/'`src/rx_rule.c
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) src/$(DEPDIR)/check_aide-rx_rule.Tpo src/$(DEPDIR)/check_aide-rx_rule.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='src/rx_rule.c' object='src/check_aide-rx_rule.o' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(check_aide_CFLAGS) $(CFLAGS) -c -o src/check_aide-rx_rule.o `test -f 'src/rx_rule.c' || echo '$(srcdir)/'`src/rx_rule.c
src/check_aide-rx_rule.obj: src/rx_rule.c
@am__fastdepCC_TRUE@ $(AM_V_CC)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(check_aide_CFLAGS) $(CFLAGS) -MT src/check_aide-rx_rule.obj -MD -MP -MF src/$(DEPDIR)/check_aide-rx_rule.Tpo -c -o src/check_aide-rx_rule.obj `if test -f 'src/rx_rule.c'; then $(CYGPATH_W) 'src/rx_rule.c'; else $(CYGPATH_W) '$(srcdir)/src/rx_rule.c'; fi`
@am__fastdepCC_TRUE@ $(AM_V_at)$(am__mv) src/$(DEPDIR)/check_aide-rx_rule.Tpo src/$(DEPDIR)/check_aide-rx_rule.Po
@AMDEP_TRUE@@am__fastdepCC_FALSE@ $(AM_V_CC)source='src/rx_rule.c' object='src/check_aide-rx_rule.obj' libtool=no @AMDEPBACKSLASH@
@AMDEP_TRUE@@am__fastdepCC_FALSE@ DEPDIR=$(DEPDIR) $(CCDEPMODE) $(depcomp) @AMDEPBACKSLASH@
@am__fastdepCC_FALSE@ $(AM_V_CC@am__nodep@)$(CC) $(DEFS) $(DEFAULT_INCLUDES) $(INCLUDES) $(AM_CPPFLAGS) $(CPPFLAGS) $(check_aide_CFLAGS) $(CFLAGS) -c -o src/check_aide-rx_rule.obj `if test -f 'src/rx_rule.c'; then $(CYGPATH_W) 'src/rx_rule.c'; else $(CYGPATH_W) '$(srcdir)/src/rx_rule.c'; fi`
.l.c:
$(AM_V_LEX)$(am__skiplex) $(SHELL) $(YLWRAP) $< $(LEX_OUTPUT_ROOT).c $@ -- $(LEXCOMPILE)
.y.c:
$(AM_V_YACC)$(am__skipyacc) $(SHELL) $(YLWRAP) $< y.tab.c $@ y.tab.h `echo $@ | $(am__yacc_c2h)` y.output $*.output -- $(YACCCOMPILE)
install-man1: $(man_MANS)
@$(NORMAL_INSTALL)
@list1=''; \
list2='$(man_MANS)'; \
test -n "$(man1dir)" \
&& test -n "`echo $$list1$$list2`" \
|| exit 0; \
echo " $(MKDIR_P) '$(DESTDIR)$(man1dir)'"; \
$(MKDIR_P) "$(DESTDIR)$(man1dir)" || exit 1; \
{ for i in $$list1; do echo "$$i"; done; \
if test -n "$$list2"; then \
for i in $$list2; do echo "$$i"; done \
| sed -n '/\.1[a-z]*$$/p'; \
fi; \
} | 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='$(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,.,'`; \
dir='$(DESTDIR)$(man1dir)'; $(am__uninstall_files_from_dir)
install-man5: $(man_MANS)
@$(NORMAL_INSTALL)
@list1=''; \
list2='$(man_MANS)'; \
test -n "$(man5dir)" \
&& test -n "`echo $$list1$$list2`" \
|| exit 0; \
echo " $(MKDIR_P) '$(DESTDIR)$(man5dir)'"; \
$(MKDIR_P) "$(DESTDIR)$(man5dir)" || exit 1; \
{ for i in $$list1; do echo "$$i"; done; \
if test -n "$$list2"; then \
for i in $$list2; do echo "$$i"; done \
| sed -n '/\.5[a-z]*$$/p'; \
fi; \
} | 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,^[^5][0-9a-z]*$$,5,;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)$(man5dir)/$$inst'"; \
$(INSTALL_DATA) "$$file" "$(DESTDIR)$(man5dir)/$$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)$(man5dir)'"; \
$(INSTALL_DATA) $$files "$(DESTDIR)$(man5dir)" || exit $$?; }; \
done; }
uninstall-man5:
@$(NORMAL_UNINSTALL)
@list=''; test -n "$(man5dir)" || exit 0; \
files=`{ for i in $$list; do echo "$$i"; done; \
l2='$(man_MANS)'; for i in $$l2; do echo "$$i"; done | \
sed -n '/\.5[a-z]*$$/p'; \
} | sed -e 's,.*/,,;h;s,.*\.,,;s,^[^5][0-9a-z]*$$,5,;x' \
-e 's,\.[0-9a-z]*$$,,;$(transform);G;s,\n,.,'`; \
dir='$(DESTDIR)$(man5dir)'; $(am__uninstall_files_from_dir)
ID: $(am__tagged_files)
$(am__define_uniq_tagged_files); mkid -fID $$unique
tags: tags-am
TAGS: tags
tags-am: $(TAGS_DEPENDENCIES) $(am__tagged_files)
set x; \
here=`pwd`; \
$(am__define_uniq_tagged_files); \
shift; \
if test -z "$(ETAGS_ARGS)$$*$$unique"; then :; else \
test -n "$$unique" || unique=$$empty_fix; \
if test $$# -gt 0; then \
$(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \
"$$@" $$unique; \
else \
$(ETAGS) $(ETAGSFLAGS) $(AM_ETAGSFLAGS) $(ETAGS_ARGS) \
$$unique; \
fi; \
fi
ctags: ctags-am
CTAGS: ctags
ctags-am: $(TAGS_DEPENDENCIES) $(am__tagged_files)
$(am__define_uniq_tagged_files); \
test -z "$(CTAGS_ARGS)$$unique" \
|| $(CTAGS) $(CTAGSFLAGS) $(AM_CTAGSFLAGS) $(CTAGS_ARGS) \
$$unique
GTAGS:
here=`$(am__cd) $(top_builddir) && pwd` \
&& $(am__cd) $(top_srcdir) \
&& gtags -i $(GTAGS_ARGS) "$$here"
cscope: cscope.files
test ! -s cscope.files \
|| $(CSCOPE) -b -q $(AM_CSCOPEFLAGS) $(CSCOPEFLAGS) -i cscope.files $(CSCOPE_ARGS)
clean-cscope:
-rm -f cscope.files
cscope.files: clean-cscope cscopelist
cscopelist: cscopelist-am
cscopelist-am: $(am__tagged_files)
list='$(am__tagged_files)'; \
case "$(srcdir)" in \
[\\/]* | ?:[\\/]*) sdir="$(srcdir)" ;; \
*) sdir=$(subdir)/$(srcdir) ;; \
esac; \
for i in $$list; do \
if test -f "$$i"; then \
echo "$(subdir)/$$i"; \
else \
echo "$$sdir/$$i"; \
fi; \
done >> $(top_builddir)/cscope.files
distclean-tags:
-rm -f TAGS ID GTAGS GRTAGS GSYMS GPATH tags
-rm -f cscope.out cscope.in.out cscope.po.out cscope.files
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 $(AM_TESTS_FD_REDIRECT); 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 \
col="$$grn"; \
else \
col="$$red"; \
fi; \
echo "$${col}$$dashes$${std}"; \
echo "$${col}$$banner$${std}"; \
test -z "$$skipped" || echo "$${col}$$skipped$${std}"; \
test -z "$$report" || echo "$${col}$$report$${std}"; \
echo "$${col}$$dashes$${std}"; \
test "$$failed" -eq 0; \
else :; fi
distdir: $(BUILT_SOURCES)
$(MAKE) $(AM_MAKEFLAGS) distdir-am
distdir-am: $(DISTFILES)
$(am__remove_distdir)
$(AM_V_at)$(MKDIR_P) "$(distdir)"
@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
-test -n "$(am__skip_mode_fix)" \
|| find "$(distdir)" -type d ! -perm -755 \
-exec chmod u+rwx,go+rx {} \; -o \
! -type d ! -perm -444 -links 1 -exec chmod a+r {} \; -o \
! -type d ! -perm -400 -exec chmod a+r {} \; -o \
! -type d ! -perm -444 -exec $(install_sh) -c -m a+r {} {} \; \
|| chmod -R a+r "$(distdir)"
dist-gzip: distdir
tardir=$(distdir) && $(am__tar) | eval GZIP= gzip $(GZIP_ENV) -c >$(distdir).tar.gz
$(am__post_remove_distdir)
dist-bzip2: distdir
tardir=$(distdir) && $(am__tar) | BZIP2=$${BZIP2--9} bzip2 -c >$(distdir).tar.bz2
$(am__post_remove_distdir)
dist-lzip: distdir
tardir=$(distdir) && $(am__tar) | lzip -c $${LZIP_OPT--9} >$(distdir).tar.lz
$(am__post_remove_distdir)
dist-xz: distdir
tardir=$(distdir) && $(am__tar) | XZ_OPT=$${XZ_OPT--e} xz -c >$(distdir).tar.xz
$(am__post_remove_distdir)
dist-zstd: distdir
tardir=$(distdir) && $(am__tar) | zstd -c $${ZSTD_CLEVEL-$${ZSTD_OPT--19}} >$(distdir).tar.zst
$(am__post_remove_distdir)
dist-tarZ: distdir
@echo WARNING: "Support for distribution archives compressed with" \
"legacy program 'compress' is deprecated." >&2
@echo WARNING: "It will be removed altogether in Automake 2.0" >&2
tardir=$(distdir) && $(am__tar) | compress -c >$(distdir).tar.Z
$(am__post_remove_distdir)
dist-shar: distdir
@echo WARNING: "Support for shar distribution archives is" \
"deprecated." >&2
@echo WARNING: "It will be removed altogether in Automake 2.0" >&2
shar $(distdir) | eval GZIP= gzip $(GZIP_ENV) -c >$(distdir).shar.gz
$(am__post_remove_distdir)
dist-zip: distdir
-rm -f $(distdir).zip
zip -rq $(distdir).zip $(distdir)
$(am__post_remove_distdir)
dist dist-all:
$(MAKE) $(AM_MAKEFLAGS) $(DIST_TARGETS) am__post_remove_distdir='@:'
$(am__post_remove_distdir)
# This target untars the dist file and tries a VPATH configuration. Then
# it guarantees that the distribution is self-contained by making another
# tarfile.
distcheck: dist
case '$(DIST_ARCHIVES)' in \
*.tar.gz*) \
eval GZIP= gzip -dc $(distdir).tar.gz | $(am__untar) ;;\
*.tar.bz2*) \
bzip2 -dc $(distdir).tar.bz2 | $(am__untar) ;;\
*.tar.lz*) \
lzip -dc $(distdir).tar.lz | $(am__untar) ;;\
*.tar.xz*) \
xz -dc $(distdir).tar.xz | $(am__untar) ;;\
*.tar.Z*) \
uncompress -c $(distdir).tar.Z | $(am__untar) ;;\
*.shar.gz*) \
eval GZIP= gzip -dc $(distdir).shar.gz | unshar ;;\
*.zip*) \
unzip $(distdir).zip ;;\
*.tar.zst*) \
zstd -dc $(distdir).tar.zst | $(am__untar) ;;\
esac
chmod -R a-w $(distdir)
chmod u+w $(distdir)
mkdir $(distdir)/_build $(distdir)/_build/sub $(distdir)/_inst
chmod a-w $(distdir)
test -d $(distdir)/_build || exit 0; \
dc_install_base=`$(am__cd) $(distdir)/_inst && pwd | sed -e 's,^[^:\\/]:[\\/],/,'` \
&& dc_destdir="$${TMPDIR-/tmp}/am-dc-$$$$/" \
&& am__cwd=`pwd` \
&& $(am__cd) $(distdir)/_build/sub \
&& ../../configure \
$(AM_DISTCHECK_CONFIGURE_FLAGS) \
$(DISTCHECK_CONFIGURE_FLAGS) \
--srcdir=../.. --prefix="$$dc_install_base" \
&& $(MAKE) $(AM_MAKEFLAGS) \
&& $(MAKE) $(AM_MAKEFLAGS) $(AM_DISTCHECK_DVI_TARGET) \
&& $(MAKE) $(AM_MAKEFLAGS) check \
&& $(MAKE) $(AM_MAKEFLAGS) install \
&& $(MAKE) $(AM_MAKEFLAGS) installcheck \
&& $(MAKE) $(AM_MAKEFLAGS) uninstall \
&& $(MAKE) $(AM_MAKEFLAGS) distuninstallcheck_dir="$$dc_install_base" \
distuninstallcheck \
&& chmod -R a-w "$$dc_install_base" \
&& ({ \
(cd ../.. && umask 077 && mkdir "$$dc_destdir") \
&& $(MAKE) $(AM_MAKEFLAGS) DESTDIR="$$dc_destdir" install \
&& $(MAKE) $(AM_MAKEFLAGS) DESTDIR="$$dc_destdir" uninstall \
&& $(MAKE) $(AM_MAKEFLAGS) DESTDIR="$$dc_destdir" \
distuninstallcheck_dir="$$dc_destdir" distuninstallcheck; \
} || { rm -rf "$$dc_destdir"; exit 1; }) \
&& rm -rf "$$dc_destdir" \
&& $(MAKE) $(AM_MAKEFLAGS) dist \
&& rm -rf $(DIST_ARCHIVES) \
&& $(MAKE) $(AM_MAKEFLAGS) distcleancheck \
&& cd "$$am__cwd" \
|| exit 1
$(am__post_remove_distdir)
@(echo "$(distdir) archives ready for distribution: "; \
list='$(DIST_ARCHIVES)'; for i in $$list; do echo $$i; done) | \
sed -e 1h -e 1s/./=/g -e 1p -e 1x -e '$$p' -e '$$x'
distuninstallcheck:
@test -n '$(distuninstallcheck_dir)' || { \
echo 'ERROR: trying to run $@ with an empty' \
'$$(distuninstallcheck_dir)' >&2; \
exit 1; \
}; \
$(am__cd) '$(distuninstallcheck_dir)' || { \
echo 'ERROR: cannot chdir into $(distuninstallcheck_dir)' >&2; \
exit 1; \
}; \
test `$(am__distuninstallcheck_listfiles) | wc -l` -eq 0 \
|| { echo "ERROR: files left after uninstall:" ; \
if test -n "$(DESTDIR)"; then \
echo " (check DESTDIR support)"; \
fi ; \
$(distuninstallcheck_listfiles) ; \
exit 1; } >&2
distcleancheck: distclean
@if test '$(srcdir)' = . ; then \
echo "ERROR: distcleancheck can only run from a VPATH build" ; \
exit 1 ; \
fi
@test `$(distcleancheck_listfiles) | wc -l` -eq 0 \
|| { echo "ERROR: files left in build directory after distclean:" ; \
$(distcleancheck_listfiles) ; \
exit 1; } >&2
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)" "$(DESTDIR)$(man5dir)"; do \
test -z "$$dir" || $(MKDIR_P) "$$dir"; \
done
install: $(BUILT_SOURCES)
$(MAKE) $(AM_MAKEFLAGS) install-am
install-exec: $(BUILT_SOURCES)
$(MAKE) $(AM_MAKEFLAGS) install-exec-am
install-data: install-data-am
uninstall: uninstall-am
install-am: all-am
@$(MAKE) $(AM_MAKEFLAGS) install-exec-am install-data-am
installcheck: installcheck-am
install-strip:
if test -z '$(STRIP)'; then \
$(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \
install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \
install; \
else \
$(MAKE) $(AM_MAKEFLAGS) INSTALL_PROGRAM="$(INSTALL_STRIP_PROGRAM)" \
install_sh_PROGRAM="$(INSTALL_STRIP_PROGRAM)" INSTALL_STRIP_FLAG=-s \
"INSTALL_PROGRAM_ENV=STRIPPROG='$(STRIP)'" install; \
fi
mostlyclean-generic:
clean-generic:
-$(am__rm_f) $(CLEANFILES)
distclean-generic:
-$(am__rm_f) $(CONFIG_CLEAN_FILES)
-test . = "$(srcdir)" || $(am__rm_f) $(CONFIG_CLEAN_VPATH_FILES)
-$(am__rm_f) src/$(DEPDIR)/$(am__dirstamp)
-$(am__rm_f) src/$(am__dirstamp)
-$(am__rm_f) tests/$(DEPDIR)/$(am__dirstamp)
-$(am__rm_f) tests/$(am__dirstamp)
maintainer-clean-generic:
@echo "This command is intended for maintainers to use"
@echo "it deletes files that may require special tools to rebuild."
-$(am__rm_f) $(BUILT_SOURCES)
-$(am__rm_f) src/conf_lex.c
-$(am__rm_f) src/conf_yacc.c
-$(am__rm_f) src/conf_yacc.h
clean: clean-am
clean-am: clean-binPROGRAMS clean-checkPROGRAMS clean-generic \
mostlyclean-am
distclean: distclean-am
-rm -f $(am__CONFIG_DISTCLEAN_FILES)
-rm -f src/$(DEPDIR)/aide-aide.Po
-rm -f src/$(DEPDIR)/aide-attributes.Po
-rm -f src/$(DEPDIR)/aide-base64.Po
-rm -f src/$(DEPDIR)/aide-be.Po
-rm -f src/$(DEPDIR)/aide-commandconf.Po
-rm -f src/$(DEPDIR)/aide-conf_ast.Po
-rm -f src/$(DEPDIR)/aide-conf_eval.Po
-rm -f src/$(DEPDIR)/aide-conf_lex.Po
-rm -f src/$(DEPDIR)/aide-conf_yacc.Po
-rm -f src/$(DEPDIR)/aide-db.Po
-rm -f src/$(DEPDIR)/aide-db_disk.Po
-rm -f src/$(DEPDIR)/aide-db_file.Po
-rm -f src/$(DEPDIR)/aide-db_list.Po
-rm -f src/$(DEPDIR)/aide-do_md.Po
-rm -f src/$(DEPDIR)/aide-e2fsattrs.Po
-rm -f src/$(DEPDIR)/aide-file.Po
-rm -f src/$(DEPDIR)/aide-fopen.Po
-rm -f src/$(DEPDIR)/aide-gen_list.Po
-rm -f src/$(DEPDIR)/aide-getopt.Po
-rm -f src/$(DEPDIR)/aide-getopt1.Po
-rm -f src/$(DEPDIR)/aide-hashsum.Po
-rm -f src/$(DEPDIR)/aide-list.Po
-rm -f src/$(DEPDIR)/aide-log.Po
-rm -f src/$(DEPDIR)/aide-md.Po
-rm -f src/$(DEPDIR)/aide-progress.Po
-rm -f src/$(DEPDIR)/aide-queue.Po
-rm -f src/$(DEPDIR)/aide-report.Po
-rm -f src/$(DEPDIR)/aide-report_json.Po
-rm -f src/$(DEPDIR)/aide-report_plain.Po
-rm -f src/$(DEPDIR)/aide-rx_rule.Po
-rm -f src/$(DEPDIR)/aide-seltree.Po
-rm -f src/$(DEPDIR)/aide-symboltable.Po
-rm -f src/$(DEPDIR)/aide-tree.Po
-rm -f src/$(DEPDIR)/aide-url.Po
-rm -f src/$(DEPDIR)/aide-util.Po
-rm -f src/$(DEPDIR)/check_aide-attributes.Po
-rm -f src/$(DEPDIR)/check_aide-base64.Po
-rm -f src/$(DEPDIR)/check_aide-file.Po
-rm -f src/$(DEPDIR)/check_aide-hashsum.Po
-rm -f src/$(DEPDIR)/check_aide-list.Po
-rm -f src/$(DEPDIR)/check_aide-log.Po
-rm -f src/$(DEPDIR)/check_aide-md.Po
-rm -f src/$(DEPDIR)/check_aide-rx_rule.Po
-rm -f src/$(DEPDIR)/check_aide-seltree.Po
-rm -f src/$(DEPDIR)/check_aide-tree.Po
-rm -f src/$(DEPDIR)/check_aide-util.Po
-rm -f tests/$(DEPDIR)/check_aide-check_aide.Po
-rm -f tests/$(DEPDIR)/check_aide-check_attributes.Po
-rm -f tests/$(DEPDIR)/check_aide-check_base64.Po
-rm -f tests/$(DEPDIR)/check_aide-check_hashsum.Po
-rm -f tests/$(DEPDIR)/check_aide-check_progress.Po
-rm -f tests/$(DEPDIR)/check_aide-check_seltree.Po
-rm -f Makefile
distclean-am: clean-am distclean-compile distclean-generic \
distclean-hdr 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-man5
install-pdf: install-pdf-am
install-pdf-am:
install-ps: install-ps-am
install-ps-am:
installcheck-am:
maintainer-clean: maintainer-clean-am
-rm -f $(am__CONFIG_DISTCLEAN_FILES)
-rm -rf $(top_srcdir)/autom4te.cache
-rm -f src/$(DEPDIR)/aide-aide.Po
-rm -f src/$(DEPDIR)/aide-attributes.Po
-rm -f src/$(DEPDIR)/aide-base64.Po
-rm -f src/$(DEPDIR)/aide-be.Po
-rm -f src/$(DEPDIR)/aide-commandconf.Po
-rm -f src/$(DEPDIR)/aide-conf_ast.Po
-rm -f src/$(DEPDIR)/aide-conf_eval.Po
-rm -f src/$(DEPDIR)/aide-conf_lex.Po
-rm -f src/$(DEPDIR)/aide-conf_yacc.Po
-rm -f src/$(DEPDIR)/aide-db.Po
-rm -f src/$(DEPDIR)/aide-db_disk.Po
-rm -f src/$(DEPDIR)/aide-db_file.Po
-rm -f src/$(DEPDIR)/aide-db_list.Po
-rm -f src/$(DEPDIR)/aide-do_md.Po
-rm -f src/$(DEPDIR)/aide-e2fsattrs.Po
-rm -f src/$(DEPDIR)/aide-file.Po
-rm -f src/$(DEPDIR)/aide-fopen.Po
-rm -f src/$(DEPDIR)/aide-gen_list.Po
-rm -f src/$(DEPDIR)/aide-getopt.Po
-rm -f src/$(DEPDIR)/aide-getopt1.Po
-rm -f src/$(DEPDIR)/aide-hashsum.Po
-rm -f src/$(DEPDIR)/aide-list.Po
-rm -f src/$(DEPDIR)/aide-log.Po
-rm -f src/$(DEPDIR)/aide-md.Po
-rm -f src/$(DEPDIR)/aide-progress.Po
-rm -f src/$(DEPDIR)/aide-queue.Po
-rm -f src/$(DEPDIR)/aide-report.Po
-rm -f src/$(DEPDIR)/aide-report_json.Po
-rm -f src/$(DEPDIR)/aide-report_plain.Po
-rm -f src/$(DEPDIR)/aide-rx_rule.Po
-rm -f src/$(DEPDIR)/aide-seltree.Po
-rm -f src/$(DEPDIR)/aide-symboltable.Po
-rm -f src/$(DEPDIR)/aide-tree.Po
-rm -f src/$(DEPDIR)/aide-url.Po
-rm -f src/$(DEPDIR)/aide-util.Po
-rm -f src/$(DEPDIR)/check_aide-attributes.Po
-rm -f src/$(DEPDIR)/check_aide-base64.Po
-rm -f src/$(DEPDIR)/check_aide-file.Po
-rm -f src/$(DEPDIR)/check_aide-hashsum.Po
-rm -f src/$(DEPDIR)/check_aide-list.Po
-rm -f src/$(DEPDIR)/check_aide-log.Po
-rm -f src/$(DEPDIR)/check_aide-md.Po
-rm -f src/$(DEPDIR)/check_aide-rx_rule.Po
-rm -f src/$(DEPDIR)/check_aide-seltree.Po
-rm -f src/$(DEPDIR)/check_aide-tree.Po
-rm -f src/$(DEPDIR)/check_aide-util.Po
-rm -f tests/$(DEPDIR)/check_aide-check_aide.Po
-rm -f tests/$(DEPDIR)/check_aide-check_attributes.Po
-rm -f tests/$(DEPDIR)/check_aide-check_base64.Po
-rm -f tests/$(DEPDIR)/check_aide-check_hashsum.Po
-rm -f tests/$(DEPDIR)/check_aide-check_progress.Po
-rm -f tests/$(DEPDIR)/check_aide-check_seltree.Po
-rm -f Makefile
maintainer-clean-am: distclean-am maintainer-clean-generic
mostlyclean: mostlyclean-am
mostlyclean-am: mostlyclean-compile mostlyclean-generic
pdf: pdf-am
pdf-am:
ps: ps-am
ps-am:
uninstall-am: uninstall-binPROGRAMS uninstall-man
uninstall-man: uninstall-man1 uninstall-man5
.MAKE: all check check-am install install-am install-exec \
install-strip
.PHONY: CTAGS GTAGS TAGS all all-am am--depfiles am--refresh check \
check-TESTS check-am clean clean-binPROGRAMS \
clean-checkPROGRAMS clean-cscope clean-generic cscope \
cscopelist-am ctags ctags-am dist dist-all dist-bzip2 \
dist-gzip dist-lzip dist-shar dist-tarZ dist-xz dist-zip \
dist-zstd distcheck distclean distclean-compile \
distclean-generic distclean-hdr distclean-tags distcleancheck \
distdir distuninstallcheck 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-man5 \
install-pdf install-pdf-am install-ps install-ps-am \
install-strip installcheck installcheck-am installdirs \
maintainer-clean maintainer-clean-generic mostlyclean \
mostlyclean-compile mostlyclean-generic pdf pdf-am ps ps-am \
tags tags-am uninstall uninstall-am uninstall-binPROGRAMS \
uninstall-man uninstall-man1 uninstall-man5
.PRECIOUS: Makefile
src/conf_yacc.c: src/conf_yacc.y
$(YACC) $(AM_YFLAGS) -Wno-yacc -Wall -Werror -o $@ -p conf $<
src/conf_lex.c: src/conf_lex.l src/conf_yacc.c
$(LEX) $(AM_LFLAGS) -o$@ -Pconf $<
autoreconf-clean: maintainer-clean
-rm -f INSTALL Makefile.in aclocal.m4 compile config.guess \
include/config.h.in include/config.h.in~ config.sub configure configure~ depcomp \
install-sh missing version.m4 ylwrap
-rmdir src/.deps tests/.deps
# Tell versions [3.59,3.63) of GNU make to not export all variables.
# Otherwise a system limit (for SysV at least) may be exceeded.
.NOEXPORT:
# Tell GNU make to disable its built-in pattern rules.
%:: %,v
%:: RCS/%,v
%:: RCS/%
%:: s.%
%:: SCCS/s.%
|