diff options
author | Gilbert Ramirez <gram@alumni.rice.edu> | 2001-05-22 16:19:45 +0000 |
---|---|---|
committer | Gilbert Ramirez <gram@alumni.rice.edu> | 2001-05-22 16:19:45 +0000 |
commit | ec962d8cbde501432666dd45ab3b42beaec6184d (patch) | |
tree | bf93180e54261b9153a37747c1c499c90ec0e891 /doc/Makefile.nmake | |
parent | 1665ab7551392ea961c56509b654fe0c6c9846ab (diff) | |
download | wireshark-ec962d8cbde501432666dd45ab3b42beaec6184d.tar.gz wireshark-ec962d8cbde501432666dd45ab3b42beaec6184d.tar.bz2 wireshark-ec962d8cbde501432666dd45ab3b42beaec6184d.zip |
Win32: build text2pcap doco and package it.
svn path=/trunk/; revision=3435
Diffstat (limited to 'doc/Makefile.nmake')
-rw-r--r-- | doc/Makefile.nmake | 13 |
1 files changed, 11 insertions, 2 deletions
diff --git a/doc/Makefile.nmake b/doc/Makefile.nmake index 6d6317766d..d7299e9979 100644 --- a/doc/Makefile.nmake +++ b/doc/Makefile.nmake @@ -1,9 +1,9 @@ # -# $Id: Makefile.nmake,v 1.2 2001/04/12 18:07:19 gram Exp $ +# $Id: Makefile.nmake,v 1.3 2001/05/22 16:19:44 gram Exp $ include ../config.nmake -doc: ethereal.html tethereal.html editcap.html +doc: ethereal.html tethereal.html editcap.html text2pcap.html ethereal.html : ethereal.1 man2html ethereal.1 > $@ @@ -14,6 +14,9 @@ tethereal.html : tethereal.1 editcap.html : editcap.1 man2html editcap.1 > $@ +text2pcap.html : text2pcap.1 + man2html text2pcap.1 > $@ + ethereal.1: ethereal.pod ../config.h $(POD2MAN) ethereal.pod \ --center="The Ethereal Network Analyzer" \ @@ -38,6 +41,12 @@ editcap.1: editcap.pod ../config.h --release=$(VERSION) \ > editcap.1 +text2pcap.1: text2pcap.pod ../config.h + $(POD2MAN) text2pcap.pod \ + --center="The Ethereal Network Analyzer" \ + --release=$(VERSION) \ + > text2pcap.1 + clean: rm -f ethereal.html ethereal.1 ethereal.pod rm -f tethereal.html tethereal.1 tethereal.pod |