]> sjero.net Git - wget/blob - windows/Makefile.doc
[svn] Update documentation generation under Windows.
[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 a makeinfo utility
19 # wget it from URL:ftp://ftp.sunsite.dk/projects/wget/windows/makeinfo.zip
20 # You also probably need perl.
21
22 RM = del
23 CP     = copy
24 ATTRIB = attrib
25
26 MAKEINFO     = makeinfo.exe
27 TEXI2POD     = texi2pod.pl
28 POD2MAN      = pod2man
29
30 SAMPLERCTEXI = sample.wgetrc.munged_for_texi_inclusion
31 WGETHLP      = wget.hlp
32 WGETINFO     = wget.info
33 WGETTEXI     = wget.texi
34 WGETHTML     = wget.html
35 WGETPOD      = wget.pod
36 manext       = 1
37 MAN          = wget.$(manext)
38
39 all: $(WGETHLP) $(WGETINFO) $(WGETHTML) $(MAN)
40
41 .IGNORE:
42 $(SAMPLERCTEXI): sample.wgetrc
43         perl -pne "s/@/@@/g" < $? > $@
44
45 $(WGETINFO): $(SAMPLERCTEXI) $(WGETTEXI)
46         $(MAKEINFO) --no-validate --no-warn --force \
47 --no-split $(WGETTEXI)
48
49 $(WGETHTML): $(SAMPLERCTEXI) $(WGETTEXI)
50         $(MAKEINFO) --no-validate --no-warn --force \
51 --no-split --html -o $@ $(WGETTEXI)
52
53 $(TEXI2POD): $(TEXI2POD).in
54         $(CP) $? $@
55
56 $(WGETPOD): $(WGETTEXI) $(TEXI2POD)
57         $(TEXI2POD) $(WGETTEXI) $@
58
59 $(MAN): $(WGETPOD)
60         $(POD2MAN) --center="GNU Wget" --release="GNU Wget @VERSION@" $? > $@
61
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