aboutsummaryrefslogtreecommitdiffstats
path: root/doc/Makefile.nmake
diff options
context:
space:
mode:
authorGuy Harris <guy@alum.mit.edu>2003-02-13 22:35:10 +0000
committerGuy Harris <guy@alum.mit.edu>2003-02-13 22:35:10 +0000
commitacf70fe5356699d5e9e048e51b4051020c47f739 (patch)
tree3565430b40633c5984ea7271881668867fc79f8f /doc/Makefile.nmake
parente62ee5cf8bf9d2b187679d7573e7fa609c133951 (diff)
Make doc/Makefile.nmake work in POSIXLY_CORRECT environment, as per
Santeri Paavolainen's changes to make doc/Makefile.am work in such an environment. Move the idl2eth rules above the mergecap rules, to match the way doc/Makefile.am works. svn path=/trunk/; revision=7140
Diffstat (limited to 'doc/Makefile.nmake')
-rw-r--r--doc/Makefile.nmake58
1 files changed, 29 insertions, 29 deletions
diff --git a/doc/Makefile.nmake b/doc/Makefile.nmake
index ac3de82268..1864d3bede 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.7 2002/01/04 21:20:17 guy Exp $
+# $Id: Makefile.nmake,v 1.8 2003/02/13 22:35:10 guy Exp $
#
# Ethereal - Network traffic analyzer
# By Gerald Combs <gerald@ethereal.com>
@@ -30,16 +30,16 @@ doc: ethereal.html tethereal.html editcap.html idl2eth.html \
mergecap.html text2pcap.html
ethereal.1: ethereal.pod ../config.h
- $(POD2MAN) ethereal.pod \
+ $(POD2MAN) \
--center="The Ethereal Network Analyzer" \
--release=$(VERSION) \
- > ethereal.1
+ ethereal.pod > ethereal.1
ethereal.html: ethereal.pod ../config.h
- $(POD2HTML) ethereal.pod \
+ $(POD2HTML) \
--title="The Ethereal Network Analyzer $(VERSION)" \
--noindex \
- > ethereal.html
+ ethereal.pod > ethereal.html
../tethereal.exe:
cd ..
@@ -50,67 +50,67 @@ ethereal.pod: ethereal.pod.template ../tethereal.exe
..\\tethereal.exe -G | $(PERL) dfilter2pod.pl ethereal.pod.template > ethereal.pod
tethereal.1: tethereal.pod ../config.h
- $(POD2MAN) tethereal.pod \
+ $(POD2MAN) \
--center="The Ethereal Network Analyzer" \
--release=$(VERSION) \
- > tethereal.1
+ tethereal.pod > tethereal.1
tethereal.html: tethereal.pod ../config.h
- $(POD2HTML) tethereal.pod \
+ $(POD2HTML) \
--title="The Ethereal Network Analyzer $(VERSION)" \
--noindex \
- > tethereal.html
+ tethereal.pod > tethereal.html
tethereal.pod: tethereal.pod.template ../tethereal.exe
..\\tethereal.exe -G | $(PERL) dfilter2pod.pl tethereal.pod.template > tethereal.pod
editcap.1: editcap.pod ../config.h
- $(POD2MAN) editcap.pod \
+ $(POD2MAN) \
--center="The Ethereal Network Analyzer" \
--release=$(VERSION) \
- > editcap.1
+ editcap.pod > editcap.1
editcap.html: editcap.pod ../config.h
- $(POD2HTML) editcap.pod \
+ $(POD2HTML) \
--title="The Ethereal Network Analyzer $(VERSION)" \
--noindex \
- > editcap.html
+ editcap.pod > editcap.html
-mergecap.1: mergecap.pod ../config.h
- $(POD2MAN) mergecap.pod \
+idl2eth.1: idl2eth.pod ../config.h
+ $(POD2MAN) \
--center="The Ethereal Network Analyzer" \
--release=$(VERSION) \
- > mergecap.1
+ idl2eth.pod > idl2eth.1
-mergecap.html: mergecap.pod ../config.h
- $(POD2HTML) mergecap.pod \
+idl2eth.html: idl2eth.pod ../config.h
+ $(POD2HTML) \
--title="The Ethereal Network Analyzer $(VERSION)" \
--noindex \
- > mergecap.html
+ idl2eth.pod > idl2eth.html
-idl2eth.1: idl2eth.pod ../config.h
- $(POD2MAN) idl2eth.pod \
+mergecap.1: mergecap.pod ../config.h
+ $(POD2MAN) \
--center="The Ethereal Network Analyzer" \
--release=$(VERSION) \
- > idl2eth.1
+ mergecap.pod > mergecap.1
-idl2eth.html: idl2eth.pod ../config.h
- $(POD2HTML) idl2eth.pod \
+mergecap.html: mergecap.pod ../config.h
+ $(POD2HTML) \
--title="The Ethereal Network Analyzer $(VERSION)" \
--noindex \
- > idl2eth.html
+ mergecap.pod > mergecap.html
text2pcap.1: text2pcap.pod ../config.h
- $(POD2MAN) text2pcap.pod \
+ $(POD2MAN) \
--center="The Ethereal Network Analyzer" \
--release=$(VERSION) \
- > text2pcap.1
+ text2pcap.pod > text2pcap.1
text2pcap.html: text2pcap.pod ../config.h
- $(POD2HTML) text2pcap.pod \
+ $(POD2HTML) \
--title="The Ethereal Network Analyzer $(VERSION)" \
--noindex \
- > text2pcap.html
+ text2pcap.pod > text2pcap.html
clean:
rm -f ethereal.html ethereal.1 ethereal.pod