diff options
author | Gilbert Ramirez <gram@alumni.rice.edu> | 2002-02-05 18:39:06 +0000 |
---|---|---|
committer | Gilbert Ramirez <gram@alumni.rice.edu> | 2002-02-05 18:39:06 +0000 |
commit | 949e878ffbb8a5a98a1658d9136c2a8b689650bc (patch) | |
tree | 0da481818c272677d475aba2ccf3044cdcdb27c3 /doc/Makefile.am | |
parent | 007a32e8b1ca9df9b8854d071090d2c0b8985612 (diff) | |
download | wireshark-949e878ffbb8a5a98a1658d9136c2a8b689650bc.tar.gz wireshark-949e878ffbb8a5a98a1658d9136c2a8b689650bc.tar.bz2 wireshark-949e878ffbb8a5a98a1658d9136c2a8b689650bc.zip |
Have configure check for pod2man, thus creating a POD2MAN makefile
variable, allowing it to be overridden during make.
svn path=/trunk/; revision=4697
Diffstat (limited to 'doc/Makefile.am')
-rw-r--r-- | doc/Makefile.am | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/doc/Makefile.am b/doc/Makefile.am index 2098c82548..87a43c7f53 100644 --- a/doc/Makefile.am +++ b/doc/Makefile.am @@ -1,7 +1,7 @@ # Makefile.am # Automake file for Ethereal documentation # -# $Id: Makefile.am,v 1.12 2001/07/30 21:40:13 guy Exp $ +# $Id: Makefile.am,v 1.13 2002/02/05 18:39:06 gram Exp $ # # Ethereal - Network traffic analyzer # By Gerald Combs <gerald@zing.org> @@ -26,7 +26,7 @@ # capture when $(VERSION) changes. ../ethereal.1: ethereal.pod ../config.h - pod2man ethereal.pod \ + $(POD2MAN) ethereal.pod \ --center="The Ethereal Network Analyzer" \ --release=$(VERSION) \ > ../ethereal.1 @@ -35,7 +35,7 @@ ethereal.pod: ethereal.pod.template ../ethereal ../ethereal -G | $(PERL) $(srcdir)/dfilter2pod.pl $(srcdir)/ethereal.pod.template > ethereal.pod ../tethereal.1: tethereal.pod ../config.h - pod2man tethereal.pod \ + $(POD2MAN) tethereal.pod \ --center="The Ethereal Network Analyzer" \ --release=$(VERSION) \ > ../tethereal.1 @@ -44,25 +44,25 @@ tethereal.pod: tethereal.pod.template ../tethereal ../tethereal -G | $(PERL) $(srcdir)/dfilter2pod.pl $(srcdir)/tethereal.pod.template > tethereal.pod ../editcap.1: editcap.pod ../config.h - pod2man $(srcdir)/editcap.pod \ + $(POD2MAN) $(srcdir)/editcap.pod \ --center="The Ethereal Network Analyzer" \ --release=$(VERSION) \ > ../editcap.1 ../idl2eth.1: idl2eth.pod ../config.h - pod2man $(srcdir)/idl2eth.pod \ + $(POD2MAN) $(srcdir)/idl2eth.pod \ --center="The Ethereal Network Analyzer" \ --release=$(VERSION) \ > ../idl2eth.1 ../mergecap.1: mergecap.pod ../config.h - pod2man $(srcdir)/mergecap.pod \ + $(POD2MAN) $(srcdir)/mergecap.pod \ --center="The Ethereal Network Analyzer" \ --release=$(VERSION) \ > ../mergecap.1 ../text2pcap.1: text2pcap.pod ../config.h - pod2man $(srcdir)/text2pcap.pod \ + $(POD2MAN) $(srcdir)/text2pcap.pod \ --center="The Ethereal Network Analyzer" \ --release=$(VERSION) \ > ../text2pcap.1 |