]> sjero.net Git - wget/blob - windows/Makefile.doc
0c6ded5fa210016072b5eda07b84443f2c9c9d14
[wget] / windows / Makefile.doc
1 # Makefile for `wget' utility
2 # Copyright (C) 1995, 1996, 1997, 2004 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 # In addition, as a special exception, the Free Software Foundation
19 # gives permission to link the code of its release of Wget with the
20 # OpenSSL project's "OpenSSL" library (or with modified versions of it
21 # that use the same license as the "OpenSSL" library), and distribute
22 # the linked executables.  You must obey the GNU General Public License
23 # in all respects for all of the code used other than "OpenSSL".  If you
24 # modify this file, you may extend this exception to your version of the
25 # file, but you are not obligated to do so.  If you do not wish to do
26 # so, delete this exception statement from your version.
27
28 # You probably need makeinfo and perl, see the README in the main
29 # windows directory.
30
31 RM      = -del
32 CP      = copy
33 ATTRIB  = attrib
34
35 MAKEINFO        = makeinfo.exe
36 TEXI2POD        = texi2pod.pl
37 POD2MAN = pod2man
38
39 SAMPLERCTEXI    = sample.wgetrc.munged_for_texi_inclusion
40 WGETHLP         = wget.hlp
41 WGETINFO        = wget.info
42 WGETTEXI        = wget.texi
43 WGETHTML        = wget.html
44 WGETPOD         = wget.pod
45 manext          = 1
46 MAN             = wget.$(manext)
47
48 all: $(WGETHLP) $(WGETINFO) $(WGETHTML)
49
50 .IGNORE:
51 $(SAMPLERCTEXI): sample.wgetrc
52         perl -pne "s/@/@@/g" < $? > $@
53
54 $(WGETINFO): $(SAMPLERCTEXI) $(WGETTEXI)
55         $(MAKEINFO) --no-validate --no-warn --force \
56 --no-split $(WGETTEXI)
57
58 $(WGETHTML): $(SAMPLERCTEXI) $(WGETTEXI)
59         $(MAKEINFO) --no-validate --no-warn --force \
60 --no-split --html -o $@ $(WGETTEXI)
61
62 $(TEXI2POD): $(TEXI2POD).in
63         $(CP) $? $@
64
65 $(WGETPOD): $(WGETTEXI) $(TEXI2POD)
66         $(TEXI2POD) $(WGETTEXI) $@
67
68 man:    $(MAN)
69
70 $(MAN): $(WGETPOD)
71         $(POD2MAN) --center="GNU Wget" --release="GNU Wget @VERSION@" $? > $@
72
73 $(WGETHLP): $(WGETTEXI) $(SAMPLERCTEXI)
74         $(MAKEINFO) --no-validate --no-warn --force \
75 --hpj wget.hpj --output wget.rtf $(WGETTEXI)
76         hcrtf -xn wget.hpj
77
78 clean:
79         $(RM) *.bak
80         $(RM) *.hpj
81         $(RM) *.rtf
82         $(RM) *.ph
83         $(RM) $(SAMPLERCTEXI)
84         $(RM) $(MAN)
85         $(RM) $(TEXI2POD)
86         $(ATTRIB) -h *.gid
87         $(RM) *.gid
88
89 distclean: clean
90         $(RM) $(WGETHTML)
91         $(RM) $(WGETPOD)
92         $(RM) $(WGETHLP)
93         $(RM) $(WGETINFO)
94         $(RM) $(WGETHLP)
95         $(RM) Makefile
96
97 realclean: distclean
98