]> sjero.net Git - wget/blob - windows/Makefile.doc
[svn] Initial revision
[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 RM = del
19
20 all: wget.hlp
21
22 # You probably need makeinfo utility
23 # wget it from URL:http://www.sunsite.auc.dk/wget/makeinfo.zip
24
25 .IGNORE:
26 wget.hlp: wget.texi
27         makeinfo --no-validate --no-warn --force \
28 --hpj wget.hpj --output wget.rtf wget.texi
29         hcrtf -xn wget.hpj
30
31 clean:
32         $(RM) *.bak
33         $(RM) *.hpj
34         $(RM) *.rtf
35         $(RM) *.ph
36
37 distclean: clean
38         $(RM) wget.hlp
39         $(RM) Makefile
40
41 realclean: distclean
42