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

« back to all changes in this revision

Viewing changes to doc/Makefile.in

  • 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:
48
48
INSTALL_DATA = @INSTALL_DATA@
49
49
RM = rm -f
50
50
 
51
 
TEXI2POD     = $(srcdir)/texi2pod.pl
 
51
TEXI2POD     = texi2pod.pl
52
52
POD2MAN      = @POD2MAN@
53
53
MAN          = wget.$(manext)
54
54
WGETRC       = $(sysconfdir)/wgetrc
65
65
$(SAMPLERCTEXI): $(srcdir)/sample.wgetrc
66
66
        sed s/@/@@/g $? > $@
67
67
 
68
 
wget.info: $(SAMPLERCTEXI) $(srcdir)/wget.texi
69
 
        $(MAKEINFO) -I$(srcdir)
 
68
wget.info: $(srcdir)/wget.texi $(SAMPLERCTEXI) $(srcdir)/version.texi
 
69
        $(MAKEINFO) -I$(srcdir) $(srcdir)/wget.texi
70
70
 
71
 
$(TEXI2POD): $(TEXI2POD).in
 
71
$(TEXI2POD): $(srcdir)/$(TEXI2POD).in
72
72
        sed 's,^#! /usr/bin/perl,#! @PERL@,' $? > $@
73
73
        chmod u+x $@
74
74
 
75
 
wget.pod: $(srcdir)/wget.texi $(TEXI2POD)
76
 
        $(TEXI2POD) $(srcdir)/wget.texi $@
 
75
wget.pod: $(srcdir)/wget.texi $(TEXI2POD) $(srcdir)/version.texi
 
76
        ./$(TEXI2POD) $(srcdir)/wget.texi $@
77
77
 
78
78
$(MAN): wget.pod
79
79
        $(POD2MAN) --center="GNU Wget" --release="GNU Wget @VERSION@" $? > $@
112
112
        $(top_srcdir)/mkinstalldirs $(DESTDIR)$(infodir)
113
113
        -if test -f wget.info; then \
114
114
          for file in wget.info wget.info-*[0-9]; do \
115
 
            test -f "$$file" && \
 
115
            if test -f "$$file"; then \
116
116
              $(INSTALL_DATA) "$$file" "$(DESTDIR)$(infodir)/$$file" ; \
 
117
            fi; \
117
118
          done; \
118
119
        else \
119
120
          for file in $(srcdir)/wget.info $(srcdir)/wget.info-*[0-9]; do \
120
 
            test -f "$$file" && \
 
121
            if test -f "$$file"; then \
121
122
              $(INSTALL_DATA) "$$file" "$(DESTDIR)$(infodir)/`basename $$file`" ; \
 
123
            fi; \
122
124
          done; \
123
125
        fi
124
126