| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748 | MAKEFLAGS=-s.PHONY: manpagesdocs: clean-docs manpagesweb/tcpreplay.html:	mkdir -p web; @GROFF@ -Thtml -mman ../src/tcpreplay.1 > web/tcpreplay.htmlweb/tcpprep.html:	@GROFF@ -Thtml -mman ../src/tcpprep.1 > web/tcpprep.htmlweb/tcprewrite.html:	@GROFF@ -Thtml -mman ../src/tcprewrite.1 > web/tcprewrite.htmlweb/tcpbridge.html:	@GROFF@ -Thtml -mman ../src/tcpbridge.1 > web/tcpbridge.htmlweb/tcpreplay-edit.html:	@GROFF@ -Thtml -mman ../src/tcpreplay-edit.1 > web/tcpreplay-edit.htmlweb/tcpliveplay.html:	@GROFF@ -Thtml -mman ../src/tcpliveplay.1 > web/tcpliveplay.htmlweb/tcpcapinfo.html:	@GROFF@ -Thtml -mman ../src/tcpcapinfo.1 > web/tcpcapinfo.htmlmanpages: web/tcpreplay.html web/tcpprep.html web/tcprewrite.html \    web/tcpbridge.html web/tcpreplay-edit.html web/tcpliveplay.html \    web/tcpcapinfo.htmlpostweb: manpages	rsync -qe ssh --exclude '.git/' --exclude '/**/.git/' --exclude '/**~' \	--exclude '*~' -avz web/ \	aturner@malbec.synfin.net:/var/vhosts/tcpreplay/	scp CHANGELOG TODO aturner@malbec.synfin.net:/var/vhosts/tcpreplay/EXTRA_DIST = CHANGELOG CREDIT HACKING INSTALL LICENSE Win32Readme.txtclean-docs: clean	-rm -f web/*.htmlmaintainer-clean-local: clean-docs	-rm -f web/*.htmlMAINTAINERCLEANFILES = Makefile.in 
 |