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

« back to all changes in this revision

Viewing changes to windows/Makefile.src.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
## Compiler, linker, and lib stuff
2
2
## Makefile for use with Borland C++ for Win32 executable.
3
3
 
 
4
RM=-del
4
5
CC=bcc32
5
6
LINK=ilink32
6
7
 
7
8
LFLAGS=
8
 
CFLAGS=-DWINDOWS -DHAVE_CONFIG_H -I. -w- -O2
 
9
WARN=-w-8057 -w-8027 -w-8008 -w-8065
 
10
CFLAGS=-DWINDOWS -DHAVE_CONFIG_H -I. -O2 -6 -d -q $(WARN)
9
11
 
10
12
## variables
11
13
OBJS=cmpt.obj connect.obj convert.obj ftp.obj ftp-basic.obj  \
12
 
      ftp-ls.obj ftp-opie.obj getopt.obj headers.obj host.obj html-parse.obj html-url.obj \
13
 
      http.obj init.obj log.obj main.obj gnu-md5.obj netrc.obj rbuf.obj  \
14
 
      safe-ctype.obj hash.obj progress.obj gen-md5.obj cookies.obj \
15
 
      recur.obj res.obj retr.obj url.obj utils.obj version.obj mswindows.obj
 
14
      ftp-ls.obj ftp-opie.obj getopt.obj host.obj html-parse.obj html-url.obj \
 
15
      http.obj init.obj log.obj main.obj gnu-md5.obj netrc.obj  \
 
16
      safe-ctype.obj hash.obj progress.obj ptimer.obj gen-md5.obj cookies.obj \
 
17
      recur.obj res.obj retr.obj url.obj utils.obj version.obj xmalloc.obj \
 
18
      mswindows.obj
16
19
 
17
20
LIBDIR=$(MAKEDIR)\..\lib
18
21
 
20
23
  $(LINK) @&&|
21
24
$(LFLAGS) -Tpe -ap -c +
22
25
$(LIBDIR)\c0x32.obj+
 
26
cmpt.obj+
 
27
connect.obj+
23
28
convert.obj+
24
29
cookies.obj+
 
30
ftp-basic.obj+
 
31
ftp-ls.obj+
 
32
ftp-opie.obj+
 
33
ftp.obj+
 
34
gen-md5.obj+
 
35
getopt.obj+
 
36
gnu-md5.obj+
25
37
hash.obj+
 
38
host.obj+
 
39
html-parse.obj+
 
40
html-url.obj+
 
41
http.obj+
 
42
init.obj+
 
43
log.obj+
 
44
main.obj+
 
45
mswindows.obj+
 
46
netrc.obj+
 
47
progress.obj+
 
48
ptimer.obj+
 
49
recur.obj+
 
50
res.obj+
 
51
retr.obj+
26
52
safe-ctype.obj+
 
53
url.obj+
 
54
utils.obj+
27
55
version.obj+
28
 
utils.obj+
29
 
url.obj+
30
 
retr.obj+
31
 
res.obj+
32
 
recur.obj+
33
 
rbuf.obj+
34
 
progress.obj+
35
 
netrc.obj+
36
 
mswindows.obj+
37
 
gnu-md5.obj+
38
 
gen-md5.obj+
39
 
main.obj+
40
 
log.obj+
41
 
init.obj+
42
 
http.obj+
43
 
html-parse.obj+
44
 
html-url.obj+
45
 
host.obj+
46
 
headers.obj+
47
 
getopt.obj+
48
 
ftp-opie.obj+
49
 
ftp-ls.obj+
50
 
ftp-basic.obj+
51
 
ftp.obj+
52
 
connect.obj+
53
 
cmpt.obj
54
 
$<,$*
 
56
xmalloc.obj,+
 
57
$<,$*,+
55
58
$(LIBDIR)\import32.lib+
56
59
$(LIBDIR)\cw32.lib
57
60
 
59
62
 
60
63
|
61
64
 
 
65
 
 
66
#
 
67
# Dependencies for cleanup
 
68
#
 
69
 
 
70
clean:
 
71
        $(RM) *.bak
 
72
        $(RM) *.obj
 
73
        $(RM) wget.exe
 
74
        $(RM) wget.ilc
 
75
        $(RM) wget.ild
 
76
        $(RM) wget.ilf
 
77
        $(RM) wget.ils
 
78
        $(RM) wget.map
 
79
        $(RM) wget.tds
 
80
 
62
81
o = .obj
63
82
 
64
83
!include "..\windows\wget.dep"