]> sjero.net Git - wget/blob - windows/Makefile.doc
[svn] More windows documentation updates.
[wget] / windows / Makefile.doc
1 # Makefile for `wget' utility
2 # Copyright (C) 1995, 1996, 1997 Free Software Foundation, Inc.
3
4 # This program is free software; you can redistribute it and/or modify
5 # it under the terms of the GNU General Public License as published by
6 # the Free Software Foundation; either version 2 of the License, or
7 # (at your option) any later version.
8
9 # This program is distributed in the hope that it will be useful,
10 # but WITHOUT ANY WARRANTY; without even the implied warranty of
11 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
12 # GNU General Public License for more details.
13
14 # You should have received a copy of the GNU General Public License
15 # along with this program; if not, write to the Free Software
16 # Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
17
18 # You probably need makeinfo and perl, see the README in the main
19 # windows directory.
20
21 RM = del
22 CP     = copy
23 ATTRIB = attrib
24
25 MAKEINFO     = makeinfo.exe
26 TEXI2POD     = texi2pod.pl
27 POD2MAN      = pod2man
28
29 SAMPLERCTEXI = sample.wgetrc.munged_for_texi_inclusion
30 WGETHLP      = wget.hlp
31 WGETINFO     = wget.info
32 WGETTEXI     = wget.texi
33 WGETHTML     = wget.html
34 WGETPOD      = wget.pod
35 manext       = 1
36 MAN          = wget.$(manext)
37
38 all: $(WGETHLP) $(WGETINFO) $(WGETHTML)
39
40 .IGNORE:
41 $(SAMPLERCTEXI): sample.wgetrc
42         perl -pne "s/@/@@/g" < $? > $@
43
44 $(WGETINFO): $(SAMPLERCTEXI) $(WGETTEXI)
45         $(MAKEINFO) --no-validate --no-warn --force \
46 --no-split $(WGETTEXI)
47
48 $(WGETHTML): $(SAMPLERCTEXI) $(WGETTEXI)
49         $(MAKEINFO) --no-validate --no-warn --force \
50 --no-split --html -o $@ $(WGETTEXI)
51
52 $(TEXI2POD): $(TEXI2POD).in
53         $(CP) $? $@
54
55 $(WGETPOD): $(WGETTEXI) $(TEXI2POD)
56         $(TEXI2POD) $(WGETTEXI) $@
57
58 man:    $(MAN)
59
60 $(MAN): $(WGETPOD)
61         $(POD2MAN) --center="GNU Wget" --release="GNU Wget @VERSION@" $? > $@
62
63 $(WGETHLP): $(WGETTEXI) $(SAMPLERCTEXI)
64         $(MAKEINFO) --no-validate --no-warn --force \
65 --hpj wget.hpj --output wget.rtf $(WGETTEXI)
66         hcrtf -xn wget.hpj
67
68 clean:
69         $(RM) *.bak
70         $(RM) *.hpj
71         $(RM) *.rtf
72         $(RM) *.ph
73         $(RM) $(SAMPLERCTEXI)
74         $(RM) $(MAN)
75         $(RM) $(TEXI2POD)
76         $(ATTRIB) -h *.gid
77         $(RM) *.gid
78
79 distclean: clean
80         $(RM) $(WGETHTML)
81         $(RM) $(WGETPOD)
82         $(RM) $(WGETHLP)
83         $(RM) $(WGETINFO)
84         $(RM) $(WGETHLP)
85         $(RM) Makefile
86
87 realclean: distclean
88