root/trunk/docs/Makefile.am

Revision 1695, 1.0 KB (checked in by aturner, 23 months ago)

fix postweb. refs #66

  • Property svn:eol-style set to native
  • Property svn:keywords set to author date id revision
Line 
1MAKEFLAGS=-s
2
3.PHONY: manpages
4
5MAN2HTML = ../scripts/man2html
6
7docs: manpages
8
9
10web/tcpreplay.html:
11        $(MAN2HTML) < ../src/tcpreplay.1 > web/tcpreplay.html
12
13web/tcpprep.html:
14        $(MAN2HTML) < ../src/tcpprep.1 > web/tcpprep.html
15
16web/flowreplay.html:
17        $(MAN2HTML) < ../src/flowreplay.1 > web/flowreplay.html
18
19web/tcprewrite.html:
20        $(MAN2HTML) < ../src/tcprewrite.1 > web/tcprewrite.html
21
22web/tcpbridge.html:
23        $(MAN2HTML) < ../src/tcpbridge.1 > web/tcpbridge.html
24
25manpages: web/tcpreplay.html web/tcpprep.html web/flowreplay.html \
26        web/tcprewrite.html web/tcpbridge.html
27
28postweb: manpages
29        rsync -e ssh --exclude '.svn/' --exclude '/**/.svn/' --exclude '/**~' \
30        --exclude '*~' -avz web/ \
31        aturner@voigner.synfin.net:/var/www-vhosts/tcpreplay/
32        scp CHANGELOG TODO aturner@voigner.synfin.net:/var/www-vhosts/tcpreplay/
33
34
35EXTRA_DIST = CHANGELOG CREDIT HACKING INSTALL LICENSE
36
37clean-docs: clean
38        -rm -f web/*.html
39
40maintainer-clean-local: clean-docs
41        -rm -f web/*.html
42
43MAINTAINERCLEANFILES = Makefile.in
44
Note: See TracBrowser for help on using the browser.