mirror of
https://github.com/moparisthebest/wget
synced 2024-07-03 16:38:41 -04:00
[svn] Added spider.c to the list of files to compile and spider.h to the list of header files.
This commit is contained in:
parent
0dbef4ccb4
commit
5b28da71b1
@ -1,3 +1,12 @@
|
|||||||
|
2006-08-24 Mauro Tortonesi <mauro@ferrara.linux.it>
|
||||||
|
|
||||||
|
* Makefile.src: Added spider.c to the list of files to compile and
|
||||||
|
spider.h to the list of header files. Updated copyright information.
|
||||||
|
|
||||||
|
* Makefile.src.mingw: Ditto.
|
||||||
|
|
||||||
|
* Makefile.src.bor: Ditto.
|
||||||
|
|
||||||
2006-04-07 Mauro Tortonesi <mauro@ferrara.linux.it>
|
2006-04-07 Mauro Tortonesi <mauro@ferrara.linux.it>
|
||||||
|
|
||||||
* config-compiler.h: Several fixes for MSVC 8 (Visual C 2005).
|
* config-compiler.h: Several fixes for MSVC 8 (Visual C 2005).
|
||||||
|
@ -1,5 +1,5 @@
|
|||||||
# Makefile for `wget' utility for MSVC
|
# Makefile for `wget' utility for MSVC
|
||||||
# Copyright (C) 1995, 1996, 1997, 2004 Free Software Foundation, Inc.
|
# Copyright (C) 1995, 1996, 1997, 2004, 2006 Free Software Foundation, Inc.
|
||||||
|
|
||||||
# This program is free software; you can redistribute it and/or modify
|
# This program is free software; you can redistribute it and/or modify
|
||||||
# it under the terms of the GNU General Public License as published by
|
# it under the terms of the GNU General Public License as published by
|
||||||
@ -67,10 +67,10 @@ LDFLAGS = $(LDFLAGS) /ltcg:status
|
|||||||
!endif
|
!endif
|
||||||
|
|
||||||
OBJ = cmpt$o safe-ctype$o convert$o connect$o host$o http$o netrc$o \
|
OBJ = cmpt$o safe-ctype$o convert$o connect$o host$o http$o netrc$o \
|
||||||
ftp-basic$o ftp$o ftp-ls$o ftp-opie$o getopt$o hash$o \
|
ftp-basic$o ftp$o ftp-ls$o ftp-opie$o getopt$o hash$o \
|
||||||
html-parse$o html-url$o progress$o retr$o recur$o res$o url$o cookies$o \
|
html-parse$o html-url$o progress$o retr$o recur$o res$o url$o \
|
||||||
init$o utils$o main$o ptimer$o version$o xmalloc$o mswindows$o \
|
cookies$o init$o utils$o main$o ptimer$o version$o xmalloc$o \
|
||||||
gen-md5$o gnu-md5$o log$o $(SSLOBJ)
|
mswindows$o gen-md5$o gnu-md5$o log$o $(SSLOBJ) spider$o
|
||||||
|
|
||||||
.SUFFIXES: .c .obj
|
.SUFFIXES: .c .obj
|
||||||
|
|
||||||
@ -84,11 +84,11 @@ wget.exe: $(OBJ)
|
|||||||
$(LD) @<< $(LDFLAGS) /out:$@ $(OBJ) $(LIBS)
|
$(LD) @<< $(LDFLAGS) /out:$@ $(OBJ) $(LIBS)
|
||||||
<<
|
<<
|
||||||
|
|
||||||
$(OBJ): config-post.h config.h connect.h convert.h cookies.h ftp.h gen-md5.h \
|
$(OBJ): config-post.h config.h connect.h convert.h cookies.h ftp.h \
|
||||||
getopt.h gnu-md5.h hash.h host.h html-parse.h http-ntlm.h \
|
gen-md5.h getopt.h gnu-md5.h hash.h host.h html-parse.h \
|
||||||
init.h log.h mswindows.h netrc.h options.h progress.h \
|
http-ntlm.h init.h log.h mswindows.h netrc.h options.h \
|
||||||
ptimer.h recur.h res.h retr.h safe-ctype.h ssl.h sysdep.h \
|
progress.h ptimer.h recur.h res.h retr.h safe-ctype.h \
|
||||||
url.h utils.h wget.h xmalloc.h
|
spider.h ssl.h sysdep.h url.h utils.h wget.h xmalloc.h
|
||||||
|
|
||||||
#
|
#
|
||||||
# Dependencies for cleanup
|
# Dependencies for cleanup
|
||||||
|
@ -10,12 +10,12 @@ WARN=-w-8057 -w-8027 -w-8008 -w-8065
|
|||||||
CFLAGS=-DWINDOWS -DHAVE_CONFIG_H -I. -O2 -6 -d -q $(WARN)
|
CFLAGS=-DWINDOWS -DHAVE_CONFIG_H -I. -O2 -6 -d -q $(WARN)
|
||||||
|
|
||||||
## variables
|
## variables
|
||||||
OBJS=cmpt.obj connect.obj convert.obj ftp.obj ftp-basic.obj \
|
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 \
|
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 \
|
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 \
|
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 \
|
recur.obj res.obj retr.obj url.obj utils.obj version.obj xmalloc.obj \
|
||||||
mswindows.obj
|
mswindows.obj spider.obj
|
||||||
|
|
||||||
LIBDIR=$(MAKEDIR)\..\lib
|
LIBDIR=$(MAKEDIR)\..\lib
|
||||||
|
|
||||||
@ -50,6 +50,7 @@ recur.obj+
|
|||||||
res.obj+
|
res.obj+
|
||||||
retr.obj+
|
retr.obj+
|
||||||
safe-ctype.obj+
|
safe-ctype.obj+
|
||||||
|
spider.obj+
|
||||||
url.obj+
|
url.obj+
|
||||||
utils.obj+
|
utils.obj+
|
||||||
version.obj+
|
version.obj+
|
||||||
@ -60,11 +61,11 @@ $(LIBDIR)\cw32.lib
|
|||||||
|
|
||||||
|
|
|
|
||||||
|
|
||||||
$(OBJS): config-post.h config.h connect.h convert.h cookies.h ftp.h gen-md5.h \
|
$(OBJS): config-post.h config.h connect.h convert.h cookies.h ftp.h \
|
||||||
getopt.h gnu-md5.h hash.h host.h html-parse.h http-ntlm.h \
|
gen-md5.h getopt.h gnu-md5.h hash.h host.h html-parse.h \
|
||||||
init.h log.h mswindows.h netrc.h options.h progress.h \
|
http-ntlm.h init.h log.h mswindows.h netrc.h options.h \
|
||||||
ptimer.h recur.h res.h retr.h safe-ctype.h ssl.h sysdep.h \
|
progress.h ptimer.h recur.h res.h retr.h safe-ctype.h \
|
||||||
url.h utils.h wget.h xmalloc.h
|
spider.h ssl.h sysdep.h url.h utils.h wget.h xmalloc.h
|
||||||
|
|
||||||
|
|
||||||
#
|
#
|
||||||
|
@ -21,12 +21,12 @@ CFLAGS= -DWINDOWS -DHAVE_CONFIG_H -O3 -Wall -I.
|
|||||||
## variables
|
## variables
|
||||||
LIBS= -lwsock32
|
LIBS= -lwsock32
|
||||||
OBJ_EXT=.o
|
OBJ_EXT=.o
|
||||||
OBJS=cmpt${OBJ_EXT} convert${OBJ_EXT} connect${OBJ_EXT} ftp${OBJ_EXT} ftp-basic${OBJ_EXT} \
|
OBJS=cmpt${OBJ_EXT} convert${OBJ_EXT} connect${OBJ_EXT} ftp${OBJ_EXT} ftp-basic${OBJ_EXT} \
|
||||||
ftp-ls${OBJ_EXT} ftp-opie${OBJ_EXT} getopt${OBJ_EXT} host${OBJ_EXT} html-parse${OBJ_EXT} html-url${OBJ_EXT} \
|
ftp-ls${OBJ_EXT} ftp-opie${OBJ_EXT} getopt${OBJ_EXT} host${OBJ_EXT} html-parse${OBJ_EXT} html-url${OBJ_EXT} \
|
||||||
http${OBJ_EXT} init${OBJ_EXT} log${OBJ_EXT} main${OBJ_EXT} gnu-md5${OBJ_EXT} netrc${OBJ_EXT} \
|
http${OBJ_EXT} init${OBJ_EXT} log${OBJ_EXT} main${OBJ_EXT} gnu-md5${OBJ_EXT} netrc${OBJ_EXT} \
|
||||||
safe-ctype${OBJ_EXT} hash${OBJ_EXT} progress${OBJ_EXT} gen-md5${OBJ_EXT} cookies${OBJ_EXT} \
|
safe-ctype${OBJ_EXT} hash${OBJ_EXT} progress${OBJ_EXT} gen-md5${OBJ_EXT} cookies${OBJ_EXT} \
|
||||||
ptimer${OBJ_EXT} recur${OBJ_EXT} res${OBJ_EXT} retr${OBJ_EXT} url${OBJ_EXT} utils${OBJ_EXT} \
|
ptimer${OBJ_EXT} recur${OBJ_EXT} res${OBJ_EXT} retr${OBJ_EXT} url${OBJ_EXT} utils${OBJ_EXT} \
|
||||||
version${OBJ_EXT} xmalloc${OBJ_EXT} mswindows${OBJ_EXT}
|
version${OBJ_EXT} xmalloc${OBJ_EXT} mswindows${OBJ_EXT} spider${OBJ_EXT}
|
||||||
|
|
||||||
ifdef SSL
|
ifdef SSL
|
||||||
## OPENSSL_PATH is the OpenSSL installed directory
|
## OPENSSL_PATH is the OpenSSL installed directory
|
||||||
@ -41,10 +41,10 @@ all: wget.exe
|
|||||||
wget.exe: $(OBJS)
|
wget.exe: $(OBJS)
|
||||||
${CC} ${LDFLAGS} -o $@ ${OBJS} ${LIBS}
|
${CC} ${LDFLAGS} -o $@ ${OBJS} ${LIBS}
|
||||||
|
|
||||||
$(OBJS): config-post.h config.h connect.h convert.h cookies.h ftp.h gen-md5.h \
|
$(OBJS): config-post.h config.h connect.h convert.h cookies.h ftp.h \
|
||||||
getopt.h gnu-md5.h hash.h host.h html-parse.h http-ntlm.h \
|
gen-md5.h getopt.h gnu-md5.h hash.h host.h html-parse.h \
|
||||||
init.h log.h mswindows.h netrc.h options.h progress.h \
|
http-ntlm.h init.h log.h mswindows.h netrc.h options.h \
|
||||||
ptimer.h recur.h res.h retr.h safe-ctype.h ssl.h sysdep.h \
|
progress.h ptimer.h recur.h res.h retr.h safe-ctype.h \
|
||||||
url.h utils.h wget.h xmalloc.h
|
spider.h ssl.h sysdep.h url.h utils.h wget.h xmalloc.h
|
||||||
|
|
||||||
o = ${OBJ_EXT}
|
o = ${OBJ_EXT}
|
||||||
|
Loading…
Reference in New Issue
Block a user