diff options
author | Balint Reczey <balint@balintreczey.hu> | 2013-03-06 13:31:08 +0000 |
---|---|---|
committer | Balint Reczey <balint@balintreczey.hu> | 2013-03-06 13:31:08 +0000 |
commit | a8f543b56b86e1ac5246c70918dc7cb0f372ed77 (patch) | |
tree | 5aa30d8c53957d915c3ef987af3ee5bff4893adf /doc/Makefile.nmake | |
parent | 974c0e18b9af3da1fdea4363f4abe37259238498 (diff) | |
download | wireshark-a8f543b56b86e1ac5246c70918dc7cb0f372ed77.tar.gz wireshark-a8f543b56b86e1ac5246c70918dc7cb0f372ed77.tar.bz2 wireshark-a8f543b56b86e1ac5246c70918dc7cb0f372ed77.zip |
Merge asn2deb and idl2deb from official Debian package
svn path=/trunk/; revision=48133
Diffstat (limited to 'doc/Makefile.nmake')
-rw-r--r-- | doc/Makefile.nmake | 30 |
1 files changed, 28 insertions, 2 deletions
diff --git a/doc/Makefile.nmake b/doc/Makefile.nmake index de3fb6a253..b8a9a15db1 100644 --- a/doc/Makefile.nmake +++ b/doc/Makefile.nmake @@ -28,10 +28,10 @@ include ../config.nmake doc: wireshark.html tshark.html wireshark-filter.html capinfos.html \ editcap.html idl2wrs.html mergecap.html reordercap.html text2pcap.html dumpcap.html \ - rawshark.html + rawshark.html idl2deb.html asn2deb.html man: wireshark.1 tshark.1 wireshark-filter.4 capinfos.1 editcap.1 \ - idl2wrs.1 mergecap.1 reordercap.1 text2pcap.1 dumpcap.1 rawshark.1 + idl2wrs.1 mergecap.1 reordercap.1 text2pcap.1 dumpcap.1 rawshark.1 idl2deb.1 asn2deb.1 wireshark.pod: wireshark.pod.template AUTHORS-SHORT-FORMAT copy /B wireshark.pod.template + AUTHORS-SHORT-FORMAT wireshark.pod @@ -118,6 +118,32 @@ editcap.html: editcap.pod ../config.h ws.css --noindex \ editcap.pod > editcap.html +asn2deb.1: asn2deb.pod ../config.h + $(POD2MAN) \ + --center="The Wireshark Network Analyzer" \ + --release=$(VERSION) \ + asn2deb.pod > asn2deb.1 + +asn2deb.html: asn2deb.pod ../config.h ws.css + $(POD2HTML) \ + --title="asn2deb - The Wireshark Network Analyzer $(VERSION)" \ + --css=ws.css \ + --noindex \ + asn2deb.pod > asn2deb.html + +idl2deb.1: idl2deb.pod ../config.h + $(POD2MAN) \ + --center="The Wireshark Network Analyzer" \ + --release=$(VERSION) \ + idl2deb.pod > idl2deb.1 + +idl2deb.html: idl2deb.pod ../config.h ws.css + $(POD2HTML) \ + --title="idl2deb - The Wireshark Network Analyzer $(VERSION)" \ + --css=ws.css \ + --noindex \ + idl2deb.pod > idl2deb.html + idl2wrs.1: idl2wrs.pod ../config.h $(POD2MAN) \ --center="The Wireshark Network Analyzer" \ |