Win32: build text2pcap doco and package it.

svn path=/trunk/; revision=3435
This commit is contained in:
Gilbert Ramirez 2001-05-22 16:19:45 +00:00
parent 1665ab7551
commit ec962d8cbd
3 changed files with 23 additions and 5 deletions

View File

@ -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

View File

@ -1,5 +1,5 @@
#
# $Id: Makefile.nmake,v 1.5 2001/04/12 18:07:21 gram Exp $
# $Id: Makefile.nmake,v 1.6 2001/05/22 16:19:45 gram Exp $
#
#
# NSIS is a free packager/installer/uninstaller program for Win32.
@ -10,12 +10,14 @@
include ../../config.nmake
EXE=../../ethereal.exe ../../tethereal.exe ../../editcap.exe
EXE=../../ethereal.exe ../../tethereal.exe ../../editcap.exe \
../../text2pcap.exe
PDB=../../ethereal.pdb ../../tethereal.pdb ../../editcap.pdb
DLL=../../wiretap/wiretap-$(WTAP_VERSION).dll
DOC=../../doc/ethereal.html \
../../doc/tethereal.html \
../../doc/editcap.html \
../../doc/text2pcap.html \
../../README \
../../README.win32
GPL=GPL.txt

View File

@ -1,7 +1,7 @@
;
; ethereal.nsi
;
; $Id: ethereal.nsi.in,v 1.2 2001/04/05 05:36:47 gram Exp $
; $Id: ethereal.nsi.in,v 1.3 2001/05/22 16:19:45 gram Exp $
; ============================================================================
; Header configuration
@ -89,6 +89,13 @@ SetOutPath $INSTDIR
File "..\..\editcap.exe"
File "..\..\doc\editcap.html"
Section "Text2Pcap"
;-------------------------------------------
SetOutPath $INSTDIR
File "..\..\text2pcap.exe"
File "..\..\doc\text2pcap.html"
Section "Plugins"
;-------------------------------------------