timed tail for logfiles. Display loglines given a minimum date and/or a maximum date.
c
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

Makefile.am 475B

12345678910111213141516171819
  1. if HAVE_DOXYGEN
  2. CLEANFILES = doxyfile.stamp
  3. directory = $(top_srcdir)/docs/man/man3/
  4. dist_man_MANS = $(directory)/man_page_1.3 $(directory)/man_page_2.3
  5. $(directory)/man_page_1.3: doxyfile.stamp
  6. $(directory)/man_page_2.3: doxyfile.stamp
  7. doxyfile.stamp:
  8. $(DOXYGEN) Doxyfile
  9. echo Timestamp > doxyfile.stamp
  10. all-local: doxyfile.stamp doc
  11. doc: doxyfile.stamp
  12. clean-local:
  13. -rm -rf $(top_srcdir)/docs/html $(top_srcdir)/docs/man $(top_srcdir)/docs/doxygen_sqlite3.db
  14. endif