~ubuntu-branches/ubuntu/precise/wget/precise-proposed

« back to all changes in this revision

Viewing changes to windows/Makefile.doc

  • Committer: Bazaar Package Importer
  • Author(s): Noèl Köthe
  • Date: 2005-06-26 16:46:25 UTC
  • mfrom: (1.1.1 upstream) (2.1.1 sarge)
  • Revision ID: james.westby@ubuntu.com-20050626164625-jjcde8hyztx7xq7o
Tags: 1.10-2
* wget-fix_error--save-headers patch from upstream
  (closes: Bug#314728)
* don't pattern-match server redirects patch from upstream
  (closes: Bug#163243)
* correct de.po typos
  (closes: Bug#313883)
* wget-E_html_behind_file_counting fix problem with adding the
  numbers after the html extension
* updated Standards-Version: to 3.6.2

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
# Makefile for `wget' utility
2
 
# Copyright (C) 1995, 1996, 1997 Free Software Foundation, Inc.
 
2
# Copyright (C) 1995, 1996, 1997, 2004 Free Software Foundation, Inc.
3
3
 
4
4
# This program is free software; you can redistribute it and/or modify
5
5
# it under the terms of the GNU General Public License as published by
28
28
# You probably need makeinfo and perl, see the README in the main
29
29
# windows directory.
30
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)
 
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
47
 
48
48
all: $(WGETHLP) $(WGETINFO) $(WGETHTML)
49
49
 
71
71
        $(POD2MAN) --center="GNU Wget" --release="GNU Wget @VERSION@" $? > $@
72
72
 
73
73
$(WGETHLP): $(WGETTEXI) $(SAMPLERCTEXI)
74
 
        $(MAKEINFO) --no-validate --no-warn --force \
 
74
        $(MAKEINFO) --no-validate --no-warn --force \
75
75
--hpj wget.hpj --output wget.rtf $(WGETTEXI)
76
 
        hcrtf -xn wget.hpj
 
76
        hcrtf -xn wget.hpj
77
77
 
78
78
clean:
79
 
        $(RM) *.bak
80
 
        $(RM) *.hpj
81
 
        $(RM) *.rtf
82
 
        $(RM) *.ph
 
79
        $(RM) *.bak
 
80
        $(RM) *.hpj
 
81
        $(RM) *.rtf
 
82
        $(RM) *.ph
83
83
        $(RM) $(SAMPLERCTEXI)
84
84
        $(RM) $(MAN)
85
85
        $(RM) $(TEXI2POD)