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

« back to all changes in this revision

Viewing changes to windows/Makefile.top.mingw

  • 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
# 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
# In addition, as a special exception, the Free Software Foundation
 
19
# gives permission to link the code of its release of Wget with the
 
20
# OpenSSL project's "OpenSSL" library (or with modified versions of it
 
21
# that use the same license as the "OpenSSL" library), and distribute
 
22
# the linked executables.  You must obey the GNU General Public License
 
23
# in all respects for all of the code used other than "OpenSSL".  If you
 
24
# modify this file, you may extend this exception to your version of the
 
25
# file, but you are not obligated to do so.  If you do not wish to do
 
26
# so, delete this exception statement from your version.
 
27
 
 
28
# Makefile for building WGET.EXE and WGET.HLP using MinGW GCC/Win32 compiler.
 
29
 
 
30
SRC_DIR = src
 
31
DOC_DIR = doc
 
32
 
 
33
all: ${SRC_DIR} ${DOC_DIR}
 
34
 
 
35
${SRC_DIR}: FORCE
 
36
        @echo -----------------------------------------------------------
 
37
        @echo = If you would like to build WGET.EXE without SSL support,
 
38
        @echo = please issue the following commands.
 
39
        @echo =  [1] cd $@
 
40
        @echo =  [2] ${MAKE}
 
41
        @echo =  [3] cd ..
 
42
        @echo = --------------------
 
43
        @echo = If you would like to build WGET.EXE with SSL support,
 
44
        @echo = please follow the instructions below.
 
45
        @echo =  [1] cd $@
 
46
        @echo =  [2] Check the value of OPENSSL_PATH in Makefile and
 
47
        @echo =      correct it if it is not the OpenSSL installed directory.
 
48
        @echo =  [3] ${MAKE} SSL=1
 
49
        @echo =  [4] cd ..
 
50
        @echo -----------------------------------------------------------
 
51
 
 
52
${DOC_DIR}: FORCE
 
53
        @echo -----------------------------------------------------------
 
54
        @echo = Please issue the following commands to obtain WGET.HLP.
 
55
        @echo =  [1] cd $@
 
56
        @echo =  [2] ${MAKE}
 
57
        @echo =  [3] cd ..
 
58
        @echo -----------------------------------------------------------
 
59
 
 
60
FORCE: