aboutsummaryrefslogtreecommitdiffstats
path: root/doc
diff options
context:
space:
mode:
authorGilbert Ramirez <gram@alumni.rice.edu>2001-07-12 22:45:23 +0000
committerGilbert Ramirez <gram@alumni.rice.edu>2001-07-12 22:45:23 +0000
commit34e8119c3250228fdf6d0ffb5c432346bcf51bc5 (patch)
treee707e86058824fbeb1d57b7e2823c77bcc0b611a /doc
parent9c0d2087dc4027e41dbe28249c3d0bbbfc27f30b (diff)
Package mergecap.exe and its HTML documentation.
Update NSIS syntax for newest NSIS. That fix from David O'Shea. Set config.nmake to get non-cygwin version of Python.exe; cygwin version is fouling up on me and I'm not sure why. svn path=/trunk/; revision=3705
Diffstat (limited to 'doc')
-rw-r--r--doc/Makefile.nmake14
1 files changed, 12 insertions, 2 deletions
diff --git a/doc/Makefile.nmake b/doc/Makefile.nmake
index d7299e9979..e77854735a 100644
--- a/doc/Makefile.nmake
+++ b/doc/Makefile.nmake
@@ -1,9 +1,10 @@
#
-# $Id: Makefile.nmake,v 1.3 2001/05/22 16:19:44 gram Exp $
+# $Id: Makefile.nmake,v 1.4 2001/07/12 22:45:22 gram Exp $
include ../config.nmake
-doc: ethereal.html tethereal.html editcap.html text2pcap.html
+doc: ethereal.html tethereal.html editcap.html text2pcap.html \
+ mergecap.html
ethereal.html : ethereal.1
man2html ethereal.1 > $@
@@ -14,6 +15,9 @@ tethereal.html : tethereal.1
editcap.html : editcap.1
man2html editcap.1 > $@
+mergecap.html : mergecap.1
+ man2html mergecap.1 > $@
+
text2pcap.html : text2pcap.1
man2html text2pcap.1 > $@
@@ -41,6 +45,12 @@ editcap.1: editcap.pod ../config.h
--release=$(VERSION) \
> editcap.1
+mergecap.1: mergecap.pod ../config.h
+ $(POD2MAN) mergecap.pod \
+ --center="The Ethereal Network Analyzer" \
+ --release=$(VERSION) \
+ > mergecap.1
+
text2pcap.1: text2pcap.pod ../config.h
$(POD2MAN) text2pcap.pod \
--center="The Ethereal Network Analyzer" \