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 452B

123456789101112131415161718
  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. html-local: doxyfile.stamp
  11. clean-local:
  12. -rm -rf $(top_srcdir)/docs/html $(top_srcdir)/docs/man $(top_srcdir)/docs/doxygen_sqlite3.db
  13. endif