File: Makefile.src.bor

package info (click to toggle)
wget 1.10.2-2%2Betch1
  • links: PTS
  • area: main
  • in suites: etch
  • size: 4,776 kB
  • ctags: 2,252
  • sloc: ansic: 25,832; sh: 3,651; perl: 361; makefile: 346
file content (85 lines) | stat: -rw-r--r-- 1,673 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
## Compiler, linker, and lib stuff
## Makefile for use with Borland C++ for Win32 executable.

RM=-del
CC=bcc32
LINK=ilink32

LFLAGS=
WARN=-w-8057 -w-8027 -w-8008 -w-8065
CFLAGS=-DWINDOWS -DHAVE_CONFIG_H -I. -O2 -6 -d -q $(WARN)

## variables
OBJS=cmpt.obj connect.obj convert.obj ftp.obj ftp-basic.obj  \
      ftp-ls.obj ftp-opie.obj getopt.obj host.obj html-parse.obj html-url.obj \
      http.obj init.obj log.obj main.obj gnu-md5.obj netrc.obj  \
      safe-ctype.obj hash.obj progress.obj ptimer.obj gen-md5.obj cookies.obj \
      recur.obj res.obj retr.obj url.obj utils.obj version.obj xmalloc.obj \
      mswindows.obj

LIBDIR=$(MAKEDIR)\..\lib

wget.exe: $(OBJS)
  $(LINK) @&&|
$(LFLAGS) -Tpe -ap -c +
$(LIBDIR)\c0x32.obj+
cmpt.obj+
connect.obj+
convert.obj+
cookies.obj+
ftp-basic.obj+
ftp-ls.obj+
ftp-opie.obj+
ftp.obj+
gen-md5.obj+
getopt.obj+
gnu-md5.obj+
hash.obj+
host.obj+
html-parse.obj+
html-url.obj+
http.obj+
init.obj+
log.obj+
main.obj+
mswindows.obj+
netrc.obj+
progress.obj+
ptimer.obj+
recur.obj+
res.obj+
retr.obj+
safe-ctype.obj+
url.obj+
utils.obj+
version.obj+
xmalloc.obj,+
$<,$*,+
$(LIBDIR)\import32.lib+
$(LIBDIR)\cw32.lib

|

$(OBJS): config-post.h connect.h convert.h cookies.h ftp.h gen-md5.h \
         getopt.h gnu-md5.h hash.h host.h html-parse.h http-ntlm.h   \
         init.h log.h mswindows.h netrc.h options.h progress.h       \
         ptimer.h recur.h res.h retr.h safe-ctype.h ssl.h sysdep.h   \
         url.h utils.h wget.h xmalloc.h


#
# Dependencies for cleanup
#

clean:
	$(RM) *.bak
	$(RM) *.obj
	$(RM) wget.exe
	$(RM) wget.ilc
	$(RM) wget.ild
	$(RM) wget.ilf
	$(RM) wget.ils
	$(RM) wget.map
	$(RM) wget.tds

o = .obj