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

1234567891011121314151617181920212223
  1. dist_man_MANS= $(top_srcdir)/docs/man/man1/ttail.1
  2. if HAVE_DOXYGEN
  3. CLEANFILES = doxyfile.stamp
  4. directory = $(top_srcdir)/docs/man/man3/
  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. $(top_srcdir)/docs/man/man1/ttail.1: doxyfile.stamp
  12. -mkdir -p $(top_srcdir)/docs/man/man1;\
  13. cp $(top_srcdir)/docs/man/man3/ttail.3 $(top_srcdir)/docs/man/man1/ttail.1;\
  14. sed -i 's/^.TH "ttail" 3/.TH "ttail" 1/' $(top_srcdir)/docs/man/man1/ttail.1
  15. clean-local:
  16. -rm -rf $(top_srcdir)/docs/html $(top_srcdir)/docs/man/man3 $(top_srcdir)/docs/doxygen_sqlite3.db
  17. endif