Makefile.am 1007 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  1. MAKEFLAGS=-s
  2. .PHONY: manpages
  3. MAN2HTML = ../scripts/man2html
  4. docs: manpages
  5. web/tcpreplay.html:
  6. $(MAN2HTML) < ../src/tcpreplay.1 > web/tcpreplay.html
  7. web/tcpprep.html:
  8. $(MAN2HTML) < ../src/tcpprep.1 > web/tcpprep.html
  9. web/flowreplay.html:
  10. $(MAN2HTML) < ../src/flowreplay.1 > web/flowreplay.html
  11. web/tcprewrite.html:
  12. $(MAN2HTML) < ../src/tcprewrite.1 > web/tcprewrite.html
  13. web/tcpbridge.html:
  14. $(MAN2HTML) < ../src/tcpbridge.1 > web/tcpbridge.html
  15. manpages: web/tcpreplay.html web/tcpprep.html web/flowreplay.html \
  16. web/tcprewrite.html web/tcpbridge.html
  17. postweb: manpages
  18. rsync -e ssh --exclude '.svn/' --exclude '/**/.svn/' --exclude '/**~' \
  19. --exclude '*~' -avz web/ \
  20. aturner@voigner.synfin.net:/var/www-vhosts/tcpreplay/
  21. scp CHANGELOG TODO aturner@voigner.synfin.net:/var/www-vhosts/tcpreplay/
  22. EXTRA_DIST = CHANGELOG CREDIT HACKING INSTALL LICENSE
  23. clean-docs: clean
  24. -rm -f web/*.html
  25. maintainer-clean-local: clean-docs
  26. -rm -f web/*.html
  27. MAINTAINERCLEANFILES = Makefile.in