]> sjero.net Git - wget/commitdiff
[svn] Added spider.c to the list of files to compile and spider.h to the list of...
authormtortonesi <devnull@localhost>
Thu, 24 Aug 2006 15:34:24 +0000 (08:34 -0700)
committermtortonesi <devnull@localhost>
Thu, 24 Aug 2006 15:34:24 +0000 (08:34 -0700)
windows/ChangeLog
windows/Makefile.src
windows/Makefile.src.bor
windows/Makefile.src.mingw

index ebaf135c9c207e6dc0c30835500d47906b0fa7b2..2141ede15e8d7247d66fa6e2655ede2e9f14ecd7 100644 (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).
 2006-04-07  Mauro Tortonesi  <mauro@ferrara.linux.it>
 
        * config-compiler.h: Several fixes for MSVC 8 (Visual C 2005).
index b1df66309fb13254354d6a08b0ca84ebbf4671f0..aeaea6d2fce8760bd50f832c15d33275e256cfdf 100644 (file)
@@ -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
 # it under the terms of the GNU General Public License as published by
 
 # 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 \
 !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
 
 
 .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 \
-        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
 
 #
 # Dependencies for cleanup
index 430f7c75396fcc2a6b04cdd79d74b8aa470d2684..6b6e1f408840788223fde8b225a72d7196205309 100644 (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
 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
 
 
 LIBDIR=$(MAKEDIR)\..\lib
 
@@ -50,6 +50,7 @@ recur.obj+
 res.obj+
 retr.obj+
 safe-ctype.obj+
 res.obj+
 retr.obj+
 safe-ctype.obj+
+spider.obj+
 url.obj+
 utils.obj+
 version.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
 
 
 #
 
 
 #
index d1a91e72f0d55d5033f8bc4c457adc0ab1fa97f7..54ec326c0b664455a1612771efd2b8081d7f33ae 100644 (file)
@@ -21,12 +21,12 @@ CFLAGS= -DWINDOWS -DHAVE_CONFIG_H -O3 -Wall -I.
 ## variables
 LIBS= -lwsock32
 OBJ_EXT=.o
 ## 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
 
 ifdef SSL
     ## OPENSSL_PATH is the OpenSSL installed directory
@@ -41,10 +41,10 @@ all: wget.exe
 wget.exe: $(OBJS)
        ${CC} ${LDFLAGS} -o $@ ${OBJS} ${LIBS}
 
 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}
 
 o = ${OBJ_EXT}