|
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 | |
|---|
| 1 | MAKEFLAGS=-s |
|---|
| 2 | |
|---|
| 3 | .PHONY: manpages |
|---|
| 4 | |
|---|
| 5 | MAN2HTML = ../scripts/man2html |
|---|
| 6 | |
|---|
| 7 | docs: manpages |
|---|
| 8 | |
|---|
| 9 | |
|---|
| 10 | web/tcpreplay.html: |
|---|
| 11 | $(MAN2HTML) < ../src/tcpreplay.1 > web/tcpreplay.html |
|---|
| 12 | |
|---|
| 13 | web/tcpprep.html: |
|---|
| 14 | $(MAN2HTML) < ../src/tcpprep.1 > web/tcpprep.html |
|---|
| 15 | |
|---|
| 16 | web/flowreplay.html: |
|---|
| 17 | $(MAN2HTML) < ../src/flowreplay.1 > web/flowreplay.html |
|---|
| 18 | |
|---|
| 19 | web/tcprewrite.html: |
|---|
| 20 | $(MAN2HTML) < ../src/tcprewrite.1 > web/tcprewrite.html |
|---|
| 21 | |
|---|
| 22 | web/tcpbridge.html: |
|---|
| 23 | $(MAN2HTML) < ../src/tcpbridge.1 > web/tcpbridge.html |
|---|
| 24 | |
|---|
| 25 | manpages: web/tcpreplay.html web/tcpprep.html web/flowreplay.html \ |
|---|
| 26 | web/tcprewrite.html web/tcpbridge.html |
|---|
| 27 | |
|---|
| 28 | postweb: 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 | |
|---|
| 35 | EXTRA_DIST = CHANGELOG CREDIT HACKING INSTALL LICENSE |
|---|
| 36 | |
|---|
| 37 | clean-docs: clean |
|---|
| 38 | -rm -f web/*.html |
|---|
| 39 | |
|---|
| 40 | maintainer-clean-local: clean-docs |
|---|
| 41 | -rm -f web/*.html |
|---|
| 42 | |
|---|
| 43 | MAINTAINERCLEANFILES = Makefile.in |
|---|
| 44 | |
|---|