blob: 6d6317766df6e47e85ec9785cf3a546796b8a2a4 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
|
#
# $Id: Makefile.nmake,v 1.2 2001/04/12 18:07:19 gram Exp $
include ../config.nmake
doc: ethereal.html tethereal.html editcap.html
ethereal.html : ethereal.1
man2html ethereal.1 > $@
tethereal.html : tethereal.1
man2html tethereal.1 > $@
editcap.html : editcap.1
man2html editcap.1 > $@
ethereal.1: ethereal.pod ../config.h
$(POD2MAN) ethereal.pod \
--center="The Ethereal Network Analyzer" \
--release=$(VERSION) \
> ethereal.1
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 \
--center="The Ethereal Network Analyzer" \
--release=$(VERSION) \
> tethereal.1
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 \
--center="The Ethereal Network Analyzer" \
--release=$(VERSION) \
> editcap.1
clean:
rm -f ethereal.html ethereal.1 ethereal.pod
rm -f tethereal.html tethereal.1 tethereal.pod
rm -f editcap.html editcap.1
|