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

1234567891011121314151617181920212223
  1. dist_man_MANS= $(top_srcdir)/docs/man/man1/ttail.1
  2. if HAVE_DOXYGEN
  3. CLEANFILES = doxyfile.stamp
  4. doxyfile.stamp:
  5. $(DOXYGEN) Doxyfile; \
  6. echo Timestamp > doxyfile.stamp; \
  7. make manpage
  8. html-local: doxyfile.stamp
  9. $(top_srcdir)/docs/man/man1/ttail.1: doxyfile.stamp
  10. manpage:
  11. -mkdir -p $(top_srcdir)/docs/man/man1;\
  12. cp $(top_srcdir)/docs/man/man3/ttail.3 $(top_srcdir)/docs/man/man1/ttail.1;\
  13. sed -i 's/^.TH "ttail" 3/.TH "ttail" 1/' $(top_srcdir)/docs/man/man1/ttail.1
  14. clean-local:
  15. -rm -rf $(top_srcdir)/docs/html $(top_srcdir)/docs/man/man3 $(top_srcdir)/docs/doxygen_sqlite3.db
  16. endif