diff options
author | Gerald Combs <gerald@wireshark.org> | 2003-10-02 22:28:04 +0000 |
---|---|---|
committer | Gerald Combs <gerald@wireshark.org> | 2003-10-02 22:28:04 +0000 |
commit | d99b8a3abc97e91d0684f5085c1eb0acb2d23a76 (patch) | |
tree | 8566da74fb12ef743738e5fd30f775fe9e2aff24 /doc | |
parent | 2a4930db308146c58ed6d44154a455096cf69bf5 (diff) | |
download | wireshark-d99b8a3abc97e91d0684f5085c1eb0acb2d23a76.tar.gz wireshark-d99b8a3abc97e91d0684f5085c1eb0acb2d23a76.tar.bz2 wireshark-d99b8a3abc97e91d0684f5085c1eb0acb2d23a76.zip |
Fix document creation under Windows, add ethereal-filter.html to the NSIS
package.
svn path=/trunk/; revision=8596
Diffstat (limited to 'doc')
-rw-r--r-- | doc/Makefile.nmake | 14 |
1 files changed, 6 insertions, 8 deletions
diff --git a/doc/Makefile.nmake b/doc/Makefile.nmake index 74ef0a1c12..a023e39910 100644 --- a/doc/Makefile.nmake +++ b/doc/Makefile.nmake @@ -1,7 +1,7 @@ # Makefile.nmake # Nmake file for Ethereal documentation # -# $Id: Makefile.nmake,v 1.9 2003/10/01 19:44:05 guy Exp $ +# $Id: Makefile.nmake,v 1.10 2003/10/02 22:28:04 gerald Exp $ # # Ethereal - Network traffic analyzer # By Gerald Combs <gerald@ethereal.com> @@ -26,8 +26,8 @@ include ../config.nmake -doc: ethereal.html tethereal.html editcap.html idl2eth.html \ - mergecap.html text2pcap.html +doc: ethereal.html tethereal.html ethereal-filter.html editcap.html \ + idl2eth.html mergecap.html text2pcap.html ethereal.1: ethereal.pod ../config.h $(POD2MAN) \ @@ -58,9 +58,6 @@ tethereal.html: tethereal.pod ../config.h --noindex \ tethereal.pod > tethereal.html -tethereal.pod: tethereal.pod.template ../tethereal.exe - ..\\tethereal.exe -G | $(PERL) dfilter2pod.pl tethereal.pod.template > tethereal.pod - ethereal-filter.4: ethereal-filter.pod ../config.h $(POD2MAN) \ --center="The Ethereal Network Analyzer" \ @@ -125,8 +122,9 @@ text2pcap.html: text2pcap.pod ../config.h text2pcap.pod > text2pcap.html clean: - rm -f ethereal.html ethereal.1 ethereal.pod - rm -f tethereal.html tethereal.1 tethereal.pod + rm -f ethereal.html ethereal.1 + rm -f tethereal.html tethereal.1 + rm -f ethereal-filter.html ethereal-filter.4 ethereal-filter.pod rm -f editcap.html editcap.1 rm -f idl2eth.html idl2eth.1 rm -f mergecap.html mergecap.1 |