]> sjero.net Git - wget/blobdiff - tests/Makefile.in
[svn] Merge of fix for bugs 20341 and 20410.
[wget] / tests / Makefile.in
index d22838da10cd2567de54a1f4425e1e6a8ee70bea..49548a5d172686f70c25c41593ba4ec8fbf13e17 100644 (file)
@@ -3,7 +3,7 @@
 
 # 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
-# the Free Software Foundation; either version 2 of the License, or
+# the Free Software Foundation; either version 3 of the License, or
 # (at your option) any later version.
 
 # This program is distributed in the hope that it will be useful,
@@ -12,8 +12,7 @@
 # GNU General Public License for more details.
 
 # You should have received a copy of the GNU General Public License
-# along with Wget; if not, write to the Free Software Foundation, Inc.,
-# 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
+# along with Wget.  If not, see <http://www.gnu.org/licenses/>.
 
 # In addition, as a special exception, the Free Software Foundation
 # gives permission to link the code of its release of Wget with the
@@ -81,12 +80,12 @@ unittest: test$(exeext)
 # Dependencies for test binary
 #
 
-TESTOBJ = $(ALLOCA) ccache.o cmpt.o connect.o convert.o cookies.o     \
+TESTOBJ = $(ALLOCA) cmpt.o connect.o convert.o cookies.o              \
           ftp.o ftp-basic.o ftp-ls.o $(OPIE_OBJ) $(GETOPT_OBJ) hash.o \
           host.o html-parse.o html-url.o http.o $(NTLM_OBJ) init.o    \
-          log.o main.o $(MD5_OBJ) netrc.o progress.o protocol.o       \
+          log.o main.o $(MD5_OBJ) netrc.o progress.o                  \
           ptimer.o recur.o res.o retr.o safe-ctype.o snprintf.o       \
-          $(SSL_OBJ) test.o url.o utils.o version.o xmalloc.o
+          spider.o $(SSL_OBJ) test.o url.o utils.o version.o xmalloc.o
 
 # We make object files depend on every header.  Rather than attempt to
 # track dependencies, everything gets recompiled when a header
@@ -94,17 +93,18 @@ TESTOBJ = $(ALLOCA) ccache.o cmpt.o connect.o convert.o cookies.o     \
 # time, and it's a lot safer than attempting to get all the
 # dependencies right.
 
-HEADERS = ../src/ccache.h ../src/config-post.h ../src/config.h \
+HEADERS = ../src/config-post.h ../src/config.h                 \
          ../src/connect.h ../src/convert.h ../src/cookies.h   \
          ../src/ftp.h ../src/gen-md5.h ../src/getopt.h        \
          ../src/gnu-md5.h ../src/hash.h ../src/host.h         \
          ../src/html-parse.h ../src/http-ntlm.h ../src/init.h \
          ../src/log.h ../src/mswindows.h ../src/netrc.h       \
-         ../src/options.h ../src/progress.h ../src/protocol.h \
+         ../src/options.h ../src/progress.h                   \
          ../src/ptimer.h ../src/recur.h ../src/res.h          \
-         ../src/retr.h ../src/safe-ctype.h ../src/ssl.h       \
-         ../src/sysdep.h ../src/test.h ../src/url.h           \
-         ../src/utils.h ../src/wget.h ../src/xmalloc.h
+         ../src/retr.h ../src/safe-ctype.h ../src/spider.h    \
+         ../src/ssl.h ../src/sysdep.h ../src/test.h           \
+         ../src/url.h ../src/utils.h ../src/wget.h            \
+         ../src/xmalloc.h
 
 alloca.o: ../src/alloca.c $(HEADERS)
        $(COMPILE) -DTESTING -c $<
@@ -208,6 +208,9 @@ safe-ctype.o: ../src/safe-ctype.c $(HEADERS)
 snprintf.o: ../src/snprintf.c $(HEADERS)
        $(COMPILE) -DTESTING -c $<
 
+spider.o: ../src/spider.c $(HEADERS)
+       $(COMPILE) -DTESTING -c $<
+
 test.o: ../src/test.c $(HEADERS)
        $(COMPILE) -DTESTING -c $<