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

« back to all changes in this revision

Viewing changes to windows/Makefile.top.bor

  • 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
25
25
# file, but you are not obligated to do so.  If you do not wish to do
26
26
# so, delete this exception statement from your version.
27
27
 
28
 
RM = del
 
28
RM = -del
29
29
CP = copy
30
30
 
31
31
# flags passed to recursive makes in subdirectories
37
37
all: Makefile $(SUBDIRS)
38
38
 
39
39
$(SUBDIRS): 
40
 
        cd $@
41
 
        $(MAKE)
42
 
        cd ..
 
40
        cd $@
 
41
        $(MAKEDIR)\$(MAKE)
 
42
        cd ..
43
43
 
44
44
# install everything
45
45
install:
46
 
        echo Just do it.
 
46
        echo Just do it.
47
47
 
48
48
clean:          clean-recursive         clean-top
49
49
distclean:      distclean-recursive     distclean-top
50
50
realclean:      realclean-recursive     realclean-top
51
51
 
52
52
clean-top:
53
 
        $(RM) *.bak
54
 
        $(RM) *.zip
 
53
        $(RM) *.bak
 
54
        $(RM) *.zip
55
55
 
56
56
distclean-top: clean-top
57
 
        $(RM) Makefile
58
 
        $(RM) config.h
 
57
        $(RM) Makefile
 
58
        $(RM) config.h
59
59
 
60
60
realclean-top: distclean-top
61
61
 
62
62
clean-recursive distclean-recursive realclean-recursive:
63
 
        cd src
64
 
        $(MAKE) $(@:-recursive=)
65
 
        cd ..\\doc
66
 
        $(MAKE) $(@:-recursive=)
67
 
        cd ..
 
63
        cd src
 
64
        $(MAKEDIR)\$(MAKE) $(@:-recursive=)
 
65
        cd ..\doc
 
66
        $(MAKEDIR)\$(MAKE) $(@:-recursive=)
 
67
        cd ..
68
68
 
69
69
bindist: wget.zip
70
70
 
71
71
wget.zip: $(SUBDIRS)
72
 
        $(RM) wget.zip
73
 
        zip -Djl9 wget.zip AUTHORS COPYING INSTALL MACHINES MAILING-LIST NEWS README DOC\\sample.wgetrc
74
 
        zip -Dj9 wget.zip SRC\\WGET.EXE DOC\\WGET.HLP
 
72
        $(RM) wget.zip
 
73
        zip -Djl9 wget.zip AUTHORS COPYING INSTALL MAILING-LIST NEWS README doc/sample.wgetrc
 
74
        zip -Dj9 wget.zip src/wget.exe doc/wget.hlp
75
75