mirror of
https://github.com/mirror/wget.git
synced 2025-03-03 14:20:34 +08:00
[svn] Changes related to ftpparse removal.
This commit is contained in:
parent
ae23f01b07
commit
ccfe785e9e
@ -58,10 +58,10 @@ OPIE_OBJ = @OPIE_OBJ@
|
|||||||
SSL_OBJ = @SSL_OBJ@
|
SSL_OBJ = @SSL_OBJ@
|
||||||
|
|
||||||
OBJ = $(ALLOCA) cmpt$o connect$o fnmatch$o ftp$o ftp-basic$o \
|
OBJ = $(ALLOCA) cmpt$o connect$o fnmatch$o ftp$o ftp-basic$o \
|
||||||
ftp-ls$o $(OPIE_OBJ) ftpparse$o getopt$o hash$o \
|
ftp-ls$o $(OPIE_OBJ) getopt$o hash$o headers$o host$o \
|
||||||
headers$o host$o html-parse$o html-url$o http$o init$o \
|
html-parse$o html-url$o http$o init$o log$o main$o \
|
||||||
log$o main$o $(MD5_OBJ) netrc$o rbuf$o recur$o retr$o \
|
$(MD5_OBJ) netrc$o rbuf$o recur$o retr$o snprintf$o \
|
||||||
snprintf$o $(SSL_OBJ) url$o utils$o version$o
|
$(SSL_OBJ) url$o utils$o version$o
|
||||||
|
|
||||||
.SUFFIXES:
|
.SUFFIXES:
|
||||||
.SUFFIXES: .c .o ._c ._o
|
.SUFFIXES: .c .o ._c ._o
|
||||||
@ -139,10 +139,9 @@ cmpt$o: wget.h
|
|||||||
connect$o: wget.h connect.h host.h
|
connect$o: wget.h connect.h host.h
|
||||||
fnmatch$o: wget.h fnmatch.h
|
fnmatch$o: wget.h fnmatch.h
|
||||||
ftp-basic$o: wget.h utils.h rbuf.h connect.h host.h
|
ftp-basic$o: wget.h utils.h rbuf.h connect.h host.h
|
||||||
ftp-ls$o: wget.h utils.h ftp.h url.h ftpparse.h
|
ftp-ls$o: wget.h utils.h ftp.h url.h
|
||||||
ftp-opie$o: wget.h md5.h
|
ftp-opie$o: wget.h md5.h
|
||||||
ftp$o: wget.h utils.h url.h rbuf.h retr.h ftp.h connect.h host.h fnmatch.h netrc.h
|
ftp$o: wget.h utils.h url.h rbuf.h retr.h ftp.h connect.h host.h fnmatch.h netrc.h
|
||||||
ftpparse$o: ftpparse.h
|
|
||||||
getopt$o: wget.h getopt.h
|
getopt$o: wget.h getopt.h
|
||||||
hash$o: wget.h utils.h hash.h
|
hash$o: wget.h utils.h hash.h
|
||||||
headers$o: wget.h connect.h rbuf.h headers.h
|
headers$o: wget.h connect.h rbuf.h headers.h
|
||||||
|
@ -47,11 +47,11 @@ LINK = $(LD) $(LDFLAGS) $(DEBUGLF) /out:$@
|
|||||||
RM = del
|
RM = del
|
||||||
|
|
||||||
SRC = cmpt.c connect.c host.c http.c netrc.c ftp-basic.c ftp.c ftp-ls.c \
|
SRC = cmpt.c connect.c host.c http.c netrc.c ftp-basic.c ftp.c ftp-ls.c \
|
||||||
ftp-opie.c ftpparse.c getopt.c hash.c headers.c html-parse.c html-url.c retr.c recur.c url.c init.c utils.c main.c \
|
ftp-opie.c getopt.c hash.c headers.c html-parse.c html-url.c retr.c recur.c url.c init.c utils.c main.c \
|
||||||
version.c mswindows.c fnmatch.c md5.c rbuf.c log.c
|
version.c mswindows.c fnmatch.c md5.c rbuf.c log.c
|
||||||
|
|
||||||
OBJ = cmpt$o connect$o host$o http$o netrc$o ftp-basic$o ftp$o ftp-ls$o \
|
OBJ = cmpt$o connect$o host$o http$o netrc$o ftp-basic$o ftp$o ftp-ls$o \
|
||||||
ftp-opie$o ftpparse$o getopt$o hash$o headers$o html-parse$o html-url$o retr$o recur$o url$o init$o utils$o main$o \
|
ftp-opie$o getopt$o hash$o headers$o html-parse$o html-url$o retr$o recur$o url$o init$o utils$o main$o \
|
||||||
version$o mswindows$o fnmatch$o md5$o rbuf$o log$o
|
version$o mswindows$o fnmatch$o md5$o rbuf$o log$o
|
||||||
|
|
||||||
.SUFFIXES: .c .obj
|
.SUFFIXES: .c .obj
|
||||||
|
@ -19,7 +19,7 @@ CFLAGS=/zp4 /d1 /w4 /fpd /5s /fp5 /bm /mf /os /bt=nt /DWINDOWS /DHAVE_CONFIG_H /
|
|||||||
# /bt = "build target" (nt)
|
# /bt = "build target" (nt)
|
||||||
|
|
||||||
OBJS = FILE cmpt.obj,connect.obj,fnmatch.obj,ftp.obj,ftp-basic.obj, &
|
OBJS = FILE cmpt.obj,connect.obj,fnmatch.obj,ftp.obj,ftp-basic.obj, &
|
||||||
ftp-ls.obj,ftpparse.obj,ftp-opie.obj,getopt.obj,hash.obj,headers.obj,host.obj,html-parse.obj,html-url.obj, &
|
ftp-ls.obj,ftp-opie.obj,getopt.obj,hash.obj,headers.obj,host.obj,html-parse.obj,html-url.obj, &
|
||||||
http.obj,init.obj,log.obj,main.obj,md5.obj,netrc.obj,rbuf.obj, &
|
http.obj,init.obj,log.obj,main.obj,md5.obj,netrc.obj,rbuf.obj, &
|
||||||
recur.obj,retr.obj,url.obj,utils.obj,version.obj,mswindows.obj
|
recur.obj,retr.obj,url.obj,utils.obj,version.obj,mswindows.obj
|
||||||
#
|
#
|
||||||
@ -27,7 +27,7 @@ OBJS = FILE cmpt.obj,connect.obj,fnmatch.obj,ftp.obj,ftp-basic.obj, &
|
|||||||
# alas, no text functions in Watcom make :-(
|
# alas, no text functions in Watcom make :-(
|
||||||
#
|
#
|
||||||
LINKOBJS = cmpt.obj connect.obj fnmatch.obj ftp.obj ftp-basic.obj &
|
LINKOBJS = cmpt.obj connect.obj fnmatch.obj ftp.obj ftp-basic.obj &
|
||||||
ftp-ls.obj ftpparse.obj ftp-opie.obj getopt.obj hash.obj headers.obj host.obj html-parse.obj html-url.obj &
|
ftp-ls.obj ftp-opie.obj getopt.obj hash.obj headers.obj host.obj html-parse.obj html-url.obj &
|
||||||
http.obj init.obj log.obj main.obj md5.obj netrc.obj rbuf.obj &
|
http.obj init.obj log.obj main.obj md5.obj netrc.obj rbuf.obj &
|
||||||
recur.obj retr.obj url.obj utils.obj version.obj mswindows.obj
|
recur.obj retr.obj url.obj utils.obj version.obj mswindows.obj
|
||||||
|
|
||||||
@ -43,10 +43,9 @@ cmpt.obj: cmpt.c wget.h sysdep.h options.h
|
|||||||
connect.obj: connect.c wget.h sysdep.h options.h connect.h host.h
|
connect.obj: connect.c wget.h sysdep.h options.h connect.h host.h
|
||||||
fnmatch.obj: fnmatch.c wget.h sysdep.h options.h fnmatch.h
|
fnmatch.obj: fnmatch.c wget.h sysdep.h options.h fnmatch.h
|
||||||
ftp-basic.obj: ftp-basic.c wget.h sysdep.h options.h utils.h rbuf.h connect.h host.h ftp.h
|
ftp-basic.obj: ftp-basic.c wget.h sysdep.h options.h utils.h rbuf.h connect.h host.h ftp.h
|
||||||
ftp-ls.obj: ftp-ls.c wget.h sysdep.h options.h utils.h ftp.h rbuf.h url.h ftpparse.h
|
ftp-ls.obj: ftp-ls.c wget.h sysdep.h options.h utils.h ftp.h rbuf.h url.h
|
||||||
ftp-opie.obj: ftp-opie.c wget.h sysdep.h options.h md5.h
|
ftp-opie.obj: ftp-opie.c wget.h sysdep.h options.h md5.h
|
||||||
ftp.obj: ftp.c wget.h sysdep.h options.h utils.h url.h rbuf.h retr.h ftp.h connect.h host.h fnmatch.h netrc.h
|
ftp.obj: ftp.c wget.h sysdep.h options.h utils.h url.h rbuf.h retr.h ftp.h connect.h host.h fnmatch.h netrc.h
|
||||||
ftpparse.obj: ftpparse.c ftpparse.h
|
|
||||||
getopt.obj: getopt.c wget.h sysdep.h options.h getopt.h
|
getopt.obj: getopt.c wget.h sysdep.h options.h getopt.h
|
||||||
hash.obj: hash.c wget.h sysdep.h options.h utils.h hash.h
|
hash.obj: hash.c wget.h sysdep.h options.h utils.h hash.h
|
||||||
headers.obj: headers.c wget.h sysdep.h options.h connect.h rbuf.h headers.h
|
headers.obj: headers.c wget.h sysdep.h options.h connect.h rbuf.h headers.h
|
||||||
|
@ -4,10 +4,9 @@ cmpt$o: cmpt.c config.h wget.h sysdep.h options.h
|
|||||||
connect$o: connect.c config.h wget.h sysdep.h options.h connect.h host.h
|
connect$o: connect.c config.h wget.h sysdep.h options.h connect.h host.h
|
||||||
fnmatch$o: fnmatch.c config.h wget.h sysdep.h options.h fnmatch.h
|
fnmatch$o: fnmatch.c config.h wget.h sysdep.h options.h fnmatch.h
|
||||||
ftp-basic$o: ftp-basic.c config.h wget.h sysdep.h options.h utils.h rbuf.h connect.h host.h
|
ftp-basic$o: ftp-basic.c config.h wget.h sysdep.h options.h utils.h rbuf.h connect.h host.h
|
||||||
ftp-ls$o: ftp-ls.c config.h wget.h sysdep.h options.h utils.h ftp.h url.h ftpparse.h
|
ftp-ls$o: ftp-ls.c config.h wget.h sysdep.h options.h utils.h ftp.h url.h
|
||||||
ftp-opie$o: ftp-opie.c config.h wget.h sysdep.h options.h md5.h
|
ftp-opie$o: ftp-opie.c config.h wget.h sysdep.h options.h md5.h
|
||||||
ftp$o: ftp.c config.h wget.h sysdep.h options.h utils.h url.h rbuf.h retr.h ftp.h connect.h host.h fnmatch.h netrc.h
|
ftp$o: ftp.c config.h wget.h sysdep.h options.h utils.h url.h rbuf.h retr.h ftp.h connect.h host.h fnmatch.h netrc.h
|
||||||
ftpparse$o: ftpparse.h
|
|
||||||
getopt$o: getopt.c wget.h sysdep.h options.h getopt.h
|
getopt$o: getopt.c wget.h sysdep.h options.h getopt.h
|
||||||
hash$o: hash.c wget.h utils.h hash.h
|
hash$o: hash.c wget.h utils.h hash.h
|
||||||
headers$o: headers.c config.h wget.h sysdep.h options.h connect.h rbuf.h headers.h
|
headers$o: headers.c config.h wget.h sysdep.h options.h connect.h rbuf.h headers.h
|
||||||
|
Loading…
Reference in New Issue
Block a user