1
0
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:
mtortonesi 2006-08-24 08:34:24 -07:00
parent 0dbef4ccb4
commit 5b28da71b1
4 changed files with 42 additions and 32 deletions

View File

@ -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>
* config-compiler.h: Several fixes for MSVC 8 (Visual C 2005).

View File

@ -1,5 +1,5 @@
# 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
# it under the terms of the GNU General Public License as published by
@ -67,10 +67,10 @@ LDFLAGS = $(LDFLAGS) /ltcg:status
!endif
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 \
html-parse$o html-url$o progress$o retr$o recur$o res$o url$o cookies$o \
init$o utils$o main$o ptimer$o version$o xmalloc$o mswindows$o \
gen-md5$o gnu-md5$o log$o $(SSLOBJ)
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 init$o utils$o main$o ptimer$o version$o xmalloc$o \
mswindows$o gen-md5$o gnu-md5$o log$o $(SSLOBJ) spider$o
.SUFFIXES: .c .obj
@ -84,11 +84,11 @@ wget.exe: $(OBJ)
$(LD) @<< $(LDFLAGS) /out:$@ $(OBJ) $(LIBS)
<<
$(OBJ): config-post.h config.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
$(OBJ): config-post.h config.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 \
spider.h ssl.h sysdep.h url.h utils.h wget.h xmalloc.h
#
# Dependencies for cleanup

View File

@ -10,12 +10,12 @@ 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
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 spider.obj
LIBDIR=$(MAKEDIR)\..\lib
@ -50,6 +50,7 @@ recur.obj+
res.obj+
retr.obj+
safe-ctype.obj+
spider.obj+
url.obj+
utils.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 \
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
$(OBJS): config-post.h config.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 \
spider.h ssl.h sysdep.h url.h utils.h wget.h xmalloc.h
#

View File

@ -21,12 +21,12 @@ CFLAGS= -DWINDOWS -DHAVE_CONFIG_H -O3 -Wall -I.
## variables
LIBS= -lwsock32
OBJ_EXT=.o
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} \
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} \
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}
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} \
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} \
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} spider${OBJ_EXT}
ifdef SSL
## OPENSSL_PATH is the OpenSSL installed directory
@ -41,10 +41,10 @@ all: wget.exe
wget.exe: $(OBJS)
${CC} ${LDFLAGS} -o $@ ${OBJS} ${LIBS}
$(OBJS): config-post.h config.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
$(OBJS): config-post.h config.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 \
spider.h ssl.h sysdep.h url.h utils.h wget.h xmalloc.h
o = ${OBJ_EXT}