~ubuntu-branches/ubuntu/vivid/curl/vivid

« back to all changes in this revision

Viewing changes to tests/Makefile.in

Tags: 7.20.0-1
* Package is orphaned.
* New upstream release.
* Switch to dpkg-source 3.0 (quilt) format (closes: #538547).
* Fixed build error with binutils-gold (closes: #554296). 

Show diffs side-by-side

added added

removed removed

Lines of Context:
34
34
# This software is distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY
35
35
# KIND, either express or implied.
36
36
#
37
 
# $Id: Makefile.am,v 1.49 2009-08-11 21:48:59 bagder Exp $
 
37
# $Id: Makefile.am,v 1.54 2010-02-01 12:05:08 yangtse Exp $
38
38
###########################################################################
39
39
srcdir = @srcdir@
40
40
top_srcdir = @top_srcdir@
102
102
CC = @CC@
103
103
CCDEPMODE = @CCDEPMODE@
104
104
CFLAGS = @CFLAGS@
 
105
CONFIGURE_OPTIONS = @CONFIGURE_OPTIONS@
105
106
CPP = @CPP@
106
107
CPPFLAGS = @CPPFLAGS@
107
108
CROSSCOMPILING_FALSE = @CROSSCOMPILING_FALSE@
113
114
CURL_DISABLE_FILE = @CURL_DISABLE_FILE@
114
115
CURL_DISABLE_FTP = @CURL_DISABLE_FTP@
115
116
CURL_DISABLE_HTTP = @CURL_DISABLE_HTTP@
 
117
CURL_DISABLE_IMAP = @CURL_DISABLE_IMAP@
116
118
CURL_DISABLE_LDAP = @CURL_DISABLE_LDAP@
117
119
CURL_DISABLE_LDAPS = @CURL_DISABLE_LDAPS@
 
120
CURL_DISABLE_POP3 = @CURL_DISABLE_POP3@
118
121
CURL_DISABLE_PROXY = @CURL_DISABLE_PROXY@
 
122
CURL_DISABLE_RTSP = @CURL_DISABLE_RTSP@
 
123
CURL_DISABLE_SMTP = @CURL_DISABLE_SMTP@
119
124
CURL_DISABLE_TELNET = @CURL_DISABLE_TELNET@
120
125
CURL_DISABLE_TFTP = @CURL_DISABLE_TFTP@
121
126
CURL_LIBS = @CURL_LIBS@
132
137
EXEEXT = @EXEEXT@
133
138
FGREP = @FGREP@
134
139
GREP = @GREP@
135
 
HAVE_ARES = @HAVE_ARES@
136
140
HAVE_LIBZ = @HAVE_LIBZ@
137
141
HAVE_LIBZ_FALSE = @HAVE_LIBZ_FALSE@
138
142
HAVE_LIBZ_TRUE = @HAVE_LIBZ_TRUE@
198
202
SUPPORT_FEATURES = @SUPPORT_FEATURES@
199
203
SUPPORT_PROTOCOLS = @SUPPORT_PROTOCOLS@
200
204
TEST_SERVER_LIBS = @TEST_SERVER_LIBS@
 
205
USE_ARES = @USE_ARES@
201
206
USE_EMBEDDED_ARES_FALSE = @USE_EMBEDDED_ARES_FALSE@
202
207
USE_EMBEDDED_ARES_TRUE = @USE_EMBEDDED_ARES_TRUE@
203
208
USE_GNUTLS = @USE_GNUTLS@
258
263
target_alias = @target_alias@
259
264
HTMLPAGES = testcurl.html runtests.html
260
265
PDFPAGES = testcurl.pdf runtests.pdf
261
 
EXTRA_DIST = ftpserver.pl httpserver.pl httpsserver.pl runtests.pl getpart.pm \
 
266
EXTRA_DIST = ftpserver.pl httpserver.pl secureserver.pl runtests.pl getpart.pm \
262
267
 FILEFORMAT README stunnel.pem memanalyze.pl testcurl.pl valgrind.pm ftp.pm   \
263
268
 sshserver.pl sshhelp.pm testcurl.1 runtests.1 $(HTMLPAGES) $(PDFPAGES) \
264
 
 CMakeLists.txt certs/scripts/*.sh certs/Server* certs/EdelCurlRoot*
 
269
 CMakeLists.txt certs/scripts/*.sh certs/Server* certs/EdelCurlRoot* \
 
270
 serverhelp.pm tftpserver.pl rtspserver.pl
265
271
 
266
272
SUBDIRS = data server libtest
267
273
PERLFLAGS = -I$(srcdir)
271
277
@CROSSCOMPILING_TRUE@TEST = @echo "NOTICE: we can't run the tests when cross-compiling!"
272
278
@CROSSCOMPILING_FALSE@TEST_Q = -a -s
273
279
@CROSSCOMPILING_TRUE@TEST_Q = 
274
 
@CROSSCOMPILING_FALSE@TEST_F = -a -p
 
280
@CROSSCOMPILING_FALSE@TEST_F = -a -p -r
275
281
@CROSSCOMPILING_TRUE@TEST_F = 
276
282
@CROSSCOMPILING_FALSE@TEST_T = -a -t
277
283
@CROSSCOMPILING_TRUE@TEST_T = 
288
294
              exit 1;; \
289
295
          esac; \
290
296
        done; \
291
 
        echo ' cd $(top_srcdir) && $(AUTOMAKE) --gnu  tests/Makefile'; \
 
297
        echo ' cd $(top_srcdir) && $(AUTOMAKE) --foreign  tests/Makefile'; \
292
298
        cd $(top_srcdir) && \
293
 
          $(AUTOMAKE) --gnu  tests/Makefile
 
299
          $(AUTOMAKE) --foreign  tests/Makefile
294
300
.PRECIOUS: Makefile
295
301
Makefile: $(srcdir)/Makefile.in $(top_builddir)/config.status
296
302
        @case '$?' in \