~ubuntu-branches/ubuntu/dapper/wget/dapper-updates

« 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: 2004-02-13 20:26:44 UTC
  • Revision ID: james.westby@ubuntu.com-20040213202644-skxj93qs15sskqfy
Tags: upstream-1.9.1
Import upstream version 1.9.1

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
## Compiler, linker, and lib stuff
 
2
## Makefile for use with Borland C++ for Win32 executable.
 
3
 
 
4
CC=bcc32
 
5
LINK=ilink32
 
6
 
 
7
LFLAGS=
 
8
CFLAGS=-DWINDOWS -DHAVE_CONFIG_H -I. -w- -O2
 
9
 
 
10
## variables
 
11
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
 
16
 
 
17
LIBDIR=$(MAKEDIR)\..\lib
 
18
 
 
19
wget.exe: $(OBJS)
 
20
  $(LINK) @&&|
 
21
$(LFLAGS) -Tpe -ap -c +
 
22
$(LIBDIR)\c0x32.obj+
 
23
convert.obj+
 
24
cookies.obj+
 
25
hash.obj+
 
26
safe-ctype.obj+
 
27
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
$<,$*
 
55
$(LIBDIR)\import32.lib+
 
56
$(LIBDIR)\cw32.lib
 
57
 
 
58
 
 
59
 
 
60
|
 
61
 
 
62
o = .obj
 
63
 
 
64
!include "..\windows\wget.dep"