]> sjero.net Git - wget/commitdiff
[svn] Committed Adrian Aichner's Windows Makefile updates.
authorhniksic <devnull@localhost>
Thu, 11 Jan 2001 16:34:36 +0000 (08:34 -0800)
committerhniksic <devnull@localhost>
Thu, 11 Jan 2001 16:34:36 +0000 (08:34 -0800)
From <sxslmsijbgn.fsf@florida.arsdigita.de>.

ChangeLog
windows/Makefile.src
windows/wget.dep

index c2915fcbf08454f4957924729856e5aac2d904a4..50f49e31f01425f9f1aa00ba38594b75a1fa3b1d 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,9 @@
+2001-01-11  Adrian Aichner  <Adrian.Aichner@t-online.de>
+
+       * windows/Makefile.src: Updated.
+
+       * windows/wget.dep: Ditto.
+
 2001-01-09  Dan Harkless  <wget@harkless.org>
 
        * TODO: If -c is on, don't re-download a 100%-downloaded file.
index 9f2a2067edc2d58b1bc20ab6ecbddfee8616533e..54322d9dc1e514b8ec5ae533aa88409961d12ab3 100644 (file)
@@ -47,12 +47,12 @@ LINK    = $(LD) $(LDFLAGS) $(DEBUGLF) /out:$@
 RM      = del
 
 SRC = alloca.c cmpt.c connect.c host.c http.c netrc.c ftp-basic.c ftp.c ftp-ls.c \
-      ftp-opie.c getopt.c headers.c html.c retr.c recur.c url.c init.c utils.c main.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 \
       version.c mswindows.c fnmatch.c md5.c rbuf.c log.c
 
 OBJ = alloca$o cmpt$o connect$o host$o http$o netrc$o ftp-basic$o ftp$o ftp-ls$o \
-      ftp-opie$o headers$o html$o retr$o recur$o url$o init$o utils$o main$o \
-      getopt$o version$o mswindows$o fnmatch$o md5$o rbuf$o log$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 \
+      version$o mswindows$o fnmatch$o md5$o rbuf$o log$o
 
 .SUFFIXES: .c .obj
 
index cc08a8f3cd918b4ca599b555c62406b121828a92..efebe712f10795b7f5d95404a6dcc84c8fba4ef5 100644 (file)
@@ -4,22 +4,27 @@ 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
 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-ls$o: ftp-ls.c config.h wget.h sysdep.h options.h utils.h ftp.h rbuf.h
+ftp-ls$o: ftp-ls.c config.h wget.h sysdep.h options.h utils.h ftp.h url.h ftpparse.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 html.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
+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
-host$o: host.c config.h wget.h sysdep.h options.h utils.h host.h url.h
-html$o: html.c config.h wget.h sysdep.h options.h url.h utils.h ftp.h rbuf.h html.h
+host$o: host.c config.h wget.h sysdep.h options.h utils.h host.h url.h hash.h
+html-parse$o: wget.h html-parse.h
+html-url$o: wget.h html-parse.h url.h utils.h
+html$o: wget.h url.h utils.h ftp.h
 http$o: http.c config.h wget.h sysdep.h options.h utils.h url.h host.h rbuf.h retr.h headers.h connect.h fnmatch.h netrc.h md5.h
 init$o: init.c config.h wget.h sysdep.h options.h utils.h init.h host.h recur.h netrc.h
 log$o: log.c config.h wget.h sysdep.h options.h utils.h
-main$o: main.c config.h wget.h sysdep.h options.h utils.h getopt.h init.h retr.h rbuf.h recur.h host.h
+main$o: main.c config.h wget.h sysdep.h options.h utils.h getopt.h init.h retr.h recur.h host.h
 md5$o: md5.c wget.h sysdep.h options.h md5.h
+mswindows$o: wget.h url.h
 netrc$o: netrc.c wget.h sysdep.h options.h utils.h netrc.h init.h
 rbuf$o: rbuf.c config.h wget.h sysdep.h options.h rbuf.h connect.h
-recur$o: recur.c config.h wget.h sysdep.h options.h url.h recur.h utils.h retr.h rbuf.h ftp.h fnmatch.h host.h
-retr$o: retr.c config.h wget.h sysdep.h options.h utils.h retr.h rbuf.h url.h recur.h ftp.h host.h connect.h
-url$o: url.c config.h wget.h sysdep.h options.h utils.h url.h host.h html.h
-utils$o: utils.c config.h wget.h sysdep.h options.h utils.h fnmatch.h
+recur$o: recur.c config.h wget.h sysdep.h options.h url.h recur.h utils.h retr.h ftp.h fnmatch.h host.h hash.h
+retr$o: retr.c config.h wget.h sysdep.h options.h utils.h retr.h url.h recur.h ftp.h host.h connect.h hash.h
+url$o: url.c config.h wget.h sysdep.h options.h utils.h url.h host.h
+utils$o: utils.c config.h wget.h sysdep.h options.h utils.h fnmatch.h hash.h
 version$o: version.c