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