~ubuntu-branches/ubuntu/hardy/wget/hardy-security

« back to all changes in this revision

Viewing changes to 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:
176
176
# Dependencies for maintenance
177
177
#
178
178
 
 
179
$(srcdir)/configure: configure.in aclocal.m4
 
180
        cd $(srcdir) && autoconf
 
181
 
 
182
# autoheader might not change config.h.in, so touch a stamp file.
 
183
$(srcdir)/src/config.h.in: stamp-h.in
 
184
$(srcdir)/stamp-h.in: configure.in aclocal.m4
 
185
        @true; # running autoheader here breaks: cd $(srcdir) && autoheader
 
186
        echo timestamp > $(srcdir)/stamp-h.in
 
187
 
 
188
src/config.h: stamp-h
 
189
stamp-h: src/config.h.in config.status
 
190
        ./config.status
 
191
 
179
192
Makefile: Makefile.in config.status
180
 
        CONFIG_HEADERS= ./config.status
 
193
        ./config.status
181
194
 
182
195
config.status: configure
183
196
        ./config.status --recheck
184
197
 
185
 
configure: configure.in aclocal.m4
186
 
        cd $(srcdir) && autoconf
187
 
 
188
 
src/config.h: stamp-h
189
 
stamp-h: src/config.h.in config.status
190
 
        CONFIG_FILES= CONFIG_HEADERS=src/config.h ./config.status
191
 
 
192
 
src/config.h.in: stamp-h.in
193
 
stamp-h.in: configure.in aclocal.m4
194
 
        echo timestamp > $@
195
 
 
196
198
FORCE:
197